shared-ritm 1.2.125 → 1.2.127

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 (128) hide show
  1. package/README.md +103 -103
  2. package/dist/index.css +1 -1
  3. package/dist/shared-ritm.es.js +283 -285
  4. package/dist/shared-ritm.umd.js +8 -8
  5. package/package.json +64 -64
  6. package/src/App.vue +2461 -2461
  7. package/src/api/services/AuthService.ts +53 -53
  8. package/src/api/services/BrigadesService.ts +32 -32
  9. package/src/api/services/CommentsService.ts +24 -24
  10. package/src/api/services/ControlsService.ts +73 -73
  11. package/src/api/services/EquipmentService.ts +29 -29
  12. package/src/api/services/FileService.ts +17 -17
  13. package/src/api/services/GanttService.ts +17 -17
  14. package/src/api/services/InstrumentsService.ts +63 -63
  15. package/src/api/services/MetricsService.ts +110 -110
  16. package/src/api/services/ModulesService.ts +27 -27
  17. package/src/api/services/ProjectsService.ts +79 -79
  18. package/src/api/services/RepairsService.ts +123 -123
  19. package/src/api/services/SearchService.ts +22 -22
  20. package/src/api/services/TasksService.ts +145 -145
  21. package/src/api/services/UserService.ts +101 -101
  22. package/src/api/services/VideoService.ts +71 -71
  23. package/src/api/settings/ApiService.ts +124 -124
  24. package/src/api/types/Api_Auth.ts +86 -86
  25. package/src/api/types/Api_Brigades.ts +36 -36
  26. package/src/api/types/Api_Comment.ts +40 -40
  27. package/src/api/types/Api_Controls.ts +93 -93
  28. package/src/api/types/Api_Equipment.ts +3 -3
  29. package/src/api/types/Api_Files.ts +7 -7
  30. package/src/api/types/Api_Instruments.ts +136 -136
  31. package/src/api/types/Api_Modules.ts +21 -21
  32. package/src/api/types/Api_Projects.ts +60 -60
  33. package/src/api/types/Api_Repairs.ts +117 -117
  34. package/src/api/types/Api_Search.ts +77 -77
  35. package/src/api/types/Api_Service.ts +9 -9
  36. package/src/api/types/Api_Tasks.ts +319 -319
  37. package/src/api/types/Api_User.ts +117 -117
  38. package/src/api/types/Api_Video.ts +140 -140
  39. package/src/common/app-button/AppButton.vue +173 -173
  40. package/src/common/app-checkbox/AppCheckbox.vue +26 -26
  41. package/src/common/app-date-picker/AppDatePicker.vue +81 -81
  42. package/src/common/app-datepicker/AppDatepicker.vue +165 -165
  43. package/src/common/app-dialogs/AppConfirmDialog.vue +99 -99
  44. package/src/common/app-dropdown/AppDropdown.vue +37 -37
  45. package/src/common/app-icon/AppIcon.vue +108 -108
  46. package/src/common/app-input/AppInput.vue +148 -148
  47. package/src/common/app-input-new/AppInputNew.vue +175 -175
  48. package/src/common/app-input-search/AppInputSearch.vue +174 -174
  49. package/src/common/app-layout/AppLayout.vue +84 -84
  50. package/src/common/app-layout/components/AppLayoutHeader.vue +273 -273
  51. package/src/common/app-layout/components/AppLayoutPage.vue +16 -16
  52. package/src/common/app-loader/index.vue +43 -43
  53. package/src/common/app-page-layout/AppPageLayout.vue +122 -122
  54. package/src/common/app-select/AppSelect.vue +157 -157
  55. package/src/common/app-sheet/AppSheet.vue +120 -120
  56. package/src/common/app-sheet-new/AppSheetNew.vue +246 -246
  57. package/src/common/app-sidebar/AppSidebar.vue +168 -168
  58. package/src/common/app-sidebar/components/SidebarMenu.vue +37 -37
  59. package/src/common/app-sidebar/components/SidebarMenuItem.vue +148 -148
  60. package/src/common/app-table/AppTable.vue +308 -308
  61. package/src/common/app-table/AppTableLayout.vue +137 -137
  62. package/src/common/app-table/components/ModalSelect.vue +281 -281
  63. package/src/common/app-table/components/TableModal.vue +356 -356
  64. package/src/common/app-table/components/TablePagination.vue +152 -152
  65. package/src/common/app-table/controllers/useBaseTable.ts +45 -45
  66. package/src/common/app-table/controllers/useColumnSelector.ts +38 -38
  67. package/src/common/app-table/controllers/useTableModel.ts +102 -102
  68. package/src/common/app-toggle/AppToggle.vue +24 -24
  69. package/src/common/app-wrapper/AppWrapper.vue +28 -28
  70. package/src/global.d.ts +1 -1
  71. package/src/icons/components/arrow-down-icon.vue +25 -25
  72. package/src/icons/components/arrow-frame-icon.vue +19 -19
  73. package/src/icons/components/arrow-square.vue +22 -22
  74. package/src/icons/components/table-filter-icon.vue +30 -30
  75. package/src/icons/dialogs/RemoveIcon.vue +12 -12
  76. package/src/icons/dialogs/SafetyIcon.vue +12 -12
  77. package/src/icons/header/NotificationIcon.vue +18 -18
  78. package/src/icons/header/PersonIcon.vue +11 -11
  79. package/src/icons/header/SettingIcon.vue +14 -14
  80. package/src/icons/header/flashIcon.vue +24 -24
  81. package/src/icons/header/searchStatusIcon.vue +24 -24
  82. package/src/icons/header/smallCapsIcon.vue +34 -34
  83. package/src/icons/sidebar/assign-module-icon.vue +36 -36
  84. package/src/icons/sidebar/instrument-history-icon.vue +32 -32
  85. package/src/icons/sidebar/instrument-order-icon.vue +38 -38
  86. package/src/icons/sidebar/instrument-work-zone-icon.vue +18 -18
  87. package/src/icons/sidebar/instruments-icon.vue +45 -45
  88. package/src/icons/sidebar/logo-icon.vue +15 -15
  89. package/src/icons/sidebar/logout-icon.vue +13 -13
  90. package/src/icons/sidebar/modules-icon.vue +16 -16
  91. package/src/icons/sidebar/notifications-icon.vue +24 -24
  92. package/src/icons/sidebar/order-icon.vue +44 -44
  93. package/src/icons/sidebar/pass-icon.vue +38 -38
  94. package/src/icons/sidebar/positions-icon.vue +42 -42
  95. package/src/icons/sidebar/preorder-icon.vue +19 -19
  96. package/src/icons/sidebar/projects-icon.vue +31 -31
  97. package/src/icons/sidebar/repair-object-icon.vue +18 -18
  98. package/src/icons/sidebar/repairs-icon.vue +20 -20
  99. package/src/icons/sidebar/roles-icon.vue +26 -26
  100. package/src/icons/sidebar/status-history-icon.vue +24 -24
  101. package/src/icons/sidebar/tasks-icon.vue +28 -28
  102. package/src/icons/sidebar/tasks_tasks-icon.vue +39 -39
  103. package/src/icons/sidebar/tasks_today-icon.vue +27 -27
  104. package/src/icons/sidebar/teams-icon.vue +32 -32
  105. package/src/icons/sidebar/user-icon.vue +18 -18
  106. package/src/icons/sidebar/users-icon.vue +46 -46
  107. package/src/icons/sidebar/videosources-icon.vue +19 -19
  108. package/src/icons/sidebar/videowall-icon.vue +13 -13
  109. package/src/icons/sidebar/videozones-icon.vue +21 -21
  110. package/src/icons/sidebar/warehouses-icon.vue +43 -43
  111. package/src/icons/sidebar/workshop-icon.vue +100 -100
  112. package/src/icons/sidebar/workzones-icon.vue +22 -22
  113. package/src/icons/task/attention-icon.vue +13 -13
  114. package/src/icons/task/clock-icon.vue +10 -10
  115. package/src/icons/task/delete-icon.vue +10 -10
  116. package/src/icons/task/fire-icon.vue +16 -16
  117. package/src/index.ts +123 -123
  118. package/src/main.ts +28 -28
  119. package/src/quasar-user-options.ts +17 -17
  120. package/src/router/index.ts +10 -10
  121. package/src/shared/styles/general.css +124 -124
  122. package/src/shims-vue.d.ts +5 -5
  123. package/src/styles/variables.sass +12 -12
  124. package/src/utils/confirm.ts +12 -12
  125. package/src/utils/faceApiHelper.ts +132 -132
  126. package/src/utils/helpers.ts +59 -59
  127. package/src/utils/notification.ts +9 -9
  128. package/dist/types/api/services/PhotoService.d.ts +0 -40
@@ -1880,10 +1880,10 @@ const Et = Ke({
1880
1880
  emits: ["update:modelValue", "click"],
1881
1881
  setup(e, { emit: n }) {
1882
1882
  Ta((s) => ({
1883
- "6ebd44ce": s.width,
1884
- "31bb5bb4": s.height,
1885
- "2efce8ab": s.borderRadius,
1886
- d3196ae6: s.borderWidth
1883
+ "653f50d4": s.width,
1884
+ "28dbcfd9": s.height,
1885
+ "463ced10": s.borderRadius,
1886
+ "449ea588": s.borderWidth
1887
1887
  }));
1888
1888
  const t = e, r = n;
1889
1889
  function o(s) {
@@ -4405,7 +4405,7 @@ const yy = {
4405
4405
  ])
4406
4406
  ]));
4407
4407
  }
4408
- }), IA = /* @__PURE__ */ Fe(xy, [["__scopeId", "data-v-a3ab30e6"]]), nd = {
4408
+ }), IA = /* @__PURE__ */ Fe(xy, [["__scopeId", "data-v-41286752"]]), nd = {
4409
4409
  left: !0,
4410
4410
  right: !0,
4411
4411
  up: !0,
@@ -6205,7 +6205,7 @@ const jy = { class: "app-input-new" }, Uy = {
6205
6205
  }, 8, ["modelValue", "type", "rules", "placeholder", "disable", "readonly", "class", "error", "autocomplete"])
6206
6206
  ]));
6207
6207
  }
6208
- }), Xy = /* @__PURE__ */ Fe(Ky, [["__scopeId", "data-v-c24941bd"]]), Yy = { class: "datepicker" }, Qy = /* @__PURE__ */ Ft({
6208
+ }), Xy = /* @__PURE__ */ Fe(Ky, [["__scopeId", "data-v-123be192"]]), Yy = { class: "datepicker" }, Qy = /* @__PURE__ */ Ft({
6209
6209
  __name: "AppDatepicker",
6210
6210
  props: /* @__PURE__ */ Gl({
6211
6211
  label: {},
@@ -6312,7 +6312,7 @@ const jy = { class: "app-input-new" }, Uy = {
6312
6312
  }, 8, ["modelValue", "label", "required", "rules", "error", "disable"])
6313
6313
  ]));
6314
6314
  }
6315
- }), AA = /* @__PURE__ */ Fe(Qy, [["__scopeId", "data-v-84f07e78"]]), Zy = /* @__PURE__ */ Ft({
6315
+ }), AA = /* @__PURE__ */ Fe(Qy, [["__scopeId", "data-v-29c975a8"]]), Zy = /* @__PURE__ */ Ft({
6316
6316
  __name: "AppInput",
6317
6317
  props: {
6318
6318
  field: { type: Boolean },
@@ -6386,7 +6386,7 @@ const jy = { class: "app-input-new" }, Uy = {
6386
6386
  emits: ["update:modelValue", "button-click", "clear", "focus", "blur", "click"],
6387
6387
  setup(e, { emit: n }) {
6388
6388
  Ta((u) => ({
6389
- "542fbebd": u.height
6389
+ "2cd26a79": u.height
6390
6390
  }));
6391
6391
  const t = e, r = n, o = Q(!1), a = k(() => t.type === "password" ? o.value ? "text" : "password" : t.type || "text"), i = k({
6392
6392
  get: () => t.modelValue !== null && t.modelValue !== void 0 && t.type === "number" ? +t.modelValue : t.modelValue,
@@ -6414,9 +6414,9 @@ const jy = { class: "app-input-new" }, Uy = {
6414
6414
  }
6415
6415
  }), Jy = {
6416
6416
  "app-input": "_app-input_1cdlo_1"
6417
- }, eb = {
6417
+ }, e2 = {
6418
6418
  $style: Jy
6419
- }, DA = /* @__PURE__ */ Fe(Zy, [["__cssModules", eb]]), tb = /* @__PURE__ */ Ft({
6419
+ }, DA = /* @__PURE__ */ Fe(Zy, [["__cssModules", e2]]), t2 = /* @__PURE__ */ Ft({
6420
6420
  __name: "AppInputSearch",
6421
6421
  props: {
6422
6422
  field: { type: Boolean },
@@ -6493,8 +6493,8 @@ const jy = { class: "app-input-new" }, Uy = {
6493
6493
  emits: ["update:modelValue", "button-click", "clear", "focus", "blur", "click"],
6494
6494
  setup(e, { emit: n }) {
6495
6495
  Ta((i) => ({
6496
- "33b606d4": i.borderRadius,
6497
- f2e6e6c6: i.height
6496
+ "37f45cbd": i.borderRadius,
6497
+ "5617c546": i.height
6498
6498
  }));
6499
6499
  const t = e, r = n, o = k({
6500
6500
  get: () => t.modelValue !== null && t.modelValue !== void 0 && t.type === "number" ? +t.modelValue : t.modelValue,
@@ -6552,11 +6552,11 @@ const jy = { class: "app-input-new" }, Uy = {
6552
6552
  } : void 0
6553
6553
  ]), 1032, ["modelValue", "class", "type", "readonly", "placeholder"]));
6554
6554
  }
6555
- }), nb = {
6555
+ }), n2 = {
6556
6556
  "app-input": "_app-input_1u3xt_1"
6557
- }, rb = {
6558
- $style: nb
6559
- }, MA = /* @__PURE__ */ Fe(tb, [["__cssModules", rb]]), ob = Ke({
6557
+ }, r2 = {
6558
+ $style: n2
6559
+ }, MA = /* @__PURE__ */ Fe(t2, [["__cssModules", r2]]), o2 = Ke({
6560
6560
  name: "QPageContainer",
6561
6561
  setup(e, { slots: n }) {
6562
6562
  const { proxy: { $q: t } } = Qe(), r = co(xi, dn);
@@ -6572,12 +6572,12 @@ const jy = { class: "app-input-new" }, Uy = {
6572
6572
  style: o.value
6573
6573
  }, _t(n.default));
6574
6574
  }
6575
- }), { passive: ch } = Yt, ab = ["both", "horizontal", "vertical"], zv = Ke({
6575
+ }), { passive: ch } = Yt, a2 = ["both", "horizontal", "vertical"], zv = Ke({
6576
6576
  name: "QScrollObserver",
6577
6577
  props: {
6578
6578
  axis: {
6579
6579
  type: String,
6580
- validator: (e) => ab.includes(e),
6580
+ validator: (e) => a2.includes(e),
6581
6581
  default: "vertical"
6582
6582
  },
6583
6583
  debounce: [String, Number],
@@ -6642,7 +6642,7 @@ const jy = { class: "app-input-new" }, Uy = {
6642
6642
  }), Js;
6643
6643
  }
6644
6644
  });
6645
- function ib() {
6645
+ function i2() {
6646
6646
  const e = Q(!No.value);
6647
6647
  return e.value === !1 && vn(() => {
6648
6648
  e.value = !0;
@@ -6690,7 +6690,7 @@ const $v = typeof ResizeObserver < "u", dh = $v === !0 ? {} : {
6690
6690
  }, l = function() {
6691
6691
  u(), r != null && r.contentDocument && (d = r.contentDocument.defaultView, d.addEventListener("resize", a, Yt.passive), i());
6692
6692
  };
6693
- const { isHydrated: c } = ib();
6693
+ const { isHydrated: c } = i2();
6694
6694
  let d;
6695
6695
  return vn(() => {
6696
6696
  Ct(() => {
@@ -6711,7 +6711,7 @@ const $v = typeof ResizeObserver < "u", dh = $v === !0 ? {} : {
6711
6711
  };
6712
6712
  }
6713
6713
  }
6714
- }), sb = Ke({
6714
+ }), s2 = Ke({
6715
6715
  name: "QLayout",
6716
6716
  props: {
6717
6717
  container: Boolean,
@@ -6838,7 +6838,7 @@ const $v = typeof ResizeObserver < "u", dh = $v === !0 ? {} : {
6838
6838
  ]) : x;
6839
6839
  };
6840
6840
  }
6841
- }), ub = /* @__PURE__ */ Ft({
6841
+ }), u2 = /* @__PURE__ */ Ft({
6842
6842
  __name: "index",
6843
6843
  props: {
6844
6844
  backdrop: { type: Boolean, default: !1 },
@@ -6858,7 +6858,7 @@ const $v = typeof ResizeObserver < "u", dh = $v === !0 ? {} : {
6858
6858
  }, null, 8, ["size", "thickness"])) : Xe("", !0)
6859
6859
  ], 2));
6860
6860
  }
6861
- }), lb = /* @__PURE__ */ Fe(ub, [["__scopeId", "data-v-9f8ceae1"]]), cb = /* @__PURE__ */ Ft({
6861
+ }), l2 = /* @__PURE__ */ Fe(u2, [["__scopeId", "data-v-ef7a12f8"]]), c2 = /* @__PURE__ */ Ft({
6862
6862
  __name: "AppLayout",
6863
6863
  props: {
6864
6864
  logged: { type: Boolean },
@@ -6884,7 +6884,7 @@ const $v = typeof ResizeObserver < "u", dh = $v === !0 ? {} : {
6884
6884
  }
6885
6885
  return vn(() => {
6886
6886
  o();
6887
- }), (a, i) => (X(), Ae(sb, {
6887
+ }), (a, i) => (X(), Ae(s2, {
6888
6888
  class: He(a.$style.layout),
6889
6889
  view: "lHh LpR fFf"
6890
6890
  }, {
@@ -6893,7 +6893,7 @@ const $v = typeof ResizeObserver < "u", dh = $v === !0 ? {} : {
6893
6893
  key: 0,
6894
6894
  class: He(a.$style["loader-backdrop"])
6895
6895
  }, [
6896
- Se(lb, {
6896
+ Se(l2, {
6897
6897
  loading: a.logged,
6898
6898
  size: "md",
6899
6899
  thickness: 3,
@@ -6904,7 +6904,7 @@ const $v = typeof ResizeObserver < "u", dh = $v === !0 ? {} : {
6904
6904
  tn(a.$slots, "header", {
6905
6905
  style: To(r.value)
6906
6906
  }),
6907
- Se(ob, {
6907
+ Se(o2, {
6908
6908
  class: He({ container: a.container }),
6909
6909
  onWheel: t
6910
6910
  }, {
@@ -6920,13 +6920,13 @@ const $v = typeof ResizeObserver < "u", dh = $v === !0 ? {} : {
6920
6920
  _: 3
6921
6921
  }, 8, ["class"]));
6922
6922
  }
6923
- }), db = "_layout_1d7zc_1", fb = {
6924
- layout: db,
6923
+ }), d2 = "_layout_1d7zc_1", f2 = {
6924
+ layout: d2,
6925
6925
  "loader-backdrop": "_loader-backdrop_1d7zc_6",
6926
6926
  "loader-spinner": "_loader-spinner_1d7zc_14"
6927
- }, hb = {
6928
- $style: fb
6929
- }, PA = /* @__PURE__ */ Fe(cb, [["__cssModules", hb]]), pb = {
6927
+ }, h2 = {
6928
+ $style: f2
6929
+ }, PA = /* @__PURE__ */ Fe(c2, [["__cssModules", h2]]), p2 = {
6930
6930
  true: "inset",
6931
6931
  item: "item-inset",
6932
6932
  "item-thumbnail": "item-thumbnail-inset"
@@ -6947,7 +6947,7 @@ const $v = typeof ResizeObserver < "u", dh = $v === !0 ? {} : {
6947
6947
  size: String
6948
6948
  },
6949
6949
  setup(e) {
6950
- const n = Qe(), t = Cn(e, n.proxy.$q), r = k(() => e.vertical === !0 ? "vertical" : "horizontal"), o = k(() => ` q-separator--${r.value}`), a = k(() => e.inset !== !1 ? `${o.value}-${pb[e.inset]}` : ""), i = k(
6950
+ const n = Qe(), t = Cn(e, n.proxy.$q), r = k(() => e.vertical === !0 ? "vertical" : "horizontal"), o = k(() => ` q-separator--${r.value}`), a = k(() => e.inset !== !1 ? `${o.value}-${p2[e.inset]}` : ""), i = k(
6951
6951
  () => `q-separator${o.value}${a.value}` + (e.color !== void 0 ? ` bg-${e.color}` : "") + (t.value === !0 ? " q-separator--dark" : "")
6952
6952
  ), s = k(() => {
6953
6953
  const u = {};
@@ -7027,7 +7027,7 @@ const $v = typeof ResizeObserver < "u", dh = $v === !0 ? {} : {
7027
7027
  );
7028
7028
  };
7029
7029
  }
7030
- }), vb = ["ul", "ol"], ld = Ke({
7030
+ }), v2 = ["ul", "ol"], ld = Ke({
7031
7031
  name: "QList",
7032
7032
  props: {
7033
7033
  ...xn,
@@ -7042,13 +7042,13 @@ const $v = typeof ResizeObserver < "u", dh = $v === !0 ? {} : {
7042
7042
  },
7043
7043
  setup(e, { slots: n }) {
7044
7044
  const t = Qe(), r = Cn(e, t.proxy.$q), o = k(
7045
- () => vb.includes(e.tag) ? null : "list"
7045
+ () => v2.includes(e.tag) ? null : "list"
7046
7046
  ), a = k(
7047
7047
  () => "q-list" + (e.bordered === !0 ? " q-list--bordered" : "") + (e.dense === !0 ? " q-list--dense" : "") + (e.separator === !0 ? " q-list--separator" : "") + (r.value === !0 ? " q-list--dark" : "") + (e.padding === !0 ? " q-list--padding" : "")
7048
7048
  );
7049
7049
  return () => T(e.tag, { class: a.value, role: o.value }, _t(n.default));
7050
7050
  }
7051
- }), mb = Ke({
7051
+ }), m2 = Ke({
7052
7052
  name: "QToolbar",
7053
7053
  props: {
7054
7054
  inset: Boolean
@@ -7059,7 +7059,7 @@ const $v = typeof ResizeObserver < "u", dh = $v === !0 ? {} : {
7059
7059
  );
7060
7060
  return () => T("div", { class: t.value, role: "toolbar" }, _t(n.default));
7061
7061
  }
7062
- }), gb = Ke({
7062
+ }), g2 = Ke({
7063
7063
  name: "QHeader",
7064
7064
  props: {
7065
7065
  modelValue: {
@@ -7185,7 +7185,7 @@ const cd = zc(
7185
7185
  }
7186
7186
  }
7187
7187
  );
7188
- function yb(e) {
7188
+ function y2(e) {
7189
7189
  return K0() ? (X0(e), !0) : !1;
7190
7190
  }
7191
7191
  function Wv(e) {
@@ -7193,9 +7193,9 @@ function Wv(e) {
7193
7193
  }
7194
7194
  const Hv = typeof window < "u" && typeof document < "u";
7195
7195
  typeof WorkerGlobalScope < "u" && globalThis instanceof WorkerGlobalScope;
7196
- const bb = Object.prototype.toString, wb = (e) => bb.call(e) === "[object Object]", is = () => {
7197
- }, xb = /* @__PURE__ */ Cb();
7198
- function Cb() {
7196
+ const b2 = Object.prototype.toString, w2 = (e) => b2.call(e) === "[object Object]", is = () => {
7197
+ }, x2 = /* @__PURE__ */ C2();
7198
+ function C2() {
7199
7199
  var e, n;
7200
7200
  return Hv && ((e = window == null ? void 0 : window.navigator) == null ? void 0 : e.userAgent) && (/iP(?:ad|hone|od)/.test(window.navigator.userAgent) || ((n = window == null ? void 0 : window.navigator) == null ? void 0 : n.maxTouchPoints) > 2 && /iPad|Macintosh/.test(window == null ? void 0 : window.navigator.userAgent));
7201
7201
  }
@@ -7217,7 +7217,7 @@ function Yu(...e) {
7217
7217
  ([c, d]) => {
7218
7218
  if (i(), !c)
7219
7219
  return;
7220
- const f = wb(d) ? { ...d } : d;
7220
+ const f = w2(d) ? { ...d } : d;
7221
7221
  a.push(
7222
7222
  ...t.flatMap((h) => r.map((p) => s(c, h, p, f)))
7223
7223
  );
@@ -7226,14 +7226,14 @@ function Yu(...e) {
7226
7226
  ), l = () => {
7227
7227
  u(), i();
7228
7228
  };
7229
- return yb(l), l;
7229
+ return y2(l), l;
7230
7230
  }
7231
7231
  let hh = !1;
7232
- function _b(e, n, t = {}) {
7232
+ function _2(e, n, t = {}) {
7233
7233
  const { window: r = jv, ignore: o = [], capture: a = !0, detectIframe: i = !1 } = t;
7234
7234
  if (!r)
7235
7235
  return is;
7236
- xb && !hh && (hh = !0, Array.from(r.document.body.children).forEach((f) => f.addEventListener("click", is)), r.document.documentElement.addEventListener("click", is));
7236
+ x2 && !hh && (hh = !0, Array.from(r.document.body.children).forEach((f) => f.addEventListener("click", is)), r.document.documentElement.addEventListener("click", is));
7237
7237
  let s = !0;
7238
7238
  const u = (f) => o.some((h) => {
7239
7239
  if (typeof h == "string")
@@ -7267,15 +7267,15 @@ function _b(e, n, t = {}) {
7267
7267
  ].filter(Boolean);
7268
7268
  return () => c.forEach((f) => f());
7269
7269
  }
7270
- const kb = {}, Sb = {
7270
+ const k2 = {}, S2 = {
7271
7271
  xmlns: "http://www.w3.org/2000/svg",
7272
7272
  width: "currentWidth",
7273
7273
  height: "currentHeight",
7274
7274
  viewBox: "0 0 24 24",
7275
7275
  fill: "currentFill"
7276
7276
  };
7277
- function Eb(e, n) {
7278
- return X(), ye("svg", Sb, n[0] || (n[0] = [
7277
+ function E2(e, n) {
7278
+ return X(), ye("svg", S2, n[0] || (n[0] = [
7279
7279
  fe("path", {
7280
7280
  d: "M13.01 2.91995L18.91 5.53995C20.61 6.28995 20.61 7.52995 18.91 8.27995L13.01 10.8999C12.34 11.1999 11.24 11.1999 10.57 10.8999L4.67002 8.27995C2.97002 7.52995 2.97002 6.28995 4.67002 5.53995L10.57 2.91995C11.24 2.61995 12.34 2.61995 13.01 2.91995Z",
7281
7281
  stroke: "currentStroke",
@@ -7299,15 +7299,15 @@ function Eb(e, n) {
7299
7299
  }, null, -1)
7300
7300
  ]));
7301
7301
  }
7302
- const Rb = /* @__PURE__ */ Fe(kb, [["render", Eb]]), Ib = {}, Tb = {
7302
+ const R2 = /* @__PURE__ */ Fe(k2, [["render", E2]]), I2 = {}, T2 = {
7303
7303
  xmlns: "http://www.w3.org/2000/svg",
7304
7304
  width: "24",
7305
7305
  height: "24",
7306
7306
  viewBox: "0 0 24 24",
7307
7307
  fill: "none"
7308
7308
  };
7309
- function Ab(e, n) {
7310
- return X(), ye("svg", Tb, n[0] || (n[0] = [
7309
+ function A2(e, n) {
7310
+ return X(), ye("svg", T2, n[0] || (n[0] = [
7311
7311
  fe("path", {
7312
7312
  d: "M12 14.9999C13.6569 14.9999 15 13.6567 15 11.9999C15 10.343 13.6569 8.99988 12 8.99988C10.3431 8.99988 9 10.343 9 11.9999C9 13.6567 10.3431 14.9999 12 14.9999Z",
7313
7313
  stroke: "currentStroke",
@@ -7326,27 +7326,27 @@ function Ab(e, n) {
7326
7326
  }, null, -1)
7327
7327
  ]));
7328
7328
  }
7329
- const Db = /* @__PURE__ */ Fe(Ib, [["render", Ab]]), Mb = {}, Pb = {
7329
+ const D2 = /* @__PURE__ */ Fe(I2, [["render", A2]]), M2 = {}, P2 = {
7330
7330
  xmlns: "http://www.w3.org/2000/svg",
7331
7331
  width: "24",
7332
7332
  height: "24",
7333
7333
  viewBox: "0 0 24 24",
7334
7334
  fill: "none"
7335
7335
  };
7336
- function Fb(e, n) {
7337
- return X(), ye("svg", Pb, n[0] || (n[0] = [
7336
+ function F2(e, n) {
7337
+ return X(), ye("svg", P2, n[0] || (n[0] = [
7338
7338
  fr('<path d="M12 22.0003C7.17 22.0003 3.25 18.0803 3.25 13.2503C3.25 8.42031 7.17 4.50031 12 4.50031C16.83 4.50031 20.75 8.42031 20.75 13.2503" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M12 8.00012V13.0001" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M9 2.00018H15" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M19 17V21" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M16 17V21" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>', 5)
7339
7339
  ]));
7340
7340
  }
7341
- const Bb = /* @__PURE__ */ Fe(Mb, [["render", Fb]]), Ob = {}, Nb = {
7341
+ const B2 = /* @__PURE__ */ Fe(M2, [["render", F2]]), O2 = {}, N2 = {
7342
7342
  xmlns: "http://www.w3.org/2000/svg",
7343
7343
  width: "24",
7344
7344
  height: "24",
7345
7345
  viewBox: "0 0 24 24",
7346
7346
  fill: "none"
7347
7347
  };
7348
- function Lb(e, n) {
7349
- return X(), ye("svg", Nb, n[0] || (n[0] = [
7348
+ function L2(e, n) {
7349
+ return X(), ye("svg", N2, n[0] || (n[0] = [
7350
7350
  fe("path", {
7351
7351
  d: "M10.07 2.82033L3.14002 8.37032C2.36002 8.99032 1.86002 10.3004 2.03002 11.2804L3.36002 19.2403C3.60002 20.6603 4.96002 21.8103 6.40002 21.8103H17.6C19.03 21.8103 20.4 20.6503 20.64 19.2403L21.97 11.2804C22.13 10.3004 21.63 8.99032 20.86 8.37032L13.93 2.83034C12.86 1.97034 11.13 1.97033 10.07 2.82033Z",
7352
7352
  stroke: "currentStroke",
@@ -7363,15 +7363,15 @@ function Lb(e, n) {
7363
7363
  }, null, -1)
7364
7364
  ]));
7365
7365
  }
7366
- const qb = /* @__PURE__ */ Fe(Ob, [["render", Lb]]), Vb = {}, zb = {
7366
+ const q2 = /* @__PURE__ */ Fe(O2, [["render", L2]]), V2 = {}, z2 = {
7367
7367
  xmlns: "http://www.w3.org/2000/svg",
7368
7368
  width: "24",
7369
7369
  height: "24",
7370
7370
  viewBox: "0 0 24 24",
7371
7371
  fill: "none"
7372
7372
  };
7373
- function $b(e, n) {
7374
- return X(), ye("svg", zb, n[0] || (n[0] = [
7373
+ function $2(e, n) {
7374
+ return X(), ye("svg", z2, n[0] || (n[0] = [
7375
7375
  fe("path", {
7376
7376
  d: "M19 8.00018C20.6569 8.00018 22 6.65704 22 5.00018C22 3.34333 20.6569 2.00018 19 2.00018C17.3431 2.00018 16 3.34333 16 5.00018C16 6.65704 17.3431 8.00018 19 8.00018Z",
7377
7377
  stroke: "currentStroke",
@@ -7402,15 +7402,15 @@ function $b(e, n) {
7402
7402
  }, null, -1)
7403
7403
  ]));
7404
7404
  }
7405
- const Wb = /* @__PURE__ */ Fe(Vb, [["render", $b]]), Hb = {}, jb = {
7405
+ const W2 = /* @__PURE__ */ Fe(V2, [["render", $2]]), H2 = {}, j2 = {
7406
7406
  width: "28",
7407
7407
  height: "28",
7408
7408
  viewBox: "0 0 24 24",
7409
7409
  fill: "none",
7410
7410
  xmlns: "http://www.w3.org/2000/svg"
7411
7411
  };
7412
- function Ub(e, n) {
7413
- return X(), ye("svg", jb, n[0] || (n[0] = [
7412
+ function U2(e, n) {
7413
+ return X(), ye("svg", j2, n[0] || (n[0] = [
7414
7414
  fe("path", {
7415
7415
  "fill-rule": "evenodd",
7416
7416
  "clip-rule": "evenodd",
@@ -7419,15 +7419,15 @@ function Ub(e, n) {
7419
7419
  }, null, -1)
7420
7420
  ]));
7421
7421
  }
7422
- const Gb = /* @__PURE__ */ Fe(Hb, [["render", Ub]]), Kb = {}, Xb = {
7422
+ const G2 = /* @__PURE__ */ Fe(H2, [["render", U2]]), K2 = {}, X2 = {
7423
7423
  xmlns: "http://www.w3.org/2000/svg",
7424
7424
  width: "currentWidth",
7425
7425
  height: "currentHeight",
7426
7426
  viewBox: "0 0 24 24",
7427
7427
  fill: "currentFill"
7428
7428
  };
7429
- function Yb(e, n) {
7430
- return X(), ye("svg", Xb, n[0] || (n[0] = [
7429
+ function Y2(e, n) {
7430
+ return X(), ye("svg", X2, n[0] || (n[0] = [
7431
7431
  fe("path", {
7432
7432
  d: "M4.91003 11.84C9.21003 8.51998 14.8 8.51998 19.1 11.84",
7433
7433
  stroke: "currentStroke",
@@ -7458,15 +7458,15 @@ function Yb(e, n) {
7458
7458
  }, null, -1)
7459
7459
  ]));
7460
7460
  }
7461
- const Qb = /* @__PURE__ */ Fe(Kb, [["render", Yb]]), Zb = {}, Jb = {
7461
+ const Q2 = /* @__PURE__ */ Fe(K2, [["render", Y2]]), Z2 = {}, J2 = {
7462
7462
  xmlns: "http://www.w3.org/2000/svg",
7463
7463
  width: "24",
7464
7464
  height: "24",
7465
7465
  viewBox: "0 0 24 24",
7466
7466
  fill: "none"
7467
7467
  };
7468
- function e2(e, n) {
7469
- return X(), ye("svg", Jb, n[0] || (n[0] = [
7468
+ function eb(e, n) {
7469
+ return X(), ye("svg", J2, n[0] || (n[0] = [
7470
7470
  fe("path", {
7471
7471
  d: "M9.02 2.83986L3.63 7.03986C2.73 7.73986 2 9.22986 2 10.3599V17.7699C2 20.0899 3.89 21.9899 6.21 21.9899H17.79C20.11 21.9899 22 20.0899 22 17.7799V10.4999C22 9.28986 21.19 7.73986 20.2 7.04986L14.02 2.71986C12.62 1.73986 10.37 1.78986 9.02 2.83986Z",
7472
7472
  stroke: "currentStroke",
@@ -7497,27 +7497,27 @@ function e2(e, n) {
7497
7497
  }, null, -1)
7498
7498
  ]));
7499
7499
  }
7500
- const t2 = /* @__PURE__ */ Fe(Zb, [["render", e2]]), n2 = {}, r2 = {
7500
+ const tb = /* @__PURE__ */ Fe(Z2, [["render", eb]]), nb = {}, rb = {
7501
7501
  xmlns: "http://www.w3.org/2000/svg",
7502
7502
  width: "24",
7503
7503
  height: "24",
7504
7504
  viewBox: "0 0 24 24",
7505
7505
  fill: "none"
7506
7506
  };
7507
- function o2(e, n) {
7508
- return X(), ye("svg", r2, n[0] || (n[0] = [
7507
+ function ob(e, n) {
7508
+ return X(), ye("svg", rb, n[0] || (n[0] = [
7509
7509
  fr('<path d="M18 7.16019C17.94 7.15019 17.87 7.15019 17.81 7.16019C16.43 7.11019 15.33 5.98018 15.33 4.58018C15.33 3.15018 16.48 2.00018 17.91 2.00018C19.34 2.00018 20.49 3.16018 20.49 4.58018C20.48 5.98018 19.38 7.11019 18 7.16019Z" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M16.9698 14.4401C18.3398 14.6701 19.8498 14.4301 20.9098 13.7201C22.3198 12.7801 22.3198 11.2401 20.9098 10.3001C19.8398 9.5901 18.3098 9.35009 16.9398 9.59009" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M5.9701 7.16037C6.0301 7.15037 6.1001 7.15037 6.1601 7.16037C7.5401 7.11037 8.6401 5.98037 8.6401 4.58037C8.6401 3.15037 7.4901 2.00037 6.0601 2.00037C4.6301 2.00037 3.4801 3.16037 3.4801 4.58037C3.4901 5.98037 4.5901 7.11037 5.9701 7.16037Z" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M7.00006 14.4401C5.63006 14.6701 4.12006 14.4301 3.06006 13.7201C1.65006 12.7801 1.65006 11.2401 3.06006 10.3001C4.13006 9.5901 5.66006 9.35009 7.03006 9.59009" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M12.0001 14.6302C11.9401 14.6202 11.8701 14.6202 11.8101 14.6302C10.4301 14.5802 9.33008 13.4502 9.33008 12.0502C9.33008 10.6202 10.4801 9.47021 11.9101 9.47021C13.3401 9.47021 14.4901 10.6302 14.4901 12.0502C14.4801 13.4502 13.3801 14.5902 12.0001 14.6302Z" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M9.09021 17.7804C7.68021 18.7204 7.68021 20.2603 9.09021 21.2003C10.6902 22.2703 13.3102 22.2703 14.9102 21.2003C16.3202 20.2603 16.3202 18.7204 14.9102 17.7804C13.3202 16.7204 10.6902 16.7204 9.09021 17.7804Z" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>', 6)
7510
7510
  ]));
7511
7511
  }
7512
- const a2 = /* @__PURE__ */ Fe(n2, [["render", o2]]), i2 = {}, s2 = {
7512
+ const ab = /* @__PURE__ */ Fe(nb, [["render", ob]]), ib = {}, sb = {
7513
7513
  width: "24",
7514
7514
  height: "24",
7515
7515
  viewBox: "0 0 24 24",
7516
7516
  fill: "none",
7517
7517
  xmlns: "http://www.w3.org/2000/svg"
7518
7518
  };
7519
- function u2(e, n) {
7520
- return X(), ye("svg", s2, n[0] || (n[0] = [
7519
+ function ub(e, n) {
7520
+ return X(), ye("svg", sb, n[0] || (n[0] = [
7521
7521
  fe("path", {
7522
7522
  d: "M12 12C14.7614 12 17 9.76142 17 7C17 4.23858 14.7614 2 12 2C9.23858 2 7 4.23858 7 7C7 9.76142 9.23858 12 12 12Z",
7523
7523
  stroke: "currentStroke",
@@ -7534,20 +7534,20 @@ function u2(e, n) {
7534
7534
  }, null, -1)
7535
7535
  ]));
7536
7536
  }
7537
- const l2 = /* @__PURE__ */ Fe(i2, [["render", u2]]), c2 = {}, d2 = {
7537
+ const lb = /* @__PURE__ */ Fe(ib, [["render", ub]]), cb = {}, db = {
7538
7538
  width: "24",
7539
7539
  height: "24",
7540
7540
  viewBox: "0 0 24 24",
7541
7541
  fill: "none",
7542
7542
  xmlns: "http://www.w3.org/2000/svg"
7543
7543
  };
7544
- function f2(e, n) {
7545
- return X(), ye("svg", d2, n[0] || (n[0] = [
7544
+ function fb(e, n) {
7545
+ return X(), ye("svg", db, n[0] || (n[0] = [
7546
7546
  fr('<path d="M17 3H21V7" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M15 9L21 3" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M7 21H3V17" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M9 15L3 21" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M14.02 2.20001C13.37 2.07001 12.69 2 12 2C6.48 2 2 6.48 2 12C2 12.69 2.07001 13.36 2.20001 14" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M9.97998 21.8C10.63 21.93 11.31 22 12 22C17.52 22 22 17.52 22 12C22 11.32 21.93 10.65 21.8 10" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>', 6)
7547
7547
  ]));
7548
7548
  }
7549
- const h2 = /* @__PURE__ */ Fe(c2, [["render", f2]]), p2 = {};
7550
- function v2(e, n) {
7549
+ const hb = /* @__PURE__ */ Fe(cb, [["render", fb]]), pb = {};
7550
+ function vb(e, n) {
7551
7551
  return X(), ye("div", null, n[0] || (n[0] = [
7552
7552
  fe("svg", {
7553
7553
  xmlns: "http://www.w3.org/2000/svg",
@@ -7566,15 +7566,15 @@ function v2(e, n) {
7566
7566
  ], -1)
7567
7567
  ]));
7568
7568
  }
7569
- const m2 = /* @__PURE__ */ Fe(p2, [["render", v2]]), g2 = {}, y2 = {
7569
+ const mb = /* @__PURE__ */ Fe(pb, [["render", vb]]), gb = {}, yb = {
7570
7570
  xmlns: "http://www.w3.org/2000/svg",
7571
7571
  width: "40",
7572
7572
  height: "26",
7573
7573
  viewBox: "0 0 40 26",
7574
7574
  fill: "none"
7575
7575
  };
7576
- function b2(e, n) {
7577
- return X(), ye("svg", y2, n[0] || (n[0] = [
7576
+ function bb(e, n) {
7577
+ return X(), ye("svg", yb, n[0] || (n[0] = [
7578
7578
  fe("g", { "clip-path": "url(#clip0_2687_49807)" }, [
7579
7579
  fe("path", {
7580
7580
  d: "M12.5419 25.975C11.7095 25.9001 10.8129 25.7203 10.0582 25.4755C9.24862 25.2108 9.12055 25.1558 8.33381 24.7312C7.13084 24.0868 6.39899 23.5773 5.38813 22.6882C4.72032 22.0988 3.71403 21.0298 3.2246 20.3854C3.02335 20.1207 2.7855 19.8159 2.69402 19.7061C2.3098 19.2515 -0.0778546 15.2403 -9.58358e-05 15.1904C0.0136263 15.1804 0.320087 15.0505 0.676863 14.9057C2.0445 14.3362 3.40299 14.0115 4.7752 13.9266C6.05136 13.8467 7.14456 13.9366 8.48933 14.2413C8.82781 14.3162 9.11597 14.3712 9.12969 14.3562C9.14342 14.3412 8.99705 13.8966 8.80951 13.3671C7.913 10.8646 7.2955 7.12315 7.3321 4.42574L7.34582 3.59654L8.35668 4.17598C9.57795 4.87531 11.2932 5.95428 11.9565 6.43381C12.7844 7.03823 13.4156 7.58271 14.4813 8.61671C14.7603 8.88646 14.9982 9.09126 15.0119 9.07627C15.0256 9.06129 15.1308 8.68665 15.2498 8.25207C15.5105 7.27301 15.8535 6.3439 16.4207 5.0951C17.1663 3.46167 18.4562 1.57349 19.6363 0.394621L20.0342 0L20.2309 0.239769C21.2555 1.47858 22.2846 3.19693 23.0531 4.94025C23.5974 6.16907 23.9267 7.16811 24.3841 8.96638C24.4802 9.33602 24.5717 9.64073 24.5854 9.64073C24.5991 9.64073 24.7821 9.44092 24.9879 9.20115C25.5414 8.54179 26.4287 7.70759 27.4945 6.83842C27.7278 6.64861 27.9656 6.4488 28.0205 6.39385C28.0754 6.33891 28.1852 6.25399 28.2629 6.20903C28.3407 6.16407 28.6243 5.97925 28.8896 5.79942C29.6854 5.27493 32.224 3.78136 32.5717 3.6365L32.6814 3.59155L32.654 4.66551C32.5671 7.97233 32.0548 10.8396 31.0439 13.6519C30.9113 14.0215 30.8152 14.3412 30.829 14.3562C30.8427 14.3712 31.2498 14.3012 31.7346 14.1964C33.2303 13.8767 34.5522 13.8017 35.7689 13.9666C36.638 14.0865 37.7541 14.3312 38.3944 14.551C38.8701 14.7158 39.9039 15.1205 39.9953 15.1854C40.0136 15.2004 39.9953 15.2653 39.9542 15.3303C39.8901 15.4252 38.8564 17.1935 38.216 18.3024C38.0468 18.5921 37.5071 19.3714 36.9673 20.1057C36.2721 21.0498 34.9181 22.4584 34.0674 23.1178C32.2378 24.5414 30.8472 25.2307 28.9353 25.6653C27.339 26.03 26.3555 26.0749 24.9605 25.8451C24.5076 25.7702 23.977 25.6653 23.7804 25.6054C23.5837 25.5454 23.3184 25.4655 23.1903 25.4305C22.9433 25.3656 21.6031 24.8061 21.5482 24.7462C21.4842 24.6813 21.7175 23.967 22.0788 23.1078C22.8564 21.2646 23.0622 20.6551 23.3824 19.2015C23.6523 17.9927 23.8124 16.9287 23.9267 15.61C23.9862 14.9157 24.0045 12.7927 23.9496 12.1134L23.9267 11.7837L23.5196 12.3331C22.4585 13.7768 21.4888 15.605 20.8575 17.3483C20.5648 18.1575 20.1714 19.4263 20.1211 19.736C20.0845 19.9408 20.0342 19.9608 20.0022 19.786C19.9473 19.5062 19.4487 17.9178 19.2475 17.3683C18.6437 15.7349 17.4499 13.4571 16.7135 12.5429L16.5076 12.2882L16.4756 12.498C16.4573 12.6129 16.4436 13.522 16.4436 14.516C16.4436 16.5441 16.4665 16.8188 16.8232 18.9668C17.2212 21.3545 17.3813 21.9789 17.8981 23.1977C18.0262 23.4974 18.2137 23.962 18.3189 24.2317L18.5065 24.7212L18.0171 24.986C17.3904 25.3256 16.5351 25.6154 15.5471 25.8152C14.8427 25.96 14.7009 25.975 13.8684 25.99C13.3698 26 12.7661 25.99 12.5328 25.97L12.5419 25.975ZM16.1188 25.1808C16.9879 25.1258 17.7838 24.986 18.1131 24.8211C18.2549 24.7512 18.3647 24.6763 18.3555 24.6513C18.3464 24.6263 18.1223 24.1967 17.857 23.6972C17.4362 22.903 17.2944 22.6782 16.7546 21.9739C15.698 20.5902 14.9707 19.8159 13.5574 18.5821C12.8209 17.9427 11.2109 16.9787 10.3647 16.674C9.50019 16.3643 8.72718 16.1595 7.95416 16.0296C7.16286 15.8997 7.11254 15.8947 6.06966 15.9197C5.15028 15.9397 4.84839 15.9646 3.95188 16.0995C3.37555 16.1844 2.89985 16.2644 2.88613 16.2744C2.85868 16.3043 2.92272 16.4242 3.3481 17.1635C3.97932 18.2525 4.78435 19.3614 5.75405 20.4703C7.13541 22.0538 8.45731 23.0928 10.1863 23.957C11.1743 24.4515 11.4487 24.5514 12.4916 24.8361C13.0725 24.996 13.411 25.0609 14.0056 25.1258C14.8976 25.2207 15.2223 25.2307 16.1097 25.1758L16.1188 25.1808ZM26.3647 25.0909C27.2978 24.931 27.5082 24.8761 28.5694 24.5014C29.7632 24.0768 30.7055 23.5474 32.1463 22.4884C32.5625 22.1837 33.3675 21.4544 33.7746 21.0198C34.3327 20.4204 35.0691 19.5112 35.4762 18.9168C36.0159 18.1276 37.0817 16.3842 37.0451 16.3493C36.9993 16.2993 35.6637 16.0596 34.973 15.9746C34.5614 15.9247 34.0582 15.8997 33.4956 15.8997C32.7272 15.8997 32.5625 15.9197 31.7575 16.0596C30.9387 16.2044 30.7924 16.2444 29.905 16.5741C29.3744 16.7689 28.8484 16.9837 28.734 17.0436C28.1165 17.3833 27.1651 17.9877 26.6803 18.3474C24.6814 19.8359 22.3167 22.7431 21.6168 24.5714L21.5574 24.7312L22.2343 24.911C23.0942 25.1408 23.6706 25.2108 24.7272 25.2208C25.4819 25.2208 25.6603 25.2108 26.3647 25.0909ZM23.9862 19.5662C24.9742 18.1975 25.244 17.8878 26.0674 17.1485C26.598 16.669 27.7872 15.7249 28.08 15.55C28.4504 15.3253 29.4201 14.8557 29.6763 14.7708C29.9233 14.6909 29.9782 14.6559 30.0148 14.556C30.1932 14.0515 30.5042 12.1483 30.7786 9.93545C30.9067 8.87646 31.1263 6.17406 31.0851 6.12911C31.0439 6.08415 29.3973 6.9733 28.7295 7.40788C27.4121 8.26206 25.8615 9.55082 25.0016 10.5049L24.6997 10.8396L24.7455 11.5839C24.8049 12.5429 24.8004 14.2263 24.7363 15.0405C24.6494 16.0745 24.3201 17.4582 23.7163 19.2964C23.4922 19.9858 23.4419 20.2056 23.5151 20.2056C23.5242 20.2056 23.7392 19.9208 23.9908 19.5762L23.9862 19.5662ZM20.0754 19.3164C20.0754 19.3164 20.208 18.8319 20.3452 18.2924C20.7752 16.5591 21.0268 15.7998 21.5299 14.6609C21.7815 14.0964 22.1063 13.4071 22.2572 13.1174C22.4036 12.8327 22.5271 12.5929 22.5271 12.5779C22.5271 12.5379 23.355 11.2342 23.5562 10.9645L23.7666 10.6797L23.6751 9.97541C23.3412 7.36292 21.6077 2.41768 20.4093 0.664361C20.2172 0.38463 20.0525 0.154851 20.0434 0.154851C20.0342 0.154851 19.9427 0.289721 19.8375 0.449568C19.3755 1.17387 18.2366 4.2659 17.6283 6.46378C17.2257 7.92238 16.7272 10.2152 16.6769 10.8496L16.654 11.1743L16.9376 11.5689C17.3355 12.1283 17.7243 12.8327 18.2137 13.9066C19.1743 16.0046 19.4899 16.9537 19.8604 18.8818C19.9473 19.3214 20.0068 19.4413 20.0754 19.3164ZM15.8169 19.0517C15.8169 19.0517 15.7163 18.762 15.5928 18.4523C15.3047 17.723 15.0028 16.639 14.8472 15.7748C14.5774 14.2763 14.5316 12.2033 14.7329 10.6348L14.7832 10.2402L14.4813 9.93545C13.5802 9.02632 11.8284 7.6976 10.6346 7.01326C10.0674 6.68857 8.85983 6.05418 8.83696 6.07915C8.81409 6.10413 8.9879 8.07723 9.10682 9.13622C9.34925 11.3041 9.63284 13.1524 9.88441 14.2063L9.98047 14.601L10.4013 14.7808C11.3161 15.1754 12.359 15.8148 13.2875 16.5641C13.937 17.0836 14.3944 17.5431 15.1263 18.4123C15.6248 19.0017 15.8124 19.1766 15.8124 19.0517H15.8169Z",
@@ -7592,51 +7592,51 @@ function b2(e, n) {
7592
7592
  ], -1)
7593
7593
  ]));
7594
7594
  }
7595
- const w2 = /* @__PURE__ */ Fe(g2, [["render", b2]]), x2 = {}, C2 = {
7595
+ const wb = /* @__PURE__ */ Fe(gb, [["render", bb]]), xb = {}, Cb = {
7596
7596
  width: "24",
7597
7597
  height: "24",
7598
7598
  viewBox: "0 0 24 24",
7599
7599
  fill: "none",
7600
7600
  xmlns: "http://www.w3.org/2000/svg"
7601
7601
  };
7602
- function _2(e, n) {
7603
- return X(), ye("svg", C2, n[0] || (n[0] = [
7602
+ function _b(e, n) {
7603
+ return X(), ye("svg", Cb, n[0] || (n[0] = [
7604
7604
  fr('<path d="M11 19.5H21" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M11 12.5H21" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M11 5.5H21" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M3 5.5L4 6.5L7 3.5" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M3 12.5L4 13.5L7 10.5" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M3 19.5L4 20.5L7 17.5" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>', 6)
7605
7605
  ]));
7606
7606
  }
7607
- const k2 = /* @__PURE__ */ Fe(x2, [["render", _2]]), S2 = {}, E2 = {
7607
+ const kb = /* @__PURE__ */ Fe(xb, [["render", _b]]), Sb = {}, Eb = {
7608
7608
  width: "24",
7609
7609
  height: "24",
7610
7610
  viewBox: "0 0 24 24",
7611
7611
  fill: "none",
7612
7612
  xmlns: "http://www.w3.org/2000/svg"
7613
7613
  };
7614
- function R2(e, n) {
7615
- return X(), ye("svg", E2, n[0] || (n[0] = [
7614
+ function Rb(e, n) {
7615
+ return X(), ye("svg", Eb, n[0] || (n[0] = [
7616
7616
  fr('<path d="M14 13V14C14 14.01 14 14.01 14 14.02C14 15.11 13.99 16 12 16C10.02 16 10 15.12 10 14.03V13C10 12 10 12 11 12H13C14 12 14 12 14 13Z" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M21.65 11C19.34 12.68 16.7 13.68 14 14.02" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M2.62012 11.27C4.87012 12.81 7.41012 13.74 10.0001 14.03" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M7.99983 22H15.9998C20.0198 22 20.7398 20.39 20.9498 18.43L21.6998 10.43C21.9698 7.99 21.2698 6 16.9998 6H6.99983C2.72983 6 2.02983 7.99 2.29983 10.43L3.04983 18.43C3.25983 20.39 3.97983 22 7.99983 22Z" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M8 6V5.2C8 3.43 8 2 11.2 2H12.8C16 2 16 3.43 16 5.2V6" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path>', 5)
7617
7617
  ]));
7618
7618
  }
7619
- const I2 = /* @__PURE__ */ Fe(S2, [["render", R2]]), T2 = {}, A2 = {
7619
+ const Ib = /* @__PURE__ */ Fe(Sb, [["render", Rb]]), Tb = {}, Ab = {
7620
7620
  width: 24,
7621
7621
  height: 24,
7622
7622
  viewBox: "0 0 24 24",
7623
7623
  fill: "none",
7624
7624
  xmlns: "http://www.w3.org/2000/svg"
7625
7625
  };
7626
- function D2(e, n) {
7627
- return X(), ye("svg", A2, n[0] || (n[0] = [
7626
+ function Db(e, n) {
7627
+ return X(), ye("svg", Ab, n[0] || (n[0] = [
7628
7628
  fr('<path class="icon-section" d="M8.5 14.25C8.5 16.17 10.08 17.75 12 17.75C13.92 17.75 15.5 16.17 15.5 14.25" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path class="icon-section" d="M8.80994 2L5.18994 5.63" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path class="icon-section" d="M15.1899 2L18.8099 5.63" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path class="icon-section" d="M2 7.8501C2 6.0001 2.99 5.8501 4.22 5.8501H19.78C21.01 5.8501 22 6.0001 22 7.8501C22 10.0001 21.01 9.8501 19.78 9.8501H4.22C2.99 9.8501 2 10.0001 2 7.8501Z" stroke="currentStroke" stroke-width="1.5"></path><path class="icon-section" d="M3.5 10L4.91 18.64C5.23 20.58 6 22 8.86 22H14.89C18 22 18.46 20.64 18.82 18.76L20.5 10" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round"></path>', 5)
7629
7629
  ]));
7630
7630
  }
7631
- const M2 = /* @__PURE__ */ Fe(T2, [["render", D2]]), P2 = {}, F2 = {
7631
+ const Mb = /* @__PURE__ */ Fe(Tb, [["render", Db]]), Pb = {}, Fb = {
7632
7632
  width: "24",
7633
7633
  height: "24",
7634
7634
  viewBox: "0 0 24 24",
7635
7635
  fill: "none",
7636
7636
  xmlns: "http://www.w3.org/2000/svg"
7637
7637
  };
7638
- function B2(e, n) {
7639
- return X(), ye("svg", F2, n[0] || (n[0] = [
7638
+ function Bb(e, n) {
7639
+ return X(), ye("svg", Fb, n[0] || (n[0] = [
7640
7640
  fe("path", {
7641
7641
  d: "M2 13H22",
7642
7642
  stroke: "currentStroke",
@@ -7667,15 +7667,15 @@ function B2(e, n) {
7667
7667
  }, null, -1)
7668
7668
  ]));
7669
7669
  }
7670
- const O2 = /* @__PURE__ */ Fe(P2, [["render", B2]]), N2 = {}, L2 = {
7670
+ const Ob = /* @__PURE__ */ Fe(Pb, [["render", Bb]]), Nb = {}, Lb = {
7671
7671
  width: "24",
7672
7672
  height: "24",
7673
7673
  viewBox: "0 0 24 24",
7674
7674
  fill: "none",
7675
7675
  xmlns: "http://www.w3.org/2000/svg"
7676
7676
  };
7677
- function q2(e, n) {
7678
- return X(), ye("svg", L2, n[0] || (n[0] = [
7677
+ function qb(e, n) {
7678
+ return X(), ye("svg", Lb, n[0] || (n[0] = [
7679
7679
  fe("path", {
7680
7680
  d: "M12 6.43994V9.76994",
7681
7681
  stroke: "currentStroke",
@@ -7698,15 +7698,15 @@ function q2(e, n) {
7698
7698
  }, null, -1)
7699
7699
  ]));
7700
7700
  }
7701
- const V2 = /* @__PURE__ */ Fe(N2, [["render", q2]]), z2 = {}, $2 = {
7701
+ const Vb = /* @__PURE__ */ Fe(Nb, [["render", qb]]), zb = {}, $b = {
7702
7702
  width: "24",
7703
7703
  height: "24",
7704
7704
  viewBox: "0 0 24 24",
7705
7705
  fill: "none",
7706
7706
  xmlns: "http://www.w3.org/2000/svg"
7707
7707
  };
7708
- function W2(e, n) {
7709
- return X(), ye("svg", $2, n[0] || (n[0] = [
7708
+ function Wb(e, n) {
7709
+ return X(), ye("svg", $b, n[0] || (n[0] = [
7710
7710
  fe("path", {
7711
7711
  d: "M21.0801 8.58003V15.42C21.0801 16.54 20.4802 17.58 19.5102 18.15L13.5702 21.58C12.6002 22.14 11.4002 22.14 10.4202 21.58L4.48016 18.15C3.51016 17.59 2.91016 16.55 2.91016 15.42V8.58003C2.91016 7.46003 3.51016 6.41999 4.48016 5.84999L10.4202 2.42C11.3902 1.86 12.5902 1.86 13.5702 2.42L19.5102 5.84999C20.4802 6.41999 21.0801 7.45003 21.0801 8.58003Z",
7712
7712
  stroke: "currentStroke",
@@ -7724,15 +7724,15 @@ function W2(e, n) {
7724
7724
  }, null, -1)
7725
7725
  ]));
7726
7726
  }
7727
- const H2 = /* @__PURE__ */ Fe(z2, [["render", W2]]), j2 = {}, U2 = {
7727
+ const Hb = /* @__PURE__ */ Fe(zb, [["render", Wb]]), jb = {}, Ub = {
7728
7728
  width: "24",
7729
7729
  height: "24",
7730
7730
  viewBox: "0 0 24 24",
7731
7731
  fill: "none",
7732
7732
  xmlns: "http://www.w3.org/2000/svg"
7733
7733
  };
7734
- function G2(e, n) {
7735
- return X(), ye("svg", U2, n[0] || (n[0] = [
7734
+ function Gb(e, n) {
7735
+ return X(), ye("svg", Ub, n[0] || (n[0] = [
7736
7736
  fe("path", {
7737
7737
  d: "M14.2201 9.78L12.0001 10.89M12.0001 10.89L9.78011 9.78M12.0001 10.89V13.67M20.8901 6.44L18.6701 7.55M20.8901 6.44L18.6701 5.33M20.8901 6.44V9.22M3.11011 6.44L5.33011 5.33M3.11011 6.44L5.33011 7.55M3.11011 6.44V9.22M12.0001 22L9.78011 20.89M12.0001 22L14.2201 20.89M12.0001 22V19.22M18.6701 18.67L20.8901 17.56V14.78M14.2201 3.11L12.0001 2L9.78011 3.11H14.2201ZM5.33011 18.67L3.11011 17.56V14.78L5.33011 18.67Z",
7738
7738
  stroke: "currentStroke",
@@ -7749,19 +7749,19 @@ function G2(e, n) {
7749
7749
  }, null, -1)
7750
7750
  ]));
7751
7751
  }
7752
- const K2 = /* @__PURE__ */ Fe(j2, [["render", G2]]), X2 = {}, Y2 = {
7752
+ const Kb = /* @__PURE__ */ Fe(jb, [["render", Gb]]), Xb = {}, Yb = {
7753
7753
  width: "24",
7754
7754
  height: "24",
7755
7755
  viewBox: "0 0 24 30",
7756
7756
  fill: "none",
7757
7757
  xmlns: "http://www.w3.org/2000/svg"
7758
7758
  };
7759
- function Q2(e, n) {
7760
- return X(), ye("svg", Y2, n[0] || (n[0] = [
7759
+ function Qb(e, n) {
7760
+ return X(), ye("svg", Yb, n[0] || (n[0] = [
7761
7761
  fr('<g filter="url(#filter0_d_116_6675)"><path d="M11.99 12V22" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linejoin="round"></path></g><g filter="url(#filter1_d_116_6675)"><path d="M15.99 12V22" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linejoin="round"></path></g><path d="M2 22H22" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M12 2C13.6 2.64 15.4 2.64 17 2V5C15.4 5.64 13.6 5.64 12 5V2Z" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M12 5V8" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M17 8H7C5 8 4 9 4 11V22H20V11C20 9 19 8 17 8Z" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M4.58008 12H19.4201" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M7.98999 12V22" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linejoin="round"></path><defs><filter id="filter0_d_116_6675" x="7.23999" y="12" width="9.5" height="18" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"></feColorMatrix><feOffset dy="4"></feOffset><feGaussianBlur stdDeviation="2"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"></feColorMatrix><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_116_6675"></feBlend><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_116_6675" result="shape"></feBlend></filter><filter id="filter1_d_116_6675" x="11.24" y="12" width="9.5" height="18" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"></feColorMatrix><feOffset dy="4"></feOffset><feGaussianBlur stdDeviation="2"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"></feColorMatrix><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_116_6675"></feBlend><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_116_6675" result="shape"></feBlend></filter></defs>', 9)
7762
7762
  ]));
7763
7763
  }
7764
- const Z2 = /* @__PURE__ */ Fe(X2, [["render", Q2]]), J2 = {}, ew = {
7764
+ const Zb = /* @__PURE__ */ Fe(Xb, [["render", Qb]]), Jb = {}, ew = {
7765
7765
  width: "24",
7766
7766
  height: "24",
7767
7767
  viewBox: "0 0 24 24",
@@ -7773,7 +7773,7 @@ function tw(e, n) {
7773
7773
  fr('<path d="M15.5 11H8.5C7.67 11 7 11.67 7 12.5V22H17V12.5C17 11.67 16.33 11 15.5 11Z" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M2 22H22" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M2.94995 22L2.99995 9.96999C2.99995 9.35999 3.28995 8.78004 3.76995 8.40004L10.77 2.95003C11.49 2.39003 12.5 2.39003 13.23 2.95003L20.23 8.39003C20.72 8.77003 21 9.34999 21 9.96999V22" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linejoin="round"></path><path d="M10 16.25V17.75" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M10.5 7.5H13.5" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path>', 5)
7774
7774
  ]));
7775
7775
  }
7776
- const nw = /* @__PURE__ */ Fe(J2, [["render", tw]]), rw = {}, ow = {
7776
+ const nw = /* @__PURE__ */ Fe(Jb, [["render", tw]]), rw = {}, ow = {
7777
7777
  width: "24",
7778
7778
  height: "24",
7779
7779
  viewBox: "0 0 24 24",
@@ -8071,8 +8071,8 @@ const Uw = /* @__PURE__ */ Fe(Ww, [["render", jw]]), Gw = /* @__PURE__ */ Ft({
8071
8071
  },
8072
8072
  setup(e) {
8073
8073
  Ta((o) => ({
8074
- f542c750: o.color,
8075
- "07daff28": o.size
8074
+ f22687d6: o.color,
8075
+ "6ada15e2": o.size
8076
8076
  }));
8077
8077
  const n = e;
8078
8078
  function t(o) {
@@ -8080,27 +8080,27 @@ const Uw = /* @__PURE__ */ Fe(Ww, [["render", jw]]), Gw = /* @__PURE__ */ Ft({
8080
8080
  }
8081
8081
  const r = k(
8082
8082
  () => ({
8083
- ProjectsIcon: Rb,
8084
- RepairsIcon: Db,
8085
- RepairObjectIcon: qb,
8086
- InstrumentHistoryIcon: Bb,
8087
- StatusHistoryIcon: Wb,
8088
- SettingIcon: Gb,
8089
- PassIcon: Qb,
8090
- AssignModuleIcon: t2,
8091
- UsersIcon: a2,
8092
- UserIcon: l2,
8093
- WorkzonesIcon: h2,
8094
- LogoutIcon: m2,
8095
- LogoIcon: w2,
8096
- TasksIcon: k2,
8097
- InstrumentsIcon: I2,
8098
- OrderIcon: M2,
8099
- ModulesIcon: O2,
8100
- NotificationsIcon: V2,
8101
- VideozonesIcon: H2,
8102
- InstrumentWorkZoneIcon: K2,
8103
- WorkshopIcon: Z2,
8083
+ ProjectsIcon: R2,
8084
+ RepairsIcon: D2,
8085
+ RepairObjectIcon: q2,
8086
+ InstrumentHistoryIcon: B2,
8087
+ StatusHistoryIcon: W2,
8088
+ SettingIcon: G2,
8089
+ PassIcon: Q2,
8090
+ AssignModuleIcon: tb,
8091
+ UsersIcon: ab,
8092
+ UserIcon: lb,
8093
+ WorkzonesIcon: hb,
8094
+ LogoutIcon: mb,
8095
+ LogoIcon: wb,
8096
+ TasksIcon: kb,
8097
+ InstrumentsIcon: Ib,
8098
+ OrderIcon: Mb,
8099
+ ModulesIcon: Ob,
8100
+ NotificationsIcon: Vb,
8101
+ VideozonesIcon: Hb,
8102
+ InstrumentWorkZoneIcon: Kb,
8103
+ WorkshopIcon: Zb,
8104
8104
  WarehousesIcon: nw,
8105
8105
  TeamsIcon: iw,
8106
8106
  RolesIcon: cw,
@@ -8143,11 +8143,11 @@ const Uw = /* @__PURE__ */ Fe(Ww, [["render", jw]]), Gw = /* @__PURE__ */ Ft({
8143
8143
  var d, f, h;
8144
8144
  return (h = (f = (d = r.userData) == null ? void 0 : d.positions) == null ? void 0 : f[0]) == null ? void 0 : h.display_name;
8145
8145
  }), u = () => a.value = !a.value, l = () => t("clickProfile"), c = (d) => t("clickSettingsMenuItem", d.name);
8146
- return _b(o, () => a.value = !1), (d, f) => (X(), Ae(gb, {
8146
+ return _2(o, () => a.value = !1), (d, f) => (X(), Ae(g2, {
8147
8147
  class: He([d.$style.header, { [d.$style["header-full"]]: d.fullWidth }])
8148
8148
  }, {
8149
8149
  default: ve(() => [
8150
- Se(mb, {
8150
+ Se(m2, {
8151
8151
  class: He(d.$style.toolbar)
8152
8152
  }, {
8153
8153
  default: ve(() => {
@@ -8298,7 +8298,7 @@ function dx(e, n) {
8298
8298
  _: 3
8299
8299
  });
8300
8300
  }
8301
- const BA = /* @__PURE__ */ Fe(cx, [["render", dx], ["__scopeId", "data-v-51e4160c"]]), fx = {
8301
+ const BA = /* @__PURE__ */ Fe(cx, [["render", dx], ["__scopeId", "data-v-27ae3e79"]]), fx = {
8302
8302
  xs: 8,
8303
8303
  sm: 10,
8304
8304
  md: 14,
@@ -9607,7 +9607,7 @@ const fd = Ke({
9607
9607
  emits: ["update:modelValue"],
9608
9608
  setup(e, { emit: n }) {
9609
9609
  Ta((c) => ({
9610
- "5e128078": c.borderColor
9610
+ e2d84852: c.borderColor
9611
9611
  }));
9612
9612
  const t = e, r = Q({}), o = n, a = k({
9613
9613
  get() {
@@ -9750,7 +9750,7 @@ const fd = Ke({
9750
9750
  emits: ["update:dialogRef", "update:currentTabName"],
9751
9751
  setup(e, { emit: n }) {
9752
9752
  Ta((a) => ({
9753
- d2a8bdba: a.width
9753
+ "65b71d32": a.width
9754
9754
  }));
9755
9755
  const t = e, r = n, o = k({
9756
9756
  get() {
@@ -9821,7 +9821,7 @@ const fd = Ke({
9821
9821
  "sheet-dialog": "_sheet-dialog_1rkva_1"
9822
9822
  }, Mx = {
9823
9823
  $style: Dx
9824
- }, NA = /* @__PURE__ */ Fe(Ax, [["__cssModules", Mx], ["__scopeId", "data-v-56bffd8b"]]);
9824
+ }, NA = /* @__PURE__ */ Fe(Ax, [["__cssModules", Mx], ["__scopeId", "data-v-375b9c58"]]);
9825
9825
  let Px = 0;
9826
9826
  const Fx = ["click", "keydown"], Bx = {
9827
9827
  icon: String,
@@ -10354,7 +10354,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ke({
10354
10354
  tab: Kx
10355
10355
  }, Yx = {
10356
10356
  $style: Xx
10357
- }, LA = /* @__PURE__ */ Fe(Gx, [["__cssModules", Yx], ["__scopeId", "data-v-63306fe5"]]), mh = 150, Qx = Ke({
10357
+ }, LA = /* @__PURE__ */ Fe(Gx, [["__cssModules", Yx], ["__scopeId", "data-v-14857b70"]]), mh = 150, Qx = Ke({
10358
10358
  name: "QDrawer",
10359
10359
  inheritAttrs: !1,
10360
10360
  props: {
@@ -11032,7 +11032,7 @@ const qx = ["left", "center", "right", "justify"], Vx = Ke({
11032
11032
  "menu-item__label": "_menu-item__label_fkijr_18"
11033
11033
  }, rC = {
11034
11034
  $style: nC
11035
- }, oC = /* @__PURE__ */ Fe(tC, [["__cssModules", rC], ["__scopeId", "data-v-f6a202a4"]]), aC = /* @__PURE__ */ Ft({
11035
+ }, oC = /* @__PURE__ */ Fe(tC, [["__cssModules", rC], ["__scopeId", "data-v-8438fdd9"]]), aC = /* @__PURE__ */ Ft({
11036
11036
  __name: "SidebarMenu",
11037
11037
  props: {
11038
11038
  menuItems: {},
@@ -11277,7 +11277,7 @@ function yC(e, n) {
11277
11277
  tn(e.$slots, "default", {}, void 0, !0)
11278
11278
  ]);
11279
11279
  }
11280
- const zA = /* @__PURE__ */ Fe(mC, [["render", yC], ["__scopeId", "data-v-f769f373"]]), Ss = Ke({
11280
+ const zA = /* @__PURE__ */ Fe(mC, [["render", yC], ["__scopeId", "data-v-7e325751"]]), Ss = Ke({
11281
11281
  name: "QCardSection",
11282
11282
  props: {
11283
11283
  tag: {
@@ -11646,7 +11646,7 @@ const qC = Ke({
11646
11646
  _: 3
11647
11647
  }, 8, ["modelValue", "color", "content-style"]));
11648
11648
  }
11649
- }), WA = /* @__PURE__ */ Fe(VC, [["__scopeId", "data-v-85d0f555"]]), zC = { class: "table-pagination" }, $C = ["disabled"], WC = { class: "pages" }, HC = ["disabled", "onClick"], jC = ["disabled"], UC = /* @__PURE__ */ Ft({
11649
+ }), WA = /* @__PURE__ */ Fe(VC, [["__scopeId", "data-v-e6179b93"]]), zC = { class: "table-pagination" }, $C = ["disabled"], WC = { class: "pages" }, HC = ["disabled", "onClick"], jC = ["disabled"], UC = /* @__PURE__ */ Ft({
11650
11650
  __name: "TablePagination",
11651
11651
  props: {
11652
11652
  modelValue: {},
@@ -11711,7 +11711,7 @@ const qC = Ke({
11711
11711
  ], 8, jC)
11712
11712
  ]));
11713
11713
  }
11714
- }), GC = /* @__PURE__ */ Fe(UC, [["__scopeId", "data-v-9db9f6f7"]]), KC = /* @__PURE__ */ Ft({
11714
+ }), GC = /* @__PURE__ */ Fe(UC, [["__scopeId", "data-v-73335c1c"]]), KC = /* @__PURE__ */ Ft({
11715
11715
  __name: "TableSearch",
11716
11716
  props: {
11717
11717
  modelValue: {},
@@ -12088,7 +12088,7 @@ const qC = Ke({
12088
12088
  ], 64);
12089
12089
  };
12090
12090
  }
12091
- }), o_ = /* @__PURE__ */ Fe(r_, [["__scopeId", "data-v-50f72b8a"]]), a_ = { class: "modal-title" }, i_ = {
12091
+ }), o_ = /* @__PURE__ */ Fe(r_, [["__scopeId", "data-v-880c5677"]]), a_ = { class: "modal-title" }, i_ = {
12092
12092
  key: 0,
12093
12093
  class: "field-label"
12094
12094
  }, s_ = {
@@ -12314,7 +12314,7 @@ const qC = Ke({
12314
12314
  _: 1
12315
12315
  }, 8, ["model-value"]));
12316
12316
  }
12317
- }), HA = /* @__PURE__ */ Fe(u_, [["__scopeId", "data-v-b137510f"]]), gh = Ke({
12317
+ }), HA = /* @__PURE__ */ Fe(u_, [["__scopeId", "data-v-20ca776a"]]), gh = Ke({
12318
12318
  name: "QTd",
12319
12319
  props: {
12320
12320
  props: Object,
@@ -14244,7 +14244,7 @@ const H_ = /* @__PURE__ */ Fe(z_, [["render", W_]]), j_ = {
14244
14244
  ]), 1032, ["selected", "rows", "columns", "selection", "table-row-style-fn"])
14245
14245
  ]));
14246
14246
  }
14247
- }), ek = /* @__PURE__ */ Fe(J_, [["__scopeId", "data-v-e47dea52"]]), tk = {
14247
+ }), ek = /* @__PURE__ */ Fe(J_, [["__scopeId", "data-v-14d2a299"]]), tk = {
14248
14248
  key: 0,
14249
14249
  class: "table-controls"
14250
14250
  }, nk = { class: "table-wrapper" }, rk = {
@@ -14318,7 +14318,7 @@ const H_ = /* @__PURE__ */ Fe(z_, [["render", W_]]), j_ = {
14318
14318
  "modal" in dr(o) ? tn(u.$slots, "modal", { key: 2 }, void 0, !0) : Xe("", !0)
14319
14319
  ], 2));
14320
14320
  }
14321
- }), jA = /* @__PURE__ */ Fe(ok, [["__scopeId", "data-v-1b7ee59f"]]);
14321
+ }), jA = /* @__PURE__ */ Fe(ok, [["__scopeId", "data-v-75397446"]]);
14322
14322
  function em(e, n) {
14323
14323
  return function() {
14324
14324
  return e.apply(n, arguments);
@@ -14627,8 +14627,6 @@ function cu(e, n, t) {
14627
14627
  if (p === null) return "";
14628
14628
  if (te.isDate(p))
14629
14629
  return p.toISOString();
14630
- if (te.isBoolean(p))
14631
- return p.toString();
14632
14630
  if (!u && te.isBlob(p))
14633
14631
  throw new ut("Blob is not supported. Use a Buffer instead.");
14634
14632
  return te.isArrayBuffer(p) || te.isTypedArray(p) ? u && typeof Blob == "function" ? new Blob([p]) : Buffer.from(p) : p;
@@ -15549,7 +15547,7 @@ const R3 = async (e) => {
15549
15547
  duplex: "half",
15550
15548
  credentials: y ? d : void 0
15551
15549
  });
15552
- let b = await fetch(p, f);
15550
+ let b = await fetch(p);
15553
15551
  const w = hc && (l === "stream" || l === "response");
15554
15552
  if (hc && (s || w && m)) {
15555
15553
  const x = {};
@@ -15654,7 +15652,7 @@ function Bh(e) {
15654
15652
  ), r.response.headers = qn.from(r.response.headers))), Promise.reject(r);
15655
15653
  });
15656
15654
  }
15657
- const Cm = "1.10.0", fu = {};
15655
+ const Cm = "1.9.0", fu = {};
15658
15656
  ["object", "boolean", "number", "function", "string", "symbol"].forEach((e, n) => {
15659
15657
  fu[e] = function(r) {
15660
15658
  return typeof r === e || "a" + (n < 1 ? "n " : " ") + e;
@@ -16175,10 +16173,10 @@ class O3 extends An {
16175
16173
  return await this.get(`repairs/metrics/get_list_task_by_quality?${n}`);
16176
16174
  }
16177
16175
  async fetchPieWorkZone(n) {
16178
- return await this.get("repairs/metrics/get_list_work_zone_instrument?" + n);
16176
+ return await this.get("repairs/metrics/get_statistics_on_controller_zones?" + n);
16179
16177
  }
16180
16178
  async fetchWorkZoneInfo(n) {
16181
- return await this.get("repairs/metrics/get_list_work_zone_instrument_by_status?" + n);
16179
+ return await this.get("exposed_equipment_zones_history/list/current/status?" + n);
16182
16180
  }
16183
16181
  async fetchPieAllTasks(n) {
16184
16182
  return await this.get("repairs/metrics/get_list_task_group_by_status?" + n);
@@ -23887,7 +23885,7 @@ var jE = function(e, n, t) {
23887
23885
  }
23888
23886
  `;
23889
23887
  }
23890
- }, eR = function(e, n, t) {
23888
+ }, e5 = function(e, n, t) {
23891
23889
  this.variableNames = ["x"], this.outputShape = n.map(function(u, l) {
23892
23890
  return u[0] + e[l] + u[1];
23893
23891
  });
@@ -23922,7 +23920,7 @@ var jE = function(e, n, t) {
23922
23920
  }
23923
23921
  }
23924
23922
  `;
23925
- }, tR = function(e, n, t) {
23923
+ }, t5 = function(e, n, t) {
23926
23924
  this.variableNames = ["x"], this.packedInputs = !0, this.packedOutput = !0, this.outputShape = n.map(function(v, y) {
23927
23925
  return v[0] + e[y] + v[1];
23928
23926
  });
@@ -24285,7 +24283,7 @@ var jE = function(e, n, t) {
24285
24283
  }
24286
24284
  `;
24287
24285
  }
24288
- }, nR = function(e, n) {
24286
+ }, n5 = function(e, n) {
24289
24287
  this.variableNames = ["x"];
24290
24288
  var t = e.windowSize, r = e.batchSize, o = e.inSize, a = Math.ceil(o / t);
24291
24289
  this.outputShape = [r, a];
@@ -24382,7 +24380,7 @@ var jE = function(e, n, t) {
24382
24380
  setOutput(` + u + `);
24383
24381
  }
24384
24382
  `;
24385
- }, rR = function(e, n) {
24383
+ }, r5 = function(e, n) {
24386
24384
  this.variableNames = ["A"], this.packedInputs = !0, this.packedOutput = !0, this.outputShape = e;
24387
24385
  for (var t = "", r = 0; r < 4; r++) {
24388
24386
  var o = "thisRC = rc;";
@@ -24422,7 +24420,7 @@ var jE = function(e, n, t) {
24422
24420
  setOutput(result);
24423
24421
  }
24424
24422
  `;
24425
- }, oR = function(e, n, t) {
24423
+ }, o5 = function(e, n, t) {
24426
24424
  this.variableNames = ["dy"], this.outputShape = [], this.outputShape = n.shape;
24427
24425
  var r = n.shape, o = r[1], a = r[2], i = e.shape, s = i[1], u = i[2], l = [t && s > 1 ? o - 1 : o, t && u > 1 ? a - 1 : a], c = [t && s > 1 ? s - 1 : s, t && u > 1 ? u - 1 : u], d = l[0] / c[0], f = l[1] / c[1], h = 1 / d, p = 1 / f, m = 2 * Math.ceil(h) + 2, v = 2 * Math.ceil(p) + 2;
24428
24426
  this.userCode = `
@@ -24507,7 +24505,7 @@ var jE = function(e, n, t) {
24507
24505
  setOutput(accumulator);
24508
24506
  }
24509
24507
  `;
24510
- }, aR = function(e, n, t, r) {
24508
+ }, a5 = function(e, n, t, r) {
24511
24509
  this.variableNames = ["A"], this.outputShape = [];
24512
24510
  var o = e[0], a = e[1], i = e[2], s = e[3];
24513
24511
  this.outputShape = [o, n, t, s];
@@ -24546,7 +24544,7 @@ var jE = function(e, n, t) {
24546
24544
  setOutput(newValue);
24547
24545
  }
24548
24546
  `;
24549
- }, iR = function(e, n, t, r) {
24547
+ }, i5 = function(e, n, t, r) {
24550
24548
  this.variableNames = ["A"], this.packedInputs = !0, this.packedOutput = !0, this.outputShape = [];
24551
24549
  var o = e[0], a = e[1], i = e[2], s = e[3];
24552
24550
  this.outputShape = [o, n, t, s];
@@ -24629,7 +24627,7 @@ var jE = function(e, n, t) {
24629
24627
  setOutput(newValue);
24630
24628
  }
24631
24629
  `;
24632
- }, sR = function(e, n, t) {
24630
+ }, s5 = function(e, n, t) {
24633
24631
  this.variableNames = ["dy"], this.outputShape = [], this.outputShape = n.shape;
24634
24632
  var r = n.shape, o = r[1], a = r[2], i = e.shape, s = i[1], u = i[2], l = [t && s > 1 ? o - 1 : o, t && u > 1 ? a - 1 : a], c = [t && s > 1 ? s - 1 : s, t && u > 1 ? u - 1 : u], d = l[0] / c[0], f = l[1] / c[1], h = 1 / d, p = 1 / f, m = 2 * Math.ceil(h) + 2, v = 2 * Math.ceil(p) + 2;
24635
24633
  this.userCode = `
@@ -24703,7 +24701,7 @@ var jE = function(e, n, t) {
24703
24701
  setOutput(accumulator);
24704
24702
  }
24705
24703
  `;
24706
- }, uR = function(e, n, t, r) {
24704
+ }, u5 = function(e, n, t, r) {
24707
24705
  this.variableNames = ["A"], this.outputShape = [];
24708
24706
  var o = e[0], a = e[1], i = e[2], s = e[3];
24709
24707
  this.outputShape = [o, n, t, s];
@@ -24732,7 +24730,7 @@ var jE = function(e, n, t) {
24732
24730
  setOutput(newValue);
24733
24731
  }
24734
24732
  `;
24735
- }, lR = function(e, n) {
24733
+ }, l5 = function(e, n) {
24736
24734
  this.variableNames = ["x"];
24737
24735
  var t = e.length;
24738
24736
  if (t > 4) throw new Error("WebGL backend: Reverse of rank-" + t + " tensor is not yet supported");
@@ -24754,7 +24752,7 @@ var jE = function(e, n, t) {
24754
24752
  setOutput(getX(` + e[0] + ` - coord - 1));
24755
24753
  }
24756
24754
  `;
24757
- }, cR = function(e, n) {
24755
+ }, c5 = function(e, n) {
24758
24756
  this.variableNames = ["x"], this.packedInputs = !0, this.packedOutput = !0;
24759
24757
  var t = e.length;
24760
24758
  if (t > 4) throw new Error("WebGL backend: Reverse of rank-" + t + " tensor is not yet supported");
@@ -24833,7 +24831,7 @@ var jE = function(e, n, t) {
24833
24831
  setOutput(mix(getDefaultValue(), sum, float(found)));
24834
24832
  }
24835
24833
  `;
24836
- }, dR = function(e, n) {
24834
+ }, d5 = function(e, n) {
24837
24835
  this.variableNames = ["x", "segmentIds"];
24838
24836
  var t = e.windowSize, r = e.batchSize, o = e.inSize, a = e.numSegments, i = a * Math.ceil(o / t);
24839
24837
  this.outputShape = [r, i];
@@ -24947,7 +24945,7 @@ var jE = function(e, n, t) {
24947
24945
  setOutput(sumValue);
24948
24946
  }
24949
24947
  `;
24950
- }, fR = function(e, n, t) {
24948
+ }, f5 = function(e, n, t) {
24951
24949
  var r, o;
24952
24950
  if (this.variableNames = ["c", "a", "b"], this.outputShape = n, t > 4) throw Error("Where for rank " + t + " is not yet supported");
24953
24951
  if (t === 1) o = "resRC", r = "resRC";
@@ -24967,7 +24965,7 @@ var jE = function(e, n, t) {
24967
24965
  }
24968
24966
  }
24969
24967
  `;
24970
- }, hR = function() {
24968
+ }, h5 = function() {
24971
24969
  function e(n) {
24972
24970
  this.variableNames = ["source"], this.outputShape = n, this.rank = n.length;
24973
24971
  var t, r = Lt(this.rank), o = "uniform int start[" + this.rank + "];", a = function(i) {
@@ -24999,7 +24997,7 @@ var jE = function(e, n, t) {
24999
24997
  t.startLoc == null && (t.startLoc = r.getUniformLocationNoThrow(o, "start"), t.startLoc == null) || r.gl.uniform1iv(t.startLoc, n);
25000
24998
  };
25001
24999
  }, e;
25002
- }(), Fl = ["x", "y", "z", "w", "u", "v"], pR = function() {
25000
+ }(), Fl = ["x", "y", "z", "w", "u", "v"], p5 = function() {
25003
25001
  function e(n) {
25004
25002
  this.variableNames = ["source"], this.packedInputs = !0, this.packedOutput = !0, this.outputShape = n, this.rank = n.length;
25005
25003
  var t = Lt(this.rank), r = Fn("coords", this.rank), o = Fn("sourceLoc", this.rank), a = this.rank === 1 ? "sourceLoc" : "vec2(" + o.slice(-2).join() + ")", i = "getChannel(getSource(" + o.join() + "), " + a + ")", s = `
@@ -25046,7 +25044,7 @@ var jE = function(e, n, t) {
25046
25044
  t.startLoc == null && (t.startLoc = r.getUniformLocationNoThrow(o, "start"), t.startLoc == null) || r.gl.uniform1iv(t.startLoc, n);
25047
25045
  };
25048
25046
  }, e;
25049
- }(), vR = function(e, n, t) {
25047
+ }(), v5 = function(e, n, t) {
25050
25048
  this.variableNames = ["x"], this.outputShape = t;
25051
25049
  var r = t.length, o = Lt(t.length), a = Lt(t.length), i = "";
25052
25050
  if (r === 1) i = "coords * strides + begin";
@@ -25065,7 +25063,7 @@ var jE = function(e, n, t) {
25065
25063
  setOutput(getX(` + i + `));
25066
25064
  }
25067
25065
  `;
25068
- }, mR = function() {
25066
+ }, m5 = function() {
25069
25067
  function e(n) {
25070
25068
  this.gpgpu = n, this.numUsedTextures = 0, this.numFreeTextures = 0, this.freeTextures = {}, this.logEnabled = !1, this.usedTextures = {};
25071
25069
  }
@@ -25118,7 +25116,7 @@ function ip(e, n) {
25118
25116
  function sp(e, n, t) {
25119
25117
  return e[0] + "_" + e[1] + "_" + n + "_" + t;
25120
25118
  }
25121
- var gR = function(e, n) {
25119
+ var g5 = function(e, n) {
25122
25120
  this.variableNames = ["A"];
25123
25121
  for (var t = new Array(e.length), r = 0; r < t.length; r++) t[r] = e[r] * n[r];
25124
25122
  this.outputShape = t, this.rank = t.length;
@@ -25135,7 +25133,7 @@ var gR = function(e, n) {
25135
25133
  setOutput(getA(` + a + `));
25136
25134
  }
25137
25135
  `;
25138
- }, yR = function(e, n) {
25136
+ }, y5 = function(e, n) {
25139
25137
  this.variableNames = ["A"];
25140
25138
  for (var t = new Array(e.length), r = 0; r < t.length; r++) t[r] = e[n[r]];
25141
25139
  this.outputShape = t, this.rank = t.length;
@@ -25151,7 +25149,7 @@ var gR = function(e, n) {
25151
25149
  setOutput(getA(` + a + `));
25152
25150
  }
25153
25151
  `;
25154
- }, bR = function(e, n) {
25152
+ }, b5 = function(e, n) {
25155
25153
  this.variableNames = ["A"], this.packedInputs = !0, this.packedOutput = !0;
25156
25154
  for (var t = new Array(e.length), r = 0; r < t.length; r++) t[r] = e[n[r]];
25157
25155
  if (this.outputShape = t, this.rank = t.length, this.rank > 6) throw Error("Packed transpose for rank " + this.rank + " is not yet supported.");
@@ -25189,37 +25187,37 @@ var gR = function(e, n) {
25189
25187
  setOutput(y);
25190
25188
  }
25191
25189
  `;
25192
- }, vr = "if (isnan(x)) return x;", wR = "return x;", up = "return abs(x);", hg = vr + `
25190
+ }, vr = "if (isnan(x)) return x;", w5 = "return x;", up = "return abs(x);", hg = vr + `
25193
25191
  return (x < 0.0) ? 0.0 : x;
25194
25192
  `, pg = vr + `
25195
25193
  return (x < 0.0) ? 0.0 : min(6.0, x);
25196
- `, vg = "return (x >= 0.0) ? x : (exp(x) - 1.0);", xR = `
25194
+ `, vg = "return (x >= 0.0) ? x : (exp(x) - 1.0);", x5 = `
25197
25195
  // Stable and Attracting Fixed Point (0, 1) for Normalized Weights.
25198
25196
  // see: https://arxiv.org/abs/1706.02515
25199
25197
  float scaleAlpha = ` + Ad + `;
25200
25198
  float scale = ` + Dd + `;
25201
25199
  return (x >= 0.0) ? scale * x : scaleAlpha * (exp(x) - 1.0);
25202
- `, lp = "return -x;", cp = "return ceil(x);", dp = "return floor(x);", fp = "return exp(x);", hp = "return exp(x) - 1.0;", CR = vr + `
25200
+ `, lp = "return -x;", cp = "return ceil(x);", dp = "return floor(x);", fp = "return exp(x);", hp = "return exp(x) - 1.0;", C5 = vr + `
25203
25201
  return sin(x);
25204
- `, _R = vr + `
25202
+ `, _5 = vr + `
25205
25203
  return cos(x);
25206
- `, kR = vr + `
25204
+ `, k5 = vr + `
25207
25205
  if (abs(x) > 1.) {
25208
25206
  return NAN;
25209
25207
  }
25210
25208
  return asin(x);
25211
- `, SR = vr + `
25209
+ `, S5 = vr + `
25212
25210
  if (abs(x) > 1.) {
25213
25211
  return NAN;
25214
25212
  }
25215
25213
  return acos(x);
25216
- `, ER = vr + `
25214
+ `, E5 = vr + `
25217
25215
  return atan(x);
25218
- `, RR = vr + "return log(x + sqrt(x * x + 1.0));", IR = vr + `
25216
+ `, R5 = vr + "return log(x + sqrt(x * x + 1.0));", I5 = vr + `
25219
25217
  if (x < 1.0) return NAN;
25220
- return log(x + sqrt(x * x - 1.0));`, TR = vr + `
25218
+ return log(x + sqrt(x * x - 1.0));`, T5 = vr + `
25221
25219
  if ((x < -1.0) || (x > 1.0)) return NAN;
25222
- return (log(1.0 + x) - log(1.0 - x)) / 2.0;`, Gi = "return x;", AR = "return x;", mg = `
25220
+ return (log(1.0 + x) - log(1.0 - x)) / 2.0;`, Gi = "return x;", A5 = "return x;", mg = `
25223
25221
  vec4 result = x * vec4(greaterThanEqual(x, vec4(0.0)));
25224
25222
  bvec4 isNaN = isnan(x);
25225
25223
 
@@ -25261,7 +25259,7 @@ var gR = function(e, n) {
25261
25259
  setOutput(y);
25262
25260
  }
25263
25261
  `;
25264
- }, DR = function(e) {
25262
+ }, D5 = function(e) {
25265
25263
  this.variableNames = ["A"], this.packedInputs = !0, this.packedOutput = !1, this.outputShape = e;
25266
25264
  var n = e.length, t = Fn("rc", n), r = Lt(n), o = function(s, u) {
25267
25265
  if (s === 1) return "rc";
@@ -25278,14 +25276,14 @@ var gR = function(e, n) {
25278
25276
  `;
25279
25277
  }, Ki = {};
25280
25278
  function Xi(e, n) {
25281
- if (n === void 0 && (n = !1), e === "linear") return n ? AR : wR;
25279
+ if (n === void 0 && (n = !1), e === "linear") return n ? A5 : w5;
25282
25280
  if (e === "relu") return n ? mg : hg;
25283
25281
  if (e === "elu") return n ? yg : vg;
25284
25282
  if (e === "relu6") return n ? gg : pg;
25285
25283
  if (e === "prelu") return n ? fg : dg;
25286
25284
  throw new Error("Activation " + e + " has not been implemented for the WebGL backend.");
25287
25285
  }
25288
- var MR = 600, PR = function(e) {
25286
+ var M5 = 600, P5 = function(e) {
25289
25287
  function n(t) {
25290
25288
  var r, o = e.call(this) || this;
25291
25289
  if (o.pendingRead = /* @__PURE__ */ new WeakMap(), o.pendingDisposal = /* @__PURE__ */ new WeakSet(), o.dataRefCount = /* @__PURE__ */ new WeakMap(), o.numBytesInGPU = 0, o.uploadWaitMs = 0, o.downloadWaitMs = 0, o.warnedAboutMemory = !1, o.pendingDeletes = 0, o.disposed = !1, !ie().getBool("HAS_WEBGL")) throw new Error("WebGL is not supported on this device");
@@ -25293,7 +25291,7 @@ var MR = 600, PR = function(e) {
25293
25291
  var a = Dr(ie().getNumber("WEBGL_VERSION"));
25294
25292
  o.binaryCache = ((r = ie().getNumber("WEBGL_VERSION")) in Ki || (Ki[r] = {}), Ki[r]), o.gpgpu = new HE(a), o.canvas = a.canvas, o.gpgpuCreatedLocally = !0;
25295
25293
  } else o.gpgpu = t, o.binaryCache = {}, o.gpgpuCreatedLocally = !1, o.canvas = t.gl.canvas;
25296
- return o.textureManager = new mR(o.gpgpu), o.numMBBeforeWarning = ie().global.screen == null ? 1024 : ie().global.screen.height * ie().global.screen.width * window.devicePixelRatio * MR / 1024 / 1024, o.texData = new Jm(o, j), o;
25294
+ return o.textureManager = new m5(o.gpgpu), o.numMBBeforeWarning = ie().global.screen == null ? 1024 : ie().global.screen.height * ie().global.screen.width * window.devicePixelRatio * M5 / 1024 / 1024, o.texData = new Jm(o, j), o;
25297
25295
  }
25298
25296
  return pr(n, e), n.prototype.numDataIds = function() {
25299
25297
  return this.texData.numDataIds() + (this.cpuBackend ? this.cpuBackend.numDataIds() : 0) - this.pendingDeletes;
@@ -25440,7 +25438,7 @@ var MR = 600, PR = function(e) {
25440
25438
  if (Be(o) === 0) return wn([], o, t.dtype);
25441
25439
  var a = this.texData.get(t.dataId).isPacked, i = Qm(t.shape, r, o);
25442
25440
  if (a || !i) {
25443
- var s = ie().getBool("WEBGL_PACK_ARRAY_OPERATIONS") ? new pR(o) : new hR(o), u = s.getCustomSetupFunc(r);
25441
+ var s = ie().getBool("WEBGL_PACK_ARRAY_OPERATIONS") ? new p5(o) : new h5(o), u = s.getCustomSetupFunc(r);
25444
25442
  return this.compileAndRun(s, [t], null, u);
25445
25443
  }
25446
25444
  return this.uploadToGPU(t.dataId), this.shallowSlice(t, r, o);
@@ -25457,10 +25455,10 @@ var MR = 600, PR = function(e) {
25457
25455
  if (i.some(function(u) {
25458
25456
  return u === 0;
25459
25457
  })) return wn([], i);
25460
- var s = new vR(r, a, i);
25458
+ var s = new v5(r, a, i);
25461
25459
  return this.compileAndRun(s, [t]);
25462
25460
  }, n.prototype.reverse = function(t, r) {
25463
- var o = ie().getBool("WEBGL_PACK_ARRAY_OPERATIONS") ? new cR(t.shape, r) : new lR(t.shape, r);
25461
+ var o = ie().getBool("WEBGL_PACK_ARRAY_OPERATIONS") ? new c5(t.shape, r) : new l5(t.shape, r);
25464
25462
  return this.compileAndRun(o, [t]);
25465
25463
  }, n.prototype.concat = function(t, r) {
25466
25464
  if (t[0].dtype === "complex64") {
@@ -25540,14 +25538,14 @@ var MR = 600, PR = function(e) {
25540
25538
  });
25541
25539
  return ig(ot(t.shape, t.dtype, o), r);
25542
25540
  }
25543
- var a = new gR(t.shape, r);
25541
+ var a = new g5(t.shape, r);
25544
25542
  return this.compileAndRun(a, [t]);
25545
25543
  }, n.prototype.pad = function(t, r, o) {
25546
- var a = ie().getBool("WEBGL_PACK_ARRAY_OPERATIONS") ? new tR(t.shape, r, o) : new eR(t.shape, r, o);
25544
+ var a = ie().getBool("WEBGL_PACK_ARRAY_OPERATIONS") ? new t5(t.shape, r, o) : new e5(t.shape, r, o);
25547
25545
  return this.compileAndRun(a, [t]);
25548
25546
  }, n.prototype.transpose = function(t, r) {
25549
25547
  if (this.shouldExecuteOnCPU([t])) return this.cpuBackend.transpose(t, r);
25550
- var o = ie().getBool("WEBGL_PACK_ARRAY_OPERATIONS") ? new bR(t.shape, r) : new yR(t.shape, r);
25548
+ var o = ie().getBool("WEBGL_PACK_ARRAY_OPERATIONS") ? new b5(t.shape, r) : new y5(t.shape, r);
25551
25549
  return this.compileAndRun(o, [t]);
25552
25550
  }, n.prototype.gather = function(t, r, o) {
25553
25551
  if (this.shouldExecuteOnCPU([t, r])) return this.cpuBackend.gather(t, r, o);
@@ -25573,7 +25571,7 @@ var MR = 600, PR = function(e) {
25573
25571
  var u = t.pad(i), l = Os(u.shape, r, a, !1), c = Ns(l.length, r.length, !1), d = Ls(u.shape, r, a, !1);
25574
25572
  return u.reshape(l).transpose(c).reshape(d);
25575
25573
  }, n.prototype.reduce = function(t, r, o) {
25576
- var a = t.shape[0], i = t.shape[1], s = Il(i), u = new nR({ windowSize: s, inSize: i, batchSize: a }, r), l = this.compileAndRun(u, [t], o);
25574
+ var a = t.shape[0], i = t.shape[1], s = Il(i), u = new n5({ windowSize: s, inSize: i, batchSize: a }, r), l = this.compileAndRun(u, [t], o);
25577
25575
  return l.shape[1] === 1 ? l : this.reduce(l, r, o);
25578
25576
  }, n.prototype.argReduce = function(t, r, o) {
25579
25577
  o === void 0 && (o = null);
@@ -25608,7 +25606,7 @@ var MR = 600, PR = function(e) {
25608
25606
  var p, m = !1;
25609
25607
  for (f <= Ym ? (p = f, m = !0) : p = wc(f, Math.floor(Math.sqrt(f))); !m; ) p > h || p === f ? m = !0 : p = wc(f, p + 1);
25610
25608
  return p;
25611
- }(u, i), c = new dR({ windowSize: l, inSize: u, batchSize: s, numSegments: i }), d = this.compileAndRun(c, [t, o], a);
25609
+ }(u, i), c = new d5({ windowSize: l, inSize: u, batchSize: s, numSegments: i }), d = this.compileAndRun(c, [t, o], a);
25612
25610
  return d.shape[1] === i ? d : (o = Bs(0, i).tile([u / l]), this.segOpCompute(d, r, o, a, i));
25613
25611
  }, n.prototype.argMinMaxReduce = function(t, r, o) {
25614
25612
  var a = [r];
@@ -25684,7 +25682,7 @@ var MR = 600, PR = function(e) {
25684
25682
  var o = new Gt("return float(a >= 1.0 || b >= 1.0);", t.shape, r.shape);
25685
25683
  return this.compileAndRun(o, [t, r], "bool");
25686
25684
  }, n.prototype.select = function(t, r, o) {
25687
- var a = new fR(t.rank, r.shape, r.rank);
25685
+ var a = new f5(t.rank, r.shape, r.rank);
25688
25686
  return this.compileAndRun(a, [t, r, o], bn(r.dtype, o.dtype));
25689
25687
  }, n.prototype.where = function(t) {
25690
25688
  Ps("tf.where() in webgl locks the UI thread. Call tf.whereAsync() instead");
@@ -26003,7 +26001,7 @@ return (round(mod(b, 2.0)) != 1) ?
26003
26001
  `, t.shape, r.shape) : new Gt("return (b >= 1.0) ? a : a * (b + 1.0);", t.shape, r.shape);
26004
26002
  return this.compileAndRun(o, [t, r]);
26005
26003
  }, n.prototype.selu = function(t) {
26006
- var r = new lt(t.shape, xR);
26004
+ var r = new lt(t.shape, x5);
26007
26005
  return this.compileAndRun(r, [t]);
26008
26006
  }, n.prototype.int = function(t) {
26009
26007
  var r = new lt(t.shape, "return float(int(x));");
@@ -26046,22 +26044,22 @@ return (round(mod(b, 2.0)) != 1) ?
26046
26044
  `);
26047
26045
  return this.compileAndRun(r, [t]);
26048
26046
  }, n.prototype.sin = function(t) {
26049
- var r = new lt(t.shape, CR);
26047
+ var r = new lt(t.shape, C5);
26050
26048
  return this.compileAndRun(r, [t]);
26051
26049
  }, n.prototype.cos = function(t) {
26052
- var r = new lt(t.shape, _R);
26050
+ var r = new lt(t.shape, _5);
26053
26051
  return this.compileAndRun(r, [t]);
26054
26052
  }, n.prototype.tan = function(t) {
26055
26053
  var r = new lt(t.shape, "return tan(x);");
26056
26054
  return this.compileAndRun(r, [t]);
26057
26055
  }, n.prototype.asin = function(t) {
26058
- var r = new lt(t.shape, kR);
26056
+ var r = new lt(t.shape, k5);
26059
26057
  return this.compileAndRun(r, [t]);
26060
26058
  }, n.prototype.acos = function(t) {
26061
- var r = new lt(t.shape, SR);
26059
+ var r = new lt(t.shape, S5);
26062
26060
  return this.compileAndRun(r, [t]);
26063
26061
  }, n.prototype.atan = function(t) {
26064
- var r = new lt(t.shape, ER);
26062
+ var r = new lt(t.shape, E5);
26065
26063
  return this.compileAndRun(r, [t]);
26066
26064
  }, n.prototype.atan2 = function(t, r) {
26067
26065
  var o = ie().getBool("WEBGL_PACK_BINARY_OPERATIONS") ? new qr(`
@@ -26100,13 +26098,13 @@ return (round(mod(b, 2.0)) != 1) ?
26100
26098
  `);
26101
26099
  return this.compileAndRun(r, [t]);
26102
26100
  }, n.prototype.asinh = function(t) {
26103
- var r = new lt(t.shape, RR);
26101
+ var r = new lt(t.shape, R5);
26104
26102
  return this.compileAndRun(r, [t]);
26105
26103
  }, n.prototype.acosh = function(t) {
26106
- var r = new lt(t.shape, IR);
26104
+ var r = new lt(t.shape, I5);
26107
26105
  return this.compileAndRun(r, [t]);
26108
26106
  }, n.prototype.atanh = function(t) {
26109
- var r = new lt(t.shape, TR);
26107
+ var r = new lt(t.shape, T5);
26110
26108
  return this.compileAndRun(r, [t]);
26111
26109
  }, n.prototype.erf = function(t) {
26112
26110
  var r = new lt(t.shape, `
@@ -26231,16 +26229,16 @@ return (round(mod(b, 2.0)) != 1) ?
26231
26229
  }
26232
26230
  return Ic(t, r);
26233
26231
  }, n.prototype.resizeBilinear = function(t, r, o, a) {
26234
- var i = ie().getBool("WEBGL_PACK_IMAGE_OPERATIONS") ? new iR(t.shape, r, o, a) : new aR(t.shape, r, o, a);
26232
+ var i = ie().getBool("WEBGL_PACK_IMAGE_OPERATIONS") ? new i5(t.shape, r, o, a) : new a5(t.shape, r, o, a);
26235
26233
  return this.compileAndRun(i, [t], "float32");
26236
26234
  }, n.prototype.resizeBilinearBackprop = function(t, r, o) {
26237
- var a = new oR(t, r, o);
26235
+ var a = new o5(t, r, o);
26238
26236
  return this.compileAndRun(a, [t]);
26239
26237
  }, n.prototype.resizeNearestNeighbor = function(t, r, o, a) {
26240
- var i = new uR(t.shape, r, o, a);
26238
+ var i = new u5(t.shape, r, o, a);
26241
26239
  return this.compileAndRun(i, [t]);
26242
26240
  }, n.prototype.resizeNearestNeighborBackprop = function(t, r, o) {
26243
- var a = new sR(t, r, o);
26241
+ var a = new s5(t, r, o);
26244
26242
  return this.compileAndRun(a, [t]);
26245
26243
  }, n.prototype.multinomial = function(t, r, o, a) {
26246
26244
  var i = r ? t : Ur(t), s = i.shape[0], u = i.shape[1], l = new QE(s, u, o), c = l.getCustomSetupFunc(a);
@@ -26303,13 +26301,13 @@ return (round(mod(b, 2.0)) != 1) ?
26303
26301
  var o = this.makeTensorInfo(t, r).dataId;
26304
26302
  return j.makeTensorFromDataId(o, t, r, this);
26305
26303
  }, n.prototype.unpackTensor = function(t) {
26306
- var r = new DR(t.shape);
26304
+ var r = new D5(t.shape);
26307
26305
  return this.runWebGLProgram(r, [t], t.dtype);
26308
26306
  }, n.prototype.packTensor = function(t) {
26309
26307
  var r = new JE(t.shape);
26310
26308
  return this.runWebGLProgram(r, [t], t.dtype, null, !0);
26311
26309
  }, n.prototype.packedReshape = function(t, r) {
26312
- var o = [Ds(t.shape)].concat(Ms(t.shape)), a = { dtype: t.dtype, shape: o, dataId: t.dataId }, i = [Ds(r)].concat(Ms(r)), s = new rR(i, o), u = this.runWebGLProgram(s, [a], t.dtype, null, !0);
26310
+ var o = [Ds(t.shape)].concat(Ms(t.shape)), a = { dtype: t.dtype, shape: o, dataId: t.dataId }, i = [Ds(r)].concat(Ms(r)), s = new r5(i, o), u = this.runWebGLProgram(s, [a], t.dtype, null, !0);
26313
26311
  return { dataId: u.dataId, shape: r, dtype: u.dtype };
26314
26312
  }, n.prototype.decode = function(t) {
26315
26313
  var r, o = this.texData.get(t), a = o.isPacked, i = o.shape, s = o.dtype, u = Rl(i);
@@ -26447,9 +26445,9 @@ return (round(mod(b, 2.0)) != 1) ?
26447
26445
  }, n;
26448
26446
  }(eg);
26449
26447
  Lm() && j.registerBackend("webgl", function() {
26450
- return new PR();
26448
+ return new P5();
26451
26449
  }, 2);
26452
- var FR = z({ square_: function(e) {
26450
+ var F5 = z({ square_: function(e) {
26453
26451
  var n = A(e, "x", "square"), t = [n];
26454
26452
  return j.runKernelFunc(function(r, o) {
26455
26453
  return o([n]), r.square(n);
@@ -26469,7 +26467,7 @@ var FR = z({ square_: function(e) {
26469
26467
  return s.mul(c.sub(l).mul(d));
26470
26468
  } };
26471
26469
  }, di, {}, i, []);
26472
- } }), BR = z({ abs_: function(e) {
26470
+ } }), B5 = z({ abs_: function(e) {
26473
26471
  var n = A(e, "x", "abs");
26474
26472
  return n.dtype === "complex64" ? j.runKernelFunc(function(t) {
26475
26473
  return t.complexAbs(n);
@@ -26482,7 +26480,7 @@ var FR = z({ square_: function(e) {
26482
26480
  return t.mul(o.toFloat().step(-1));
26483
26481
  } };
26484
26482
  }, "Abs");
26485
- } }), OR = z({ acos_: function(e) {
26483
+ } }), O5 = z({ acos_: function(e) {
26486
26484
  var n = A(e, "x", "acos");
26487
26485
  return j.runKernelFunc(function(t, r) {
26488
26486
  var o = t.acos(n);
@@ -26493,7 +26491,7 @@ var FR = z({ square_: function(e) {
26493
26491
  return t.divStrict(we(1).sub(o.toFloat().square()).sqrt()).neg();
26494
26492
  } };
26495
26493
  });
26496
- } }), NR = z({ acosh_: function(e) {
26494
+ } }), N5 = z({ acosh_: function(e) {
26497
26495
  var n = A(e, "x", "acosh");
26498
26496
  return j.runKernelFunc(function(t, r) {
26499
26497
  var o = t.acosh(n);
@@ -26504,7 +26502,7 @@ var FR = z({ square_: function(e) {
26504
26502
  return t.divStrict(o.toFloat().square().sub(1).sqrt());
26505
26503
  } };
26506
26504
  });
26507
- } }), LR = z({ asin_: function(e) {
26505
+ } }), L5 = z({ asin_: function(e) {
26508
26506
  var n = A(e, "x", "asin");
26509
26507
  return j.runKernelFunc(function(t, r) {
26510
26508
  var o = t.asin(n);
@@ -26515,7 +26513,7 @@ var FR = z({ square_: function(e) {
26515
26513
  return t.divStrict(we(1).sub(o.toFloat().square()).sqrt());
26516
26514
  } };
26517
26515
  });
26518
- } }), qR = z({ asinh_: function(e) {
26516
+ } }), q5 = z({ asinh_: function(e) {
26519
26517
  var n = A(e, "x", "asinh");
26520
26518
  return j.runKernelFunc(function(t, r) {
26521
26519
  var o = t.asinh(n);
@@ -26526,7 +26524,7 @@ var FR = z({ square_: function(e) {
26526
26524
  return t.divStrict(we(1).add(o.toFloat().square()).sqrt());
26527
26525
  } };
26528
26526
  });
26529
- } }), VR = z({ atan_: function(e) {
26527
+ } }), V5 = z({ atan_: function(e) {
26530
26528
  var n = A(e, "x", "atan");
26531
26529
  return j.runKernelFunc(function(t, r) {
26532
26530
  var o = t.atan(n);
@@ -26537,7 +26535,7 @@ var FR = z({ square_: function(e) {
26537
26535
  return t.div(o.toFloat().square().add(1));
26538
26536
  } };
26539
26537
  });
26540
- } }), zR = z({ atanh_: function(e) {
26538
+ } }), z5 = z({ atanh_: function(e) {
26541
26539
  var n = A(e, "x", "atanh");
26542
26540
  return j.runKernelFunc(function(t, r) {
26543
26541
  var o = t.atanh(n);
@@ -26548,7 +26546,7 @@ var FR = z({ square_: function(e) {
26548
26546
  return t.div(we(1).sub(o.toFloat().square()));
26549
26547
  } };
26550
26548
  });
26551
- } }), $R = z({ ceil_: function(e) {
26549
+ } }), $5 = z({ ceil_: function(e) {
26552
26550
  var n = A(e, "x", "ceil");
26553
26551
  return j.runKernelFunc(function(t) {
26554
26552
  return t.ceil(n);
@@ -26572,7 +26570,7 @@ var FR = z({ square_: function(e) {
26572
26570
  return i.where(u.greaterEqual(n).logicalAnd(u.lessEqual(t)), yt(i));
26573
26571
  } };
26574
26572
  }, "ClipByValue", a, o);
26575
- } }), WR = z({ cos_: function(e) {
26573
+ } }), W5 = z({ cos_: function(e) {
26576
26574
  var n = A(e, "x", "cos"), t = [n];
26577
26575
  return j.runKernelFunc(function(r, o) {
26578
26576
  var a = r.cos(n);
@@ -26583,7 +26581,7 @@ var FR = z({ square_: function(e) {
26583
26581
  return a.toFloat().sin().neg().mul(r);
26584
26582
  } };
26585
26583
  }, "Cos", {}, t);
26586
- } }), HR = z({ cosh_: function(e) {
26584
+ } }), H5 = z({ cosh_: function(e) {
26587
26585
  var n = A(e, "x", "cosh");
26588
26586
  return j.runKernelFunc(function(t, r) {
26589
26587
  var o = t.cosh(n);
@@ -26594,7 +26592,7 @@ var FR = z({ square_: function(e) {
26594
26592
  return o.toFloat().sinh().mulStrict(t);
26595
26593
  } };
26596
26594
  });
26597
- } }), jR = z({ erf_: function(e) {
26595
+ } }), j5 = z({ erf_: function(e) {
26598
26596
  var n = A(e, "x", "erf");
26599
26597
  return P(n.dtype === "int32" || n.dtype === "float32", function() {
26600
26598
  return "Input dtype must be `int32` or `float32`.";
@@ -26617,7 +26615,7 @@ var FR = z({ square_: function(e) {
26617
26615
  return t.mulStrict(r[0]);
26618
26616
  } };
26619
26617
  }, "Exp", {}, [], [!0]);
26620
- } }), UR = z({ expm1_: function(e) {
26618
+ } }), U5 = z({ expm1_: function(e) {
26621
26619
  var n = A(e, "x", "expm1");
26622
26620
  return j.runKernelFunc(function(t, r) {
26623
26621
  var o = t.expm1(n);
@@ -26628,7 +26626,7 @@ var FR = z({ square_: function(e) {
26628
26626
  return t.mul(o.exp());
26629
26627
  } };
26630
26628
  });
26631
- } }), GR = z({ floor_: function(e) {
26629
+ } }), G5 = z({ floor_: function(e) {
26632
26630
  var n = A(e, "x", "floor");
26633
26631
  return j.runKernelFunc(function(t) {
26634
26632
  return t.floor(n);
@@ -26637,7 +26635,7 @@ var FR = z({ square_: function(e) {
26637
26635
  return yt(t);
26638
26636
  } };
26639
26637
  });
26640
- } }), KR = z({ log_: function(e) {
26638
+ } }), K5 = z({ log_: function(e) {
26641
26639
  var n = A(e, "x", "log"), t = [n];
26642
26640
  return j.runKernelFunc(function(r, o) {
26643
26641
  var a = r.log(n);
@@ -26648,7 +26646,7 @@ var FR = z({ square_: function(e) {
26648
26646
  return r.div(a.toFloat());
26649
26647
  } };
26650
26648
  }, "Log", {}, t);
26651
- } }), XR = z({ log1p_: function(e) {
26649
+ } }), X5 = z({ log1p_: function(e) {
26652
26650
  var n = A(e, "x", "log1p");
26653
26651
  return j.runKernelFunc(function(t, r) {
26654
26652
  var o = t.log1p(n);
@@ -26659,7 +26657,7 @@ var FR = z({ square_: function(e) {
26659
26657
  return t.div(o.add(1));
26660
26658
  } };
26661
26659
  });
26662
- } }), YR = z({ logSigmoid_: function(e) {
26660
+ } }), Y5 = z({ logSigmoid_: function(e) {
26663
26661
  var n = A(e, "x", "logSigmoid");
26664
26662
  return j.runKernelFunc(function(t, r) {
26665
26663
  var o = t.softplus(n.neg()).neg();
@@ -26679,7 +26677,7 @@ var FR = z({ square_: function(e) {
26679
26677
  return r.neg();
26680
26678
  } };
26681
26679
  }, "Neg", {}, t);
26682
- } }), QR = z({ reciprocal_: function(e) {
26680
+ } }), Q5 = z({ reciprocal_: function(e) {
26683
26681
  var n = A(e, "x", "reciprocal");
26684
26682
  return j.runKernelFunc(function(t, r) {
26685
26683
  var o = t.reciprocal(n);
@@ -26690,7 +26688,7 @@ var FR = z({ square_: function(e) {
26690
26688
  return t.div(o.square().neg());
26691
26689
  } };
26692
26690
  });
26693
- } }), ZR = z({ round_: function(e) {
26691
+ } }), Z5 = z({ round_: function(e) {
26694
26692
  var n = A(e, "x", "round");
26695
26693
  return j.runKernelFunc(function(t) {
26696
26694
  return t.round(n);
@@ -26721,7 +26719,7 @@ var FR = z({ square_: function(e) {
26721
26719
  return t.mul(o.mul(we(1).sub(o)));
26722
26720
  } };
26723
26721
  }, "Sigmoid");
26724
- } }), JR = z({ sign_: function(e) {
26722
+ } }), J5 = z({ sign_: function(e) {
26725
26723
  var n = A(e, "x", "sign");
26726
26724
  return j.runKernelFunc(function(t) {
26727
26725
  return t.sign(n);
@@ -26730,7 +26728,7 @@ var FR = z({ square_: function(e) {
26730
26728
  return yt(t);
26731
26729
  } };
26732
26730
  });
26733
- } }), e5 = z({ isNaN_: function(e) {
26731
+ } }), eR = z({ isNaN_: function(e) {
26734
26732
  var n = A(e, "x", "isNaN");
26735
26733
  return j.runKernelFunc(function(t) {
26736
26734
  return t.isNaN(n);
@@ -26739,7 +26737,7 @@ var FR = z({ square_: function(e) {
26739
26737
  return yt(t);
26740
26738
  } };
26741
26739
  });
26742
- } }), t5 = z({ isInf_: function(e) {
26740
+ } }), tR = z({ isInf_: function(e) {
26743
26741
  var n = A(e, "x", "isInf");
26744
26742
  return j.runKernelFunc(function(t) {
26745
26743
  return t.isInf(n);
@@ -26748,7 +26746,7 @@ var FR = z({ square_: function(e) {
26748
26746
  return yt(t);
26749
26747
  } };
26750
26748
  });
26751
- } }), n5 = z({ isFinite_: function(e) {
26749
+ } }), nR = z({ isFinite_: function(e) {
26752
26750
  var n = A(e, "x", "isFinite");
26753
26751
  return j.runKernelFunc(function(t) {
26754
26752
  return t.isFinite(n);
@@ -26757,7 +26755,7 @@ var FR = z({ square_: function(e) {
26757
26755
  return yt(t);
26758
26756
  } };
26759
26757
  });
26760
- } }), r5 = z({ sin_: function(e) {
26758
+ } }), rR = z({ sin_: function(e) {
26761
26759
  var n = A(e, "x", "sin"), t = [n];
26762
26760
  return j.runKernelFunc(function(r, o) {
26763
26761
  var a = r.sin(n);
@@ -26768,7 +26766,7 @@ var FR = z({ square_: function(e) {
26768
26766
  return a.toFloat().cos().mul(r);
26769
26767
  } };
26770
26768
  }, "Sin", {}, t);
26771
- } }), o5 = z({ sinh_: function(e) {
26769
+ } }), oR = z({ sinh_: function(e) {
26772
26770
  var n = A(e, "x", "sinh");
26773
26771
  return j.runKernelFunc(function(t, r) {
26774
26772
  var o = t.sinh(n);
@@ -26779,7 +26777,7 @@ var FR = z({ square_: function(e) {
26779
26777
  return o.toFloat().cosh().mulStrict(t);
26780
26778
  } };
26781
26779
  });
26782
- } }), a5 = z({ softplus_: function(e) {
26780
+ } }), aR = z({ softplus_: function(e) {
26783
26781
  var n = A(e, "x", "softplus");
26784
26782
  return j.runKernelFunc(function(t, r) {
26785
26783
  var o = t.softplus(n);
@@ -26790,7 +26788,7 @@ var FR = z({ square_: function(e) {
26790
26788
  return t.mul(o.sigmoid());
26791
26789
  } };
26792
26790
  });
26793
- } }), i5 = z({ sqrt_: function(e) {
26791
+ } }), iR = z({ sqrt_: function(e) {
26794
26792
  var n = A(e, "x", "sqrt");
26795
26793
  return j.runKernelFunc(function(t, r) {
26796
26794
  var o = t.sqrt(n);
@@ -26801,7 +26799,7 @@ var FR = z({ square_: function(e) {
26801
26799
  return t.div(o.toFloat().sqrt().mul(2));
26802
26800
  } };
26803
26801
  });
26804
- } }), s5 = z({ step_: function(e, n) {
26802
+ } }), sR = z({ step_: function(e, n) {
26805
26803
  n === void 0 && (n = 0);
26806
26804
  var t = A(e, "x", "step");
26807
26805
  return j.runKernelFunc(function(r) {
@@ -26811,7 +26809,7 @@ var FR = z({ square_: function(e) {
26811
26809
  return yt(r);
26812
26810
  } };
26813
26811
  });
26814
- } }), u5 = z({ tan_: function(e) {
26812
+ } }), uR = z({ tan_: function(e) {
26815
26813
  var n = A(e, "x", "tan");
26816
26814
  return j.runKernelFunc(function(t, r) {
26817
26815
  var o = t.tan(n);
@@ -26822,7 +26820,7 @@ var FR = z({ square_: function(e) {
26822
26820
  return t.div(o.cos().square());
26823
26821
  } };
26824
26822
  });
26825
- } }), l5 = z({ tanh_: function(e) {
26823
+ } }), lR = z({ tanh_: function(e) {
26826
26824
  var n = A(e, "x", "tanh");
26827
26825
  return j.runKernelFunc(function(t, r) {
26828
26826
  var o = t.tanh(n);
@@ -26920,20 +26918,20 @@ function Yi(e) {
26920
26918
  function mu() {
26921
26919
  qm("tf.batchNormalization() is going away. Use tf.batchNorm() instead, and note the positional argument change of scale, offset, and varianceEpsilon");
26922
26920
  }
26923
- var c5 = z({ batchNormalization2d_: function(e, n, t, r, o, a) {
26921
+ var cR = z({ batchNormalization2d_: function(e, n, t, r, o, a) {
26924
26922
  return r === void 0 && (r = 1e-3), mu(), Cg(e, n, t, a, o, r);
26925
- } }), d5 = z({ batchNormalization3d_: function(e, n, t, r, o, a) {
26923
+ } }), dR = z({ batchNormalization3d_: function(e, n, t, r, o, a) {
26926
26924
  return r === void 0 && (r = 1e-3), mu(), _g(e, n, t, a, o, r);
26927
- } }), f5 = z({ batchNormalization4d_: function(e, n, t, r, o, a) {
26925
+ } }), fR = z({ batchNormalization4d_: function(e, n, t, r, o, a) {
26928
26926
  return r === void 0 && (r = 1e-3), mu(), kg(e, n, t, a, o, r);
26929
- } }), h5 = z({ batchNormalization_: function(e, n, t, r, o, a) {
26927
+ } }), hR = z({ batchNormalization_: function(e, n, t, r, o, a) {
26930
26928
  return r === void 0 && (r = 1e-3), mu(), Ii(e, n, t, a, o, r);
26931
- } }), Sg = z({ batchNorm_: Ii }), p5 = z({ batchNorm2d_: Cg }), v5 = z({ batchNorm3d_: _g }), m5 = z({ batchNorm4d_: kg }), gu = z({ logicalAnd_: function(e, n) {
26929
+ } }), Sg = z({ batchNorm_: Ii }), pR = z({ batchNorm2d_: Cg }), vR = z({ batchNorm3d_: _g }), mR = z({ batchNorm4d_: kg }), gu = z({ logicalAnd_: function(e, n) {
26932
26930
  var t = A(e, "a", "logicalAnd", "bool"), r = A(n, "b", "logicalAnd", "bool");
26933
26931
  return pt(t.shape, r.shape), j.runKernelFunc(function(o) {
26934
26932
  return o.logicalAnd(t, r);
26935
26933
  }, { a: t, b: r }, null, "LogicalAnd");
26936
- } }), g5 = z({ logicalNot_: function(e) {
26934
+ } }), gR = z({ logicalNot_: function(e) {
26937
26935
  var n = A(e, "x", "logicalNot", "bool");
26938
26936
  return j.runKernelFunc(function(t) {
26939
26937
  return t.logicalNot(n);
@@ -26943,7 +26941,7 @@ var c5 = z({ batchNormalization2d_: function(e, n, t, r, o, a) {
26943
26941
  return pt(t.shape, r.shape), j.runKernelFunc(function(o) {
26944
26942
  return o.logicalOr(t, r);
26945
26943
  }, { $a: t, $b: r });
26946
- } }), y5 = z({ logicalXor_: function(e, n) {
26944
+ } }), yR = z({ logicalXor_: function(e, n) {
26947
26945
  var t = A(e, "a", "logicalXor", "bool"), r = A(n, "b", "logicalXor", "bool");
26948
26946
  return pt(t.shape, r.shape), Eg(e, n).logicalAnd(gu(e, n).logicalNot());
26949
26947
  } }), qo = z({ where_: function(e, n, t) {
@@ -26990,7 +26988,7 @@ var c5 = z({ batchNormalization2d_: function(e, n, t, r, o, a) {
26990
26988
  return u.length > 0 && (s = s.sum(u)), s.reshape(o.shape);
26991
26989
  } };
26992
26990
  }, "Add");
26993
- } }), b5 = z({ addN_: function(e) {
26991
+ } }), bR = z({ addN_: function(e) {
26994
26992
  P(Array.isArray(e), function() {
26995
26993
  return "The argument passed to tf.addN() must be a list of tensors";
26996
26994
  }), P(e.length >= 1, function() {
@@ -27015,10 +27013,10 @@ var c5 = z({ batchNormalization2d_: function(e, n, t, r, o, a) {
27015
27013
  };
27016
27014
  }), a;
27017
27015
  }, "AddN");
27018
- } }), w5 = z({ addStrict_: function(e, n) {
27016
+ } }), wR = z({ addStrict_: function(e, n) {
27019
27017
  var t = A(e, "a", "addStrict"), r = A(n, "b", "addStrict");
27020
27018
  return Rt(t.shape, r.shape, "Error in addStrict: "), t.add(r);
27021
- } }), x5 = z({ atan2_: function(e, n) {
27019
+ } }), xR = z({ atan2_: function(e, n) {
27022
27020
  var t, r = A(e, "a", "atan2"), o = A(n, "b", "atan2");
27023
27021
  t = jt(r, o), r = t[0], o = t[1];
27024
27022
  var a = pt(r.shape, o.shape);
@@ -27054,12 +27052,12 @@ var c5 = z({ batchNormalization2d_: function(e, n, t, r, o, a) {
27054
27052
  return c.div(f.toFloat()).neg();
27055
27053
  } };
27056
27054
  }, "Div");
27057
- } }), C5 = z({ divNoNan_: function(e, n) {
27055
+ } }), CR = z({ divNoNan_: function(e, n) {
27058
27056
  var t, r = A(e, "a", "div"), o = A(n, "b", "div");
27059
27057
  r = (t = jt(r, o))[0], o = t[1];
27060
27058
  var a = ur(r, o), i = yt(a), s = o.equal(i);
27061
27059
  return qo(s, i, a);
27062
- } }), _5 = z({ divStrict_: function(e, n) {
27060
+ } }), _R = z({ divStrict_: function(e, n) {
27063
27061
  var t = A(e, "a", "div"), r = A(n, "b", "div");
27064
27062
  return Rt(t.shape, r.shape, "Error in divideStrict: "), t.div(r);
27065
27063
  } }), Ig = z({ floorDiv_: function(e, n) {
@@ -27094,7 +27092,7 @@ var c5 = z({ batchNormalization2d_: function(e, n, t, r, o, a) {
27094
27092
  return a.mul(s.less(u).toFloat());
27095
27093
  } };
27096
27094
  }, "Maximum");
27097
- } }), k5 = z({ maximumStrict_: function(e, n) {
27095
+ } }), kR = z({ maximumStrict_: function(e, n) {
27098
27096
  var t = A(e, "a", "maximumStrict"), r = A(n, "b", "maximumStrict");
27099
27097
  return Rt(t.shape, r.shape, "Error in maximumStrict: "), t.maximum(r);
27100
27098
  } }), Tg = z({ minimum_: function(e, n) {
@@ -27110,10 +27108,10 @@ var c5 = z({ batchNormalization2d_: function(e, n, t, r, o, a) {
27110
27108
  return a.mul(s.greater(u).toFloat());
27111
27109
  } };
27112
27110
  }, "Minimum");
27113
- } }), S5 = z({ minimumStrict_: function(e, n) {
27111
+ } }), SR = z({ minimumStrict_: function(e, n) {
27114
27112
  var t = A(e, "a", "minimumStrict"), r = A(n, "b", "minimumStrict");
27115
27113
  return Rt(t.shape, r.shape, "Error in minimumStrict: "), t.minimum(r);
27116
- } }), E5 = z({ mod_: function(e, n) {
27114
+ } }), ER = z({ mod_: function(e, n) {
27117
27115
  var t, r = A(e, "a", "mod"), o = A(n, "b", "mod");
27118
27116
  t = jt(r, o), r = t[0], o = t[1];
27119
27117
  var a = pt(r.shape, o.shape);
@@ -27130,7 +27128,7 @@ var c5 = z({ batchNormalization2d_: function(e, n, t, r, o, a) {
27130
27128
  return d.length > 0 ? c.sum(d).reshape(l.shape) : c;
27131
27129
  } };
27132
27130
  });
27133
- } }), R5 = z({ modStrict_: function(e, n) {
27131
+ } }), RR = z({ modStrict_: function(e, n) {
27134
27132
  var t = A(e, "a", "modStrict"), r = A(n, "b", "modStrict");
27135
27133
  return Rt(t.shape, r.shape, "Error in modStrict: "), t.mod(r);
27136
27134
  } }), In = z({ mul_: function(e, n) {
@@ -27150,7 +27148,7 @@ var c5 = z({ batchNormalization2d_: function(e, n, t, r, o, a) {
27150
27148
  return d.length > 0 ? c.sum(d).reshape(l.shape) : c;
27151
27149
  } };
27152
27150
  }, "Mul");
27153
- } }), I5 = z({ mulStrict_: function(e, n) {
27151
+ } }), IR = z({ mulStrict_: function(e, n) {
27154
27152
  var t = A(e, "a", "mul"), r = A(n, "b", "mul");
27155
27153
  return Rt(t.shape, r.shape, "Error in multiplyStrict: "), t.mul(r);
27156
27154
  } }), Hs = z({ pow_: function(e, n) {
@@ -27170,9 +27168,9 @@ var c5 = z({ batchNormalization2d_: function(e, n, t, r, o, a) {
27170
27168
  return m.length > 0 && (p = p.sum(m)), p.reshape(c.shape);
27171
27169
  } };
27172
27170
  }, "Pow", {}, i, [!0]);
27173
- } }), T5 = z({ powStrict_: function(e, n) {
27171
+ } }), TR = z({ powStrict_: function(e, n) {
27174
27172
  return Rt(e.shape, n.shape, "Error in powStrict: "), e.pow(n);
27175
- } }), A5 = z({ squaredDifferenceStrict_: function(e, n) {
27173
+ } }), AR = z({ squaredDifferenceStrict_: function(e, n) {
27176
27174
  var t = A(e, "a", "squaredDifferenceStrict"), r = A(n, "b", "squaredDifferenceStrict");
27177
27175
  return Rt(t.shape, r.shape, "Error in squaredDifferenceStrict: "), t.squaredDifference(r);
27178
27176
  } }), sn = z({ sub_: function(e, n) {
@@ -27190,7 +27188,7 @@ var c5 = z({ batchNormalization2d_: function(e, n, t, r, o, a) {
27190
27188
  return u.length > 0 && (s = s.sum(u)), s.neg().reshape(o.shape);
27191
27189
  } };
27192
27190
  }, "Sub");
27193
- } }), D5 = z({ subStrict_: function(e, n) {
27191
+ } }), DR = z({ subStrict_: function(e, n) {
27194
27192
  var t = A(e, "a", "subStrict"), r = A(n, "b", "subStrict");
27195
27193
  return Rt(t.shape, r.shape, "Error in subStrict: "), t.sub(r);
27196
27194
  } }), Ag = z({ equal_: function(e, n) {
@@ -27198,10 +27196,10 @@ var c5 = z({ batchNormalization2d_: function(e, n, t, r, o, a) {
27198
27196
  return t = jt(r, o), r = t[0], o = t[1], pt(r.shape, o.shape), j.runKernelFunc(function(a) {
27199
27197
  return a.equal(r, o);
27200
27198
  }, { $a: r, $b: o });
27201
- } }), M5 = z({ equalStrict_: function(e, n) {
27199
+ } }), MR = z({ equalStrict_: function(e, n) {
27202
27200
  var t = A(e, "a", "equalStrict"), r = A(n, "b", "equalStrict");
27203
27201
  return Rt(t.shape, r.shape, "Error in equalStrict: "), t.equal(r);
27204
- } }), P5 = z({ greater_: function(e, n) {
27202
+ } }), PR = z({ greater_: function(e, n) {
27205
27203
  var t, r = A(e, "a", "greater"), o = A(n, "b", "greater");
27206
27204
  return t = jt(r, o), r = t[0], o = t[1], pt(r.shape, o.shape), j.runKernelFunc(function(a) {
27207
27205
  return a.greater(r, o);
@@ -27219,35 +27217,35 @@ var c5 = z({ batchNormalization2d_: function(e, n, t, r, o, a) {
27219
27217
  return yt(u);
27220
27218
  } };
27221
27219
  }, "GreaterEqual");
27222
- } }), F5 = z({ greaterEqualStrict_: function(e, n) {
27220
+ } }), FR = z({ greaterEqualStrict_: function(e, n) {
27223
27221
  var t = A(e, "a", "greaterEqualStrict"), r = A(n, "b", "greaterEqualStrict");
27224
27222
  return Rt(t.shape, r.shape, "Error in greaterEqualStrict: "), t.greaterEqual(r);
27225
- } }), B5 = z({ greaterStrict_: function(e, n) {
27223
+ } }), BR = z({ greaterStrict_: function(e, n) {
27226
27224
  var t = A(e, "a", "greaterStrict"), r = A(n, "b", "greaterStrict");
27227
27225
  return Rt(t.shape, r.shape, "Error in greaterStrict: "), t.greater(r);
27228
- } }), O5 = z({ less_: function(e, n) {
27226
+ } }), OR = z({ less_: function(e, n) {
27229
27227
  var t, r = A(e, "a", "less"), o = A(n, "b", "less");
27230
27228
  return t = jt(r, o), r = t[0], o = t[1], pt(r.shape, o.shape), j.runKernelFunc(function(a) {
27231
27229
  return a.less(r, o);
27232
27230
  }, { a: r, b: o }, null, "Less");
27233
- } }), N5 = z({ lessEqual_: function(e, n) {
27231
+ } }), NR = z({ lessEqual_: function(e, n) {
27234
27232
  var t, r = A(e, "a", "lessEqual"), o = A(n, "b", "lessEqual");
27235
27233
  return t = jt(r, o), r = t[0], o = t[1], pt(r.shape, o.shape), j.runKernelFunc(function(a, i) {
27236
27234
  var s = a.lessEqual(r, o);
27237
27235
  return i([r, o]), s;
27238
27236
  }, { a: r, b: o }, null, "LessEqual");
27239
- } }), L5 = z({ lessEqualStrict_: function(e, n) {
27237
+ } }), LR = z({ lessEqualStrict_: function(e, n) {
27240
27238
  var t = A(e, "a", "lessEqualStrict"), r = A(n, "b", "lessEqualStrict");
27241
27239
  return Rt(t.shape, r.shape, "Error in lessEqualStrict: "), t.lessEqual(r);
27242
- } }), q5 = z({ lessStrict_: function(e, n) {
27240
+ } }), qR = z({ lessStrict_: function(e, n) {
27243
27241
  var t = A(e, "a", "lessStrict"), r = A(n, "b", "lessStrict");
27244
27242
  return Rt(t.shape, r.shape, "Error in lessStrict: "), t.less(r);
27245
- } }), V5 = z({ notEqual_: function(e, n) {
27243
+ } }), VR = z({ notEqual_: function(e, n) {
27246
27244
  var t, r = A(e, "a", "notEqual"), o = A(n, "b", "notEqual");
27247
27245
  return t = jt(r, o), r = t[0], o = t[1], pt(r.shape, o.shape), j.runKernelFunc(function(a) {
27248
27246
  return a.notEqual(r, o);
27249
27247
  }, { a: r, b: o }, null, "NotEqual");
27250
- } }), z5 = z({ notEqualStrict_: function(e, n) {
27248
+ } }), zR = z({ notEqualStrict_: function(e, n) {
27251
27249
  var t = A(e, "a", "notEqualStrict"), r = A(n, "b", "notEqualStrict");
27252
27250
  return Rt(t.shape, r.shape, "Error in notEqualStrict: "), t.notEqual(r);
27253
27251
  } });
@@ -27299,7 +27297,7 @@ var Fd = z({ gather_: function(e, n, t) {
27299
27297
  }(a, s);
27300
27298
  } };
27301
27299
  });
27302
- } }), $5 = function(e, n, t) {
27300
+ } }), $R = function(e, n, t) {
27303
27301
  return De(this, void 0, void 0, function() {
27304
27302
  var r, o, a, i, s, u, l, c, d, f, h, p, m;
27305
27303
  return Me(this, function(v) {
@@ -27377,7 +27375,7 @@ function Fg(e, n, t, r, o) {
27377
27375
  }, { dy5D: i });
27378
27376
  return s ? d.as4D(d.shape[1], d.shape[2], d.shape[3], d.shape[4]) : d;
27379
27377
  }
27380
- var W5 = z({ conv1d_: function(e, n, t, r, o, a, i) {
27378
+ var WR = z({ conv1d_: function(e, n, t, r, o, a, i) {
27381
27379
  o === void 0 && (o = "NWC"), a === void 0 && (a = 1);
27382
27380
  var s = A(e, "x", "conv1d"), u = A(n, "filter", "conv1d"), l = s, c = !1;
27383
27381
  s.rank === 2 && (c = !0, l = s.as3D(1, s.shape[0], s.shape[1])), P(l.rank === 3, function() {
@@ -27425,7 +27423,7 @@ var W5 = z({ conv1d_: function(e, n, t, r, o, a, i) {
27425
27423
  } };
27426
27424
  }, "Conv2D", h, p);
27427
27425
  return c ? m.as3D(m.shape[1], m.shape[2], m.shape[3]) : m;
27428
- } }), H5 = z({ conv3d_: function(e, n, t, r, o, a) {
27426
+ } }), HR = z({ conv3d_: function(e, n, t, r, o, a) {
27429
27427
  o === void 0 && (o = "NDHWC"), a === void 0 && (a = [1, 1, 1]);
27430
27428
  var i = A(e, "x", "conv3d"), s = A(n, "filter", "conv3d"), u = i, l = !1;
27431
27429
  i.rank === 4 && (l = !0, u = i.as5D(1, i.shape[0], i.shape[1], i.shape[2], i.shape[3])), P(u.rank === 5, function() {
@@ -27563,9 +27561,9 @@ var W5 = z({ conv1d_: function(e, n, t, r, o, a, i) {
27563
27561
  });
27564
27562
  var p = yu(c, u, r, o, i, a), m = ar(p, l, 1, "valid", i);
27565
27563
  return d ? m.as3D(m.shape[1], m.shape[2], m.shape[3]) : m;
27566
- } }), j5 = z({ conv2dTranspose_: function(e, n, t, r, o, a) {
27564
+ } }), jR = z({ conv2dTranspose_: function(e, n, t, r, o, a) {
27567
27565
  return Pg(t, A(e, "x", "conv2dTranspose"), A(n, "filter", "conv2dTranspose"), r, o, "NHWC", a);
27568
- } }), U5 = z({ conv3dTranspose_: function(e, n, t, r, o) {
27566
+ } }), UR = z({ conv3dTranspose_: function(e, n, t, r, o) {
27569
27567
  return Fg(t, A(e, "x", "conv3dTranspose"), A(n, "filter", "conv3dTranspose"), r, o);
27570
27568
  } }), bu = z({ matMul_: function(e, n, t, r) {
27571
27569
  var o;
@@ -27604,7 +27602,7 @@ var W5 = z({ conv1d_: function(e, n, t, r, o, a, i) {
27604
27602
  return C.matMul(w, !0, !1);
27605
27603
  } };
27606
27604
  }, "BatchMatMul", b).reshape(m);
27607
- } }), G5 = z({ dot_: function(e, n) {
27605
+ } }), GR = z({ dot_: function(e, n) {
27608
27606
  var t = A(e, "t1", "dot"), r = A(n, "t2", "dot");
27609
27607
  P(!(t.rank !== 1 && t.rank !== 2 || r.rank !== 1 && r.rank !== 2), function() {
27610
27608
  return "Error in dot: inputs must all be rank 1 or 2, but got ranks " + t.rank + " and " + r.rank + ".";
@@ -27613,7 +27611,7 @@ var W5 = z({ conv1d_: function(e, n, t, r, o, a, i) {
27613
27611
  return P(o === a, function() {
27614
27612
  return "Error in dot: inner dimensions of inputs must match, but got " + o + " and " + a + ".";
27615
27613
  }), t.rank === 1 && r.rank === 1 ? t.as2D(1, -1).matMul(r.as2D(-1, 1)).asScalar() : t.rank === 1 && r.rank === 2 ? t.as2D(1, -1).matMul(r.as2D(r.shape[0], r.shape[1])).as1D() : t.rank === 2 && r.rank === 1 ? t.matMul(r.as2D(-1, 1)).as1D() : t.matMul(r.as2D(r.shape[0], r.shape[1]));
27616
- } }), K5 = z({ outerProduct_: function(e, n) {
27614
+ } }), KR = z({ outerProduct_: function(e, n) {
27617
27615
  var t = A(e, "v1", "outerProduct"), r = A(n, "v2", "outerProduct");
27618
27616
  return P(t.rank === 1 && r.rank === 1, function() {
27619
27617
  return "Error in outerProduct: inputs must be rank 1, but got ranks " + t.rank + " and " + r.rank + ".";
@@ -27629,22 +27627,22 @@ var W5 = z({ conv1d_: function(e, n, t, r, o, a, i) {
27629
27627
  return o.reverse(r);
27630
27628
  } };
27631
27629
  }).reshapeAs(t);
27632
- } }), X5 = z({ reverse1d_: function(e) {
27630
+ } }), XR = z({ reverse1d_: function(e) {
27633
27631
  var n = A(e, "x", "reverse");
27634
27632
  return P(n.rank === 1, function() {
27635
27633
  return "Error in reverse1D: x must be rank 1 but got rank " + n.rank + ".";
27636
27634
  }), Ti(n, 0);
27637
- } }), Y5 = z({ reverse2d_: function(e, n) {
27635
+ } }), YR = z({ reverse2d_: function(e, n) {
27638
27636
  var t = A(e, "x", "reverse");
27639
27637
  return P(t.rank === 2, function() {
27640
27638
  return "Error in reverse2D: x must be rank 2 but got rank " + t.rank + ".";
27641
27639
  }), Ti(t, n);
27642
- } }), Q5 = z({ reverse3d_: function(e, n) {
27640
+ } }), QR = z({ reverse3d_: function(e, n) {
27643
27641
  var t = A(e, "x", "reverse");
27644
27642
  return P(t.rank === 3, function() {
27645
27643
  return "Error in reverse3D: x must be rank 3 but got rank " + t.rank + ".";
27646
27644
  }), Ti(t, n);
27647
- } }), Z5 = z({ reverse4d_: function(e, n) {
27645
+ } }), ZR = z({ reverse4d_: function(e, n) {
27648
27646
  var t = A(e, "x", "reverse");
27649
27647
  return P(t.rank === 4, function() {
27650
27648
  return "Error in reverse4D: x must be rank 4 but got rank " + t.rank + ".";
@@ -27730,7 +27728,7 @@ var cn = z({ maxPool_: function(e, n, t, r, o) {
27730
27728
  return Lg(e, n, t, 1, r, o);
27731
27729
  } }), Ai = z({ avgPool_: function(e, n, t, r, o) {
27732
27730
  return qg(e, n, t, 1, r, o);
27733
- } }), J5 = z({ pool_: function(e, n, t, r, o, a) {
27731
+ } }), JR = z({ pool_: function(e, n, t, r, o, a) {
27734
27732
  o == null && (o = [1, 1]), a == null && (a = 1), r === 0 && (r = "valid");
27735
27733
  var i = A(e, "x", "maxPool"), s = i, u = !1;
27736
27734
  i.rank === 3 && (u = !0, s = i.as4D(1, i.shape[0], i.shape[1], i.shape[2])), P($n(a, o), function() {
@@ -28808,7 +28806,7 @@ var WI = z({ resizeBilinear_: function(e, n, t) {
28808
28806
  } }, B);
28809
28807
  }, "FusedDepthwiseConv2D", { convInfo: x, activation: f }, E, [!0]);
28810
28808
  return b ? R.as3D(R.shape[1], R.shape[2], R.shape[3]) : R;
28811
- } }), JI = Object.freeze({ matMul: YI, conv2d: QI, depthwiseConv2d: ZI }), eT = Object.freeze({ image: zd, linalg: $I, losses: LI, spectral: _I, fused: JI, signal: II, square: FR, squaredDifference: bg, conv1d: W5, conv2d: ar, conv3d: H5, depthwiseConv2d: yu, separableConv2d: Od, conv2dTranspose: j5, conv3dTranspose: U5, op: z, batchNormalization2d: c5, batchNormalization3d: d5, batchNormalization4d: f5, batchNormalization: h5, batchNorm: Sg, batchNorm2d: p5, batchNorm3d: v5, batchNorm4d: m5, booleanMaskAsync: $5, complex: yn, real: rr, imag: Cr, concat: rn, concat1d: JS, concat2d: e4, concat3d: t4, concat4d: n4, split: Cd, matMul: bu, dot: G5, outerProduct: K5, reverse: Ti, reverse1d: X5, reverse2d: Y5, reverse3d: Q5, reverse4d: Z5, maxPool: cn, avgPool: Ai, pool: J5, maxPool3d: eI, avgPool3d: tI, slice: Rr, slice1d: nI, slice2d: rI, slice3d: Vg, slice4d: oI, abs: BR, acos: OR, acosh: NR, asin: LR, asinh: qR, atan: VR, atanh: zR, ceil: $R, clipByValue: Md, cos: WR, cosh: HR, erf: jR, exp: Ac, expm1: UR, floor: GR, log: KR, log1p: XR, logSigmoid: YR, neg: Ws, reciprocal: QR, round: ZR, rsqrt: wg, sigmoid: xg, sign: JR, isNaN: e5, isInf: t5, isFinite: n5, sin: r5, sinh: o5, softplus: a5, sqrt: i5, step: s5, tan: u5, tanh: l5, all: aI, any: iI, argMax: sI, argMin: uI, logSumExp: lI, max: wu, mean: cI, min: dI, moments: fI, sum: $g, prod: hI, equal: Ag, equalStrict: M5, greater: P5, greaterEqual: Dg, greaterEqualStrict: F5, greaterStrict: B5, less: O5, lessEqual: N5, lessEqualStrict: L5, lessStrict: q5, notEqual: V5, notEqualStrict: z5, add: ft, addN: b5, addStrict: w5, atan2: x5, div: ur, divNoNan: C5, divStrict: _5, floorDiv: Ig, maximum: Pd, maximumStrict: k5, minimum: Tg, minimumStrict: S5, mod: E5, modStrict: R5, mul: In, mulStrict: I5, pow: Hs, powStrict: T5, squaredDifferenceStrict: A5, sub: sn, subStrict: D5, elu: Wg, leakyRelu: pI, prelu: Hg, relu: Ht, relu6: jg, selu: vI, logicalAnd: gu, logicalNot: g5, logicalOr: Eg, logicalXor: y5, where: qo, whereAsync: Rg, buffer: ot, print: d4, batchToSpaceND: $m, broadcastTo: f4, cast: h4, clone: p4, cumsum: v4, depthToSpace: m4, expandDims: tr, eye: Wm, multinomial: g4, oneHot: Ec, pad: zo, pad1d: y4, pad2d: b4, pad3d: w4, pad4d: x4, rand: C4, randomNormal: _4, randomGamma: k4, randomUniform: Hm, reshape: lr, spaceToBatchND: jm, squeeze: Um, stack: Yn, tile: ha, truncatedNormal: S4, unstack: on, setdiff1dAsync: E4, fill: Er, linspace: ZS, ones: Va, range: Bs, scalar: we, tensor: wn, tensor1d: en, tensor2d: so, tensor3d: xd, tensor4d: Pn, tensor5d: XS, tensor6d: YS, variable: QS, zeros: Vt, onesLike: zm, zerosLike: yt, transpose: fo, softmax: Ur, logSoftmax: P4, localResponseNormalization: mI, norm: Ug, gather: Fd, unsortedSegmentSum: Mg, basicLSTMCell: gI, multiRNNCell: yI, movingAverage: bI, stridedSlice: wI, topk: xI, scatterND: CI, fft: Nd, ifft: js, rfft: Ld, irfft: Gg, sparseToDense: kI, gatherND: SI, diag: EI, dropout: RI, hannWindow: qd, hammingWindow: Xg, frame: Vd, stft: Yg, inTopKAsync: TI });
28809
+ } }), JI = Object.freeze({ matMul: YI, conv2d: QI, depthwiseConv2d: ZI }), eT = Object.freeze({ image: zd, linalg: $I, losses: LI, spectral: _I, fused: JI, signal: II, square: F5, squaredDifference: bg, conv1d: WR, conv2d: ar, conv3d: HR, depthwiseConv2d: yu, separableConv2d: Od, conv2dTranspose: jR, conv3dTranspose: UR, op: z, batchNormalization2d: cR, batchNormalization3d: dR, batchNormalization4d: fR, batchNormalization: hR, batchNorm: Sg, batchNorm2d: pR, batchNorm3d: vR, batchNorm4d: mR, booleanMaskAsync: $R, complex: yn, real: rr, imag: Cr, concat: rn, concat1d: JS, concat2d: e4, concat3d: t4, concat4d: n4, split: Cd, matMul: bu, dot: GR, outerProduct: KR, reverse: Ti, reverse1d: XR, reverse2d: YR, reverse3d: QR, reverse4d: ZR, maxPool: cn, avgPool: Ai, pool: JR, maxPool3d: eI, avgPool3d: tI, slice: Rr, slice1d: nI, slice2d: rI, slice3d: Vg, slice4d: oI, abs: B5, acos: O5, acosh: N5, asin: L5, asinh: q5, atan: V5, atanh: z5, ceil: $5, clipByValue: Md, cos: W5, cosh: H5, erf: j5, exp: Ac, expm1: U5, floor: G5, log: K5, log1p: X5, logSigmoid: Y5, neg: Ws, reciprocal: Q5, round: Z5, rsqrt: wg, sigmoid: xg, sign: J5, isNaN: eR, isInf: tR, isFinite: nR, sin: rR, sinh: oR, softplus: aR, sqrt: iR, step: sR, tan: uR, tanh: lR, all: aI, any: iI, argMax: sI, argMin: uI, logSumExp: lI, max: wu, mean: cI, min: dI, moments: fI, sum: $g, prod: hI, equal: Ag, equalStrict: MR, greater: PR, greaterEqual: Dg, greaterEqualStrict: FR, greaterStrict: BR, less: OR, lessEqual: NR, lessEqualStrict: LR, lessStrict: qR, notEqual: VR, notEqualStrict: zR, add: ft, addN: bR, addStrict: wR, atan2: xR, div: ur, divNoNan: CR, divStrict: _R, floorDiv: Ig, maximum: Pd, maximumStrict: kR, minimum: Tg, minimumStrict: SR, mod: ER, modStrict: RR, mul: In, mulStrict: IR, pow: Hs, powStrict: TR, squaredDifferenceStrict: AR, sub: sn, subStrict: DR, elu: Wg, leakyRelu: pI, prelu: Hg, relu: Ht, relu6: jg, selu: vI, logicalAnd: gu, logicalNot: gR, logicalOr: Eg, logicalXor: yR, where: qo, whereAsync: Rg, buffer: ot, print: d4, batchToSpaceND: $m, broadcastTo: f4, cast: h4, clone: p4, cumsum: v4, depthToSpace: m4, expandDims: tr, eye: Wm, multinomial: g4, oneHot: Ec, pad: zo, pad1d: y4, pad2d: b4, pad3d: w4, pad4d: x4, rand: C4, randomNormal: _4, randomGamma: k4, randomUniform: Hm, reshape: lr, spaceToBatchND: jm, squeeze: Um, stack: Yn, tile: ha, truncatedNormal: S4, unstack: on, setdiff1dAsync: E4, fill: Er, linspace: ZS, ones: Va, range: Bs, scalar: we, tensor: wn, tensor1d: en, tensor2d: so, tensor3d: xd, tensor4d: Pn, tensor5d: XS, tensor6d: YS, variable: QS, zeros: Vt, onesLike: zm, zerosLike: yt, transpose: fo, softmax: Ur, logSoftmax: P4, localResponseNormalization: mI, norm: Ug, gather: Fd, unsortedSegmentSum: Mg, basicLSTMCell: gI, multiRNNCell: yI, movingAverage: bI, stridedSlice: wI, topk: xI, scatterND: CI, fft: Nd, ifft: js, rfft: Ld, irfft: Gg, sparseToDense: kI, gatherND: SI, diag: EI, dropout: RI, hannWindow: qd, hammingWindow: Xg, frame: Vd, stft: Yg, inTopKAsync: TI });
28812
28810
  function ce(e, n) {
28813
28811
  Array.isArray(e) || (e = [e]), e.forEach(function(t) {
28814
28812
  t != null && P(t.dtype !== "complex64", function() {
@@ -36254,7 +36252,7 @@ export {
36254
36252
  PA as AppLayout,
36255
36253
  FA as AppLayoutHeader,
36256
36254
  BA as AppLayoutPage,
36257
- lb as AppLoader,
36255
+ l2 as AppLoader,
36258
36256
  o_ as AppModalSelect,
36259
36257
  OA as AppSelect,
36260
36258
  NA as AppSheet,