UNPKG

epic-designer-gold

Version:

基于vue3的设计器,可视化开发页面表单

14,984 lines 633 kB
var i0 = Object.defineProperty;
var n0 = (e, t, r) => t in e ? i0(e, t, { enumerable: !0, configurable: !0, writable: !0, value: r }) : e[t] = r;
var ft = (e, t, r) => n0(e, typeof t != "symbol" ? t + "" : t, r);
import a0 from "dayjs";
var vh = Object.defineProperty, d = (e, t) => vh(e, "name", { value: t, configurable: !0 }), s0 = (e, t) => {
  for (var r in t)
    vh(e, r, { get: t[r], enumerable: !0 });
}, Me = {
  trace: 0,
  debug: 1,
  info: 2,
  warn: 3,
  error: 4,
  fatal: 5
}, A = {
  trace: /* @__PURE__ */ d((...e) => {
  }, "trace"),
  debug: /* @__PURE__ */ d((...e) => {
  }, "debug"),
  info: /* @__PURE__ */ d((...e) => {
  }, "info"),
  warn: /* @__PURE__ */ d((...e) => {
  }, "warn"),
  error: /* @__PURE__ */ d((...e) => {
  }, "error"),
  fatal: /* @__PURE__ */ d((...e) => {
  }, "fatal")
}, So = /* @__PURE__ */ d(function(e = "fatal") {
  let t = Me.fatal;
  typeof e == "string" ? e.toLowerCase() in Me && (t = Me[e]) : typeof e == "number" && (t = e), A.trace = () => {
  }, A.debug = () => {
  }, A.info = () => {
  }, A.warn = () => {
  }, A.error = () => {
  }, A.fatal = () => {
  }, t <= Me.fatal && (A.fatal = console.error ? console.error.bind(console, te("FATAL"), "color: orange") : console.log.bind(console, "\x1B[35m", te("FATAL"))), t <= Me.error && (A.error = console.error ? console.error.bind(console, te("ERROR"), "color: orange") : console.log.bind(console, "\x1B[31m", te("ERROR"))), t <= Me.warn && (A.warn = console.warn ? console.warn.bind(console, te("WARN"), "color: orange") : console.log.bind(console, "\x1B[33m", te("WARN"))), t <= Me.info && (A.info = console.info ? console.info.bind(console, te("INFO"), "color: lightblue") : console.log.bind(console, "\x1B[34m", te("INFO"))), t <= Me.debug && (A.debug = console.debug ? console.debug.bind(console, te("DEBUG"), "color: lightgreen") : console.log.bind(console, "\x1B[32m", te("DEBUG"))), t <= Me.trace && (A.trace = console.debug ? console.debug.bind(console, te("TRACE"), "color: lightgreen") : console.log.bind(console, "\x1B[32m", te("TRACE")));
}, "setLogLevel"), te = /* @__PURE__ */ d((e) => `%c${a0().format("ss.SSS")} : ${e} : `, "format");
const Bn = {
  /* CLAMP */
  min: {
    r: 0,
    g: 0,
    b: 0,
    s: 0,
    l: 0,
    a: 0
  },
  max: {
    r: 255,
    g: 255,
    b: 255,
    h: 360,
    s: 100,
    l: 100,
    a: 1
  },
  clamp: {
    r: (e) => e >= 255 ? 255 : e < 0 ? 0 : e,
    g: (e) => e >= 255 ? 255 : e < 0 ? 0 : e,
    b: (e) => e >= 255 ? 255 : e < 0 ? 0 : e,
    h: (e) => e % 360,
    s: (e) => e >= 100 ? 100 : e < 0 ? 0 : e,
    l: (e) => e >= 100 ? 100 : e < 0 ? 0 : e,
    a: (e) => e >= 1 ? 1 : e < 0 ? 0 : e
  },
  /* CONVERSION */
  //SOURCE: https://planetcalc.com/7779
  toLinear: (e) => {
    const t = e / 255;
    return e > 0.03928 ? Math.pow((t + 0.055) / 1.055, 2.4) : t / 12.92;
  },
  //SOURCE: https://gist.github.com/mjackson/5311256
  hue2rgb: (e, t, r) => (r < 0 && (r += 1), r > 1 && (r -= 1), r < 1 / 6 ? e + (t - e) * 6 * r : r < 1 / 2 ? t : r < 2 / 3 ? e + (t - e) * (2 / 3 - r) * 6 : e),
  hsl2rgb: ({ h: e, s: t, l: r }, i) => {
    if (!t)
      return r * 2.55;
    e /= 360, t /= 100, r /= 100;
    const n = r < 0.5 ? r * (1 + t) : r + t - r * t, a = 2 * r - n;
    switch (i) {
      case "r":
        return Bn.hue2rgb(a, n, e + 1 / 3) * 255;
      case "g":
        return Bn.hue2rgb(a, n, e) * 255;
      case "b":
        return Bn.hue2rgb(a, n, e - 1 / 3) * 255;
    }
  },
  rgb2hsl: ({ r: e, g: t, b: r }, i) => {
    e /= 255, t /= 255, r /= 255;
    const n = Math.max(e, t, r), a = Math.min(e, t, r), o = (n + a) / 2;
    if (i === "l")
      return o * 100;
    if (n === a)
      return 0;
    const s = n - a, l = o > 0.5 ? s / (2 - n - a) : s / (n + a);
    if (i === "s")
      return l * 100;
    switch (n) {
      case e:
        return ((t - r) / s + (t < r ? 6 : 0)) * 60;
      case t:
        return ((r - e) / s + 2) * 60;
      case r:
        return ((e - t) / s + 4) * 60;
      default:
        return -1;
    }
  }
}, o0 = {
  /* API */
  clamp: (e, t, r) => t > r ? Math.min(t, Math.max(r, e)) : Math.min(r, Math.max(t, e)),
  round: (e) => Math.round(e * 1e10) / 1e10
}, l0 = {
  /* API */
  dec2hex: (e) => {
    const t = Math.round(e).toString(16);
    return t.length > 1 ? t : `0${t}`;
  }
}, tt = {
  channel: Bn,
  lang: o0,
  unit: l0
}, qe = {};
for (let e = 0; e <= 255; e++)
  qe[e] = tt.unit.dec2hex(e);
const Et = {
  ALL: 0,
  RGB: 1,
  HSL: 2
};
class c0 {
  constructor() {
    this.type = Et.ALL;
  }
  /* API */
  get() {
    return this.type;
  }
  set(t) {
    if (this.type && this.type !== t)
      throw new Error("Cannot change both RGB and HSL channels at the same time");
    this.type = t;
  }
  reset() {
    this.type = Et.ALL;
  }
  is(t) {
    return this.type === t;
  }
}
class h0 {
  /* CONSTRUCTOR */
  constructor(t, r) {
    this.color = r, this.changed = !1, this.data = t, this.type = new c0();
  }
  /* API */
  set(t, r) {
    return this.color = r, this.changed = !1, this.data = t, this.type.type = Et.ALL, this;
  }
  /* HELPERS */
  _ensureHSL() {
    const t = this.data, { h: r, s: i, l: n } = t;
    r === void 0 && (t.h = tt.channel.rgb2hsl(t, "h")), i === void 0 && (t.s = tt.channel.rgb2hsl(t, "s")), n === void 0 && (t.l = tt.channel.rgb2hsl(t, "l"));
  }
  _ensureRGB() {
    const t = this.data, { r, g: i, b: n } = t;
    r === void 0 && (t.r = tt.channel.hsl2rgb(t, "r")), i === void 0 && (t.g = tt.channel.hsl2rgb(t, "g")), n === void 0 && (t.b = tt.channel.hsl2rgb(t, "b"));
  }
  /* GETTERS */
  get r() {
    const t = this.data, r = t.r;
    return !this.type.is(Et.HSL) && r !== void 0 ? r : (this._ensureHSL(), tt.channel.hsl2rgb(t, "r"));
  }
  get g() {
    const t = this.data, r = t.g;
    return !this.type.is(Et.HSL) && r !== void 0 ? r : (this._ensureHSL(), tt.channel.hsl2rgb(t, "g"));
  }
  get b() {
    const t = this.data, r = t.b;
    return !this.type.is(Et.HSL) && r !== void 0 ? r : (this._ensureHSL(), tt.channel.hsl2rgb(t, "b"));
  }
  get h() {
    const t = this.data, r = t.h;
    return !this.type.is(Et.RGB) && r !== void 0 ? r : (this._ensureRGB(), tt.channel.rgb2hsl(t, "h"));
  }
  get s() {
    const t = this.data, r = t.s;
    return !this.type.is(Et.RGB) && r !== void 0 ? r : (this._ensureRGB(), tt.channel.rgb2hsl(t, "s"));
  }
  get l() {
    const t = this.data, r = t.l;
    return !this.type.is(Et.RGB) && r !== void 0 ? r : (this._ensureRGB(), tt.channel.rgb2hsl(t, "l"));
  }
  get a() {
    return this.data.a;
  }
  /* SETTERS */
  set r(t) {
    this.type.set(Et.RGB), this.changed = !0, this.data.r = t;
  }
  set g(t) {
    this.type.set(Et.RGB), this.changed = !0, this.data.g = t;
  }
  set b(t) {
    this.type.set(Et.RGB), this.changed = !0, this.data.b = t;
  }
  set h(t) {
    this.type.set(Et.HSL), this.changed = !0, this.data.h = t;
  }
  set s(t) {
    this.type.set(Et.HSL), this.changed = !0, this.data.s = t;
  }
  set l(t) {
    this.type.set(Et.HSL), this.changed = !0, this.data.l = t;
  }
  set a(t) {
    this.changed = !0, this.data.a = t;
  }
}
const wa = new h0({ r: 0, g: 0, b: 0, a: 0 }, "transparent"), Or = {
  /* VARIABLES */
  re: /^#((?:[a-f0-9]{2}){2,4}|[a-f0-9]{3})$/i,
  /* API */
  parse: (e) => {
    if (e.charCodeAt(0) !== 35)
      return;
    const t = e.match(Or.re);
    if (!t)
      return;
    const r = t[1], i = parseInt(r, 16), n = r.length, a = n % 4 === 0, o = n > 4, s = o ? 1 : 17, l = o ? 8 : 4, c = a ? 0 : -1, h = o ? 255 : 15;
    return wa.set({
      r: (i >> l * (c + 3) & h) * s,
      g: (i >> l * (c + 2) & h) * s,
      b: (i >> l * (c + 1) & h) * s,
      a: a ? (i & h) * s / 255 : 1
    }, e);
  },
  stringify: (e) => {
    const { r: t, g: r, b: i, a: n } = e;
    return n < 1 ? `#${qe[Math.round(t)]}${qe[Math.round(r)]}${qe[Math.round(i)]}${qe[Math.round(n * 255)]}` : `#${qe[Math.round(t)]}${qe[Math.round(r)]}${qe[Math.round(i)]}`;
  }
}, or = {
  /* VARIABLES */
  re: /^hsla?\(\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e-?\d+)?(?:deg|grad|rad|turn)?)\s*?(?:,|\s)\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e-?\d+)?%)\s*?(?:,|\s)\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e-?\d+)?%)(?:\s*?(?:,|\/)\s*?\+?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e-?\d+)?(%)?))?\s*?\)$/i,
  hueRe: /^(.+?)(deg|grad|rad|turn)$/i,
  /* HELPERS */
  _hue2deg: (e) => {
    const t = e.match(or.hueRe);
    if (t) {
      const [, r, i] = t;
      switch (i) {
        case "grad":
          return tt.channel.clamp.h(parseFloat(r) * 0.9);
        case "rad":
          return tt.channel.clamp.h(parseFloat(r) * 180 / Math.PI);
        case "turn":
          return tt.channel.clamp.h(parseFloat(r) * 360);
      }
    }
    return tt.channel.clamp.h(parseFloat(e));
  },
  /* API */
  parse: (e) => {
    const t = e.charCodeAt(0);
    if (t !== 104 && t !== 72)
      return;
    const r = e.match(or.re);
    if (!r)
      return;
    const [, i, n, a, o, s] = r;
    return wa.set({
      h: or._hue2deg(i),
      s: tt.channel.clamp.s(parseFloat(n)),
      l: tt.channel.clamp.l(parseFloat(a)),
      a: o ? tt.channel.clamp.a(s ? parseFloat(o) / 100 : parseFloat(o)) : 1
    }, e);
  },
  stringify: (e) => {
    const { h: t, s: r, l: i, a: n } = e;
    return n < 1 ? `hsla(${tt.lang.round(t)}, ${tt.lang.round(r)}%, ${tt.lang.round(i)}%, ${n})` : `hsl(${tt.lang.round(t)}, ${tt.lang.round(r)}%, ${tt.lang.round(i)}%)`;
  }
}, Li = {
  /* VARIABLES */
  colors: {
    aliceblue: "#f0f8ff",
    antiquewhite: "#faebd7",
    aqua: "#00ffff",
    aquamarine: "#7fffd4",
    azure: "#f0ffff",
    beige: "#f5f5dc",
    bisque: "#ffe4c4",
    black: "#000000",
    blanchedalmond: "#ffebcd",
    blue: "#0000ff",
    blueviolet: "#8a2be2",
    brown: "#a52a2a",
    burlywood: "#deb887",
    cadetblue: "#5f9ea0",
    chartreuse: "#7fff00",
    chocolate: "#d2691e",
    coral: "#ff7f50",
    cornflowerblue: "#6495ed",
    cornsilk: "#fff8dc",
    crimson: "#dc143c",
    cyanaqua: "#00ffff",
    darkblue: "#00008b",
    darkcyan: "#008b8b",
    darkgoldenrod: "#b8860b",
    darkgray: "#a9a9a9",
    darkgreen: "#006400",
    darkgrey: "#a9a9a9",
    darkkhaki: "#bdb76b",
    darkmagenta: "#8b008b",
    darkolivegreen: "#556b2f",
    darkorange: "#ff8c00",
    darkorchid: "#9932cc",
    darkred: "#8b0000",
    darksalmon: "#e9967a",
    darkseagreen: "#8fbc8f",
    darkslateblue: "#483d8b",
    darkslategray: "#2f4f4f",
    darkslategrey: "#2f4f4f",
    darkturquoise: "#00ced1",
    darkviolet: "#9400d3",
    deeppink: "#ff1493",
    deepskyblue: "#00bfff",
    dimgray: "#696969",
    dimgrey: "#696969",
    dodgerblue: "#1e90ff",
    firebrick: "#b22222",
    floralwhite: "#fffaf0",
    forestgreen: "#228b22",
    fuchsia: "#ff00ff",
    gainsboro: "#dcdcdc",
    ghostwhite: "#f8f8ff",
    gold: "#ffd700",
    goldenrod: "#daa520",
    gray: "#808080",
    green: "#008000",
    greenyellow: "#adff2f",
    grey: "#808080",
    honeydew: "#f0fff0",
    hotpink: "#ff69b4",
    indianred: "#cd5c5c",
    indigo: "#4b0082",
    ivory: "#fffff0",
    khaki: "#f0e68c",
    lavender: "#e6e6fa",
    lavenderblush: "#fff0f5",
    lawngreen: "#7cfc00",
    lemonchiffon: "#fffacd",
    lightblue: "#add8e6",
    lightcoral: "#f08080",
    lightcyan: "#e0ffff",
    lightgoldenrodyellow: "#fafad2",
    lightgray: "#d3d3d3",
    lightgreen: "#90ee90",
    lightgrey: "#d3d3d3",
    lightpink: "#ffb6c1",
    lightsalmon: "#ffa07a",
    lightseagreen: "#20b2aa",
    lightskyblue: "#87cefa",
    lightslategray: "#778899",
    lightslategrey: "#778899",
    lightsteelblue: "#b0c4de",
    lightyellow: "#ffffe0",
    lime: "#00ff00",
    limegreen: "#32cd32",
    linen: "#faf0e6",
    magenta: "#ff00ff",
    maroon: "#800000",
    mediumaquamarine: "#66cdaa",
    mediumblue: "#0000cd",
    mediumorchid: "#ba55d3",
    mediumpurple: "#9370db",
    mediumseagreen: "#3cb371",
    mediumslateblue: "#7b68ee",
    mediumspringgreen: "#00fa9a",
    mediumturquoise: "#48d1cc",
    mediumvioletred: "#c71585",
    midnightblue: "#191970",
    mintcream: "#f5fffa",
    mistyrose: "#ffe4e1",
    moccasin: "#ffe4b5",
    navajowhite: "#ffdead",
    navy: "#000080",
    oldlace: "#fdf5e6",
    olive: "#808000",
    olivedrab: "#6b8e23",
    orange: "#ffa500",
    orangered: "#ff4500",
    orchid: "#da70d6",
    palegoldenrod: "#eee8aa",
    palegreen: "#98fb98",
    paleturquoise: "#afeeee",
    palevioletred: "#db7093",
    papayawhip: "#ffefd5",
    peachpuff: "#ffdab9",
    peru: "#cd853f",
    pink: "#ffc0cb",
    plum: "#dda0dd",
    powderblue: "#b0e0e6",
    purple: "#800080",
    rebeccapurple: "#663399",
    red: "#ff0000",
    rosybrown: "#bc8f8f",
    royalblue: "#4169e1",
    saddlebrown: "#8b4513",
    salmon: "#fa8072",
    sandybrown: "#f4a460",
    seagreen: "#2e8b57",
    seashell: "#fff5ee",
    sienna: "#a0522d",
    silver: "#c0c0c0",
    skyblue: "#87ceeb",
    slateblue: "#6a5acd",
    slategray: "#708090",
    slategrey: "#708090",
    snow: "#fffafa",
    springgreen: "#00ff7f",
    tan: "#d2b48c",
    teal: "#008080",
    thistle: "#d8bfd8",
    transparent: "#00000000",
    turquoise: "#40e0d0",
    violet: "#ee82ee",
    wheat: "#f5deb3",
    white: "#ffffff",
    whitesmoke: "#f5f5f5",
    yellow: "#ffff00",
    yellowgreen: "#9acd32"
  },
  /* API */
  parse: (e) => {
    e = e.toLowerCase();
    const t = Li.colors[e];
    if (t)
      return Or.parse(t);
  },
  stringify: (e) => {
    const t = Or.stringify(e);
    for (const r in Li.colors)
      if (Li.colors[r] === t)
        return r;
  }
}, _i = {
  /* VARIABLES */
  re: /^rgba?\(\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e\d+)?(%?))\s*?(?:,|\s)\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e\d+)?(%?))\s*?(?:,|\s)\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e\d+)?(%?))(?:\s*?(?:,|\/)\s*?\+?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e\d+)?(%?)))?\s*?\)$/i,
  /* API */
  parse: (e) => {
    const t = e.charCodeAt(0);
    if (t !== 114 && t !== 82)
      return;
    const r = e.match(_i.re);
    if (!r)
      return;
    const [, i, n, a, o, s, l, c, h] = r;
    return wa.set({
      r: tt.channel.clamp.r(n ? parseFloat(i) * 2.55 : parseFloat(i)),
      g: tt.channel.clamp.g(o ? parseFloat(a) * 2.55 : parseFloat(a)),
      b: tt.channel.clamp.b(l ? parseFloat(s) * 2.55 : parseFloat(s)),
      a: c ? tt.channel.clamp.a(h ? parseFloat(c) / 100 : parseFloat(c)) : 1
    }, e);
  },
  stringify: (e) => {
    const { r: t, g: r, b: i, a: n } = e;
    return n < 1 ? `rgba(${tt.lang.round(t)}, ${tt.lang.round(r)}, ${tt.lang.round(i)}, ${tt.lang.round(n)})` : `rgb(${tt.lang.round(t)}, ${tt.lang.round(r)}, ${tt.lang.round(i)})`;
  }
}, ke = {
  /* VARIABLES */
  format: {
    keyword: Li,
    hex: Or,
    rgb: _i,
    rgba: _i,
    hsl: or,
    hsla: or
  },
  /* API */
  parse: (e) => {
    if (typeof e != "string")
      return e;
    const t = Or.parse(e) || _i.parse(e) || or.parse(e) || Li.parse(e);
    if (t)
      return t;
    throw new Error(`Unsupported color format: "${e}"`);
  },
  stringify: (e) => !e.changed && e.color ? e.color : e.type.is(Et.HSL) || e.data.r === void 0 ? or.stringify(e) : e.a < 1 || !Number.isInteger(e.r) || !Number.isInteger(e.g) || !Number.isInteger(e.b) ? _i.stringify(e) : Or.stringify(e)
}, Sh = (e, t) => {
  const r = ke.parse(e);
  for (const i in t)
    r[i] = tt.channel.clamp[i](t[i]);
  return ke.stringify(r);
}, Mi = (e, t, r = 0, i = 1) => {
  if (typeof e != "number")
    return Sh(e, { a: t });
  const n = wa.set({
    r: tt.channel.clamp.r(e),
    g: tt.channel.clamp.g(t),
    b: tt.channel.clamp.b(r),
    a: tt.channel.clamp.a(i)
  });
  return ke.stringify(n);
}, u0 = (e) => {
  const { r: t, g: r, b: i } = ke.parse(e), n = 0.2126 * tt.channel.toLinear(t) + 0.7152 * tt.channel.toLinear(r) + 0.0722 * tt.channel.toLinear(i);
  return tt.lang.round(n);
}, f0 = (e) => u0(e) >= 0.5, Zi = (e) => !f0(e), Th = (e, t, r) => {
  const i = ke.parse(e), n = i[t], a = tt.channel.clamp[t](n + r);
  return n !== a && (i[t] = a), ke.stringify(i);
}, q = (e, t) => Th(e, "l", t), Z = (e, t) => Th(e, "l", -t), k = (e, t) => {
  const r = ke.parse(e), i = {};
  for (const n in t)
    t[n] && (i[n] = r[n] + t[n]);
  return Sh(e, i);
}, p0 = (e, t, r = 50) => {
  const { r: i, g: n, b: a, a: o } = ke.parse(e), { r: s, g: l, b: c, a: h } = ke.parse(t), u = r / 100, p = u * 2 - 1, f = o - h, m = ((p * f === -1 ? p : (p + f) / (1 + p * f)) + 1) / 2, y = 1 - m, x = i * m + s * y, b = n * m + l * y, _ = a * m + c * y, S = o * u + h * (1 - u);
  return Mi(x, b, _, S);
}, D = (e, t = 100) => {
  const r = ke.parse(e);
  return r.r = 255 - r.r, r.g = 255 - r.g, r.b = 255 - r.b, p0(r, e, t);
};
/*! @license DOMPurify 3.3.3 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.3.3/LICENSE */
const {
  entries: Bh,
  setPrototypeOf: jl,
  isFrozen: d0,
  getPrototypeOf: g0,
  getOwnPropertyDescriptor: m0
} = Object;
let {
  freeze: Ht,
  seal: re,
  create: An
} = Object, {
  apply: Ss,
  construct: Ts
} = typeof Reflect < "u" && Reflect;
Ht || (Ht = function(t) {
  return t;
});
re || (re = function(t) {
  return t;
});
Ss || (Ss = function(t, r) {
  for (var i = arguments.length, n = new Array(i > 2 ? i - 2 : 0), a = 2; a < i; a++)
    n[a - 2] = arguments[a];
  return t.apply(r, n);
});
Ts || (Ts = function(t) {
  for (var r = arguments.length, i = new Array(r > 1 ? r - 1 : 0), n = 1; n < r; n++)
    i[n - 1] = arguments[n];
  return new t(...i);
});
const gn = jt(Array.prototype.forEach), y0 = jt(Array.prototype.lastIndexOf), Yl = jt(Array.prototype.pop), li = jt(Array.prototype.push), x0 = jt(Array.prototype.splice), Ln = jt(String.prototype.toLowerCase), ns = jt(String.prototype.toString), as = jt(String.prototype.match), ci = jt(String.prototype.replace), b0 = jt(String.prototype.indexOf), C0 = jt(String.prototype.trim), Kt = jt(Object.prototype.hasOwnProperty), Nt = jt(RegExp.prototype.test), hi = _0(TypeError);
function jt(e) {
  return function(t) {
    t instanceof RegExp && (t.lastIndex = 0);
    for (var r = arguments.length, i = new Array(r > 1 ? r - 1 : 0), n = 1; n < r; n++)
      i[n - 1] = arguments[n];
    return Ss(e, t, i);
  };
}
function _0(e) {
  return function() {
    for (var t = arguments.length, r = new Array(t), i = 0; i < t; i++)
      r[i] = arguments[i];
    return Ts(e, r);
  };
}
function it(e, t) {
  let r = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : Ln;
  jl && jl(e, null);
  let i = t.length;
  for (; i--; ) {
    let n = t[i];
    if (typeof n == "string") {
      const a = r(n);
      a !== n && (d0(t) || (t[i] = a), n = a);
    }
    e[n] = !0;
  }
  return e;
}
function w0(e) {
  for (let t = 0; t < e.length; t++)
    Kt(e, t) || (e[t] = null);
  return e;
}
function xe(e) {
  const t = An(null);
  for (const [r, i] of Bh(e))
    Kt(e, r) && (Array.isArray(i) ? t[r] = w0(i) : i && typeof i == "object" && i.constructor === Object ? t[r] = xe(i) : t[r] = i);
  return t;
}
function ui(e, t) {
  for (; e !== null; ) {
    const i = m0(e, t);
    if (i) {
      if (i.get)
        return jt(i.get);
      if (typeof i.value == "function")
        return jt(i.value);
    }
    e = g0(e);
  }
  function r() {
    return null;
  }
  return r;
}
const Ul = Ht(["a", "abbr", "acronym", "address", "area", "article", "aside", "audio", "b", "bdi", "bdo", "big", "blink", "blockquote", "body", "br", "button", "canvas", "caption", "center", "cite", "code", "col", "colgroup", "content", "data", "datalist", "dd", "decorator", "del", "details", "dfn", "dialog", "dir", "div", "dl", "dt", "element", "em", "fieldset", "figcaption", "figure", "font", "footer", "form", "h1", "h2", "h3", "h4", "h5", "h6", "head", "header", "hgroup", "hr", "html", "i", "img", "input", "ins", "kbd", "label", "legend", "li", "main", "map", "mark", "marquee", "menu", "menuitem", "meter", "nav", "nobr", "ol", "optgroup", "option", "output", "p", "picture", "pre", "progress", "q", "rp", "rt", "ruby", "s", "samp", "search", "section", "select", "shadow", "slot", "small", "source", "spacer", "span", "strike", "strong", "style", "sub", "summary", "sup", "table", "tbody", "td", "template", "textarea", "tfoot", "th", "thead", "time", "tr", "track", "tt", "u", "ul", "var", "video", "wbr"]), ss = Ht(["svg", "a", "altglyph", "altglyphdef", "altglyphitem", "animatecolor", "animatemotion", "animatetransform", "circle", "clippath", "defs", "desc", "ellipse", "enterkeyhint", "exportparts", "filter", "font", "g", "glyph", "glyphref", "hkern", "image", "inputmode", "line", "lineargradient", "marker", "mask", "metadata", "mpath", "part", "path", "pattern", "polygon", "polyline", "radialgradient", "rect", "stop", "style", "switch", "symbol", "text", "textpath", "title", "tref", "tspan", "view", "vkern"]), os = Ht(["feBlend", "feColorMatrix", "feComponentTransfer", "feComposite", "feConvolveMatrix", "feDiffuseLighting", "feDisplacementMap", "feDistantLight", "feDropShadow", "feFlood", "feFuncA", "feFuncB", "feFuncG", "feFuncR", "feGaussianBlur", "feImage", "feMerge", "feMergeNode", "feMorphology", "feOffset", "fePointLight", "feSpecularLighting", "feSpotLight", "feTile", "feTurbulence"]), k0 = Ht(["animate", "color-profile", "cursor", "discard", "font-face", "font-face-format", "font-face-name", "font-face-src", "font-face-uri", "foreignobject", "hatch", "hatchpath", "mesh", "meshgradient", "meshpatch", "meshrow", "missing-glyph", "script", "set", "solidcolor", "unknown", "use"]), ls = Ht(["math", "menclose", "merror", "mfenced", "mfrac", "mglyph", "mi", "mlabeledtr", "mmultiscripts", "mn", "mo", "mover", "mpadded", "mphantom", "mroot", "mrow", "ms", "mspace", "msqrt", "mstyle", "msub", "msup", "msubsup", "mtable", "mtd", "mtext", "mtr", "munder", "munderover", "mprescripts"]), v0 = Ht(["maction", "maligngroup", "malignmark", "mlongdiv", "mscarries", "mscarry", "msgroup", "mstack", "msline", "msrow", "semantics", "annotation", "annotation-xml", "mprescripts", "none"]), Gl = Ht(["#text"]), Xl = Ht(["accept", "action", "align", "alt", "autocapitalize", "autocomplete", "autopictureinpicture", "autoplay", "background", "bgcolor", "border", "capture", "cellpadding", "cellspacing", "checked", "cite", "class", "clear", "color", "cols", "colspan", "controls", "controlslist", "coords", "crossorigin", "datetime", "decoding", "default", "dir", "disabled", "disablepictureinpicture", "disableremoteplayback", "download", "draggable", "enctype", "enterkeyhint", "exportparts", "face", "for", "headers", "height", "hidden", "high", "href", "hreflang", "id", "inert", "inputmode", "integrity", "ismap", "kind", "label", "lang", "list", "loading", "loop", "low", "max", "maxlength", "media", "method", "min", "minlength", "multiple", "muted", "name", "nonce", "noshade", "novalidate", "nowrap", "open", "optimum", "part", "pattern", "placeholder", "playsinline", "popover", "popovertarget", "popovertargetaction", "poster", "preload", "pubdate", "radiogroup", "readonly", "rel", "required", "rev", "reversed", "role", "rows", "rowspan", "spellcheck", "scope", "selected", "shape", "size", "sizes", "slot", "span", "srclang", "start", "src", "srcset", "step", "style", "summary", "tabindex", "title", "translate", "type", "usemap", "valign", "value", "width", "wrap", "xmlns", "slot"]), cs = Ht(["accent-height", "accumulate", "additive", "alignment-baseline", "amplitude", "ascent", "attributename", "attributetype", "azimuth", "basefrequency", "baseline-shift", "begin", "bias", "by", "class", "clip", "clippathunits", "clip-path", "clip-rule", "color", "color-interpolation", "color-interpolation-filters", "color-profile", "color-rendering", "cx", "cy", "d", "dx", "dy", "diffuseconstant", "direction", "display", "divisor", "dur", "edgemode", "elevation", "end", "exponent", "fill", "fill-opacity", "fill-rule", "filter", "filterunits", "flood-color", "flood-opacity", "font-family", "font-size", "font-size-adjust", "font-stretch", "font-style", "font-variant", "font-weight", "fx", "fy", "g1", "g2", "glyph-name", "glyphref", "gradientunits", "gradienttransform", "height", "href", "id", "image-rendering", "in", "in2", "intercept", "k", "k1", "k2", "k3", "k4", "kerning", "keypoints", "keysplines", "keytimes", "lang", "lengthadjust", "letter-spacing", "kernelmatrix", "kernelunitlength", "lighting-color", "local", "marker-end", "marker-mid", "marker-start", "markerheight", "markerunits", "markerwidth", "maskcontentunits", "maskunits", "max", "mask", "mask-type", "media", "method", "mode", "min", "name", "numoctaves", "offset", "operator", "opacity", "order", "orient", "orientation", "origin", "overflow", "paint-order", "path", "pathlength", "patterncontentunits", "patterntransform", "patternunits", "points", "preservealpha", "preserveaspectratio", "primitiveunits", "r", "rx", "ry", "radius", "refx", "refy", "repeatcount", "repeatdur", "restart", "result", "rotate", "scale", "seed", "shape-rendering", "slope", "specularconstant", "specularexponent", "spreadmethod", "startoffset", "stddeviation", "stitchtiles", "stop-color", "stop-opacity", "stroke-dasharray", "stroke-dashoffset", "stroke-linecap", "stroke-linejoin", "stroke-miterlimit", "stroke-opacity", "stroke", "stroke-width", "style", "surfacescale", "systemlanguage", "tabindex", "tablevalues", "targetx", "targety", "transform", "transform-origin", "text-anchor", "text-decoration", "text-rendering", "textlength", "type", "u1", "u2", "unicode", "values", "viewbox", "visibility", "version", "vert-adv-y", "vert-origin-x", "vert-origin-y", "width", "word-spacing", "wrap", "writing-mode", "xchannelselector", "ychannelselector", "x", "x1", "x2", "xmlns", "y", "y1", "y2", "z", "zoomandpan"]), Vl = Ht(["accent", "accentunder", "align", "bevelled", "close", "columnsalign", "columnlines", "columnspan", "denomalign", "depth", "dir", "display", "displaystyle", "encoding", "fence", "frame", "height", "href", "id", "largeop", "length", "linethickness", "lspace", "lquote", "mathbackground", "mathcolor", "mathsize", "mathvariant", "maxsize", "minsize", "movablelimits", "notation", "numalign", "open", "rowalign", "rowlines", "rowspacing", "rowspan", "rspace", "rquote", "scriptlevel", "scriptminsize", "scriptsizemultiplier", "selection", "separator", "separators", "stretchy", "subscriptshift", "supscriptshift", "symmetric", "voffset", "width", "xmlns"]), mn = Ht(["xlink:href", "xml:id", "xlink:title", "xml:space", "xmlns:xlink"]), S0 = re(/\{\{[\w\W]*|[\w\W]*\}\}/gm), T0 = re(/<%[\w\W]*|[\w\W]*%>/gm), B0 = re(/\$\{[\w\W]*/gm), A0 = re(/^data-[\-\w.\u00B7-\uFFFF]+$/), L0 = re(/^aria-[\-\w]+$/), Ah = re(
  /^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp|matrix):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i
  // eslint-disable-line no-useless-escape
), M0 = re(/^(?:\w+script|data):/i), E0 = re(
  /[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g
  // eslint-disable-line no-control-regex
), Lh = re(/^html$/i), $0 = re(/^[a-z][.\w]*(-[.\w]+)+$/i);
var Zl = /* @__PURE__ */ Object.freeze({
  __proto__: null,
  ARIA_ATTR: L0,
  ATTR_WHITESPACE: E0,
  CUSTOM_ELEMENT: $0,
  DATA_ATTR: A0,
  DOCTYPE_NAME: Lh,
  ERB_EXPR: T0,
  IS_ALLOWED_URI: Ah,
  IS_SCRIPT_OR_DATA: M0,
  MUSTACHE_EXPR: S0,
  TMPLIT_EXPR: B0
});
const fi = {
  element: 1,
  text: 3,
  // Deprecated
  progressingInstruction: 7,
  comment: 8,
  document: 9
}, F0 = function() {
  return typeof window > "u" ? null : window;
}, O0 = function(t, r) {
  if (typeof t != "object" || typeof t.createPolicy != "function")
    return null;
  let i = null;
  const n = "data-tt-policy-suffix";
  r && r.hasAttribute(n) && (i = r.getAttribute(n));
  const a = "dompurify" + (i ? "#" + i : "");
  try {
    return t.createPolicy(a, {
      createHTML(o) {
        return o;
      },
      createScriptURL(o) {
        return o;
      }
    });
  } catch {
    return console.warn("TrustedTypes policy " + a + " could not be created."), null;
  }
}, Kl = function() {
  return {
    afterSanitizeAttributes: [],
    afterSanitizeElements: [],
    afterSanitizeShadowDOM: [],
    beforeSanitizeAttributes: [],
    beforeSanitizeElements: [],
    beforeSanitizeShadowDOM: [],
    uponSanitizeAttribute: [],
    uponSanitizeElement: [],
    uponSanitizeShadowNode: []
  };
};
function Mh() {
  let e = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : F0();
  const t = (V) => Mh(V);
  if (t.version = "3.3.3", t.removed = [], !e || !e.document || e.document.nodeType !== fi.document || !e.Element)
    return t.isSupported = !1, t;
  let {
    document: r
  } = e;
  const i = r, n = i.currentScript, {
    DocumentFragment: a,
    HTMLTemplateElement: o,
    Node: s,
    Element: l,
    NodeFilter: c,
    NamedNodeMap: h = e.NamedNodeMap || e.MozNamedAttrMap,
    HTMLFormElement: u,
    DOMParser: p,
    trustedTypes: f
  } = e, g = l.prototype, m = ui(g, "cloneNode"), y = ui(g, "remove"), x = ui(g, "nextSibling"), b = ui(g, "childNodes"), _ = ui(g, "parentNode");
  if (typeof o == "function") {
    const V = r.createElement("template");
    V.content && V.content.ownerDocument && (r = V.content.ownerDocument);
  }
  let S, v = "";
  const {
    implementation: C,
    createNodeIterator: T,
    createDocumentFragment: B,
    getElementsByTagName: F
  } = r, {
    importNode: P
  } = i;
  let L = Kl();
  t.isSupported = typeof Bh == "function" && typeof _ == "function" && C && C.createHTMLDocument !== void 0;
  const {
    MUSTACHE_EXPR: W,
    ERB_EXPR: M,
    TMPLIT_EXPR: E,
    DATA_ATTR: N,
    ARIA_ATTR: R,
    IS_SCRIPT_OR_DATA: O,
    ATTR_WHITESPACE: I,
    CUSTOM_ELEMENT: lt
  } = Zl;
  let {
    IS_ALLOWED_URI: xt
  } = Zl, rt = null;
  const ne = it({}, [...Ul, ...ss, ...os, ...ls, ...Gl]);
  let dt = null;
  const ge = it({}, [...Xl, ...cs, ...Vl, ...mn]);
  let ct = Object.seal(An(null, {
    tagNameCheck: {
      writable: !0,
      configurable: !1,
      enumerable: !0,
      value: null
    },
    attributeNameCheck: {
      writable: !0,
      configurable: !1,
      enumerable: !0,
      value: null
    },
    allowCustomizedBuiltInElements: {
      writable: !0,
      configurable: !1,
      enumerable: !0,
      value: !1
    }
  })), at = null, ut = null;
  const yt = Object.seal(An(null, {
    tagCheck: {
      writable: !0,
      configurable: !1,
      enumerable: !0,
      value: null
    },
    attributeCheck: {
      writable: !0,
      configurable: !1,
      enumerable: !0,
      value: null
    }
  }));
  let Lt = !0, ae = !0, se = !1, ai = !0, tr = !1, We = !0, er = !1, Xa = !1, Va = !1, vr = !1, cn = !1, hn = !1, Bl = !0, Al = !1;
  const Vm = "user-content-";
  let Za = !0, si = !1, Sr = {}, me = null;
  const Ka = it({}, ["annotation-xml", "audio", "colgroup", "desc", "foreignobject", "head", "iframe", "math", "mi", "mn", "mo", "ms", "mtext", "noembed", "noframes", "noscript", "plaintext", "script", "style", "svg", "template", "thead", "title", "video", "xmp"]);
  let Ll = null;
  const Ml = it({}, ["audio", "video", "img", "source", "image", "track"]);
  let Qa = null;
  const El = it({}, ["alt", "class", "for", "id", "label", "name", "pattern", "placeholder", "role", "summary", "title", "value", "style", "xmlns"]), un = "http://www.w3.org/1998/Math/MathML", fn = "http://www.w3.org/2000/svg", Be = "http://www.w3.org/1999/xhtml";
  let Tr = Be, Ja = !1, ts = null;
  const Zm = it({}, [un, fn, Be], ns);
  let pn = it({}, ["mi", "mo", "mn", "ms", "mtext"]), dn = it({}, ["annotation-xml"]);
  const Km = it({}, ["title", "style", "font", "a", "script"]);
  let oi = null;
  const Qm = ["application/xhtml+xml", "text/html"], Jm = "text/html";
  let wt = null, Br = null;
  const t0 = r.createElement("form"), $l = function(w) {
    return w instanceof RegExp || w instanceof Function;
  }, es = function() {
    let w = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
    if (!(Br && Br === w)) {
      if ((!w || typeof w != "object") && (w = {}), w = xe(w), oi = // eslint-disable-next-line unicorn/prefer-includes
      Qm.indexOf(w.PARSER_MEDIA_TYPE) === -1 ? Jm : w.PARSER_MEDIA_TYPE, wt = oi === "application/xhtml+xml" ? ns : Ln, rt = Kt(w, "ALLOWED_TAGS") ? it({}, w.ALLOWED_TAGS, wt) : ne, dt = Kt(w, "ALLOWED_ATTR") ? it({}, w.ALLOWED_ATTR, wt) : ge, ts = Kt(w, "ALLOWED_NAMESPACES") ? it({}, w.ALLOWED_NAMESPACES, ns) : Zm, Qa = Kt(w, "ADD_URI_SAFE_ATTR") ? it(xe(El), w.ADD_URI_SAFE_ATTR, wt) : El, Ll = Kt(w, "ADD_DATA_URI_TAGS") ? it(xe(Ml), w.ADD_DATA_URI_TAGS, wt) : Ml, me = Kt(w, "FORBID_CONTENTS") ? it({}, w.FORBID_CONTENTS, wt) : Ka, at = Kt(w, "FORBID_TAGS") ? it({}, w.FORBID_TAGS, wt) : xe({}), ut = Kt(w, "FORBID_ATTR") ? it({}, w.FORBID_ATTR, wt) : xe({}), Sr = Kt(w, "USE_PROFILES") ? w.USE_PROFILES : !1, Lt = w.ALLOW_ARIA_ATTR !== !1, ae = w.ALLOW_DATA_ATTR !== !1, se = w.ALLOW_UNKNOWN_PROTOCOLS || !1, ai = w.ALLOW_SELF_CLOSE_IN_ATTR !== !1, tr = w.SAFE_FOR_TEMPLATES || !1, We = w.SAFE_FOR_XML !== !1, er = w.WHOLE_DOCUMENT || !1, vr = w.RETURN_DOM || !1, cn = w.RETURN_DOM_FRAGMENT || !1, hn = w.RETURN_TRUSTED_TYPE || !1, Va = w.FORCE_BODY || !1, Bl = w.SANITIZE_DOM !== !1, Al = w.SANITIZE_NAMED_PROPS || !1, Za = w.KEEP_CONTENT !== !1, si = w.IN_PLACE || !1, xt = w.ALLOWED_URI_REGEXP || Ah, Tr = w.NAMESPACE || Be, pn = w.MATHML_TEXT_INTEGRATION_POINTS || pn, dn = w.HTML_INTEGRATION_POINTS || dn, ct = w.CUSTOM_ELEMENT_HANDLING || {}, w.CUSTOM_ELEMENT_HANDLING && $l(w.CUSTOM_ELEMENT_HANDLING.tagNameCheck) && (ct.tagNameCheck = w.CUSTOM_ELEMENT_HANDLING.tagNameCheck), w.CUSTOM_ELEMENT_HANDLING && $l(w.CUSTOM_ELEMENT_HANDLING.attributeNameCheck) && (ct.attributeNameCheck = w.CUSTOM_ELEMENT_HANDLING.attributeNameCheck), w.CUSTOM_ELEMENT_HANDLING && typeof w.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements == "boolean" && (ct.allowCustomizedBuiltInElements = w.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements), tr && (ae = !1), cn && (vr = !0), Sr && (rt = it({}, Gl), dt = An(null), Sr.html === !0 && (it(rt, Ul), it(dt, Xl)), Sr.svg === !0 && (it(rt, ss), it(dt, cs), it(dt, mn)), Sr.svgFilters === !0 && (it(rt, os), it(dt, cs), it(dt, mn)), Sr.mathMl === !0 && (it(rt, ls), it(dt, Vl), it(dt, mn))), Kt(w, "ADD_TAGS") || (yt.tagCheck = null), Kt(w, "ADD_ATTR") || (yt.attributeCheck = null), w.ADD_TAGS && (typeof w.ADD_TAGS == "function" ? yt.tagCheck = w.ADD_TAGS : (rt === ne && (rt = xe(rt)), it(rt, w.ADD_TAGS, wt))), w.ADD_ATTR && (typeof w.ADD_ATTR == "function" ? yt.attributeCheck = w.ADD_ATTR : (dt === ge && (dt = xe(dt)), it(dt, w.ADD_ATTR, wt))), w.ADD_URI_SAFE_ATTR && it(Qa, w.ADD_URI_SAFE_ATTR, wt), w.FORBID_CONTENTS && (me === Ka && (me = xe(me)), it(me, w.FORBID_CONTENTS, wt)), w.ADD_FORBID_CONTENTS && (me === Ka && (me = xe(me)), it(me, w.ADD_FORBID_CONTENTS, wt)), Za && (rt["#text"] = !0), er && it(rt, ["html", "head", "body"]), rt.table && (it(rt, ["tbody"]), delete at.tbody), w.TRUSTED_TYPES_POLICY) {
        if (typeof w.TRUSTED_TYPES_POLICY.createHTML != "function")
          throw hi('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');
        if (typeof w.TRUSTED_TYPES_POLICY.createScriptURL != "function")
          throw hi('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');
        S = w.TRUSTED_TYPES_POLICY, v = S.createHTML("");
      } else
        S === void 0 && (S = O0(f, n)), S !== null && typeof v == "string" && (v = S.createHTML(""));
      Ht && Ht(w), Br = w;
    }
  }, Fl = it({}, [...ss, ...os, ...k0]), Ol = it({}, [...ls, ...v0]), e0 = function(w) {
    let $ = _(w);
    (!$ || !$.tagName) && ($ = {
      namespaceURI: Tr,
      tagName: "template"
    });
    const U = Ln(w.tagName), gt = Ln($.tagName);
    return ts[w.namespaceURI] ? w.namespaceURI === fn ? $.namespaceURI === Be ? U === "svg" : $.namespaceURI === un ? U === "svg" && (gt === "annotation-xml" || pn[gt]) : !!Fl[U] : w.namespaceURI === un ? $.namespaceURI === Be ? U === "math" : $.namespaceURI === fn ? U === "math" && dn[gt] : !!Ol[U] : w.namespaceURI === Be ? $.namespaceURI === fn && !dn[gt] || $.namespaceURI === un && !pn[gt] ? !1 : !Ol[U] && (Km[U] || !Fl[U]) : !!(oi === "application/xhtml+xml" && ts[w.namespaceURI]) : !1;
  }, ye = function(w) {
    li(t.removed, {
      element: w
    });
    try {
      _(w).removeChild(w);
    } catch {
      y(w);
    }
  }, rr = function(w, $) {
    try {
      li(t.removed, {
        attribute: $.getAttributeNode(w),
        from: $
      });
    } catch {
      li(t.removed, {
        attribute: null,
        from: $
      });
    }
    if ($.removeAttribute(w), w === "is")
      if (vr || cn)
        try {
          ye($);
        } catch {
        }
      else
        try {
          $.setAttribute(w, "");
        } catch {
        }
  }, Rl = function(w) {
    let $ = null, U = null;
    if (Va)
      w = "<remove></remove>" + w;
    else {
      const Ct = as(w, /^[\r\n\t ]+/);
      U = Ct && Ct[0];
    }
    oi === "application/xhtml+xml" && Tr === Be && (w = '<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>' + w + "</body></html>");
    const gt = S ? S.createHTML(w) : w;
    if (Tr === Be)
      try {
        $ = new p().parseFromString(gt, oi);
      } catch {
      }
    if (!$ || !$.documentElement) {
      $ = C.createDocument(Tr, "template", null);
      try {
        $.documentElement.innerHTML = Ja ? v : gt;
      } catch {
      }
    }
    const Mt = $.body || $.documentElement;
    return w && U && Mt.insertBefore(r.createTextNode(U), Mt.childNodes[0] || null), Tr === Be ? F.call($, er ? "html" : "body")[0] : er ? $.documentElement : Mt;
  }, Dl = function(w) {
    return T.call(
      w.ownerDocument || w,
      w,
      // eslint-disable-next-line no-bitwise
      c.SHOW_ELEMENT | c.SHOW_COMMENT | c.SHOW_TEXT | c.SHOW_PROCESSING_INSTRUCTION | c.SHOW_CDATA_SECTION,
      null
    );
  }, rs = function(w) {
    return w instanceof u && (typeof w.nodeName != "string" || typeof w.textContent != "string" || typeof w.removeChild != "function" || !(w.attributes instanceof h) || typeof w.removeAttribute != "function" || typeof w.setAttribute != "function" || typeof w.namespaceURI != "string" || typeof w.insertBefore != "function" || typeof w.hasChildNodes != "function");
  }, Il = function(w) {
    return typeof s == "function" && w instanceof s;
  };
  function Ae(V, w, $) {
    gn(V, (U) => {
      U.call(t, w, $, Br);
    });
  }
  const Pl = function(w) {
    let $ = null;
    if (Ae(L.beforeSanitizeElements, w, null), rs(w))
      return ye(w), !0;
    const U = wt(w.nodeName);
    if (Ae(L.uponSanitizeElement, w, {
      tagName: U,
      allowedTags: rt
    }), We && w.hasChildNodes() && !Il(w.firstElementChild) && Nt(/<[/\w!]/g, w.innerHTML) && Nt(/<[/\w!]/g, w.textContent) || w.nodeType === fi.progressingInstruction || We && w.nodeType === fi.comment && Nt(/<[/\w]/g, w.data))
      return ye(w), !0;
    if (!(yt.tagCheck instanceof Function && yt.tagCheck(U)) && (!rt[U] || at[U])) {
      if (!at[U] && zl(U) && (ct.tagNameCheck instanceof RegExp && Nt(ct.tagNameCheck, U) || ct.tagNameCheck instanceof Function && ct.tagNameCheck(U)))
        return !1;
      if (Za && !me[U]) {
        const gt = _(w) || w.parentNode, Mt = b(w) || w.childNodes;
        if (Mt && gt) {
          const Ct = Mt.length;
          for (let Yt = Ct - 1; Yt >= 0; --Yt) {
            const Le = m(Mt[Yt], !0);
            Le.__removalCount = (w.__removalCount || 0) + 1, gt.insertBefore(Le, x(w));
          }
        }
      }
      return ye(w), !0;
    }
    return w instanceof l && !e0(w) || (U === "noscript" || U === "noembed" || U === "noframes") && Nt(/<\/no(script|embed|frames)/i, w.innerHTML) ? (ye(w), !0) : (tr && w.nodeType === fi.text && ($ = w.textContent, gn([W, M, E], (gt) => {
      $ = ci($, gt, " ");
    }), w.textContent !== $ && (li(t.removed, {
      element: w.cloneNode()
    }), w.textContent = $)), Ae(L.afterSanitizeElements, w, null), !1);
  }, Nl = function(w, $, U) {
    if (ut[$] || Bl && ($ === "id" || $ === "name") && (U in r || U in t0))
      return !1;
    if (!(ae && !ut[$] && Nt(N, $))) {
      if (!(Lt && Nt(R, $))) {
        if (!(yt.attributeCheck instanceof Function && yt.attributeCheck($, w))) {
          if (!dt[$] || ut[$]) {
            if (
              // First condition does a very basic check if a) it's basically a valid custom element tagname AND
              // b) if the tagName passes whatever the user has configured for CUSTOM_ELEMENT_HANDLING.tagNameCheck
              // and c) if the attribute name passes whatever the user has configured for CUSTOM_ELEMENT_HANDLING.attributeNameCheck
              !(zl(w) && (ct.tagNameCheck instanceof RegExp && Nt(ct.tagNameCheck, w) || ct.tagNameCheck instanceof Function && ct.tagNameCheck(w)) && (ct.attributeNameCheck instanceof RegExp && Nt(ct.attributeNameCheck, $) || ct.attributeNameCheck instanceof Function && ct.attributeNameCheck($, w)) || // Alternative, second condition checks if it's an `is`-attribute, AND
              // the value passes whatever the user has configured for CUSTOM_ELEMENT_HANDLING.tagNameCheck
              $ === "is" && ct.allowCustomizedBuiltInElements && (ct.tagNameCheck instanceof RegExp && Nt(ct.tagNameCheck, U) || ct.tagNameCheck instanceof Function && ct.tagNameCheck(U)))
            ) return !1;
          } else if (!Qa[$]) {
            if (!Nt(xt, ci(U, I, ""))) {
              if (!(($ === "src" || $ === "xlink:href" || $ === "href") && w !== "script" && b0(U, "data:") === 0 && Ll[w])) {
                if (!(se && !Nt(O, ci(U, I, "")))) {
                  if (U)
                    return !1;
                }
              }
            }
          }
        }
      }
    }
    return !0;
  }, zl = function(w) {
    return w !== "annotation-xml" && as(w, lt);
  }, Wl = function(w) {
    Ae(L.beforeSanitizeAttributes, w, null);
    const {
      attributes: $
    } = w;
    if (!$ || rs(w))
      return;
    const U = {
      attrName: "",
      attrValue: "",
      keepAttr: !0,
      allowedAttributes: dt,
      forceKeepAttr: void 0
    };
    let gt = $.length;
    for (; gt--; ) {
      const Mt = $[gt], {
        name: Ct,
        namespaceURI: Yt,
        value: Le
      } = Mt, Ar = wt(Ct), is = Le;
      let Tt = Ct === "value" ? is : C0(is);
      if (U.attrName = Ar, U.attrValue = Tt, U.keepAttr = !0, U.forceKeepAttr = void 0, Ae(L.uponSanitizeAttribute, w, U), Tt = U.attrValue, Al && (Ar === "id" || Ar === "name") && (rr(Ct, w), Tt = Vm + Tt), We && Nt(/((--!?|])>)|<\/(style|script|title|xmp|textarea|noscript|iframe|noembed|noframes)/i, Tt)) {
        rr(Ct, w);
        continue;
      }
      if (Ar === "attributename" && as(Tt, "href")) {
        rr(Ct, w);
        continue;
      }
      if (U.forceKeepAttr)
        continue;
      if (!U.keepAttr) {
        rr(Ct, w);
        continue;
      }
      if (!ai && Nt(/\/>/i, Tt)) {
        rr(Ct, w);
        continue;
      }
      tr && gn([W, M, E], (Hl) => {
        Tt = ci(Tt, Hl, " ");
      });
      const ql = wt(w.nodeName);
      if (!Nl(ql, Ar, Tt)) {
        rr(Ct, w);
        continue;
      }
      if (S && typeof f == "object" && typeof f.getAttributeType == "function" && !Yt)
        switch (f.getAttributeType(ql, Ar)) {
          case "TrustedHTML": {
            Tt = S.createHTML(Tt);
            break;
          }
          case "TrustedScriptURL": {
            Tt = S.createScriptURL(Tt);
            break;
          }
        }
      if (Tt !== is)
        try {
          Yt ? w.setAttributeNS(Yt, Ct, Tt) : w.setAttribute(Ct, Tt), rs(w) ? ye(w) : Yl(t.removed);
        } catch {
          rr(Ct, w);
        }
    }
    Ae(L.afterSanitizeAttributes, w, null);
  }, r0 = function V(w) {
    let $ = null;
    const U = Dl(w);
    for (Ae(L.beforeSanitizeShadowDOM, w, null); $ = U.nextNode(); )
      Ae(L.uponSanitizeShadowNode, $, null), Pl($), Wl($), $.content instanceof a && V($.content);
    Ae(L.afterSanitizeShadowDOM, w, null);
  };
  return t.sanitize = function(V) {
    let w = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, $ = null, U = null, gt = null, Mt = null;
    if (Ja = !V, Ja && (V = "<!-->"), typeof V != "string" && !Il(V))
      if (typeof V.toString == "function") {
        if (V = V.toString(), typeof V != "string")
          throw hi("dirty is not a string, aborting");
      } else
        throw hi("toString is not a function");
    if (!t.isSupported)
      return V;
    if (Xa || es(w), t.removed = [], typeof V == "string" && (si = !1), si) {
      if (V.nodeName) {
        const Le = wt(V.nodeName);
        if (!rt[Le] || at[Le])
          throw hi("root node is forbidden and cannot be sanitized in-place");
      }
    } else if (V instanceof s)
      $ = Rl("<!---->"), U = $.ownerDocument.importNode(V, !0), U.nodeType === fi.element && U.nodeName === "BODY" || U.nodeName === "HTML" ? $ = U : $.appendChild(U);
    else {
      if (!vr && !tr && !er && // eslint-disable-next-line unicorn/prefer-includes
      V.indexOf("<") === -1)
        return S && hn ? S.createHTML(V) : V;
      if ($ = Rl(V), !$)
        return vr ? null : hn ? v : "";
    }
    $ && Va && ye($.firstChild);
    const Ct = Dl(si ? V : $);
    for (; gt = Ct.nextNode(); )
      Pl(gt), Wl(gt), gt.content instanceof a && r0(gt.content);
    if (si)
      return V;
    if (vr) {
      if (cn)
        for (Mt = B.call($.ownerDocument); $.firstChild; )
          Mt.appendChild($.firstChild);
      else
        Mt = $;
      return (dt.shadowroot || dt.shadowrootmode) && (Mt = P.call(i, Mt, !0)), Mt;
    }
    let Yt = er ? $.outerHTML : $.innerHTML;
    return er && rt["!doctype"] && $.ownerDocument && $.ownerDocument.doctype && $.ownerDocument.doctype.name && Nt(Lh, $.ownerDocument.doctype.name) && (Yt = "<!DOCTYPE " + $.ownerDocument.doctype.name + `>
` + Yt), tr && gn([W, M, E], (Le) => {
      Yt = ci(Yt, Le, " ");
    }), S && hn ? S.createHTML(Yt) : Yt;
  }, t.setConfig = function() {
    let V = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
    es(V), Xa = !0;
  }, t.clearConfig = function() {
    Br = null, Xa = !1;
  }, t.isValidAttribute = function(V, w, $) {
    Br || es({});
    const U = wt(V), gt = wt(w);
    return Nl(U, gt, $);
  }, t.addHook = function(V, w) {
    typeof w == "function" && li(L[V], w);
  }, t.removeHook = function(V, w) {
    if (w !== void 0) {
      const $ = y0(L[V], w);
      return $ === -1 ? void 0 : x0(L[V], $, 1)[0];
    }
    return Yl(L[V]);
  }, t.removeHooks = function(V) {
    L[V] = [];
  }, t.removeAllHooks = function() {
    L = Kl();
  }, t;
}
var Yr = Mh(), Eh = /^-{3}\s*[\n\r](.*?)[\n\r]-{3}\s*[\n\r]+/s, Ei = /%{2}{\s*(?:(\w+)\s*:|(\w+))\s*(?:(\w+)|((?:(?!}%{2}).|\r?\n)*))?\s*(?:}%{2})?/gi, R0 = /\s*%%.*\n/gm, Ir, $h = (Ir = class extends Error {
  constructor(t) {
    super(t), this.name = "UnknownDiagramError";
  }
}, d(Ir, "UnknownDiagramError"), Ir), pr = {}, To = /* @__PURE__ */ d(function(e, t) {
  e = e.replace(Eh, "").replace(Ei, "").replace(R0, `
`);
  for (const [r, { detector: i }] of Object.entries(pr))
    if (i(e, t))
      return r;
  throw new $h(
    `No diagram type detected matching given configuration for text: ${e}`
  );
}, "detectType"), Bs = /* @__PURE__ */ d((...e) => {
  for (const { id: t, detector: r, loader: i } of e)
    Fh(t, r, i);
}, "registerLazyLoadedDiagrams"), Fh = /* @__PURE__ */ d((e, t, r) => {
  pr[e] && A.warn(`Detector with key ${e} already exists. Overwriting.`), pr[e] = { detector: t, loader: r }, A.debug(`Detector with key ${e} added${r ? " with loader" : ""}`);
}, "addDetector"), D0 = /* @__PURE__ */ d((e) => pr[e].loader, "getDiagramLoader"), As = /* @__PURE__ */ d((e, t, { depth: r = 2, clobber: i = !1 } = {}) => {
  const n = { depth: r, clobber: i };
  return Array.isArray(t) && !Array.isArray(e) ? (t.forEach((a) => As(e, a, n)), e) : Array.isArray(t) && Array.isArray(e) ? (t.forEach((a) => {
    e.includes(a) || e.push(a);
  }), e) : e === void 0 || r <= 0 ? e != null && typeof e == "object" && typeof t == "object" ? Object.assign(e, t) : t : (t !== void 0 && typeof e == "object" && typeof t == "object" && Object.keys(t).forEach((a) => {
    typeof t[a] == "object" && t[a] !== null && (e[a] === void 0 || typeof e[a] == "object") ? (e[a] === void 0 && (e[a] = Array.isArray(t[a]) ? [] : {}), e[a] = As(e[a], t[a], { depth: r - 1, clobber: i })) : (i || typeof e[a] != "object" && typeof t[a] != "object") && (e[a] = t[a]);
  }), e);
}, "assignWithDepth"), kt = As, ka = "#ffffff", va = "#f2f2f2", zt = /* @__PURE__ */ d((e, t) => t ? k(e, { s: -40, l: 10 }) : k(e, { s: -40, l: -10 }), "mkBorder"), Pr, I0 = (Pr = class {
  constructor() {
    this.background = "#f4f4f4", this.primaryColor = "#fff4dd", this.noteBkgColor = "#fff5ad", this.noteTextColor = "#333", this.THEME_COLOR_LIMIT = 12, this.fontFamily = '"trebuchet ms", verdana, arial, sans-serif', this.fontSize = "16px";
  }
  updateColors() {
    var r, i, n, a, o, s, l, c, h, u, p, f, g, m, y, x, b, _, S, v, C;
    if (this.primaryTextColor = this.primaryTextColor || (this.darkMode ? "#eee" : "#333"), this.secondaryColor = this.secondaryColor || k(this.primaryColor, { h: -120 }), this.tertiaryColor = this.tertiaryColor || k(this.primaryColor, { h: 180, l: 5 }), this.primaryBorderColor = this.primaryBorderColor || zt(this.primaryColor, this.darkMode), this.secondaryBorderColor = this.secondaryBorderColor || zt(this.secondaryColor, this.darkMode), this.tertiaryBorderColor = this.tertiaryBorderColor || zt(this.tertiaryColor, this.darkMode), this.noteBorderColor = this.noteBorderColor || zt(this.noteBkgColor, this.darkMode), this.noteBkgColor = this.noteBkgColor || "#fff5ad", this.noteTextColor = this.noteTextColor || "#333", this.secondaryTextColor = this.secondaryTextColor || D(this.secondaryColor), this.tertiaryTextColor = this.tertiaryTextColor || D(this.tertiaryColor), this.lineColor = this.lineColor || D(this.background), this.arrowheadColor = this.arrowheadColor || D(this.background), this.textColor = this.textColor || this.primaryTextColor, this.border2 = this.border2 || this.tertiaryBorderColor, this.nodeBkg = this.nodeBkg || this.primaryColor, this.mainBkg = this.mainBkg || this.primaryColor, this.nodeBorder = this.nodeBorder || this.primaryBorderColor, this.clusterBkg = this.clusterBkg || this.tertiaryColor, this.clusterBorder = this.clusterBorder || this.tertiaryBorderColor, this.defaultLinkColor = this.defaultLinkColor || this.lineColor, this.titleColor = this.titleColor || this.tertiaryTextColor, this.edgeLabelBackground = this.edgeLabelBackground || (this.darkMode ? Z(this.secondaryColor, 30) : this.secondaryColor), this.nodeTextColor = this.nodeTextColor || this.primaryTextColor, this.actorBorder = this.actorBorder || this.primaryBorderColor, this.actorBkg = this.actorBkg || this.mainBkg, this.actorTextColor = this.actorTextColor || this.primaryTextColor, this.actorLineColor = this.actorLineColor || this.actorBorder, this.labelBoxBkgColor = this.labelBoxBkgColor || this.actorBkg, this.signalColor = this.signalColor || this.textColor, this.signalTextColor = this.signalTextColor || this.textColor, this.labelBoxBorderColor = this.labelBoxBorderColor || this.actorBorder, this.labelTextColor = this.labelTextColor || this.actorTextColor, this.loopTextColor = this.loopTextColor || this.actorTextColor, this.activationBorderColor = this.activationBorderColor || Z(this.secondaryColor, 10), this.activationBkgColor = this.activationBkgColor || this.secondaryColor, this.sequenceNumberColor = this.sequenceNumberColor || D(this.lineColor), this.sectionBkgColor = this.sectionBkgColor || this.tertiaryColor, this.altSectionBkgColor = this.altSectionBkgColor || "white", this.sectionBkgColor = this.sectionBkgColor || this.secondaryColor, this.sectionBkgColor2 = this.sectionBkgColor2 || this.primaryColor, this.excludeBkgColor = this.excludeBkgColor || "#eeeeee", this.taskBorderColor = this.taskBorderColor || this.primaryBorderColor, this.taskBkgColor = this.taskBkgColor || this.primaryColor, this.activeTaskBorderColor = this.activeTaskBorderColor || this.primaryColor, this.activeTaskBkgColor = this.activeTaskBkgColor || q(this.primaryColor, 23), this.gridColor = this.gridColor || "lightgrey", this.doneTaskBkgColor = this.doneTaskBkgColor || "lightgrey", this.doneTaskBorderColor = this.doneTaskBorderColor || "grey", this.critBorderColor = this.critBorderColor || "#ff8888", this.critBkgColor = this.critBkgColor || "red", this.todayLineColor = this.todayLineColor || "red", this.vertLineColor = this.vertLineColor || "navy", this.taskTextColor = this.taskTextColor || this.textColor, this.taskTextOutsideColor = this.taskTextOutsideColor || this.textColor, this.taskTextLightColor = this.taskTextLightColor || this.textColor, this.taskTextColor = this.taskTextColor || this.primaryTextColor, this.taskTextDarkColor = this.taskTextDarkColor || this.textColor, this.taskTextClickableColor = this.taskTextClickableColor || "#003163", this.personBorder = this.personBorder || this.primaryBorderColor, this.personBkg = this.personBkg || this.mainBkg, this.darkMode ? (this.rowOdd = this.rowOdd || Z(this.mainBkg, 5) || "#ffffff", this.rowEven = this.rowEven || Z(this.mainBkg, 10)) : (this.rowOdd = this.rowOdd || q(this.mainBkg, 75) || "#ffffff", this.rowEven = this.rowEven || q(this.mainBkg, 5)), this.transitionColor = this.transitionColor || this.lineColor, this.transitionLabelColor = this.transitionLabelColor || this.textColor, this.stateLabelColor = this.stateLabelColor || this.stateBkg || this.primaryTextColor, this.stateBkg = this.stateBkg || this.mainBkg, this.labelBackgroundColor = this.labelBackgroundColor || this.stateBkg, this.compositeBackground = this.compositeBackground || this.background || this.tertiaryColor, this.altBackground = this.altBackground || this.tertiaryColor, this.compositeTitleBackground = this.compositeTitleBackground || this.mainBkg, this.compositeBorder = this.compositeBorder || this.nodeBorder, this.innerEndBackground = this.nodeBorder, this.errorBkgColor = this.errorBkgColor || this.tertiaryColor, this.errorTextColor = this.errorTextColor || this.tertiaryTextColor, this.transitionColor = this.transitionColor || this.lineColor, this.specialStateColor = this.lineColor, this.cScale0 = this.cScale0 || this.primaryColor, this.cScale1 = this.cScale1 || this.secondaryColor, this.cScale2 = this.cScale2 || this.tertiaryColor, this.cScale3 = this.cScale3 || k(this.primaryColor, { h: 30 }), this.cScale4 = this.cScale4 || k(this.primaryColor, { h: 60 }), this.cScale5 = this.cScale5 || k(this.primaryColor, { h: 90 }), this.cScale6 = this.cScale6 || k(this.primaryColor, { h: 120 }), this.cScale7 = this.cScale7 || k(this.primaryColor, { h: 150 }), this.cScale8 = this.cScale8 || k(this.primaryColor, { h: 210, l: 150 }), this.cScale9 = this.cScale9 || k(this.primaryColor, { h: 270 }), this.cScale10 = this.cScale10 || k(this.primaryColor, { h: 300 }), this.cScale11 = this.cScale11 || k(this.primaryColor, { h: 330 }), this.darkMode)
      for (let T = 0; T < this.THEME_COLOR_LIMIT; T++)
        this["cScale" + T] = Z(this["cScale" + T], 75);
    else
      for (let T = 0; T < this.THEME_COLOR_LIMIT; T++)
        this["cScale" + T] = Z(this["cScale" + T], 25);
    for (let T = 0; T < this.THEME_COLOR_LIMIT; T++)
      this["cScaleInv" + T] = this["cScaleInv" + T] || D(this["cScale" + T]);
    for (let T = 0; T < this.THEME_COLOR_LIMIT; T++)
      this.darkMode ? this["cScalePeer" + T] = this["cScalePeer" + T] || q(this["cScale" + T], 10) : this["cScalePeer" + T] = this["cScalePeer" + T] || Z(this["cScale" + T], 10);
    this.scaleLabelColor = this.scaleLabelColor || this.labelTextColor;
    for (let T = 0; T < this.THEME_COLOR_LIMIT; T++)
      this["cScaleLabel" + T] = this["cScaleLabel" + T] || this.scaleLabelColor;
    const t = this.darkMode ? -4 : -1;
    for (let T = 0; T < 5; T++)
      this["surface" + T] = this["surface" + T] || k(this.mainBkg, { h: 180, s: -15, l: t * (5 + T * 3) }), this["surfacePeer" + T] = this["surfacePeer" + T] || k(this.mainBkg, { h: 180, s: -15, l: t * (8 + T * 3) });
    this.classText = this.classText || this.textColor, this.fillType0 = this.fillType0 || this.primaryColor, this.fillType1 = this.fillType1 || this.secondaryColor, this.fillType2 = this.fillType2 || k(this.primaryColor, { h: 64 }), this.fillType3 = this.fillType3 || k(this.secondaryColor, { h: 64 }), this.fillType4 = this.fillType4 || k(this.primaryColor, { h: -64 }), this.fillType5 = this.fillType5 || k(this.secondaryColor, { h: -64 }), this.fillType6 = this.fillType6 || k(this.primaryColor, { h: 128 }), this.fillType7 = this.fillType7 || k(this.secondaryColor, { h: 128 }), this.pie1 = this.pie1 || this.primaryColor, this.pie2 = this.pie2 || this.secondaryColor, this.pie3 = this.pie3 || this.tertiaryColor, this.pie4 = this.pie4 || k(this.primaryColor, { l: -10 }), this.pie5 = this.pie5 || k(this.secondaryColor, { l: -10 }), this.pie6 = this.pie6 || k(this.tertiaryColor, { l: -10 }), this.pie7 = this.pie7 || k(this.primaryColor, { h: 60, l: -10 }), this.pie8 = this.pie8 || k(this.primaryColor, { h: -60, l: -10 }), this.pie9 = this.pie9 || k(this.primaryColor, { h: 120, l: 0 }), this.pie10 = this.pie10 || k(this.primaryColor, { h: 60, l: -20 }), this.pie11 = this.pie11 || k(this.primaryColor, { h: -60, l: -20 }), this.pie12 = this.pie12 || k(this.primaryColor, { h: 120, l: -10 }), this.pieTitleTextSize = this.pieTitleTextSize || "25px", this.pieTitleTextColor = this.pieTitleTextColor || this.taskTextDarkColor, this.pieSectionTextSize = this.pieSectionTextSize || "17px", this.pieSectionTextColor = this.pieSectionTextColor || this.textColor, this.pieLegendTextSize = this.pieLegendTextSize || "17px", this.pieLegendTextColor = this.pieLegendTextColor || this.taskTextDarkColor, this.pieStrokeColor = this.pieStrokeColor || "black", this.pieStrokeWidth = this.pieStrokeWidth || "2px", this.pieOuterStrokeWidth = this.pieOuterStrokeWidth || "2px", this.pieOuterStrokeColor = this.pieOuterStrokeColor || "black", this.pieOpacity = this.pieOpacity || "0.7", this.venn1 = this.venn1 ?? k(this.primaryColor, { l: -30 }), this.venn2 = this.venn2 ?? k(this.secondaryColor, { l: -30 }), this.venn3 = this.venn3 ?? k(this.tertiaryColor, { l: -30 }), this.venn4 = this.venn4 ?? k(this.primaryColor, { h: 60, l: -30 }), this.venn5 = this.venn5 ?? k(this.primaryColor, { h: -60, l: -30 }), this.venn6 = this.venn6 ?? k(this.secondaryColor, { h: 60, l: -30 }), this.venn7 = this.venn7 ?? k(this.primaryColor, { h: 120, l: -30 }), this.venn8 = this.venn8 ?? k(this.secondaryColor, { h: 120, l: -30 }), this.vennTitleTextColor = this.vennTitleTextColor ?? this.titleColor, this.vennSetTextColor = this.vennSetTextColor ?? this.textColor, this.radar = {
      axisColor: ((r = this.radar) == null ? void 0 : r.axisColor) || this.lineColor,
      axisStrokeWidth: ((i = this.radar) == null ? void 0 : i.axisStrokeWidth) || 2,
      axisLabelFontSize: ((n = this.radar) == null ? void 0 : n.axisLabelFontSize) || 12,
      curveOpacity: ((a = this.radar) == null ? void 0 : a.curveOpacity) || 0.5,
      curveStrokeWidth: ((o = this.radar) == null ? void 0 : o.curveStrokeWidth) || 2,
      graticuleColor: ((s = this.radar) == null ? void 0 : s.graticuleColor) || "#DEDEDE",
      graticuleStrokeWidth: ((l = this.radar) == null ? void 0 : l.graticuleStrokeWidth) || 1,
      graticuleOpacity: ((c = this.radar) == null ? void 0 : c.graticuleOpacity) || 0.3,
      legendBoxSize: ((h = this.radar) == null ? void 0 : h.legendBoxSize) || 12,
      legendFontSize: ((u = this.radar) == null ? void 0 : u.legendFontSize) || 12
    }, this.archEdgeColor = this.archEdgeColor || "#777", this.archEdgeArrowColor = this.archEdgeArrowColor || "#777", this.archEdgeWidth = this.archEdgeWidth || "3", this.archGroupBorderColor = this.archGroupBorderColor || "#000", this.archGroupBorderWidth = this.archGroupBorderWidth || "2px", this.quadrant1Fill = this.quadrant1Fill || this.primaryColor, this.quadrant2Fill = this.quadrant2Fill || k(this.primaryColor, { r: 5, g: 5, b: 5 }), this.quadrant3Fill = this.quadrant3Fill || k(this.primaryColor, { r: 10, g: 10, b: 10 }), this.quadrant4Fill = this.quadrant4Fill || k(this.primaryColor, { r: 15, g: 15, b: 15 }), this.quadrant1TextFill = this.quadrant1TextFill || this.primaryTextColor, this.quadrant2TextFill = this.quadrant2TextFill || k(this.primaryTextColor, { r: -5, g: -5, b: -5 }), this.quadrant3TextFill = this.quadrant3TextFill || k(this.primaryTextColor, { r: -10, g: -10, b: -10 }), this.quadrant4TextFill = this.quadrant4TextFill || k(this.primaryTextColor, { r: -15, g: -15, b: -15 }), this.quadrantPointFill = this.quadrantPointFill || Zi(this.quadrant1Fill) ? q(this.quadrant1Fill) : Z(this.quadrant1Fill), this.quadrantPointTextFill = this.quadrantPointTextFill || this.primaryTextColor, this.quadrantXAxisTextFill = this.quadrantXAxisTextFill || this.primaryTextColor, this.quadrantYAxisTextFill = this.quadrantYAxisTextFill || this.primaryTextColor, this.quadrantInternalBorderStrokeFill = this.quadrantInternalBorderStrokeFill || this.primaryBorderColor, this.quadrantExternalBorderStrokeFill = this.quadrantExternalBorderStrokeFill || this.primaryBorderColor, this.quadrantTitleFill = this.quadrantTitleFill || this.primaryTextColor, this.xyChart = {
      backgroundColor: ((p = this.xyChart) == null ? void 0 : p.backgroundColor) || this.background,
      titleColor: ((f = this.xyChart) == null ? void 0 : f.titleColor) || this.primaryTextColor,
      xAxisTitleColor: ((g = this.xyChart) == null ? void 0 : g.xAxisTitleColor) || this.primaryTextColor,
      xAxisLabelColor: ((m = this.xyChart) == null ? void 0 : m.xAxisLabelColor) || this.primaryTextColor,
      xAxisTickColor: ((y = this.xyChart) == null ? void 0 : y.xAxisTickColor) || this.primaryTextColor,
      xAxisLineColor: ((x = this.xyChart) == null ? void 0 : x.xAxisLineColor) || this.primaryTextColor,
      yAxisTitleColor: ((b = this.xyChart) == null ? void 0 : b.yAxisTitleColor) || this.primaryTextColor,
      yAxisLabelColor: ((_ = this.xyChart) == null ? void 0 : _.yAxisLabelColor) || this.primaryTextColor,
      yAxisTickColor: ((S = this.xyChart) == null ? void 0 : S.yAxisTickColor) || this.primaryTextColor,
      yAxisLineColor: ((v = this.xyChart) == null ? void 0 : v.yAxisLineColor) || this.primaryTextColor,
      plotColorPalette: ((C = this.xyChart) == null ? void 0 : C.plotColorPalette) || "#FFF4DD,#FFD8B1,#FFA07A,#ECEFF1,#D6DBDF,#C3E0A8,#FFB6A4,#FFD74D,#738FA7,#FFFFF0"
    }, this.requirementBackground = this.requirementBackground || this.primaryColor, this.requirementBorderColor = this.requirementBorderColor || this.primaryBorderColor, this.requirementBorderSize = this.requirementBorderSize || "1", this.requirementTextColor = this.requirementTextColor || this.primaryTextColor, this.relationColor = this.relationColor || this.lineColor, this.relationLabelBackground = this.relationLabelBackground || (this.darkMode ? Z(this.secondaryColor, 30) : this.secondaryColor), this.relationLabelColor = this.relationLabelColor || this.actorTextColor, this.git0 = this.git0 || this.primaryColor, this.git1 = this.git1 || this.secondaryColor, this.git2 = this.git2 || this.tertiaryColor, this.git3 = this.git3 || k(this.primaryColor, { h: -30 }), this.git4 = this.git4 || k(this.primaryColor, { h: -60 }), this.git5 = this.git5 || k(this.primaryColor, { h: -90 }), this.git6 = this.git6 || k(this.primaryColor, { h: 60 }), this.git7 = this.git7 || k(this.primaryColor, { h: 120 }), this.darkMode ? (this.git0 = q(this.git0, 25), this.git1 = q(this.git1, 25), this.git2 = q(this.git2, 25), this.git3 = q(this.git3, 25), this.git4 = q(this.git4, 25), this.git5 = q(this.git5, 25), this.git6 = q(this.git6, 25), this.git7 = q(this.git7, 25)) : (this.git0 = Z(this.git0, 25), this.git1 = Z(this.git1, 25), this.git2 = Z(this.git2, 25), this.git3 = Z(this.git3, 25), this.git4 = Z(this.git4, 25), this.git5 = Z(this.git5, 25), this.git6 = Z(this.git6, 25), this.git7 = Z(this.git7, 25)), this.gitInv0 = this.gitInv0 || D(this.git0), this.gitInv1 = this.gitInv1 || D(this.git1), this.gitInv2 = this.gitInv2 || D(this.git2), this.gitInv3 = this.gitInv3 || D(this.git3), this.gitInv4 = this.gitInv4 || D(this.git4), this.gitInv5 = this.gitInv5 || D(this.git5), this.gitInv6 = this.gitInv6 || D(this.git6), this.gitInv7 = this.gitInv7 || D(this.git7), this.branchLabelColor = this.branchLabelColor || (this.darkMode ? "black" : this.labelTextColor), this.gitBranchLabel0 = this.gitBranchLabel0 || this.branchLabelColor, this.gitBranchLabel1 = this.gitBranchLabel1 || this.branchLabelColor, this.gitBranchLabel2 = this.gitBranchLabel2 || this.branchLabelColor, this.gitBranchLabel3 = this.gitBranchLabel3 || this.branchLabelColor, this.gitBranchLabel4 = this.gitBranchLabel4 || this.branchLabelColor, this.gitBranchLabel5 = this.gitBranchLabel5 || this.branchLabelColor, this.gitBranchLabel6 = this.gitBranchLabel6 || this.branchLabelColor, this.gitBranchLabel7 = this.gitBranchLabel7 || this.branchLabelColor, this.tagLabelColor = this.tagLabelColor || this.primaryTextColor, this.tagLabelBackground = this.tagLabelBackground || this.primaryColor, this.tagLabelBorder = this.tagBorder || this.primaryBorderColor, this.tagLabelFontSize = this.tagLabelFontSize || "10px", this.commitLabelColor = this.commitLabelColor || this.secondaryTextColor, this.commitLabelBackground = this.commitLabelBackground || this.secondaryColor, this.commitLabelFontSize = this.commitLabelFontSize || "10px", this.attributeBackgroundColorOdd = this.attributeBackgroundColorOdd || ka, this.attributeBackgroundColorEven = this.attributeBackgroundColorEven || va;
  }
  calculate(t) {
    if (typeof t != "object") {
      this.updateColors();
      return;
    }
    const r = Object.keys(t);
    r.forEach((i) => {
      this[i] = t[i];
    }), this.updateColors(), r.forEach((i) => {
      this[i] = t[i];
    });
  }
}, d(Pr, "Theme"), Pr), P0 = /* @__PURE__ */ d((e) => {
  const t = new I0();
  return t.calculate(e), t;
}, "getThemeVariables"), Nr, N0 = (Nr = class {
  constructor() {
    this.background = "#333", this.primaryColor = "#1f2020", this.secondaryColor = q(this.primaryColor, 16), this.tertiaryColor = k(this.primaryColor, { h: -160 }), this.primaryBorderColor = D(this.background), this.secondaryBorderColor = zt(this.secondaryColor, this.darkMode), this.tertiaryBorderColor = zt(this.tertiaryColor, this.darkMode), this.primaryTextColor = D(this.primaryColor), this.secondaryTextColor = D(this.secondaryColor), this.tertiaryTextColor = D(this.tertiaryColor), this.lineColor = D(this.background), this.textColor = D(this.background), this.mainBkg = "#1f2020", this.secondBkg = "calculated", this.mainContrastColor = "lightgrey", this.darkTextColor = q(D("#323D47"), 10), this.lineColor = "calculated", this.border1 = "#ccc", this.border2 = Mi(255, 255, 255, 0.25), this.arrowheadColor = "calculated", this.fontFamily = '"trebuchet ms", verdana, arial, sans-serif', this.fontSize = "16px", this.labelBackground = "#181818", this.textColor = "#ccc", this.THEME_COLOR_LIMIT = 12, this.nodeBkg = "calculated", this.nodeBorder = "calculated", this.clusterBkg = "calculated", this.clusterBorder = "calculated", this.defaultLinkColor = "calculated", this.titleColor = "#F9FFFE", this.edgeLabelBackground = "calculated", this.actorBorder = "calculated", this.actorBkg = "calculated", this.actorTextColor = "calculated", this.actorLineColor = "calculated", this.signalColor = "calculated", this.signalTextColor = "calculated", this.labelBoxBkgColor = "calculated", this.labelBoxBorderColor = "calculated", this.labelTextColor = "calculated", this.loopTextColor = "calculated", this.noteBorderColor = "calculated", this.noteBkgColor = "#fff5ad", this.noteTextColor = "calculated", this.activationBorderColor = "calculated", this.activationBkgColor = "calculated", this.sequenceNumberColor = "black", this.sectionBkgColor = Z("#EAE8D9", 30), this.altSectionBkgColor = "calculated", this.sectionBkgColor2 = "#EAE8D9", this.excludeBkgColor = Z(this.sectionBkgColor, 10), this.taskBorderColor = Mi(255, 255, 255, 70), this.taskBkgColor = "calculated", this.taskTextColor = "calculated", this.taskTextLightColor = "calculated", this.taskTextOutsideColor = "calculated", this.taskTextClickableColor = "#003163", this.activeTaskBorderColor = Mi(255, 255, 255, 50), this.activeTaskBkgColor = "#81B1DB", this.gridColor = "calculated", this.doneTaskBkgColor = "calculated", this.doneTaskBorderColor = "grey", this.critBorderColor = "#E83737", this.critBkgColor = "#E83737", this.taskTextDarkColor = "calculated", this.todayLineColor = "#DB5757", this.vertLineColor = "#00BFFF", this.personBorder = this.primaryBorderColor, this.personBkg = this.mainBkg, this.archEdgeColor = "calculated", this.archEdgeArrowColor = "calculated", this.archEdgeWidth = "3", this.archGroupBorderColor = this.primaryBorderColor, this.archGroupBorderWidth = "2px", this.rowOdd = this.rowOdd || q(this.mainBkg, 5) || "#ffffff", this.rowEven = this.rowEven || Z(this.mainBkg, 10), this.labelColor = "calculated", this.errorBkgColor = "#a44141", this.errorTextColor = "#ddd";
  }
  updateColors() {
    var t, r, i, n, a, o, s, l, c, h, u, p, f, g, m, y, x, b, _, S, v;
    this.secondBkg = q(this.mainBkg, 16), this.lineColor = this.mainContrastColor, this.arrowheadColor = this.mainContrastColor, this.nodeBkg = this.mainBkg, this.nodeBorder = this.border1, this.clusterBkg = this.secondBkg, this.clusterBorder = this.border2, this.defaultLinkColor = this.lineColor, this.edgeLabelBackground = q(this.labelBackground, 25), this.actorBorder = this.border1, this.actorBkg = this.mainBkg, this.actorTextColor = this.mainContrastColor, this.actorLineColor = this.actorBorder, this.signalColor = this.mainContrastColor, this.signalTextColor = this.mainContrastColor, this.labelBoxBkgColor = this.actorBkg, this.labelBoxBorderColor = this.actorBorder, this.labelTextColor = this.mainContrastColor, this.loopTextColor = this.mainContrastColor, this.noteBorderColor = this.secondaryBorderColor, this.noteBkgColor = this.secondBkg, this.noteTextColor = this.secondaryTextColor, this.activationBorderColor = this.border1, this.activationBkgColor = this.secondBkg, this.altSectionBkgColor = this.background, this.taskBkgColor = q(this.mainBkg, 23), this.taskTextColor = this.darkTextColor, this.taskTextLightColor = this.mainContrastColor, this.taskTextOutsideColor = this.taskTextLightColor, this.gridColor = this.mainContrastColor, this.doneTaskBkgColor = this.mainContrastColor, this.taskTextDarkColor = D(this.doneTaskBkgColor), this.archEdgeColor = this.lineColor, this.archEdgeArrowColor = this.lineColor, this.transitionColor = this.transitionColor || this.lineColor, this.transitionLabelColor = this.transitionLabelColor || this.textColor, this.stateLabelColor = this.stateLabelColor || this.stateBkg || this.primaryTextColor, this.stateBkg = this.stateBkg || this.mainBkg, this.labelBackgroundColor = this.labelBackgroundColor || this.stateBkg, this.compositeBackground = this.compositeBackground || this.background || this.tertiaryColor, this.altBackground = this.altBackground || "#555", this.compositeTitleBackground = this.compositeTitleBackground || this.mainBkg, this.compositeBorder = this.compositeBorder || this.nodeBorder, this.innerEndBackground = this.primaryBorderColor, this.specialStateColor = "#f4f4f4", this.errorBkgColor = this.errorBkgColor || this.tertiaryColor, this.errorTextColor = this.errorTextColor || this.tertiaryTextColor, this.fillType0 = this.primaryColor, this.fillType1 = this.secondaryColor, this.fillType2 = k(this.primaryColor, { h: 64 }), this.fillType3 = k(this.secondaryColor, { h: 64 }), this.fillType4 = k(this.primaryColor, { h: -64 }), this.fillType5 = k(this.secondaryColor, { h: -64 }), this.fillType6 = k(this.primaryColor, { h: 128 }), this.fillType7 = k(this.secondaryColor, { h: 128 }), this.cScale1 = this.cScale1 || "#0b0000", this.cScale2 = this.cScale2 || "#4d1037", this.cScale3 = this.cScale3 || "#3f5258", this.cScale4 = this.cScale4 || "#4f2f1b", this.cScale5 = this.cScale5 || "#6e0a0a", this.cScale6 = this.cScale6 || "#3b0048", this.cScale7 = this.cScale7 || "#995a01", this.cScale8 = this.cScale8 || "#154706", this.cScale9 = this.cScale9 || "#161722", this.cScale10 = this.cScale10 || "#00296f", this.cScale11 = this.cScale11 || "#01629c", this.cScale12 = this.cScale12 || "#010029", this.cScale0 = this.cScale0 || this.primaryColor, this.cScale1 = this.cScale1 || this.secondaryColor, this.cScale2 = this.cScale2 || this.tertiaryColor, this.cScale3 = this.cScale3 || k(this.primaryColor, { h: 30 }), this.cScale4 = this.cScale4 || k(this.primaryColor, { h: 60 }), this.cScale5 = this.cScale5 || k(this.primaryColor, { h: 90 }), this.cScale6 = this.cScale6 || k(this.primaryColor, { h: 120 }), this.cScale7 = this.cScale7 || k(this.primaryColor, { h: 150 }), this.cScale8 = this.cScale8 || k(this.primaryColor, { h: 210 }), this.cScale9 = this.cScale9 || k(this.primaryColor, { h: 270 }), this.cScale10 = this.cScale10 || k(this.primaryColor, { h: 300 }), this.cScale11 = this.cScale11 || k(this.primaryColor, { h: 330 });
    for (let C = 0; C < this.THEME_COLOR_LIMIT; C++)
      this["cScaleInv" + C] = this["cScaleInv" + C] || D(this["cScale" + C]);
    for (let C = 0; C < this.THEME_COLOR_LIMIT; C++)
      this["cScalePeer" + C] = this["cScalePeer" + C] || q(this["cScale" + C], 10);
    for (let C = 0; C < 5; C++)
      this["surface" + C] = this["surface" + C] || k(this.mainBkg, { h: 30, s: -30, l: -(-10 + C * 4) }), this["surfacePeer" + C] = this["surfacePeer" + C] || k(this.mainBkg, { h: 30, s: -30, l: -(-7 + C * 4) });
    this.scaleLabelColor = this.scaleLabelColor || (this.darkMode ? "black" : this.labelTextColor);
    for (let C = 0; C < this.THEME_COLOR_LIMIT; C++)
      this["cScaleLabel" + C] = this["cScaleLabel" + C] || this.scaleLabelColor;
    for (let C = 0; C < this.THEME_COLOR_LIMIT; C++)
      this["pie" + C] = this["cScale" + C];
    this.pieTitleTextSize = this.pieTitleTextSize || "25px", this.pieTitleTextColor = this.pieTitleTextColor || this.mainContrastColor, this.pieSectionTextSize = this.pieSectionTextSize || "17px", this.pieSectionTextColor = this.pieSectionTextColor || this.textColor, this.pieLegendTextSize = this.pieLegendTextSize || "17px", this.pieLegendTextColor = this.pieLegendTextColor || this.mainContrastColor, this.pieStrokeColor = this.pieStrokeColor || "black", this.pieStrokeWidth = this.pieStrokeWidth || "2px", this.pieOuterStrokeWidth = this.pieOuterStrokeWidth || "2px", this.pieOuterStrokeColor = this.pieOuterStrokeColor || "black", this.pieOpacity = this.pieOpacity || "0.7";
    for (let C = 0; C < 8; C++)
      this["venn" + (C + 1)] = this["venn" + (C + 1)] ?? q(this["cScale" + C], 30);
    this.vennTitleTextColor = this.vennTitleTextColor ?? this.titleColor, this.vennSetTextColor = this.vennSetTextColor ?? this.textColor, this.quadrant1Fill = this.quadrant1Fill || this.primaryColor, this.quadrant2Fill = this.quadrant2Fill || k(this.primaryColor, { r: 5, g: 5, b: 5 }), this.quadrant3Fill = this.quadrant3Fill || k(this.primaryColor, { r: 10, g: 10, b: 10 }), this.quadrant4Fill = this.quadrant4Fill || k(this.primaryColor, { r: 15, g: 15, b: 15 }), this.quadrant1TextFill = this.quadrant1TextFill || this.primaryTextColor, this.quadrant2TextFill = this.quadrant2TextFill || k(this.primaryTextColor, { r: -5, g: -5, b: -5 }), this.quadrant3TextFill = this.quadrant3TextFill || k(this.primaryTextColor, { r: -10, g: -10, b: -10 }), this.quadrant4TextFill = this.quadrant4TextFill || k(this.primaryTextColor, { r: -15, g: -15, b: -15 }), this.quadrantPointFill = this.quadrantPointFill || Zi(this.quadrant1Fill) ? q(this.quadrant1Fill) : Z(this.quadrant1Fill), this.quadrantPointTextFill = this.quadrantPointTextFill || this.primaryTextColor, this.quadrantXAxisTextFill = this.quadrantXAxisTextFill || this.primaryTextColor, this.quadrantYAxisTextFill = this.quadrantYAxisTextFill || this.primaryTextColor, this.quadrantInternalBorderStrokeFill = this.quadrantInternalBorderStrokeFill || this.primaryBorderColor, this.quadrantExternalBorderStrokeFill = this.quadrantExternalBorderStrokeFill || this.primaryBorderColor, this.quadrantTitleFill = this.quadrantTitleFill || this.primaryTextColor, this.xyChart = {
      backgroundColor: ((t = this.xyChart) == null ? void 0 : t.backgroundColor) || this.background,
      titleColor: ((r = this.xyChart) == null ? void 0 : r.titleColor) || this.primaryTextColor,
      xAxisTitleColor: ((i = this.xyChart) == null ? void 0 : i.xAxisTitleColor) || this.primaryTextColor,
      xAxisLabelColor: ((n = this.xyChart) == null ? void 0 : n.xAxisLabelColor) || this.primaryTextColor,
      xAxisTickColor: ((a = this.xyChart) == null ? void 0 : a.xAxisTickColor) || this.primaryTextColor,
      xAxisLineColor: ((o = this.xyChart) == null ? void 0 : o.xAxisLineColor) || this.primaryTextColor,
      yAxisTitleColor: ((s = this.xyChart) == null ? void 0 : s.yAxisTitleColor) || this.primaryTextColor,
      yAxisLabelColor: ((l = this.xyChart) == null ? void 0 : l.yAxisLabelColor) || this.primaryTextColor,
      yAxisTickColor: ((c = this.xyChart) == null ? void 0 : c.yAxisTickColor) || this.primaryTextColor,
      yAxisLineColor: ((h = this.xyChart) == null ? void 0 : h.yAxisLineColor) || this.primaryTextColor,
      plotColorPalette: ((u = this.xyChart) == null ? void 0 : u.plotColorPalette) || "#3498db,#2ecc71,#e74c3c,#f1c40f,#bdc3c7,#ffffff,#34495e,#9b59b6,#1abc9c,#e67e22"
    }, this.packet = {
      startByteColor: this.primaryTextColor,
      endByteColor: this.primaryTextColor,
      labelColor: this.primaryTextColor,
      titleColor: this.primaryTextColor,
      blockStrokeColor: this.primaryTextColor,
      blockFillColor: this.background
    }, this.radar = {
      axisColor: ((p = this.radar) == null ? void 0 : p.axisColor) || this.lineColor,
      axisStrokeWidth: ((f = this.radar) == null ? void 0 : f.axisStrokeWidth) || 2,
      axisLabelFontSize: ((g = this.radar) == null ? void 0 : g.axisLabelFontSize) || 12,
      curveOpacity: ((m = this.radar) == null ? void 0 : m.curveOpacity) || 0.5,
      curveStrokeWidth: ((y = this.radar) == null ? void 0 : y.curveStrokeWidth) || 2,
      graticuleColor: ((x = this.radar) == null ? void 0 : x.graticuleColor) || "#DEDEDE",
      graticuleStrokeWidth: ((b = this.radar) == null ? void 0 : b.graticuleStrokeWidth) || 1,
      graticuleOpacity: ((_ = this.radar) == null ? void 0 : _.graticuleOpacity) || 0.3,
      legendBoxSize: ((S = this.radar) == null ? void 0 : S.legendBoxSize) || 12,
      legendFontSize: ((v = this.radar) == null ? void 0 : v.legendFontSize) || 12
    }, this.classText = this.primaryTextColor, this.requirementBackground = this.requirementBackground || this.primaryColor, this.requirementBorderColor = this.requirementBorderColor || this.primaryBorderColor, this.requirementBorderSize = this.requirementBorderSize || "1", this.requirementTextColor = this.requirementTextColor || this.primaryTextColor, this.relationColor = this.relationColor || this.lineColor, this.relationLabelBackground = this.relationLabelBackground || (this.darkMode ? Z(this.secondaryColor, 30) : this.secondaryColor), this.relationLabelColor = this.relationLabelColor || this.actorTextColor, this.git0 = q(this.secondaryColor, 20), this.git1 = q(this.pie2 || this.secondaryColor, 20), this.git2 = q(this.pie3 || this.tertiaryColor, 20), this.git3 = q(this.pie4 || k(this.primaryColor, { h: -30 }), 20), this.git4 = q(this.pie5 || k(this.primaryColor, { h: -60 }), 20), this.git5 = q(this.pie6 || k(this.primaryColor, { h: -90 }), 10), this.git6 = q(this.pie7 || k(this.primaryColor, { h: 60 }), 10), this.git7 = q(this.pie8 || k(this.primaryColor, { h: 120 }), 20), this.gitInv0 = this.gitInv0 || D(this.git0), this.gitInv1 = this.gitInv1 || D(this.git1), this.gitInv2 = this.gitInv2 || D(this.git2), this.gitInv3 = this.gitInv3 || D(this.git3), this.gitInv4 = this.gitInv4 || D(this.git4), this.gitInv5 = this.gitInv5 || D(this.git5), this.gitInv6 = this.gitInv6 || D(this.git6), this.gitInv7 = this.gitInv7 || D(this.git7), this.gitBranchLabel0 = this.gitBranchLabel0 || D(this.labelTextColor), this.gitBranchLabel1 = this.gitBranchLabel1 || this.labelTextColor, this.gitBranchLabel2 = this.gitBranchLabel2 || this.labelTextColor, this.gitBranchLabel3 = this.gitBranchLabel3 || D(this.labelTextColor), this.gitBranchLabel4 = this.gitBranchLabel4 || this.labelTextColor, this.gitBranchLabel5 = this.gitBranchLabel5 || this.labelTextColor, this.gitBranchLabel6 = this.gitBranchLabel6 || this.labelTextColor, this.gitBranchLabel7 = this.gitBranchLabel7 || this.labelTextColor, this.tagLabelColor = this.tagLabelColor || this.primaryTextColor, this.tagLabelBackground = this.tagLabelBackground || this.primaryColor, this.tagLabelBorder = this.tagBorder || this.primaryBorderColor, this.tagLabelFontSize = this.tagLabelFontSize || "10px", this.commitLabelColor = this.commitLabelColor || this.secondaryTextColor, this.commitLabelBackground = this.commitLabelBackground || this.secondaryColor, this.commitLabelFontSize = this.commitLabelFontSize || "10px", this.attributeBackgroundColorOdd = this.attributeBackgroundColorOdd || q(this.background, 12), this.attributeBackgroundColorEven = this.attributeBackgroundColorEven || q(this.background, 2), this.nodeBorder = this.nodeBorder || "#999";
  }
  calculate(t) {
    if (typeof t != "object") {
      this.updateColors();
      return;
    }
    const r = Object.keys(t);
    r.forEach((i) => {
      this[i] = t[i];
    }), this.updateColors(), r.forEach((i) => {
      this[i] = t[i];
    });
  }
}, d(Nr, "Theme"), Nr), z0 = /* @__PURE__ */ d((e) => {
  const t = new N0();
  return t.calculate(e), t;
}, "getThemeVariables"), zr, W0 = (zr = class {
  constructor() {
    this.background = "#f4f4f4", this.primaryColor = "#ECECFF", this.secondaryColor = k(this.primaryColor, { h: 120 }), this.secondaryColor = "#ffffde", this.tertiaryColor = k(this.primaryColor, { h: -160 }), this.primaryBorderColor = zt(this.primaryColor, this.darkMode), this.secondaryBorderColor = zt(this.secondaryColor, this.darkMode), this.tertiaryBorderColor = zt(this.tertiaryColor, this.darkMode), this.primaryTextColor = D(this.primaryColor), this.secondaryTextColor = D(this.secondaryColor), this.tertiaryTextColor = D(this.tertiaryColor), this.lineColor = D(this.background), this.textColor = D(this.background), this.background = "white", this.mainBkg = "#ECECFF", this.secondBkg = "#ffffde", this.lineColor = "#333333", this.border1 = "#9370DB", this.border2 = "#aaaa33", this.arrowheadColor = "#333333", this.fontFamily = '"trebuchet ms", verdana, arial, sans-serif', this.fontSize = "16px", this.labelBackground = "rgba(232,232,232, 0.8)", this.textColor = "#333", this.THEME_COLOR_LIMIT = 12, this.nodeBkg = "calculated", this.nodeBorder = "calculated", this.clusterBkg = "calculated", this.clusterBorder = "calculated", this.defaultLinkColor = "calculated", this.titleColor = "calculated", this.edgeLabelBackground = "calculated", this.actorBorder = "calculated", this.actorBkg = "calculated", this.actorTextColor = "black", this.actorLineColor = "calculated", this.signalColor = "calculated", this.signalTextColor = "calculated", this.labelBoxBkgColor = "calculated", this.labelBoxBorderColor = "calculated", this.labelTextColor = "calculated", this.loopTextColor = "calculated", this.noteBorderColor = "calculated", this.noteBkgColor = "#fff5ad", this.noteTextColor = "calculated", this.activationBorderColor = "#666", this.activationBkgColor = "#f4f4f4", this.sequenceNumberColor = "white", this.sectionBkgColor = "calculated", this.altSectionBkgColor = "calculated", this.sectionBkgColor2 = "calculated", this.excludeBkgColor = "#eeeeee", this.taskBorderColor = "calculated", this.taskBkgColor = "calculated", this.taskTextLightColor = "calculated", this.taskTextColor = this.taskTextLightColor, this.taskTextDarkColor = "calculated", this.taskTextOutsideColor = this.taskTextDarkColor, this.taskTextClickableColor = "calculated", this.activeTaskBorderColor = "calculated", this.activeTaskBkgColor = "calculated", this.gridColor = "calculated", this.doneTaskBkgColor = "calculated", this.doneTaskBorderColor = "calculated", this.critBorderColor = "calculated", this.critBkgColor = "calculated", this.todayLineColor = "calculated", this.vertLineColor = "calculated", this.sectionBkgColor = Mi(102, 102, 255, 0.49), this.altSectionBkgColor = "white", this.sectionBkgColor2 = "#fff400", this.taskBorderColor = "#534fbc", this.taskBkgColor = "#8a90dd", this.taskTextLightColor = "white", this.taskTextColor = "calculated", this.taskTextDarkColor = "black", this.taskTextOutsideColor = "calculated", this.taskTextClickableColor = "#003163", this.activeTaskBorderColor = "#534fbc", this.activeTaskBkgColor = "#bfc7ff", this.gridColor = "lightgrey", this.doneTaskBkgColor = "lightgrey", this.doneTaskBorderColor = "grey", this.critBorderColor = "#ff8888", this.critBkgColor = "red", this.todayLineColor = "red", this.vertLineColor = "navy", this.personBorder = this.primaryBorderColor, this.personBkg = this.mainBkg, this.archEdgeColor = "calculated", this.archEdgeArrowColor = "calculated", this.archEdgeWidth = "3", this.archGroupBorderColor = this.primaryBorderColor, this.archGroupBorderWidth = "2px", this.rowOdd = "calculated", this.rowEven = "calculated", this.labelColor = "black", this.errorBkgColor = "#552222", this.errorTextColor = "#552222", this.updateColors();
  }
  updateColors() {
    var t, r, i, n, a, o, s, l, c, h, u, p, f, g, m, y, x, b, _, S, v;
    this.cScale0 = this.cScale0 || this.primaryColor, this.cScale1 = this.cScale1 || this.secondaryColor, this.cScale2 = this.cScale2 || this.tertiaryColor, this.cScale3 = this.cScale3 || k(this.primaryColor, { h: 30 }), this.cScale4 = this.cScale4 || k(this.primaryColor, { h: 60 }), this.cScale5 = this.cScale5 || k(this.primaryColor, { h: 90 }), this.cScale6 = this.cScale6 || k(this.primaryColor, { h: 120 }), this.cScale7 = this.cScale7 || k(this.primaryColor, { h: 150 }), this.cScale8 = this.cScale8 || k(this.primaryColor, { h: 210 }), this.cScale9 = this.cScale9 || k(this.primaryColor, { h: 270 }), this.cScale10 = this.cScale10 || k(this.primaryColor, { h: 300 }), this.cScale11 = this.cScale11 || k(this.primaryColor, { h: 330 }), this.cScalePeer1 = this.cScalePeer1 || Z(this.secondaryColor, 45), this.cScalePeer2 = this.cScalePeer2 || Z(this.tertiaryColor, 40);
    for (let C = 0; C < this.THEME_COLOR_LIMIT; C++)
      this["cScale" + C] = Z(this["cScale" + C], 10), this["cScalePeer" + C] = this["cScalePeer" + C] || Z(this["cScale" + C], 25);
    for (let C = 0; C < this.THEME_COLOR_LIMIT; C++)
      this["cScaleInv" + C] = this["cScaleInv" + C] || k(this["cScale" + C], { h: 180 });
    for (let C = 0; C < 5; C++)
      this["surface" + C] = this["surface" + C] || k(this.mainBkg, { h: 30, l: -(5 + C * 5) }), this["surfacePeer" + C] = this["surfacePeer" + C] || k(this.mainBkg, { h: 30, l: -(7 + C * 5) });
    if (this.scaleLabelColor = this.scaleLabelColor !== "calculated" && this.scaleLabelColor ? this.scaleLabelColor : this.labelTextColor, this.labelTextColor !== "calculated") {
      this.cScaleLabel0 = this.cScaleLabel0 || D(this.labelTextColor), this.cScaleLabel3 = this.cScaleLabel3 || D(this.labelTextColor);
      for (let C = 0; C < this.THEME_COLOR_LIMIT; C++)
        this["cScaleLabel" + C] = this["cScaleLabel" + C] || this.labelTextColor;
    }
    this.nodeBkg = this.mainBkg, this.nodeBorder = this.border1, this.clusterBkg = this.secondBkg, this.clusterBorder = this.border2, this.defaultLinkColor = this.lineColor, this.titleColor = this.textColor, this.edgeLabelBackground = this.labelBackground, this.actorBorder = q(this.border1, 23), this.actorBkg = this.mainBkg, this.labelBoxBkgColor = this.actorBkg, this.signalColor = this.textColor, this.signalTextColor = this.textColor, this.labelBoxBorderColor = this.actorBorder, this.labelTextColor = this.actorTextColor, this.loopTextColor = this.actorTextColor, this.noteBorderColor = this.border2, this.noteTextColor = this.actorTextColor, this.actorLineColor = this.actorBorder, this.taskTextColor = this.taskTextLightColor, this.taskTextOutsideColor = this.taskTextDarkColor, this.archEdgeColor = this.lineColor, this.archEdgeArrowColor = this.lineColor, this.rowOdd = this.rowOdd || q(this.primaryColor, 75) || "#ffffff", this.rowEven = this.rowEven || q(this.primaryColor, 1), this.transitionColor = this.transitionColor || this.lineColor, this.transitionLabelColor = this.transitionLabelColor || this.textColor, this.stateLabelColor = this.stateLabelColor || this.stateBkg || this.primaryTextColor, this.stateBkg = this.stateBkg || this.mainBkg, this.labelBackgroundColor = this.labelBackgroundColor || this.stateBkg, this.compositeBackground = this.compositeBackground || this.background || this.tertiaryColor, this.altBackground = this.altBackground || "#f0f0f0", this.compositeTitleBackground = this.compositeTitleBackground || this.mainBkg, this.compositeBorder = this.compositeBorder || this.nodeBorder, this.innerEndBackground = this.nodeBorder, this.specialStateColor = this.lineColor, this.errorBkgColor = this.errorBkgColor || this.tertiaryColor, this.errorTextColor = this.errorTextColor || this.tertiaryTextColor, this.transitionColor = this.transitionColor || this.lineColor, this.classText = this.primaryTextColor, this.fillType0 = this.primaryColor, this.fillType1 = this.secondaryColor, this.fillType2 = k(this.primaryColor, { h: 64 }), this.fillType3 = k(this.secondaryColor, { h: 64 }), this.fillType4 = k(this.primaryColor, { h: -64 }), this.fillType5 = k(this.secondaryColor, { h: -64 }), this.fillType6 = k(this.primaryColor, { h: 128 }), this.fillType7 = k(this.secondaryColor, { h: 128 }), this.pie1 = this.pie1 || this.primaryColor, this.pie2 = this.pie2 || this.secondaryColor, this.pie3 = this.pie3 || k(this.tertiaryColor, { l: -40 }), this.pie4 = this.pie4 || k(this.primaryColor, { l: -10 }), this.pie5 = this.pie5 || k(this.secondaryColor, { l: -30 }), this.pie6 = this.pie6 || k(this.tertiaryColor, { l: -20 }), this.pie7 = this.pie7 || k(this.primaryColor, { h: 60, l: -20 }), this.pie8 = this.pie8 || k(this.primaryColor, { h: -60, l: -40 }), this.pie9 = this.pie9 || k(this.primaryColor, { h: 120, l: -40 }), this.pie10 = this.pie10 || k(this.primaryColor, { h: 60, l: -40 }), this.pie11 = this.pie11 || k(this.primaryColor, { h: -90, l: -40 }), this.pie12 = this.pie12 || k(this.primaryColor, { h: 120, l: -30 }), this.pieTitleTextSize = this.pieTitleTextSize || "25px", this.pieTitleTextColor = this.pieTitleTextColor || this.taskTextDarkColor, this.pieSectionTextSize = this.pieSectionTextSize || "17px", this.pieSectionTextColor = this.pieSectionTextColor || this.textColor, this.pieLegendTextSize = this.pieLegendTextSize || "17px", this.pieLegendTextColor = this.pieLegendTextColor || this.taskTextDarkColor, this.pieStrokeColor = this.pieStrokeColor || "black", this.pieStrokeWidth = this.pieStrokeWidth || "2px", this.pieOuterStrokeWidth = this.pieOuterStrokeWidth || "2px", this.pieOuterStrokeColor = this.pieOuterStrokeColor || "black", this.pieOpacity = this.pieOpacity || "0.7", this.venn1 = this.venn1 ?? k(this.primaryColor, { l: -30 }), this.venn2 = this.venn2 ?? k(this.secondaryColor, { l: -30 }), this.venn3 = this.venn3 ?? k(this.tertiaryColor, { l: -40 }), this.venn4 = this.venn4 ?? k(this.primaryColor, { h: 60, l: -30 }), this.venn5 = this.venn5 ?? k(this.primaryColor, { h: -60, l: -30 }), this.venn6 = this.venn6 ?? k(this.secondaryColor, { h: 60, l: -30 }), this.venn7 = this.venn7 ?? k(this.primaryColor, { h: 120, l: -30 }), this.venn8 = this.venn8 ?? k(this.secondaryColor, { h: 120, l: -30 }), this.vennTitleTextColor = this.vennTitleTextColor ?? this.titleColor, this.vennSetTextColor = this.vennSetTextColor ?? this.textColor, this.quadrant1Fill = this.quadrant1Fill || this.primaryColor, this.quadrant2Fill = this.quadrant2Fill || k(this.primaryColor, { r: 5, g: 5, b: 5 }), this.quadrant3Fill = this.quadrant3Fill || k(this.primaryColor, { r: 10, g: 10, b: 10 }), this.quadrant4Fill = this.quadrant4Fill || k(this.primaryColor, { r: 15, g: 15, b: 15 }), this.quadrant1TextFill = this.quadrant1TextFill || this.primaryTextColor, this.quadrant2TextFill = this.quadrant2TextFill || k(this.primaryTextColor, { r: -5, g: -5, b: -5 }), this.quadrant3TextFill = this.quadrant3TextFill || k(this.primaryTextColor, { r: -10, g: -10, b: -10 }), this.quadrant4TextFill = this.quadrant4TextFill || k(this.primaryTextColor, { r: -15, g: -15, b: -15 }), this.quadrantPointFill = this.quadrantPointFill || Zi(this.quadrant1Fill) ? q(this.quadrant1Fill) : Z(this.quadrant1Fill), this.quadrantPointTextFill = this.quadrantPointTextFill || this.primaryTextColor, this.quadrantXAxisTextFill = this.quadrantXAxisTextFill || this.primaryTextColor, this.quadrantYAxisTextFill = this.quadrantYAxisTextFill || this.primaryTextColor, this.quadrantInternalBorderStrokeFill = this.quadrantInternalBorderStrokeFill || this.primaryBorderColor, this.quadrantExternalBorderStrokeFill = this.quadrantExternalBorderStrokeFill || this.primaryBorderColor, this.quadrantTitleFill = this.quadrantTitleFill || this.primaryTextColor, this.radar = {
      axisColor: ((t = this.radar) == null ? void 0 : t.axisColor) || this.lineColor,
      axisStrokeWidth: ((r = this.radar) == null ? void 0 : r.axisStrokeWidth) || 2,
      axisLabelFontSize: ((i = this.radar) == null ? void 0 : i.axisLabelFontSize) || 12,
      curveOpacity: ((n = this.radar) == null ? void 0 : n.curveOpacity) || 0.5,
      curveStrokeWidth: ((a = this.radar) == null ? void 0 : a.curveStrokeWidth) || 2,
      graticuleColor: ((o = this.radar) == null ? void 0 : o.graticuleColor) || "#DEDEDE",
      graticuleStrokeWidth: ((s = this.radar) == null ? void 0 : s.graticuleStrokeWidth) || 1,
      graticuleOpacity: ((l = this.radar) == null ? void 0 : l.graticuleOpacity) || 0.3,
      legendBoxSize: ((c = this.radar) == null ? void 0 : c.legendBoxSize) || 12,
      legendFontSize: ((h = this.radar) == null ? void 0 : h.legendFontSize) || 12
    }, this.xyChart = {
      backgroundColor: ((u = this.xyChart) == null ? void 0 : u.backgroundColor) || this.background,
      titleColor: ((p = this.xyChart) == null ? void 0 : p.titleColor) || this.primaryTextColor,
      xAxisTitleColor: ((f = this.xyChart) == null ? void 0 : f.xAxisTitleColor) || this.primaryTextColor,
      xAxisLabelColor: ((g = this.xyChart) == null ? void 0 : g.xAxisLabelColor) || this.primaryTextColor,
      xAxisTickColor: ((m = this.xyChart) == null ? void 0 : m.xAxisTickColor) || this.primaryTextColor,
      xAxisLineColor: ((y = this.xyChart) == null ? void 0 : y.xAxisLineColor) || this.primaryTextColor,
      yAxisTitleColor: ((x = this.xyChart) == null ? void 0 : x.yAxisTitleColor) || this.primaryTextColor,
      yAxisLabelColor: ((b = this.xyChart) == null ? void 0 : b.yAxisLabelColor) || this.primaryTextColor,
      yAxisTickColor: ((_ = this.xyChart) == null ? void 0 : _.yAxisTickColor) || this.primaryTextColor,
      yAxisLineColor: ((S = this.xyChart) == null ? void 0 : S.yAxisLineColor) || this.primaryTextColor,
      plotColorPalette: ((v = this.xyChart) == null ? void 0 : v.plotColorPalette) || "#ECECFF,#8493A6,#FFC3A0,#DCDDE1,#B8E994,#D1A36F,#C3CDE6,#FFB6C1,#496078,#F8F3E3"
    }, this.requirementBackground = this.requirementBackground || this.primaryColor, this.requirementBorderColor = this.requirementBorderColor || this.primaryBorderColor, this.requirementBorderSize = this.requirementBorderSize || "1", this.requirementTextColor = this.requirementTextColor || this.primaryTextColor, this.relationColor = this.relationColor || this.lineColor, this.relationLabelBackground = this.relationLabelBackground || this.labelBackground, this.relationLabelColor = this.relationLabelColor || this.actorTextColor, this.git0 = this.git0 || this.primaryColor, this.git1 = this.git1 || this.secondaryColor, this.git2 = this.git2 || this.tertiaryColor, this.git3 = this.git3 || k(this.primaryColor, { h: -30 }), this.git4 = this.git4 || k(this.primaryColor, { h: -60 }), this.git5 = this.git5 || k(this.primaryColor, { h: -90 }), this.git6 = this.git6 || k(this.primaryColor, { h: 60 }), this.git7 = this.git7 || k(this.primaryColor, { h: 120 }), this.darkMode ? (this.git0 = q(this.git0, 25), this.git1 = q(this.git1, 25), this.git2 = q(this.git2, 25), this.git3 = q(this.git3, 25), this.git4 = q(this.git4, 25), this.git5 = q(this.git5, 25), this.git6 = q(this.git6, 25), this.git7 = q(this.git7, 25)) : (this.git0 = Z(this.git0, 25), this.git1 = Z(this.git1, 25), this.git2 = Z(this.git2, 25), this.git3 = Z(this.git3, 25), this.git4 = Z(this.git4, 25), this.git5 = Z(this.git5, 25), this.git6 = Z(this.git6, 25), this.git7 = Z(this.git7, 25)), this.gitInv0 = this.gitInv0 || Z(D(this.git0), 25), this.gitInv1 = this.gitInv1 || D(this.git1), this.gitInv2 = this.gitInv2 || D(this.git2), this.gitInv3 = this.gitInv3 || D(this.git3), this.gitInv4 = this.gitInv4 || D(this.git4), this.gitInv5 = this.gitInv5 || D(this.git5), this.gitInv6 = this.gitInv6 || D(this.git6), this.gitInv7 = this.gitInv7 || D(this.git7), this.gitBranchLabel0 = this.gitBranchLabel0 || D(this.labelTextColor), this.gitBranchLabel1 = this.gitBranchLabel1 || this.labelTextColor, this.gitBranchLabel2 = this.gitBranchLabel2 || this.labelTextColor, this.gitBranchLabel3 = this.gitBranchLabel3 || D(this.labelTextColor), this.gitBranchLabel4 = this.gitBranchLabel4 || this.labelTextColor, this.gitBranchLabel5 = this.gitBranchLabel5 || this.labelTextColor, this.gitBranchLabel6 = this.gitBranchLabel6 || this.labelTextColor, this.gitBranchLabel7 = this.gitBranchLabel7 || this.labelTextColor, this.tagLabelColor = this.tagLabelColor || this.primaryTextColor, this.tagLabelBackground = this.tagLabelBackground || this.primaryColor, this.tagLabelBorder = this.tagBorder || this.primaryBorderColor, this.tagLabelFontSize = this.tagLabelFontSize || "10px", this.commitLabelColor = this.commitLabelColor || this.secondaryTextColor, this.commitLabelBackground = this.commitLabelBackground || this.secondaryColor, this.commitLabelFontSize = this.commitLabelFontSize || "10px", this.attributeBackgroundColorOdd = this.attributeBackgroundColorOdd || ka, this.attributeBackgroundColorEven = this.attributeBackgroundColorEven || va;
  }
  calculate(t) {
    if (Object.keys(this).forEach((i) => {
      this[i] === "calculated" && (this[i] = void 0);
    }), typeof t != "object") {
      this.updateColors();
      return;
    }
    const r = Object.keys(t);
    r.forEach((i) => {
      this[i] = t[i];
    }), this.updateColors(), r.forEach((i) => {
      this[i] = t[i];
    });
  }
}, d(zr, "Theme"), zr), q0 = /* @__PURE__ */ d((e) => {
  const t = new W0();
  return t.calculate(e), t;
}, "getThemeVariables"), Wr, H0 = (Wr = class {
  constructor() {
    this.background = "#f4f4f4", this.primaryColor = "#cde498", this.secondaryColor = "#cdffb2", this.background = "white", this.mainBkg = "#cde498", this.secondBkg = "#cdffb2", this.lineColor = "green", this.border1 = "#13540c", this.border2 = "#6eaa49", this.arrowheadColor = "green", this.fontFamily = '"trebuchet ms", verdana, arial, sans-serif', this.fontSize = "16px", this.tertiaryColor = q("#cde498", 10), this.primaryBorderColor = zt(this.primaryColor, this.darkMode), this.secondaryBorderColor = zt(this.secondaryColor, this.darkMode), this.tertiaryBorderColor = zt(this.tertiaryColor, this.darkMode), this.primaryTextColor = D(this.primaryColor), this.secondaryTextColor = D(this.secondaryColor), this.tertiaryTextColor = D(this.primaryColor), this.lineColor = D(this.background), this.textColor = D(this.background), this.THEME_COLOR_LIMIT = 12, this.nodeBkg = "calculated", this.nodeBorder = "calculated", this.clusterBkg = "calculated", this.clusterBorder = "calculated", this.defaultLinkColor = "calculated", this.titleColor = "#333", this.edgeLabelBackground = "#e8e8e8", this.actorBorder = "calculated", this.actorBkg = "calculated", this.actorTextColor = "black", this.actorLineColor = "calculated", this.signalColor = "#333", this.signalTextColor = "#333", this.labelBoxBkgColor = "calculated", this.labelBoxBorderColor = "#326932", this.labelTextColor = "calculated", this.loopTextColor = "calculated", this.noteBorderColor = "calculated", this.noteBkgColor = "#fff5ad", this.noteTextColor = "calculated", this.activationBorderColor = "#666", this.activationBkgColor = "#f4f4f4", this.sequenceNumberColor = "white", this.sectionBkgColor = "#6eaa49", this.altSectionBkgColor = "white", this.sectionBkgColor2 = "#6eaa49", this.excludeBkgColor = "#eeeeee", this.taskBorderColor = "calculated", this.taskBkgColor = "#487e3a", this.taskTextLightColor = "white", this.taskTextColor = "calculated", this.taskTextDarkColor = "black", this.taskTextOutsideColor = "calculated", this.taskTextClickableColor = "#003163", this.activeTaskBorderColor = "calculated", this.activeTaskBkgColor = "calculated", this.gridColor = "lightgrey", this.doneTaskBkgColor = "lightgrey", this.doneTaskBorderColor = "grey", this.critBorderColor = "#ff8888", this.critBkgColor = "red", this.todayLineColor = "red", this.vertLineColor = "#00BFFF", this.personBorder = this.primaryBorderColor, this.personBkg = this.mainBkg, this.archEdgeColor = "calculated", this.archEdgeArrowColor = "calculated", this.archEdgeWidth = "3", this.archGroupBorderColor = this.primaryBorderColor, this.archGroupBorderWidth = "2px", this.labelColor = "black", this.errorBkgColor = "#552222", this.errorTextColor = "#552222";
  }
  updateColors() {
    var t, r, i, n, a, o, s, l, c, h, u, p, f, g, m, y, x, b, _, S, v;
    this.actorBorder = Z(this.mainBkg, 20), this.actorBkg = this.mainBkg, this.labelBoxBkgColor = this.actorBkg, this.labelTextColor = this.actorTextColor, this.loopTextColor = this.actorTextColor, this.noteBorderColor = this.border2, this.noteTextColor = this.actorTextColor, this.actorLineColor = this.actorBorder, this.cScale0 = this.cScale0 || this.primaryColor, this.cScale1 = this.cScale1 || this.secondaryColor, this.cScale2 = this.cScale2 || this.tertiaryColor, this.cScale3 = this.cScale3 || k(this.primaryColor, { h: 30 }), this.cScale4 = this.cScale4 || k(this.primaryColor, { h: 60 }), this.cScale5 = this.cScale5 || k(this.primaryColor, { h: 90 }), this.cScale6 = this.cScale6 || k(this.primaryColor, { h: 120 }), this.cScale7 = this.cScale7 || k(this.primaryColor, { h: 150 }), this.cScale8 = this.cScale8 || k(this.primaryColor, { h: 210 }), this.cScale9 = this.cScale9 || k(this.primaryColor, { h: 270 }), this.cScale10 = this.cScale10 || k(this.primaryColor, { h: 300 }), this.cScale11 = this.cScale11 || k(this.primaryColor, { h: 330 }), this.cScalePeer1 = this.cScalePeer1 || Z(this.secondaryColor, 45), this.cScalePeer2 = this.cScalePeer2 || Z(this.tertiaryColor, 40);
    for (let C = 0; C < this.THEME_COLOR_LIMIT; C++)
      this["cScale" + C] = Z(this["cScale" + C], 10), this["cScalePeer" + C] = this["cScalePeer" + C] || Z(this["cScale" + C], 25);
    for (let C = 0; C < this.THEME_COLOR_LIMIT; C++)
      this["cScaleInv" + C] = this["cScaleInv" + C] || k(this["cScale" + C], { h: 180 });
    this.scaleLabelColor = this.scaleLabelColor !== "calculated" && this.scaleLabelColor ? this.scaleLabelColor : this.labelTextColor;
    for (let C = 0; C < this.THEME_COLOR_LIMIT; C++)
      this["cScaleLabel" + C] = this["cScaleLabel" + C] || this.scaleLabelColor;
    for (let C = 0; C < 5; C++)
      this["surface" + C] = this["surface" + C] || k(this.mainBkg, { h: 30, s: -30, l: -(5 + C * 5) }), this["surfacePeer" + C] = this["surfacePeer" + C] || k(this.mainBkg, { h: 30, s: -30, l: -(8 + C * 5) });
    this.nodeBkg = this.mainBkg, this.nodeBorder = this.border1, this.clusterBkg = this.secondBkg, this.clusterBorder = this.border2, this.defaultLinkColor = this.lineColor, this.taskBorderColor = this.border1, this.taskTextColor = this.taskTextLightColor, this.taskTextOutsideColor = this.taskTextDarkColor, this.activeTaskBorderColor = this.taskBorderColor, this.activeTaskBkgColor = this.mainBkg, this.archEdgeColor = this.lineColor, this.archEdgeArrowColor = this.lineColor, this.rowOdd = this.rowOdd || q(this.mainBkg, 75) || "#ffffff", this.rowEven = this.rowEven || q(this.mainBkg, 20), this.transitionColor = this.transitionColor || this.lineColor, this.transitionLabelColor = this.transitionLabelColor || this.textColor, this.stateLabelColor = this.stateLabelColor || this.stateBkg || this.primaryTextColor, this.stateBkg = this.stateBkg || this.mainBkg, this.labelBackgroundColor = this.labelBackgroundColor || this.stateBkg, this.compositeBackground = this.compositeBackground || this.background || this.tertiaryColor, this.altBackground = this.altBackground || "#f0f0f0", this.compositeTitleBackground = this.compositeTitleBackground || this.mainBkg, this.compositeBorder = this.compositeBorder || this.nodeBorder, this.innerEndBackground = this.primaryBorderColor, this.specialStateColor = this.lineColor, this.errorBkgColor = this.errorBkgColor || this.tertiaryColor, this.errorTextColor = this.errorTextColor || this.tertiaryTextColor, this.transitionColor = this.transitionColor || this.lineColor, this.classText = this.primaryTextColor, this.fillType0 = this.primaryColor, this.fillType1 = this.secondaryColor, this.fillType2 = k(this.primaryColor, { h: 64 }), this.fillType3 = k(this.secondaryColor, { h: 64 }), this.fillType4 = k(this.primaryColor, { h: -64 }), this.fillType5 = k(this.secondaryColor, { h: -64 }), this.fillType6 = k(this.primaryColor, { h: 128 }), this.fillType7 = k(this.secondaryColor, { h: 128 }), this.pie1 = this.pie1 || this.primaryColor, this.pie2 = this.pie2 || this.secondaryColor, this.pie3 = this.pie3 || this.tertiaryColor, this.pie4 = this.pie4 || k(this.primaryColor, { l: -30 }), this.pie5 = this.pie5 || k(this.secondaryColor, { l: -30 }), this.pie6 = this.pie6 || k(this.tertiaryColor, { h: 40, l: -40 }), this.pie7 = this.pie7 || k(this.primaryColor, { h: 60, l: -10 }), this.pie8 = this.pie8 || k(this.primaryColor, { h: -60, l: -10 }), this.pie9 = this.pie9 || k(this.primaryColor, { h: 120, l: 0 }), this.pie10 = this.pie10 || k(this.primaryColor, { h: 60, l: -50 }), this.pie11 = this.pie11 || k(this.primaryColor, { h: -60, l: -50 }), this.pie12 = this.pie12 || k(this.primaryColor, { h: 120, l: -50 }), this.pieTitleTextSize = this.pieTitleTextSize || "25px", this.pieTitleTextColor = this.pieTitleTextColor || this.taskTextDarkColor, this.pieSectionTextSize = this.pieSectionTextSize || "17px", this.pieSectionTextColor = this.pieSectionTextColor || this.textColor, this.pieLegendTextSize = this.pieLegendTextSize || "17px", this.pieLegendTextColor = this.pieLegendTextColor || this.taskTextDarkColor, this.pieStrokeColor = this.pieStrokeColor || "black", this.pieStrokeWidth = this.pieStrokeWidth || "2px", this.pieOuterStrokeWidth = this.pieOuterStrokeWidth || "2px", this.pieOuterStrokeColor = this.pieOuterStrokeColor || "black", this.pieOpacity = this.pieOpacity || "0.7", this.venn1 = this.venn1 ?? k(this.primaryColor, { l: -30 }), this.venn2 = this.venn2 ?? k(this.secondaryColor, { l: -30 }), this.venn3 = this.venn3 ?? k(this.tertiaryColor, { l: -30 }), this.venn4 = this.venn4 ?? k(this.primaryColor, { h: 60, l: -30 }), this.venn5 = this.venn5 ?? k(this.primaryColor, { h: -60, l: -30 }), this.venn6 = this.venn6 ?? k(this.secondaryColor, { h: 60, l: -30 }), this.venn7 = this.venn7 ?? k(this.primaryColor, { h: 120, l: -30 }), this.venn8 = this.venn8 ?? k(this.secondaryColor, { h: 120, l: -30 }), this.vennTitleTextColor = this.vennTitleTextColor ?? this.titleColor, this.vennSetTextColor = this.vennSetTextColor ?? this.textColor, this.quadrant1Fill = this.quadrant1Fill || this.primaryColor, this.quadrant2Fill = this.quadrant2Fill || k(this.primaryColor, { r: 5, g: 5, b: 5 }), this.quadrant3Fill = this.quadrant3Fill || k(this.primaryColor, { r: 10, g: 10, b: 10 }), this.quadrant4Fill = this.quadrant4Fill || k(this.primaryColor, { r: 15, g: 15, b: 15 }), this.quadrant1TextFill = this.quadrant1TextFill || this.primaryTextColor, this.quadrant2TextFill = this.quadrant2TextFill || k(this.primaryTextColor, { r: -5, g: -5, b: -5 }), this.quadrant3TextFill = this.quadrant3TextFill || k(this.primaryTextColor, { r: -10, g: -10, b: -10 }), this.quadrant4TextFill = this.quadrant4TextFill || k(this.primaryTextColor, { r: -15, g: -15, b: -15 }), this.quadrantPointFill = this.quadrantPointFill || Zi(this.quadrant1Fill) ? q(this.quadrant1Fill) : Z(this.quadrant1Fill), this.quadrantPointTextFill = this.quadrantPointTextFill || this.primaryTextColor, this.quadrantXAxisTextFill = this.quadrantXAxisTextFill || this.primaryTextColor, this.quadrantYAxisTextFill = this.quadrantYAxisTextFill || this.primaryTextColor, this.quadrantInternalBorderStrokeFill = this.quadrantInternalBorderStrokeFill || this.primaryBorderColor, this.quadrantExternalBorderStrokeFill = this.quadrantExternalBorderStrokeFill || this.primaryBorderColor, this.quadrantTitleFill = this.quadrantTitleFill || this.primaryTextColor, this.packet = {
      startByteColor: this.primaryTextColor,
      endByteColor: this.primaryTextColor,
      labelColor: this.primaryTextColor,
      titleColor: this.primaryTextColor,
      blockStrokeColor: this.primaryTextColor,
      blockFillColor: this.mainBkg
    }, this.radar = {
      axisColor: ((t = this.radar) == null ? void 0 : t.axisColor) || this.lineColor,
      axisStrokeWidth: ((r = this.radar) == null ? void 0 : r.axisStrokeWidth) || 2,
      axisLabelFontSize: ((i = this.radar) == null ? void 0 : i.axisLabelFontSize) || 12,
      curveOpacity: ((n = this.radar) == null ? void 0 : n.curveOpacity) || 0.5,
      curveStrokeWidth: ((a = this.radar) == null ? void 0 : a.curveStrokeWidth) || 2,
      graticuleColor: ((o = this.radar) == null ? void 0 : o.graticuleColor) || "#DEDEDE",
      graticuleStrokeWidth: ((s = this.radar) == null ? void 0 : s.graticuleStrokeWidth) || 1,
      graticuleOpacity: ((l = this.radar) == null ? void 0 : l.graticuleOpacity) || 0.3,
      legendBoxSize: ((c = this.radar) == null ? void 0 : c.legendBoxSize) || 12,
      legendFontSize: ((h = this.radar) == null ? void 0 : h.legendFontSize) || 12
    }, this.xyChart = {
      backgroundColor: ((u = this.xyChart) == null ? void 0 : u.backgroundColor) || this.background,
      titleColor: ((p = this.xyChart) == null ? void 0 : p.titleColor) || this.primaryTextColor,
      xAxisTitleColor: ((f = this.xyChart) == null ? void 0 : f.xAxisTitleColor) || this.primaryTextColor,
      xAxisLabelColor: ((g = this.xyChart) == null ? void 0 : g.xAxisLabelColor) || this.primaryTextColor,
      xAxisTickColor: ((m = this.xyChart) == null ? void 0 : m.xAxisTickColor) || this.primaryTextColor,
      xAxisLineColor: ((y = this.xyChart) == null ? void 0 : y.xAxisLineColor) || this.primaryTextColor,
      yAxisTitleColor: ((x = this.xyChart) == null ? void 0 : x.yAxisTitleColor) || this.primaryTextColor,
      yAxisLabelColor: ((b = this.xyChart) == null ? void 0 : b.yAxisLabelColor) || this.primaryTextColor,
      yAxisTickColor: ((_ = this.xyChart) == null ? void 0 : _.yAxisTickColor) || this.primaryTextColor,
      yAxisLineColor: ((S = this.xyChart) == null ? void 0 : S.yAxisLineColor) || this.primaryTextColor,
      plotColorPalette: ((v = this.xyChart) == null ? void 0 : v.plotColorPalette) || "#CDE498,#FF6B6B,#A0D2DB,#D7BDE2,#F0F0F0,#FFC3A0,#7FD8BE,#FF9A8B,#FAF3E0,#FFF176"
    }, this.requirementBackground = this.requirementBackground || this.primaryColor, this.requirementBorderColor = this.requirementBorderColor || this.primaryBorderColor, this.requirementBorderSize = this.requirementBorderSize || "1", this.requirementTextColor = this.requirementTextColor || this.primaryTextColor, this.relationColor = this.relationColor || this.lineColor, this.relationLabelBackground = this.relationLabelBackground || this.edgeLabelBackground, this.relationLabelColor = this.relationLabelColor || this.actorTextColor, this.git0 = this.git0 || this.primaryColor, this.git1 = this.git1 || this.secondaryColor, this.git2 = this.git2 || this.tertiaryColor, this.git3 = this.git3 || k(this.primaryColor, { h: -30 }), this.git4 = this.git4 || k(this.primaryColor, { h: -60 }), this.git5 = this.git5 || k(this.primaryColor, { h: -90 }), this.git6 = this.git6 || k(this.primaryColor, { h: 60 }), this.git7 = this.git7 || k(this.primaryColor, { h: 120 }), this.darkMode ? (this.git0 = q(this.git0, 25), this.git1 = q(this.git1, 25), this.git2 = q(this.git2, 25), this.git3 = q(this.git3, 25), this.git4 = q(this.git4, 25), this.git5 = q(this.git5, 25), this.git6 = q(this.git6, 25), this.git7 = q(this.git7, 25)) : (this.git0 = Z(this.git0, 25), this.git1 = Z(this.git1, 25), this.git2 = Z(this.git2, 25), this.git3 = Z(this.git3, 25), this.git4 = Z(this.git4, 25), this.git5 = Z(this.git5, 25), this.git6 = Z(this.git6, 25), this.git7 = Z(this.git7, 25)), this.gitInv0 = this.gitInv0 || D(this.git0), this.gitInv1 = this.gitInv1 || D(this.git1), this.gitInv2 = this.gitInv2 || D(this.git2), this.gitInv3 = this.gitInv3 || D(this.git3), this.gitInv4 = this.gitInv4 || D(this.git4), this.gitInv5 = this.gitInv5 || D(this.git5), this.gitInv6 = this.gitInv6 || D(this.git6), this.gitInv7 = this.gitInv7 || D(this.git7), this.gitBranchLabel0 = this.gitBranchLabel0 || D(this.labelTextColor), this.gitBranchLabel1 = this.gitBranchLabel1 || this.labelTextColor, this.gitBranchLabel2 = this.gitBranchLabel2 || this.labelTextColor, this.gitBranchLabel3 = this.gitBranchLabel3 || D(this.labelTextColor), this.gitBranchLabel4 = this.gitBranchLabel4 || this.labelTextColor, this.gitBranchLabel5 = this.gitBranchLabel5 || this.labelTextColor, this.gitBranchLabel6 = this.gitBranchLabel6 || this.labelTextColor, this.gitBranchLabel7 = this.gitBranchLabel7 || this.labelTextColor, this.tagLabelColor = this.tagLabelColor || this.primaryTextColor, this.tagLabelBackground = this.tagLabelBackground || this.primaryColor, this.tagLabelBorder = this.tagBorder || this.primaryBorderColor, this.tagLabelFontSize = this.tagLabelFontSize || "10px", this.commitLabelColor = this.commitLabelColor || this.secondaryTextColor, this.commitLabelBackground = this.commitLabelBackground || this.secondaryColor, this.commitLabelFontSize = this.commitLabelFontSize || "10px", this.attributeBackgroundColorOdd = this.attributeBackgroundColorOdd || ka, this.attributeBackgroundColorEven = this.attributeBackgroundColorEven || va;
  }
  calculate(t) {
    if (typeof t != "object") {
      this.updateColors();
      return;
    }
    const r = Object.keys(t);
    r.forEach((i) => {
      this[i] = t[i];
    }), this.updateColors(), r.forEach((i) => {
      this[i] = t[i];
    });
  }
}, d(Wr, "Theme"), Wr), j0 = /* @__PURE__ */ d((e) => {
  const t = new H0();
  return t.calculate(e), t;
}, "getThemeVariables"), qr, Y0 = (qr = class {
  constructor() {
    this.primaryColor = "#eee", this.contrast = "#707070", this.secondaryColor = q(this.contrast, 55), this.background = "#ffffff", this.tertiaryColor = k(this.primaryColor, { h: -160 }), this.primaryBorderColor = zt(this.primaryColor, this.darkMode), this.secondaryBorderColor = zt(this.secondaryColor, this.darkMode), this.tertiaryBorderColor = zt(this.tertiaryColor, this.darkMode), this.primaryTextColor = D(this.primaryColor), this.secondaryTextColor = D(this.secondaryColor), this.tertiaryTextColor = D(this.tertiaryColor), this.lineColor = D(this.background), this.textColor = D(this.background), this.mainBkg = "#eee", this.secondBkg = "calculated", this.lineColor = "#666", this.border1 = "#999", this.border2 = "calculated", this.note = "#ffa", this.text = "#333", this.critical = "#d42", this.done = "#bbb", this.arrowheadColor = "#333333", this.fontFamily = '"trebuchet ms", verdana, arial, sans-serif', this.fontSize = "16px", this.THEME_COLOR_LIMIT = 12, this.nodeBkg = "calculated", this.nodeBorder = "calculated", this.clusterBkg = "calculated", this.clusterBorder = "calculated", this.defaultLinkColor = "calculated", this.titleColor = "calculated", this.edgeLabelBackground = "white", this.actorBorder = "calculated", this.actorBkg = "calculated", this.actorTextColor = "calculated", this.actorLineColor = this.actorBorder, this.signalColor = "calculated", this.signalTextColor = "calculated", this.labelBoxBkgColor = "calculated", this.labelBoxBorderColor = "calculated", this.labelTextColor = "calculated", this.loopTextColor = "calculated", this.noteBorderColor = "calculated", this.noteBkgColor = "calculated", this.noteTextColor = "calculated", this.activationBorderColor = "#666", this.activationBkgColor = "#f4f4f4", this.sequenceNumberColor = "white", this.sectionBkgColor = "calculated", this.altSectionBkgColor = "white", this.sectionBkgColor2 = "calculated", this.excludeBkgColor = "#eeeeee", this.taskBorderColor = "calculated", this.taskBkgColor = "calculated", this.taskTextLightColor = "white", this.taskTextColor = "calculated", this.taskTextDarkColor = "calculated", this.taskTextOutsideColor = "calculated", this.taskTextClickableColor = "#003163", this.activeTaskBorderColor = "calculated", this.activeTaskBkgColor = "calculated", this.gridColor = "calculated", this.doneTaskBkgColor = "calculated", this.doneTaskBorderColor = "calculated", this.critBkgColor = "calculated", this.critBorderColor = "calculated", this.todayLineColor = "calculated", this.vertLineColor = "calculated", this.personBorder = this.primaryBorderColor, this.personBkg = this.mainBkg, this.archEdgeColor = "calculated", this.archEdgeArrowColor = "calculated", this.archEdgeWidth = "3", this.archGroupBorderColor = this.primaryBorderColor, this.archGroupBorderWidth = "2px", this.rowOdd = this.rowOdd || q(this.mainBkg, 75) || "#ffffff", this.rowEven = this.rowEven || "#f4f4f4", this.labelColor = "black", this.errorBkgColor = "#552222", this.errorTextColor = "#552222";
  }
  updateColors() {
    var t, r, i, n, a, o, s, l, c, h, u, p, f, g, m, y, x, b, _, S, v;
    this.secondBkg = q(this.contrast, 55), this.border2 = this.contrast, this.actorBorder = q(this.border1, 23), this.actorBkg = this.mainBkg, this.actorTextColor = this.text, this.actorLineColor = this.actorBorder, this.signalColor = this.text, this.signalTextColor = this.text, this.labelBoxBkgColor = this.actorBkg, this.labelBoxBorderColor = this.actorBorder, this.labelTextColor = this.text, this.loopTextColor = this.text, this.noteBorderColor = "#999", this.noteBkgColor = "#666", this.noteTextColor = "#fff", this.cScale0 = this.cScale0 || "#555", this.cScale1 = this.cScale1 || "#F4F4F4", this.cScale2 = this.cScale2 || "#555", this.cScale3 = this.cScale3 || "#BBB", this.cScale4 = this.cScale4 || "#777", this.cScale5 = this.cScale5 || "#999", this.cScale6 = this.cScale6 || "#DDD", this.cScale7 = this.cScale7 || "#FFF", this.cScale8 = this.cScale8 || "#DDD", this.cScale9 = this.cScale9 || "#BBB", this.cScale10 = this.cScale10 || "#999", this.cScale11 = this.cScale11 || "#777";
    for (let C = 0; C < this.THEME_COLOR_LIMIT; C++)
      this["cScaleInv" + C] = this["cScaleInv" + C] || D(this["cScale" + C]);
    for (let C = 0; C < this.THEME_COLOR_LIMIT; C++)
      this.darkMode ? this["cScalePeer" + C] = this["cScalePeer" + C] || q(this["cScale" + C], 10) : this["cScalePeer" + C] = this["cScalePeer" + C] || Z(this["cScale" + C], 10);
    this.scaleLabelColor = this.scaleLabelColor || (this.darkMode ? "black" : this.labelTextColor), this.cScaleLabel0 = this.cScaleLabel0 || this.cScale1, this.cScaleLabel2 = this.cScaleLabel2 || this.cScale1;
    for (let C = 0; C < this.THEME_COLOR_LIMIT; C++)
      this["cScaleLabel" + C] = this["cScaleLabel" + C] || this.scaleLabelColor;
    for (let C = 0; C < 5; C++)
      this["surface" + C] = this["surface" + C] || k(this.mainBkg, { l: -(5 + C * 5) }), this["surfacePeer" + C] = this["surfacePeer" + C] || k(this.mainBkg, { l: -(8 + C * 5) });
    this.nodeBkg = this.mainBkg, this.nodeBorder = this.border1, this.clusterBkg = this.secondBkg, this.clusterBorder = this.border2, this.defaultLinkColor = this.lineColor, this.titleColor = this.text, this.sectionBkgColor = q(this.contrast, 30), this.sectionBkgColor2 = q(this.contrast, 30), this.taskBorderColor = Z(this.contrast, 10), this.taskBkgColor = this.contrast, this.taskTextColor = this.taskTextLightColor, this.taskTextDarkColor = this.text, this.taskTextOutsideColor = this.taskTextDarkColor, this.activeTaskBorderColor = this.taskBorderColor, this.activeTaskBkgColor = this.mainBkg, this.gridColor = q(this.border1, 30), this.doneTaskBkgColor = this.done, this.doneTaskBorderColor = this.lineColor, this.critBkgColor = this.critical, this.critBorderColor = Z(this.critBkgColor, 10), this.todayLineColor = this.critBkgColor, this.vertLineColor = this.critBkgColor, this.archEdgeColor = this.lineColor, this.archEdgeArrowColor = this.lineColor, this.transitionColor = this.transitionColor || "#000", this.transitionLabelColor = this.transitionLabelColor || this.textColor, this.stateLabelColor = this.stateLabelColor || this.stateBkg || this.primaryTextColor, this.stateBkg = this.stateBkg || this.mainBkg, this.labelBackgroundColor = this.labelBackgroundColor || this.stateBkg, this.compositeBackground = this.compositeBackground || this.background || this.tertiaryColor, this.altBackground = this.altBackground || "#f4f4f4", this.compositeTitleBackground = this.compositeTitleBackground || this.mainBkg, this.stateBorder = this.stateBorder || "#000", this.innerEndBackground = this.primaryBorderColor, this.specialStateColor = "#222", this.errorBkgColor = this.errorBkgColor || this.tertiaryColor, this.errorTextColor = this.errorTextColor || this.tertiaryTextColor, this.classText = this.primaryTextColor, this.fillType0 = this.primaryColor, this.fillType1 = this.secondaryColor, this.fillType2 = k(this.primaryColor, { h: 64 }), this.fillType3 = k(this.secondaryColor, { h: 64 }), this.fillType4 = k(this.primaryColor, { h: -64 }), this.fillType5 = k(this.secondaryColor, { h: -64 }), this.fillType6 = k(this.primaryColor, { h: 128 }), this.fillType7 = k(this.secondaryColor, { h: 128 });
    for (let C = 0; C < this.THEME_COLOR_LIMIT; C++)
      this["pie" + C] = this["cScale" + C];
    this.pie12 = this.pie0, this.pieTitleTextSize = this.pieTitleTextSize || "25px", this.pieTitleTextColor = this.pieTitleTextColor || this.taskTextDarkColor, this.pieSectionTextSize = this.pieSectionTextSize || "17px", this.pieSectionTextColor = this.pieSectionTextColor || this.textColor, this.pieLegendTextSize = this.pieLegendTextSize || "17px", this.pieLegendTextColor = this.pieLegendTextColor || this.taskTextDarkColor, this.pieStrokeColor = this.pieStrokeColor || "black", this.pieStrokeWidth = this.pieStrokeWidth || "2px", this.pieOuterStrokeWidth = this.pieOuterStrokeWidth || "2px", this.pieOuterStrokeColor = this.pieOuterStrokeColor || "black", this.pieOpacity = this.pieOpacity || "0.7";
    for (let C = 0; C < 8; C++)
      this["venn" + (C + 1)] = this["venn" + (C + 1)] ?? this["cScale" + C];
    this.vennTitleTextColor = this.vennTitleTextColor ?? this.titleColor, this.vennSetTextColor = this.vennSetTextColor ?? this.textColor, this.quadrant1Fill = this.quadrant1Fill || this.primaryColor, this.quadrant2Fill = this.quadrant2Fill || k(this.primaryColor, { r: 5, g: 5, b: 5 }), this.quadrant3Fill = this.quadrant3Fill || k(this.primaryColor, { r: 10, g: 10, b: 10 }), this.quadrant4Fill = this.quadrant4Fill || k(this.primaryColor, { r: 15, g: 15, b: 15 }), this.quadrant1TextFill = this.quadrant1TextFill || this.primaryTextColor, this.quadrant2TextFill = this.quadrant2TextFill || k(this.primaryTextColor, { r: -5, g: -5, b: -5 }), this.quadrant3TextFill = this.quadrant3TextFill || k(this.primaryTextColor, { r: -10, g: -10, b: -10 }), this.quadrant4TextFill = this.quadrant4TextFill || k(this.primaryTextColor, { r: -15, g: -15, b: -15 }), this.quadrantPointFill = this.quadrantPointFill || Zi(this.quadrant1Fill) ? q(this.quadrant1Fill) : Z(this.quadrant1Fill), this.quadrantPointTextFill = this.quadrantPointTextFill || this.primaryTextColor, this.quadrantXAxisTextFill = this.quadrantXAxisTextFill || this.primaryTextColor, this.quadrantYAxisTextFill = this.quadrantYAxisTextFill || this.primaryTextColor, this.quadrantInternalBorderStrokeFill = this.quadrantInternalBorderStrokeFill || this.primaryBorderColor, this.quadrantExternalBorderStrokeFill = this.quadrantExternalBorderStrokeFill || this.primaryBorderColor, this.quadrantTitleFill = this.quadrantTitleFill || this.primaryTextColor, this.xyChart = {
      backgroundColor: ((t = this.xyChart) == null ? void 0 : t.backgroundColor) || this.background,
      titleColor: ((r = this.xyChart) == null ? void 0 : r.titleColor) || this.primaryTextColor,
      xAxisTitleColor: ((i = this.xyChart) == null ? void 0 : i.xAxisTitleColor) || this.primaryTextColor,
      xAxisLabelColor: ((n = this.xyChart) == null ? void 0 : n.xAxisLabelColor) || this.primaryTextColor,
      xAxisTickColor: ((a = this.xyChart) == null ? void 0 : a.xAxisTickColor) || this.primaryTextColor,
      xAxisLineColor: ((o = this.xyChart) == null ? void 0 : o.xAxisLineColor) || this.primaryTextColor,
      yAxisTitleColor: ((s = this.xyChart) == null ? void 0 : s.yAxisTitleColor) || this.primaryTextColor,
      yAxisLabelColor: ((l = this.xyChart) == null ? void 0 : l.yAxisLabelColor) || this.primaryTextColor,
      yAxisTickColor: ((c = this.xyChart) == null ? void 0 : c.yAxisTickColor) || this.primaryTextColor,
      yAxisLineColor: ((h = this.xyChart) == null ? void 0 : h.yAxisLineColor) || this.primaryTextColor,
      plotColorPalette: ((u = this.xyChart) == null ? void 0 : u.plotColorPalette) || "#EEE,#6BB8E4,#8ACB88,#C7ACD6,#E8DCC2,#FFB2A8,#FFF380,#7E8D91,#FFD8B1,#FAF3E0"
    }, this.radar = {
      axisColor: ((p = this.radar) == null ? void 0 : p.axisColor) || this.lineColor,
      axisStrokeWidth: ((f = this.radar) == null ? void 0 : f.axisStrokeWidth) || 2,
      axisLabelFontSize: ((g = this.radar) == null ? void 0 : g.axisLabelFontSize) || 12,
      curveOpacity: ((m = this.radar) == null ? void 0 : m.curveOpacity) || 0.5,
      curveStrokeWidth: ((y = this.radar) == null ? void 0 : y.curveStrokeWidth) || 2,
      graticuleColor: ((x = this.radar) == null ? void 0 : x.graticuleColor) || "#DEDEDE",
      graticuleStrokeWidth: ((b = this.radar) == null ? void 0 : b.graticuleStrokeWidth) || 1,
      graticuleOpacity: ((_ = this.radar) == null ? void 0 : _.graticuleOpacity) || 0.3,
      legendBoxSize: ((S = this.radar) == null ? void 0 : S.legendBoxSize) || 12,
      legendFontSize: ((v = this.radar) == null ? void 0 : v.legendFontSize) || 12
    }, this.requirementBackground = this.requirementBackground || this.primaryColor, this.requirementBorderColor = this.requirementBorderColor || this.primaryBorderColor, this.requirementBorderSize = this.requirementBorderSize || "1", this.requirementTextColor = this.requirementTextColor || this.primaryTextColor, this.relationColor = this.relationColor || this.lineColor, this.relationLabelBackground = this.relationLabelBackground || this.edgeLabelBackground, this.relationLabelColor = this.relationLabelColor || this.actorTextColor, this.git0 = Z(this.pie1, 25) || this.primaryColor, this.git1 = this.pie2 || this.secondaryColor, this.git2 = this.pie3 || this.tertiaryColor, this.git3 = this.pie4 || k(this.primaryColor, { h: -30 }), this.git4 = this.pie5 || k(this.primaryColor, { h: -60 }), this.git5 = this.pie6 || k(this.primaryColor, { h: -90 }), this.git6 = this.pie7 || k(this.primaryColor, { h: 60 }), this.git7 = this.pie8 || k(this.primaryColor, { h: 120 }), this.gitInv0 = this.gitInv0 || D(this.git0), this.gitInv1 = this.gitInv1 || D(this.git1), this.gitInv2 = this.gitInv2 || D(this.git2), this.gitInv3 = this.gitInv3 || D(this.git3), this.gitInv4 = this.gitInv4 || D(this.git4), this.gitInv5 = this.gitInv5 || D(this.git5), this.gitInv6 = this.gitInv6 || D(this.git6), this.gitInv7 = this.gitInv7 || D(this.git7), this.branchLabelColor = this.branchLabelColor || this.labelTextColor, this.gitBranchLabel0 = this.branchLabelColor, this.gitBranchLabel1 = "white", this.gitBranchLabel2 = this.branchLabelColor, this.gitBranchLabel3 = "white", this.gitBranchLabel4 = this.branchLabelColor, this.gitBranchLabel5 = this.branchLabelColor, this.gitBranchLabel6 = this.branchLabelColor, this.gitBranchLabel7 = this.branchLabelColor, this.tagLabelColor = this.tagLabelColor || this.primaryTextColor, this.tagLabelBackground = this.tagLabelBackground || this.primaryColor, this.tagLabelBorder = this.tagBorder || this.primaryBorderColor, this.tagLabelFontSize = this.tagLabelFontSize || "10px", this.commitLabelColor = this.commitLabelColor || this.secondaryTextColor, this.commitLabelBackground = this.commitLabelBackground || this.secondaryColor, this.commitLabelFontSize = this.commitLabelFontSize || "10px", this.attributeBackgroundColorOdd = this.attributeBackgroundColorOdd || ka, this.attributeBackgroundColorEven = this.attributeBackgroundColorEven || va;
  }
  calculate(t) {
    if (typeof t != "object") {
      this.updateColors();
      return;
    }
    const r = Object.keys(t);
    r.forEach((i) => {
      this[i] = t[i];
    }), this.updateColors(), r.forEach((i) => {
      this[i] = t[i];
    });
  }
}, d(qr, "Theme"), qr), U0 = /* @__PURE__ */ d((e) => {
  const t = new Y0();
  return t.calculate(e), t;
}, "getThemeVariables"), Oe = {
  base: {
    getThemeVariables: P0
  },
  dark: {
    getThemeVariables: z0
  },
  default: {
    getThemeVariables: q0
  },
  forest: {
    getThemeVariables: j0
  },
  neutral: {
    getThemeVariables: U0
  }
}, ee = {
  flowchart: {
    useMaxWidth: !0,
    titleTopMargin: 25,
    subGraphTitleMargin: {
      top: 0,
      bottom: 0
    },
    diagramPadding: 8,
    htmlLabels: null,
    nodeSpacing: 50,
    rankSpacing: 50,
    curve: "basis",
    padding: 15,
    defaultRenderer: "dagre-wrapper",
    wrappingWidth: 200,
    inheritDir: !1
  },
  sequence: {
    useMaxWidth: !0,
    hideUnusedParticipants: !1,
    activationWidth: 10,
    diagramMarginX: 50,
    diagramMarginY: 10,
    actorMargin: 50,
    width: 150,
    height: 65,
    boxMargin: 10,
    boxTextMargin: 5,
    noteMargin: 10,
    messageMargin: 35,
    messageAlign: "center",
    mirrorActors: !0,
    forceMenus: !1,
    bottomMarginAdj: 1,
    rightAngles: !1,
    showSequenceNumbers: !1,
    actorFontSize: 14,
    actorFontFamily: '"Open Sans", sans-serif',
    actorFontWeight: 400,
    noteFontSize: 14,
    noteFontFamily: '"trebuchet ms", verdana, arial, sans-serif',
    noteFontWeight: 400,
    noteAlign: "center",
    messageFontSize: 16,
    messageFontFamily: '"trebuchet ms", verdana, arial, sans-serif',
    messageFontWeight: 400,
    wrap: !1,
    wrapPadding: 10,
    labelBoxWidth: 50,
    labelBoxHeight: 20
  },
  gantt: {
    useMaxWidth: !0,
    titleTopMargin: 25,
    barHeight: 20,
    barGap: 4,
    topPadding: 50,
    rightPadding: 75,
    leftPadding: 75,
    gridLineStartPadding: 35,
    fontSize: 11,
    sectionFontSize: 11,
    numberSectionStyles: 4,
    axisFormat: "%Y-%m-%d",
    topAxis: !1,
    displayMode: "",
    weekday: "sunday"
  },
  journey: {
    useMaxWidth: !0,
    diagramMarginX: 50,
    diagramMarginY: 10,
    leftMargin: 150,
    maxLabelWidth: 360,
    width: 150,
    height: 50,
    boxMargin: 10,
    boxTextMargin: 5,
    noteMargin: 10,
    messageMargin: 35,
    messageAlign: "center",
    bottomMarginAdj: 1,
    rightAngles: !1,
    taskFontSize: 14,
    taskFontFamily: '"Open Sans", sans-serif',
    taskMargin: 50,
    activationWidth: 10,
    textPlacement: "fo",
    actorColours: [
      "#8FBC8F",
      "#7CFC00",
      "#00FFFF",
      "#20B2AA",
      "#B0E0E6",
      "#FFFFE0"
    ],
    sectionFills: [
      "#191970",
      "#8B008B",
      "#4B0082",
      "#2F4F4F",
      "#800000",
      "#8B4513",
      "#00008B"
    ],
    sectionColours: [
      "#fff"
    ],
    titleColor: "",
    titleFontFamily: '"trebuchet ms", verdana, arial, sans-serif',
    titleFontSize: "4ex"
  },
  class: {
    useMaxWidth: !0,
    titleTopMargin: 25,
    arrowMarkerAbsolute: !1,
    dividerMargin: 10,
    padding: 5,
    textHeight: 10,
    defaultRenderer: "dagre-wrapper",
    htmlLabels: !1,
    hideEmptyMembersBox: !1
  },
  state: {
    useMaxWidth: !0,
    titleTopMargin: 25,
    dividerMargin: 10,
    sizeUnit: 5,
    padding: 8,
    textHeight: 10,
    titleShift: -15,
    noteMargin: 10,
    forkWidth: 70,
    forkHeight: 7,
    miniPadding: 2,
    fontSizeFactor: 5.02,
    fontSize: 24,
    labelHeight: 16,
    edgeLengthFactor: "20",
    compositTitleSize: 35,
    radius: 5,
    defaultRenderer: "dagre-wrapper"
  },
  er: {
    useMaxWidth: !0,
    titleTopMargin: 25,
    diagramPadding: 20,
    layoutDirection: "TB",
    minEntityWidth: 100,
    minEntityHeight: 75,
    entityPadding: 15,
    nodeSpacing: 140,
    rankSpacing: 80,
    stroke: "gray",
    fill: "honeydew",
    fontSize: 12
  },
  pie: {
    useMaxWidth: !0,
    textPosition: 0.75
  },
  quadrantChart: {
    useMaxWidth: !0,
    chartWidth: 500,
    chartHeight: 500,
    titleFontSize: 20,
    titlePadding: 10,
    quadrantPadding: 5,
    xAxisLabelPadding: 5,
    yAxisLabelPadding: 5,
    xAxisLabelFontSize: 16,
    yAxisLabelFontSize: 16,
    quadrantLabelFontSize: 16,
    quadrantTextTopPadding: 5,
    pointTextPadding: 5,
    pointLabelFontSize: 12,
    pointRadius: 5,
    xAxisPosition: "top",
    yAxisPosition: "left",
    quadrantInternalBorderStrokeWidth: 1,
    quadrantExternalBorderStrokeWidth: 2
  },
  xyChart: {
    useMaxWidth: !0,
    width: 700,
    height: 500,
    titleFontSize: 20,
    titlePadding: 10,
    showDataLabel: !1,
    showTitle: !0,
    xAxis: {
      $ref: "#/$defs/XYChartAxisConfig",
      showLabel: !0,
      labelFontSize: 14,
      labelPadding: 5,
      showTitle: !0,
      titleFontSize: 16,
      titlePadding: 5,
      showTick: !0,
      tickLength: 5,
      tickWidth: 2,
      showAxisLine: !0,
      axisLineWidth: 2
    },
    yAxis: {
      $ref: "#/$defs/XYChartAxisConfig",
      showLabel: !0,
      labelFontSize: 14,
      labelPadding: 5,
      showTitle: !0,
      titleFontSize: 16,
      titlePadding: 5,
      showTick: !0,
      tickLength: 5,
      tickWidth: 2,
      showAxisLine: !0,
      axisLineWidth: 2
    },
    chartOrientation: "vertical",
    plotReservedSpacePercent: 50
  },
  requirement: {
    useMaxWidth: !0,
    rect_fill: "#f9f9f9",
    text_color: "#333",
    rect_border_size: "0.5px",
    rect_border_color: "#bbb",
    rect_min_width: 200,
    rect_min_height: 200,
    fontSize: 14,
    rect_padding: 10,
    line_height: 20
  },
  mindmap: {
    useMaxWidth: !0,
    padding: 10,
    maxNodeWidth: 200,
    layoutAlgorithm: "cose-bilkent"
  },
  ishikawa: {
    useMaxWidth: !0,
    diagramPadding: 20
  },
  kanban: {
    useMaxWidth: !0,
    padding: 8,
    sectionWidth: 200,
    ticketBaseUrl: ""
  },
  timeline: {
    useMaxWidth: !0,
    diagramMarginX: 50,
    diagramMarginY: 10,
    leftMargin: 150,
    width: 150,
    height: 50,
    boxMargin: 10,
    boxTextMargin: 5,
    noteMargin: 10,
    messageMargin: 35,
    messageAlign: "center",
    bottomMarginAdj: 1,
    rightAngles: !1,
    taskFontSize: 14,
    taskFontFamily: '"Open Sans", sans-serif',
    taskMargin: 50,
    activationWidth: 10,
    textPlacement: "fo",
    actorColours: [
      "#8FBC8F",
      "#7CFC00",
      "#00FFFF",
      "#20B2AA",
      "#B0E0E6",
      "#FFFFE0"
    ],
    sectionFills: [
      "#191970",
      "#8B008B",
      "#4B0082",
      "#2F4F4F",
      "#800000",
      "#8B4513",
      "#00008B"
    ],
    sectionColours: [
      "#fff"
    ],
    disableMulticolor: !1
  },
  gitGraph: {
    useMaxWidth: !0,
    titleTopMargin: 25,
    diagramPadding: 8,
    nodeLabel: {
      width: 75,
      height: 100,
      x: -25,
      y: 0
    },
    mainBranchName: "main",
    mainBranchOrder: 0,
    showCommitLabel: !0,
    showBranches: !0,
    rotateCommitLabel: !0,
    parallelCommits: !1,
    arrowMarkerAbsolute: !1
  },
  c4: {
    useMaxWidth: !0,
    diagramMarginX: 50,
    diagramMarginY: 10,
    c4ShapeMargin: 50,
    c4ShapePadding: 20,
    width: 216,
    height: 60,
    boxMargin: 10,
    c4ShapeInRow: 4,
    nextLinePaddingX: 0,
    c4BoundaryInRow: 2,
    personFontSize: 14,
    personFontFamily: '"Open Sans", sans-serif',
    personFontWeight: "normal",
    external_personFontSize: 14,
    external_personFontFamily: '"Open Sans", sans-serif',
    external_personFontWeight: "normal",
    systemFontSize: 14,
    systemFontFamily: '"Open Sans", sans-serif',
    systemFontWeight: "normal",
    external_systemFontSize: 14,
    external_systemFontFamily: '"Open Sans", sans-serif',
    external_systemFontWeight: "normal",
    system_dbFontSize: 14,
    system_dbFontFamily: '"Open Sans", sans-serif',
    system_dbFontWeight: "normal",
    external_system_dbFontSize: 14,
    external_system_dbFontFamily: '"Open Sans", sans-serif',
    external_system_dbFontWeight: "normal",
    system_queueFontSize: 14,
    system_queueFontFamily: '"Open Sans", sans-serif',
    system_queueFontWeight: "normal",
    external_system_queueFontSize: 14,
    external_system_queueFontFamily: '"Open Sans", sans-serif',
    external_system_queueFontWeight: "normal",
    boundaryFontSize: 14,
    boundaryFontFamily: '"Open Sans", sans-serif',
    boundaryFontWeight: "normal",
    messageFontSize: 12,
    messageFontFamily: '"Open Sans", sans-serif',
    messageFontWeight: "normal",
    containerFontSize: 14,
    containerFontFamily: '"Open Sans", sans-serif',
    containerFontWeight: "normal",
    external_containerFontSize: 14,
    external_containerFontFamily: '"Open Sans", sans-serif',
    external_containerFontWeight: "normal",
    container_dbFontSize: 14,
    container_dbFontFamily: '"Open Sans", sans-serif',
    container_dbFontWeight: "normal",
    external_container_dbFontSize: 14,
    external_container_dbFontFamily: '"Open Sans", sans-serif',
    external_container_dbFontWeight: "normal",
    container_queueFontSize: 14,
    container_queueFontFamily: '"Open Sans", sans-serif',
    container_queueFontWeight: "normal",
    external_container_queueFontSize: 14,
    external_container_queueFontFamily: '"Open Sans", sans-serif',
    external_container_queueFontWeight: "normal",
    componentFontSize: 14,
    componentFontFamily: '"Open Sans", sans-serif',
    componentFontWeight: "normal",
    external_componentFontSize: 14,
    external_componentFontFamily: '"Open Sans", sans-serif',
    external_componentFontWeight: "normal",
    component_dbFontSize: 14,
    component_dbFontFamily: '"Open Sans", sans-serif',
    component_dbFontWeight: "normal",
    external_component_dbFontSize: 14,
    external_component_dbFontFamily: '"Open Sans", sans-serif',
    external_component_dbFontWeight: "normal",
    component_queueFontSize: 14,
    component_queueFontFamily: '"Open Sans", sans-serif',
    component_queueFontWeight: "normal",
    external_component_queueFontSize: 14,
    external_component_queueFontFamily: '"Open Sans", sans-serif',
    external_component_queueFontWeight: "normal",
    wrap: !0,
    wrapPadding: 10,
    person_bg_color: "#08427B",
    person_border_color: "#073B6F",
    external_person_bg_color: "#686868",
    external_person_border_color: "#8A8A8A",
    system_bg_color: "#1168BD",
    system_border_color: "#3C7FC0",
    system_db_bg_color: "#1168BD",
    system_db_border_color: "#3C7FC0",
    system_queue_bg_color: "#1168BD",
    system_queue_border_color: "#3C7FC0",
    external_system_bg_color: "#999999",
    external_system_border_color: "#8A8A8A",
    external_system_db_bg_color: "#999999",
    external_system_db_border_color: "#8A8A8A",
    external_system_queue_bg_color: "#999999",
    external_system_queue_border_color: "#8A8A8A",
    container_bg_color: "#438DD5",
    container_border_color: "#3C7FC0",
    container_db_bg_color: "#438DD5",
    container_db_border_color: "#3C7FC0",
    container_queue_bg_color: "#438DD5",
    container_queue_border_color: "#3C7FC0",
    external_container_bg_color: "#B3B3B3",
    external_container_border_color: "#A6A6A6",
    external_container_db_bg_color: "#B3B3B3",
    external_container_db_border_color: "#A6A6A6",
    external_container_queue_bg_color: "#B3B3B3",
    external_container_queue_border_color: "#A6A6A6",
    component_bg_color: "#85BBF0",
    component_border_color: "#78A8D8",
    component_db_bg_color: "#85BBF0",
    component_db_border_color: "#78A8D8",
    component_queue_bg_color: "#85BBF0",
    component_queue_border_color: "#78A8D8",
    external_component_bg_color: "#CCCCCC",
    external_component_border_color: "#BFBFBF",
    external_component_db_bg_color: "#CCCCCC",
    external_component_db_border_color: "#BFBFBF",
    external_component_queue_bg_color: "#CCCCCC",
    external_component_queue_border_color: "#BFBFBF"
  },
  sankey: {
    useMaxWidth: !0,
    width: 600,
    height: 400,
    linkColor: "gradient",
    nodeAlignment: "justify",
    showValues: !0,
    prefix: "",
    suffix: ""
  },
  block: {
    useMaxWidth: !0,
    padding: 8
  },
  packet: {
    useMaxWidth: !0,
    rowHeight: 32,
    bitWidth: 32,
    bitsPerRow: 32,
    showBits: !0,
    paddingX: 5,
    paddingY: 5
  },
  architecture: {
    useMaxWidth: !0,
    padding: 40,
    iconSize: 80,
    fontSize: 16
  },
  radar: {
    useMaxWidth: !0,
    width: 600,
    height: 600,
    marginTop: 50,
    marginRight: 50,
    marginBottom: 50,
    marginLeft: 50,
    axisScaleFactor: 1,
    axisLabelFactor: 1.05,
    curveTension: 0.17
  },
  venn: {
    useMaxWidth: !0,
    width: 800,
    height: 450,
    padding: 8,
    useDebugLayout: !1
  },
  theme: "default",
  look: "classic",
  handDrawnSeed: 0,
  layout: "dagre",
  maxTextSize: 5e4,
  maxEdges: 500,
  darkMode: !1,
  fontFamily: '"trebuchet ms", verdana, arial, sans-serif;',
  logLevel: 5,
  securityLevel: "strict",
  startOnLoad: !0,
  arrowMarkerAbsolute: !1,
  secure: [
    "secure",
    "securityLevel",
    "startOnLoad",
    "maxTextSize",
    "suppressErrorRendering",
    "maxEdges"
  ],
  legacyMathML: !1,
  forceLegacyMathML: !1,
  deterministicIds: !1,
  fontSize: 16,
  markdownAutoWrap: !0,
  suppressErrorRendering: !1
}, Oh = {
  ...ee,
  // Set, even though they're `undefined` so that `configKeys` finds these keys
  // TODO: Should we replace these with `null` so that they can go in the JSON Schema?
  deterministicIDSeed: void 0,
  elk: {
    // mergeEdges is needed here to be considered
    mergeEdges: !1,
    nodePlacementStrategy: "BRANDES_KOEPF",
    forceNodeModelOrder: !1,
    considerModelOrder: "NODES_AND_EDGES"
  },
  themeCSS: void 0,
  // add non-JSON default config values
  themeVariables: Oe.default.getThemeVariables(),
  sequence: {
    ...ee.sequence,
    messageFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.messageFontFamily,
        fontSize: this.messageFontSize,
        fontWeight: this.messageFontWeight
      };
    }, "messageFont"),
    noteFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.noteFontFamily,
        fontSize: this.noteFontSize,
        fontWeight: this.noteFontWeight
      };
    }, "noteFont"),
    actorFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.actorFontFamily,
        fontSize: this.actorFontSize,
        fontWeight: this.actorFontWeight
      };
    }, "actorFont")
  },
  class: {
    hideEmptyMembersBox: !1
  },
  gantt: {
    ...ee.gantt,
    tickInterval: void 0,
    useWidth: void 0
    // can probably be removed since `configKeys` already includes this
  },
  c4: {
    ...ee.c4,
    useWidth: void 0,
    personFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.personFontFamily,
        fontSize: this.personFontSize,
        fontWeight: this.personFontWeight
      };
    }, "personFont"),
    flowchart: {
      ...ee.flowchart,
      inheritDir: !1
      // default to legacy behavior
    },
    external_personFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.external_personFontFamily,
        fontSize: this.external_personFontSize,
        fontWeight: this.external_personFontWeight
      };
    }, "external_personFont"),
    systemFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.systemFontFamily,
        fontSize: this.systemFontSize,
        fontWeight: this.systemFontWeight
      };
    }, "systemFont"),
    external_systemFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.external_systemFontFamily,
        fontSize: this.external_systemFontSize,
        fontWeight: this.external_systemFontWeight
      };
    }, "external_systemFont"),
    system_dbFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.system_dbFontFamily,
        fontSize: this.system_dbFontSize,
        fontWeight: this.system_dbFontWeight
      };
    }, "system_dbFont"),
    external_system_dbFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.external_system_dbFontFamily,
        fontSize: this.external_system_dbFontSize,
        fontWeight: this.external_system_dbFontWeight
      };
    }, "external_system_dbFont"),
    system_queueFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.system_queueFontFamily,
        fontSize: this.system_queueFontSize,
        fontWeight: this.system_queueFontWeight
      };
    }, "system_queueFont"),
    external_system_queueFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.external_system_queueFontFamily,
        fontSize: this.external_system_queueFontSize,
        fontWeight: this.external_system_queueFontWeight
      };
    }, "external_system_queueFont"),
    containerFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.containerFontFamily,
        fontSize: this.containerFontSize,
        fontWeight: this.containerFontWeight
      };
    }, "containerFont"),
    external_containerFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.external_containerFontFamily,
        fontSize: this.external_containerFontSize,
        fontWeight: this.external_containerFontWeight
      };
    }, "external_containerFont"),
    container_dbFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.container_dbFontFamily,
        fontSize: this.container_dbFontSize,
        fontWeight: this.container_dbFontWeight
      };
    }, "container_dbFont"),
    external_container_dbFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.external_container_dbFontFamily,
        fontSize: this.external_container_dbFontSize,
        fontWeight: this.external_container_dbFontWeight
      };
    }, "external_container_dbFont"),
    container_queueFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.container_queueFontFamily,
        fontSize: this.container_queueFontSize,
        fontWeight: this.container_queueFontWeight
      };
    }, "container_queueFont"),
    external_container_queueFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.external_container_queueFontFamily,
        fontSize: this.external_container_queueFontSize,
        fontWeight: this.external_container_queueFontWeight
      };
    }, "external_container_queueFont"),
    componentFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.componentFontFamily,
        fontSize: this.componentFontSize,
        fontWeight: this.componentFontWeight
      };
    }, "componentFont"),
    external_componentFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.external_componentFontFamily,
        fontSize: this.external_componentFontSize,
        fontWeight: this.external_componentFontWeight
      };
    }, "external_componentFont"),
    component_dbFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.component_dbFontFamily,
        fontSize: this.component_dbFontSize,
        fontWeight: this.component_dbFontWeight
      };
    }, "component_dbFont"),
    external_component_dbFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.external_component_dbFontFamily,
        fontSize: this.external_component_dbFontSize,
        fontWeight: this.external_component_dbFontWeight
      };
    }, "external_component_dbFont"),
    component_queueFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.component_queueFontFamily,
        fontSize: this.component_queueFontSize,
        fontWeight: this.component_queueFontWeight
      };
    }, "component_queueFont"),
    external_component_queueFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.external_component_queueFontFamily,
        fontSize: this.external_component_queueFontSize,
        fontWeight: this.external_component_queueFontWeight
      };
    }, "external_component_queueFont"),
    boundaryFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.boundaryFontFamily,
        fontSize: this.boundaryFontSize,
        fontWeight: this.boundaryFontWeight
      };
    }, "boundaryFont"),
    messageFont: /* @__PURE__ */ d(function() {
      return {
        fontFamily: this.messageFontFamily,
        fontSize: this.messageFontSize,
        fontWeight: this.messageFontWeight
      };
    }, "messageFont")
  },
  pie: {
    ...ee.pie,
    useWidth: 984
  },
  xyChart: {
    ...ee.xyChart,
    useWidth: void 0
  },
  requirement: {
    ...ee.requirement,
    useWidth: void 0
  },
  packet: {
    ...ee.packet
  },
  radar: {
    ...ee.radar
  },
  ishikawa: {
    ...ee.ishikawa
  },
  treemap: {
    useMaxWidth: !0,
    padding: 10,
    diagramPadding: 8,
    showValues: !0,
    nodeWidth: 100,
    nodeHeight: 40,
    borderWidth: 1,
    valueFontSize: 12,
    labelFontSize: 14,
    valueFormat: ","
  },
  venn: {
    ...ee.venn
  }
}, Rh = /* @__PURE__ */ d((e, t = "") => Object.keys(e).reduce((r, i) => Array.isArray(e[i]) ? r : typeof e[i] == "object" && e[i] !== null ? [...r, t + i, ...Rh(e[i], "")] : [...r, t + i], []), "keyify"), G0 = new Set(Rh(Oh, "")), Dh = Oh, Wn = /* @__PURE__ */ d((e) => {
  if (A.debug("sanitizeDirective called with", e), !(typeof e != "object" || e == null)) {
    if (Array.isArray(e)) {
      e.forEach((t) => Wn(t));
      return;
    }
    for (const t of Object.keys(e)) {
      if (A.debug("Checking key", t), t.startsWith("__") || t.includes("proto") || t.includes("constr") || !G0.has(t) || e[t] == null) {
        A.debug("sanitize deleting key: ", t), delete e[t];
        continue;
      }
      if (typeof e[t] == "object") {
        A.debug("sanitizing object", t), Wn(e[t]);
        continue;
      }
      const r = ["themeCSS", "fontFamily", "altFontFamily"];
      for (const i of r)
        t.includes(i) && (A.debug("sanitizing css option", t), e[t] = X0(e[t]));
    }
    if (e.themeVariables)
      for (const t of Object.keys(e.themeVariables)) {
        const r = e.themeVariables[t];
        r != null && r.match && !r.match(/^[\d "#%(),.;A-Za-z]+$/) && (e.themeVariables[t] = "");
      }
    A.debug("After sanitization", e);
  }
}, "sanitizeDirective"), X0 = /* @__PURE__ */ d((e) => {
  let t = 0, r = 0;
  for (const i of e) {
    if (t < r)
      return "{ /* ERROR: Unbalanced CSS */ }";
    i === "{" ? t++ : i === "}" && r++;
  }
  return t !== r ? "{ /* ERROR: Unbalanced CSS */ }" : e;
}, "sanitizeCss"), Ur = Object.freeze(Dh), Ke = /* @__PURE__ */ d((e) => !(e === !1 || ["false", "null", "0"].includes(String(e).trim().toLowerCase())), "evaluate"), Gt = kt({}, Ur), qn, dr = [], $i = kt({}, Ur), Sa = /* @__PURE__ */ d((e, t) => {
  let r = kt({}, e), i = {};
  for (const n of t)
    Nh(n), i = kt(i, n);
  if (r = kt(r, i), i.theme && i.theme in Oe) {
    const n = kt({}, qn), a = kt(
      n.themeVariables || {},
      i.themeVariables
    );
    r.theme && r.theme in Oe && (r.themeVariables = Oe[r.theme].getThemeVariables(a));
  }
  return $i = r, Wh($i), $i;
}, "updateCurrentConfig"), V0 = /* @__PURE__ */ d((e) => (Gt = kt({}, Ur), Gt = kt(Gt, e), e.theme && Oe[e.theme] && (Gt.themeVariables = Oe[e.theme].getThemeVariables(e.themeVariables)), Sa(Gt, dr), Gt), "setSiteConfig"), Z0 = /* @__PURE__ */ d((e) => {
  qn = kt({}, e);
}, "saveConfigFromInitialize"), K0 = /* @__PURE__ */ d((e) => (Gt = kt(Gt, e), Sa(Gt, dr), Gt), "updateSiteConfig"), Ih = /* @__PURE__ */ d(() => kt({}, Gt), "getSiteConfig"), Ph = /* @__PURE__ */ d((e) => (Wh(e), kt($i, e), Ot()), "setConfig"), Ot = /* @__PURE__ */ d(() => kt({}, $i), "getConfig"), Nh = /* @__PURE__ */ d((e) => {
  e && (["secure", ...Gt.secure ?? []].forEach((t) => {
    Object.hasOwn(e, t) && (A.debug(`Denied attempt to modify a secure key ${t}`, e[t]), delete e[t]);
  }), Object.keys(e).forEach((t) => {
    t.startsWith("__") && delete e[t];
  }), Object.keys(e).forEach((t) => {
    typeof e[t] == "string" && (e[t].includes("<") || e[t].includes(">") || e[t].includes("url(data:")) && delete e[t], typeof e[t] == "object" && Nh(e[t]);
  }));
}, "sanitize"), Q0 = /* @__PURE__ */ d((e) => {
  var t;
  Wn(e), e.fontFamily && !((t = e.themeVariables) != null && t.fontFamily) && (e.themeVariables = {
    ...e.themeVariables,
    fontFamily: e.fontFamily
  }), dr.push(e), Sa(Gt, dr);
}, "addDirective"), Hn = /* @__PURE__ */ d((e = Gt) => {
  dr = [], Sa(e, dr);
}, "reset"), J0 = {
  LAZY_LOAD_DEPRECATED: "The configuration options lazyLoadedDiagrams and loadExternalDiagramsAtStartup are deprecated. Please use registerExternalDiagrams instead.",
  FLOWCHART_HTML_LABELS_DEPRECATED: "flowchart.htmlLabels is deprecated. Please use global htmlLabels instead."
}, Ql = {}, zh = /* @__PURE__ */ d((e) => {
  Ql[e] || (A.warn(J0[e]), Ql[e] = !0);
}, "issueWarning"), Wh = /* @__PURE__ */ d((e) => {
  e && (e.lazyLoadedDiagrams || e.loadExternalDiagramsAtStartup) && zh("LAZY_LOAD_DEPRECATED");
}, "checkConfig"), oL = /* @__PURE__ */ d(() => {
  let e = {};
  qn && (e = kt(e, qn));
  for (const t of dr)
    e = kt(e, t);
  return e;
}, "getUserDefinedConfig"), It = /* @__PURE__ */ d((e) => {
  var t, r;
  return ((t = e.flowchart) == null ? void 0 : t.htmlLabels) != null && zh("FLOWCHART_HTML_LABELS_DEPRECATED"), Ke(e.htmlLabels ?? ((r = e.flowchart) == null ? void 0 : r.htmlLabels) ?? !0);
}, "getEffectiveHtmlLabels"), Ki = /<br\s*\/?>/gi, ty = /* @__PURE__ */ d((e) => e ? jh(e).replace(/\\n/g, "#br#").split("#br#") : [""], "getRows"), ey = /* @__PURE__ */ (() => {
  let e = !1;
  return () => {
    e || (qh(), e = !0);
  };
})();
function qh() {
  const e = "data-temp-href-target";
  Yr.addHook("beforeSanitizeAttributes", (t) => {
    t.tagName === "A" && t.hasAttribute("target") && t.setAttribute(e, t.getAttribute("target") ?? "");
  }), Yr.addHook("afterSanitizeAttributes", (t) => {
    t.tagName === "A" && t.hasAttribute(e) && (t.setAttribute("target", t.getAttribute(e) ?? ""), t.removeAttribute(e), t.getAttribute("target") === "_blank" && t.setAttribute("rel", "noopener"));
  });
}
d(qh, "setupDompurifyHooks");
var Hh = /* @__PURE__ */ d((e) => (ey(), Yr.sanitize(e)), "removeScript"), Jl = /* @__PURE__ */ d((e, t) => {
  if (It(t)) {
    const r = t.securityLevel;
    r === "antiscript" || r === "strict" || r === "sandbox" ? e = Hh(e) : r !== "loose" && (e = jh(e), e = e.replace(/</g, "&lt;").replace(/>/g, "&gt;"), e = e.replace(/=/g, "&equals;"), e = ay(e));
  }
  return e;
}, "sanitizeMore"), pe = /* @__PURE__ */ d((e, t) => e && (t.dompurifyConfig ? e = Yr.sanitize(Jl(e, t), t.dompurifyConfig).toString() : e = Yr.sanitize(Jl(e, t), {
  FORBID_TAGS: ["style"]
}).toString(), e), "sanitizeText"), ry = /* @__PURE__ */ d((e, t) => typeof e == "string" ? pe(e, t) : e.flat().map((r) => pe(r, t)), "sanitizeTextOrArray"), iy = /* @__PURE__ */ d((e) => Ki.test(e), "hasBreaks"), ny = /* @__PURE__ */ d((e) => e.split(Ki), "splitBreaks"), ay = /* @__PURE__ */ d((e) => e.replace(/#br#/g, "<br/>"), "placeholderToBreak"), jh = /* @__PURE__ */ d((e) => e.replace(Ki, "#br#"), "breakToPlaceholder"), sy = /* @__PURE__ */ d((e) => {
  let t = "";
  return e && (t = window.location.protocol + "//" + window.location.host + window.location.pathname + window.location.search, t = CSS.escape(t)), t;
}, "getUrl"), oy = /* @__PURE__ */ d(function(...e) {
  const t = e.filter((r) => !isNaN(r));
  return Math.max(...t);
}, "getMax"), ly = /* @__PURE__ */ d(function(...e) {
  const t = e.filter((r) => !isNaN(r));
  return Math.min(...t);
}, "getMin"), tc = /* @__PURE__ */ d(function(e) {
  const t = e.split(/(,)/), r = [];
  for (let i = 0; i < t.length; i++) {
    let n = t[i];
    if (n === "," && i > 0 && i + 1 < t.length) {
      const a = t[i - 1], o = t[i + 1];
      cy(a, o) && (n = a + "," + o, i++, r.pop());
    }
    r.push(hy(n));
  }
  return r.join("");
}, "parseGenericTypes"), Ls = /* @__PURE__ */ d((e, t) => Math.max(0, e.split(t).length - 1), "countOccurrence"), cy = /* @__PURE__ */ d((e, t) => {
  const r = Ls(e, "~"), i = Ls(t, "~");
  return r === 1 && i === 1;
}, "shouldCombineSets"), hy = /* @__PURE__ */ d((e) => {
  const t = Ls(e, "~");
  let r = !1;
  if (t <= 1)
    return e;
  t % 2 !== 0 && e.startsWith("~") && (e = e.substring(1), r = !0);
  const i = [...e];
  let n = i.indexOf("~"), a = i.lastIndexOf("~");
  for (; n !== -1 && a !== -1 && n !== a; )
    i[n] = "<", i[a] = ">", n = i.indexOf("~"), a = i.lastIndexOf("~");
  return r && i.unshift("~"), i.join("");
}, "processSet"), ec = /* @__PURE__ */ d(() => window.MathMLElement !== void 0, "isMathMLSupported"), Ms = /\$\$(.*)\$\$/g, Di = /* @__PURE__ */ d((e) => {
  var t;
  return (((t = e.match(Ms)) == null ? void 0 : t.length) ?? 0) > 0;
}, "hasKatex"), lL = /* @__PURE__ */ d(async (e, t) => {
  const r = document.createElement("div");
  r.innerHTML = await Yh(e, t), r.id = "katex-temp", r.style.visibility = "hidden", r.style.position = "absolute", r.style.top = "0";
  const i = document.querySelector("body");
  i == null || i.insertAdjacentElement("beforeend", r);
  const n = { width: r.clientWidth, height: r.clientHeight };
  return r.remove(), n;
}, "calculateMathMLDimensions"), uy = /* @__PURE__ */ d(async (e, t) => {
  if (!Di(e))
    return e;
  if (!(ec() || t.legacyMathML || t.forceLegacyMathML))
    return e.replace(Ms, "MathML is unsupported in this environment.");
  {
    const { default: r } = await import("./katex-B0W_EFm_.js"), i = t.forceLegacyMathML || !ec() && t.legacyMathML ? "htmlAndMathml" : "mathml";
    return e.split(Ki).map(
      (n) => Di(n) ? `<div style="display: flex; align-items: center; justify-content: center; white-space: nowrap;">${n}</div>` : `<div>${n}</div>`
    ).join("").replace(
      Ms,
      (n, a) => r.renderToString(a, {
        throwOnError: !0,
        displayMode: !0,
        output: i
      }).replace(/\n/g, " ").replace(/<annotation.*<\/annotation>/g, "")
    );
  }
}, "renderKatexUnsanitized"), Yh = /* @__PURE__ */ d(async (e, t) => pe(await uy(e, t), t), "renderKatexSanitized"), Qi = {
  getRows: ty,
  sanitizeText: pe,
  sanitizeTextOrArray: ry,
  hasBreaks: iy,
  splitBreaks: ny,
  lineBreakRegex: Ki,
  removeScript: Hh,
  getUrl: sy,
  evaluate: Ke,
  getMax: oy,
  getMin: ly
}, fy = /* @__PURE__ */ d(function(e, t) {
  for (let r of t)
    e.attr(r[0], r[1]);
}, "d3Attrs"), py = /* @__PURE__ */ d(function(e, t, r) {
  let i = /* @__PURE__ */ new Map();
  return r ? (i.set("width", "100%"), i.set("style", `max-width: ${t}px;`)) : (i.set("height", e), i.set("width", t)), i;
}, "calculateSvgSizeAttrs"), Uh = /* @__PURE__ */ d(function(e, t, r, i) {
  const n = py(t, r, i);
  fy(e, n);
}, "configureSvgSize"), dy = /* @__PURE__ */ d(function(e, t, r, i) {
  const n = t.node().getBBox(), a = n.width, o = n.height;
  A.info(`SVG bounds: ${a}x${o}`, n);
  let s = 0, l = 0;
  A.info(`Graph bounds: ${s}x${l}`, e), s = a + r * 2, l = o + r * 2, A.info(`Calculated bounds: ${s}x${l}`), Uh(t, l, s, i);
  const c = `${n.x - r} ${n.y - r} ${n.width + 2 * r} ${n.height + 2 * r}`;
  t.attr("viewBox", c);
}, "setupGraphViewbox"), Mn = {}, gy = /* @__PURE__ */ d((e, t, r) => {
  let i = "";
  return e in Mn && Mn[e] ? i = Mn[e](r) : A.warn(`No theme found for ${e}`), ` & {
    font-family: ${r.fontFamily};
    font-size: ${r.fontSize};
    fill: ${r.textColor}
  }
  @keyframes edge-animation-frame {
    from {
      stroke-dashoffset: 0;
    }
  }
  @keyframes dash {
    to {
      stroke-dashoffset: 0;
    }
  }
  & .edge-animation-slow {
    stroke-dasharray: 9,5 !important;
    stroke-dashoffset: 900;
    animation: dash 50s linear infinite;
    stroke-linecap: round;
  }
  & .edge-animation-fast {
    stroke-dasharray: 9,5 !important;
    stroke-dashoffset: 900;
    animation: dash 20s linear infinite;
    stroke-linecap: round;
  }
  /* Classes common for multiple diagrams */

  & .error-icon {
    fill: ${r.errorBkgColor};
  }
  & .error-text {
    fill: ${r.errorTextColor};
    stroke: ${r.errorTextColor};
  }

  & .edge-thickness-normal {
    stroke-width: 1px;
  }
  & .edge-thickness-thick {
    stroke-width: 3.5px
  }
  & .edge-pattern-solid {
    stroke-dasharray: 0;
  }
  & .edge-thickness-invisible {
    stroke-width: 0;
    fill: none;
  }
  & .edge-pattern-dashed{
    stroke-dasharray: 3;
  }
  .edge-pattern-dotted {
    stroke-dasharray: 2;
  }

  & .marker {
    fill: ${r.lineColor};
    stroke: ${r.lineColor};
  }
  & .marker.cross {
    stroke: ${r.lineColor};
  }

  & svg {
    font-family: ${r.fontFamily};
    font-size: ${r.fontSize};
  }
   & p {
    margin: 0
   }

  ${i}

  ${t}
`;
}, "getStyles"), my = /* @__PURE__ */ d((e, t) => {
  t !== void 0 && (Mn[e] = t);
}, "addStylesForDiagram"), yy = gy, Gh = {};
s0(Gh, {
  clear: () => xy,
  getAccDescription: () => wy,
  getAccTitle: () => Cy,
  getDiagramTitle: () => vy,
  setAccDescription: () => _y,
  setAccTitle: () => by,
  setDiagramTitle: () => ky
});
var Bo = "", Ao = "", Lo = "", Mo = /* @__PURE__ */ d((e) => pe(e, Ot()), "sanitizeText"), xy = /* @__PURE__ */ d(() => {
  Bo = "", Lo = "", Ao = "";
}, "clear"), by = /* @__PURE__ */ d((e) => {
  Bo = Mo(e).replace(/^\s+/g, "");
}, "setAccTitle"), Cy = /* @__PURE__ */ d(() => Bo, "getAccTitle"), _y = /* @__PURE__ */ d((e) => {
  Lo = Mo(e).replace(/\n\s+/g, `
`);
}, "setAccDescription"), wy = /* @__PURE__ */ d(() => Lo, "getAccDescription"), ky = /* @__PURE__ */ d((e) => {
  Ao = Mo(e);
}, "setDiagramTitle"), vy = /* @__PURE__ */ d(() => Ao, "getDiagramTitle"), rc = A, Sy = So, ot = Ot, cL = Ph, hL = Ur, Eo = /* @__PURE__ */ d((e) => pe(e, ot()), "sanitizeText"), Ty = dy, By = /* @__PURE__ */ d(() => Gh, "getCommonDb"), jn = {}, Yn = /* @__PURE__ */ d((e, t, r) => {
  var i;
  jn[e] && rc.warn(`Diagram with id ${e} already registered. Overwriting.`), jn[e] = t, r && Fh(e, r), my(e, t.styles), (i = t.injectUtils) == null || i.call(
    t,
    rc,
    Sy,
    ot,
    Eo,
    Ty,
    By(),
    () => {
    }
  );
}, "registerDiagram"), Es = /* @__PURE__ */ d((e) => {
  if (e in jn)
    return jn[e];
  throw new Ay(e);
}, "getDiagram"), Hr, Ay = (Hr = class extends Error {
  constructor(t) {
    super(`Diagram ${t} not found.`);
  }
}, d(Hr, "DiagramNotFoundError"), Hr), Ly = { value: () => {
} };
function Xh() {
  for (var e = 0, t = arguments.length, r = {}, i; e < t; ++e) {
    if (!(i = arguments[e] + "") || i in r || /[\s.]/.test(i)) throw new Error("illegal type: " + i);
    r[i] = [];
  }
  return new En(r);
}
function En(e) {
  this._ = e;
}
function My(e, t) {
  return e.trim().split(/^|\s+/).map(function(r) {
    var i = "", n = r.indexOf(".");
    if (n >= 0 && (i = r.slice(n + 1), r = r.slice(0, n)), r && !t.hasOwnProperty(r)) throw new Error("unknown type: " + r);
    return { type: r, name: i };
  });
}
En.prototype = Xh.prototype = {
  constructor: En,
  on: function(e, t) {
    var r = this._, i = My(e + "", r), n, a = -1, o = i.length;
    if (arguments.length < 2) {
      for (; ++a < o; ) if ((n = (e = i[a]).type) && (n = Ey(r[n], e.name))) return n;
      return;
    }
    if (t != null && typeof t != "function") throw new Error("invalid callback: " + t);
    for (; ++a < o; )
      if (n = (e = i[a]).type) r[n] = ic(r[n], e.name, t);
      else if (t == null) for (n in r) r[n] = ic(r[n], e.name, null);
    return this;
  },
  copy: function() {
    var e = {}, t = this._;
    for (var r in t) e[r] = t[r].slice();
    return new En(e);
  },
  call: function(e, t) {
    if ((n = arguments.length - 2) > 0) for (var r = new Array(n), i = 0, n, a; i < n; ++i) r[i] = arguments[i + 2];
    if (!this._.hasOwnProperty(e)) throw new Error("unknown type: " + e);
    for (a = this._[e], i = 0, n = a.length; i < n; ++i) a[i].value.apply(t, r);
  },
  apply: function(e, t, r) {
    if (!this._.hasOwnProperty(e)) throw new Error("unknown type: " + e);
    for (var i = this._[e], n = 0, a = i.length; n < a; ++n) i[n].value.apply(t, r);
  }
};
function Ey(e, t) {
  for (var r = 0, i = e.length, n; r < i; ++r)
    if ((n = e[r]).name === t)
      return n.value;
}
function ic(e, t, r) {
  for (var i = 0, n = e.length; i < n; ++i)
    if (e[i].name === t) {
      e[i] = Ly, e = e.slice(0, i).concat(e.slice(i + 1));
      break;
    }
  return r != null && e.push({ name: t, value: r }), e;
}
var $s = "http://www.w3.org/1999/xhtml";
const nc = {
  svg: "http://www.w3.org/2000/svg",
  xhtml: $s,
  xlink: "http://www.w3.org/1999/xlink",
  xml: "http://www.w3.org/XML/1998/namespace",
  xmlns: "http://www.w3.org/2000/xmlns/"
};
function Ta(e) {
  var t = e += "", r = t.indexOf(":");
  return r >= 0 && (t = e.slice(0, r)) !== "xmlns" && (e = e.slice(r + 1)), nc.hasOwnProperty(t) ? { space: nc[t], local: e } : e;
}
function $y(e) {
  return function() {
    var t = this.ownerDocument, r = this.namespaceURI;
    return r === $s && t.documentElement.namespaceURI === $s ? t.createElement(e) : t.createElementNS(r, e);
  };
}
function Fy(e) {
  return function() {
    return this.ownerDocument.createElementNS(e.space, e.local);
  };
}
function Vh(e) {
  var t = Ta(e);
  return (t.local ? Fy : $y)(t);
}
function Oy() {
}
function $o(e) {
  return e == null ? Oy : function() {
    return this.querySelector(e);
  };
}
function Ry(e) {
  typeof e != "function" && (e = $o(e));
  for (var t = this._groups, r = t.length, i = new Array(r), n = 0; n < r; ++n)
    for (var a = t[n], o = a.length, s = i[n] = new Array(o), l, c, h = 0; h < o; ++h)
      (l = a[h]) && (c = e.call(l, l.__data__, h, a)) && ("__data__" in l && (c.__data__ = l.__data__), s[h] = c);
  return new Jt(i, this._parents);
}
function Dy(e) {
  return e == null ? [] : Array.isArray(e) ? e : Array.from(e);
}
function Iy() {
  return [];
}
function Zh(e) {
  return e == null ? Iy : function() {
    return this.querySelectorAll(e);
  };
}
function Py(e) {
  return function() {
    return Dy(e.apply(this, arguments));
  };
}
function Ny(e) {
  typeof e == "function" ? e = Py(e) : e = Zh(e);
  for (var t = this._groups, r = t.length, i = [], n = [], a = 0; a < r; ++a)
    for (var o = t[a], s = o.length, l, c = 0; c < s; ++c)
      (l = o[c]) && (i.push(e.call(l, l.__data__, c, o)), n.push(l));
  return new Jt(i, n);
}
function Kh(e) {
  return function() {
    return this.matches(e);
  };
}
function Qh(e) {
  return function(t) {
    return t.matches(e);
  };
}
var zy = Array.prototype.find;
function Wy(e) {
  return function() {
    return zy.call(this.children, e);
  };
}
function qy() {
  return this.firstElementChild;
}
function Hy(e) {
  return this.select(e == null ? qy : Wy(typeof e == "function" ? e : Qh(e)));
}
var jy = Array.prototype.filter;
function Yy() {
  return Array.from(this.children);
}
function Uy(e) {
  return function() {
    return jy.call(this.children, e);
  };
}
function Gy(e) {
  return this.selectAll(e == null ? Yy : Uy(typeof e == "function" ? e : Qh(e)));
}
function Xy(e) {
  typeof e != "function" && (e = Kh(e));
  for (var t = this._groups, r = t.length, i = new Array(r), n = 0; n < r; ++n)
    for (var a = t[n], o = a.length, s = i[n] = [], l, c = 0; c < o; ++c)
      (l = a[c]) && e.call(l, l.__data__, c, a) && s.push(l);
  return new Jt(i, this._parents);
}
function Jh(e) {
  return new Array(e.length);
}
function Vy() {
  return new Jt(this._enter || this._groups.map(Jh), this._parents);
}
function Un(e, t) {
  this.ownerDocument = e.ownerDocument, this.namespaceURI = e.namespaceURI, this._next = null, this._parent = e, this.__data__ = t;
}
Un.prototype = {
  constructor: Un,
  appendChild: function(e) {
    return this._parent.insertBefore(e, this._next);
  },
  insertBefore: function(e, t) {
    return this._parent.insertBefore(e, t);
  },
  querySelector: function(e) {
    return this._parent.querySelector(e);
  },
  querySelectorAll: function(e) {
    return this._parent.querySelectorAll(e);
  }
};
function Zy(e) {
  return function() {
    return e;
  };
}
function Ky(e, t, r, i, n, a) {
  for (var o = 0, s, l = t.length, c = a.length; o < c; ++o)
    (s = t[o]) ? (s.__data__ = a[o], i[o] = s) : r[o] = new Un(e, a[o]);
  for (; o < l; ++o)
    (s = t[o]) && (n[o] = s);
}
function Qy(e, t, r, i, n, a, o) {
  var s, l, c = /* @__PURE__ */ new Map(), h = t.length, u = a.length, p = new Array(h), f;
  for (s = 0; s < h; ++s)
    (l = t[s]) && (p[s] = f = o.call(l, l.__data__, s, t) + "", c.has(f) ? n[s] = l : c.set(f, l));
  for (s = 0; s < u; ++s)
    f = o.call(e, a[s], s, a) + "", (l = c.get(f)) ? (i[s] = l, l.__data__ = a[s], c.delete(f)) : r[s] = new Un(e, a[s]);
  for (s = 0; s < h; ++s)
    (l = t[s]) && c.get(p[s]) === l && (n[s] = l);
}
function Jy(e) {
  return e.__data__;
}
function tx(e, t) {
  if (!arguments.length) return Array.from(this, Jy);
  var r = t ? Qy : Ky, i = this._parents, n = this._groups;
  typeof e != "function" && (e = Zy(e));
  for (var a = n.length, o = new Array(a), s = new Array(a), l = new Array(a), c = 0; c < a; ++c) {
    var h = i[c], u = n[c], p = u.length, f = ex(e.call(h, h && h.__data__, c, i)), g = f.length, m = s[c] = new Array(g), y = o[c] = new Array(g), x = l[c] = new Array(p);
    r(h, u, m, y, x, f, t);
    for (var b = 0, _ = 0, S, v; b < g; ++b)
      if (S = m[b]) {
        for (b >= _ && (_ = b + 1); !(v = y[_]) && ++_ < g; ) ;
        S._next = v || null;
      }
  }
  return o = new Jt(o, i), o._enter = s, o._exit = l, o;
}
function ex(e) {
  return typeof e == "object" && "length" in e ? e : Array.from(e);
}
function rx() {
  return new Jt(this._exit || this._groups.map(Jh), this._parents);
}
function ix(e, t, r) {
  var i = this.enter(), n = this, a = this.exit();
  return typeof e == "function" ? (i = e(i), i && (i = i.selection())) : i = i.append(e + ""), t != null && (n = t(n), n && (n = n.selection())), r == null ? a.remove() : r(a), i && n ? i.merge(n).order() : n;
}
function nx(e) {
  for (var t = e.selection ? e.selection() : e, r = this._groups, i = t._groups, n = r.length, a = i.length, o = Math.min(n, a), s = new Array(n), l = 0; l < o; ++l)
    for (var c = r[l], h = i[l], u = c.length, p = s[l] = new Array(u), f, g = 0; g < u; ++g)
      (f = c[g] || h[g]) && (p[g] = f);
  for (; l < n; ++l)
    s[l] = r[l];
  return new Jt(s, this._parents);
}
function ax() {
  for (var e = this._groups, t = -1, r = e.length; ++t < r; )
    for (var i = e[t], n = i.length - 1, a = i[n], o; --n >= 0; )
      (o = i[n]) && (a && o.compareDocumentPosition(a) ^ 4 && a.parentNode.insertBefore(o, a), a = o);
  return this;
}
function sx(e) {
  e || (e = ox);
  function t(u, p) {
    return u && p ? e(u.__data__, p.__data__) : !u - !p;
  }
  for (var r = this._groups, i = r.length, n = new Array(i), a = 0; a < i; ++a) {
    for (var o = r[a], s = o.length, l = n[a] = new Array(s), c, h = 0; h < s; ++h)
      (c = o[h]) && (l[h] = c);
    l.sort(t);
  }
  return new Jt(n, this._parents).order();
}
function ox(e, t) {
  return e < t ? -1 : e > t ? 1 : e >= t ? 0 : NaN;
}
function lx() {
  var e = arguments[0];
  return arguments[0] = this, e.apply(null, arguments), this;
}
function cx() {
  return Array.from(this);
}
function hx() {
  for (var e = this._groups, t = 0, r = e.length; t < r; ++t)
    for (var i = e[t], n = 0, a = i.length; n < a; ++n) {
      var o = i[n];
      if (o) return o;
    }
  return null;
}
function ux() {
  let e = 0;
  for (const t of this) ++e;
  return e;
}
function fx() {
  return !this.node();
}
function px(e) {
  for (var t = this._groups, r = 0, i = t.length; r < i; ++r)
    for (var n = t[r], a = 0, o = n.length, s; a < o; ++a)
      (s = n[a]) && e.call(s, s.__data__, a, n);
  return this;
}
function dx(e) {
  return function() {
    this.removeAttribute(e);
  };
}
function gx(e) {
  return function() {
    this.removeAttributeNS(e.space, e.local);
  };
}
function mx(e, t) {
  return function() {
    this.setAttribute(e, t);
  };
}
function yx(e, t) {
  return function() {
    this.setAttributeNS(e.space, e.local, t);
  };
}
function xx(e, t) {
  return function() {
    var r = t.apply(this, arguments);
    r == null ? this.removeAttribute(e) : this.setAttribute(e, r);
  };
}
function bx(e, t) {
  return function() {
    var r = t.apply(this, arguments);
    r == null ? this.removeAttributeNS(e.space, e.local) : this.setAttributeNS(e.space, e.local, r);
  };
}
function Cx(e, t) {
  var r = Ta(e);
  if (arguments.length < 2) {
    var i = this.node();
    return r.local ? i.getAttributeNS(r.space, r.local) : i.getAttribute(r);
  }
  return this.each((t == null ? r.local ? gx : dx : typeof t == "function" ? r.local ? bx : xx : r.local ? yx : mx)(r, t));
}
function tu(e) {
  return e.ownerDocument && e.ownerDocument.defaultView || e.document && e || e.defaultView;
}
function _x(e) {
  return function() {
    this.style.removeProperty(e);
  };
}
function wx(e, t, r) {
  return function() {
    this.style.setProperty(e, t, r);
  };
}
function kx(e, t, r) {
  return function() {
    var i = t.apply(this, arguments);
    i == null ? this.style.removeProperty(e) : this.style.setProperty(e, i, r);
  };
}
function vx(e, t, r) {
  return arguments.length > 1 ? this.each((t == null ? _x : typeof t == "function" ? kx : wx)(e, t, r ?? "")) : Gr(this.node(), e);
}
function Gr(e, t) {
  return e.style.getPropertyValue(t) || tu(e).getComputedStyle(e, null).getPropertyValue(t);
}
function Sx(e) {
  return function() {
    delete this[e];
  };
}
function Tx(e, t) {
  return function() {
    this[e] = t;
  };
}
function Bx(e, t) {
  return function() {
    var r = t.apply(this, arguments);
    r == null ? delete this[e] : this[e] = r;
  };
}
function Ax(e, t) {
  return arguments.length > 1 ? this.each((t == null ? Sx : typeof t == "function" ? Bx : Tx)(e, t)) : this.node()[e];
}
function eu(e) {
  return e.trim().split(/^|\s+/);
}
function Fo(e) {
  return e.classList || new ru(e);
}
function ru(e) {
  this._node = e, this._names = eu(e.getAttribute("class") || "");
}
ru.prototype = {
  add: function(e) {
    var t = this._names.indexOf(e);
    t < 0 && (this._names.push(e), this._node.setAttribute("class", this._names.join(" ")));
  },
  remove: function(e) {
    var t = this._names.indexOf(e);
    t >= 0 && (this._names.splice(t, 1), this._node.setAttribute("class", this._names.join(" ")));
  },
  contains: function(e) {
    return this._names.indexOf(e) >= 0;
  }
};
function iu(e, t) {
  for (var r = Fo(e), i = -1, n = t.length; ++i < n; ) r.add(t[i]);
}
function nu(e, t) {
  for (var r = Fo(e), i = -1, n = t.length; ++i < n; ) r.remove(t[i]);
}
function Lx(e) {
  return function() {
    iu(this, e);
  };
}
function Mx(e) {
  return function() {
    nu(this, e);
  };
}
function Ex(e, t) {
  return function() {
    (t.apply(this, arguments) ? iu : nu)(this, e);
  };
}
function $x(e, t) {
  var r = eu(e + "");
  if (arguments.length < 2) {
    for (var i = Fo(this.node()), n = -1, a = r.length; ++n < a; ) if (!i.contains(r[n])) return !1;
    return !0;
  }
  return this.each((typeof t == "function" ? Ex : t ? Lx : Mx)(r, t));
}
function Fx() {
  this.textContent = "";
}
function Ox(e) {
  return function() {
    this.textContent = e;
  };
}
function Rx(e) {
  return function() {
    var t = e.apply(this, arguments);
    this.textContent = t ?? "";
  };
}
function Dx(e) {
  return arguments.length ? this.each(e == null ? Fx : (typeof e == "function" ? Rx : Ox)(e)) : this.node().textContent;
}
function Ix() {
  this.innerHTML = "";
}
function Px(e) {
  return function() {
    this.innerHTML = e;
  };
}
function Nx(e) {
  return function() {
    var t = e.apply(this, arguments);
    this.innerHTML = t ?? "";
  };
}
function zx(e) {
  return arguments.length ? this.each(e == null ? Ix : (typeof e == "function" ? Nx : Px)(e)) : this.node().innerHTML;
}
function Wx() {
  this.nextSibling && this.parentNode.appendChild(this);
}
function qx() {
  return this.each(Wx);
}
function Hx() {
  this.previousSibling && this.parentNode.insertBefore(this, this.parentNode.firstChild);
}
function jx() {
  return this.each(Hx);
}
function Yx(e) {
  var t = typeof e == "function" ? e : Vh(e);
  return this.select(function() {
    return this.appendChild(t.apply(this, arguments));
  });
}
function Ux() {
  return null;
}
function Gx(e, t) {
  var r = typeof e == "function" ? e : Vh(e), i = t == null ? Ux : typeof t == "function" ? t : $o(t);
  return this.select(function() {
    return this.insertBefore(r.apply(this, arguments), i.apply(this, arguments) || null);
  });
}
function Xx() {
  var e = this.parentNode;
  e && e.removeChild(this);
}
function Vx() {
  return this.each(Xx);
}
function Zx() {
  var e = this.cloneNode(!1), t = this.parentNode;
  return t ? t.insertBefore(e, this.nextSibling) : e;
}
function Kx() {
  var e = this.cloneNode(!0), t = this.parentNode;
  return t ? t.insertBefore(e, this.nextSibling) : e;
}
function Qx(e) {
  return this.select(e ? Kx : Zx);
}
function Jx(e) {
  return arguments.length ? this.property("__data__", e) : this.node().__data__;
}
function tb(e) {
  return function(t) {
    e.call(this, t, this.__data__);
  };
}
function eb(e) {
  return e.trim().split(/^|\s+/).map(function(t) {
    var r = "", i = t.indexOf(".");
    return i >= 0 && (r = t.slice(i + 1), t = t.slice(0, i)), { type: t, name: r };
  });
}
function rb(e) {
  return function() {
    var t = this.__on;
    if (t) {
      for (var r = 0, i = -1, n = t.length, a; r < n; ++r)
        a = t[r], (!e.type || a.type === e.type) && a.name === e.name ? this.removeEventListener(a.type, a.listener, a.options) : t[++i] = a;
      ++i ? t.length = i : delete this.__on;
    }
  };
}
function ib(e, t, r) {
  return function() {
    var i = this.__on, n, a = tb(t);
    if (i) {
      for (var o = 0, s = i.length; o < s; ++o)
        if ((n = i[o]).type === e.type && n.name === e.name) {
          this.removeEventListener(n.type, n.listener, n.options), this.addEventListener(n.type, n.listener = a, n.options = r), n.value = t;
          return;
        }
    }
    this.addEventListener(e.type, a, r), n = { type: e.type, name: e.name, value: t, listener: a, options: r }, i ? i.push(n) : this.__on = [n];
  };
}
function nb(e, t, r) {
  var i = eb(e + ""), n, a = i.length, o;
  if (arguments.length < 2) {
    var s = this.node().__on;
    if (s) {
      for (var l = 0, c = s.length, h; l < c; ++l)
        for (n = 0, h = s[l]; n < a; ++n)
          if ((o = i[n]).type === h.type && o.name === h.name)
            return h.value;
    }
    return;
  }
  for (s = t ? ib : rb, n = 0; n < a; ++n) this.each(s(i[n], t, r));
  return this;
}
function au(e, t, r) {
  var i = tu(e), n = i.CustomEvent;
  typeof n == "function" ? n = new n(t, r) : (n = i.document.createEvent("Event"), r ? (n.initEvent(t, r.bubbles, r.cancelable), n.detail = r.detail) : n.initEvent(t, !1, !1)), e.dispatchEvent(n);
}
function ab(e, t) {
  return function() {
    return au(this, e, t);
  };
}
function sb(e, t) {
  return function() {
    return au(this, e, t.apply(this, arguments));
  };
}
function ob(e, t) {
  return this.each((typeof t == "function" ? sb : ab)(e, t));
}
function* lb() {
  for (var e = this._groups, t = 0, r = e.length; t < r; ++t)
    for (var i = e[t], n = 0, a = i.length, o; n < a; ++n)
      (o = i[n]) && (yield o);
}
var su = [null];
function Jt(e, t) {
  this._groups = e, this._parents = t;
}
function Ji() {
  return new Jt([[document.documentElement]], su);
}
function cb() {
  return this;
}
Jt.prototype = Ji.prototype = {
  constructor: Jt,
  select: Ry,
  selectAll: Ny,
  selectChild: Hy,
  selectChildren: Gy,
  filter: Xy,
  data: tx,
  enter: Vy,
  exit: rx,
  join: ix,
  merge: nx,
  selection: cb,
  order: ax,
  sort: sx,
  call: lx,
  nodes: cx,
  node: hx,
  size: ux,
  empty: fx,
  each: px,
  attr: Cx,
  style: vx,
  property: Ax,
  classed: $x,
  text: Dx,
  html: zx,
  raise: qx,
  lower: jx,
  append: Yx,
  insert: Gx,
  remove: Vx,
  clone: Qx,
  datum: Jx,
  on: nb,
  dispatch: ob,
  [Symbol.iterator]: lb
};
function et(e) {
  return typeof e == "string" ? new Jt([[document.querySelector(e)]], [document.documentElement]) : new Jt([[e]], su);
}
function Oo(e, t, r) {
  e.prototype = t.prototype = r, r.constructor = e;
}
function ou(e, t) {
  var r = Object.create(e.prototype);
  for (var i in t) r[i] = t[i];
  return r;
}
function tn() {
}
var Ii = 0.7, Gn = 1 / Ii, Rr = "\\s*([+-]?\\d+)\\s*", Pi = "\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*", we = "\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*", hb = /^#([0-9a-f]{3,8})$/, ub = new RegExp(`^rgb\\(${Rr},${Rr},${Rr}\\)$`), fb = new RegExp(`^rgb\\(${we},${we},${we}\\)$`), pb = new RegExp(`^rgba\\(${Rr},${Rr},${Rr},${Pi}\\)$`), db = new RegExp(`^rgba\\(${we},${we},${we},${Pi}\\)$`), gb = new RegExp(`^hsl\\(${Pi},${we},${we}\\)$`), mb = new RegExp(`^hsla\\(${Pi},${we},${we},${Pi}\\)$`), ac = {
  aliceblue: 15792383,
  antiquewhite: 16444375,
  aqua: 65535,
  aquamarine: 8388564,
  azure: 15794175,
  beige: 16119260,
  bisque: 16770244,
  black: 0,
  blanchedalmond: 16772045,
  blue: 255,
  blueviolet: 9055202,
  brown: 10824234,
  burlywood: 14596231,
  cadetblue: 6266528,
  chartreuse: 8388352,
  chocolate: 13789470,
  coral: 16744272,
  cornflowerblue: 6591981,
  cornsilk: 16775388,
  crimson: 14423100,
  cyan: 65535,
  darkblue: 139,
  darkcyan: 35723,
  darkgoldenrod: 12092939,
  darkgray: 11119017,
  darkgreen: 25600,
  darkgrey: 11119017,
  darkkhaki: 12433259,
  darkmagenta: 9109643,
  darkolivegreen: 5597999,
  darkorange: 16747520,
  darkorchid: 10040012,
  darkred: 9109504,
  darksalmon: 15308410,
  darkseagreen: 9419919,
  darkslateblue: 4734347,
  darkslategray: 3100495,
  darkslategrey: 3100495,
  darkturquoise: 52945,
  darkviolet: 9699539,
  deeppink: 16716947,
  deepskyblue: 49151,
  dimgray: 6908265,
  dimgrey: 6908265,
  dodgerblue: 2003199,
  firebrick: 11674146,
  floralwhite: 16775920,
  forestgreen: 2263842,
  fuchsia: 16711935,
  gainsboro: 14474460,
  ghostwhite: 16316671,
  gold: 16766720,
  goldenrod: 14329120,
  gray: 8421504,
  green: 32768,
  greenyellow: 11403055,
  grey: 8421504,
  honeydew: 15794160,
  hotpink: 16738740,
  indianred: 13458524,
  indigo: 4915330,
  ivory: 16777200,
  khaki: 15787660,
  lavender: 15132410,
  lavenderblush: 16773365,
  lawngreen: 8190976,
  lemonchiffon: 16775885,
  lightblue: 11393254,
  lightcoral: 15761536,
  lightcyan: 14745599,
  lightgoldenrodyellow: 16448210,
  lightgray: 13882323,
  lightgreen: 9498256,
  lightgrey: 13882323,
  lightpink: 16758465,
  lightsalmon: 16752762,
  lightseagreen: 2142890,
  lightskyblue: 8900346,
  lightslategray: 7833753,
  lightslategrey: 7833753,
  lightsteelblue: 11584734,
  lightyellow: 16777184,
  lime: 65280,
  limegreen: 3329330,
  linen: 16445670,
  magenta: 16711935,
  maroon: 8388608,
  mediumaquamarine: 6737322,
  mediumblue: 205,
  mediumorchid: 12211667,
  mediumpurple: 9662683,
  mediumseagreen: 3978097,
  mediumslateblue: 8087790,
  mediumspringgreen: 64154,
  mediumturquoise: 4772300,
  mediumvioletred: 13047173,
  midnightblue: 1644912,
  mintcream: 16121850,
  mistyrose: 16770273,
  moccasin: 16770229,
  navajowhite: 16768685,
  navy: 128,
  oldlace: 16643558,
  olive: 8421376,
  olivedrab: 7048739,
  orange: 16753920,
  orangered: 16729344,
  orchid: 14315734,
  palegoldenrod: 15657130,
  palegreen: 10025880,
  paleturquoise: 11529966,
  palevioletred: 14381203,
  papayawhip: 16773077,
  peachpuff: 16767673,
  peru: 13468991,
  pink: 16761035,
  plum: 14524637,
  powderblue: 11591910,
  purple: 8388736,
  rebeccapurple: 6697881,
  red: 16711680,
  rosybrown: 12357519,
  royalblue: 4286945,
  saddlebrown: 9127187,
  salmon: 16416882,
  sandybrown: 16032864,
  seagreen: 3050327,
  seashell: 16774638,
  sienna: 10506797,
  silver: 12632256,
  skyblue: 8900331,
  slateblue: 6970061,
  slategray: 7372944,
  slategrey: 7372944,
  snow: 16775930,
  springgreen: 65407,
  steelblue: 4620980,
  tan: 13808780,
  teal: 32896,
  thistle: 14204888,
  tomato: 16737095,
  turquoise: 4251856,
  violet: 15631086,
  wheat: 16113331,
  white: 16777215,
  whitesmoke: 16119285,
  yellow: 16776960,
  yellowgreen: 10145074
};
Oo(tn, Ni, {
  copy(e) {
    return Object.assign(new this.constructor(), this, e);
  },
  displayable() {
    return this.rgb().displayable();
  },
  hex: sc,
  // Deprecated! Use color.formatHex.
  formatHex: sc,
  formatHex8: yb,
  formatHsl: xb,
  formatRgb: oc,
  toString: oc
});
function sc() {
  return this.rgb().formatHex();
}
function yb() {
  return this.rgb().formatHex8();
}
function xb() {
  return lu(this).formatHsl();
}
function oc() {
  return this.rgb().formatRgb();
}
function Ni(e) {
  var t, r;
  return e = (e + "").trim().toLowerCase(), (t = hb.exec(e)) ? (r = t[1].length, t = parseInt(t[1], 16), r === 6 ? lc(t) : r === 3 ? new Vt(t >> 8 & 15 | t >> 4 & 240, t >> 4 & 15 | t & 240, (t & 15) << 4 | t & 15, 1) : r === 8 ? yn(t >> 24 & 255, t >> 16 & 255, t >> 8 & 255, (t & 255) / 255) : r === 4 ? yn(t >> 12 & 15 | t >> 8 & 240, t >> 8 & 15 | t >> 4 & 240, t >> 4 & 15 | t & 240, ((t & 15) << 4 | t & 15) / 255) : null) : (t = ub.exec(e)) ? new Vt(t[1], t[2], t[3], 1) : (t = fb.exec(e)) ? new Vt(t[1] * 255 / 100, t[2] * 255 / 100, t[3] * 255 / 100, 1) : (t = pb.exec(e)) ? yn(t[1], t[2], t[3], t[4]) : (t = db.exec(e)) ? yn(t[1] * 255 / 100, t[2] * 255 / 100, t[3] * 255 / 100, t[4]) : (t = gb.exec(e)) ? uc(t[1], t[2] / 100, t[3] / 100, 1) : (t = mb.exec(e)) ? uc(t[1], t[2] / 100, t[3] / 100, t[4]) : ac.hasOwnProperty(e) ? lc(ac[e]) : e === "transparent" ? new Vt(NaN, NaN, NaN, 0) : null;
}
function lc(e) {
  return new Vt(e >> 16 & 255, e >> 8 & 255, e & 255, 1);
}
function yn(e, t, r, i) {
  return i <= 0 && (e = t = r = NaN), new Vt(e, t, r, i);
}
function bb(e) {
  return e instanceof tn || (e = Ni(e)), e ? (e = e.rgb(), new Vt(e.r, e.g, e.b, e.opacity)) : new Vt();
}
function Fs(e, t, r, i) {
  return arguments.length === 1 ? bb(e) : new Vt(e, t, r, i ?? 1);
}
function Vt(e, t, r, i) {
  this.r = +e, this.g = +t, this.b = +r, this.opacity = +i;
}
Oo(Vt, Fs, ou(tn, {
  brighter(e) {
    return e = e == null ? Gn : Math.pow(Gn, e), new Vt(this.r * e, this.g * e, this.b * e, this.opacity);
  },
  darker(e) {
    return e = e == null ? Ii : Math.pow(Ii, e), new Vt(this.r * e, this.g * e, this.b * e, this.opacity);
  },
  rgb() {
    return this;
  },
  clamp() {
    return new Vt(ur(this.r), ur(this.g), ur(this.b), Xn(this.opacity));
  },
  displayable() {
    return -0.5 <= this.r && this.r < 255.5 && -0.5 <= this.g && this.g < 255.5 && -0.5 <= this.b && this.b < 255.5 && 0 <= this.opacity && this.opacity <= 1;
  },
  hex: cc,
  // Deprecated! Use color.formatHex.
  formatHex: cc,
  formatHex8: Cb,
  formatRgb: hc,
  toString: hc
}));
function cc() {
  return `#${lr(this.r)}${lr(this.g)}${lr(this.b)}`;
}
function Cb() {
  return `#${lr(this.r)}${lr(this.g)}${lr(this.b)}${lr((isNaN(this.opacity) ? 1 : this.opacity) * 255)}`;
}
function hc() {
  const e = Xn(this.opacity);
  return `${e === 1 ? "rgb(" : "rgba("}${ur(this.r)}, ${ur(this.g)}, ${ur(this.b)}${e === 1 ? ")" : `, ${e})`}`;
}
function Xn(e) {
  return isNaN(e) ? 1 : Math.max(0, Math.min(1, e));
}
function ur(e) {
  return Math.max(0, Math.min(255, Math.round(e) || 0));
}
function lr(e) {
  return e = ur(e), (e < 16 ? "0" : "") + e.toString(16);
}
function uc(e, t, r, i) {
  return i <= 0 ? e = t = r = NaN : r <= 0 || r >= 1 ? e = t = NaN : t <= 0 && (e = NaN), new ce(e, t, r, i);
}
function lu(e) {
  if (e instanceof ce) return new ce(e.h, e.s, e.l, e.opacity);
  if (e instanceof tn || (e = Ni(e)), !e) return new ce();
  if (e instanceof ce) return e;
  e = e.rgb();
  var t = e.r / 255, r = e.g / 255, i = e.b / 255, n = Math.min(t, r, i), a = Math.max(t, r, i), o = NaN, s = a - n, l = (a + n) / 2;
  return s ? (t === a ? o = (r - i) / s + (r < i) * 6 : r === a ? o = (i - t) / s + 2 : o = (t - r) / s + 4, s /= l < 0.5 ? a + n : 2 - a - n, o *= 60) : s = l > 0 && l < 1 ? 0 : o, new ce(o, s, l, e.opacity);
}
function _b(e, t, r, i) {
  return arguments.length === 1 ? lu(e) : new ce(e, t, r, i ?? 1);
}
function ce(e, t, r, i) {
  this.h = +e, this.s = +t, this.l = +r, this.opacity = +i;
}
Oo(ce, _b, ou(tn, {
  brighter(e) {
    return e = e == null ? Gn : Math.pow(Gn, e), new ce(this.h, this.s, this.l * e, this.opacity);
  },
  darker(e) {
    return e = e == null ? Ii : Math.pow(Ii, e), new ce(this.h, this.s, this.l * e, this.opacity);
  },
  rgb() {
    var e = this.h % 360 + (this.h < 0) * 360, t = isNaN(e) || isNaN(this.s) ? 0 : this.s, r = this.l, i = r + (r < 0.5 ? r : 1 - r) * t, n = 2 * r - i;
    return new Vt(
      hs(e >= 240 ? e - 240 : e + 120, n, i),
      hs(e, n, i),
      hs(e < 120 ? e + 240 : e - 120, n, i),
      this.opacity
    );
  },
  clamp() {
    return new ce(fc(this.h), xn(this.s), xn(this.l), Xn(this.opacity));
  },
  displayable() {
    return (0 <= this.s && this.s <= 1 || isNaN(this.s)) && 0 <= this.l && this.l <= 1 && 0 <= this.opacity && this.opacity <= 1;
  },
  formatHsl() {
    const e = Xn(this.opacity);
    return `${e === 1 ? "hsl(" : "hsla("}${fc(this.h)}, ${xn(this.s) * 100}%, ${xn(this.l) * 100}%${e === 1 ? ")" : `, ${e})`}`;
  }
}));
function fc(e) {
  return e = (e || 0) % 360, e < 0 ? e + 360 : e;
}
function xn(e) {
  return Math.max(0, Math.min(1, e || 0));
}
function hs(e, t, r) {
  return (e < 60 ? t + (r - t) * e / 60 : e < 180 ? r : e < 240 ? t + (r - t) * (240 - e) / 60 : t) * 255;
}
const Ro = (e) => () => e;
function cu(e, t) {
  return function(r) {
    return e + r * t;
  };
}
function wb(e, t, r) {
  return e = Math.pow(e, r), t = Math.pow(t, r) - e, r = 1 / r, function(i) {
    return Math.pow(e + i * t, r);
  };
}
function uL(e, t) {
  var r = t - e;
  return r ? cu(e, r > 180 || r < -180 ? r - 360 * Math.round(r / 360) : r) : Ro(isNaN(e) ? t : e);
}
function kb(e) {
  return (e = +e) == 1 ? hu : function(t, r) {
    return r - t ? wb(t, r, e) : Ro(isNaN(t) ? r : t);
  };
}
function hu(e, t) {
  var r = t - e;
  return r ? cu(e, r) : Ro(isNaN(e) ? t : e);
}
const pc = function e(t) {
  var r = kb(t);
  function i(n, a) {
    var o = r((n = Fs(n)).r, (a = Fs(a)).r), s = r(n.g, a.g), l = r(n.b, a.b), c = hu(n.opacity, a.opacity);
    return function(h) {
      return n.r = o(h), n.g = s(h), n.b = l(h), n.opacity = c(h), n + "";
    };
  }
  return i.gamma = e, i;
}(1);
function He(e, t) {
  return e = +e, t = +t, function(r) {
    return e * (1 - r) + t * r;
  };
}
var Os = /[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g, us = new RegExp(Os.source, "g");
function vb(e) {
  return function() {
    return e;
  };
}
function Sb(e) {
  return function(t) {
    return e(t) + "";
  };
}
function Tb(e, t) {
  var r = Os.lastIndex = us.lastIndex = 0, i, n, a, o = -1, s = [], l = [];
  for (e = e + "", t = t + ""; (i = Os.exec(e)) && (n = us.exec(t)); )
    (a = n.index) > r && (a = t.slice(r, a), s[o] ? s[o] += a : s[++o] = a), (i = i[0]) === (n = n[0]) ? s[o] ? s[o] += n : s[++o] = n : (s[++o] = null, l.push({ i: o, x: He(i, n) })), r = us.lastIndex;
  return r < t.length && (a = t.slice(r), s[o] ? s[o] += a : s[++o] = a), s.length < 2 ? l[0] ? Sb(l[0].x) : vb(t) : (t = l.length, function(c) {
    for (var h = 0, u; h < t; ++h) s[(u = l[h]).i] = u.x(c);
    return s.join("");
  });
}
var dc = 180 / Math.PI, Rs = {
  translateX: 0,
  translateY: 0,
  rotate: 0,
  skewX: 0,
  scaleX: 1,
  scaleY: 1
};
function uu(e, t, r, i, n, a) {
  var o, s, l;
  return (o = Math.sqrt(e * e + t * t)) && (e /= o, t /= o), (l = e * r + t * i) && (r -= e * l, i -= t * l), (s = Math.sqrt(r * r + i * i)) && (r /= s, i /= s, l /= s), e * i < t * r && (e = -e, t = -t, l = -l, o = -o), {
    translateX: n,
    translateY: a,
    rotate: Math.atan2(t, e) * dc,
    skewX: Math.atan(l) * dc,
    scaleX: o,
    scaleY: s
  };
}
var bn;
function Bb(e) {
  const t = new (typeof DOMMatrix == "function" ? DOMMatrix : WebKitCSSMatrix)(e + "");
  return t.isIdentity ? Rs : uu(t.a, t.b, t.c, t.d, t.e, t.f);
}
function Ab(e) {
  return e == null || (bn || (bn = document.createElementNS("http://www.w3.org/2000/svg", "g")), bn.setAttribute("transform", e), !(e = bn.transform.baseVal.consolidate())) ? Rs : (e = e.matrix, uu(e.a, e.b, e.c, e.d, e.e, e.f));
}
function fu(e, t, r, i) {
  function n(c) {
    return c.length ? c.pop() + " " : "";
  }
  function a(c, h, u, p, f, g) {
    if (c !== u || h !== p) {
      var m = f.push("translate(", null, t, null, r);
      g.push({ i: m - 4, x: He(c, u) }, { i: m - 2, x: He(h, p) });
    } else (u || p) && f.push("translate(" + u + t + p + r);
  }
  function o(c, h, u, p) {
    c !== h ? (c - h > 180 ? h += 360 : h - c > 180 && (c += 360), p.push({ i: u.push(n(u) + "rotate(", null, i) - 2, x: He(c, h) })) : h && u.push(n(u) + "rotate(" + h + i);
  }
  function s(c, h, u, p) {
    c !== h ? p.push({ i: u.push(n(u) + "skewX(", null, i) - 2, x: He(c, h) }) : h && u.push(n(u) + "skewX(" + h + i);
  }
  function l(c, h, u, p, f, g) {
    if (c !== u || h !== p) {
      var m = f.push(n(f) + "scale(", null, ",", null, ")");
      g.push({ i: m - 4, x: He(c, u) }, { i: m - 2, x: He(h, p) });
    } else (u !== 1 || p !== 1) && f.push(n(f) + "scale(" + u + "," + p + ")");
  }
  return function(c, h) {
    var u = [], p = [];
    return c = e(c), h = e(h), a(c.translateX, c.translateY, h.translateX, h.translateY, u, p), o(c.rotate, h.rotate, u, p), s(c.skewX, h.skewX, u, p), l(c.scaleX, c.scaleY, h.scaleX, h.scaleY, u, p), c = h = null, function(f) {
      for (var g = -1, m = p.length, y; ++g < m; ) u[(y = p[g]).i] = y.x(f);
      return u.join("");
    };
  };
}
var Lb = fu(Bb, "px, ", "px)", "deg)"), Mb = fu(Ab, ", ", ")", ")"), Xr = 0, wi = 0, pi = 0, pu = 1e3, Vn, ki, Zn = 0, gr = 0, Ba = 0, zi = typeof performance == "object" && performance.now ? performance : Date, du = typeof window == "object" && window.requestAnimationFrame ? window.requestAnimationFrame.bind(window) : function(e) {
  setTimeout(e, 17);
};
function Do() {
  return gr || (du(Eb), gr = zi.now() + Ba);
}
function Eb() {
  gr = 0;
}
function Kn() {
  this._call = this._time = this._next = null;
}
Kn.prototype = gu.prototype = {
  constructor: Kn,
  restart: function(e, t, r) {
    if (typeof e != "function") throw new TypeError("callback is not a function");
    r = (r == null ? Do() : +r) + (t == null ? 0 : +t), !this._next && ki !== this && (ki ? ki._next = this : Vn = this, ki = this), this._call = e, this._time = r, Ds();
  },
  stop: function() {
    this._call && (this._call = null, this._time = 1 / 0, Ds());
  }
};
function gu(e, t, r) {
  var i = new Kn();
  return i.restart(e, t, r), i;
}
function $b() {
  Do(), ++Xr;
  for (var e = Vn, t; e; )
    (t = gr - e._time) >= 0 && e._call.call(void 0, t), e = e._next;
  --Xr;
}
function gc() {
  gr = (Zn = zi.now()) + Ba, Xr = wi = 0;
  try {
    $b();
  } finally {
    Xr = 0, Ob(), gr = 0;
  }
}
function Fb() {
  var e = zi.now(), t = e - Zn;
  t > pu && (Ba -= t, Zn = e);
}
function Ob() {
  for (var e, t = Vn, r, i = 1 / 0; t; )
    t._call ? (i > t._time && (i = t._time), e = t, t = t._next) : (r = t._next, t._next = null, t = e ? e._next = r : Vn = r);
  ki = e, Ds(i);
}
function Ds(e) {
  if (!Xr) {
    wi && (wi = clearTimeout(wi));
    var t = e - gr;
    t > 24 ? (e < 1 / 0 && (wi = setTimeout(gc, e - zi.now() - Ba)), pi && (pi = clearInterval(pi))) : (pi || (Zn = zi.now(), pi = setInterval(Fb, pu)), Xr = 1, du(gc));
  }
}
function mc(e, t, r) {
  var i = new Kn();
  return t = t == null ? 0 : +t, i.restart((n) => {
    i.stop(), e(n + t);
  }, t, r), i;
}
var Rb = Xh("start", "end", "cancel", "interrupt"), Db = [], mu = 0, yc = 1, Is = 2, $n = 3, xc = 4, Ps = 5, Fn = 6;
function Aa(e, t, r, i, n, a) {
  var o = e.__transition;
  if (!o) e.__transition = {};
  else if (r in o) return;
  Ib(e, r, {
    name: t,
    index: i,
    // For context during callback.
    group: n,
    // For context during callback.
    on: Rb,
    tween: Db,
    time: a.time,
    delay: a.delay,
    duration: a.duration,
    ease: a.ease,
    timer: null,
    state: mu
  });
}
function Io(e, t) {
  var r = de(e, t);
  if (r.state > mu) throw new Error("too late; already scheduled");
  return r;
}
function Se(e, t) {
  var r = de(e, t);
  if (r.state > $n) throw new Error("too late; already running");
  return r;
}
function de(e, t) {
  var r = e.__transition;
  if (!r || !(r = r[t])) throw new Error("transition not found");
  return r;
}
function Ib(e, t, r) {
  var i = e.__transition, n;
  i[t] = r, r.timer = gu(a, 0, r.time);
  function a(c) {
    r.state = yc, r.timer.restart(o, r.delay, r.time), r.delay <= c && o(c - r.delay);
  }
  function o(c) {
    var h, u, p, f;
    if (r.state !== yc) return l();
    for (h in i)
      if (f = i[h], f.name === r.name) {
        if (f.state === $n) return mc(o);
        f.state === xc ? (f.state = Fn, f.timer.stop(), f.on.call("interrupt", e, e.__data__, f.index, f.group), delete i[h]) : +h < t && (f.state = Fn, f.timer.stop(), f.on.call("cancel", e, e.__data__, f.index, f.group), delete i[h]);
      }
    if (mc(function() {
      r.state === $n && (r.state = xc, r.timer.restart(s, r.delay, r.time), s(c));
    }), r.state = Is, r.on.call("start", e, e.__data__, r.index, r.group), r.state === Is) {
      for (r.state = $n, n = new Array(p = r.tween.length), h = 0, u = -1; h < p; ++h)
        (f = r.tween[h].value.call(e, e.__data__, r.index, r.group)) && (n[++u] = f);
      n.length = u + 1;
    }
  }
  function s(c) {
    for (var h = c < r.duration ? r.ease.call(null, c / r.duration) : (r.timer.restart(l), r.state = Ps, 1), u = -1, p = n.length; ++u < p; )
      n[u].call(e, h);
    r.state === Ps && (r.on.call("end", e, e.__data__, r.index, r.group), l());
  }
  function l() {
    r.state = Fn, r.timer.stop(), delete i[t];
    for (var c in i) return;
    delete e.__transition;
  }
}
function Pb(e, t) {
  var r = e.__transition, i, n, a = !0, o;
  if (r) {
    t = t == null ? null : t + "";
    for (o in r) {
      if ((i = r[o]).name !== t) {
        a = !1;
        continue;
      }
      n = i.state > Is && i.state < Ps, i.state = Fn, i.timer.stop(), i.on.call(n ? "interrupt" : "cancel", e, e.__data__, i.index, i.group), delete r[o];
    }
    a && delete e.__transition;
  }
}
function Nb(e) {
  return this.each(function() {
    Pb(this, e);
  });
}
function zb(e, t) {
  var r, i;
  return function() {
    var n = Se(this, e), a = n.tween;
    if (a !== r) {
      i = r = a;
      for (var o = 0, s = i.length; o < s; ++o)
        if (i[o].name === t) {
          i = i.slice(), i.splice(o, 1);
          break;
        }
    }
    n.tween = i;
  };
}
function Wb(e, t, r) {
  var i, n;
  if (typeof r != "function") throw new Error();
  return function() {
    var a = Se(this, e), o = a.tween;
    if (o !== i) {
      n = (i = o).slice();
      for (var s = { name: t, value: r }, l = 0, c = n.length; l < c; ++l)
        if (n[l].name === t) {
          n[l] = s;
          break;
        }
      l === c && n.push(s);
    }
    a.tween = n;
  };
}
function qb(e, t) {
  var r = this._id;
  if (e += "", arguments.length < 2) {
    for (var i = de(this.node(), r).tween, n = 0, a = i.length, o; n < a; ++n)
      if ((o = i[n]).name === e)
        return o.value;
    return null;
  }
  return this.each((t == null ? zb : Wb)(r, e, t));
}
function Po(e, t, r) {
  var i = e._id;
  return e.each(function() {
    var n = Se(this, i);
    (n.value || (n.value = {}))[t] = r.apply(this, arguments);
  }), function(n) {
    return de(n, i).value[t];
  };
}
function yu(e, t) {
  var r;
  return (typeof t == "number" ? He : t instanceof Ni ? pc : (r = Ni(t)) ? (t = r, pc) : Tb)(e, t);
}
function Hb(e) {
  return function() {
    this.removeAttribute(e);
  };
}
function jb(e) {
  return function() {
    this.removeAttributeNS(e.space, e.local);
  };
}
function Yb(e, t, r) {
  var i, n = r + "", a;
  return function() {
    var o = this.getAttribute(e);
    return o === n ? null : o === i ? a : a = t(i = o, r);
  };
}
function Ub(e, t, r) {
  var i, n = r + "", a;
  return function() {
    var o = this.getAttributeNS(e.space, e.local);
    return o === n ? null : o === i ? a : a = t(i = o, r);
  };
}
function Gb(e, t, r) {
  var i, n, a;
  return function() {
    var o, s = r(this), l;
    return s == null ? void this.removeAttribute(e) : (o = this.getAttribute(e), l = s + "", o === l ? null : o === i && l === n ? a : (n = l, a = t(i = o, s)));
  };
}
function Xb(e, t, r) {
  var i, n, a;
  return function() {
    var o, s = r(this), l;
    return s == null ? void this.removeAttributeNS(e.space, e.local) : (o = this.getAttributeNS(e.space, e.local), l = s + "", o === l ? null : o === i && l === n ? a : (n = l, a = t(i = o, s)));
  };
}
function Vb(e, t) {
  var r = Ta(e), i = r === "transform" ? Mb : yu;
  return this.attrTween(e, typeof t == "function" ? (r.local ? Xb : Gb)(r, i, Po(this, "attr." + e, t)) : t == null ? (r.local ? jb : Hb)(r) : (r.local ? Ub : Yb)(r, i, t));
}
function Zb(e, t) {
  return function(r) {
    this.setAttribute(e, t.call(this, r));
  };
}
function Kb(e, t) {
  return function(r) {
    this.setAttributeNS(e.space, e.local, t.call(this, r));
  };
}
function Qb(e, t) {
  var r, i;
  function n() {
    var a = t.apply(this, arguments);
    return a !== i && (r = (i = a) && Kb(e, a)), r;
  }
  return n._value = t, n;
}
function Jb(e, t) {
  var r, i;
  function n() {
    var a = t.apply(this, arguments);
    return a !== i && (r = (i = a) && Zb(e, a)), r;
  }
  return n._value = t, n;
}
function t1(e, t) {
  var r = "attr." + e;
  if (arguments.length < 2) return (r = this.tween(r)) && r._value;
  if (t == null) return this.tween(r, null);
  if (typeof t != "function") throw new Error();
  var i = Ta(e);
  return this.tween(r, (i.local ? Qb : Jb)(i, t));
}
function e1(e, t) {
  return function() {
    Io(this, e).delay = +t.apply(this, arguments);
  };
}
function r1(e, t) {
  return t = +t, function() {
    Io(this, e).delay = t;
  };
}
function i1(e) {
  var t = this._id;
  return arguments.length ? this.each((typeof e == "function" ? e1 : r1)(t, e)) : de(this.node(), t).delay;
}
function n1(e, t) {
  return function() {
    Se(this, e).duration = +t.apply(this, arguments);
  };
}
function a1(e, t) {
  return t = +t, function() {
    Se(this, e).duration = t;
  };
}
function s1(e) {
  var t = this._id;
  return arguments.length ? this.each((typeof e == "function" ? n1 : a1)(t, e)) : de(this.node(), t).duration;
}
function o1(e, t) {
  if (typeof t != "function") throw new Error();
  return function() {
    Se(this, e).ease = t;
  };
}
function l1(e) {
  var t = this._id;
  return arguments.length ? this.each(o1(t, e)) : de(this.node(), t).ease;
}
function c1(e, t) {
  return function() {
    var r = t.apply(this, arguments);
    if (typeof r != "function") throw new Error();
    Se(this, e).ease = r;
  };
}
function h1(e) {
  if (typeof e != "function") throw new Error();
  return this.each(c1(this._id, e));
}
function u1(e) {
  typeof e != "function" && (e = Kh(e));
  for (var t = this._groups, r = t.length, i = new Array(r), n = 0; n < r; ++n)
    for (var a = t[n], o = a.length, s = i[n] = [], l, c = 0; c < o; ++c)
      (l = a[c]) && e.call(l, l.__data__, c, a) && s.push(l);
  return new De(i, this._parents, this._name, this._id);
}
function f1(e) {
  if (e._id !== this._id) throw new Error();
  for (var t = this._groups, r = e._groups, i = t.length, n = r.length, a = Math.min(i, n), o = new Array(i), s = 0; s < a; ++s)
    for (var l = t[s], c = r[s], h = l.length, u = o[s] = new Array(h), p, f = 0; f < h; ++f)
      (p = l[f] || c[f]) && (u[f] = p);
  for (; s < i; ++s)
    o[s] = t[s];
  return new De(o, this._parents, this._name, this._id);
}
function p1(e) {
  return (e + "").trim().split(/^|\s+/).every(function(t) {
    var r = t.indexOf(".");
    return r >= 0 && (t = t.slice(0, r)), !t || t === "start";
  });
}
function d1(e, t, r) {
  var i, n, a = p1(t) ? Io : Se;
  return function() {
    var o = a(this, e), s = o.on;
    s !== i && (n = (i = s).copy()).on(t, r), o.on = n;
  };
}
function g1(e, t) {
  var r = this._id;
  return arguments.length < 2 ? de(this.node(), r).on.on(e) : this.each(d1(r, e, t));
}
function m1(e) {
  return function() {
    var t = this.parentNode;
    for (var r in this.__transition) if (+r !== e) return;
    t && t.removeChild(this);
  };
}
function y1() {
  return this.on("end.remove", m1(this._id));
}
function x1(e) {
  var t = this._name, r = this._id;
  typeof e != "function" && (e = $o(e));
  for (var i = this._groups, n = i.length, a = new Array(n), o = 0; o < n; ++o)
    for (var s = i[o], l = s.length, c = a[o] = new Array(l), h, u, p = 0; p < l; ++p)
      (h = s[p]) && (u = e.call(h, h.__data__, p, s)) && ("__data__" in h && (u.__data__ = h.__data__), c[p] = u, Aa(c[p], t, r, p, c, de(h, r)));
  return new De(a, this._parents, t, r);
}
function b1(e) {
  var t = this._name, r = this._id;
  typeof e != "function" && (e = Zh(e));
  for (var i = this._groups, n = i.length, a = [], o = [], s = 0; s < n; ++s)
    for (var l = i[s], c = l.length, h, u = 0; u < c; ++u)
      if (h = l[u]) {
        for (var p = e.call(h, h.__data__, u, l), f, g = de(h, r), m = 0, y = p.length; m < y; ++m)
          (f = p[m]) && Aa(f, t, r, m, p, g);
        a.push(p), o.push(h);
      }
  return new De(a, o, t, r);
}
var C1 = Ji.prototype.constructor;
function _1() {
  return new C1(this._groups, this._parents);
}
function w1(e, t) {
  var r, i, n;
  return function() {
    var a = Gr(this, e), o = (this.style.removeProperty(e), Gr(this, e));
    return a === o ? null : a === r && o === i ? n : n = t(r = a, i = o);
  };
}
function xu(e) {
  return function() {
    this.style.removeProperty(e);
  };
}
function k1(e, t, r) {
  var i, n = r + "", a;
  return function() {
    var o = Gr(this, e);
    return o === n ? null : o === i ? a : a = t(i = o, r);
  };
}
function v1(e, t, r) {
  var i, n, a;
  return function() {
    var o = Gr(this, e), s = r(this), l = s + "";
    return s == null && (l = s = (this.style.removeProperty(e), Gr(this, e))), o === l ? null : o === i && l === n ? a : (n = l, a = t(i = o, s));
  };
}
function S1(e, t) {
  var r, i, n, a = "style." + t, o = "end." + a, s;
  return function() {
    var l = Se(this, e), c = l.on, h = l.value[a] == null ? s || (s = xu(t)) : void 0;
    (c !== r || n !== h) && (i = (r = c).copy()).on(o, n = h), l.on = i;
  };
}
function T1(e, t, r) {
  var i = (e += "") == "transform" ? Lb : yu;
  return t == null ? this.styleTween(e, w1(e, i)).on("end.style." + e, xu(e)) : typeof t == "function" ? this.styleTween(e, v1(e, i, Po(this, "style." + e, t))).each(S1(this._id, e)) : this.styleTween(e, k1(e, i, t), r).on("end.style." + e, null);
}
function B1(e, t, r) {
  return function(i) {
    this.style.setProperty(e, t.call(this, i), r);
  };
}
function A1(e, t, r) {
  var i, n;
  function a() {
    var o = t.apply(this, arguments);
    return o !== n && (i = (n = o) && B1(e, o, r)), i;
  }
  return a._value = t, a;
}
function L1(e, t, r) {
  var i = "style." + (e += "");
  if (arguments.length < 2) return (i = this.tween(i)) && i._value;
  if (t == null) return this.tween(i, null);
  if (typeof t != "function") throw new Error();
  return this.tween(i, A1(e, t, r ?? ""));
}
function M1(e) {
  return function() {
    this.textContent = e;
  };
}
function E1(e) {
  return function() {
    var t = e(this);
    this.textContent = t ?? "";
  };
}
function $1(e) {
  return this.tween("text", typeof e == "function" ? E1(Po(this, "text", e)) : M1(e == null ? "" : e + ""));
}
function F1(e) {
  return function(t) {
    this.textContent = e.call(this, t);
  };
}
function O1(e) {
  var t, r;
  function i() {
    var n = e.apply(this, arguments);
    return n !== r && (t = (r = n) && F1(n)), t;
  }
  return i._value = e, i;
}
function R1(e) {
  var t = "text";
  if (arguments.length < 1) return (t = this.tween(t)) && t._value;
  if (e == null) return this.tween(t, null);
  if (typeof e != "function") throw new Error();
  return this.tween(t, O1(e));
}
function D1() {
  for (var e = this._name, t = this._id, r = bu(), i = this._groups, n = i.length, a = 0; a < n; ++a)
    for (var o = i[a], s = o.length, l, c = 0; c < s; ++c)
      if (l = o[c]) {
        var h = de(l, t);
        Aa(l, e, r, c, o, {
          time: h.time + h.delay + h.duration,
          delay: 0,
          duration: h.duration,
          ease: h.ease
        });
      }
  return new De(i, this._parents, e, r);
}
function I1() {
  var e, t, r = this, i = r._id, n = r.size();
  return new Promise(function(a, o) {
    var s = { value: o }, l = { value: function() {
      --n === 0 && a();
    } };
    r.each(function() {
      var c = Se(this, i), h = c.on;
      h !== e && (t = (e = h).copy(), t._.cancel.push(s), t._.interrupt.push(s), t._.end.push(l)), c.on = t;
    }), n === 0 && a();
  });
}
var P1 = 0;
function De(e, t, r, i) {
  this._groups = e, this._parents = t, this._name = r, this._id = i;
}
function bu() {
  return ++P1;
}
var Ee = Ji.prototype;
De.prototype = {
  constructor: De,
  select: x1,
  selectAll: b1,
  selectChild: Ee.selectChild,
  selectChildren: Ee.selectChildren,
  filter: u1,
  merge: f1,
  selection: _1,
  transition: D1,
  call: Ee.call,
  nodes: Ee.nodes,
  node: Ee.node,
  size: Ee.size,
  empty: Ee.empty,
  each: Ee.each,
  on: g1,
  attr: Vb,
  attrTween: t1,
  style: T1,
  styleTween: L1,
  text: $1,
  textTween: R1,
  remove: y1,
  tween: qb,
  delay: i1,
  duration: s1,
  ease: l1,
  easeVarying: h1,
  end: I1,
  [Symbol.iterator]: Ee[Symbol.iterator]
};
function N1(e) {
  return ((e *= 2) <= 1 ? e * e * e : (e -= 2) * e * e + 2) / 2;
}
var z1 = {
  time: null,
  // Set on use.
  delay: 0,
  duration: 250,
  ease: N1
};
function W1(e, t) {
  for (var r; !(r = e.__transition) || !(r = r[t]); )
    if (!(e = e.parentNode))
      throw new Error(`transition ${t} not found`);
  return r;
}
function q1(e) {
  var t, r;
  e instanceof De ? (t = e._id, e = e._name) : (t = bu(), (r = z1).time = Do(), e = e == null ? null : e + "");
  for (var i = this._groups, n = i.length, a = 0; a < n; ++a)
    for (var o = i[a], s = o.length, l, c = 0; c < s; ++c)
      (l = o[c]) && Aa(l, e, t, c, o, r || W1(l, t));
  return new De(i, this._parents, e, t);
}
Ji.prototype.interrupt = Nb;
Ji.prototype.transition = q1;
const Ns = Math.PI, zs = 2 * Ns, nr = 1e-6, H1 = zs - nr;
function Cu(e) {
  this._ += e[0];
  for (let t = 1, r = e.length; t < r; ++t)
    this._ += arguments[t] + e[t];
}
function j1(e) {
  let t = Math.floor(e);
  if (!(t >= 0)) throw new Error(`invalid digits: ${e}`);
  if (t > 15) return Cu;
  const r = 10 ** t;
  return function(i) {
    this._ += i[0];
    for (let n = 1, a = i.length; n < a; ++n)
      this._ += Math.round(arguments[n] * r) / r + i[n];
  };
}
class Y1 {
  constructor(t) {
    this._x0 = this._y0 = // start of current subpath
    this._x1 = this._y1 = null, this._ = "", this._append = t == null ? Cu : j1(t);
  }
  moveTo(t, r) {
    this._append`M${this._x0 = this._x1 = +t},${this._y0 = this._y1 = +r}`;
  }
  closePath() {
    this._x1 !== null && (this._x1 = this._x0, this._y1 = this._y0, this._append`Z`);
  }
  lineTo(t, r) {
    this._append`L${this._x1 = +t},${this._y1 = +r}`;
  }
  quadraticCurveTo(t, r, i, n) {
    this._append`Q${+t},${+r},${this._x1 = +i},${this._y1 = +n}`;
  }
  bezierCurveTo(t, r, i, n, a, o) {
    this._append`C${+t},${+r},${+i},${+n},${this._x1 = +a},${this._y1 = +o}`;
  }
  arcTo(t, r, i, n, a) {
    if (t = +t, r = +r, i = +i, n = +n, a = +a, a < 0) throw new Error(`negative radius: ${a}`);
    let o = this._x1, s = this._y1, l = i - t, c = n - r, h = o - t, u = s - r, p = h * h + u * u;
    if (this._x1 === null)
      this._append`M${this._x1 = t},${this._y1 = r}`;
    else if (p > nr) if (!(Math.abs(u * l - c * h) > nr) || !a)
      this._append`L${this._x1 = t},${this._y1 = r}`;
    else {
      let f = i - o, g = n - s, m = l * l + c * c, y = f * f + g * g, x = Math.sqrt(m), b = Math.sqrt(p), _ = a * Math.tan((Ns - Math.acos((m + p - y) / (2 * x * b))) / 2), S = _ / b, v = _ / x;
      Math.abs(S - 1) > nr && this._append`L${t + S * h},${r + S * u}`, this._append`A${a},${a},0,0,${+(u * f > h * g)},${this._x1 = t + v * l},${this._y1 = r + v * c}`;
    }
  }
  arc(t, r, i, n, a, o) {
    if (t = +t, r = +r, i = +i, o = !!o, i < 0) throw new Error(`negative radius: ${i}`);
    let s = i * Math.cos(n), l = i * Math.sin(n), c = t + s, h = r + l, u = 1 ^ o, p = o ? n - a : a - n;
    this._x1 === null ? this._append`M${c},${h}` : (Math.abs(this._x1 - c) > nr || Math.abs(this._y1 - h) > nr) && this._append`L${c},${h}`, i && (p < 0 && (p = p % zs + zs), p > H1 ? this._append`A${i},${i},0,1,${u},${t - s},${r - l}A${i},${i},0,1,${u},${this._x1 = c},${this._y1 = h}` : p > nr && this._append`A${i},${i},0,${+(p >= Ns)},${u},${this._x1 = t + i * Math.cos(a)},${this._y1 = r + i * Math.sin(a)}`);
  }
  rect(t, r, i, n) {
    this._append`M${this._x0 = this._x1 = +t},${this._y0 = this._y1 = +r}h${i = +i}v${+n}h${-i}Z`;
  }
  toString() {
    return this._;
  }
}
function Lr(e) {
  return function() {
    return e;
  };
}
const fL = Math.abs, pL = Math.atan2, dL = Math.cos, gL = Math.max, mL = Math.min, yL = Math.sin, xL = Math.sqrt, bc = 1e-12, No = Math.PI, Cc = No / 2, bL = 2 * No;
function CL(e) {
  return e > 1 ? 0 : e < -1 ? No : Math.acos(e);
}
function _L(e) {
  return e >= 1 ? Cc : e <= -1 ? -Cc : Math.asin(e);
}
function U1(e) {
  let t = 3;
  return e.digits = function(r) {
    if (!arguments.length) return t;
    if (r == null)
      t = null;
    else {
      const i = Math.floor(r);
      if (!(i >= 0)) throw new RangeError(`invalid digits: ${r}`);
      t = i;
    }
    return e;
  }, () => new Y1(t);
}
function G1(e) {
  return typeof e == "object" && "length" in e ? e : Array.from(e);
}
function _u(e) {
  this._context = e;
}
_u.prototype = {
  areaStart: function() {
    this._line = 0;
  },
  areaEnd: function() {
    this._line = NaN;
  },
  lineStart: function() {
    this._point = 0;
  },
  lineEnd: function() {
    (this._line || this._line !== 0 && this._point === 1) && this._context.closePath(), this._line = 1 - this._line;
  },
  point: function(e, t) {
    switch (e = +e, t = +t, this._point) {
      case 0:
        this._point = 1, this._line ? this._context.lineTo(e, t) : this._context.moveTo(e, t);
        break;
      case 1:
        this._point = 2;
      default:
        this._context.lineTo(e, t);
        break;
    }
  }
};
function Fi(e) {
  return new _u(e);
}
function X1(e) {
  return e[0];
}
function V1(e) {
  return e[1];
}
function Z1(e, t) {
  var r = Lr(!0), i = null, n = Fi, a = null, o = U1(s);
  e = typeof e == "function" ? e : e === void 0 ? X1 : Lr(e), t = typeof t == "function" ? t : t === void 0 ? V1 : Lr(t);
  function s(l) {
    var c, h = (l = G1(l)).length, u, p = !1, f;
    for (i == null && (a = n(f = o())), c = 0; c <= h; ++c)
      !(c < h && r(u = l[c], c, l)) === p && ((p = !p) ? a.lineStart() : a.lineEnd()), p && a.point(+e(u, c, l), +t(u, c, l));
    if (f) return a = null, f + "" || null;
  }
  return s.x = function(l) {
    return arguments.length ? (e = typeof l == "function" ? l : Lr(+l), s) : e;
  }, s.y = function(l) {
    return arguments.length ? (t = typeof l == "function" ? l : Lr(+l), s) : t;
  }, s.defined = function(l) {
    return arguments.length ? (r = typeof l == "function" ? l : Lr(!!l), s) : r;
  }, s.curve = function(l) {
    return arguments.length ? (n = l, i != null && (a = n(i)), s) : n;
  }, s.context = function(l) {
    return arguments.length ? (l == null ? i = a = null : a = n(i = l), s) : i;
  }, s;
}
class wu {
  constructor(t, r) {
    this._context = t, this._x = r;
  }
  areaStart() {
    this._line = 0;
  }
  areaEnd() {
    this._line = NaN;
  }
  lineStart() {
    this._point = 0;
  }
  lineEnd() {
    (this._line || this._line !== 0 && this._point === 1) && this._context.closePath(), this._line = 1 - this._line;
  }
  point(t, r) {
    switch (t = +t, r = +r, this._point) {
      case 0: {
        this._point = 1, this._line ? this._context.lineTo(t, r) : this._context.moveTo(t, r);
        break;
      }
      case 1:
        this._point = 2;
      default: {
        this._x ? this._context.bezierCurveTo(this._x0 = (this._x0 + t) / 2, this._y0, this._x0, r, t, r) : this._context.bezierCurveTo(this._x0, this._y0 = (this._y0 + r) / 2, t, this._y0, t, r);
        break;
      }
    }
    this._x0 = t, this._y0 = r;
  }
}
function ku(e) {
  return new wu(e, !0);
}
function vu(e) {
  return new wu(e, !1);
}
function Ge() {
}
function Qn(e, t, r) {
  e._context.bezierCurveTo(
    (2 * e._x0 + e._x1) / 3,
    (2 * e._y0 + e._y1) / 3,
    (e._x0 + 2 * e._x1) / 3,
    (e._y0 + 2 * e._y1) / 3,
    (e._x0 + 4 * e._x1 + t) / 6,
    (e._y0 + 4 * e._y1 + r) / 6
  );
}
function La(e) {
  this._context = e;
}
La.prototype = {
  areaStart: function() {
    this._line = 0;
  },
  areaEnd: function() {
    this._line = NaN;
  },
  lineStart: function() {
    this._x0 = this._x1 = this._y0 = this._y1 = NaN, this._point = 0;
  },
  lineEnd: function() {
    switch (this._point) {
      case 3:
        Qn(this, this._x1, this._y1);
      case 2:
        this._context.lineTo(this._x1, this._y1);
        break;
    }
    (this._line || this._line !== 0 && this._point === 1) && this._context.closePath(), this._line = 1 - this._line;
  },
  point: function(e, t) {
    switch (e = +e, t = +t, this._point) {
      case 0:
        this._point = 1, this._line ? this._context.lineTo(e, t) : this._context.moveTo(e, t);
        break;
      case 1:
        this._point = 2;
        break;
      case 2:
        this._point = 3, this._context.lineTo((5 * this._x0 + this._x1) / 6, (5 * this._y0 + this._y1) / 6);
      default:
        Qn(this, e, t);
        break;
    }
    this._x0 = this._x1, this._x1 = e, this._y0 = this._y1, this._y1 = t;
  }
};
function Ws(e) {
  return new La(e);
}
function Su(e) {
  this._context = e;
}
Su.prototype = {
  areaStart: Ge,
  areaEnd: Ge,
  lineStart: function() {
    this._x0 = this._x1 = this._x2 = this._x3 = this._x4 = this._y0 = this._y1 = this._y2 = this._y3 = this._y4 = NaN, this._point = 0;
  },
  lineEnd: function() {
    switch (this._point) {
      case 1: {
        this._context.moveTo(this._x2, this._y2), this._context.closePath();
        break;
      }
      case 2: {
        this._context.moveTo((this._x2 + 2 * this._x3) / 3, (this._y2 + 2 * this._y3) / 3), this._context.lineTo((this._x3 + 2 * this._x2) / 3, (this._y3 + 2 * this._y2) / 3), this._context.closePath();
        break;
      }
      case 3: {
        this.point(this._x2, this._y2), this.point(this._x3, this._y3), this.point(this._x4, this._y4);
        break;
      }
    }
  },
  point: function(e, t) {
    switch (e = +e, t = +t, this._point) {
      case 0:
        this._point = 1, this._x2 = e, this._y2 = t;
        break;
      case 1:
        this._point = 2, this._x3 = e, this._y3 = t;
        break;
      case 2:
        this._point = 3, this._x4 = e, this._y4 = t, this._context.moveTo((this._x0 + 4 * this._x1 + e) / 6, (this._y0 + 4 * this._y1 + t) / 6);
        break;
      default:
        Qn(this, e, t);
        break;
    }
    this._x0 = this._x1, this._x1 = e, this._y0 = this._y1, this._y1 = t;
  }
};
function K1(e) {
  return new Su(e);
}
function Tu(e) {
  this._context = e;
}
Tu.prototype = {
  areaStart: function() {
    this._line = 0;
  },
  areaEnd: function() {
    this._line = NaN;
  },
  lineStart: function() {
    this._x0 = this._x1 = this._y0 = this._y1 = NaN, this._point = 0;
  },
  lineEnd: function() {
    (this._line || this._line !== 0 && this._point === 3) && this._context.closePath(), this._line = 1 - this._line;
  },
  point: function(e, t) {
    switch (e = +e, t = +t, this._point) {
      case 0:
        this._point = 1;
        break;
      case 1:
        this._point = 2;
        break;
      case 2:
        this._point = 3;
        var r = (this._x0 + 4 * this._x1 + e) / 6, i = (this._y0 + 4 * this._y1 + t) / 6;
        this._line ? this._context.lineTo(r, i) : this._context.moveTo(r, i);
        break;
      case 3:
        this._point = 4;
      default:
        Qn(this, e, t);
        break;
    }
    this._x0 = this._x1, this._x1 = e, this._y0 = this._y1, this._y1 = t;
  }
};
function Q1(e) {
  return new Tu(e);
}
function Bu(e, t) {
  this._basis = new La(e), this._beta = t;
}
Bu.prototype = {
  lineStart: function() {
    this._x = [], this._y = [], this._basis.lineStart();
  },
  lineEnd: function() {
    var e = this._x, t = this._y, r = e.length - 1;
    if (r > 0)
      for (var i = e[0], n = t[0], a = e[r] - i, o = t[r] - n, s = -1, l; ++s <= r; )
        l = s / r, this._basis.point(
          this._beta * e[s] + (1 - this._beta) * (i + l * a),
          this._beta * t[s] + (1 - this._beta) * (n + l * o)
        );
    this._x = this._y = null, this._basis.lineEnd();
  },
  point: function(e, t) {
    this._x.push(+e), this._y.push(+t);
  }
};
const J1 = function e(t) {
  function r(i) {
    return t === 1 ? new La(i) : new Bu(i, t);
  }
  return r.beta = function(i) {
    return e(+i);
  }, r;
}(0.85);
function Jn(e, t, r) {
  e._context.bezierCurveTo(
    e._x1 + e._k * (e._x2 - e._x0),
    e._y1 + e._k * (e._y2 - e._y0),
    e._x2 + e._k * (e._x1 - t),
    e._y2 + e._k * (e._y1 - r),
    e._x2,
    e._y2
  );
}
function zo(e, t) {
  this._context = e, this._k = (1 - t) / 6;
}
zo.prototype = {
  areaStart: function() {
    this._line = 0;
  },
  areaEnd: function() {
    this._line = NaN;
  },
  lineStart: function() {
    this._x0 = this._x1 = this._x2 = this._y0 = this._y1 = this._y2 = NaN, this._point = 0;
  },
  lineEnd: function() {
    switch (this._point) {
      case 2:
        this._context.lineTo(this._x2, this._y2);
        break;
      case 3:
        Jn(this, this._x1, this._y1);
        break;
    }
    (this._line || this._line !== 0 && this._point === 1) && this._context.closePath(), this._line = 1 - this._line;
  },
  point: function(e, t) {
    switch (e = +e, t = +t, this._point) {
      case 0:
        this._point = 1, this._line ? this._context.lineTo(e, t) : this._context.moveTo(e, t);
        break;
      case 1:
        this._point = 2, this._x1 = e, this._y1 = t;
        break;
      case 2:
        this._point = 3;
      default:
        Jn(this, e, t);
        break;
    }
    this._x0 = this._x1, this._x1 = this._x2, this._x2 = e, this._y0 = this._y1, this._y1 = this._y2, this._y2 = t;
  }
};
const Au = function e(t) {
  function r(i) {
    return new zo(i, t);
  }
  return r.tension = function(i) {
    return e(+i);
  }, r;
}(0);
function Wo(e, t) {
  this._context = e, this._k = (1 - t) / 6;
}
Wo.prototype = {
  areaStart: Ge,
  areaEnd: Ge,
  lineStart: function() {
    this._x0 = this._x1 = this._x2 = this._x3 = this._x4 = this._x5 = this._y0 = this._y1 = this._y2 = this._y3 = this._y4 = this._y5 = NaN, this._point = 0;
  },
  lineEnd: function() {
    switch (this._point) {
      case 1: {
        this._context.moveTo(this._x3, this._y3), this._context.closePath();
        break;
      }
      case 2: {
        this._context.lineTo(this._x3, this._y3), this._context.closePath();
        break;
      }
      case 3: {
        this.point(this._x3, this._y3), this.point(this._x4, this._y4), this.point(this._x5, this._y5);
        break;
      }
    }
  },
  point: function(e, t) {
    switch (e = +e, t = +t, this._point) {
      case 0:
        this._point = 1, this._x3 = e, this._y3 = t;
        break;
      case 1:
        this._point = 2, this._context.moveTo(this._x4 = e, this._y4 = t);
        break;
      case 2:
        this._point = 3, this._x5 = e, this._y5 = t;
        break;
      default:
        Jn(this, e, t);
        break;
    }
    this._x0 = this._x1, this._x1 = this._x2, this._x2 = e, this._y0 = this._y1, this._y1 = this._y2, this._y2 = t;
  }
};
const t2 = function e(t) {
  function r(i) {
    return new Wo(i, t);
  }
  return r.tension = function(i) {
    return e(+i);
  }, r;
}(0);
function qo(e, t) {
  this._context = e, this._k = (1 - t) / 6;
}
qo.prototype = {
  areaStart: function() {
    this._line = 0;
  },
  areaEnd: function() {
    this._line = NaN;
  },
  lineStart: function() {
    this._x0 = this._x1 = this._x2 = this._y0 = this._y1 = this._y2 = NaN, this._point = 0;
  },
  lineEnd: function() {
    (this._line || this._line !== 0 && this._point === 3) && this._context.closePath(), this._line = 1 - this._line;
  },
  point: function(e, t) {
    switch (e = +e, t = +t, this._point) {
      case 0:
        this._point = 1;
        break;
      case 1:
        this._point = 2;
        break;
      case 2:
        this._point = 3, this._line ? this._context.lineTo(this._x2, this._y2) : this._context.moveTo(this._x2, this._y2);
        break;
      case 3:
        this._point = 4;
      default:
        Jn(this, e, t);
        break;
    }
    this._x0 = this._x1, this._x1 = this._x2, this._x2 = e, this._y0 = this._y1, this._y1 = this._y2, this._y2 = t;
  }
};
const e2 = function e(t) {
  function r(i) {
    return new qo(i, t);
  }
  return r.tension = function(i) {
    return e(+i);
  }, r;
}(0);
function Ho(e, t, r) {
  var i = e._x1, n = e._y1, a = e._x2, o = e._y2;
  if (e._l01_a > bc) {
    var s = 2 * e._l01_2a + 3 * e._l01_a * e._l12_a + e._l12_2a, l = 3 * e._l01_a * (e._l01_a + e._l12_a);
    i = (i * s - e._x0 * e._l12_2a + e._x2 * e._l01_2a) / l, n = (n * s - e._y0 * e._l12_2a + e._y2 * e._l01_2a) / l;
  }
  if (e._l23_a > bc) {
    var c = 2 * e._l23_2a + 3 * e._l23_a * e._l12_a + e._l12_2a, h = 3 * e._l23_a * (e._l23_a + e._l12_a);
    a = (a * c + e._x1 * e._l23_2a - t * e._l12_2a) / h, o = (o * c + e._y1 * e._l23_2a - r * e._l12_2a) / h;
  }
  e._context.bezierCurveTo(i, n, a, o, e._x2, e._y2);
}
function Lu(e, t) {
  this._context = e, this._alpha = t;
}
Lu.prototype = {
  areaStart: function() {
    this._line = 0;
  },
  areaEnd: function() {
    this._line = NaN;
  },
  lineStart: function() {
    this._x0 = this._x1 = this._x2 = this._y0 = this._y1 = this._y2 = NaN, this._l01_a = this._l12_a = this._l23_a = this._l01_2a = this._l12_2a = this._l23_2a = this._point = 0;
  },
  lineEnd: function() {
    switch (this._point) {
      case 2:
        this._context.lineTo(this._x2, this._y2);
        break;
      case 3:
        this.point(this._x2, this._y2);
        break;
    }
    (this._line || this._line !== 0 && this._point === 1) && this._context.closePath(), this._line = 1 - this._line;
  },
  point: function(e, t) {
    if (e = +e, t = +t, this._point) {
      var r = this._x2 - e, i = this._y2 - t;
      this._l23_a = Math.sqrt(this._l23_2a = Math.pow(r * r + i * i, this._alpha));
    }
    switch (this._point) {
      case 0:
        this._point = 1, this._line ? this._context.lineTo(e, t) : this._context.moveTo(e, t);
        break;
      case 1:
        this._point = 2;
        break;
      case 2:
        this._point = 3;
      default:
        Ho(this, e, t);
        break;
    }
    this._l01_a = this._l12_a, this._l12_a = this._l23_a, this._l01_2a = this._l12_2a, this._l12_2a = this._l23_2a, this._x0 = this._x1, this._x1 = this._x2, this._x2 = e, this._y0 = this._y1, this._y1 = this._y2, this._y2 = t;
  }
};
const Mu = function e(t) {
  function r(i) {
    return t ? new Lu(i, t) : new zo(i, 0);
  }
  return r.alpha = function(i) {
    return e(+i);
  }, r;
}(0.5);
function Eu(e, t) {
  this._context = e, this._alpha = t;
}
Eu.prototype = {
  areaStart: Ge,
  areaEnd: Ge,
  lineStart: function() {
    this._x0 = this._x1 = this._x2 = this._x3 = this._x4 = this._x5 = this._y0 = this._y1 = this._y2 = this._y3 = this._y4 = this._y5 = NaN, this._l01_a = this._l12_a = this._l23_a = this._l01_2a = this._l12_2a = this._l23_2a = this._point = 0;
  },
  lineEnd: function() {
    switch (this._point) {
      case 1: {
        this._context.moveTo(this._x3, this._y3), this._context.closePath();
        break;
      }
      case 2: {
        this._context.lineTo(this._x3, this._y3), this._context.closePath();
        break;
      }
      case 3: {
        this.point(this._x3, this._y3), this.point(this._x4, this._y4), this.point(this._x5, this._y5);
        break;
      }
    }
  },
  point: function(e, t) {
    if (e = +e, t = +t, this._point) {
      var r = this._x2 - e, i = this._y2 - t;
      this._l23_a = Math.sqrt(this._l23_2a = Math.pow(r * r + i * i, this._alpha));
    }
    switch (this._point) {
      case 0:
        this._point = 1, this._x3 = e, this._y3 = t;
        break;
      case 1:
        this._point = 2, this._context.moveTo(this._x4 = e, this._y4 = t);
        break;
      case 2:
        this._point = 3, this._x5 = e, this._y5 = t;
        break;
      default:
        Ho(this, e, t);
        break;
    }
    this._l01_a = this._l12_a, this._l12_a = this._l23_a, this._l01_2a = this._l12_2a, this._l12_2a = this._l23_2a, this._x0 = this._x1, this._x1 = this._x2, this._x2 = e, this._y0 = this._y1, this._y1 = this._y2, this._y2 = t;
  }
};
const r2 = function e(t) {
  function r(i) {
    return t ? new Eu(i, t) : new Wo(i, 0);
  }
  return r.alpha = function(i) {
    return e(+i);
  }, r;
}(0.5);
function $u(e, t) {
  this._context = e, this._alpha = t;
}
$u.prototype = {
  areaStart: function() {
    this._line = 0;
  },
  areaEnd: function() {
    this._line = NaN;
  },
  lineStart: function() {
    this._x0 = this._x1 = this._x2 = this._y0 = this._y1 = this._y2 = NaN, this._l01_a = this._l12_a = this._l23_a = this._l01_2a = this._l12_2a = this._l23_2a = this._point = 0;
  },
  lineEnd: function() {
    (this._line || this._line !== 0 && this._point === 3) && this._context.closePath(), this._line = 1 - this._line;
  },
  point: function(e, t) {
    if (e = +e, t = +t, this._point) {
      var r = this._x2 - e, i = this._y2 - t;
      this._l23_a = Math.sqrt(this._l23_2a = Math.pow(r * r + i * i, this._alpha));
    }
    switch (this._point) {
      case 0:
        this._point = 1;
        break;
      case 1:
        this._point = 2;
        break;
      case 2:
        this._point = 3, this._line ? this._context.lineTo(this._x2, this._y2) : this._context.moveTo(this._x2, this._y2);
        break;
      case 3:
        this._point = 4;
      default:
        Ho(this, e, t);
        break;
    }
    this._l01_a = this._l12_a, this._l12_a = this._l23_a, this._l01_2a = this._l12_2a, this._l12_2a = this._l23_2a, this._x0 = this._x1, this._x1 = this._x2, this._x2 = e, this._y0 = this._y1, this._y1 = this._y2, this._y2 = t;
  }
};
const i2 = function e(t) {
  function r(i) {
    return t ? new $u(i, t) : new qo(i, 0);
  }
  return r.alpha = function(i) {
    return e(+i);
  }, r;
}(0.5);
function Fu(e) {
  this._context = e;
}
Fu.prototype = {
  areaStart: Ge,
  areaEnd: Ge,
  lineStart: function() {
    this._point = 0;
  },
  lineEnd: function() {
    this._point && this._context.closePath();
  },
  point: function(e, t) {
    e = +e, t = +t, this._point ? this._context.lineTo(e, t) : (this._point = 1, this._context.moveTo(e, t));
  }
};
function n2(e) {
  return new Fu(e);
}
function _c(e) {
  return e < 0 ? -1 : 1;
}
function wc(e, t, r) {
  var i = e._x1 - e._x0, n = t - e._x1, a = (e._y1 - e._y0) / (i || n < 0 && -0), o = (r - e._y1) / (n || i < 0 && -0), s = (a * n + o * i) / (i + n);
  return (_c(a) + _c(o)) * Math.min(Math.abs(a), Math.abs(o), 0.5 * Math.abs(s)) || 0;
}
function kc(e, t) {
  var r = e._x1 - e._x0;
  return r ? (3 * (e._y1 - e._y0) / r - t) / 2 : t;
}
function fs(e, t, r) {
  var i = e._x0, n = e._y0, a = e._x1, o = e._y1, s = (a - i) / 3;
  e._context.bezierCurveTo(i + s, n + s * t, a - s, o - s * r, a, o);
}
function ta(e) {
  this._context = e;
}
ta.prototype = {
  areaStart: function() {
    this._line = 0;
  },
  areaEnd: function() {
    this._line = NaN;
  },
  lineStart: function() {
    this._x0 = this._x1 = this._y0 = this._y1 = this._t0 = NaN, this._point = 0;
  },
  lineEnd: function() {
    switch (this._point) {
      case 2:
        this._context.lineTo(this._x1, this._y1);
        break;
      case 3:
        fs(this, this._t0, kc(this, this._t0));
        break;
    }
    (this._line || this._line !== 0 && this._point === 1) && this._context.closePath(), this._line = 1 - this._line;
  },
  point: function(e, t) {
    var r = NaN;
    if (e = +e, t = +t, !(e === this._x1 && t === this._y1)) {
      switch (this._point) {
        case 0:
          this._point = 1, this._line ? this._context.lineTo(e, t) : this._context.moveTo(e, t);
          break;
        case 1:
          this._point = 2;
          break;
        case 2:
          this._point = 3, fs(this, kc(this, r = wc(this, e, t)), r);
          break;
        default:
          fs(this, this._t0, r = wc(this, e, t));
          break;
      }
      this._x0 = this._x1, this._x1 = e, this._y0 = this._y1, this._y1 = t, this._t0 = r;
    }
  }
};
function Ou(e) {
  this._context = new Ru(e);
}
(Ou.prototype = Object.create(ta.prototype)).point = function(e, t) {
  ta.prototype.point.call(this, t, e);
};
function Ru(e) {
  this._context = e;
}
Ru.prototype = {
  moveTo: function(e, t) {
    this._context.moveTo(t, e);
  },
  closePath: function() {
    this._context.closePath();
  },
  lineTo: function(e, t) {
    this._context.lineTo(t, e);
  },
  bezierCurveTo: function(e, t, r, i, n, a) {
    this._context.bezierCurveTo(t, e, i, r, a, n);
  }
};
function Du(e) {
  return new ta(e);
}
function Iu(e) {
  return new Ou(e);
}
function Pu(e) {
  this._context = e;
}
Pu.prototype = {
  areaStart: function() {
    this._line = 0;
  },
  areaEnd: function() {
    this._line = NaN;
  },
  lineStart: function() {
    this._x = [], this._y = [];
  },
  lineEnd: function() {
    var e = this._x, t = this._y, r = e.length;
    if (r)
      if (this._line ? this._context.lineTo(e[0], t[0]) : this._context.moveTo(e[0], t[0]), r === 2)
        this._context.lineTo(e[1], t[1]);
      else
        for (var i = vc(e), n = vc(t), a = 0, o = 1; o < r; ++a, ++o)
          this._context.bezierCurveTo(i[0][a], n[0][a], i[1][a], n[1][a], e[o], t[o]);
    (this._line || this._line !== 0 && r === 1) && this._context.closePath(), this._line = 1 - this._line, this._x = this._y = null;
  },
  point: function(e, t) {
    this._x.push(+e), this._y.push(+t);
  }
};
function vc(e) {
  var t, r = e.length - 1, i, n = new Array(r), a = new Array(r), o = new Array(r);
  for (n[0] = 0, a[0] = 2, o[0] = e[0] + 2 * e[1], t = 1; t < r - 1; ++t) n[t] = 1, a[t] = 4, o[t] = 4 * e[t] + 2 * e[t + 1];
  for (n[r - 1] = 2, a[r - 1] = 7, o[r - 1] = 8 * e[r - 1] + e[r], t = 1; t < r; ++t) i = n[t] / a[t - 1], a[t] -= i, o[t] -= i * o[t - 1];
  for (n[r - 1] = o[r - 1] / a[r - 1], t = r - 2; t >= 0; --t) n[t] = (o[t] - n[t + 1]) / a[t];
  for (a[r - 1] = (e[r] + n[r - 1]) / 2, t = 0; t < r - 1; ++t) a[t] = 2 * e[t + 1] - n[t + 1];
  return [n, a];
}
function Nu(e) {
  return new Pu(e);
}
function Ma(e, t) {
  this._context = e, this._t = t;
}
Ma.prototype = {
  areaStart: function() {
    this._line = 0;
  },
  areaEnd: function() {
    this._line = NaN;
  },
  lineStart: function() {
    this._x = this._y = NaN, this._point = 0;
  },
  lineEnd: function() {
    0 < this._t && this._t < 1 && this._point === 2 && this._context.lineTo(this._x, this._y), (this._line || this._line !== 0 && this._point === 1) && this._context.closePath(), this._line >= 0 && (this._t = 1 - this._t, this._line = 1 - this._line);
  },
  point: function(e, t) {
    switch (e = +e, t = +t, this._point) {
      case 0:
        this._point = 1, this._line ? this._context.lineTo(e, t) : this._context.moveTo(e, t);
        break;
      case 1:
        this._point = 2;
      default: {
        if (this._t <= 0)
          this._context.lineTo(this._x, t), this._context.lineTo(e, t);
        else {
          var r = this._x * (1 - this._t) + e * this._t;
          this._context.lineTo(r, this._y), this._context.lineTo(r, t);
        }
        break;
      }
    }
    this._x = e, this._y = t;
  }
};
function zu(e) {
  return new Ma(e, 0.5);
}
function Wu(e) {
  return new Ma(e, 0);
}
function qu(e) {
  return new Ma(e, 1);
}
function vi(e, t, r) {
  this.k = e, this.x = t, this.y = r;
}
vi.prototype = {
  constructor: vi,
  scale: function(e) {
    return e === 1 ? this : new vi(this.k * e, this.x, this.y);
  },
  translate: function(e, t) {
    return e === 0 & t === 0 ? this : new vi(this.k, this.x + this.k * e, this.y + this.k * t);
  },
  apply: function(e) {
    return [e[0] * this.k + this.x, e[1] * this.k + this.y];
  },
  applyX: function(e) {
    return e * this.k + this.x;
  },
  applyY: function(e) {
    return e * this.k + this.y;
  },
  invert: function(e) {
    return [(e[0] - this.x) / this.k, (e[1] - this.y) / this.k];
  },
  invertX: function(e) {
    return (e - this.x) / this.k;
  },
  invertY: function(e) {
    return (e - this.y) / this.k;
  },
  rescaleX: function(e) {
    return e.copy().domain(e.range().map(this.invertX, this).map(e.invert, e));
  },
  rescaleY: function(e) {
    return e.copy().domain(e.range().map(this.invertY, this).map(e.invert, e));
  },
  toString: function() {
    return "translate(" + this.x + "," + this.y + ") scale(" + this.k + ")";
  }
};
vi.prototype;
var a2 = /* @__PURE__ */ d((e) => {
  var n;
  const { securityLevel: t } = ot();
  let r = et("body");
  if (t === "sandbox") {
    const o = ((n = et(`#i${e}`).node()) == null ? void 0 : n.contentDocument) ?? document;
    r = et(o.body);
  }
  return r.select(`#${e}`);
}, "selectSvgElement");
function jo(e) {
  return typeof e > "u" || e === null;
}
d(jo, "isNothing");
function Hu(e) {
  return typeof e == "object" && e !== null;
}
d(Hu, "isObject");
function ju(e) {
  return Array.isArray(e) ? e : jo(e) ? [] : [e];
}
d(ju, "toArray");
function Yu(e, t) {
  var r, i, n, a;
  if (t)
    for (a = Object.keys(t), r = 0, i = a.length; r < i; r += 1)
      n = a[r], e[n] = t[n];
  return e;
}
d(Yu, "extend");
function Uu(e, t) {
  var r = "", i;
  for (i = 0; i < t; i += 1)
    r += e;
  return r;
}
d(Uu, "repeat");
function Gu(e) {
  return e === 0 && Number.NEGATIVE_INFINITY === 1 / e;
}
d(Gu, "isNegativeZero");
var s2 = jo, o2 = Hu, l2 = ju, c2 = Uu, h2 = Gu, u2 = Yu, vt = {
  isNothing: s2,
  isObject: o2,
  toArray: l2,
  repeat: c2,
  isNegativeZero: h2,
  extend: u2
};
function Yo(e, t) {
  var r = "", i = e.reason || "(unknown reason)";
  return e.mark ? (e.mark.name && (r += 'in "' + e.mark.name + '" '), r += "(" + (e.mark.line + 1) + ":" + (e.mark.column + 1) + ")", !t && e.mark.snippet && (r += `

` + e.mark.snippet), i + " " + r) : i;
}
d(Yo, "formatError");
function Vr(e, t) {
  Error.call(this), this.name = "YAMLException", this.reason = e, this.mark = t, this.message = Yo(this, !1), Error.captureStackTrace ? Error.captureStackTrace(this, this.constructor) : this.stack = new Error().stack || "";
}
d(Vr, "YAMLException$1");
Vr.prototype = Object.create(Error.prototype);
Vr.prototype.constructor = Vr;
Vr.prototype.toString = /* @__PURE__ */ d(function(t) {
  return this.name + ": " + Yo(this, t);
}, "toString");
var Xt = Vr;
function On(e, t, r, i, n) {
  var a = "", o = "", s = Math.floor(n / 2) - 1;
  return i - t > s && (a = " ... ", t = i - s + a.length), r - i > s && (o = " ...", r = i + s - o.length), {
    str: a + e.slice(t, r).replace(/\t/g, "→") + o,
    pos: i - t + a.length
    // relative position
  };
}
d(On, "getLine");
function Rn(e, t) {
  return vt.repeat(" ", t - e.length) + e;
}
d(Rn, "padStart");
function Xu(e, t) {
  if (t = Object.create(t || null), !e.buffer) return null;
  t.maxLength || (t.maxLength = 79), typeof t.indent != "number" && (t.indent = 1), typeof t.linesBefore != "number" && (t.linesBefore = 3), typeof t.linesAfter != "number" && (t.linesAfter = 2);
  for (var r = /\r?\n|\r|\0/g, i = [0], n = [], a, o = -1; a = r.exec(e.buffer); )
    n.push(a.index), i.push(a.index + a[0].length), e.position <= a.index && o < 0 && (o = i.length - 2);
  o < 0 && (o = i.length - 1);
  var s = "", l, c, h = Math.min(e.line + t.linesAfter, n.length).toString().length, u = t.maxLength - (t.indent + h + 3);
  for (l = 1; l <= t.linesBefore && !(o - l < 0); l++)
    c = On(
      e.buffer,
      i[o - l],
      n[o - l],
      e.position - (i[o] - i[o - l]),
      u
    ), s = vt.repeat(" ", t.indent) + Rn((e.line - l + 1).toString(), h) + " | " + c.str + `
` + s;
  for (c = On(e.buffer, i[o], n[o], e.position, u), s += vt.repeat(" ", t.indent) + Rn((e.line + 1).toString(), h) + " | " + c.str + `
`, s += vt.repeat("-", t.indent + h + 3 + c.pos) + `^
`, l = 1; l <= t.linesAfter && !(o + l >= n.length); l++)
    c = On(
      e.buffer,
      i[o + l],
      n[o + l],
      e.position - (i[o] - i[o + l]),
      u
    ), s += vt.repeat(" ", t.indent) + Rn((e.line + l + 1).toString(), h) + " | " + c.str + `
`;
  return s.replace(/\n$/, "");
}
d(Xu, "makeSnippet");
var f2 = Xu, p2 = [
  "kind",
  "multi",
  "resolve",
  "construct",
  "instanceOf",
  "predicate",
  "represent",
  "representName",
  "defaultStyle",
  "styleAliases"
], d2 = [
  "scalar",
  "sequence",
  "mapping"
];
function Vu(e) {
  var t = {};
  return e !== null && Object.keys(e).forEach(function(r) {
    e[r].forEach(function(i) {
      t[String(i)] = r;
    });
  }), t;
}
d(Vu, "compileStyleAliases");
function Zu(e, t) {
  if (t = t || {}, Object.keys(t).forEach(function(r) {
    if (p2.indexOf(r) === -1)
      throw new Xt('Unknown option "' + r + '" is met in definition of "' + e + '" YAML type.');
  }), this.options = t, this.tag = e, this.kind = t.kind || null, this.resolve = t.resolve || function() {
    return !0;
  }, this.construct = t.construct || function(r) {
    return r;
  }, this.instanceOf = t.instanceOf || null, this.predicate = t.predicate || null, this.represent = t.represent || null, this.representName = t.representName || null, this.defaultStyle = t.defaultStyle || null, this.multi = t.multi || !1, this.styleAliases = Vu(t.styleAliases || null), d2.indexOf(this.kind) === -1)
    throw new Xt('Unknown kind "' + this.kind + '" is specified for "' + e + '" YAML type.');
}
d(Zu, "Type$1");
var Rt = Zu;
function qs(e, t) {
  var r = [];
  return e[t].forEach(function(i) {
    var n = r.length;
    r.forEach(function(a, o) {
      a.tag === i.tag && a.kind === i.kind && a.multi === i.multi && (n = o);
    }), r[n] = i;
  }), r;
}
d(qs, "compileList");
function Ku() {
  var e = {
    scalar: {},
    sequence: {},
    mapping: {},
    fallback: {},
    multi: {
      scalar: [],
      sequence: [],
      mapping: [],
      fallback: []
    }
  }, t, r;
  function i(n) {
    n.multi ? (e.multi[n.kind].push(n), e.multi.fallback.push(n)) : e[n.kind][n.tag] = e.fallback[n.tag] = n;
  }
  for (d(i, "collectType"), t = 0, r = arguments.length; t < r; t += 1)
    arguments[t].forEach(i);
  return e;
}
d(Ku, "compileMap");
function ea(e) {
  return this.extend(e);
}
d(ea, "Schema$1");
ea.prototype.extend = /* @__PURE__ */ d(function(t) {
  var r = [], i = [];
  if (t instanceof Rt)
    i.push(t);
  else if (Array.isArray(t))
    i = i.concat(t);
  else if (t && (Array.isArray(t.implicit) || Array.isArray(t.explicit)))
    t.implicit && (r = r.concat(t.implicit)), t.explicit && (i = i.concat(t.explicit));
  else
    throw new Xt("Schema.extend argument should be a Type, [ Type ], or a schema definition ({ implicit: [...], explicit: [...] })");
  r.forEach(function(a) {
    if (!(a instanceof Rt))
      throw new Xt("Specified list of YAML types (or a single Type object) contains a non-Type object.");
    if (a.loadKind && a.loadKind !== "scalar")
      throw new Xt("There is a non-scalar type in the implicit list of a schema. Implicit resolving of such types is not supported.");
    if (a.multi)
      throw new Xt("There is a multi type in the implicit list of a schema. Multi tags can only be listed as explicit.");
  }), i.forEach(function(a) {
    if (!(a instanceof Rt))
      throw new Xt("Specified list of YAML types (or a single Type object) contains a non-Type object.");
  });
  var n = Object.create(ea.prototype);
  return n.implicit = (this.implicit || []).concat(r), n.explicit = (this.explicit || []).concat(i), n.compiledImplicit = qs(n, "implicit"), n.compiledExplicit = qs(n, "explicit"), n.compiledTypeMap = Ku(n.compiledImplicit, n.compiledExplicit), n;
}, "extend");
var g2 = ea, m2 = new Rt("tag:yaml.org,2002:str", {
  kind: "scalar",
  construct: /* @__PURE__ */ d(function(e) {
    return e !== null ? e : "";
  }, "construct")
}), y2 = new Rt("tag:yaml.org,2002:seq", {
  kind: "sequence",
  construct: /* @__PURE__ */ d(function(e) {
    return e !== null ? e : [];
  }, "construct")
}), x2 = new Rt("tag:yaml.org,2002:map", {
  kind: "mapping",
  construct: /* @__PURE__ */ d(function(e) {
    return e !== null ? e : {};
  }, "construct")
}), b2 = new g2({
  explicit: [
    m2,
    y2,
    x2
  ]
});
function Qu(e) {
  if (e === null) return !0;
  var t = e.length;
  return t === 1 && e === "~" || t === 4 && (e === "null" || e === "Null" || e === "NULL");
}
d(Qu, "resolveYamlNull");
function Ju() {
  return null;
}
d(Ju, "constructYamlNull");
function tf(e) {
  return e === null;
}
d(tf, "isNull");
var C2 = new Rt("tag:yaml.org,2002:null", {
  kind: "scalar",
  resolve: Qu,
  construct: Ju,
  predicate: tf,
  represent: {
    canonical: /* @__PURE__ */ d(function() {
      return "~";
    }, "canonical"),
    lowercase: /* @__PURE__ */ d(function() {
      return "null";
    }, "lowercase"),
    uppercase: /* @__PURE__ */ d(function() {
      return "NULL";
    }, "uppercase"),
    camelcase: /* @__PURE__ */ d(function() {
      return "Null";
    }, "camelcase"),
    empty: /* @__PURE__ */ d(function() {
      return "";
    }, "empty")
  },
  defaultStyle: "lowercase"
});
function ef(e) {
  if (e === null) return !1;
  var t = e.length;
  return t === 4 && (e === "true" || e === "True" || e === "TRUE") || t === 5 && (e === "false" || e === "False" || e === "FALSE");
}
d(ef, "resolveYamlBoolean");
function rf(e) {
  return e === "true" || e === "True" || e === "TRUE";
}
d(rf, "constructYamlBoolean");
function nf(e) {
  return Object.prototype.toString.call(e) === "[object Boolean]";
}
d(nf, "isBoolean");
var _2 = new Rt("tag:yaml.org,2002:bool", {
  kind: "scalar",
  resolve: ef,
  construct: rf,
  predicate: nf,
  represent: {
    lowercase: /* @__PURE__ */ d(function(e) {
      return e ? "true" : "false";
    }, "lowercase"),
    uppercase: /* @__PURE__ */ d(function(e) {
      return e ? "TRUE" : "FALSE";
    }, "uppercase"),
    camelcase: /* @__PURE__ */ d(function(e) {
      return e ? "True" : "False";
    }, "camelcase")
  },
  defaultStyle: "lowercase"
});
function af(e) {
  return 48 <= e && e <= 57 || 65 <= e && e <= 70 || 97 <= e && e <= 102;
}
d(af, "isHexCode");
function sf(e) {
  return 48 <= e && e <= 55;
}
d(sf, "isOctCode");
function of(e) {
  return 48 <= e && e <= 57;
}
d(of, "isDecCode");
function lf(e) {
  if (e === null) return !1;
  var t = e.length, r = 0, i = !1, n;
  if (!t) return !1;
  if (n = e[r], (n === "-" || n === "+") && (n = e[++r]), n === "0") {
    if (r + 1 === t) return !0;
    if (n = e[++r], n === "b") {
      for (r++; r < t; r++)
        if (n = e[r], n !== "_") {
          if (n !== "0" && n !== "1") return !1;
          i = !0;
        }
      return i && n !== "_";
    }
    if (n === "x") {
      for (r++; r < t; r++)
        if (n = e[r], n !== "_") {
          if (!af(e.charCodeAt(r))) return !1;
          i = !0;
        }
      return i && n !== "_";
    }
    if (n === "o") {
      for (r++; r < t; r++)
        if (n = e[r], n !== "_") {
          if (!sf(e.charCodeAt(r))) return !1;
          i = !0;
        }
      return i && n !== "_";
    }
  }
  if (n === "_") return !1;
  for (; r < t; r++)
    if (n = e[r], n !== "_") {
      if (!of(e.charCodeAt(r)))
        return !1;
      i = !0;
    }
  return !(!i || n === "_");
}
d(lf, "resolveYamlInteger");
function cf(e) {
  var t = e, r = 1, i;
  if (t.indexOf("_") !== -1 && (t = t.replace(/_/g, "")), i = t[0], (i === "-" || i === "+") && (i === "-" && (r = -1), t = t.slice(1), i = t[0]), t === "0") return 0;
  if (i === "0") {
    if (t[1] === "b") return r * parseInt(t.slice(2), 2);
    if (t[1] === "x") return r * parseInt(t.slice(2), 16);
    if (t[1] === "o") return r * parseInt(t.slice(2), 8);
  }
  return r * parseInt(t, 10);
}
d(cf, "constructYamlInteger");
function hf(e) {
  return Object.prototype.toString.call(e) === "[object Number]" && e % 1 === 0 && !vt.isNegativeZero(e);
}
d(hf, "isInteger");
var w2 = new Rt("tag:yaml.org,2002:int", {
  kind: "scalar",
  resolve: lf,
  construct: cf,
  predicate: hf,
  represent: {
    binary: /* @__PURE__ */ d(function(e) {
      return e >= 0 ? "0b" + e.toString(2) : "-0b" + e.toString(2).slice(1);
    }, "binary"),
    octal: /* @__PURE__ */ d(function(e) {
      return e >= 0 ? "0o" + e.toString(8) : "-0o" + e.toString(8).slice(1);
    }, "octal"),
    decimal: /* @__PURE__ */ d(function(e) {
      return e.toString(10);
    }, "decimal"),
    /* eslint-disable max-len */
    hexadecimal: /* @__PURE__ */ d(function(e) {
      return e >= 0 ? "0x" + e.toString(16).toUpperCase() : "-0x" + e.toString(16).toUpperCase().slice(1);
    }, "hexadecimal")
  },
  defaultStyle: "decimal",
  styleAliases: {
    binary: [2, "bin"],
    octal: [8, "oct"],
    decimal: [10, "dec"],
    hexadecimal: [16, "hex"]
  }
}), k2 = new RegExp(
  // 2.5e4, 2.5 and integers
  "^(?:[-+]?(?:[0-9][0-9_]*)(?:\\.[0-9_]*)?(?:[eE][-+]?[0-9]+)?|\\.[0-9_]+(?:[eE][-+]?[0-9]+)?|[-+]?\\.(?:inf|Inf|INF)|\\.(?:nan|NaN|NAN))$"
);
function uf(e) {
  return !(e === null || !k2.test(e) || // Quick hack to not allow integers end with `_`
  // Probably should update regexp & check speed
  e[e.length - 1] === "_");
}
d(uf, "resolveYamlFloat");
function ff(e) {
  var t, r;
  return t = e.replace(/_/g, "").toLowerCase(), r = t[0] === "-" ? -1 : 1, "+-".indexOf(t[0]) >= 0 && (t = t.slice(1)), t === ".inf" ? r === 1 ? Number.POSITIVE_INFINITY : Number.NEGATIVE_INFINITY : t === ".nan" ? NaN : r * parseFloat(t, 10);
}
d(ff, "constructYamlFloat");
var v2 = /^[-+]?[0-9]+e/;
function pf(e, t) {
  var r;
  if (isNaN(e))
    switch (t) {
      case "lowercase":
        return ".nan";
      case "uppercase":
        return ".NAN";
      case "camelcase":
        return ".NaN";
    }
  else if (Number.POSITIVE_INFINITY === e)
    switch (t) {
      case "lowercase":
        return ".inf";
      case "uppercase":
        return ".INF";
      case "camelcase":
        return ".Inf";
    }
  else if (Number.NEGATIVE_INFINITY === e)
    switch (t) {
      case "lowercase":
        return "-.inf";
      case "uppercase":
        return "-.INF";
      case "camelcase":
        return "-.Inf";
    }
  else if (vt.isNegativeZero(e))
    return "-0.0";
  return r = e.toString(10), v2.test(r) ? r.replace("e", ".e") : r;
}
d(pf, "representYamlFloat");
function df(e) {
  return Object.prototype.toString.call(e) === "[object Number]" && (e % 1 !== 0 || vt.isNegativeZero(e));
}
d(df, "isFloat");
var S2 = new Rt("tag:yaml.org,2002:float", {
  kind: "scalar",
  resolve: uf,
  construct: ff,
  predicate: df,
  represent: pf,
  defaultStyle: "lowercase"
}), gf = b2.extend({
  implicit: [
    C2,
    _2,
    w2,
    S2
  ]
}), T2 = gf, mf = new RegExp(
  "^([0-9][0-9][0-9][0-9])-([0-9][0-9])-([0-9][0-9])$"
), yf = new RegExp(
  "^([0-9][0-9][0-9][0-9])-([0-9][0-9]?)-([0-9][0-9]?)(?:[Tt]|[ \\t]+)([0-9][0-9]?):([0-9][0-9]):([0-9][0-9])(?:\\.([0-9]*))?(?:[ \\t]*(Z|([-+])([0-9][0-9]?)(?::([0-9][0-9]))?))?$"
);
function xf(e) {
  return e === null ? !1 : mf.exec(e) !== null || yf.exec(e) !== null;
}
d(xf, "resolveYamlTimestamp");
function bf(e) {
  var t, r, i, n, a, o, s, l = 0, c = null, h, u, p;
  if (t = mf.exec(e), t === null && (t = yf.exec(e)), t === null) throw new Error("Date resolve error");
  if (r = +t[1], i = +t[2] - 1, n = +t[3], !t[4])
    return new Date(Date.UTC(r, i, n));
  if (a = +t[4], o = +t[5], s = +t[6], t[7]) {
    for (l = t[7].slice(0, 3); l.length < 3; )
      l += "0";
    l = +l;
  }
  return t[9] && (h = +t[10], u = +(t[11] || 0), c = (h * 60 + u) * 6e4, t[9] === "-" && (c = -c)), p = new Date(Date.UTC(r, i, n, a, o, s, l)), c && p.setTime(p.getTime() - c), p;
}
d(bf, "constructYamlTimestamp");
function Cf(e) {
  return e.toISOString();
}
d(Cf, "representYamlTimestamp");
var B2 = new Rt("tag:yaml.org,2002:timestamp", {
  kind: "scalar",
  resolve: xf,
  construct: bf,
  instanceOf: Date,
  represent: Cf
});
function _f(e) {
  return e === "<<" || e === null;
}
d(_f, "resolveYamlMerge");
var A2 = new Rt("tag:yaml.org,2002:merge", {
  kind: "scalar",
  resolve: _f
}), Uo = `ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=
\r`;
function wf(e) {
  if (e === null) return !1;
  var t, r, i = 0, n = e.length, a = Uo;
  for (r = 0; r < n; r++)
    if (t = a.indexOf(e.charAt(r)), !(t > 64)) {
      if (t < 0) return !1;
      i += 6;
    }
  return i % 8 === 0;
}
d(wf, "resolveYamlBinary");
function kf(e) {
  var t, r, i = e.replace(/[\r\n=]/g, ""), n = i.length, a = Uo, o = 0, s = [];
  for (t = 0; t < n; t++)
    t % 4 === 0 && t && (s.push(o >> 16 & 255), s.push(o >> 8 & 255), s.push(o & 255)), o = o << 6 | a.indexOf(i.charAt(t));
  return r = n % 4 * 6, r === 0 ? (s.push(o >> 16 & 255), s.push(o >> 8 & 255), s.push(o & 255)) : r === 18 ? (s.push(o >> 10 & 255), s.push(o >> 2 & 255)) : r === 12 && s.push(o >> 4 & 255), new Uint8Array(s);
}
d(kf, "constructYamlBinary");
function vf(e) {
  var t = "", r = 0, i, n, a = e.length, o = Uo;
  for (i = 0; i < a; i++)
    i % 3 === 0 && i && (t += o[r >> 18 & 63], t += o[r >> 12 & 63], t += o[r >> 6 & 63], t += o[r & 63]), r = (r << 8) + e[i];
  return n = a % 3, n === 0 ? (t += o[r >> 18 & 63], t += o[r >> 12 & 63], t += o[r >> 6 & 63], t += o[r & 63]) : n === 2 ? (t += o[r >> 10 & 63], t += o[r >> 4 & 63], t += o[r << 2 & 63], t += o[64]) : n === 1 && (t += o[r >> 2 & 63], t += o[r << 4 & 63], t += o[64], t += o[64]), t;
}
d(vf, "representYamlBinary");
function Sf(e) {
  return Object.prototype.toString.call(e) === "[object Uint8Array]";
}
d(Sf, "isBinary");
var L2 = new Rt("tag:yaml.org,2002:binary", {
  kind: "scalar",
  resolve: wf,
  construct: kf,
  predicate: Sf,
  represent: vf
}), M2 = Object.prototype.hasOwnProperty, E2 = Object.prototype.toString;
function Tf(e) {
  if (e === null) return !0;
  var t = [], r, i, n, a, o, s = e;
  for (r = 0, i = s.length; r < i; r += 1) {
    if (n = s[r], o = !1, E2.call(n) !== "[object Object]") return !1;
    for (a in n)
      if (M2.call(n, a))
        if (!o) o = !0;
        else return !1;
    if (!o) return !1;
    if (t.indexOf(a) === -1) t.push(a);
    else return !1;
  }
  return !0;
}
d(Tf, "resolveYamlOmap");
function Bf(e) {
  return e !== null ? e : [];
}
d(Bf, "constructYamlOmap");
var $2 = new Rt("tag:yaml.org,2002:omap", {
  kind: "sequence",
  resolve: Tf,
  construct: Bf
}), F2 = Object.prototype.toString;
function Af(e) {
  if (e === null) return !0;
  var t, r, i, n, a, o = e;
  for (a = new Array(o.length), t = 0, r = o.length; t < r; t += 1) {
    if (i = o[t], F2.call(i) !== "[object Object]" || (n = Object.keys(i), n.length !== 1)) return !1;
    a[t] = [n[0], i[n[0]]];
  }
  return !0;
}
d(Af, "resolveYamlPairs");
function Lf(e) {
  if (e === null) return [];
  var t, r, i, n, a, o = e;
  for (a = new Array(o.length), t = 0, r = o.length; t < r; t += 1)
    i = o[t], n = Object.keys(i), a[t] = [n[0], i[n[0]]];
  return a;
}
d(Lf, "constructYamlPairs");
var O2 = new Rt("tag:yaml.org,2002:pairs", {
  kind: "sequence",
  resolve: Af,
  construct: Lf
}), R2 = Object.prototype.hasOwnProperty;
function Mf(e) {
  if (e === null) return !0;
  var t, r = e;
  for (t in r)
    if (R2.call(r, t) && r[t] !== null)
      return !1;
  return !0;
}
d(Mf, "resolveYamlSet");
function Ef(e) {
  return e !== null ? e : {};
}
d(Ef, "constructYamlSet");
var D2 = new Rt("tag:yaml.org,2002:set", {
  kind: "mapping",
  resolve: Mf,
  construct: Ef
}), $f = T2.extend({
  implicit: [
    B2,
    A2
  ],
  explicit: [
    L2,
    $2,
    O2,
    D2
  ]
}), Xe = Object.prototype.hasOwnProperty, ra = 1, Ff = 2, Of = 3, ia = 4, ps = 1, I2 = 2, Sc = 3, P2 = /[\x00-\x08\x0B\x0C\x0E-\x1F\x7F-\x84\x86-\x9F\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/, N2 = /[\x85\u2028\u2029]/, z2 = /[,\[\]\{\}]/, Rf = /^(?:!|!!|![a-z\-]+!)$/i, Df = /^(?:!|[^,\[\]\{\}])(?:%[0-9a-f]{2}|[0-9a-z\-#;\/\?:@&=\+\$,_\.!~\*'\(\)\[\]])*$/i;
function Hs(e) {
  return Object.prototype.toString.call(e);
}
d(Hs, "_class");
function ue(e) {
  return e === 10 || e === 13;
}
d(ue, "is_EOL");
function Ue(e) {
  return e === 9 || e === 32;
}
d(Ue, "is_WHITE_SPACE");
function Wt(e) {
  return e === 9 || e === 32 || e === 10 || e === 13;
}
d(Wt, "is_WS_OR_EOL");
function cr(e) {
  return e === 44 || e === 91 || e === 93 || e === 123 || e === 125;
}
d(cr, "is_FLOW_INDICATOR");
function If(e) {
  var t;
  return 48 <= e && e <= 57 ? e - 48 : (t = e | 32, 97 <= t && t <= 102 ? t - 97 + 10 : -1);
}
d(If, "fromHexCode");
function Pf(e) {
  return e === 120 ? 2 : e === 117 ? 4 : e === 85 ? 8 : 0;
}
d(Pf, "escapedHexLen");
function Nf(e) {
  return 48 <= e && e <= 57 ? e - 48 : -1;
}
d(Nf, "fromDecimalCode");
function js(e) {
  return e === 48 ? "\0" : e === 97 ? "\x07" : e === 98 ? "\b" : e === 116 || e === 9 ? "	" : e === 110 ? `
` : e === 118 ? "\v" : e === 102 ? "\f" : e === 114 ? "\r" : e === 101 ? "\x1B" : e === 32 ? " " : e === 34 ? '"' : e === 47 ? "/" : e === 92 ? "\\" : e === 78 ? "…" : e === 95 ? " " : e === 76 ? "\u2028" : e === 80 ? "\u2029" : "";
}
d(js, "simpleEscapeSequence");
function zf(e) {
  return e <= 65535 ? String.fromCharCode(e) : String.fromCharCode(
    (e - 65536 >> 10) + 55296,
    (e - 65536 & 1023) + 56320
  );
}
d(zf, "charFromCodepoint");
function Go(e, t, r) {
  t === "__proto__" ? Object.defineProperty(e, t, {
    configurable: !0,
    enumerable: !0,
    writable: !0,
    value: r
  }) : e[t] = r;
}
d(Go, "setProperty");
var Wf = new Array(256), qf = new Array(256);
for (ir = 0; ir < 256; ir++)
  Wf[ir] = js(ir) ? 1 : 0, qf[ir] = js(ir);
var ir;
function Hf(e, t) {
  this.input = e, this.filename = t.filename || null, this.schema = t.schema || $f, this.onWarning = t.onWarning || null, this.legacy = t.legacy || !1, this.json = t.json || !1, this.listener = t.listener || null, this.implicitTypes = this.schema.compiledImplicit, this.typeMap = this.schema.compiledTypeMap, this.length = e.length, this.position = 0, this.line = 0, this.lineStart = 0, this.lineIndent = 0, this.firstTabInLine = -1, this.documents = [];
}
d(Hf, "State$1");
function Xo(e, t) {
  var r = {
    name: e.filename,
    buffer: e.input.slice(0, -1),
    // omit trailing \0
    position: e.position,
    line: e.line,
    column: e.position - e.lineStart
  };
  return r.snippet = f2(r), new Xt(t, r);
}
d(Xo, "generateError");
function X(e, t) {
  throw Xo(e, t);
}
d(X, "throwError");
function Wi(e, t) {
  e.onWarning && e.onWarning.call(null, Xo(e, t));
}
d(Wi, "throwWarning");
var Tc = {
  YAML: /* @__PURE__ */ d(function(t, r, i) {
    var n, a, o;
    t.version !== null && X(t, "duplication of %YAML directive"), i.length !== 1 && X(t, "YAML directive accepts exactly one argument"), n = /^([0-9]+)\.([0-9]+)$/.exec(i[0]), n === null && X(t, "ill-formed argument of the YAML directive"), a = parseInt(n[1], 10), o = parseInt(n[2], 10), a !== 1 && X(t, "unacceptable YAML version of the document"), t.version = i[0], t.checkLineBreaks = o < 2, o !== 1 && o !== 2 && Wi(t, "unsupported YAML version of the document");
  }, "handleYamlDirective"),
  TAG: /* @__PURE__ */ d(function(t, r, i) {
    var n, a;
    i.length !== 2 && X(t, "TAG directive accepts exactly two arguments"), n = i[0], a = i[1], Rf.test(n) || X(t, "ill-formed tag handle (first argument) of the TAG directive"), Xe.call(t.tagMap, n) && X(t, 'there is a previously declared suffix for "' + n + '" tag handle'), Df.test(a) || X(t, "ill-formed tag prefix (second argument) of the TAG directive");
    try {
      a = decodeURIComponent(a);
    } catch {
      X(t, "tag prefix is malformed: " + a);
    }
    t.tagMap[n] = a;
  }, "handleTagDirective")
};
function Re(e, t, r, i) {
  var n, a, o, s;
  if (t < r) {
    if (s = e.input.slice(t, r), i)
      for (n = 0, a = s.length; n < a; n += 1)
        o = s.charCodeAt(n), o === 9 || 32 <= o && o <= 1114111 || X(e, "expected valid JSON character");
    else P2.test(s) && X(e, "the stream contains non-printable characters");
    e.result += s;
  }
}
d(Re, "captureSegment");
function Ys(e, t, r, i) {
  var n, a, o, s;
  for (vt.isObject(r) || X(e, "cannot merge mappings; the provided source object is unacceptable"), n = Object.keys(r), o = 0, s = n.length; o < s; o += 1)
    a = n[o], Xe.call(t, a) || (Go(t, a, r[a]), i[a] = !0);
}
d(Ys, "mergeMappings");
function hr(e, t, r, i, n, a, o, s, l) {
  var c, h;
  if (Array.isArray(n))
    for (n = Array.prototype.slice.call(n), c = 0, h = n.length; c < h; c += 1)
      Array.isArray(n[c]) && X(e, "nested arrays are not supported inside keys"), typeof n == "object" && Hs(n[c]) === "[object Object]" && (n[c] = "[object Object]");
  if (typeof n == "object" && Hs(n) === "[object Object]" && (n = "[object Object]"), n = String(n), t === null && (t = {}), i === "tag:yaml.org,2002:merge")
    if (Array.isArray(a))
      for (c = 0, h = a.length; c < h; c += 1)
        Ys(e, t, a[c], r);
    else
      Ys(e, t, a, r);
  else
    !e.json && !Xe.call(r, n) && Xe.call(t, n) && (e.line = o || e.line, e.lineStart = s || e.lineStart, e.position = l || e.position, X(e, "duplicated mapping key")), Go(t, n, a), delete r[n];
  return t;
}
d(hr, "storeMappingPair");
function Ea(e) {
  var t;
  t = e.input.charCodeAt(e.position), t === 10 ? e.position++ : t === 13 ? (e.position++, e.input.charCodeAt(e.position) === 10 && e.position++) : X(e, "a line break is expected"), e.line += 1, e.lineStart = e.position, e.firstTabInLine = -1;
}
d(Ea, "readLineBreak");
function bt(e, t, r) {
  for (var i = 0, n = e.input.charCodeAt(e.position); n !== 0; ) {
    for (; Ue(n); )
      n === 9 && e.firstTabInLine === -1 && (e.firstTabInLine = e.position), n = e.input.charCodeAt(++e.position);
    if (t && n === 35)
      do
        n = e.input.charCodeAt(++e.position);
      while (n !== 10 && n !== 13 && n !== 0);
    if (ue(n))
      for (Ea(e), n = e.input.charCodeAt(e.position), i++, e.lineIndent = 0; n === 32; )
        e.lineIndent++, n = e.input.charCodeAt(++e.position);
    else
      break;
  }
  return r !== -1 && i !== 0 && e.lineIndent < r && Wi(e, "deficient indentation"), i;
}
d(bt, "skipSeparationSpace");
function en(e) {
  var t = e.position, r;
  return r = e.input.charCodeAt(t), !!((r === 45 || r === 46) && r === e.input.charCodeAt(t + 1) && r === e.input.charCodeAt(t + 2) && (t += 3, r = e.input.charCodeAt(t), r === 0 || Wt(r)));
}
d(en, "testDocumentSeparator");
function $a(e, t) {
  t === 1 ? e.result += " " : t > 1 && (e.result += vt.repeat(`
`, t - 1));
}
d($a, "writeFoldedLines");
function jf(e, t, r) {
  var i, n, a, o, s, l, c, h, u = e.kind, p = e.result, f;
  if (f = e.input.charCodeAt(e.position), Wt(f) || cr(f) || f === 35 || f === 38 || f === 42 || f === 33 || f === 124 || f === 62 || f === 39 || f === 34 || f === 37 || f === 64 || f === 96 || (f === 63 || f === 45) && (n = e.input.charCodeAt(e.position + 1), Wt(n) || r && cr(n)))
    return !1;
  for (e.kind = "scalar", e.result = "", a = o = e.position, s = !1; f !== 0; ) {
    if (f === 58) {
      if (n = e.input.charCodeAt(e.position + 1), Wt(n) || r && cr(n))
        break;
    } else if (f === 35) {
      if (i = e.input.charCodeAt(e.position - 1), Wt(i))
        break;
    } else {
      if (e.position === e.lineStart && en(e) || r && cr(f))
        break;
      if (ue(f))
        if (l = e.line, c = e.lineStart, h = e.lineIndent, bt(e, !1, -1), e.lineIndent >= t) {
          s = !0, f = e.input.charCodeAt(e.position);
          continue;
        } else {
          e.position = o, e.line = l, e.lineStart = c, e.lineIndent = h;
          break;
        }
    }
    s && (Re(e, a, o, !1), $a(e, e.line - l), a = o = e.position, s = !1), Ue(f) || (o = e.position + 1), f = e.input.charCodeAt(++e.position);
  }
  return Re(e, a, o, !1), e.result ? !0 : (e.kind = u, e.result = p, !1);
}
d(jf, "readPlainScalar");
function Yf(e, t) {
  var r, i, n;
  if (r = e.input.charCodeAt(e.position), r !== 39)
    return !1;
  for (e.kind = "scalar", e.result = "", e.position++, i = n = e.position; (r = e.input.charCodeAt(e.position)) !== 0; )
    if (r === 39)
      if (Re(e, i, e.position, !0), r = e.input.charCodeAt(++e.position), r === 39)
        i = e.position, e.position++, n = e.position;
      else
        return !0;
    else ue(r) ? (Re(e, i, n, !0), $a(e, bt(e, !1, t)), i = n = e.position) : e.position === e.lineStart && en(e) ? X(e, "unexpected end of the document within a single quoted scalar") : (e.position++, n = e.position);
  X(e, "unexpected end of the stream within a single quoted scalar");
}
d(Yf, "readSingleQuotedScalar");
function Uf(e, t) {
  var r, i, n, a, o, s;
  if (s = e.input.charCodeAt(e.position), s !== 34)
    return !1;
  for (e.kind = "scalar", e.result = "", e.position++, r = i = e.position; (s = e.input.charCodeAt(e.position)) !== 0; ) {
    if (s === 34)
      return Re(e, r, e.position, !0), e.position++, !0;
    if (s === 92) {
      if (Re(e, r, e.position, !0), s = e.input.charCodeAt(++e.position), ue(s))
        bt(e, !1, t);
      else if (s < 256 && Wf[s])
        e.result += qf[s], e.position++;
      else if ((o = Pf(s)) > 0) {
        for (n = o, a = 0; n > 0; n--)
          s = e.input.charCodeAt(++e.position), (o = If(s)) >= 0 ? a = (a << 4) + o : X(e, "expected hexadecimal character");
        e.result += zf(a), e.position++;
      } else
        X(e, "unknown escape sequence");
      r = i = e.position;
    } else ue(s) ? (Re(e, r, i, !0), $a(e, bt(e, !1, t)), r = i = e.position) : e.position === e.lineStart && en(e) ? X(e, "unexpected end of the document within a double quoted scalar") : (e.position++, i = e.position);
  }
  X(e, "unexpected end of the stream within a double quoted scalar");
}
d(Uf, "readDoubleQuotedScalar");
function Gf(e, t) {
  var r = !0, i, n, a, o = e.tag, s, l = e.anchor, c, h, u, p, f, g = /* @__PURE__ */ Object.create(null), m, y, x, b;
  if (b = e.input.charCodeAt(e.position), b === 91)
    h = 93, f = !1, s = [];
  else if (b === 123)
    h = 125, f = !0, s = {};
  else
    return !1;
  for (e.anchor !== null && (e.anchorMap[e.anchor] = s), b = e.input.charCodeAt(++e.position); b !== 0; ) {
    if (bt(e, !0, t), b = e.input.charCodeAt(e.position), b === h)
      return e.position++, e.tag = o, e.anchor = l, e.kind = f ? "mapping" : "sequence", e.result = s, !0;
    r ? b === 44 && X(e, "expected the node content, but found ','") : X(e, "missed comma between flow collection entries"), y = m = x = null, u = p = !1, b === 63 && (c = e.input.charCodeAt(e.position + 1), Wt(c) && (u = p = !0, e.position++, bt(e, !0, t))), i = e.line, n = e.lineStart, a = e.position, mr(e, t, ra, !1, !0), y = e.tag, m = e.result, bt(e, !0, t), b = e.input.charCodeAt(e.position), (p || e.line === i) && b === 58 && (u = !0, b = e.input.charCodeAt(++e.position), bt(e, !0, t), mr(e, t, ra, !1, !0), x = e.result), f ? hr(e, s, g, y, m, x, i, n, a) : u ? s.push(hr(e, null, g, y, m, x, i, n, a)) : s.push(m), bt(e, !0, t), b = e.input.charCodeAt(e.position), b === 44 ? (r = !0, b = e.input.charCodeAt(++e.position)) : r = !1;
  }
  X(e, "unexpected end of the stream within a flow collection");
}
d(Gf, "readFlowCollection");
function Xf(e, t) {
  var r, i, n = ps, a = !1, o = !1, s = t, l = 0, c = !1, h, u;
  if (u = e.input.charCodeAt(e.position), u === 124)
    i = !1;
  else if (u === 62)
    i = !0;
  else
    return !1;
  for (e.kind = "scalar", e.result = ""; u !== 0; )
    if (u = e.input.charCodeAt(++e.position), u === 43 || u === 45)
      ps === n ? n = u === 43 ? Sc : I2 : X(e, "repeat of a chomping mode identifier");
    else if ((h = Nf(u)) >= 0)
      h === 0 ? X(e, "bad explicit indentation width of a block scalar; it cannot be less than one") : o ? X(e, "repeat of an indentation width identifier") : (s = t + h - 1, o = !0);
    else
      break;
  if (Ue(u)) {
    do
      u = e.input.charCodeAt(++e.position);
    while (Ue(u));
    if (u === 35)
      do
        u = e.input.charCodeAt(++e.position);
      while (!ue(u) && u !== 0);
  }
  for (; u !== 0; ) {
    for (Ea(e), e.lineIndent = 0, u = e.input.charCodeAt(e.position); (!o || e.lineIndent < s) && u === 32; )
      e.lineIndent++, u = e.input.charCodeAt(++e.position);
    if (!o && e.lineIndent > s && (s = e.lineIndent), ue(u)) {
      l++;
      continue;
    }
    if (e.lineIndent < s) {
      n === Sc ? e.result += vt.repeat(`
`, a ? 1 + l : l) : n === ps && a && (e.result += `
`);
      break;
    }
    for (i ? Ue(u) ? (c = !0, e.result += vt.repeat(`
`, a ? 1 + l : l)) : c ? (c = !1, e.result += vt.repeat(`
`, l + 1)) : l === 0 ? a && (e.result += " ") : e.result += vt.repeat(`
`, l) : e.result += vt.repeat(`
`, a ? 1 + l : l), a = !0, o = !0, l = 0, r = e.position; !ue(u) && u !== 0; )
      u = e.input.charCodeAt(++e.position);
    Re(e, r, e.position, !1);
  }
  return !0;
}
d(Xf, "readBlockScalar");
function Us(e, t) {
  var r, i = e.tag, n = e.anchor, a = [], o, s = !1, l;
  if (e.firstTabInLine !== -1) return !1;
  for (e.anchor !== null && (e.anchorMap[e.anchor] = a), l = e.input.charCodeAt(e.position); l !== 0 && (e.firstTabInLine !== -1 && (e.position = e.firstTabInLine, X(e, "tab characters must not be used in indentation")), !(l !== 45 || (o = e.input.charCodeAt(e.position + 1), !Wt(o)))); ) {
    if (s = !0, e.position++, bt(e, !0, -1) && e.lineIndent <= t) {
      a.push(null), l = e.input.charCodeAt(e.position);
      continue;
    }
    if (r = e.line, mr(e, t, Of, !1, !0), a.push(e.result), bt(e, !0, -1), l = e.input.charCodeAt(e.position), (e.line === r || e.lineIndent > t) && l !== 0)
      X(e, "bad indentation of a sequence entry");
    else if (e.lineIndent < t)
      break;
  }
  return s ? (e.tag = i, e.anchor = n, e.kind = "sequence", e.result = a, !0) : !1;
}
d(Us, "readBlockSequence");
function Vf(e, t, r) {
  var i, n, a, o, s, l, c = e.tag, h = e.anchor, u = {}, p = /* @__PURE__ */ Object.create(null), f = null, g = null, m = null, y = !1, x = !1, b;
  if (e.firstTabInLine !== -1) return !1;
  for (e.anchor !== null && (e.anchorMap[e.anchor] = u), b = e.input.charCodeAt(e.position); b !== 0; ) {
    if (!y && e.firstTabInLine !== -1 && (e.position = e.firstTabInLine, X(e, "tab characters must not be used in indentation")), i = e.input.charCodeAt(e.position + 1), a = e.line, (b === 63 || b === 58) && Wt(i))
      b === 63 ? (y && (hr(e, u, p, f, g, null, o, s, l), f = g = m = null), x = !0, y = !0, n = !0) : y ? (y = !1, n = !0) : X(e, "incomplete explicit mapping pair; a key node is missed; or followed by a non-tabulated empty line"), e.position += 1, b = i;
    else {
      if (o = e.line, s = e.lineStart, l = e.position, !mr(e, r, Ff, !1, !0))
        break;
      if (e.line === a) {
        for (b = e.input.charCodeAt(e.position); Ue(b); )
          b = e.input.charCodeAt(++e.position);
        if (b === 58)
          b = e.input.charCodeAt(++e.position), Wt(b) || X(e, "a whitespace character is expected after the key-value separator within a block mapping"), y && (hr(e, u, p, f, g, null, o, s, l), f = g = m = null), x = !0, y = !1, n = !1, f = e.tag, g = e.result;
        else if (x)
          X(e, "can not read an implicit mapping pair; a colon is missed");
        else
          return e.tag = c, e.anchor = h, !0;
      } else if (x)
        X(e, "can not read a block mapping entry; a multiline key may not be an implicit key");
      else
        return e.tag = c, e.anchor = h, !0;
    }
    if ((e.line === a || e.lineIndent > t) && (y && (o = e.line, s = e.lineStart, l = e.position), mr(e, t, ia, !0, n) && (y ? g = e.result : m = e.result), y || (hr(e, u, p, f, g, m, o, s, l), f = g = m = null), bt(e, !0, -1), b = e.input.charCodeAt(e.position)), (e.line === a || e.lineIndent > t) && b !== 0)
      X(e, "bad indentation of a mapping entry");
    else if (e.lineIndent < t)
      break;
  }
  return y && hr(e, u, p, f, g, null, o, s, l), x && (e.tag = c, e.anchor = h, e.kind = "mapping", e.result = u), x;
}
d(Vf, "readBlockMapping");
function Zf(e) {
  var t, r = !1, i = !1, n, a, o;
  if (o = e.input.charCodeAt(e.position), o !== 33) return !1;
  if (e.tag !== null && X(e, "duplication of a tag property"), o = e.input.charCodeAt(++e.position), o === 60 ? (r = !0, o = e.input.charCodeAt(++e.position)) : o === 33 ? (i = !0, n = "!!", o = e.input.charCodeAt(++e.position)) : n = "!", t = e.position, r) {
    do
      o = e.input.charCodeAt(++e.position);
    while (o !== 0 && o !== 62);
    e.position < e.length ? (a = e.input.slice(t, e.position), o = e.input.charCodeAt(++e.position)) : X(e, "unexpected end of the stream within a verbatim tag");
  } else {
    for (; o !== 0 && !Wt(o); )
      o === 33 && (i ? X(e, "tag suffix cannot contain exclamation marks") : (n = e.input.slice(t - 1, e.position + 1), Rf.test(n) || X(e, "named tag handle cannot contain such characters"), i = !0, t = e.position + 1)), o = e.input.charCodeAt(++e.position);
    a = e.input.slice(t, e.position), z2.test(a) && X(e, "tag suffix cannot contain flow indicator characters");
  }
  a && !Df.test(a) && X(e, "tag name cannot contain such characters: " + a);
  try {
    a = decodeURIComponent(a);
  } catch {
    X(e, "tag name is malformed: " + a);
  }
  return r ? e.tag = a : Xe.call(e.tagMap, n) ? e.tag = e.tagMap[n] + a : n === "!" ? e.tag = "!" + a : n === "!!" ? e.tag = "tag:yaml.org,2002:" + a : X(e, 'undeclared tag handle "' + n + '"'), !0;
}
d(Zf, "readTagProperty");
function Kf(e) {
  var t, r;
  if (r = e.input.charCodeAt(e.position), r !== 38) return !1;
  for (e.anchor !== null && X(e, "duplication of an anchor property"), r = e.input.charCodeAt(++e.position), t = e.position; r !== 0 && !Wt(r) && !cr(r); )
    r = e.input.charCodeAt(++e.position);
  return e.position === t && X(e, "name of an anchor node must contain at least one character"), e.anchor = e.input.slice(t, e.position), !0;
}
d(Kf, "readAnchorProperty");
function Qf(e) {
  var t, r, i;
  if (i = e.input.charCodeAt(e.position), i !== 42) return !1;
  for (i = e.input.charCodeAt(++e.position), t = e.position; i !== 0 && !Wt(i) && !cr(i); )
    i = e.input.charCodeAt(++e.position);
  return e.position === t && X(e, "name of an alias node must contain at least one character"), r = e.input.slice(t, e.position), Xe.call(e.anchorMap, r) || X(e, 'unidentified alias "' + r + '"'), e.result = e.anchorMap[r], bt(e, !0, -1), !0;
}
d(Qf, "readAlias");
function mr(e, t, r, i, n) {
  var a, o, s, l = 1, c = !1, h = !1, u, p, f, g, m, y;
  if (e.listener !== null && e.listener("open", e), e.tag = null, e.anchor = null, e.kind = null, e.result = null, a = o = s = ia === r || Of === r, i && bt(e, !0, -1) && (c = !0, e.lineIndent > t ? l = 1 : e.lineIndent === t ? l = 0 : e.lineIndent < t && (l = -1)), l === 1)
    for (; Zf(e) || Kf(e); )
      bt(e, !0, -1) ? (c = !0, s = a, e.lineIndent > t ? l = 1 : e.lineIndent === t ? l = 0 : e.lineIndent < t && (l = -1)) : s = !1;
  if (s && (s = c || n), (l === 1 || ia === r) && (ra === r || Ff === r ? m = t : m = t + 1, y = e.position - e.lineStart, l === 1 ? s && (Us(e, y) || Vf(e, y, m)) || Gf(e, m) ? h = !0 : (o && Xf(e, m) || Yf(e, m) || Uf(e, m) ? h = !0 : Qf(e) ? (h = !0, (e.tag !== null || e.anchor !== null) && X(e, "alias node should not have any properties")) : jf(e, m, ra === r) && (h = !0, e.tag === null && (e.tag = "?")), e.anchor !== null && (e.anchorMap[e.anchor] = e.result)) : l === 0 && (h = s && Us(e, y))), e.tag === null)
    e.anchor !== null && (e.anchorMap[e.anchor] = e.result);
  else if (e.tag === "?") {
    for (e.result !== null && e.kind !== "scalar" && X(e, 'unacceptable node kind for !<?> tag; it should be "scalar", not "' + e.kind + '"'), u = 0, p = e.implicitTypes.length; u < p; u += 1)
      if (g = e.implicitTypes[u], g.resolve(e.result)) {
        e.result = g.construct(e.result), e.tag = g.tag, e.anchor !== null && (e.anchorMap[e.anchor] = e.result);
        break;
      }
  } else if (e.tag !== "!") {
    if (Xe.call(e.typeMap[e.kind || "fallback"], e.tag))
      g = e.typeMap[e.kind || "fallback"][e.tag];
    else
      for (g = null, f = e.typeMap.multi[e.kind || "fallback"], u = 0, p = f.length; u < p; u += 1)
        if (e.tag.slice(0, f[u].tag.length) === f[u].tag) {
          g = f[u];
          break;
        }
    g || X(e, "unknown tag !<" + e.tag + ">"), e.result !== null && g.kind !== e.kind && X(e, "unacceptable node kind for !<" + e.tag + '> tag; it should be "' + g.kind + '", not "' + e.kind + '"'), g.resolve(e.result, e.tag) ? (e.result = g.construct(e.result, e.tag), e.anchor !== null && (e.anchorMap[e.anchor] = e.result)) : X(e, "cannot resolve a node with !<" + e.tag + "> explicit tag");
  }
  return e.listener !== null && e.listener("close", e), e.tag !== null || e.anchor !== null || h;
}
d(mr, "composeNode");
function Jf(e) {
  var t = e.position, r, i, n, a = !1, o;
  for (e.version = null, e.checkLineBreaks = e.legacy, e.tagMap = /* @__PURE__ */ Object.create(null), e.anchorMap = /* @__PURE__ */ Object.create(null); (o = e.input.charCodeAt(e.position)) !== 0 && (bt(e, !0, -1), o = e.input.charCodeAt(e.position), !(e.lineIndent > 0 || o !== 37)); ) {
    for (a = !0, o = e.input.charCodeAt(++e.position), r = e.position; o !== 0 && !Wt(o); )
      o = e.input.charCodeAt(++e.position);
    for (i = e.input.slice(r, e.position), n = [], i.length < 1 && X(e, "directive name must not be less than one character in length"); o !== 0; ) {
      for (; Ue(o); )
        o = e.input.charCodeAt(++e.position);
      if (o === 35) {
        do
          o = e.input.charCodeAt(++e.position);
        while (o !== 0 && !ue(o));
        break;
      }
      if (ue(o)) break;
      for (r = e.position; o !== 0 && !Wt(o); )
        o = e.input.charCodeAt(++e.position);
      n.push(e.input.slice(r, e.position));
    }
    o !== 0 && Ea(e), Xe.call(Tc, i) ? Tc[i](e, i, n) : Wi(e, 'unknown document directive "' + i + '"');
  }
  if (bt(e, !0, -1), e.lineIndent === 0 && e.input.charCodeAt(e.position) === 45 && e.input.charCodeAt(e.position + 1) === 45 && e.input.charCodeAt(e.position + 2) === 45 ? (e.position += 3, bt(e, !0, -1)) : a && X(e, "directives end mark is expected"), mr(e, e.lineIndent - 1, ia, !1, !0), bt(e, !0, -1), e.checkLineBreaks && N2.test(e.input.slice(t, e.position)) && Wi(e, "non-ASCII line breaks are interpreted as content"), e.documents.push(e.result), e.position === e.lineStart && en(e)) {
    e.input.charCodeAt(e.position) === 46 && (e.position += 3, bt(e, !0, -1));
    return;
  }
  if (e.position < e.length - 1)
    X(e, "end of the stream or a document separator is expected");
  else
    return;
}
d(Jf, "readDocument");
function Vo(e, t) {
  e = String(e), t = t || {}, e.length !== 0 && (e.charCodeAt(e.length - 1) !== 10 && e.charCodeAt(e.length - 1) !== 13 && (e += `
`), e.charCodeAt(0) === 65279 && (e = e.slice(1)));
  var r = new Hf(e, t), i = e.indexOf("\0");
  for (i !== -1 && (r.position = i, X(r, "null byte is not allowed in input")), r.input += "\0"; r.input.charCodeAt(r.position) === 32; )
    r.lineIndent += 1, r.position += 1;
  for (; r.position < r.length - 1; )
    Jf(r);
  return r.documents;
}
d(Vo, "loadDocuments");
function W2(e, t, r) {
  t !== null && typeof t == "object" && typeof r > "u" && (r = t, t = null);
  var i = Vo(e, r);
  if (typeof t != "function")
    return i;
  for (var n = 0, a = i.length; n < a; n += 1)
    t(i[n]);
}
d(W2, "loadAll$1");
function tp(e, t) {
  var r = Vo(e, t);
  if (r.length !== 0) {
    if (r.length === 1)
      return r[0];
    throw new Xt("expected a single document in the stream, but found more");
  }
}
d(tp, "load$1");
var q2 = tp, H2 = {
  load: q2
}, ep = Object.prototype.toString, rp = Object.prototype.hasOwnProperty, Zo = 65279, j2 = 9, qi = 10, Y2 = 13, U2 = 32, G2 = 33, X2 = 34, Gs = 35, V2 = 37, Z2 = 38, K2 = 39, Q2 = 42, ip = 44, J2 = 45, na = 58, tC = 61, eC = 62, rC = 63, iC = 64, np = 91, ap = 93, nC = 96, sp = 123, aC = 124, op = 125, Pt = {};
Pt[0] = "\\0";
Pt[7] = "\\a";
Pt[8] = "\\b";
Pt[9] = "\\t";
Pt[10] = "\\n";
Pt[11] = "\\v";
Pt[12] = "\\f";
Pt[13] = "\\r";
Pt[27] = "\\e";
Pt[34] = '\\"';
Pt[92] = "\\\\";
Pt[133] = "\\N";
Pt[160] = "\\_";
Pt[8232] = "\\L";
Pt[8233] = "\\P";
var sC = [
  "y",
  "Y",
  "yes",
  "Yes",
  "YES",
  "on",
  "On",
  "ON",
  "n",
  "N",
  "no",
  "No",
  "NO",
  "off",
  "Off",
  "OFF"
], oC = /^[-+]?[0-9_]+(?::[0-9_]+)+(?:\.[0-9_]*)?$/;
function lp(e, t) {
  var r, i, n, a, o, s, l;
  if (t === null) return {};
  for (r = {}, i = Object.keys(t), n = 0, a = i.length; n < a; n += 1)
    o = i[n], s = String(t[o]), o.slice(0, 2) === "!!" && (o = "tag:yaml.org,2002:" + o.slice(2)), l = e.compiledTypeMap.fallback[o], l && rp.call(l.styleAliases, s) && (s = l.styleAliases[s]), r[o] = s;
  return r;
}
d(lp, "compileStyleMap");
function cp(e) {
  var t, r, i;
  if (t = e.toString(16).toUpperCase(), e <= 255)
    r = "x", i = 2;
  else if (e <= 65535)
    r = "u", i = 4;
  else if (e <= 4294967295)
    r = "U", i = 8;
  else
    throw new Xt("code point within a string may not be greater than 0xFFFFFFFF");
  return "\\" + r + vt.repeat("0", i - t.length) + t;
}
d(cp, "encodeHex");
var lC = 1, Hi = 2;
function hp(e) {
  this.schema = e.schema || $f, this.indent = Math.max(1, e.indent || 2), this.noArrayIndent = e.noArrayIndent || !1, this.skipInvalid = e.skipInvalid || !1, this.flowLevel = vt.isNothing(e.flowLevel) ? -1 : e.flowLevel, this.styleMap = lp(this.schema, e.styles || null), this.sortKeys = e.sortKeys || !1, this.lineWidth = e.lineWidth || 80, this.noRefs = e.noRefs || !1, this.noCompatMode = e.noCompatMode || !1, this.condenseFlow = e.condenseFlow || !1, this.quotingType = e.quotingType === '"' ? Hi : lC, this.forceQuotes = e.forceQuotes || !1, this.replacer = typeof e.replacer == "function" ? e.replacer : null, this.implicitTypes = this.schema.compiledImplicit, this.explicitTypes = this.schema.compiledExplicit, this.tag = null, this.result = "", this.duplicates = [], this.usedDuplicates = null;
}
d(hp, "State");
function Xs(e, t) {
  for (var r = vt.repeat(" ", t), i = 0, n = -1, a = "", o, s = e.length; i < s; )
    n = e.indexOf(`
`, i), n === -1 ? (o = e.slice(i), i = s) : (o = e.slice(i, n + 1), i = n + 1), o.length && o !== `
` && (a += r), a += o;
  return a;
}
d(Xs, "indentString");
function aa(e, t) {
  return `
` + vt.repeat(" ", e.indent * t);
}
d(aa, "generateNextLine");
function up(e, t) {
  var r, i, n;
  for (r = 0, i = e.implicitTypes.length; r < i; r += 1)
    if (n = e.implicitTypes[r], n.resolve(t))
      return !0;
  return !1;
}
d(up, "testImplicitResolving");
function ji(e) {
  return e === U2 || e === j2;
}
d(ji, "isWhitespace");
function Zr(e) {
  return 32 <= e && e <= 126 || 161 <= e && e <= 55295 && e !== 8232 && e !== 8233 || 57344 <= e && e <= 65533 && e !== Zo || 65536 <= e && e <= 1114111;
}
d(Zr, "isPrintable");
function Vs(e) {
  return Zr(e) && e !== Zo && e !== Y2 && e !== qi;
}
d(Vs, "isNsCharOrWhitespace");
function Zs(e, t, r) {
  var i = Vs(e), n = i && !ji(e);
  return (
    // ns-plain-safe
    (r ? (
      // c = flow-in
      i
    ) : i && e !== ip && e !== np && e !== ap && e !== sp && e !== op) && e !== Gs && !(t === na && !n) || Vs(t) && !ji(t) && e === Gs || t === na && n
  );
}
d(Zs, "isPlainSafe");
function fp(e) {
  return Zr(e) && e !== Zo && !ji(e) && e !== J2 && e !== rC && e !== na && e !== ip && e !== np && e !== ap && e !== sp && e !== op && e !== Gs && e !== Z2 && e !== Q2 && e !== G2 && e !== aC && e !== tC && e !== eC && e !== K2 && e !== X2 && e !== V2 && e !== iC && e !== nC;
}
d(fp, "isPlainSafeFirst");
function pp(e) {
  return !ji(e) && e !== na;
}
d(pp, "isPlainSafeLast");
function Fr(e, t) {
  var r = e.charCodeAt(t), i;
  return r >= 55296 && r <= 56319 && t + 1 < e.length && (i = e.charCodeAt(t + 1), i >= 56320 && i <= 57343) ? (r - 55296) * 1024 + i - 56320 + 65536 : r;
}
d(Fr, "codePointAt");
function Ko(e) {
  var t = /^\n* /;
  return t.test(e);
}
d(Ko, "needIndentIndicator");
var dp = 1, Ks = 2, gp = 3, mp = 4, Er = 5;
function yp(e, t, r, i, n, a, o, s) {
  var l, c = 0, h = null, u = !1, p = !1, f = i !== -1, g = -1, m = fp(Fr(e, 0)) && pp(Fr(e, e.length - 1));
  if (t || o)
    for (l = 0; l < e.length; c >= 65536 ? l += 2 : l++) {
      if (c = Fr(e, l), !Zr(c))
        return Er;
      m = m && Zs(c, h, s), h = c;
    }
  else {
    for (l = 0; l < e.length; c >= 65536 ? l += 2 : l++) {
      if (c = Fr(e, l), c === qi)
        u = !0, f && (p = p || // Foldable line = too long, and not more-indented.
        l - g - 1 > i && e[g + 1] !== " ", g = l);
      else if (!Zr(c))
        return Er;
      m = m && Zs(c, h, s), h = c;
    }
    p = p || f && l - g - 1 > i && e[g + 1] !== " ";
  }
  return !u && !p ? m && !o && !n(e) ? dp : a === Hi ? Er : Ks : r > 9 && Ko(e) ? Er : o ? a === Hi ? Er : Ks : p ? mp : gp;
}
d(yp, "chooseScalarStyle");
function xp(e, t, r, i, n) {
  e.dump = function() {
    if (t.length === 0)
      return e.quotingType === Hi ? '""' : "''";
    if (!e.noCompatMode && (sC.indexOf(t) !== -1 || oC.test(t)))
      return e.quotingType === Hi ? '"' + t + '"' : "'" + t + "'";
    var a = e.indent * Math.max(1, r), o = e.lineWidth === -1 ? -1 : Math.max(Math.min(e.lineWidth, 40), e.lineWidth - a), s = i || e.flowLevel > -1 && r >= e.flowLevel;
    function l(c) {
      return up(e, c);
    }
    switch (d(l, "testAmbiguity"), yp(
      t,
      s,
      e.indent,
      o,
      l,
      e.quotingType,
      e.forceQuotes && !i,
      n
    )) {
      case dp:
        return t;
      case Ks:
        return "'" + t.replace(/'/g, "''") + "'";
      case gp:
        return "|" + Qs(t, e.indent) + Js(Xs(t, a));
      case mp:
        return ">" + Qs(t, e.indent) + Js(Xs(bp(t, o), a));
      case Er:
        return '"' + Cp(t) + '"';
      default:
        throw new Xt("impossible error: invalid scalar style");
    }
  }();
}
d(xp, "writeScalar");
function Qs(e, t) {
  var r = Ko(e) ? String(t) : "", i = e[e.length - 1] === `
`, n = i && (e[e.length - 2] === `
` || e === `
`), a = n ? "+" : i ? "" : "-";
  return r + a + `
`;
}
d(Qs, "blockHeader");
function Js(e) {
  return e[e.length - 1] === `
` ? e.slice(0, -1) : e;
}
d(Js, "dropEndingNewline");
function bp(e, t) {
  for (var r = /(\n+)([^\n]*)/g, i = function() {
    var c = e.indexOf(`
`);
    return c = c !== -1 ? c : e.length, r.lastIndex = c, to(e.slice(0, c), t);
  }(), n = e[0] === `
` || e[0] === " ", a, o; o = r.exec(e); ) {
    var s = o[1], l = o[2];
    a = l[0] === " ", i += s + (!n && !a && l !== "" ? `
` : "") + to(l, t), n = a;
  }
  return i;
}
d(bp, "foldString");
function to(e, t) {
  if (e === "" || e[0] === " ") return e;
  for (var r = / [^ ]/g, i, n = 0, a, o = 0, s = 0, l = ""; i = r.exec(e); )
    s = i.index, s - n > t && (a = o > n ? o : s, l += `
` + e.slice(n, a), n = a + 1), o = s;
  return l += `
`, e.length - n > t && o > n ? l += e.slice(n, o) + `
` + e.slice(o + 1) : l += e.slice(n), l.slice(1);
}
d(to, "foldLine");
function Cp(e) {
  for (var t = "", r = 0, i, n = 0; n < e.length; r >= 65536 ? n += 2 : n++)
    r = Fr(e, n), i = Pt[r], !i && Zr(r) ? (t += e[n], r >= 65536 && (t += e[n + 1])) : t += i || cp(r);
  return t;
}
d(Cp, "escapeString");
function _p(e, t, r) {
  var i = "", n = e.tag, a, o, s;
  for (a = 0, o = r.length; a < o; a += 1)
    s = r[a], e.replacer && (s = e.replacer.call(r, String(a), s)), (ve(e, t, s, !1, !1) || typeof s > "u" && ve(e, t, null, !1, !1)) && (i !== "" && (i += "," + (e.condenseFlow ? "" : " ")), i += e.dump);
  e.tag = n, e.dump = "[" + i + "]";
}
d(_p, "writeFlowSequence");
function eo(e, t, r, i) {
  var n = "", a = e.tag, o, s, l;
  for (o = 0, s = r.length; o < s; o += 1)
    l = r[o], e.replacer && (l = e.replacer.call(r, String(o), l)), (ve(e, t + 1, l, !0, !0, !1, !0) || typeof l > "u" && ve(e, t + 1, null, !0, !0, !1, !0)) && ((!i || n !== "") && (n += aa(e, t)), e.dump && qi === e.dump.charCodeAt(0) ? n += "-" : n += "- ", n += e.dump);
  e.tag = a, e.dump = n || "[]";
}
d(eo, "writeBlockSequence");
function wp(e, t, r) {
  var i = "", n = e.tag, a = Object.keys(r), o, s, l, c, h;
  for (o = 0, s = a.length; o < s; o += 1)
    h = "", i !== "" && (h += ", "), e.condenseFlow && (h += '"'), l = a[o], c = r[l], e.replacer && (c = e.replacer.call(r, l, c)), ve(e, t, l, !1, !1) && (e.dump.length > 1024 && (h += "? "), h += e.dump + (e.condenseFlow ? '"' : "") + ":" + (e.condenseFlow ? "" : " "), ve(e, t, c, !1, !1) && (h += e.dump, i += h));
  e.tag = n, e.dump = "{" + i + "}";
}
d(wp, "writeFlowMapping");
function kp(e, t, r, i) {
  var n = "", a = e.tag, o = Object.keys(r), s, l, c, h, u, p;
  if (e.sortKeys === !0)
    o.sort();
  else if (typeof e.sortKeys == "function")
    o.sort(e.sortKeys);
  else if (e.sortKeys)
    throw new Xt("sortKeys must be a boolean or a function");
  for (s = 0, l = o.length; s < l; s += 1)
    p = "", (!i || n !== "") && (p += aa(e, t)), c = o[s], h = r[c], e.replacer && (h = e.replacer.call(r, c, h)), ve(e, t + 1, c, !0, !0, !0) && (u = e.tag !== null && e.tag !== "?" || e.dump && e.dump.length > 1024, u && (e.dump && qi === e.dump.charCodeAt(0) ? p += "?" : p += "? "), p += e.dump, u && (p += aa(e, t)), ve(e, t + 1, h, !0, u) && (e.dump && qi === e.dump.charCodeAt(0) ? p += ":" : p += ": ", p += e.dump, n += p));
  e.tag = a, e.dump = n || "{}";
}
d(kp, "writeBlockMapping");
function ro(e, t, r) {
  var i, n, a, o, s, l;
  for (n = r ? e.explicitTypes : e.implicitTypes, a = 0, o = n.length; a < o; a += 1)
    if (s = n[a], (s.instanceOf || s.predicate) && (!s.instanceOf || typeof t == "object" && t instanceof s.instanceOf) && (!s.predicate || s.predicate(t))) {
      if (r ? s.multi && s.representName ? e.tag = s.representName(t) : e.tag = s.tag : e.tag = "?", s.represent) {
        if (l = e.styleMap[s.tag] || s.defaultStyle, ep.call(s.represent) === "[object Function]")
          i = s.represent(t, l);
        else if (rp.call(s.represent, l))
          i = s.represent[l](t, l);
        else
          throw new Xt("!<" + s.tag + '> tag resolver accepts not "' + l + '" style');
        e.dump = i;
      }
      return !0;
    }
  return !1;
}
d(ro, "detectType");
function ve(e, t, r, i, n, a, o) {
  e.tag = null, e.dump = r, ro(e, r, !1) || ro(e, r, !0);
  var s = ep.call(e.dump), l = i, c;
  i && (i = e.flowLevel < 0 || e.flowLevel > t);
  var h = s === "[object Object]" || s === "[object Array]", u, p;
  if (h && (u = e.duplicates.indexOf(r), p = u !== -1), (e.tag !== null && e.tag !== "?" || p || e.indent !== 2 && t > 0) && (n = !1), p && e.usedDuplicates[u])
    e.dump = "*ref_" + u;
  else {
    if (h && p && !e.usedDuplicates[u] && (e.usedDuplicates[u] = !0), s === "[object Object]")
      i && Object.keys(e.dump).length !== 0 ? (kp(e, t, e.dump, n), p && (e.dump = "&ref_" + u + e.dump)) : (wp(e, t, e.dump), p && (e.dump = "&ref_" + u + " " + e.dump));
    else if (s === "[object Array]")
      i && e.dump.length !== 0 ? (e.noArrayIndent && !o && t > 0 ? eo(e, t - 1, e.dump, n) : eo(e, t, e.dump, n), p && (e.dump = "&ref_" + u + e.dump)) : (_p(e, t, e.dump), p && (e.dump = "&ref_" + u + " " + e.dump));
    else if (s === "[object String]")
      e.tag !== "?" && xp(e, e.dump, t, a, l);
    else {
      if (s === "[object Undefined]")
        return !1;
      if (e.skipInvalid) return !1;
      throw new Xt("unacceptable kind of an object to dump " + s);
    }
    e.tag !== null && e.tag !== "?" && (c = encodeURI(
      e.tag[0] === "!" ? e.tag.slice(1) : e.tag
    ).replace(/!/g, "%21"), e.tag[0] === "!" ? c = "!" + c : c.slice(0, 18) === "tag:yaml.org,2002:" ? c = "!!" + c.slice(18) : c = "!<" + c + ">", e.dump = c + " " + e.dump);
  }
  return !0;
}
d(ve, "writeNode");
function vp(e, t) {
  var r = [], i = [], n, a;
  for (sa(e, r, i), n = 0, a = i.length; n < a; n += 1)
    t.duplicates.push(r[i[n]]);
  t.usedDuplicates = new Array(a);
}
d(vp, "getDuplicateReferences");
function sa(e, t, r) {
  var i, n, a;
  if (e !== null && typeof e == "object")
    if (n = t.indexOf(e), n !== -1)
      r.indexOf(n) === -1 && r.push(n);
    else if (t.push(e), Array.isArray(e))
      for (n = 0, a = e.length; n < a; n += 1)
        sa(e[n], t, r);
    else
      for (i = Object.keys(e), n = 0, a = i.length; n < a; n += 1)
        sa(e[i[n]], t, r);
}
d(sa, "inspectNode");
function cC(e, t) {
  t = t || {};
  var r = new hp(t);
  r.noRefs || vp(e, r);
  var i = e;
  return r.replacer && (i = r.replacer.call({ "": i }, "", i)), ve(r, 0, i, !0, !0) ? r.dump + `
` : "";
}
d(cC, "dump$1");
function hC(e, t) {
  return function() {
    throw new Error("Function yaml." + e + " is removed in js-yaml 4. Use yaml." + t + " instead, which is now safe by default.");
  };
}
d(hC, "renamed");
var uC = gf, fC = H2.load;
/*! Bundled license information:

js-yaml/dist/js-yaml.mjs:
  (*! js-yaml 4.1.1 https://github.com/nodeca/js-yaml @license MIT *)
*/
var di = /* @__PURE__ */ d((e, t) => {
  if (t)
    return "translate(" + -e.width / 2 + ", " + -e.height / 2 + ")";
  const r = e.x ?? 0, i = e.y ?? 0;
  return "translate(" + -(r + e.width / 2) + ", " + -(i + e.height / 2) + ")";
}, "computeLabelTransform"), Ft = {
  aggregation: 17.25,
  extension: 17.25,
  composition: 17.25,
  dependency: 6,
  lollipop: 13.5,
  arrow_point: 4
  //arrow_cross: 24,
}, Bc = {
  arrow_point: 9,
  arrow_cross: 12.5,
  arrow_circle: 12.5
};
function Si(e, t) {
  if (e === void 0 || t === void 0)
    return { angle: 0, deltaX: 0, deltaY: 0 };
  e = mt(e), t = mt(t);
  const [r, i] = [e.x, e.y], [n, a] = [t.x, t.y], o = n - r, s = a - i;
  return { angle: Math.atan(s / o), deltaX: o, deltaY: s };
}
d(Si, "calculateDeltaAndAngle");
var mt = /* @__PURE__ */ d((e) => Array.isArray(e) ? { x: e[0], y: e[1] } : e, "pointTransformer"), pC = /* @__PURE__ */ d((e) => ({
  x: /* @__PURE__ */ d(function(t, r, i) {
    let n = 0;
    const a = mt(i[0]).x < mt(i[i.length - 1]).x ? "left" : "right";
    if (r === 0 && Object.hasOwn(Ft, e.arrowTypeStart)) {
      const { angle: f, deltaX: g } = Si(i[0], i[1]);
      n = Ft[e.arrowTypeStart] * Math.cos(f) * (g >= 0 ? 1 : -1);
    } else if (r === i.length - 1 && Object.hasOwn(Ft, e.arrowTypeEnd)) {
      const { angle: f, deltaX: g } = Si(
        i[i.length - 1],
        i[i.length - 2]
      );
      n = Ft[e.arrowTypeEnd] * Math.cos(f) * (g >= 0 ? 1 : -1);
    }
    const o = Math.abs(
      mt(t).x - mt(i[i.length - 1]).x
    ), s = Math.abs(
      mt(t).y - mt(i[i.length - 1]).y
    ), l = Math.abs(mt(t).x - mt(i[0]).x), c = Math.abs(mt(t).y - mt(i[0]).y), h = Ft[e.arrowTypeStart], u = Ft[e.arrowTypeEnd], p = 1;
    if (o < u && o > 0 && s < u) {
      let f = u + p - o;
      f *= a === "right" ? -1 : 1, n -= f;
    }
    if (l < h && l > 0 && c < h) {
      let f = h + p - l;
      f *= a === "right" ? -1 : 1, n += f;
    }
    return mt(t).x + n;
  }, "x"),
  y: /* @__PURE__ */ d(function(t, r, i) {
    let n = 0;
    const a = mt(i[0]).y < mt(i[i.length - 1]).y ? "down" : "up";
    if (r === 0 && Object.hasOwn(Ft, e.arrowTypeStart)) {
      const { angle: f, deltaY: g } = Si(i[0], i[1]);
      n = Ft[e.arrowTypeStart] * Math.abs(Math.sin(f)) * (g >= 0 ? 1 : -1);
    } else if (r === i.length - 1 && Object.hasOwn(Ft, e.arrowTypeEnd)) {
      const { angle: f, deltaY: g } = Si(
        i[i.length - 1],
        i[i.length - 2]
      );
      n = Ft[e.arrowTypeEnd] * Math.abs(Math.sin(f)) * (g >= 0 ? 1 : -1);
    }
    const o = Math.abs(
      mt(t).y - mt(i[i.length - 1]).y
    ), s = Math.abs(
      mt(t).x - mt(i[i.length - 1]).x
    ), l = Math.abs(mt(t).y - mt(i[0]).y), c = Math.abs(mt(t).x - mt(i[0]).x), h = Ft[e.arrowTypeStart], u = Ft[e.arrowTypeEnd], p = 1;
    if (o < u && o > 0 && s < u) {
      let f = u + p - o;
      f *= a === "up" ? -1 : 1, n -= f;
    }
    if (l < h && l > 0 && c < h) {
      let f = h + p - l;
      f *= a === "up" ? -1 : 1, n += f;
    }
    return mt(t).y + n;
  }, "y")
}), "getLineFunctionsWithOffset"), Sp = {}, St = {};
Object.defineProperty(St, "__esModule", { value: !0 });
St.BLANK_URL = St.relativeFirstCharacters = St.whitespaceEscapeCharsRegex = St.urlSchemeRegex = St.ctrlCharactersRegex = St.htmlCtrlEntityRegex = St.htmlEntitiesRegex = St.invalidProtocolRegex = void 0;
St.invalidProtocolRegex = /^([^\w]*)(javascript|data|vbscript)/im;
St.htmlEntitiesRegex = /&#(\w+)(^\w|;)?/g;
St.htmlCtrlEntityRegex = /&(newline|tab);/gi;
St.ctrlCharactersRegex = /[\u0000-\u001F\u007F-\u009F\u2000-\u200D\uFEFF]/gim;
St.urlSchemeRegex = /^.+(:|&colon;)/gim;
St.whitespaceEscapeCharsRegex = /(\\|%5[cC])((%(6[eE]|72|74))|[nrt])/g;
St.relativeFirstCharacters = [".", "/"];
St.BLANK_URL = "about:blank";
Object.defineProperty(Sp, "__esModule", { value: !0 });
var dC = Sp.sanitizeUrl = xC, $t = St;
function gC(e) {
  return $t.relativeFirstCharacters.indexOf(e[0]) > -1;
}
function mC(e) {
  var t = e.replace($t.ctrlCharactersRegex, "");
  return t.replace($t.htmlEntitiesRegex, function(r, i) {
    return String.fromCharCode(i);
  });
}
function yC(e) {
  return URL.canParse(e);
}
function Ac(e) {
  try {
    return decodeURIComponent(e);
  } catch {
    return e;
  }
}
function xC(e) {
  if (!e)
    return $t.BLANK_URL;
  var t, r = Ac(e.trim());
  do
    r = mC(r).replace($t.htmlCtrlEntityRegex, "").replace($t.ctrlCharactersRegex, "").replace($t.whitespaceEscapeCharsRegex, "").trim(), r = Ac(r), t = r.match($t.ctrlCharactersRegex) || r.match($t.htmlEntitiesRegex) || r.match($t.htmlCtrlEntityRegex) || r.match($t.whitespaceEscapeCharsRegex);
  while (t && t.length > 0);
  var i = r;
  if (!i)
    return $t.BLANK_URL;
  if (gC(i))
    return i;
  var n = i.trimStart(), a = n.match($t.urlSchemeRegex);
  if (!a)
    return i;
  var o = a[0].toLowerCase().trim();
  if ($t.invalidProtocolRegex.test(o))
    return $t.BLANK_URL;
  var s = n.replace(/\\/g, "/");
  if (o === "mailto:" || o.includes("://"))
    return s;
  if (o === "http:" || o === "https:") {
    if (!yC(s))
      return $t.BLANK_URL;
    var l = new URL(s);
    return l.protocol = l.protocol.toLowerCase(), l.hostname = l.hostname.toLowerCase(), l.toString();
  }
  return s;
}
var Tp = typeof global == "object" && global && global.Object === Object && global, bC = typeof self == "object" && self && self.Object === Object && self, Te = Tp || bC || Function("return this")(), oa = Te.Symbol, Bp = Object.prototype, CC = Bp.hasOwnProperty, _C = Bp.toString, gi = oa ? oa.toStringTag : void 0;
function wC(e) {
  var t = CC.call(e, gi), r = e[gi];
  try {
    e[gi] = void 0;
    var i = !0;
  } catch {
  }
  var n = _C.call(e);
  return i && (t ? e[gi] = r : delete e[gi]), n;
}
var kC = Object.prototype, vC = kC.toString;
function SC(e) {
  return vC.call(e);
}
var TC = "[object Null]", BC = "[object Undefined]", Lc = oa ? oa.toStringTag : void 0;
function Jr(e) {
  return e == null ? e === void 0 ? BC : TC : Lc && Lc in Object(e) ? wC(e) : SC(e);
}
function Cr(e) {
  var t = typeof e;
  return e != null && (t == "object" || t == "function");
}
var AC = "[object AsyncFunction]", LC = "[object Function]", MC = "[object GeneratorFunction]", EC = "[object Proxy]";
function Qo(e) {
  if (!Cr(e))
    return !1;
  var t = Jr(e);
  return t == LC || t == MC || t == AC || t == EC;
}
var ds = Te["__core-js_shared__"], Mc = function() {
  var e = /[^.]+$/.exec(ds && ds.keys && ds.keys.IE_PROTO || "");
  return e ? "Symbol(src)_1." + e : "";
}();
function $C(e) {
  return !!Mc && Mc in e;
}
var FC = Function.prototype, OC = FC.toString;
function _r(e) {
  if (e != null) {
    try {
      return OC.call(e);
    } catch {
    }
    try {
      return e + "";
    } catch {
    }
  }
  return "";
}
var RC = /[\\^$.*+?()[\]{}|]/g, DC = /^\[object .+?Constructor\]$/, IC = Function.prototype, PC = Object.prototype, NC = IC.toString, zC = PC.hasOwnProperty, WC = RegExp(
  "^" + NC.call(zC).replace(RC, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$"
);
function qC(e) {
  if (!Cr(e) || $C(e))
    return !1;
  var t = Qo(e) ? WC : DC;
  return t.test(_r(e));
}
function HC(e, t) {
  return e == null ? void 0 : e[t];
}
function wr(e, t) {
  var r = HC(e, t);
  return qC(r) ? r : void 0;
}
var Yi = wr(Object, "create");
function jC() {
  this.__data__ = Yi ? Yi(null) : {}, this.size = 0;
}
function YC(e) {
  var t = this.has(e) && delete this.__data__[e];
  return this.size -= t ? 1 : 0, t;
}
var UC = "__lodash_hash_undefined__", GC = Object.prototype, XC = GC.hasOwnProperty;
function VC(e) {
  var t = this.__data__;
  if (Yi) {
    var r = t[e];
    return r === UC ? void 0 : r;
  }
  return XC.call(t, e) ? t[e] : void 0;
}
var ZC = Object.prototype, KC = ZC.hasOwnProperty;
function QC(e) {
  var t = this.__data__;
  return Yi ? t[e] !== void 0 : KC.call(t, e);
}
var JC = "__lodash_hash_undefined__";
function t_(e, t) {
  var r = this.__data__;
  return this.size += this.has(e) ? 0 : 1, r[e] = Yi && t === void 0 ? JC : t, this;
}
function yr(e) {
  var t = -1, r = e == null ? 0 : e.length;
  for (this.clear(); ++t < r; ) {
    var i = e[t];
    this.set(i[0], i[1]);
  }
}
yr.prototype.clear = jC;
yr.prototype.delete = YC;
yr.prototype.get = VC;
yr.prototype.has = QC;
yr.prototype.set = t_;
function e_() {
  this.__data__ = [], this.size = 0;
}
function Fa(e, t) {
  return e === t || e !== e && t !== t;
}
function Oa(e, t) {
  for (var r = e.length; r--; )
    if (Fa(e[r][0], t))
      return r;
  return -1;
}
var r_ = Array.prototype, i_ = r_.splice;
function n_(e) {
  var t = this.__data__, r = Oa(t, e);
  if (r < 0)
    return !1;
  var i = t.length - 1;
  return r == i ? t.pop() : i_.call(t, r, 1), --this.size, !0;
}
function a_(e) {
  var t = this.__data__, r = Oa(t, e);
  return r < 0 ? void 0 : t[r][1];
}
function s_(e) {
  return Oa(this.__data__, e) > -1;
}
function o_(e, t) {
  var r = this.__data__, i = Oa(r, e);
  return i < 0 ? (++this.size, r.push([e, t])) : r[i][1] = t, this;
}
function Pe(e) {
  var t = -1, r = e == null ? 0 : e.length;
  for (this.clear(); ++t < r; ) {
    var i = e[t];
    this.set(i[0], i[1]);
  }
}
Pe.prototype.clear = e_;
Pe.prototype.delete = n_;
Pe.prototype.get = a_;
Pe.prototype.has = s_;
Pe.prototype.set = o_;
var Ui = wr(Te, "Map");
function l_() {
  this.size = 0, this.__data__ = {
    hash: new yr(),
    map: new (Ui || Pe)(),
    string: new yr()
  };
}
function c_(e) {
  var t = typeof e;
  return t == "string" || t == "number" || t == "symbol" || t == "boolean" ? e !== "__proto__" : e === null;
}
function Ra(e, t) {
  var r = e.__data__;
  return c_(t) ? r[typeof t == "string" ? "string" : "hash"] : r.map;
}
function h_(e) {
  var t = Ra(this, e).delete(e);
  return this.size -= t ? 1 : 0, t;
}
function u_(e) {
  return Ra(this, e).get(e);
}
function f_(e) {
  return Ra(this, e).has(e);
}
function p_(e, t) {
  var r = Ra(this, e), i = r.size;
  return r.set(e, t), this.size += r.size == i ? 0 : 1, this;
}
function Qe(e) {
  var t = -1, r = e == null ? 0 : e.length;
  for (this.clear(); ++t < r; ) {
    var i = e[t];
    this.set(i[0], i[1]);
  }
}
Qe.prototype.clear = l_;
Qe.prototype.delete = h_;
Qe.prototype.get = u_;
Qe.prototype.has = f_;
Qe.prototype.set = p_;
var d_ = "Expected a function";
function rn(e, t) {
  if (typeof e != "function" || t != null && typeof t != "function")
    throw new TypeError(d_);
  var r = function() {
    var i = arguments, n = t ? t.apply(this, i) : i[0], a = r.cache;
    if (a.has(n))
      return a.get(n);
    var o = e.apply(this, i);
    return r.cache = a.set(n, o) || a, o;
  };
  return r.cache = new (rn.Cache || Qe)(), r;
}
rn.Cache = Qe;
function g_() {
  this.__data__ = new Pe(), this.size = 0;
}
function m_(e) {
  var t = this.__data__, r = t.delete(e);
  return this.size = t.size, r;
}
function y_(e) {
  return this.__data__.get(e);
}
function x_(e) {
  return this.__data__.has(e);
}
var b_ = 200;
function C_(e, t) {
  var r = this.__data__;
  if (r instanceof Pe) {
    var i = r.__data__;
    if (!Ui || i.length < b_ - 1)
      return i.push([e, t]), this.size = ++r.size, this;
    r = this.__data__ = new Qe(i);
  }
  return r.set(e, t), this.size = r.size, this;
}
function ti(e) {
  var t = this.__data__ = new Pe(e);
  this.size = t.size;
}
ti.prototype.clear = g_;
ti.prototype.delete = m_;
ti.prototype.get = y_;
ti.prototype.has = x_;
ti.prototype.set = C_;
var la = function() {
  try {
    var e = wr(Object, "defineProperty");
    return e({}, "", {}), e;
  } catch {
  }
}();
function Jo(e, t, r) {
  t == "__proto__" && la ? la(e, t, {
    configurable: !0,
    enumerable: !0,
    value: r,
    writable: !0
  }) : e[t] = r;
}
function io(e, t, r) {
  (r !== void 0 && !Fa(e[t], r) || r === void 0 && !(t in e)) && Jo(e, t, r);
}
function __(e) {
  return function(t, r, i) {
    for (var n = -1, a = Object(t), o = i(t), s = o.length; s--; ) {
      var l = o[++n];
      if (r(a[l], l, a) === !1)
        break;
    }
    return t;
  };
}
var w_ = __(), Ap = typeof exports == "object" && exports && !exports.nodeType && exports, Ec = Ap && typeof module == "object" && module && !module.nodeType && module, k_ = Ec && Ec.exports === Ap, $c = k_ ? Te.Buffer : void 0, Fc = $c ? $c.allocUnsafe : void 0;
function v_(e, t) {
  if (t)
    return e.slice();
  var r = e.length, i = Fc ? Fc(r) : new e.constructor(r);
  return e.copy(i), i;
}
var Oc = Te.Uint8Array;
function S_(e) {
  var t = new e.constructor(e.byteLength);
  return new Oc(t).set(new Oc(e)), t;
}
function T_(e, t) {
  var r = t ? S_(e.buffer) : e.buffer;
  return new e.constructor(r, e.byteOffset, e.length);
}
function B_(e, t) {
  var r = -1, i = e.length;
  for (t || (t = Array(i)); ++r < i; )
    t[r] = e[r];
  return t;
}
var Rc = Object.create, A_ = /* @__PURE__ */ function() {
  function e() {
  }
  return function(t) {
    if (!Cr(t))
      return {};
    if (Rc)
      return Rc(t);
    e.prototype = t;
    var r = new e();
    return e.prototype = void 0, r;
  };
}();
function Lp(e, t) {
  return function(r) {
    return e(t(r));
  };
}
var Mp = Lp(Object.getPrototypeOf, Object), L_ = Object.prototype;
function Da(e) {
  var t = e && e.constructor, r = typeof t == "function" && t.prototype || L_;
  return e === r;
}
function M_(e) {
  return typeof e.constructor == "function" && !Da(e) ? A_(Mp(e)) : {};
}
function nn(e) {
  return e != null && typeof e == "object";
}
var E_ = "[object Arguments]";
function Dc(e) {
  return nn(e) && Jr(e) == E_;
}
var Ep = Object.prototype, $_ = Ep.hasOwnProperty, F_ = Ep.propertyIsEnumerable, ca = Dc(/* @__PURE__ */ function() {
  return arguments;
}()) ? Dc : function(e) {
  return nn(e) && $_.call(e, "callee") && !F_.call(e, "callee");
}, ha = Array.isArray, O_ = 9007199254740991;
function $p(e) {
  return typeof e == "number" && e > -1 && e % 1 == 0 && e <= O_;
}
function Ia(e) {
  return e != null && $p(e.length) && !Qo(e);
}
function R_(e) {
  return nn(e) && Ia(e);
}
function D_() {
  return !1;
}
var Fp = typeof exports == "object" && exports && !exports.nodeType && exports, Ic = Fp && typeof module == "object" && module && !module.nodeType && module, I_ = Ic && Ic.exports === Fp, Pc = I_ ? Te.Buffer : void 0, P_ = Pc ? Pc.isBuffer : void 0, tl = P_ || D_, N_ = "[object Object]", z_ = Function.prototype, W_ = Object.prototype, Op = z_.toString, q_ = W_.hasOwnProperty, H_ = Op.call(Object);
function j_(e) {
  if (!nn(e) || Jr(e) != N_)
    return !1;
  var t = Mp(e);
  if (t === null)
    return !0;
  var r = q_.call(t, "constructor") && t.constructor;
  return typeof r == "function" && r instanceof r && Op.call(r) == H_;
}
var Y_ = "[object Arguments]", U_ = "[object Array]", G_ = "[object Boolean]", X_ = "[object Date]", V_ = "[object Error]", Z_ = "[object Function]", K_ = "[object Map]", Q_ = "[object Number]", J_ = "[object Object]", tw = "[object RegExp]", ew = "[object Set]", rw = "[object String]", iw = "[object WeakMap]", nw = "[object ArrayBuffer]", aw = "[object DataView]", sw = "[object Float32Array]", ow = "[object Float64Array]", lw = "[object Int8Array]", cw = "[object Int16Array]", hw = "[object Int32Array]", uw = "[object Uint8Array]", fw = "[object Uint8ClampedArray]", pw = "[object Uint16Array]", dw = "[object Uint32Array]", pt = {};
pt[sw] = pt[ow] = pt[lw] = pt[cw] = pt[hw] = pt[uw] = pt[fw] = pt[pw] = pt[dw] = !0;
pt[Y_] = pt[U_] = pt[nw] = pt[G_] = pt[aw] = pt[X_] = pt[V_] = pt[Z_] = pt[K_] = pt[Q_] = pt[J_] = pt[tw] = pt[ew] = pt[rw] = pt[iw] = !1;
function gw(e) {
  return nn(e) && $p(e.length) && !!pt[Jr(e)];
}
function mw(e) {
  return function(t) {
    return e(t);
  };
}
var Rp = typeof exports == "object" && exports && !exports.nodeType && exports, Oi = Rp && typeof module == "object" && module && !module.nodeType && module, yw = Oi && Oi.exports === Rp, gs = yw && Tp.process, Nc = function() {
  try {
    var e = Oi && Oi.require && Oi.require("util").types;
    return e || gs && gs.binding && gs.binding("util");
  } catch {
  }
}(), zc = Nc && Nc.isTypedArray, el = zc ? mw(zc) : gw;
function no(e, t) {
  if (!(t === "constructor" && typeof e[t] == "function") && t != "__proto__")
    return e[t];
}
var xw = Object.prototype, bw = xw.hasOwnProperty;
function Cw(e, t, r) {
  var i = e[t];
  (!(bw.call(e, t) && Fa(i, r)) || r === void 0 && !(t in e)) && Jo(e, t, r);
}
function _w(e, t, r, i) {
  var n = !r;
  r || (r = {});
  for (var a = -1, o = t.length; ++a < o; ) {
    var s = t[a], l = void 0;
    l === void 0 && (l = e[s]), n ? Jo(r, s, l) : Cw(r, s, l);
  }
  return r;
}
function ww(e, t) {
  for (var r = -1, i = Array(e); ++r < e; )
    i[r] = t(r);
  return i;
}
var kw = 9007199254740991, vw = /^(?:0|[1-9]\d*)$/;
function Dp(e, t) {
  var r = typeof e;
  return t = t ?? kw, !!t && (r == "number" || r != "symbol" && vw.test(e)) && e > -1 && e % 1 == 0 && e < t;
}
var Sw = Object.prototype, Tw = Sw.hasOwnProperty;
function Bw(e, t) {
  var r = ha(e), i = !r && ca(e), n = !r && !i && tl(e), a = !r && !i && !n && el(e), o = r || i || n || a, s = o ? ww(e.length, String) : [], l = s.length;
  for (var c in e)
    (t || Tw.call(e, c)) && !(o && // Safari 9 has enumerable `arguments.length` in strict mode.
    (c == "length" || // Node.js 0.10 has enumerable non-index properties on buffers.
    n && (c == "offset" || c == "parent") || // PhantomJS 2 has enumerable non-index properties on typed arrays.
    a && (c == "buffer" || c == "byteLength" || c == "byteOffset") || // Skip index properties.
    Dp(c, l))) && s.push(c);
  return s;
}
function Aw(e) {
  var t = [];
  if (e != null)
    for (var r in Object(e))
      t.push(r);
  return t;
}
var Lw = Object.prototype, Mw = Lw.hasOwnProperty;
function Ew(e) {
  if (!Cr(e))
    return Aw(e);
  var t = Da(e), r = [];
  for (var i in e)
    i == "constructor" && (t || !Mw.call(e, i)) || r.push(i);
  return r;
}
function Ip(e) {
  return Ia(e) ? Bw(e, !0) : Ew(e);
}
function $w(e) {
  return _w(e, Ip(e));
}
function Fw(e, t, r, i, n, a, o) {
  var s = no(e, r), l = no(t, r), c = o.get(l);
  if (c) {
    io(e, r, c);
    return;
  }
  var h = a ? a(s, l, r + "", e, t, o) : void 0, u = h === void 0;
  if (u) {
    var p = ha(l), f = !p && tl(l), g = !p && !f && el(l);
    h = l, p || f || g ? ha(s) ? h = s : R_(s) ? h = B_(s) : f ? (u = !1, h = v_(l, !0)) : g ? (u = !1, h = T_(l, !0)) : h = [] : j_(l) || ca(l) ? (h = s, ca(s) ? h = $w(s) : (!Cr(s) || Qo(s)) && (h = M_(l))) : u = !1;
  }
  u && (o.set(l, h), n(h, l, i, a, o), o.delete(l)), io(e, r, h);
}
function Pp(e, t, r, i, n) {
  e !== t && w_(t, function(a, o) {
    if (n || (n = new ti()), Cr(a))
      Fw(e, t, o, r, Pp, i, n);
    else {
      var s = i ? i(no(e, o), a, o + "", e, t, n) : void 0;
      s === void 0 && (s = a), io(e, o, s);
    }
  }, Ip);
}
function Np(e) {
  return e;
}
function Ow(e, t, r) {
  switch (r.length) {
    case 0:
      return e.call(t);
    case 1:
      return e.call(t, r[0]);
    case 2:
      return e.call(t, r[0], r[1]);
    case 3:
      return e.call(t, r[0], r[1], r[2]);
  }
  return e.apply(t, r);
}
var Wc = Math.max;
function Rw(e, t, r) {
  return t = Wc(t === void 0 ? e.length - 1 : t, 0), function() {
    for (var i = arguments, n = -1, a = Wc(i.length - t, 0), o = Array(a); ++n < a; )
      o[n] = i[t + n];
    n = -1;
    for (var s = Array(t + 1); ++n < t; )
      s[n] = i[n];
    return s[t] = r(o), Ow(e, this, s);
  };
}
function Dw(e) {
  return function() {
    return e;
  };
}
var Iw = la ? function(e, t) {
  return la(e, "toString", {
    configurable: !0,
    enumerable: !1,
    value: Dw(t),
    writable: !0
  });
} : Np, Pw = 800, Nw = 16, zw = Date.now;
function Ww(e) {
  var t = 0, r = 0;
  return function() {
    var i = zw(), n = Nw - (i - r);
    if (r = i, n > 0) {
      if (++t >= Pw)
        return arguments[0];
    } else
      t = 0;
    return e.apply(void 0, arguments);
  };
}
var qw = Ww(Iw);
function Hw(e, t) {
  return qw(Rw(e, t, Np), e + "");
}
function jw(e, t, r) {
  if (!Cr(r))
    return !1;
  var i = typeof t;
  return (i == "number" ? Ia(r) && Dp(t, r.length) : i == "string" && t in r) ? Fa(r[t], e) : !1;
}
function Yw(e) {
  return Hw(function(t, r) {
    var i = -1, n = r.length, a = n > 1 ? r[n - 1] : void 0, o = n > 2 ? r[2] : void 0;
    for (a = e.length > 3 && typeof a == "function" ? (n--, a) : void 0, o && jw(r[0], r[1], o) && (a = n < 3 ? void 0 : a, n = 1), t = Object(t); ++i < n; ) {
      var s = r[i];
      s && e(t, s, i, a);
    }
    return t;
  });
}
var Uw = Yw(function(e, t, r) {
  Pp(e, t, r);
}), Gw = "​", Xw = {
  curveBasis: Ws,
  curveBasisClosed: K1,
  curveBasisOpen: Q1,
  curveBumpX: ku,
  curveBumpY: vu,
  curveBundle: J1,
  curveCardinalClosed: t2,
  curveCardinalOpen: e2,
  curveCardinal: Au,
  curveCatmullRomClosed: r2,
  curveCatmullRomOpen: i2,
  curveCatmullRom: Mu,
  curveLinear: Fi,
  curveLinearClosed: n2,
  curveMonotoneX: Du,
  curveMonotoneY: Iu,
  curveNatural: Nu,
  curveStep: zu,
  curveStepAfter: qu,
  curveStepBefore: Wu
}, Vw = /\s*(?:(\w+)(?=:):|(\w+))\s*(?:(\w+)|((?:(?!}%{2}).|\r?\n)*))?\s*(?:}%{2})?/gi, Zw = /* @__PURE__ */ d(function(e, t) {
  const r = zp(e, /(?:init\b)|(?:initialize\b)/);
  let i = {};
  if (Array.isArray(r)) {
    const o = r.map((s) => s.args);
    Wn(o), i = kt(i, [...o]);
  } else
    i = r.args;
  if (!i)
    return;
  let n = To(e, t);
  const a = "config";
  return i[a] !== void 0 && (n === "flowchart-v2" && (n = "flowchart"), i[n] = i[a], delete i[a]), i;
}, "detectInit"), zp = /* @__PURE__ */ d(function(e, t = null) {
  var r, i;
  try {
    const n = new RegExp(
      `[%]{2}(?![{]${Vw.source})(?=[}][%]{2}).*
`,
      "ig"
    );
    e = e.trim().replace(n, "").replace(/'/gm, '"'), A.debug(
      `Detecting diagram directive${t !== null ? " type:" + t : ""} based on the text:${e}`
    );
    let a;
    const o = [];
    for (; (a = Ei.exec(e)) !== null; )
      if (a.index === Ei.lastIndex && Ei.lastIndex++, a && !t || t && ((r = a[1]) != null && r.match(t)) || t && ((i = a[2]) != null && i.match(t))) {
        const s = a[1] ? a[1] : a[2], l = a[3] ? a[3].trim() : a[4] ? JSON.parse(a[4].trim()) : null;
        o.push({ type: s, args: l });
      }
    return o.length === 0 ? { type: e, args: null } : o.length === 1 ? o[0] : o;
  } catch (n) {
    return A.error(
      `ERROR: ${n.message} - Unable to parse directive type: '${t}' based on the text: '${e}'`
    ), { type: void 0, args: null };
  }
}, "detectDirective"), Kw = /* @__PURE__ */ d(function(e) {
  return e.replace(Ei, "");
}, "removeDirectives"), Qw = /* @__PURE__ */ d(function(e, t) {
  for (const [r, i] of t.entries())
    if (i.match(e))
      return r;
  return -1;
}, "isSubstringInArray");
function rl(e, t) {
  if (!e)
    return t;
  const r = `curve${e.charAt(0).toUpperCase() + e.slice(1)}`;
  return Xw[r] ?? t;
}
d(rl, "interpolateToCurve");
function Wp(e, t) {
  const r = e.trim();
  if (r)
    return t.securityLevel !== "loose" ? dC(r) : r;
}
d(Wp, "formatUrl");
var Jw = /* @__PURE__ */ d((e, ...t) => {
  const r = e.split("."), i = r.length - 1, n = r[i];
  let a = window;
  for (let o = 0; o < i; o++)
    if (a = a[r[o]], !a) {
      A.error(`Function name: ${e} not found in window`);
      return;
    }
  a[n](...t);
}, "runFunc");
function il(e, t) {
  return !e || !t ? 0 : Math.sqrt(Math.pow(t.x - e.x, 2) + Math.pow(t.y - e.y, 2));
}
d(il, "distance");
function qp(e) {
  let t, r = 0;
  e.forEach((n) => {
    r += il(n, t), t = n;
  });
  const i = r / 2;
  return nl(e, i);
}
d(qp, "traverseEdge");
function Hp(e) {
  return e.length === 1 ? e[0] : qp(e);
}
d(Hp, "calcLabelPosition");
var qc = /* @__PURE__ */ d((e, t = 2) => {
  const r = Math.pow(10, t);
  return Math.round(e * r) / r;
}, "roundNumber"), nl = /* @__PURE__ */ d((e, t) => {
  let r, i = t;
  for (const n of e) {
    if (r) {
      const a = il(n, r);
      if (a === 0)
        return r;
      if (a < i)
        i -= a;
      else {
        const o = i / a;
        if (o <= 0)
          return r;
        if (o >= 1)
          return { x: n.x, y: n.y };
        if (o > 0 && o < 1)
          return {
            x: qc((1 - o) * r.x + o * n.x, 5),
            y: qc((1 - o) * r.y + o * n.y, 5)
          };
      }
    }
    r = n;
  }
  throw new Error("Could not find a suitable point for the given distance");
}, "calculatePoint"), tk = /* @__PURE__ */ d((e, t, r) => {
  A.info(`our points ${JSON.stringify(t)}`), t[0] !== r && (t = t.reverse());
  const n = nl(t, 25), a = e ? 10 : 5, o = Math.atan2(t[0].y - n.y, t[0].x - n.x), s = { x: 0, y: 0 };
  return s.x = Math.sin(o) * a + (t[0].x + n.x) / 2, s.y = -Math.cos(o) * a + (t[0].y + n.y) / 2, s;
}, "calcCardinalityPosition");
function jp(e, t, r) {
  const i = structuredClone(r);
  A.info("our points", i), t !== "start_left" && t !== "start_right" && i.reverse();
  const n = 25 + e, a = nl(i, n), o = 10 + e * 0.5, s = Math.atan2(i[0].y - a.y, i[0].x - a.x), l = { x: 0, y: 0 };
  return t === "start_left" ? (l.x = Math.sin(s + Math.PI) * o + (i[0].x + a.x) / 2, l.y = -Math.cos(s + Math.PI) * o + (i[0].y + a.y) / 2) : t === "end_right" ? (l.x = Math.sin(s - Math.PI) * o + (i[0].x + a.x) / 2 - 5, l.y = -Math.cos(s - Math.PI) * o + (i[0].y + a.y) / 2 - 5) : t === "end_left" ? (l.x = Math.sin(s) * o + (i[0].x + a.x) / 2 - 5, l.y = -Math.cos(s) * o + (i[0].y + a.y) / 2 - 5) : (l.x = Math.sin(s) * o + (i[0].x + a.x) / 2, l.y = -Math.cos(s) * o + (i[0].y + a.y) / 2), l;
}
d(jp, "calcTerminalLabelPosition");
function Yp(e) {
  let t = "", r = "";
  for (const i of e)
    i !== void 0 && (i.startsWith("color:") || i.startsWith("text-align:") ? r = r + i + ";" : t = t + i + ";");
  return { style: t, labelStyle: r };
}
d(Yp, "getStylesFromArray");
var Hc = 0, ek = /* @__PURE__ */ d(() => (Hc++, "id-" + Math.random().toString(36).substr(2, 12) + "-" + Hc), "generateId");
function Up(e) {
  let t = "";
  const r = "0123456789abcdef", i = r.length;
  for (let n = 0; n < e; n++)
    t += r.charAt(Math.floor(Math.random() * i));
  return t;
}
d(Up, "makeRandomHex");
var rk = /* @__PURE__ */ d((e) => Up(e.length), "random"), ik = /* @__PURE__ */ d(function() {
  return {
    x: 0,
    y: 0,
    fill: void 0,
    anchor: "start",
    style: "#666",
    width: 100,
    height: 100,
    textMargin: 0,
    rx: 0,
    ry: 0,
    valign: void 0,
    text: ""
  };
}, "getTextObj"), nk = /* @__PURE__ */ d(function(e, t) {
  const r = t.text.replace(Qi.lineBreakRegex, " "), [, i] = Pa(t.fontSize), n = e.append("text");
  n.attr("x", t.x), n.attr("y", t.y), n.style("text-anchor", t.anchor), n.style("font-family", t.fontFamily), n.style("font-size", i), n.style("font-weight", t.fontWeight), n.attr("fill", t.fill), t.class !== void 0 && n.attr("class", t.class);
  const a = n.append("tspan");
  return a.attr("x", t.x + t.textMargin * 2), a.attr("fill", t.fill), a.text(r), n;
}, "drawSimpleText"), ak = rn(
  (e, t, r) => {
    if (!e || (r = Object.assign(
      { fontSize: 12, fontWeight: 400, fontFamily: "Arial", joinWith: "<br/>" },
      r
    ), Qi.lineBreakRegex.test(e)))
      return e;
    const i = e.split(" ").filter(Boolean), n = [];
    let a = "";
    return i.forEach((o, s) => {
      const l = Ie(`${o} `, r), c = Ie(a, r);
      if (l > t) {
        const { hyphenatedStrings: p, remainingWord: f } = sk(o, t, "-", r);
        n.push(a, ...p), a = f;
      } else c + l >= t ? (n.push(a), a = o) : a = [a, o].filter(Boolean).join(" ");
      s + 1 === i.length && n.push(a);
    }), n.filter((o) => o !== "").join(r.joinWith);
  },
  (e, t, r) => `${e}${t}${r.fontSize}${r.fontWeight}${r.fontFamily}${r.joinWith}`
), sk = rn(
  (e, t, r = "-", i) => {
    i = Object.assign(
      { fontSize: 12, fontWeight: 400, fontFamily: "Arial", margin: 0 },
      i
    );
    const n = [...e], a = [];
    let o = "";
    return n.forEach((s, l) => {
      const c = `${o}${s}`;
      if (Ie(c, i) >= t) {
        const u = l + 1, p = n.length === u, f = `${c}${r}`;
        a.push(p ? c : f), o = "";
      } else
        o = c;
    }), { hyphenatedStrings: a, remainingWord: o };
  },
  (e, t, r = "-", i) => `${e}${t}${r}${i.fontSize}${i.fontWeight}${i.fontFamily}`
);
function Gp(e, t) {
  return al(e, t).height;
}
d(Gp, "calculateTextHeight");
function Ie(e, t) {
  return al(e, t).width;
}
d(Ie, "calculateTextWidth");
var al = rn(
  (e, t) => {
    const { fontSize: r = 12, fontFamily: i = "Arial", fontWeight: n = 400 } = t;
    if (!e)
      return { width: 0, height: 0 };
    const [, a] = Pa(r), o = ["sans-serif", i], s = e.split(Qi.lineBreakRegex), l = [], c = et("body");
    if (!c.remove)
      return { width: 0, height: 0, lineHeight: 0 };
    const h = c.append("svg");
    for (const p of o) {
      let f = 0;
      const g = { width: 0, height: 0, lineHeight: 0 };
      for (const m of s) {
        const y = ik();
        y.text = m || Gw;
        const x = nk(h, y).style("font-size", a).style("font-weight", n).style("font-family", p), b = (x._groups || x)[0][0].getBBox();
        if (b.width === 0 && b.height === 0)
          throw new Error("svg element not in render tree");
        g.width = Math.round(Math.max(g.width, b.width)), f = Math.round(b.height), g.height += f, g.lineHeight = Math.round(Math.max(g.lineHeight, f));
      }
      l.push(g);
    }
    h.remove();
    const u = isNaN(l[1].height) || isNaN(l[1].width) || isNaN(l[1].lineHeight) || l[0].height > l[1].height && l[0].width > l[1].width && l[0].lineHeight > l[1].lineHeight ? 0 : 1;
    return l[u];
  },
  (e, t) => `${e}${t.fontSize}${t.fontWeight}${t.fontFamily}`
), jr, ok = (jr = class {
  constructor(t = !1, r) {
    this.count = 0, this.count = r ? r.length : 0, this.next = t ? () => this.count++ : () => Date.now();
  }
}, d(jr, "InitIDGenerator"), jr), Cn, lk = /* @__PURE__ */ d(function(e) {
  return Cn = Cn || document.createElement("div"), e = escape(e).replace(/%26/g, "&").replace(/%23/g, "#").replace(/%3B/g, ";"), Cn.innerHTML = e, unescape(Cn.textContent);
}, "entityDecode");
function sl(e) {
  return "str" in e;
}
d(sl, "isDetailedError");
var ck = /* @__PURE__ */ d((e, t, r, i) => {
  var a;
  if (!i)
    return;
  const n = (a = e.node()) == null ? void 0 : a.getBBox();
  n && e.append("text").text(i).attr("text-anchor", "middle").attr("x", n.x + n.width / 2).attr("y", -r).attr("class", t);
}, "insertTitle"), Pa = /* @__PURE__ */ d((e) => {
  if (typeof e == "number")
    return [e, e + "px"];
  const t = parseInt(e ?? "", 10);
  return Number.isNaN(t) ? [void 0, void 0] : e === String(t) ? [t, e + "px"] : [t, e];
}, "parseFontSize");
function ol(e, t) {
  return Uw({}, e, t);
}
d(ol, "cleanAndMerge");
var he = {
  assignWithDepth: kt,
  wrapLabel: ak,
  calculateTextHeight: Gp,
  calculateTextWidth: Ie,
  calculateTextDimensions: al,
  cleanAndMerge: ol,
  detectInit: Zw,
  detectDirective: zp,
  isSubstringInArray: Qw,
  interpolateToCurve: rl,
  calcLabelPosition: Hp,
  calcCardinalityPosition: tk,
  calcTerminalLabelPosition: jp,
  formatUrl: Wp,
  getStylesFromArray: Yp,
  generateId: ek,
  random: rk,
  runFunc: Jw,
  entityDecode: lk,
  insertTitle: ck,
  isLabelCoordinateInPath: Xp,
  parseFontSize: Pa,
  InitIDGenerator: ok
}, hk = /* @__PURE__ */ d(function(e) {
  let t = e;
  return t = t.replace(/style.*:\S*#.*;/g, function(r) {
    return r.substring(0, r.length - 1);
  }), t = t.replace(/classDef.*:\S*#.*;/g, function(r) {
    return r.substring(0, r.length - 1);
  }), t = t.replace(/#\w+;/g, function(r) {
    const i = r.substring(1, r.length - 1);
    return /^\+?\d+$/.test(i) ? "fl°°" + i + "¶ß" : "fl°" + i + "¶ß";
  }), t;
}, "encodeEntities"), ei = /* @__PURE__ */ d(function(e) {
  return e.replace(/fl°°/g, "&#").replace(/fl°/g, "&").replace(/¶ß/g, ";");
}, "decodeEntities"), wL = /* @__PURE__ */ d((e, t, {
  counter: r = 0,
  prefix: i,
  suffix: n
}, a) => a || `${i ? `${i}_` : ""}${e}_${t}_${r}${n ? `_${n}` : ""}`, "getEdgeId");
function Dt(e) {
  return e ?? null;
}
d(Dt, "handleUndefinedAttr");
function Xp(e, t) {
  const r = Math.round(e.x), i = Math.round(e.y), n = t.replace(
    /(\d+\.\d+)/g,
    (a) => Math.round(parseFloat(a)).toString()
  );
  return n.includes(r.toString()) || n.includes(i.toString());
}
d(Xp, "isLabelCoordinateInPath");
var ll = /* @__PURE__ */ d(({
  flowchart: e
}) => {
  var n, a;
  const t = ((n = e == null ? void 0 : e.subGraphTitleMargin) == null ? void 0 : n.top) ?? 0, r = ((a = e == null ? void 0 : e.subGraphTitleMargin) == null ? void 0 : a.bottom) ?? 0, i = t + r;
  return {
    subGraphTitleTopMargin: t,
    subGraphTitleBottomMargin: r,
    subGraphTitleTotalMargin: i
  };
}, "getSubGraphTitleMargins");
async function Vp(e, t) {
  const r = e.getElementsByTagName("img");
  if (!r || r.length === 0)
    return;
  const i = t.replace(/<img[^>]*>/g, "").trim() === "";
  await Promise.all(
    [...r].map(
      (n) => new Promise((a) => {
        function o() {
          if (n.style.display = "flex", n.style.flexDirection = "column", i) {
            const s = ot().fontSize ? ot().fontSize : window.getComputedStyle(document.body).fontSize, l = 5, [c = Dh.fontSize] = Pa(s), h = c * l + "px";
            n.style.minWidth = h, n.style.maxWidth = h;
          } else
            n.style.width = "100%";
          a(n);
        }
        d(o, "setupImage"), setTimeout(() => {
          n.complete && o();
        }), n.addEventListener("error", o), n.addEventListener("load", o);
      })
    )
  );
}
d(Vp, "configureLabelImages");
var uk = /* @__PURE__ */ d((e) => {
  const { handDrawnSeed: t } = ot();
  return {
    fill: e,
    hachureAngle: 120,
    // angle of hachure,
    hachureGap: 4,
    fillWeight: 2,
    roughness: 0.7,
    stroke: e,
    seed: t
  };
}, "solidStateFill"), ri = /* @__PURE__ */ d((e) => {
  const t = fk([
    ...e.cssCompiledStyles || [],
    ...e.cssStyles || [],
    ...e.labelStyle || []
  ]);
  return { stylesMap: t, stylesArray: [...t] };
}, "compileStyles"), fk = /* @__PURE__ */ d((e) => {
  const t = /* @__PURE__ */ new Map();
  return e.forEach((r) => {
    const [i, n] = r.split(":");
    t.set(i.trim(), n == null ? void 0 : n.trim());
  }), t;
}, "styles2Map"), Zp = /* @__PURE__ */ d((e) => e === "color" || e === "font-size" || e === "font-family" || e === "font-weight" || e === "font-style" || e === "text-decoration" || e === "text-align" || e === "text-transform" || e === "line-height" || e === "letter-spacing" || e === "word-spacing" || e === "text-shadow" || e === "text-overflow" || e === "white-space" || e === "word-wrap" || e === "word-break" || e === "overflow-wrap" || e === "hyphens", "isLabelStyle"), Y = /* @__PURE__ */ d((e) => {
  const { stylesArray: t } = ri(e), r = [], i = [], n = [], a = [];
  return t.forEach((o) => {
    const s = o[0];
    Zp(s) ? r.push(o.join(":") + " !important") : (i.push(o.join(":") + " !important"), s.includes("stroke") && n.push(o.join(":") + " !important"), s === "fill" && a.push(o.join(":") + " !important"));
  }), {
    labelStyles: r.join(";"),
    nodeStyles: i.join(";"),
    stylesArray: t,
    borderStyles: n,
    backgroundStyles: a
  };
}, "styles2String"), j = /* @__PURE__ */ d((e, t) => {
  var l;
  const { themeVariables: r, handDrawnSeed: i } = ot(), { nodeBorder: n, mainBkg: a } = r, { stylesMap: o } = ri(e);
  return Object.assign(
    {
      roughness: 0.7,
      fill: o.get("fill") || a,
      fillStyle: "hachure",
      // solid fill
      fillWeight: 4,
      hachureGap: 5.2,
      stroke: o.get("stroke") || n,
      seed: i,
      strokeWidth: ((l = o.get("stroke-width")) == null ? void 0 : l.replace("px", "")) || 1.3,
      fillLineDash: [0, 0],
      strokeLineDash: pk(o.get("stroke-dasharray"))
    },
    t
  );
}, "userNodeOverrides"), pk = /* @__PURE__ */ d((e) => {
  if (!e)
    return [0, 0];
  const t = e.trim().split(/\s+/).map(Number);
  if (t.length === 1) {
    const n = isNaN(t[0]) ? 0 : t[0];
    return [n, n];
  }
  const r = isNaN(t[0]) ? 0 : t[0], i = isNaN(t[1]) ? 0 : t[1];
  return [r, i];
}, "getStrokeDashArray");
const dk = Object.freeze({
  left: 0,
  top: 0,
  width: 16,
  height: 16
}), ua = Object.freeze({
  rotate: 0,
  vFlip: !1,
  hFlip: !1
}), Kp = Object.freeze({
  ...dk,
  ...ua
}), gk = Object.freeze({
  ...Kp,
  body: "",
  hidden: !1
}), mk = Object.freeze({
  width: null,
  height: null
}), yk = Object.freeze({
  ...mk,
  ...ua
}), xk = (e, t, r, i = "") => {
  const n = e.split(":");
  if (e.slice(0, 1) === "@") {
    if (n.length < 2 || n.length > 3) return null;
    i = n.shift().slice(1);
  }
  if (n.length > 3 || !n.length) return null;
  if (n.length > 1) {
    const s = n.pop(), l = n.pop(), c = {
      provider: n.length > 0 ? n[0] : i,
      prefix: l,
      name: s
    };
    return ms(c) ? c : null;
  }
  const a = n[0], o = a.split("-");
  if (o.length > 1) {
    const s = {
      provider: i,
      prefix: o.shift(),
      name: o.join("-")
    };
    return ms(s) ? s : null;
  }
  if (r && i === "") {
    const s = {
      provider: i,
      prefix: "",
      name: a
    };
    return ms(s, r) ? s : null;
  }
  return null;
}, ms = (e, t) => e ? !!((t && e.prefix === "" || e.prefix) && e.name) : !1;
function bk(e, t) {
  const r = {};
  !e.hFlip != !t.hFlip && (r.hFlip = !0), !e.vFlip != !t.vFlip && (r.vFlip = !0);
  const i = ((e.rotate || 0) + (t.rotate || 0)) % 4;
  return i && (r.rotate = i), r;
}
function jc(e, t) {
  const r = bk(e, t);
  for (const i in gk) i in ua ? i in e && !(i in r) && (r[i] = ua[i]) : i in t ? r[i] = t[i] : i in e && (r[i] = e[i]);
  return r;
}
function Ck(e, t) {
  const r = e.icons, i = e.aliases || /* @__PURE__ */ Object.create(null), n = /* @__PURE__ */ Object.create(null);
  function a(o) {
    if (r[o]) return n[o] = [];
    if (!(o in n)) {
      n[o] = null;
      const s = i[o] && i[o].parent, l = s && a(s);
      l && (n[o] = [s].concat(l));
    }
    return n[o];
  }
  return (t || Object.keys(r).concat(Object.keys(i))).forEach(a), n;
}
function Yc(e, t, r) {
  const i = e.icons, n = e.aliases || /* @__PURE__ */ Object.create(null);
  let a = {};
  function o(s) {
    a = jc(i[s] || n[s], a);
  }
  return o(t), r.forEach(o), jc(e, a);
}
function _k(e, t) {
  if (e.icons[t]) return Yc(e, t, []);
  const r = Ck(e, [t])[t];
  return r ? Yc(e, t, r) : null;
}
const wk = /(-?[0-9.]*[0-9]+[0-9.]*)/g, kk = /^-?[0-9.]*[0-9]+[0-9.]*$/g;
function Uc(e, t, r) {
  if (t === 1) return e;
  if (r = r || 100, typeof e == "number") return Math.ceil(e * t * r) / r;
  if (typeof e != "string") return e;
  const i = e.split(wk);
  if (i === null || !i.length) return e;
  const n = [];
  let a = i.shift(), o = kk.test(a);
  for (; ; ) {
    if (o) {
      const s = parseFloat(a);
      isNaN(s) ? n.push(a) : n.push(Math.ceil(s * t * r) / r);
    } else n.push(a);
    if (a = i.shift(), a === void 0) return n.join("");
    o = !o;
  }
}
function vk(e, t = "defs") {
  let r = "";
  const i = e.indexOf("<" + t);
  for (; i >= 0; ) {
    const n = e.indexOf(">", i), a = e.indexOf("</" + t);
    if (n === -1 || a === -1) break;
    const o = e.indexOf(">", a);
    if (o === -1) break;
    r += e.slice(n + 1, a).trim(), e = e.slice(0, i).trim() + e.slice(o + 1);
  }
  return {
    defs: r,
    content: e
  };
}
function Sk(e, t) {
  return e ? "<defs>" + e + "</defs>" + t : t;
}
function Tk(e, t, r) {
  const i = vk(e);
  return Sk(i.defs, t + i.content + r);
}
const Bk = (e) => e === "unset" || e === "undefined" || e === "none";
function Ak(e, t) {
  const r = {
    ...Kp,
    ...e
  }, i = {
    ...yk,
    ...t
  }, n = {
    left: r.left,
    top: r.top,
    width: r.width,
    height: r.height
  };
  let a = r.body;
  [r, i].forEach((m) => {
    const y = [], x = m.hFlip, b = m.vFlip;
    let _ = m.rotate;
    x ? b ? _ += 2 : (y.push("translate(" + (n.width + n.left).toString() + " " + (0 - n.top).toString() + ")"), y.push("scale(-1 1)"), n.top = n.left = 0) : b && (y.push("translate(" + (0 - n.left).toString() + " " + (n.height + n.top).toString() + ")"), y.push("scale(1 -1)"), n.top = n.left = 0);
    let S;
    switch (_ < 0 && (_ -= Math.floor(_ / 4) * 4), _ = _ % 4, _) {
      case 1:
        S = n.height / 2 + n.top, y.unshift("rotate(90 " + S.toString() + " " + S.toString() + ")");
        break;
      case 2:
        y.unshift("rotate(180 " + (n.width / 2 + n.left).toString() + " " + (n.height / 2 + n.top).toString() + ")");
        break;
      case 3:
        S = n.width / 2 + n.left, y.unshift("rotate(-90 " + S.toString() + " " + S.toString() + ")");
        break;
    }
    _ % 2 === 1 && (n.left !== n.top && (S = n.left, n.left = n.top, n.top = S), n.width !== n.height && (S = n.width, n.width = n.height, n.height = S)), y.length && (a = Tk(a, '<g transform="' + y.join(" ") + '">', "</g>"));
  });
  const o = i.width, s = i.height, l = n.width, c = n.height;
  let h, u;
  o === null ? (u = s === null ? "1em" : s === "auto" ? c : s, h = Uc(u, l / c)) : (h = o === "auto" ? l : o, u = s === null ? Uc(h, c / l) : s === "auto" ? c : s);
  const p = {}, f = (m, y) => {
    Bk(y) || (p[m] = y.toString());
  };
  f("width", h), f("height", u);
  const g = [
    n.left,
    n.top,
    l,
    c
  ];
  return p.viewBox = g.join(" "), {
    attributes: p,
    viewBox: g,
    body: a
  };
}
const Lk = /\sid="(\S+)"/g, Gc = /* @__PURE__ */ new Map();
function Mk(e) {
  e = e.replace(/[0-9]+$/, "") || "a";
  const t = Gc.get(e) || 0;
  return Gc.set(e, t + 1), t ? `${e}${t}` : e;
}
function Ek(e) {
  const t = [];
  let r;
  for (; r = Lk.exec(e); ) t.push(r[1]);
  if (!t.length) return e;
  const i = "suffix" + (Math.random() * 16777216 | Date.now()).toString(16);
  return t.forEach((n) => {
    const a = Mk(n), o = n.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
    e = e.replace(new RegExp('([#;"])(' + o + ')([")]|\\.[a-z])', "g"), "$1" + a + i + "$3");
  }), e = e.replace(new RegExp(i, "g"), ""), e;
}
function $k(e, t) {
  let r = e.indexOf("xlink:") === -1 ? "" : ' xmlns:xlink="http://www.w3.org/1999/xlink"';
  for (const i in t) r += " " + i + '="' + t[i] + '"';
  return '<svg xmlns="http://www.w3.org/2000/svg"' + r + ">" + e + "</svg>";
}
function cl() {
  return { async: !1, breaks: !1, extensions: null, gfm: !0, hooks: null, pedantic: !1, renderer: null, silent: !1, tokenizer: null, walkTokens: null };
}
var kr = cl();
function Qp(e) {
  kr = e;
}
var Ri = { exec: () => null };
function st(e, t = "") {
  let r = typeof e == "string" ? e : e.source, i = { replace: (n, a) => {
    let o = typeof a == "string" ? a : a.source;
    return o = o.replace(qt.caret, "$1"), r = r.replace(n, o), i;
  }, getRegex: () => new RegExp(r, t) };
  return i;
}
var Fk = (() => {
  try {
    return !!new RegExp("(?<=1)(?<!1)");
  } catch {
    return !1;
  }
})(), qt = { codeRemoveIndent: /^(?: {1,4}| {0,3}\t)/gm, outputLinkReplace: /\\([\[\]])/g, indentCodeCompensation: /^(\s+)(?:```)/, beginningSpace: /^\s+/, endingHash: /#$/, startingSpaceChar: /^ /, endingSpaceChar: / $/, nonSpaceChar: /[^ ]/, newLineCharGlobal: /\n/g, tabCharGlobal: /\t/g, multipleSpaceGlobal: /\s+/g, blankLine: /^[ \t]*$/, doubleBlankLine: /\n[ \t]*\n[ \t]*$/, blockquoteStart: /^ {0,3}>/, blockquoteSetextReplace: /\n {0,3}((?:=+|-+) *)(?=\n|$)/g, blockquoteSetextReplace2: /^ {0,3}>[ \t]?/gm, listReplaceTabs: /^\t+/, listReplaceNesting: /^ {1,4}(?=( {4})*[^ ])/g, listIsTask: /^\[[ xX]\] /, listReplaceTask: /^\[[ xX]\] +/, anyLine: /\n.*\n/, hrefBrackets: /^<(.*)>$/, tableDelimiter: /[:|]/, tableAlignChars: /^\||\| *$/g, tableRowBlankLine: /\n[ \t]*$/, tableAlignRight: /^ *-+: *$/, tableAlignCenter: /^ *:-+: *$/, tableAlignLeft: /^ *:-+ *$/, startATag: /^<a /i, endATag: /^<\/a>/i, startPreScriptTag: /^<(pre|code|kbd|script)(\s|>)/i, endPreScriptTag: /^<\/(pre|code|kbd|script)(\s|>)/i, startAngleBracket: /^</, endAngleBracket: />$/, pedanticHrefTitle: /^([^'"]*[^\s])\s+(['"])(.*)\2/, unicodeAlphaNumeric: /[\p{L}\p{N}]/u, escapeTest: /[&<>"']/, escapeReplace: /[&<>"']/g, escapeTestNoEncode: /[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/, escapeReplaceNoEncode: /[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/g, unescapeTest: /&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/ig, caret: /(^|[^\[])\^/g, percentDecode: /%25/g, findPipe: /\|/g, splitPipe: / \|/, slashPipe: /\\\|/g, carriageReturn: /\r\n|\r/g, spaceLine: /^ +$/gm, notSpaceStart: /^\S*/, endingNewline: /\n$/, listItemRegex: (e) => new RegExp(`^( {0,3}${e})((?:[	 ][^\\n]*)?(?:\\n|$))`), nextBulletRegex: (e) => new RegExp(`^ {0,${Math.min(3, e - 1)}}(?:[*+-]|\\d{1,9}[.)])((?:[ 	][^\\n]*)?(?:\\n|$))`), hrRegex: (e) => new RegExp(`^ {0,${Math.min(3, e - 1)}}((?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$)`), fencesBeginRegex: (e) => new RegExp(`^ {0,${Math.min(3, e - 1)}}(?:\`\`\`|~~~)`), headingBeginRegex: (e) => new RegExp(`^ {0,${Math.min(3, e - 1)}}#`), htmlBeginRegex: (e) => new RegExp(`^ {0,${Math.min(3, e - 1)}}<(?:[a-z].*>|!--)`, "i") }, Ok = /^(?:[ \t]*(?:\n|$))+/, Rk = /^((?: {4}| {0,3}\t)[^\n]+(?:\n(?:[ \t]*(?:\n|$))*)?)+/, Dk = /^ {0,3}(`{3,}(?=[^`\n]*(?:\n|$))|~{3,})([^\n]*)(?:\n|$)(?:|([\s\S]*?)(?:\n|$))(?: {0,3}\1[~`]* *(?=\n|$)|$)/, an = /^ {0,3}((?:-[\t ]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})(?:\n+|$)/, Ik = /^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/, hl = /(?:[*+-]|\d{1,9}[.)])/, Jp = /^(?!bull |blockCode|fences|blockquote|heading|html|table)((?:.|\n(?!\s*?\n|bull |blockCode|fences|blockquote|heading|html|table))+?)\n {0,3}(=+|-+) *(?:\n+|$)/, td = st(Jp).replace(/bull/g, hl).replace(/blockCode/g, /(?: {4}| {0,3}\t)/).replace(/fences/g, / {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g, / {0,3}>/).replace(/heading/g, / {0,3}#{1,6}/).replace(/html/g, / {0,3}<[^\n>]+>\n/).replace(/\|table/g, "").getRegex(), Pk = st(Jp).replace(/bull/g, hl).replace(/blockCode/g, /(?: {4}| {0,3}\t)/).replace(/fences/g, / {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g, / {0,3}>/).replace(/heading/g, / {0,3}#{1,6}/).replace(/html/g, / {0,3}<[^\n>]+>\n/).replace(/table/g, / {0,3}\|?(?:[:\- ]*\|)+[\:\- ]*\n/).getRegex(), ul = /^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html|table| +\n)[^\n]+)*)/, Nk = /^[^\n]+/, fl = /(?!\s*\])(?:\\[\s\S]|[^\[\]\\])+/, zk = st(/^ {0,3}\[(label)\]: *(?:\n[ \t]*)?([^<\s][^\s]*|<.*?>)(?:(?: +(?:\n[ \t]*)?| *\n[ \t]*)(title))? *(?:\n+|$)/).replace("label", fl).replace("title", /(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/).getRegex(), Wk = st(/^( {0,3}bull)([ \t][^\n]+?)?(?:\n|$)/).replace(/bull/g, hl).getRegex(), Na = "address|article|aside|base|basefont|blockquote|body|caption|center|col|colgroup|dd|details|dialog|dir|div|dl|dt|fieldset|figcaption|figure|footer|form|frame|frameset|h[1-6]|head|header|hr|html|iframe|legend|li|link|main|menu|menuitem|meta|nav|noframes|ol|optgroup|option|p|param|search|section|summary|table|tbody|td|tfoot|th|thead|title|tr|track|ul", pl = /<!--(?:-?>|[\s\S]*?(?:-->|$))/, qk = st("^ {0,3}(?:<(script|pre|style|textarea)[\\s>][\\s\\S]*?(?:</\\1>[^\\n]*\\n+|$)|comment[^\\n]*(\\n+|$)|<\\?[\\s\\S]*?(?:\\?>\\n*|$)|<![A-Z][\\s\\S]*?(?:>\\n*|$)|<!\\[CDATA\\[[\\s\\S]*?(?:\\]\\]>\\n*|$)|</?(tag)(?: +|\\n|/?>)[\\s\\S]*?(?:(?:\\n[ 	]*)+\\n|$)|<(?!script|pre|style|textarea)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ 	]*)+\\n|$)|</(?!script|pre|style|textarea)[a-z][\\w-]*\\s*>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ 	]*)+\\n|$))", "i").replace("comment", pl).replace("tag", Na).replace("attribute", / +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex(), ed = st(ul).replace("hr", an).replace("heading", " {0,3}#{1,6}(?:\\s|$)").replace("|lheading", "").replace("|table", "").replace("blockquote", " {0,3}>").replace("fences", " {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list", " {0,3}(?:[*+-]|1[.)]) ").replace("html", "</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag", Na).getRegex(), Hk = st(/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/).replace("paragraph", ed).getRegex(), dl = { blockquote: Hk, code: Rk, def: zk, fences: Dk, heading: Ik, hr: an, html: qk, lheading: td, list: Wk, newline: Ok, paragraph: ed, table: Ri, text: Nk }, Xc = st("^ *([^\\n ].*)\\n {0,3}((?:\\| *)?:?-+:? *(?:\\| *:?-+:? *)*(?:\\| *)?)(?:\\n((?:(?! *\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)").replace("hr", an).replace("heading", " {0,3}#{1,6}(?:\\s|$)").replace("blockquote", " {0,3}>").replace("code", "(?: {4}| {0,3}	)[^\\n]").replace("fences", " {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list", " {0,3}(?:[*+-]|1[.)]) ").replace("html", "</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag", Na).getRegex(), jk = { ...dl, lheading: Pk, table: Xc, paragraph: st(ul).replace("hr", an).replace("heading", " {0,3}#{1,6}(?:\\s|$)").replace("|lheading", "").replace("table", Xc).replace("blockquote", " {0,3}>").replace("fences", " {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list", " {0,3}(?:[*+-]|1[.)]) ").replace("html", "</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag", Na).getRegex() }, Yk = { ...dl, html: st(`^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+?</\\1> *(?:\\n{2,}|\\s*$)|<tag(?:"[^"]*"|'[^']*'|\\s[^'"/>\\s]*)*?/?> *(?:\\n{2,}|\\s*$))`).replace("comment", pl).replace(/tag/g, "(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\b)\\w+(?!:|[^\\w\\s@]*@)\\b").getRegex(), def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/, heading: /^(#{1,6})(.*)(?:\n+|$)/, fences: Ri, lheading: /^(.+?)\n {0,3}(=+|-+) *(?:\n+|$)/, paragraph: st(ul).replace("hr", an).replace("heading", ` *#{1,6} *[^
]`).replace("lheading", td).replace("|table", "").replace("blockquote", " {0,3}>").replace("|fences", "").replace("|list", "").replace("|html", "").replace("|tag", "").getRegex() }, Uk = /^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/, Gk = /^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/, rd = /^( {2,}|\\)\n(?!\s*$)/, Xk = /^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\<!\[`*_]|\b_|$)|[^ ](?= {2,}\n)))/, za = /[\p{P}\p{S}]/u, gl = /[\s\p{P}\p{S}]/u, id = /[^\s\p{P}\p{S}]/u, Vk = st(/^((?![*_])punctSpace)/, "u").replace(/punctSpace/g, gl).getRegex(), nd = /(?!~)[\p{P}\p{S}]/u, Zk = /(?!~)[\s\p{P}\p{S}]/u, Kk = /(?:[^\s\p{P}\p{S}]|~)/u, Qk = st(/link|precode-code|html/, "g").replace("link", /\[(?:[^\[\]`]|(?<a>`+)[^`]+\k<a>(?!`))*?\]\((?:\\[\s\S]|[^\\\(\)]|\((?:\\[\s\S]|[^\\\(\)])*\))*\)/).replace("precode-", Fk ? "(?<!`)()" : "(^^|[^`])").replace("code", /(?<b>`+)[^`]+\k<b>(?!`)/).replace("html", /<(?! )[^<>]*?>/).getRegex(), ad = /^(?:\*+(?:((?!\*)punct)|[^\s*]))|^_+(?:((?!_)punct)|([^\s_]))/, Jk = st(ad, "u").replace(/punct/g, za).getRegex(), tv = st(ad, "u").replace(/punct/g, nd).getRegex(), sd = "^[^_*]*?__[^_*]*?\\*[^_*]*?(?=__)|[^*]+(?=[^*])|(?!\\*)punct(\\*+)(?=[\\s]|$)|notPunctSpace(\\*+)(?!\\*)(?=punctSpace|$)|(?!\\*)punctSpace(\\*+)(?=notPunctSpace)|[\\s](\\*+)(?!\\*)(?=punct)|(?!\\*)punct(\\*+)(?!\\*)(?=punct)|notPunctSpace(\\*+)(?=notPunctSpace)", ev = st(sd, "gu").replace(/notPunctSpace/g, id).replace(/punctSpace/g, gl).replace(/punct/g, za).getRegex(), rv = st(sd, "gu").replace(/notPunctSpace/g, Kk).replace(/punctSpace/g, Zk).replace(/punct/g, nd).getRegex(), iv = st("^[^_*]*?\\*\\*[^_*]*?_[^_*]*?(?=\\*\\*)|[^_]+(?=[^_])|(?!_)punct(_+)(?=[\\s]|$)|notPunctSpace(_+)(?!_)(?=punctSpace|$)|(?!_)punctSpace(_+)(?=notPunctSpace)|[\\s](_+)(?!_)(?=punct)|(?!_)punct(_+)(?!_)(?=punct)", "gu").replace(/notPunctSpace/g, id).replace(/punctSpace/g, gl).replace(/punct/g, za).getRegex(), nv = st(/\\(punct)/, "gu").replace(/punct/g, za).getRegex(), av = st(/^<(scheme:[^\s\x00-\x1f<>]*|email)>/).replace("scheme", /[a-zA-Z][a-zA-Z0-9+.-]{1,31}/).replace("email", /[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+(@)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(?![-_])/).getRegex(), sv = st(pl).replace("(?:-->|$)", "-->").getRegex(), ov = st("^comment|^</[a-zA-Z][\\w:-]*\\s*>|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>|^<\\?[\\s\\S]*?\\?>|^<![a-zA-Z]+\\s[\\s\\S]*?>|^<!\\[CDATA\\[[\\s\\S]*?\\]\\]>").replace("comment", sv).replace("attribute", /\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/).getRegex(), fa = /(?:\[(?:\\[\s\S]|[^\[\]\\])*\]|\\[\s\S]|`+[^`]*?`+(?!`)|[^\[\]\\`])*?/, lv = st(/^!?\[(label)\]\(\s*(href)(?:(?:[ \t]*(?:\n[ \t]*)?)(title))?\s*\)/).replace("label", fa).replace("href", /<(?:\\.|[^\n<>\\])+>|[^ \t\n\x00-\x1f]*/).replace("title", /"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/).getRegex(), od = st(/^!?\[(label)\]\[(ref)\]/).replace("label", fa).replace("ref", fl).getRegex(), ld = st(/^!?\[(ref)\](?:\[\])?/).replace("ref", fl).getRegex(), cv = st("reflink|nolink(?!\\()", "g").replace("reflink", od).replace("nolink", ld).getRegex(), Vc = /[hH][tT][tT][pP][sS]?|[fF][tT][pP]/, ml = { _backpedal: Ri, anyPunctuation: nv, autolink: av, blockSkip: Qk, br: rd, code: Gk, del: Ri, emStrongLDelim: Jk, emStrongRDelimAst: ev, emStrongRDelimUnd: iv, escape: Uk, link: lv, nolink: ld, punctuation: Vk, reflink: od, reflinkSearch: cv, tag: ov, text: Xk, url: Ri }, hv = { ...ml, link: st(/^!?\[(label)\]\((.*?)\)/).replace("label", fa).getRegex(), reflink: st(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label", fa).getRegex() }, ao = { ...ml, emStrongRDelimAst: rv, emStrongLDelim: tv, url: st(/^((?:protocol):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/).replace("protocol", Vc).replace("email", /[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/).getRegex(), _backpedal: /(?:[^?!.,:;*_'"~()&]+|\([^)]*\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_'"~)]+(?!$))+/, del: /^(~~?)(?=[^\s~])((?:\\[\s\S]|[^\\])*?(?:\\[\s\S]|[^\s~\\]))\1(?=[^~]|$)/, text: st(/^([`~]+|[^`~])(?:(?= {2,}\n)|(?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)|[\s\S]*?(?:(?=[\\<!\[`*~_]|\b_|protocol:\/\/|www\.|$)|[^ ](?= {2,}\n)|[^a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-](?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)))/).replace("protocol", Vc).getRegex() }, uv = { ...ao, br: st(rd).replace("{2,}", "*").getRegex(), text: st(ao.text).replace("\\b_", "\\b_| {2,}\\n").replace(/\{2,\}/g, "*").getRegex() }, _n = { normal: dl, gfm: jk, pedantic: Yk }, mi = { normal: ml, gfm: ao, breaks: uv, pedantic: hv }, fv = { "&": "&amp;", "<": "&lt;", ">": "&gt;", '"': "&quot;", "'": "&#39;" }, Zc = (e) => fv[e];
function be(e, t) {
  if (t) {
    if (qt.escapeTest.test(e)) return e.replace(qt.escapeReplace, Zc);
  } else if (qt.escapeTestNoEncode.test(e)) return e.replace(qt.escapeReplaceNoEncode, Zc);
  return e;
}
function Kc(e) {
  try {
    e = encodeURI(e).replace(qt.percentDecode, "%");
  } catch {
    return null;
  }
  return e;
}
function Qc(e, t) {
  var a;
  let r = e.replace(qt.findPipe, (o, s, l) => {
    let c = !1, h = s;
    for (; --h >= 0 && l[h] === "\\"; ) c = !c;
    return c ? "|" : " |";
  }), i = r.split(qt.splitPipe), n = 0;
  if (i[0].trim() || i.shift(), i.length > 0 && !((a = i.at(-1)) != null && a.trim()) && i.pop(), t) if (i.length > t) i.splice(t);
  else for (; i.length < t; ) i.push("");
  for (; n < i.length; n++) i[n] = i[n].trim().replace(qt.slashPipe, "|");
  return i;
}
function yi(e, t, r) {
  let i = e.length;
  if (i === 0) return "";
  let n = 0;
  for (; n < i && e.charAt(i - n - 1) === t; )
    n++;
  return e.slice(0, i - n);
}
function pv(e, t) {
  if (e.indexOf(t[1]) === -1) return -1;
  let r = 0;
  for (let i = 0; i < e.length; i++) if (e[i] === "\\") i++;
  else if (e[i] === t[0]) r++;
  else if (e[i] === t[1] && (r--, r < 0)) return i;
  return r > 0 ? -2 : -1;
}
function Jc(e, t, r, i, n) {
  let a = t.href, o = t.title || null, s = e[1].replace(n.other.outputLinkReplace, "$1");
  i.state.inLink = !0;
  let l = { type: e[0].charAt(0) === "!" ? "image" : "link", raw: r, href: a, title: o, text: s, tokens: i.inlineTokens(s) };
  return i.state.inLink = !1, l;
}
function dv(e, t, r) {
  let i = e.match(r.other.indentCodeCompensation);
  if (i === null) return t;
  let n = i[1];
  return t.split(`
`).map((a) => {
    let o = a.match(r.other.beginningSpace);
    if (o === null) return a;
    let [s] = o;
    return s.length >= n.length ? a.slice(n.length) : a;
  }).join(`
`);
}
var pa = class {
  constructor(t) {
    ft(this, "options");
    ft(this, "rules");
    ft(this, "lexer");
    this.options = t || kr;
  }
  space(t) {
    let r = this.rules.block.newline.exec(t);
    if (r && r[0].length > 0) return { type: "space", raw: r[0] };
  }
  code(t) {
    let r = this.rules.block.code.exec(t);
    if (r) {
      let i = r[0].replace(this.rules.other.codeRemoveIndent, "");
      return { type: "code", raw: r[0], codeBlockStyle: "indented", text: this.options.pedantic ? i : yi(i, `
`) };
    }
  }
  fences(t) {
    let r = this.rules.block.fences.exec(t);
    if (r) {
      let i = r[0], n = dv(i, r[3] || "", this.rules);
      return { type: "code", raw: i, lang: r[2] ? r[2].trim().replace(this.rules.inline.anyPunctuation, "$1") : r[2], text: n };
    }
  }
  heading(t) {
    let r = this.rules.block.heading.exec(t);
    if (r) {
      let i = r[2].trim();
      if (this.rules.other.endingHash.test(i)) {
        let n = yi(i, "#");
        (this.options.pedantic || !n || this.rules.other.endingSpaceChar.test(n)) && (i = n.trim());
      }
      return { type: "heading", raw: r[0], depth: r[1].length, text: i, tokens: this.lexer.inline(i) };
    }
  }
  hr(t) {
    let r = this.rules.block.hr.exec(t);
    if (r) return { type: "hr", raw: yi(r[0], `
`) };
  }
  blockquote(t) {
    let r = this.rules.block.blockquote.exec(t);
    if (r) {
      let i = yi(r[0], `
`).split(`
`), n = "", a = "", o = [];
      for (; i.length > 0; ) {
        let s = !1, l = [], c;
        for (c = 0; c < i.length; c++) if (this.rules.other.blockquoteStart.test(i[c])) l.push(i[c]), s = !0;
        else if (!s) l.push(i[c]);
        else break;
        i = i.slice(c);
        let h = l.join(`
`), u = h.replace(this.rules.other.blockquoteSetextReplace, `
    $1`).replace(this.rules.other.blockquoteSetextReplace2, "");
        n = n ? `${n}
${h}` : h, a = a ? `${a}
${u}` : u;
        let p = this.lexer.state.top;
        if (this.lexer.state.top = !0, this.lexer.blockTokens(u, o, !0), this.lexer.state.top = p, i.length === 0) break;
        let f = o.at(-1);
        if ((f == null ? void 0 : f.type) === "code") break;
        if ((f == null ? void 0 : f.type) === "blockquote") {
          let g = f, m = g.raw + `
` + i.join(`
`), y = this.blockquote(m);
          o[o.length - 1] = y, n = n.substring(0, n.length - g.raw.length) + y.raw, a = a.substring(0, a.length - g.text.length) + y.text;
          break;
        } else if ((f == null ? void 0 : f.type) === "list") {
          let g = f, m = g.raw + `
` + i.join(`
`), y = this.list(m);
          o[o.length - 1] = y, n = n.substring(0, n.length - f.raw.length) + y.raw, a = a.substring(0, a.length - g.raw.length) + y.raw, i = m.substring(o.at(-1).raw.length).split(`
`);
          continue;
        }
      }
      return { type: "blockquote", raw: n, tokens: o, text: a };
    }
  }
  list(t) {
    let r = this.rules.block.list.exec(t);
    if (r) {
      let i = r[1].trim(), n = i.length > 1, a = { type: "list", raw: "", ordered: n, start: n ? +i.slice(0, -1) : "", loose: !1, items: [] };
      i = n ? `\\d{1,9}\\${i.slice(-1)}` : `\\${i}`, this.options.pedantic && (i = n ? i : "[*+-]");
      let o = this.rules.other.listItemRegex(i), s = !1;
      for (; t; ) {
        let c = !1, h = "", u = "";
        if (!(r = o.exec(t)) || this.rules.block.hr.test(t)) break;
        h = r[0], t = t.substring(h.length);
        let p = r[2].split(`
`, 1)[0].replace(this.rules.other.listReplaceTabs, (b) => " ".repeat(3 * b.length)), f = t.split(`
`, 1)[0], g = !p.trim(), m = 0;
        if (this.options.pedantic ? (m = 2, u = p.trimStart()) : g ? m = r[1].length + 1 : (m = r[2].search(this.rules.other.nonSpaceChar), m = m > 4 ? 1 : m, u = p.slice(m), m += r[1].length), g && this.rules.other.blankLine.test(f) && (h += f + `
`, t = t.substring(f.length + 1), c = !0), !c) {
          let b = this.rules.other.nextBulletRegex(m), _ = this.rules.other.hrRegex(m), S = this.rules.other.fencesBeginRegex(m), v = this.rules.other.headingBeginRegex(m), C = this.rules.other.htmlBeginRegex(m);
          for (; t; ) {
            let T = t.split(`
`, 1)[0], B;
            if (f = T, this.options.pedantic ? (f = f.replace(this.rules.other.listReplaceNesting, "  "), B = f) : B = f.replace(this.rules.other.tabCharGlobal, "    "), S.test(f) || v.test(f) || C.test(f) || b.test(f) || _.test(f)) break;
            if (B.search(this.rules.other.nonSpaceChar) >= m || !f.trim()) u += `
` + B.slice(m);
            else {
              if (g || p.replace(this.rules.other.tabCharGlobal, "    ").search(this.rules.other.nonSpaceChar) >= 4 || S.test(p) || v.test(p) || _.test(p)) break;
              u += `
` + f;
            }
            !g && !f.trim() && (g = !0), h += T + `
`, t = t.substring(T.length + 1), p = B.slice(m);
          }
        }
        a.loose || (s ? a.loose = !0 : this.rules.other.doubleBlankLine.test(h) && (s = !0));
        let y = null, x;
        this.options.gfm && (y = this.rules.other.listIsTask.exec(u), y && (x = y[0] !== "[ ] ", u = u.replace(this.rules.other.listReplaceTask, ""))), a.items.push({ type: "list_item", raw: h, task: !!y, checked: x, loose: !1, text: u, tokens: [] }), a.raw += h;
      }
      let l = a.items.at(-1);
      if (l) l.raw = l.raw.trimEnd(), l.text = l.text.trimEnd();
      else return;
      a.raw = a.raw.trimEnd();
      for (let c = 0; c < a.items.length; c++) if (this.lexer.state.top = !1, a.items[c].tokens = this.lexer.blockTokens(a.items[c].text, []), !a.loose) {
        let h = a.items[c].tokens.filter((p) => p.type === "space"), u = h.length > 0 && h.some((p) => this.rules.other.anyLine.test(p.raw));
        a.loose = u;
      }
      if (a.loose) for (let c = 0; c < a.items.length; c++) a.items[c].loose = !0;
      return a;
    }
  }
  html(t) {
    let r = this.rules.block.html.exec(t);
    if (r) return { type: "html", block: !0, raw: r[0], pre: r[1] === "pre" || r[1] === "script" || r[1] === "style", text: r[0] };
  }
  def(t) {
    let r = this.rules.block.def.exec(t);
    if (r) {
      let i = r[1].toLowerCase().replace(this.rules.other.multipleSpaceGlobal, " "), n = r[2] ? r[2].replace(this.rules.other.hrefBrackets, "$1").replace(this.rules.inline.anyPunctuation, "$1") : "", a = r[3] ? r[3].substring(1, r[3].length - 1).replace(this.rules.inline.anyPunctuation, "$1") : r[3];
      return { type: "def", tag: i, raw: r[0], href: n, title: a };
    }
  }
  table(t) {
    var s;
    let r = this.rules.block.table.exec(t);
    if (!r || !this.rules.other.tableDelimiter.test(r[2])) return;
    let i = Qc(r[1]), n = r[2].replace(this.rules.other.tableAlignChars, "").split("|"), a = (s = r[3]) != null && s.trim() ? r[3].replace(this.rules.other.tableRowBlankLine, "").split(`
`) : [], o = { type: "table", raw: r[0], header: [], align: [], rows: [] };
    if (i.length === n.length) {
      for (let l of n) this.rules.other.tableAlignRight.test(l) ? o.align.push("right") : this.rules.other.tableAlignCenter.test(l) ? o.align.push("center") : this.rules.other.tableAlignLeft.test(l) ? o.align.push("left") : o.align.push(null);
      for (let l = 0; l < i.length; l++) o.header.push({ text: i[l], tokens: this.lexer.inline(i[l]), header: !0, align: o.align[l] });
      for (let l of a) o.rows.push(Qc(l, o.header.length).map((c, h) => ({ text: c, tokens: this.lexer.inline(c), header: !1, align: o.align[h] })));
      return o;
    }
  }
  lheading(t) {
    let r = this.rules.block.lheading.exec(t);
    if (r) return { type: "heading", raw: r[0], depth: r[2].charAt(0) === "=" ? 1 : 2, text: r[1], tokens: this.lexer.inline(r[1]) };
  }
  paragraph(t) {
    let r = this.rules.block.paragraph.exec(t);
    if (r) {
      let i = r[1].charAt(r[1].length - 1) === `
` ? r[1].slice(0, -1) : r[1];
      return { type: "paragraph", raw: r[0], text: i, tokens: this.lexer.inline(i) };
    }
  }
  text(t) {
    let r = this.rules.block.text.exec(t);
    if (r) return { type: "text", raw: r[0], text: r[0], tokens: this.lexer.inline(r[0]) };
  }
  escape(t) {
    let r = this.rules.inline.escape.exec(t);
    if (r) return { type: "escape", raw: r[0], text: r[1] };
  }
  tag(t) {
    let r = this.rules.inline.tag.exec(t);
    if (r) return !this.lexer.state.inLink && this.rules.other.startATag.test(r[0]) ? this.lexer.state.inLink = !0 : this.lexer.state.inLink && this.rules.other.endATag.test(r[0]) && (this.lexer.state.inLink = !1), !this.lexer.state.inRawBlock && this.rules.other.startPreScriptTag.test(r[0]) ? this.lexer.state.inRawBlock = !0 : this.lexer.state.inRawBlock && this.rules.other.endPreScriptTag.test(r[0]) && (this.lexer.state.inRawBlock = !1), { type: "html", raw: r[0], inLink: this.lexer.state.inLink, inRawBlock: this.lexer.state.inRawBlock, block: !1, text: r[0] };
  }
  link(t) {
    let r = this.rules.inline.link.exec(t);
    if (r) {
      let i = r[2].trim();
      if (!this.options.pedantic && this.rules.other.startAngleBracket.test(i)) {
        if (!this.rules.other.endAngleBracket.test(i)) return;
        let o = yi(i.slice(0, -1), "\\");
        if ((i.length - o.length) % 2 === 0) return;
      } else {
        let o = pv(r[2], "()");
        if (o === -2) return;
        if (o > -1) {
          let s = (r[0].indexOf("!") === 0 ? 5 : 4) + r[1].length + o;
          r[2] = r[2].substring(0, o), r[0] = r[0].substring(0, s).trim(), r[3] = "";
        }
      }
      let n = r[2], a = "";
      if (this.options.pedantic) {
        let o = this.rules.other.pedanticHrefTitle.exec(n);
        o && (n = o[1], a = o[3]);
      } else a = r[3] ? r[3].slice(1, -1) : "";
      return n = n.trim(), this.rules.other.startAngleBracket.test(n) && (this.options.pedantic && !this.rules.other.endAngleBracket.test(i) ? n = n.slice(1) : n = n.slice(1, -1)), Jc(r, { href: n && n.replace(this.rules.inline.anyPunctuation, "$1"), title: a && a.replace(this.rules.inline.anyPunctuation, "$1") }, r[0], this.lexer, this.rules);
    }
  }
  reflink(t, r) {
    let i;
    if ((i = this.rules.inline.reflink.exec(t)) || (i = this.rules.inline.nolink.exec(t))) {
      let n = (i[2] || i[1]).replace(this.rules.other.multipleSpaceGlobal, " "), a = r[n.toLowerCase()];
      if (!a) {
        let o = i[0].charAt(0);
        return { type: "text", raw: o, text: o };
      }
      return Jc(i, a, i[0], this.lexer, this.rules);
    }
  }
  emStrong(t, r, i = "") {
    let n = this.rules.inline.emStrongLDelim.exec(t);
    if (!(!n || n[3] && i.match(this.rules.other.unicodeAlphaNumeric)) && (!(n[1] || n[2]) || !i || this.rules.inline.punctuation.exec(i))) {
      let a = [...n[0]].length - 1, o, s, l = a, c = 0, h = n[0][0] === "*" ? this.rules.inline.emStrongRDelimAst : this.rules.inline.emStrongRDelimUnd;
      for (h.lastIndex = 0, r = r.slice(-1 * t.length + a); (n = h.exec(r)) != null; ) {
        if (o = n[1] || n[2] || n[3] || n[4] || n[5] || n[6], !o) continue;
        if (s = [...o].length, n[3] || n[4]) {
          l += s;
          continue;
        } else if ((n[5] || n[6]) && a % 3 && !((a + s) % 3)) {
          c += s;
          continue;
        }
        if (l -= s, l > 0) continue;
        s = Math.min(s, s + l + c);
        let u = [...n[0]][0].length, p = t.slice(0, a + n.index + u + s);
        if (Math.min(a, s) % 2) {
          let g = p.slice(1, -1);
          return { type: "em", raw: p, text: g, tokens: this.lexer.inlineTokens(g) };
        }
        let f = p.slice(2, -2);
        return { type: "strong", raw: p, text: f, tokens: this.lexer.inlineTokens(f) };
      }
    }
  }
  codespan(t) {
    let r = this.rules.inline.code.exec(t);
    if (r) {
      let i = r[2].replace(this.rules.other.newLineCharGlobal, " "), n = this.rules.other.nonSpaceChar.test(i), a = this.rules.other.startingSpaceChar.test(i) && this.rules.other.endingSpaceChar.test(i);
      return n && a && (i = i.substring(1, i.length - 1)), { type: "codespan", raw: r[0], text: i };
    }
  }
  br(t) {
    let r = this.rules.inline.br.exec(t);
    if (r) return { type: "br", raw: r[0] };
  }
  del(t) {
    let r = this.rules.inline.del.exec(t);
    if (r) return { type: "del", raw: r[0], text: r[2], tokens: this.lexer.inlineTokens(r[2]) };
  }
  autolink(t) {
    let r = this.rules.inline.autolink.exec(t);
    if (r) {
      let i, n;
      return r[2] === "@" ? (i = r[1], n = "mailto:" + i) : (i = r[1], n = i), { type: "link", raw: r[0], text: i, href: n, tokens: [{ type: "text", raw: i, text: i }] };
    }
  }
  url(t) {
    var i;
    let r;
    if (r = this.rules.inline.url.exec(t)) {
      let n, a;
      if (r[2] === "@") n = r[0], a = "mailto:" + n;
      else {
        let o;
        do
          o = r[0], r[0] = ((i = this.rules.inline._backpedal.exec(r[0])) == null ? void 0 : i[0]) ?? "";
        while (o !== r[0]);
        n = r[0], r[1] === "www." ? a = "http://" + r[0] : a = r[0];
      }
      return { type: "link", raw: r[0], text: n, href: a, tokens: [{ type: "text", raw: n, text: n }] };
    }
  }
  inlineText(t) {
    let r = this.rules.inline.text.exec(t);
    if (r) {
      let i = this.lexer.state.inRawBlock;
      return { type: "text", raw: r[0], text: r[0], escaped: i };
    }
  }
}, oe = class so {
  constructor(t) {
    ft(this, "tokens");
    ft(this, "options");
    ft(this, "state");
    ft(this, "tokenizer");
    ft(this, "inlineQueue");
    this.tokens = [], this.tokens.links = /* @__PURE__ */ Object.create(null), this.options = t || kr, this.options.tokenizer = this.options.tokenizer || new pa(), this.tokenizer = this.options.tokenizer, this.tokenizer.options = this.options, this.tokenizer.lexer = this, this.inlineQueue = [], this.state = { inLink: !1, inRawBlock: !1, top: !0 };
    let r = { other: qt, block: _n.normal, inline: mi.normal };
    this.options.pedantic ? (r.block = _n.pedantic, r.inline = mi.pedantic) : this.options.gfm && (r.block = _n.gfm, this.options.breaks ? r.inline = mi.breaks : r.inline = mi.gfm), this.tokenizer.rules = r;
  }
  static get rules() {
    return { block: _n, inline: mi };
  }
  static lex(t, r) {
    return new so(r).lex(t);
  }
  static lexInline(t, r) {
    return new so(r).inlineTokens(t);
  }
  lex(t) {
    t = t.replace(qt.carriageReturn, `
`), this.blockTokens(t, this.tokens);
    for (let r = 0; r < this.inlineQueue.length; r++) {
      let i = this.inlineQueue[r];
      this.inlineTokens(i.src, i.tokens);
    }
    return this.inlineQueue = [], this.tokens;
  }
  blockTokens(t, r = [], i = !1) {
    var n, a, o;
    for (this.options.pedantic && (t = t.replace(qt.tabCharGlobal, "    ").replace(qt.spaceLine, "")); t; ) {
      let s;
      if ((a = (n = this.options.extensions) == null ? void 0 : n.block) != null && a.some((c) => (s = c.call({ lexer: this }, t, r)) ? (t = t.substring(s.raw.length), r.push(s), !0) : !1)) continue;
      if (s = this.tokenizer.space(t)) {
        t = t.substring(s.raw.length);
        let c = r.at(-1);
        s.raw.length === 1 && c !== void 0 ? c.raw += `
` : r.push(s);
        continue;
      }
      if (s = this.tokenizer.code(t)) {
        t = t.substring(s.raw.length);
        let c = r.at(-1);
        (c == null ? void 0 : c.type) === "paragraph" || (c == null ? void 0 : c.type) === "text" ? (c.raw += (c.raw.endsWith(`
`) ? "" : `
`) + s.raw, c.text += `
` + s.text, this.inlineQueue.at(-1).src = c.text) : r.push(s);
        continue;
      }
      if (s = this.tokenizer.fences(t)) {
        t = t.substring(s.raw.length), r.push(s);
        continue;
      }
      if (s = this.tokenizer.heading(t)) {
        t = t.substring(s.raw.length), r.push(s);
        continue;
      }
      if (s = this.tokenizer.hr(t)) {
        t = t.substring(s.raw.length), r.push(s);
        continue;
      }
      if (s = this.tokenizer.blockquote(t)) {
        t = t.substring(s.raw.length), r.push(s);
        continue;
      }
      if (s = this.tokenizer.list(t)) {
        t = t.substring(s.raw.length), r.push(s);
        continue;
      }
      if (s = this.tokenizer.html(t)) {
        t = t.substring(s.raw.length), r.push(s);
        continue;
      }
      if (s = this.tokenizer.def(t)) {
        t = t.substring(s.raw.length);
        let c = r.at(-1);
        (c == null ? void 0 : c.type) === "paragraph" || (c == null ? void 0 : c.type) === "text" ? (c.raw += (c.raw.endsWith(`
`) ? "" : `
`) + s.raw, c.text += `
` + s.raw, this.inlineQueue.at(-1).src = c.text) : this.tokens.links[s.tag] || (this.tokens.links[s.tag] = { href: s.href, title: s.title }, r.push(s));
        continue;
      }
      if (s = this.tokenizer.table(t)) {
        t = t.substring(s.raw.length), r.push(s);
        continue;
      }
      if (s = this.tokenizer.lheading(t)) {
        t = t.substring(s.raw.length), r.push(s);
        continue;
      }
      let l = t;
      if ((o = this.options.extensions) != null && o.startBlock) {
        let c = 1 / 0, h = t.slice(1), u;
        this.options.extensions.startBlock.forEach((p) => {
          u = p.call({ lexer: this }, h), typeof u == "number" && u >= 0 && (c = Math.min(c, u));
        }), c < 1 / 0 && c >= 0 && (l = t.substring(0, c + 1));
      }
      if (this.state.top && (s = this.tokenizer.paragraph(l))) {
        let c = r.at(-1);
        i && (c == null ? void 0 : c.type) === "paragraph" ? (c.raw += (c.raw.endsWith(`
`) ? "" : `
`) + s.raw, c.text += `
` + s.text, this.inlineQueue.pop(), this.inlineQueue.at(-1).src = c.text) : r.push(s), i = l.length !== t.length, t = t.substring(s.raw.length);
        continue;
      }
      if (s = this.tokenizer.text(t)) {
        t = t.substring(s.raw.length);
        let c = r.at(-1);
        (c == null ? void 0 : c.type) === "text" ? (c.raw += (c.raw.endsWith(`
`) ? "" : `
`) + s.raw, c.text += `
` + s.text, this.inlineQueue.pop(), this.inlineQueue.at(-1).src = c.text) : r.push(s);
        continue;
      }
      if (t) {
        let c = "Infinite loop on byte: " + t.charCodeAt(0);
        if (this.options.silent) {
          console.error(c);
          break;
        } else throw new Error(c);
      }
    }
    return this.state.top = !0, r;
  }
  inline(t, r = []) {
    return this.inlineQueue.push({ src: t, tokens: r }), r;
  }
  inlineTokens(t, r = []) {
    var l, c, h, u, p;
    let i = t, n = null;
    if (this.tokens.links) {
      let f = Object.keys(this.tokens.links);
      if (f.length > 0) for (; (n = this.tokenizer.rules.inline.reflinkSearch.exec(i)) != null; ) f.includes(n[0].slice(n[0].lastIndexOf("[") + 1, -1)) && (i = i.slice(0, n.index) + "[" + "a".repeat(n[0].length - 2) + "]" + i.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex));
    }
    for (; (n = this.tokenizer.rules.inline.anyPunctuation.exec(i)) != null; ) i = i.slice(0, n.index) + "++" + i.slice(this.tokenizer.rules.inline.anyPunctuation.lastIndex);
    let a;
    for (; (n = this.tokenizer.rules.inline.blockSkip.exec(i)) != null; ) a = n[2] ? n[2].length : 0, i = i.slice(0, n.index + a) + "[" + "a".repeat(n[0].length - a - 2) + "]" + i.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);
    i = ((c = (l = this.options.hooks) == null ? void 0 : l.emStrongMask) == null ? void 0 : c.call({ lexer: this }, i)) ?? i;
    let o = !1, s = "";
    for (; t; ) {
      o || (s = ""), o = !1;
      let f;
      if ((u = (h = this.options.extensions) == null ? void 0 : h.inline) != null && u.some((m) => (f = m.call({ lexer: this }, t, r)) ? (t = t.substring(f.raw.length), r.push(f), !0) : !1)) continue;
      if (f = this.tokenizer.escape(t)) {
        t = t.substring(f.raw.length), r.push(f);
        continue;
      }
      if (f = this.tokenizer.tag(t)) {
        t = t.substring(f.raw.length), r.push(f);
        continue;
      }
      if (f = this.tokenizer.link(t)) {
        t = t.substring(f.raw.length), r.push(f);
        continue;
      }
      if (f = this.tokenizer.reflink(t, this.tokens.links)) {
        t = t.substring(f.raw.length);
        let m = r.at(-1);
        f.type === "text" && (m == null ? void 0 : m.type) === "text" ? (m.raw += f.raw, m.text += f.text) : r.push(f);
        continue;
      }
      if (f = this.tokenizer.emStrong(t, i, s)) {
        t = t.substring(f.raw.length), r.push(f);
        continue;
      }
      if (f = this.tokenizer.codespan(t)) {
        t = t.substring(f.raw.length), r.push(f);
        continue;
      }
      if (f = this.tokenizer.br(t)) {
        t = t.substring(f.raw.length), r.push(f);
        continue;
      }
      if (f = this.tokenizer.del(t)) {
        t = t.substring(f.raw.length), r.push(f);
        continue;
      }
      if (f = this.tokenizer.autolink(t)) {
        t = t.substring(f.raw.length), r.push(f);
        continue;
      }
      if (!this.state.inLink && (f = this.tokenizer.url(t))) {
        t = t.substring(f.raw.length), r.push(f);
        continue;
      }
      let g = t;
      if ((p = this.options.extensions) != null && p.startInline) {
        let m = 1 / 0, y = t.slice(1), x;
        this.options.extensions.startInline.forEach((b) => {
          x = b.call({ lexer: this }, y), typeof x == "number" && x >= 0 && (m = Math.min(m, x));
        }), m < 1 / 0 && m >= 0 && (g = t.substring(0, m + 1));
      }
      if (f = this.tokenizer.inlineText(g)) {
        t = t.substring(f.raw.length), f.raw.slice(-1) !== "_" && (s = f.raw.slice(-1)), o = !0;
        let m = r.at(-1);
        (m == null ? void 0 : m.type) === "text" ? (m.raw += f.raw, m.text += f.text) : r.push(f);
        continue;
      }
      if (t) {
        let m = "Infinite loop on byte: " + t.charCodeAt(0);
        if (this.options.silent) {
          console.error(m);
          break;
        } else throw new Error(m);
      }
    }
    return r;
  }
}, da = class {
  constructor(t) {
    ft(this, "options");
    ft(this, "parser");
    this.options = t || kr;
  }
  space(t) {
    return "";
  }
  code({ text: t, lang: r, escaped: i }) {
    var o;
    let n = (o = (r || "").match(qt.notSpaceStart)) == null ? void 0 : o[0], a = t.replace(qt.endingNewline, "") + `
`;
    return n ? '<pre><code class="language-' + be(n) + '">' + (i ? a : be(a, !0)) + `</code></pre>
` : "<pre><code>" + (i ? a : be(a, !0)) + `</code></pre>
`;
  }
  blockquote({ tokens: t }) {
    return `<blockquote>
${this.parser.parse(t)}</blockquote>
`;
  }
  html({ text: t }) {
    return t;
  }
  def(t) {
    return "";
  }
  heading({ tokens: t, depth: r }) {
    return `<h${r}>${this.parser.parseInline(t)}</h${r}>
`;
  }
  hr(t) {
    return `<hr>
`;
  }
  list(t) {
    let r = t.ordered, i = t.start, n = "";
    for (let s = 0; s < t.items.length; s++) {
      let l = t.items[s];
      n += this.listitem(l);
    }
    let a = r ? "ol" : "ul", o = r && i !== 1 ? ' start="' + i + '"' : "";
    return "<" + a + o + `>
` + n + "</" + a + `>
`;
  }
  listitem(t) {
    var i;
    let r = "";
    if (t.task) {
      let n = this.checkbox({ checked: !!t.checked });
      t.loose ? ((i = t.tokens[0]) == null ? void 0 : i.type) === "paragraph" ? (t.tokens[0].text = n + " " + t.tokens[0].text, t.tokens[0].tokens && t.tokens[0].tokens.length > 0 && t.tokens[0].tokens[0].type === "text" && (t.tokens[0].tokens[0].text = n + " " + be(t.tokens[0].tokens[0].text), t.tokens[0].tokens[0].escaped = !0)) : t.tokens.unshift({ type: "text", raw: n + " ", text: n + " ", escaped: !0 }) : r += n + " ";
    }
    return r += this.parser.parse(t.tokens, !!t.loose), `<li>${r}</li>
`;
  }
  checkbox({ checked: t }) {
    return "<input " + (t ? 'checked="" ' : "") + 'disabled="" type="checkbox">';
  }
  paragraph({ tokens: t }) {
    return `<p>${this.parser.parseInline(t)}</p>
`;
  }
  table(t) {
    let r = "", i = "";
    for (let a = 0; a < t.header.length; a++) i += this.tablecell(t.header[a]);
    r += this.tablerow({ text: i });
    let n = "";
    for (let a = 0; a < t.rows.length; a++) {
      let o = t.rows[a];
      i = "";
      for (let s = 0; s < o.length; s++) i += this.tablecell(o[s]);
      n += this.tablerow({ text: i });
    }
    return n && (n = `<tbody>${n}</tbody>`), `<table>
<thead>
` + r + `</thead>
` + n + `</table>
`;
  }
  tablerow({ text: t }) {
    return `<tr>
${t}</tr>
`;
  }
  tablecell(t) {
    let r = this.parser.parseInline(t.tokens), i = t.header ? "th" : "td";
    return (t.align ? `<${i} align="${t.align}">` : `<${i}>`) + r + `</${i}>
`;
  }
  strong({ tokens: t }) {
    return `<strong>${this.parser.parseInline(t)}</strong>`;
  }
  em({ tokens: t }) {
    return `<em>${this.parser.parseInline(t)}</em>`;
  }
  codespan({ text: t }) {
    return `<code>${be(t, !0)}</code>`;
  }
  br(t) {
    return "<br>";
  }
  del({ tokens: t }) {
    return `<del>${this.parser.parseInline(t)}</del>`;
  }
  link({ href: t, title: r, tokens: i }) {
    let n = this.parser.parseInline(i), a = Kc(t);
    if (a === null) return n;
    t = a;
    let o = '<a href="' + t + '"';
    return r && (o += ' title="' + be(r) + '"'), o += ">" + n + "</a>", o;
  }
  image({ href: t, title: r, text: i, tokens: n }) {
    n && (i = this.parser.parseInline(n, this.parser.textRenderer));
    let a = Kc(t);
    if (a === null) return be(i);
    t = a;
    let o = `<img src="${t}" alt="${i}"`;
    return r && (o += ` title="${be(r)}"`), o += ">", o;
  }
  text(t) {
    return "tokens" in t && t.tokens ? this.parser.parseInline(t.tokens) : "escaped" in t && t.escaped ? t.text : be(t.text);
  }
}, yl = class {
  strong({ text: t }) {
    return t;
  }
  em({ text: t }) {
    return t;
  }
  codespan({ text: t }) {
    return t;
  }
  del({ text: t }) {
    return t;
  }
  html({ text: t }) {
    return t;
  }
  text({ text: t }) {
    return t;
  }
  link({ text: t }) {
    return "" + t;
  }
  image({ text: t }) {
    return "" + t;
  }
  br() {
    return "";
  }
}, le = class oo {
  constructor(t) {
    ft(this, "options");
    ft(this, "renderer");
    ft(this, "textRenderer");
    this.options = t || kr, this.options.renderer = this.options.renderer || new da(), this.renderer = this.options.renderer, this.renderer.options = this.options, this.renderer.parser = this, this.textRenderer = new yl();
  }
  static parse(t, r) {
    return new oo(r).parse(t);
  }
  static parseInline(t, r) {
    return new oo(r).parseInline(t);
  }
  parse(t, r = !0) {
    var n, a;
    let i = "";
    for (let o = 0; o < t.length; o++) {
      let s = t[o];
      if ((a = (n = this.options.extensions) == null ? void 0 : n.renderers) != null && a[s.type]) {
        let c = s, h = this.options.extensions.renderers[c.type].call({ parser: this }, c);
        if (h !== !1 || !["space", "hr", "heading", "code", "table", "blockquote", "list", "html", "def", "paragraph", "text"].includes(c.type)) {
          i += h || "";
          continue;
        }
      }
      let l = s;
      switch (l.type) {
        case "space": {
          i += this.renderer.space(l);
          continue;
        }
        case "hr": {
          i += this.renderer.hr(l);
          continue;
        }
        case "heading": {
          i += this.renderer.heading(l);
          continue;
        }
        case "code": {
          i += this.renderer.code(l);
          continue;
        }
        case "table": {
          i += this.renderer.table(l);
          continue;
        }
        case "blockquote": {
          i += this.renderer.blockquote(l);
          continue;
        }
        case "list": {
          i += this.renderer.list(l);
          continue;
        }
        case "html": {
          i += this.renderer.html(l);
          continue;
        }
        case "def": {
          i += this.renderer.def(l);
          continue;
        }
        case "paragraph": {
          i += this.renderer.paragraph(l);
          continue;
        }
        case "text": {
          let c = l, h = this.renderer.text(c);
          for (; o + 1 < t.length && t[o + 1].type === "text"; ) c = t[++o], h += `
` + this.renderer.text(c);
          r ? i += this.renderer.paragraph({ type: "paragraph", raw: h, text: h, tokens: [{ type: "text", raw: h, text: h, escaped: !0 }] }) : i += h;
          continue;
        }
        default: {
          let c = 'Token with "' + l.type + '" type was not found.';
          if (this.options.silent) return console.error(c), "";
          throw new Error(c);
        }
      }
    }
    return i;
  }
  parseInline(t, r = this.renderer) {
    var n, a;
    let i = "";
    for (let o = 0; o < t.length; o++) {
      let s = t[o];
      if ((a = (n = this.options.extensions) == null ? void 0 : n.renderers) != null && a[s.type]) {
        let c = this.options.extensions.renderers[s.type].call({ parser: this }, s);
        if (c !== !1 || !["escape", "html", "link", "image", "strong", "em", "codespan", "br", "del", "text"].includes(s.type)) {
          i += c || "";
          continue;
        }
      }
      let l = s;
      switch (l.type) {
        case "escape": {
          i += r.text(l);
          break;
        }
        case "html": {
          i += r.html(l);
          break;
        }
        case "link": {
          i += r.link(l);
          break;
        }
        case "image": {
          i += r.image(l);
          break;
        }
        case "strong": {
          i += r.strong(l);
          break;
        }
        case "em": {
          i += r.em(l);
          break;
        }
        case "codespan": {
          i += r.codespan(l);
          break;
        }
        case "br": {
          i += r.br(l);
          break;
        }
        case "del": {
          i += r.del(l);
          break;
        }
        case "text": {
          i += r.text(l);
          break;
        }
        default: {
          let c = 'Token with "' + l.type + '" type was not found.';
          if (this.options.silent) return console.error(c), "";
          throw new Error(c);
        }
      }
    }
    return i;
  }
}, Tn, Ti = (Tn = class {
  constructor(t) {
    ft(this, "options");
    ft(this, "block");
    this.options = t || kr;
  }
  preprocess(t) {
    return t;
  }
  postprocess(t) {
    return t;
  }
  processAllTokens(t) {
    return t;
  }
  emStrongMask(t) {
    return t;
  }
  provideLexer() {
    return this.block ? oe.lex : oe.lexInline;
  }
  provideParser() {
    return this.block ? le.parse : le.parseInline;
  }
}, ft(Tn, "passThroughHooks", /* @__PURE__ */ new Set(["preprocess", "postprocess", "processAllTokens", "emStrongMask"])), ft(Tn, "passThroughHooksRespectAsync", /* @__PURE__ */ new Set(["preprocess", "postprocess", "processAllTokens"])), Tn), gv = class {
  constructor(...t) {
    ft(this, "defaults", cl());
    ft(this, "options", this.setOptions);
    ft(this, "parse", this.parseMarkdown(!0));
    ft(this, "parseInline", this.parseMarkdown(!1));
    ft(this, "Parser", le);
    ft(this, "Renderer", da);
    ft(this, "TextRenderer", yl);
    ft(this, "Lexer", oe);
    ft(this, "Tokenizer", pa);
    ft(this, "Hooks", Ti);
    this.use(...t);
  }
  walkTokens(t, r) {
    var n, a;
    let i = [];
    for (let o of t) switch (i = i.concat(r.call(this, o)), o.type) {
      case "table": {
        let s = o;
        for (let l of s.header) i = i.concat(this.walkTokens(l.tokens, r));
        for (let l of s.rows) for (let c of l) i = i.concat(this.walkTokens(c.tokens, r));
        break;
      }
      case "list": {
        let s = o;
        i = i.concat(this.walkTokens(s.items, r));
        break;
      }
      default: {
        let s = o;
        (a = (n = this.defaults.extensions) == null ? void 0 : n.childTokens) != null && a[s.type] ? this.defaults.extensions.childTokens[s.type].forEach((l) => {
          let c = s[l].flat(1 / 0);
          i = i.concat(this.walkTokens(c, r));
        }) : s.tokens && (i = i.concat(this.walkTokens(s.tokens, r)));
      }
    }
    return i;
  }
  use(...t) {
    let r = this.defaults.extensions || { renderers: {}, childTokens: {} };
    return t.forEach((i) => {
      let n = { ...i };
      if (n.async = this.defaults.async || n.async || !1, i.extensions && (i.extensions.forEach((a) => {
        if (!a.name) throw new Error("extension name required");
        if ("renderer" in a) {
          let o = r.renderers[a.name];
          o ? r.renderers[a.name] = function(...s) {
            let l = a.renderer.apply(this, s);
            return l === !1 && (l = o.apply(this, s)), l;
          } : r.renderers[a.name] = a.renderer;
        }
        if ("tokenizer" in a) {
          if (!a.level || a.level !== "block" && a.level !== "inline") throw new Error("extension level must be 'block' or 'inline'");
          let o = r[a.level];
          o ? o.unshift(a.tokenizer) : r[a.level] = [a.tokenizer], a.start && (a.level === "block" ? r.startBlock ? r.startBlock.push(a.start) : r.startBlock = [a.start] : a.level === "inline" && (r.startInline ? r.startInline.push(a.start) : r.startInline = [a.start]));
        }
        "childTokens" in a && a.childTokens && (r.childTokens[a.name] = a.childTokens);
      }), n.extensions = r), i.renderer) {
        let a = this.defaults.renderer || new da(this.defaults);
        for (let o in i.renderer) {
          if (!(o in a)) throw new Error(`renderer '${o}' does not exist`);
          if (["options", "parser"].includes(o)) continue;
          let s = o, l = i.renderer[s], c = a[s];
          a[s] = (...h) => {
            let u = l.apply(a, h);
            return u === !1 && (u = c.apply(a, h)), u || "";
          };
        }
        n.renderer = a;
      }
      if (i.tokenizer) {
        let a = this.defaults.tokenizer || new pa(this.defaults);
        for (let o in i.tokenizer) {
          if (!(o in a)) throw new Error(`tokenizer '${o}' does not exist`);
          if (["options", "rules", "lexer"].includes(o)) continue;
          let s = o, l = i.tokenizer[s], c = a[s];
          a[s] = (...h) => {
            let u = l.apply(a, h);
            return u === !1 && (u = c.apply(a, h)), u;
          };
        }
        n.tokenizer = a;
      }
      if (i.hooks) {
        let a = this.defaults.hooks || new Ti();
        for (let o in i.hooks) {
          if (!(o in a)) throw new Error(`hook '${o}' does not exist`);
          if (["options", "block"].includes(o)) continue;
          let s = o, l = i.hooks[s], c = a[s];
          Ti.passThroughHooks.has(o) ? a[s] = (h) => {
            if (this.defaults.async && Ti.passThroughHooksRespectAsync.has(o)) return (async () => {
              let p = await l.call(a, h);
              return c.call(a, p);
            })();
            let u = l.call(a, h);
            return c.call(a, u);
          } : a[s] = (...h) => {
            if (this.defaults.async) return (async () => {
              let p = await l.apply(a, h);
              return p === !1 && (p = await c.apply(a, h)), p;
            })();
            let u = l.apply(a, h);
            return u === !1 && (u = c.apply(a, h)), u;
          };
        }
        n.hooks = a;
      }
      if (i.walkTokens) {
        let a = this.defaults.walkTokens, o = i.walkTokens;
        n.walkTokens = function(s) {
          let l = [];
          return l.push(o.call(this, s)), a && (l = l.concat(a.call(this, s))), l;
        };
      }
      this.defaults = { ...this.defaults, ...n };
    }), this;
  }
  setOptions(t) {
    return this.defaults = { ...this.defaults, ...t }, this;
  }
  lexer(t, r) {
    return oe.lex(t, r ?? this.defaults);
  }
  parser(t, r) {
    return le.parse(t, r ?? this.defaults);
  }
  parseMarkdown(t) {
    return (r, i) => {
      let n = { ...i }, a = { ...this.defaults, ...n }, o = this.onError(!!a.silent, !!a.async);
      if (this.defaults.async === !0 && n.async === !1) return o(new Error("marked(): The async option was set to true by an extension. Remove async: false from the parse options object to return a Promise."));
      if (typeof r > "u" || r === null) return o(new Error("marked(): input parameter is undefined or null"));
      if (typeof r != "string") return o(new Error("marked(): input parameter is of type " + Object.prototype.toString.call(r) + ", string expected"));
      if (a.hooks && (a.hooks.options = a, a.hooks.block = t), a.async) return (async () => {
        let s = a.hooks ? await a.hooks.preprocess(r) : r, l = await (a.hooks ? await a.hooks.provideLexer() : t ? oe.lex : oe.lexInline)(s, a), c = a.hooks ? await a.hooks.processAllTokens(l) : l;
        a.walkTokens && await Promise.all(this.walkTokens(c, a.walkTokens));
        let h = await (a.hooks ? await a.hooks.provideParser() : t ? le.parse : le.parseInline)(c, a);
        return a.hooks ? await a.hooks.postprocess(h) : h;
      })().catch(o);
      try {
        a.hooks && (r = a.hooks.preprocess(r));
        let s = (a.hooks ? a.hooks.provideLexer() : t ? oe.lex : oe.lexInline)(r, a);
        a.hooks && (s = a.hooks.processAllTokens(s)), a.walkTokens && this.walkTokens(s, a.walkTokens);
        let l = (a.hooks ? a.hooks.provideParser() : t ? le.parse : le.parseInline)(s, a);
        return a.hooks && (l = a.hooks.postprocess(l)), l;
      } catch (s) {
        return o(s);
      }
    };
  }
  onError(t, r) {
    return (i) => {
      if (i.message += `
Please report this to https://github.com/markedjs/marked.`, t) {
        let n = "<p>An error occurred:</p><pre>" + be(i.message + "", !0) + "</pre>";
        return r ? Promise.resolve(n) : n;
      }
      if (r) return Promise.reject(i);
      throw i;
    };
  }
}, xr = new gv();
function ht(e, t) {
  return xr.parse(e, t);
}
ht.options = ht.setOptions = function(e) {
  return xr.setOptions(e), ht.defaults = xr.defaults, Qp(ht.defaults), ht;
};
ht.getDefaults = cl;
ht.defaults = kr;
ht.use = function(...e) {
  return xr.use(...e), ht.defaults = xr.defaults, Qp(ht.defaults), ht;
};
ht.walkTokens = function(e, t) {
  return xr.walkTokens(e, t);
};
ht.parseInline = xr.parseInline;
ht.Parser = le;
ht.parser = le.parse;
ht.Renderer = da;
ht.TextRenderer = yl;
ht.Lexer = oe;
ht.lexer = oe.lex;
ht.Tokenizer = pa;
ht.Hooks = Ti;
ht.parse = ht;
ht.options;
ht.setOptions;
ht.use;
ht.walkTokens;
ht.parseInline;
le.parse;
oe.lex;
function cd(e) {
  for (var t = [], r = 1; r < arguments.length; r++)
    t[r - 1] = arguments[r];
  var i = Array.from(typeof e == "string" ? [e] : e);
  i[i.length - 1] = i[i.length - 1].replace(/\r?\n([\t ]*)$/, "");
  var n = i.reduce(function(s, l) {
    var c = l.match(/\n([\t ]+|(?!\s).)/g);
    return c ? s.concat(c.map(function(h) {
      var u, p;
      return (p = (u = h.match(/[\t ]/g)) === null || u === void 0 ? void 0 : u.length) !== null && p !== void 0 ? p : 0;
    })) : s;
  }, []);
  if (n.length) {
    var a = new RegExp(`
[	 ]{` + Math.min.apply(Math, n) + "}", "g");
    i = i.map(function(s) {
      return s.replace(a, `
`);
    });
  }
  i[0] = i[0].replace(/^\r?\n/, "");
  var o = i[0];
  return t.forEach(function(s, l) {
    var c = o.match(/(?:^|\n)( *)$/), h = c ? c[1] : "", u = s;
    typeof s == "string" && s.includes(`
`) && (u = String(s).split(`
`).map(function(p, f) {
      return f === 0 ? p : "" + h + p;
    }).join(`
`)), o += u + i[l + 1];
  }), o;
}
var mv = {
  body: '<g><rect width="80" height="80" style="fill: #087ebf; stroke-width: 0px;"/><text transform="translate(21.16 64.67)" style="fill: #fff; font-family: ArialMT, Arial; font-size: 67.75px;"><tspan x="0" y="0">?</tspan></text></g>',
  height: 80,
  width: 80
}, lo = /* @__PURE__ */ new Map(), hd = /* @__PURE__ */ new Map(), yv = /* @__PURE__ */ d((e) => {
  for (const t of e) {
    if (!t.name)
      throw new Error(
        'Invalid icon loader. Must have a "name" property with non-empty string value.'
      );
    if (A.debug("Registering icon pack:", t.name), "loader" in t)
      hd.set(t.name, t.loader);
    else if ("icons" in t)
      lo.set(t.name, t.icons);
    else
      throw A.error("Invalid icon loader:", t), new Error('Invalid icon loader. Must have either "icons" or "loader" property.');
  }
}, "registerIconPacks"), ud = /* @__PURE__ */ d(async (e, t) => {
  const r = xk(e, !0, t !== void 0);
  if (!r)
    throw new Error(`Invalid icon name: ${e}`);
  const i = r.prefix || t;
  if (!i)
    throw new Error(`Icon name must contain a prefix: ${e}`);
  let n = lo.get(i);
  if (!n) {
    const o = hd.get(i);
    if (!o)
      throw new Error(`Icon set not found: ${r.prefix}`);
    try {
      n = { ...await o(), prefix: i }, lo.set(i, n);
    } catch (s) {
      throw A.error(s), new Error(`Failed to load icon set: ${r.prefix}`);
    }
  }
  const a = _k(n, r.name);
  if (!a)
    throw new Error(`Icon not found: ${e}`);
  return a;
}, "getRegisteredIconData"), xv = /* @__PURE__ */ d(async (e) => {
  try {
    return await ud(e), !0;
  } catch {
    return !1;
  }
}, "isIconAvailable"), sn = /* @__PURE__ */ d(async (e, t, r) => {
  let i;
  try {
    i = await ud(e, t == null ? void 0 : t.fallbackPrefix);
  } catch (o) {
    A.error(o), i = mv;
  }
  const n = Ak(i, t), a = $k(Ek(n.body), {
    ...n.attributes,
    ...r
  });
  return pe(a, Ot());
}, "getIconSVG");
function fd(e, { markdownAutoWrap: t }) {
  const i = e.replace(/<br\/>/g, `
`).replace(/\n{2,}/g, `
`);
  return cd(i);
}
d(fd, "preprocessMarkdown");
function pd(e) {
  return e.split(/\\n|\n|<br\s*\/?>/gi).map(
    (t) => {
      var r;
      return ((r = t.trim().match(/<[^>]+>|[^\s<>]+/g)) == null ? void 0 : r.map((i) => ({ content: i, type: "normal" }))) ?? [];
    }
  );
}
d(pd, "nonMarkdownToLines");
function dd(e, t = {}) {
  const r = fd(e, t), i = ht.lexer(r), n = [[]];
  let a = 0;
  function o(s, l = "normal") {
    s.type === "text" ? s.text.split(`
`).forEach((h, u) => {
      u !== 0 && (a++, n.push([])), h.split(" ").forEach((p) => {
        p = p.replace(/&#39;/g, "'"), p && n[a].push({ content: p, type: l });
      });
    }) : s.type === "strong" || s.type === "em" ? s.tokens.forEach((c) => {
      o(c, s.type);
    }) : s.type === "html" && n[a].push({ content: s.text, type: "normal" });
  }
  return d(o, "processNode"), i.forEach((s) => {
    var l;
    s.type === "paragraph" ? (l = s.tokens) == null || l.forEach((c) => {
      o(c);
    }) : s.type === "html" ? n[a].push({ content: s.text, type: "normal" }) : n[a].push({ content: s.raw, type: "normal" });
  }), n;
}
d(dd, "markdownToLines");
function gd(e) {
  return e ? `<p>${/**
  * Replace new lines with <br /> tags.
  *
  * Unlike in markdown text, `\n` sequences are treated as line breaks here.
  */
  e.replace(/\\n|\n/g, "<br />")}</p>` : "";
}
d(gd, "nonMarkdownToHTML");
function md(e, { markdownAutoWrap: t } = {}) {
  const r = ht.lexer(e);
  function i(n) {
    var a, o, s;
    return n.type === "text" ? t === !1 ? n.text.replace(/\n */g, "<br/>").replace(/ /g, "&nbsp;") : n.text.replace(/\n */g, "<br/>") : n.type === "strong" ? `<strong>${(a = n.tokens) == null ? void 0 : a.map(i).join("")}</strong>` : n.type === "em" ? `<em>${(o = n.tokens) == null ? void 0 : o.map(i).join("")}</em>` : n.type === "paragraph" ? `<p>${(s = n.tokens) == null ? void 0 : s.map(i).join("")}</p>` : n.type === "space" ? "" : n.type === "html" ? `${n.text}` : n.type === "escape" ? n.text : (A.warn(`Unsupported markdown: ${n.type}`), n.raw);
  }
  return d(i, "output"), r.map(i).join("");
}
d(md, "markdownToHTML");
function yd(e) {
  return Intl.Segmenter ? [...new Intl.Segmenter().segment(e)].map((t) => t.segment) : [...e];
}
d(yd, "splitTextToChars");
function xd(e, t) {
  const r = yd(t.content);
  return xl(e, [], r, t.type);
}
d(xd, "splitWordToFitWidth");
function xl(e, t, r, i) {
  if (r.length === 0)
    return [
      { content: t.join(""), type: i },
      { content: "", type: i }
    ];
  const [n, ...a] = r, o = [...t, n];
  return e([{ content: o.join(""), type: i }]) ? xl(e, o, a, i) : (t.length === 0 && n && (t.push(n), r.shift()), [
    { content: t.join(""), type: i },
    { content: r.join(""), type: i }
  ]);
}
d(xl, "splitWordToFitWidthRecursion");
function bd(e, t) {
  if (e.some(({ content: r }) => r.includes(`
`)))
    throw new Error("splitLineToFitWidth does not support newlines in the line");
  return ga(e, t);
}
d(bd, "splitLineToFitWidth");
function ga(e, t, r = [], i = []) {
  if (e.length === 0)
    return i.length > 0 && r.push(i), r.length > 0 ? r : [];
  let n = "";
  e[0].content === " " && (n = " ", e.shift());
  const a = e.shift() ?? { content: " ", type: "normal" }, o = [...i];
  if (n !== "" && o.push({ content: n, type: "normal" }), o.push(a), t(o))
    return ga(e, t, r, o);
  if (i.length > 0)
    r.push(i), e.unshift(a);
  else if (a.content) {
    const [s, l] = xd(t, a);
    r.push([s]), l.content && e.unshift(l);
  }
  return ga(e, t, r);
}
d(ga, "splitLineToFitWidthRecursion");
function co(e, t) {
  t && e.attr("style", t);
}
d(co, "applyStyle");
var th = 16384;
async function Cd(e, t, r, i, n = !1, a = Ot()) {
  const o = e.append("foreignObject");
  o.attr("width", `${Math.min(10 * r, th)}px`), o.attr("height", `${Math.min(10 * r, th)}px`);
  const s = o.append("xhtml:div"), l = Di(t.label) ? await Yh(t.label.replace(Qi.lineBreakRegex, `
`), a) : pe(t.label, a), c = t.isNode ? "nodeLabel" : "edgeLabel", h = s.append("span");
  h.html(l), co(h, t.labelStyle), h.attr("class", `${c} ${i}`), co(s, t.labelStyle), s.style("display", "table-cell"), s.style("white-space", "nowrap"), s.style("line-height", "1.5"), r !== Number.POSITIVE_INFINITY && (s.style("max-width", r + "px"), s.style("text-align", "center")), s.attr("xmlns", "http://www.w3.org/1999/xhtml"), n && s.attr("class", "labelBkg");
  let u = s.node().getBoundingClientRect();
  return u.width === r && (s.style("display", "table"), s.style("white-space", "break-spaces"), s.style("width", r + "px"), u = s.node().getBoundingClientRect()), o.node();
}
d(Cd, "addHtmlSpan");
function Wa(e, t, r, i = !1) {
  const n = e.append("tspan").attr("class", "text-outer-tspan").attr("x", 0).attr("y", t * r - 0.1 + "em").attr("dy", r + "em");
  return i && n.attr("text-anchor", "middle"), n;
}
d(Wa, "createTspan");
function _d(e, t, r) {
  const i = e.append("text"), n = Wa(i, 1, t);
  qa(n, r);
  const a = n.node().getComputedTextLength();
  return i.remove(), a;
}
d(_d, "computeWidthOfText");
function bv(e, t, r) {
  var o;
  const i = e.append("text"), n = Wa(i, 1, t);
  qa(n, [{ content: r, type: "normal" }]);
  const a = (o = n.node()) == null ? void 0 : o.getBoundingClientRect();
  return a && i.remove(), a;
}
d(bv, "computeDimensionOfText");
function wd(e, t, r, i = !1, n = !1) {
  const o = t.append("g"), s = o.insert("rect").attr("class", "background").attr("style", "stroke: none"), l = o.append("text").attr("y", "-10.1");
  n && l.attr("text-anchor", "middle");
  let c = 0;
  for (const h of r) {
    const u = /* @__PURE__ */ d((f) => _d(o, 1.1, f) <= e, "checkWidth"), p = u(h) ? [h] : bd(h, u);
    for (const f of p) {
      const g = Wa(l, c, 1.1, n);
      qa(g, f), c++;
    }
  }
  if (i) {
    const h = l.node().getBBox(), u = 2;
    return s.attr("x", h.x - u).attr("y", h.y - u).attr("width", h.width + 2 * u).attr("height", h.height + 2 * u), o.node();
  } else
    return l.node();
}
d(wd, "createFormattedText");
function qa(e, t) {
  e.text(""), t.forEach((r, i) => {
    const n = e.append("tspan").attr("font-style", r.type === "em" ? "italic" : "normal").attr("class", "text-inner-tspan").attr("font-weight", r.type === "strong" ? "bold" : "normal");
    i === 0 ? n.text(r.content) : n.text(" " + r.content);
  });
}
d(qa, "updateTextContentAndStyles");
async function kd(e, t = {}) {
  const r = [];
  e.replace(/(fa[bklrs]?):fa-([\w-]+)/g, (n, a, o) => (r.push(
    (async () => {
      const s = `${a}:${o}`;
      return await xv(s) ? await sn(s, void 0, { class: "label-icon" }) : `<i class='${pe(n, t).replace(":", " ")}'></i>`;
    })()
  ), n));
  const i = await Promise.all(r);
  return e.replace(/(fa[bklrs]?):fa-([\w-]+)/g, () => i.shift() ?? "");
}
d(kd, "replaceIconSubstring");
var Ne = /* @__PURE__ */ d(async (e, t = "", {
  style: r = "",
  isTitle: i = !1,
  classes: n = "",
  useHtmlLabels: a = !0,
  markdown: o = !0,
  isNode: s = !0,
  /**
   * The width to wrap the text within. Set to `Number.POSITIVE_INFINITY` for no wrapping.
   */
  width: l = 200,
  addSvgBackground: c = !1
} = {}, h) => {
  if (A.debug(
    "XYZ createText",
    t,
    r,
    i,
    n,
    a,
    s,
    "addSvgBackground: ",
    c
  ), a) {
    const u = o ? md(t, h) : gd(t), p = await kd(ei(u), h), f = t.replace(/\\\\/g, "\\"), g = {
      isNode: s,
      label: Di(t) ? f : p,
      labelStyle: r.replace("fill:", "color:")
    };
    return await Cd(e, g, l, n, c, h);
  } else {
    const u = t.replace(/<br\s*\/?>/g, "<br/>"), p = o ? dd(u.replace("<br>", "<br/>"), h) : pd(u), f = wd(
      l,
      e,
      p,
      t ? c : !1,
      !s
    );
    if (s) {
      /stroke:/.exec(r) && (r = r.replace("stroke:", "lineColor:"));
      const g = r.replace(/stroke:[^;]+;?/g, "").replace(/stroke-width:[^;]+;?/g, "").replace(/fill:[^;]+;?/g, "").replace(/color:/g, "fill:");
      et(f).attr("style", g);
    } else {
      const g = r.replace(/stroke:[^;]+;?/g, "").replace(/stroke-width:[^;]+;?/g, "").replace(/fill:[^;]+;?/g, "").replace(/background:/g, "fill:");
      et(f).select("rect").attr("style", g.replace(/background:/g, "fill:"));
      const m = r.replace(/stroke:[^;]+;?/g, "").replace(/stroke-width:[^;]+;?/g, "").replace(/fill:[^;]+;?/g, "").replace(/color:/g, "fill:");
      et(f).select("text").attr("style", m);
    }
    return i ? et(f).selectAll("tspan.text-outer-tspan").classed("title-row", !0) : et(f).selectAll("tspan.text-outer-tspan").classed("row", !0), f;
  }
}, "createText");
function ys(e, t, r) {
  if (e && e.length) {
    const [i, n] = t, a = Math.PI / 180 * r, o = Math.cos(a), s = Math.sin(a);
    for (const l of e) {
      const [c, h] = l;
      l[0] = (c - i) * o - (h - n) * s + i, l[1] = (c - i) * s + (h - n) * o + n;
    }
  }
}
function Cv(e, t) {
  return e[0] === t[0] && e[1] === t[1];
}
function _v(e, t, r, i = 1) {
  const n = r, a = Math.max(t, 0.1), o = e[0] && e[0][0] && typeof e[0][0] == "number" ? [e] : e, s = [0, 0];
  if (n) for (const c of o) ys(c, s, n);
  const l = function(c, h, u) {
    const p = [];
    for (const b of c) {
      const _ = [...b];
      Cv(_[0], _[_.length - 1]) || _.push([_[0][0], _[0][1]]), _.length > 2 && p.push(_);
    }
    const f = [];
    h = Math.max(h, 0.1);
    const g = [];
    for (const b of p) for (let _ = 0; _ < b.length - 1; _++) {
      const S = b[_], v = b[_ + 1];
      if (S[1] !== v[1]) {
        const C = Math.min(S[1], v[1]);
        g.push({ ymin: C, ymax: Math.max(S[1], v[1]), x: C === S[1] ? S[0] : v[0], islope: (v[0] - S[0]) / (v[1] - S[1]) });
      }
    }
    if (g.sort((b, _) => b.ymin < _.ymin ? -1 : b.ymin > _.ymin ? 1 : b.x < _.x ? -1 : b.x > _.x ? 1 : b.ymax === _.ymax ? 0 : (b.ymax - _.ymax) / Math.abs(b.ymax - _.ymax)), !g.length) return f;
    let m = [], y = g[0].ymin, x = 0;
    for (; m.length || g.length; ) {
      if (g.length) {
        let b = -1;
        for (let _ = 0; _ < g.length && !(g[_].ymin > y); _++) b = _;
        g.splice(0, b + 1).forEach((_) => {
          m.push({ s: y, edge: _ });
        });
      }
      if (m = m.filter((b) => !(b.edge.ymax <= y)), m.sort((b, _) => b.edge.x === _.edge.x ? 0 : (b.edge.x - _.edge.x) / Math.abs(b.edge.x - _.edge.x)), (u !== 1 || x % h == 0) && m.length > 1) for (let b = 0; b < m.length; b += 2) {
        const _ = b + 1;
        if (_ >= m.length) break;
        const S = m[b].edge, v = m[_].edge;
        f.push([[Math.round(S.x), y], [Math.round(v.x), y]]);
      }
      y += u, m.forEach((b) => {
        b.edge.x = b.edge.x + u * b.edge.islope;
      }), x++;
    }
    return f;
  }(o, a, i);
  if (n) {
    for (const c of o) ys(c, s, -n);
    (function(c, h, u) {
      const p = [];
      c.forEach((f) => p.push(...f)), ys(p, h, u);
    })(l, s, -n);
  }
  return l;
}
function on(e, t) {
  var r;
  const i = t.hachureAngle + 90;
  let n = t.hachureGap;
  n < 0 && (n = 4 * t.strokeWidth), n = Math.round(Math.max(n, 0.1));
  let a = 1;
  return t.roughness >= 1 && (((r = t.randomizer) === null || r === void 0 ? void 0 : r.next()) || Math.random()) > 0.7 && (a = n), _v(e, n, i, a || 1);
}
class bl {
  constructor(t) {
    this.helper = t;
  }
  fillPolygons(t, r) {
    return this._fillPolygons(t, r);
  }
  _fillPolygons(t, r) {
    const i = on(t, r);
    return { type: "fillSketch", ops: this.renderLines(i, r) };
  }
  renderLines(t, r) {
    const i = [];
    for (const n of t) i.push(...this.helper.doubleLineOps(n[0][0], n[0][1], n[1][0], n[1][1], r));
    return i;
  }
}
function Ha(e) {
  const t = e[0], r = e[1];
  return Math.sqrt(Math.pow(t[0] - r[0], 2) + Math.pow(t[1] - r[1], 2));
}
class wv extends bl {
  fillPolygons(t, r) {
    let i = r.hachureGap;
    i < 0 && (i = 4 * r.strokeWidth), i = Math.max(i, 0.1);
    const n = on(t, Object.assign({}, r, { hachureGap: i })), a = Math.PI / 180 * r.hachureAngle, o = [], s = 0.5 * i * Math.cos(a), l = 0.5 * i * Math.sin(a);
    for (const [c, h] of n) Ha([c, h]) && o.push([[c[0] - s, c[1] + l], [...h]], [[c[0] + s, c[1] - l], [...h]]);
    return { type: "fillSketch", ops: this.renderLines(o, r) };
  }
}
class kv extends bl {
  fillPolygons(t, r) {
    const i = this._fillPolygons(t, r), n = Object.assign({}, r, { hachureAngle: r.hachureAngle + 90 }), a = this._fillPolygons(t, n);
    return i.ops = i.ops.concat(a.ops), i;
  }
}
class vv {
  constructor(t) {
    this.helper = t;
  }
  fillPolygons(t, r) {
    const i = on(t, r = Object.assign({}, r, { hachureAngle: 0 }));
    return this.dotsOnLines(i, r);
  }
  dotsOnLines(t, r) {
    const i = [];
    let n = r.hachureGap;
    n < 0 && (n = 4 * r.strokeWidth), n = Math.max(n, 0.1);
    let a = r.fillWeight;
    a < 0 && (a = r.strokeWidth / 2);
    const o = n / 4;
    for (const s of t) {
      const l = Ha(s), c = l / n, h = Math.ceil(c) - 1, u = l - h * n, p = (s[0][0] + s[1][0]) / 2 - n / 4, f = Math.min(s[0][1], s[1][1]);
      for (let g = 0; g < h; g++) {
        const m = f + u + g * n, y = p - o + 2 * Math.random() * o, x = m - o + 2 * Math.random() * o, b = this.helper.ellipse(y, x, a, a, r);
        i.push(...b.ops);
      }
    }
    return { type: "fillSketch", ops: i };
  }
}
class Sv {
  constructor(t) {
    this.helper = t;
  }
  fillPolygons(t, r) {
    const i = on(t, r);
    return { type: "fillSketch", ops: this.dashedLine(i, r) };
  }
  dashedLine(t, r) {
    const i = r.dashOffset < 0 ? r.hachureGap < 0 ? 4 * r.strokeWidth : r.hachureGap : r.dashOffset, n = r.dashGap < 0 ? r.hachureGap < 0 ? 4 * r.strokeWidth : r.hachureGap : r.dashGap, a = [];
    return t.forEach((o) => {
      const s = Ha(o), l = Math.floor(s / (i + n)), c = (s + n - l * (i + n)) / 2;
      let h = o[0], u = o[1];
      h[0] > u[0] && (h = o[1], u = o[0]);
      const p = Math.atan((u[1] - h[1]) / (u[0] - h[0]));
      for (let f = 0; f < l; f++) {
        const g = f * (i + n), m = g + i, y = [h[0] + g * Math.cos(p) + c * Math.cos(p), h[1] + g * Math.sin(p) + c * Math.sin(p)], x = [h[0] + m * Math.cos(p) + c * Math.cos(p), h[1] + m * Math.sin(p) + c * Math.sin(p)];
        a.push(...this.helper.doubleLineOps(y[0], y[1], x[0], x[1], r));
      }
    }), a;
  }
}
class Tv {
  constructor(t) {
    this.helper = t;
  }
  fillPolygons(t, r) {
    const i = r.hachureGap < 0 ? 4 * r.strokeWidth : r.hachureGap, n = r.zigzagOffset < 0 ? i : r.zigzagOffset, a = on(t, r = Object.assign({}, r, { hachureGap: i + n }));
    return { type: "fillSketch", ops: this.zigzagLines(a, n, r) };
  }
  zigzagLines(t, r, i) {
    const n = [];
    return t.forEach((a) => {
      const o = Ha(a), s = Math.round(o / (2 * r));
      let l = a[0], c = a[1];
      l[0] > c[0] && (l = a[1], c = a[0]);
      const h = Math.atan((c[1] - l[1]) / (c[0] - l[0]));
      for (let u = 0; u < s; u++) {
        const p = 2 * u * r, f = 2 * (u + 1) * r, g = Math.sqrt(2 * Math.pow(r, 2)), m = [l[0] + p * Math.cos(h), l[1] + p * Math.sin(h)], y = [l[0] + f * Math.cos(h), l[1] + f * Math.sin(h)], x = [m[0] + g * Math.cos(h + Math.PI / 4), m[1] + g * Math.sin(h + Math.PI / 4)];
        n.push(...this.helper.doubleLineOps(m[0], m[1], x[0], x[1], i), ...this.helper.doubleLineOps(x[0], x[1], y[0], y[1], i));
      }
    }), n;
  }
}
const Ut = {};
class Bv {
  constructor(t) {
    this.seed = t;
  }
  next() {
    return this.seed ? (2 ** 31 - 1 & (this.seed = Math.imul(48271, this.seed))) / 2 ** 31 : Math.random();
  }
}
const Av = 0, xs = 1, eh = 2, wn = { A: 7, a: 7, C: 6, c: 6, H: 1, h: 1, L: 2, l: 2, M: 2, m: 2, Q: 4, q: 4, S: 4, s: 4, T: 2, t: 2, V: 1, v: 1, Z: 0, z: 0 };
function bs(e, t) {
  return e.type === t;
}
function Cl(e) {
  const t = [], r = function(o) {
    const s = new Array();
    for (; o !== ""; ) if (o.match(/^([ \t\r\n,]+)/)) o = o.substr(RegExp.$1.length);
    else if (o.match(/^([aAcChHlLmMqQsStTvVzZ])/)) s[s.length] = { type: Av, text: RegExp.$1 }, o = o.substr(RegExp.$1.length);
    else {
      if (!o.match(/^(([-+]?[0-9]+(\.[0-9]*)?|[-+]?\.[0-9]+)([eE][-+]?[0-9]+)?)/)) return [];
      s[s.length] = { type: xs, text: `${parseFloat(RegExp.$1)}` }, o = o.substr(RegExp.$1.length);
    }
    return s[s.length] = { type: eh, text: "" }, s;
  }(e);
  let i = "BOD", n = 0, a = r[n];
  for (; !bs(a, eh); ) {
    let o = 0;
    const s = [];
    if (i === "BOD") {
      if (a.text !== "M" && a.text !== "m") return Cl("M0,0" + e);
      n++, o = wn[a.text], i = a.text;
    } else bs(a, xs) ? o = wn[i] : (n++, o = wn[a.text], i = a.text);
    if (!(n + o < r.length)) throw new Error("Path data ended short");
    for (let l = n; l < n + o; l++) {
      const c = r[l];
      if (!bs(c, xs)) throw new Error("Param not a number: " + i + "," + c.text);
      s[s.length] = +c.text;
    }
    if (typeof wn[i] != "number") throw new Error("Bad segment: " + i);
    {
      const l = { key: i, data: s };
      t.push(l), n += o, a = r[n], i === "M" && (i = "L"), i === "m" && (i = "l");
    }
  }
  return t;
}
function vd(e) {
  let t = 0, r = 0, i = 0, n = 0;
  const a = [];
  for (const { key: o, data: s } of e) switch (o) {
    case "M":
      a.push({ key: "M", data: [...s] }), [t, r] = s, [i, n] = s;
      break;
    case "m":
      t += s[0], r += s[1], a.push({ key: "M", data: [t, r] }), i = t, n = r;
      break;
    case "L":
      a.push({ key: "L", data: [...s] }), [t, r] = s;
      break;
    case "l":
      t += s[0], r += s[1], a.push({ key: "L", data: [t, r] });
      break;
    case "C":
      a.push({ key: "C", data: [...s] }), t = s[4], r = s[5];
      break;
    case "c": {
      const l = s.map((c, h) => h % 2 ? c + r : c + t);
      a.push({ key: "C", data: l }), t = l[4], r = l[5];
      break;
    }
    case "Q":
      a.push({ key: "Q", data: [...s] }), t = s[2], r = s[3];
      break;
    case "q": {
      const l = s.map((c, h) => h % 2 ? c + r : c + t);
      a.push({ key: "Q", data: l }), t = l[2], r = l[3];
      break;
    }
    case "A":
      a.push({ key: "A", data: [...s] }), t = s[5], r = s[6];
      break;
    case "a":
      t += s[5], r += s[6], a.push({ key: "A", data: [s[0], s[1], s[2], s[3], s[4], t, r] });
      break;
    case "H":
      a.push({ key: "H", data: [...s] }), t = s[0];
      break;
    case "h":
      t += s[0], a.push({ key: "H", data: [t] });
      break;
    case "V":
      a.push({ key: "V", data: [...s] }), r = s[0];
      break;
    case "v":
      r += s[0], a.push({ key: "V", data: [r] });
      break;
    case "S":
      a.push({ key: "S", data: [...s] }), t = s[2], r = s[3];
      break;
    case "s": {
      const l = s.map((c, h) => h % 2 ? c + r : c + t);
      a.push({ key: "S", data: l }), t = l[2], r = l[3];
      break;
    }
    case "T":
      a.push({ key: "T", data: [...s] }), t = s[0], r = s[1];
      break;
    case "t":
      t += s[0], r += s[1], a.push({ key: "T", data: [t, r] });
      break;
    case "Z":
    case "z":
      a.push({ key: "Z", data: [] }), t = i, r = n;
  }
  return a;
}
function Sd(e) {
  const t = [];
  let r = "", i = 0, n = 0, a = 0, o = 0, s = 0, l = 0;
  for (const { key: c, data: h } of e) {
    switch (c) {
      case "M":
        t.push({ key: "M", data: [...h] }), [i, n] = h, [a, o] = h;
        break;
      case "C":
        t.push({ key: "C", data: [...h] }), i = h[4], n = h[5], s = h[2], l = h[3];
        break;
      case "L":
        t.push({ key: "L", data: [...h] }), [i, n] = h;
        break;
      case "H":
        i = h[0], t.push({ key: "L", data: [i, n] });
        break;
      case "V":
        n = h[0], t.push({ key: "L", data: [i, n] });
        break;
      case "S": {
        let u = 0, p = 0;
        r === "C" || r === "S" ? (u = i + (i - s), p = n + (n - l)) : (u = i, p = n), t.push({ key: "C", data: [u, p, ...h] }), s = h[0], l = h[1], i = h[2], n = h[3];
        break;
      }
      case "T": {
        const [u, p] = h;
        let f = 0, g = 0;
        r === "Q" || r === "T" ? (f = i + (i - s), g = n + (n - l)) : (f = i, g = n);
        const m = i + 2 * (f - i) / 3, y = n + 2 * (g - n) / 3, x = u + 2 * (f - u) / 3, b = p + 2 * (g - p) / 3;
        t.push({ key: "C", data: [m, y, x, b, u, p] }), s = f, l = g, i = u, n = p;
        break;
      }
      case "Q": {
        const [u, p, f, g] = h, m = i + 2 * (u - i) / 3, y = n + 2 * (p - n) / 3, x = f + 2 * (u - f) / 3, b = g + 2 * (p - g) / 3;
        t.push({ key: "C", data: [m, y, x, b, f, g] }), s = u, l = p, i = f, n = g;
        break;
      }
      case "A": {
        const u = Math.abs(h[0]), p = Math.abs(h[1]), f = h[2], g = h[3], m = h[4], y = h[5], x = h[6];
        u === 0 || p === 0 ? (t.push({ key: "C", data: [i, n, y, x, y, x] }), i = y, n = x) : (i !== y || n !== x) && (Td(i, n, y, x, u, p, f, g, m).forEach(function(b) {
          t.push({ key: "C", data: b });
        }), i = y, n = x);
        break;
      }
      case "Z":
        t.push({ key: "Z", data: [] }), i = a, n = o;
    }
    r = c;
  }
  return t;
}
function xi(e, t, r) {
  return [e * Math.cos(r) - t * Math.sin(r), e * Math.sin(r) + t * Math.cos(r)];
}
function Td(e, t, r, i, n, a, o, s, l, c) {
  const h = (u = o, Math.PI * u / 180);
  var u;
  let p = [], f = 0, g = 0, m = 0, y = 0;
  if (c) [f, g, m, y] = c;
  else {
    [e, t] = xi(e, t, -h), [r, i] = xi(r, i, -h);
    const M = (e - r) / 2, E = (t - i) / 2;
    let N = M * M / (n * n) + E * E / (a * a);
    N > 1 && (N = Math.sqrt(N), n *= N, a *= N);
    const R = n * n, O = a * a, I = R * O - R * E * E - O * M * M, lt = R * E * E + O * M * M, xt = (s === l ? -1 : 1) * Math.sqrt(Math.abs(I / lt));
    m = xt * n * E / a + (e + r) / 2, y = xt * -a * M / n + (t + i) / 2, f = Math.asin(parseFloat(((t - y) / a).toFixed(9))), g = Math.asin(parseFloat(((i - y) / a).toFixed(9))), e < m && (f = Math.PI - f), r < m && (g = Math.PI - g), f < 0 && (f = 2 * Math.PI + f), g < 0 && (g = 2 * Math.PI + g), l && f > g && (f -= 2 * Math.PI), !l && g > f && (g -= 2 * Math.PI);
  }
  let x = g - f;
  if (Math.abs(x) > 120 * Math.PI / 180) {
    const M = g, E = r, N = i;
    g = l && g > f ? f + 120 * Math.PI / 180 * 1 : f + 120 * Math.PI / 180 * -1, p = Td(r = m + n * Math.cos(g), i = y + a * Math.sin(g), E, N, n, a, o, 0, l, [g, M, m, y]);
  }
  x = g - f;
  const b = Math.cos(f), _ = Math.sin(f), S = Math.cos(g), v = Math.sin(g), C = Math.tan(x / 4), T = 4 / 3 * n * C, B = 4 / 3 * a * C, F = [e, t], P = [e + T * _, t - B * b], L = [r + T * v, i - B * S], W = [r, i];
  if (P[0] = 2 * F[0] - P[0], P[1] = 2 * F[1] - P[1], c) return [P, L, W].concat(p);
  {
    p = [P, L, W].concat(p);
    const M = [];
    for (let E = 0; E < p.length; E += 3) {
      const N = xi(p[E][0], p[E][1], h), R = xi(p[E + 1][0], p[E + 1][1], h), O = xi(p[E + 2][0], p[E + 2][1], h);
      M.push([N[0], N[1], R[0], R[1], O[0], O[1]]);
    }
    return M;
  }
}
const Lv = { randOffset: function(e, t) {
  return J(e, t);
}, randOffsetWithRange: function(e, t, r) {
  return ma(e, t, r);
}, ellipse: function(e, t, r, i, n) {
  const a = Ad(r, i, n);
  return ho(e, t, n, a).opset;
}, doubleLineOps: function(e, t, r, i, n) {
  return Ve(e, t, r, i, n, !0);
} };
function Bd(e, t, r, i, n) {
  return { type: "path", ops: Ve(e, t, r, i, n) };
}
function Dn(e, t, r) {
  const i = (e || []).length;
  if (i > 2) {
    const n = [];
    for (let a = 0; a < i - 1; a++) n.push(...Ve(e[a][0], e[a][1], e[a + 1][0], e[a + 1][1], r));
    return t && n.push(...Ve(e[i - 1][0], e[i - 1][1], e[0][0], e[0][1], r)), { type: "path", ops: n };
  }
  return i === 2 ? Bd(e[0][0], e[0][1], e[1][0], e[1][1], r) : { type: "path", ops: [] };
}
function Mv(e, t, r, i, n) {
  return function(a, o) {
    return Dn(a, !0, o);
  }([[e, t], [e + r, t], [e + r, t + i], [e, t + i]], n);
}
function rh(e, t) {
  if (e.length) {
    const r = typeof e[0][0] == "number" ? [e] : e, i = kn(r[0], 1 * (1 + 0.2 * t.roughness), t), n = t.disableMultiStroke ? [] : kn(r[0], 1.5 * (1 + 0.22 * t.roughness), ah(t));
    for (let a = 1; a < r.length; a++) {
      const o = r[a];
      if (o.length) {
        const s = kn(o, 1 * (1 + 0.2 * t.roughness), t), l = t.disableMultiStroke ? [] : kn(o, 1.5 * (1 + 0.22 * t.roughness), ah(t));
        for (const c of s) c.op !== "move" && i.push(c);
        for (const c of l) c.op !== "move" && n.push(c);
      }
    }
    return { type: "path", ops: i.concat(n) };
  }
  return { type: "path", ops: [] };
}
function Ad(e, t, r) {
  const i = Math.sqrt(2 * Math.PI * Math.sqrt((Math.pow(e / 2, 2) + Math.pow(t / 2, 2)) / 2)), n = Math.ceil(Math.max(r.curveStepCount, r.curveStepCount / Math.sqrt(200) * i)), a = 2 * Math.PI / n;
  let o = Math.abs(e / 2), s = Math.abs(t / 2);
  const l = 1 - r.curveFitting;
  return o += J(o * l, r), s += J(s * l, r), { increment: a, rx: o, ry: s };
}
function ho(e, t, r, i) {
  const [n, a] = sh(i.increment, e, t, i.rx, i.ry, 1, i.increment * ma(0.1, ma(0.4, 1, r), r), r);
  let o = ya(n, null, r);
  if (!r.disableMultiStroke && r.roughness !== 0) {
    const [s] = sh(i.increment, e, t, i.rx, i.ry, 1.5, 0, r), l = ya(s, null, r);
    o = o.concat(l);
  }
  return { estimatedPoints: a, opset: { type: "path", ops: o } };
}
function ih(e, t, r, i, n, a, o, s, l) {
  const c = e, h = t;
  let u = Math.abs(r / 2), p = Math.abs(i / 2);
  u += J(0.01 * u, l), p += J(0.01 * p, l);
  let f = n, g = a;
  for (; f < 0; ) f += 2 * Math.PI, g += 2 * Math.PI;
  g - f > 2 * Math.PI && (f = 0, g = 2 * Math.PI);
  const m = 2 * Math.PI / l.curveStepCount, y = Math.min(m / 2, (g - f) / 2), x = oh(y, c, h, u, p, f, g, 1, l);
  if (!l.disableMultiStroke) {
    const b = oh(y, c, h, u, p, f, g, 1.5, l);
    x.push(...b);
  }
  return o && (s ? x.push(...Ve(c, h, c + u * Math.cos(f), h + p * Math.sin(f), l), ...Ve(c, h, c + u * Math.cos(g), h + p * Math.sin(g), l)) : x.push({ op: "lineTo", data: [c, h] }, { op: "lineTo", data: [c + u * Math.cos(f), h + p * Math.sin(f)] })), { type: "path", ops: x };
}
function nh(e, t) {
  const r = Sd(vd(Cl(e))), i = [];
  let n = [0, 0], a = [0, 0];
  for (const { key: o, data: s } of r) switch (o) {
    case "M":
      a = [s[0], s[1]], n = [s[0], s[1]];
      break;
    case "L":
      i.push(...Ve(a[0], a[1], s[0], s[1], t)), a = [s[0], s[1]];
      break;
    case "C": {
      const [l, c, h, u, p, f] = s;
      i.push(...Ev(l, c, h, u, p, f, a, t)), a = [p, f];
      break;
    }
    case "Z":
      i.push(...Ve(a[0], a[1], n[0], n[1], t)), a = [n[0], n[1]];
  }
  return { type: "path", ops: i };
}
function Cs(e, t) {
  const r = [];
  for (const i of e) if (i.length) {
    const n = t.maxRandomnessOffset || 0, a = i.length;
    if (a > 2) {
      r.push({ op: "move", data: [i[0][0] + J(n, t), i[0][1] + J(n, t)] });
      for (let o = 1; o < a; o++) r.push({ op: "lineTo", data: [i[o][0] + J(n, t), i[o][1] + J(n, t)] });
    }
  }
  return { type: "fillPath", ops: r };
}
function Mr(e, t) {
  return function(r, i) {
    let n = r.fillStyle || "hachure";
    if (!Ut[n]) switch (n) {
      case "zigzag":
        Ut[n] || (Ut[n] = new wv(i));
        break;
      case "cross-hatch":
        Ut[n] || (Ut[n] = new kv(i));
        break;
      case "dots":
        Ut[n] || (Ut[n] = new vv(i));
        break;
      case "dashed":
        Ut[n] || (Ut[n] = new Sv(i));
        break;
      case "zigzag-line":
        Ut[n] || (Ut[n] = new Tv(i));
        break;
      default:
        n = "hachure", Ut[n] || (Ut[n] = new bl(i));
    }
    return Ut[n];
  }(t, Lv).fillPolygons(e, t);
}
function ah(e) {
  const t = Object.assign({}, e);
  return t.randomizer = void 0, e.seed && (t.seed = e.seed + 1), t;
}
function Ld(e) {
  return e.randomizer || (e.randomizer = new Bv(e.seed || 0)), e.randomizer.next();
}
function ma(e, t, r, i = 1) {
  return r.roughness * i * (Ld(r) * (t - e) + e);
}
function J(e, t, r = 1) {
  return ma(-e, e, t, r);
}
function Ve(e, t, r, i, n, a = !1) {
  const o = a ? n.disableMultiStrokeFill : n.disableMultiStroke, s = uo(e, t, r, i, n, !0, !1);
  if (o) return s;
  const l = uo(e, t, r, i, n, !0, !0);
  return s.concat(l);
}
function uo(e, t, r, i, n, a, o) {
  const s = Math.pow(e - r, 2) + Math.pow(t - i, 2), l = Math.sqrt(s);
  let c = 1;
  c = l < 200 ? 1 : l > 500 ? 0.4 : -16668e-7 * l + 1.233334;
  let h = n.maxRandomnessOffset || 0;
  h * h * 100 > s && (h = l / 10);
  const u = h / 2, p = 0.2 + 0.2 * Ld(n);
  let f = n.bowing * n.maxRandomnessOffset * (i - t) / 200, g = n.bowing * n.maxRandomnessOffset * (e - r) / 200;
  f = J(f, n, c), g = J(g, n, c);
  const m = [], y = () => J(u, n, c), x = () => J(h, n, c), b = n.preserveVertices;
  return o ? m.push({ op: "move", data: [e + (b ? 0 : y()), t + (b ? 0 : y())] }) : m.push({ op: "move", data: [e + (b ? 0 : J(h, n, c)), t + (b ? 0 : J(h, n, c))] }), o ? m.push({ op: "bcurveTo", data: [f + e + (r - e) * p + y(), g + t + (i - t) * p + y(), f + e + 2 * (r - e) * p + y(), g + t + 2 * (i - t) * p + y(), r + (b ? 0 : y()), i + (b ? 0 : y())] }) : m.push({ op: "bcurveTo", data: [f + e + (r - e) * p + x(), g + t + (i - t) * p + x(), f + e + 2 * (r - e) * p + x(), g + t + 2 * (i - t) * p + x(), r + (b ? 0 : x()), i + (b ? 0 : x())] }), m;
}
function kn(e, t, r) {
  if (!e.length) return [];
  const i = [];
  i.push([e[0][0] + J(t, r), e[0][1] + J(t, r)]), i.push([e[0][0] + J(t, r), e[0][1] + J(t, r)]);
  for (let n = 1; n < e.length; n++) i.push([e[n][0] + J(t, r), e[n][1] + J(t, r)]), n === e.length - 1 && i.push([e[n][0] + J(t, r), e[n][1] + J(t, r)]);
  return ya(i, null, r);
}
function ya(e, t, r) {
  const i = e.length, n = [];
  if (i > 3) {
    const a = [], o = 1 - r.curveTightness;
    n.push({ op: "move", data: [e[1][0], e[1][1]] });
    for (let s = 1; s + 2 < i; s++) {
      const l = e[s];
      a[0] = [l[0], l[1]], a[1] = [l[0] + (o * e[s + 1][0] - o * e[s - 1][0]) / 6, l[1] + (o * e[s + 1][1] - o * e[s - 1][1]) / 6], a[2] = [e[s + 1][0] + (o * e[s][0] - o * e[s + 2][0]) / 6, e[s + 1][1] + (o * e[s][1] - o * e[s + 2][1]) / 6], a[3] = [e[s + 1][0], e[s + 1][1]], n.push({ op: "bcurveTo", data: [a[1][0], a[1][1], a[2][0], a[2][1], a[3][0], a[3][1]] });
    }
  } else i === 3 ? (n.push({ op: "move", data: [e[1][0], e[1][1]] }), n.push({ op: "bcurveTo", data: [e[1][0], e[1][1], e[2][0], e[2][1], e[2][0], e[2][1]] })) : i === 2 && n.push(...uo(e[0][0], e[0][1], e[1][0], e[1][1], r, !0, !0));
  return n;
}
function sh(e, t, r, i, n, a, o, s) {
  const l = [], c = [];
  if (s.roughness === 0) {
    e /= 4, c.push([t + i * Math.cos(-e), r + n * Math.sin(-e)]);
    for (let h = 0; h <= 2 * Math.PI; h += e) {
      const u = [t + i * Math.cos(h), r + n * Math.sin(h)];
      l.push(u), c.push(u);
    }
    c.push([t + i * Math.cos(0), r + n * Math.sin(0)]), c.push([t + i * Math.cos(e), r + n * Math.sin(e)]);
  } else {
    const h = J(0.5, s) - Math.PI / 2;
    c.push([J(a, s) + t + 0.9 * i * Math.cos(h - e), J(a, s) + r + 0.9 * n * Math.sin(h - e)]);
    const u = 2 * Math.PI + h - 0.01;
    for (let p = h; p < u; p += e) {
      const f = [J(a, s) + t + i * Math.cos(p), J(a, s) + r + n * Math.sin(p)];
      l.push(f), c.push(f);
    }
    c.push([J(a, s) + t + i * Math.cos(h + 2 * Math.PI + 0.5 * o), J(a, s) + r + n * Math.sin(h + 2 * Math.PI + 0.5 * o)]), c.push([J(a, s) + t + 0.98 * i * Math.cos(h + o), J(a, s) + r + 0.98 * n * Math.sin(h + o)]), c.push([J(a, s) + t + 0.9 * i * Math.cos(h + 0.5 * o), J(a, s) + r + 0.9 * n * Math.sin(h + 0.5 * o)]);
  }
  return [c, l];
}
function oh(e, t, r, i, n, a, o, s, l) {
  const c = a + J(0.1, l), h = [];
  h.push([J(s, l) + t + 0.9 * i * Math.cos(c - e), J(s, l) + r + 0.9 * n * Math.sin(c - e)]);
  for (let u = c; u <= o; u += e) h.push([J(s, l) + t + i * Math.cos(u), J(s, l) + r + n * Math.sin(u)]);
  return h.push([t + i * Math.cos(o), r + n * Math.sin(o)]), h.push([t + i * Math.cos(o), r + n * Math.sin(o)]), ya(h, null, l);
}
function Ev(e, t, r, i, n, a, o, s) {
  const l = [], c = [s.maxRandomnessOffset || 1, (s.maxRandomnessOffset || 1) + 0.3];
  let h = [0, 0];
  const u = s.disableMultiStroke ? 1 : 2, p = s.preserveVertices;
  for (let f = 0; f < u; f++) f === 0 ? l.push({ op: "move", data: [o[0], o[1]] }) : l.push({ op: "move", data: [o[0] + (p ? 0 : J(c[0], s)), o[1] + (p ? 0 : J(c[0], s))] }), h = p ? [n, a] : [n + J(c[f], s), a + J(c[f], s)], l.push({ op: "bcurveTo", data: [e + J(c[f], s), t + J(c[f], s), r + J(c[f], s), i + J(c[f], s), h[0], h[1]] });
  return l;
}
function bi(e) {
  return [...e];
}
function lh(e, t = 0) {
  const r = e.length;
  if (r < 3) throw new Error("A curve must have at least three points.");
  const i = [];
  if (r === 3) i.push(bi(e[0]), bi(e[1]), bi(e[2]), bi(e[2]));
  else {
    const n = [];
    n.push(e[0], e[0]);
    for (let s = 1; s < e.length; s++) n.push(e[s]), s === e.length - 1 && n.push(e[s]);
    const a = [], o = 1 - t;
    i.push(bi(n[0]));
    for (let s = 1; s + 2 < n.length; s++) {
      const l = n[s];
      a[0] = [l[0], l[1]], a[1] = [l[0] + (o * n[s + 1][0] - o * n[s - 1][0]) / 6, l[1] + (o * n[s + 1][1] - o * n[s - 1][1]) / 6], a[2] = [n[s + 1][0] + (o * n[s][0] - o * n[s + 2][0]) / 6, n[s + 1][1] + (o * n[s][1] - o * n[s + 2][1]) / 6], a[3] = [n[s + 1][0], n[s + 1][1]], i.push(a[1], a[2], a[3]);
    }
  }
  return i;
}
function In(e, t) {
  return Math.pow(e[0] - t[0], 2) + Math.pow(e[1] - t[1], 2);
}
function $v(e, t, r) {
  const i = In(t, r);
  if (i === 0) return In(e, t);
  let n = ((e[0] - t[0]) * (r[0] - t[0]) + (e[1] - t[1]) * (r[1] - t[1])) / i;
  return n = Math.max(0, Math.min(1, n)), In(e, ar(t, r, n));
}
function ar(e, t, r) {
  return [e[0] + (t[0] - e[0]) * r, e[1] + (t[1] - e[1]) * r];
}
function fo(e, t, r, i) {
  const n = i || [];
  if (function(s, l) {
    const c = s[l + 0], h = s[l + 1], u = s[l + 2], p = s[l + 3];
    let f = 3 * h[0] - 2 * c[0] - p[0];
    f *= f;
    let g = 3 * h[1] - 2 * c[1] - p[1];
    g *= g;
    let m = 3 * u[0] - 2 * p[0] - c[0];
    m *= m;
    let y = 3 * u[1] - 2 * p[1] - c[1];
    return y *= y, f < m && (f = m), g < y && (g = y), f + g;
  }(e, t) < r) {
    const s = e[t + 0];
    n.length ? (a = n[n.length - 1], o = s, Math.sqrt(In(a, o)) > 1 && n.push(s)) : n.push(s), n.push(e[t + 3]);
  } else {
    const l = e[t + 0], c = e[t + 1], h = e[t + 2], u = e[t + 3], p = ar(l, c, 0.5), f = ar(c, h, 0.5), g = ar(h, u, 0.5), m = ar(p, f, 0.5), y = ar(f, g, 0.5), x = ar(m, y, 0.5);
    fo([l, p, m, x], 0, r, n), fo([x, y, g, u], 0, r, n);
  }
  var a, o;
  return n;
}
function Fv(e, t) {
  return xa(e, 0, e.length, t);
}
function xa(e, t, r, i, n) {
  const a = n || [], o = e[t], s = e[r - 1];
  let l = 0, c = 1;
  for (let h = t + 1; h < r - 1; ++h) {
    const u = $v(e[h], o, s);
    u > l && (l = u, c = h);
  }
  return Math.sqrt(l) > i ? (xa(e, t, c + 1, i, a), xa(e, c, r, i, a)) : (a.length || a.push(o), a.push(s)), a;
}
function _s(e, t = 0.15, r) {
  const i = [], n = (e.length - 1) / 3;
  for (let a = 0; a < n; a++)
    fo(e, 3 * a, t, i);
  return r && r > 0 ? xa(i, 0, i.length, r) : i;
}
const Zt = "none";
class ba {
  constructor(t) {
    this.defaultOptions = { maxRandomnessOffset: 2, roughness: 1, bowing: 1, stroke: "#000", strokeWidth: 1, curveTightness: 0, curveFitting: 0.95, curveStepCount: 9, fillStyle: "hachure", fillWeight: -1, hachureAngle: -41, hachureGap: -1, dashOffset: -1, dashGap: -1, zigzagOffset: -1, seed: 0, disableMultiStroke: !1, disableMultiStrokeFill: !1, preserveVertices: !1, fillShapeRoughnessGain: 0.8 }, this.config = t || {}, this.config.options && (this.defaultOptions = this._o(this.config.options));
  }
  static newSeed() {
    return Math.floor(Math.random() * 2 ** 31);
  }
  _o(t) {
    return t ? Object.assign({}, this.defaultOptions, t) : this.defaultOptions;
  }
  _d(t, r, i) {
    return { shape: t, sets: r || [], options: i || this.defaultOptions };
  }
  line(t, r, i, n, a) {
    const o = this._o(a);
    return this._d("line", [Bd(t, r, i, n, o)], o);
  }
  rectangle(t, r, i, n, a) {
    const o = this._o(a), s = [], l = Mv(t, r, i, n, o);
    if (o.fill) {
      const c = [[t, r], [t + i, r], [t + i, r + n], [t, r + n]];
      o.fillStyle === "solid" ? s.push(Cs([c], o)) : s.push(Mr([c], o));
    }
    return o.stroke !== Zt && s.push(l), this._d("rectangle", s, o);
  }
  ellipse(t, r, i, n, a) {
    const o = this._o(a), s = [], l = Ad(i, n, o), c = ho(t, r, o, l);
    if (o.fill) if (o.fillStyle === "solid") {
      const h = ho(t, r, o, l).opset;
      h.type = "fillPath", s.push(h);
    } else s.push(Mr([c.estimatedPoints], o));
    return o.stroke !== Zt && s.push(c.opset), this._d("ellipse", s, o);
  }
  circle(t, r, i, n) {
    const a = this.ellipse(t, r, i, i, n);
    return a.shape = "circle", a;
  }
  linearPath(t, r) {
    const i = this._o(r);
    return this._d("linearPath", [Dn(t, !1, i)], i);
  }
  arc(t, r, i, n, a, o, s = !1, l) {
    const c = this._o(l), h = [], u = ih(t, r, i, n, a, o, s, !0, c);
    if (s && c.fill) if (c.fillStyle === "solid") {
      const p = Object.assign({}, c);
      p.disableMultiStroke = !0;
      const f = ih(t, r, i, n, a, o, !0, !1, p);
      f.type = "fillPath", h.push(f);
    } else h.push(function(p, f, g, m, y, x, b) {
      const _ = p, S = f;
      let v = Math.abs(g / 2), C = Math.abs(m / 2);
      v += J(0.01 * v, b), C += J(0.01 * C, b);
      let T = y, B = x;
      for (; T < 0; ) T += 2 * Math.PI, B += 2 * Math.PI;
      B - T > 2 * Math.PI && (T = 0, B = 2 * Math.PI);
      const F = (B - T) / b.curveStepCount, P = [];
      for (let L = T; L <= B; L += F) P.push([_ + v * Math.cos(L), S + C * Math.sin(L)]);
      return P.push([_ + v * Math.cos(B), S + C * Math.sin(B)]), P.push([_, S]), Mr([P], b);
    }(t, r, i, n, a, o, c));
    return c.stroke !== Zt && h.push(u), this._d("arc", h, c);
  }
  curve(t, r) {
    const i = this._o(r), n = [], a = rh(t, i);
    if (i.fill && i.fill !== Zt) if (i.fillStyle === "solid") {
      const o = rh(t, Object.assign(Object.assign({}, i), { disableMultiStroke: !0, roughness: i.roughness ? i.roughness + i.fillShapeRoughnessGain : 0 }));
      n.push({ type: "fillPath", ops: this._mergedShape(o.ops) });
    } else {
      const o = [], s = t;
      if (s.length) {
        const l = typeof s[0][0] == "number" ? [s] : s;
        for (const c of l) c.length < 3 ? o.push(...c) : c.length === 3 ? o.push(..._s(lh([c[0], c[0], c[1], c[2]]), 10, (1 + i.roughness) / 2)) : o.push(..._s(lh(c), 10, (1 + i.roughness) / 2));
      }
      o.length && n.push(Mr([o], i));
    }
    return i.stroke !== Zt && n.push(a), this._d("curve", n, i);
  }
  polygon(t, r) {
    const i = this._o(r), n = [], a = Dn(t, !0, i);
    return i.fill && (i.fillStyle === "solid" ? n.push(Cs([t], i)) : n.push(Mr([t], i))), i.stroke !== Zt && n.push(a), this._d("polygon", n, i);
  }
  path(t, r) {
    const i = this._o(r), n = [];
    if (!t) return this._d("path", n, i);
    t = (t || "").replace(/\n/g, " ").replace(/(-\s)/g, "-").replace("/(ss)/g", " ");
    const a = i.fill && i.fill !== "transparent" && i.fill !== Zt, o = i.stroke !== Zt, s = !!(i.simplification && i.simplification < 1), l = function(h, u, p) {
      const f = Sd(vd(Cl(h))), g = [];
      let m = [], y = [0, 0], x = [];
      const b = () => {
        x.length >= 4 && m.push(..._s(x, u)), x = [];
      }, _ = () => {
        b(), m.length && (g.push(m), m = []);
      };
      for (const { key: v, data: C } of f) switch (v) {
        case "M":
          _(), y = [C[0], C[1]], m.push(y);
          break;
        case "L":
          b(), m.push([C[0], C[1]]);
          break;
        case "C":
          if (!x.length) {
            const T = m.length ? m[m.length - 1] : y;
            x.push([T[0], T[1]]);
          }
          x.push([C[0], C[1]]), x.push([C[2], C[3]]), x.push([C[4], C[5]]);
          break;
        case "Z":
          b(), m.push([y[0], y[1]]);
      }
      if (_(), !p) return g;
      const S = [];
      for (const v of g) {
        const C = Fv(v, p);
        C.length && S.push(C);
      }
      return S;
    }(t, 1, s ? 4 - 4 * (i.simplification || 1) : (1 + i.roughness) / 2), c = nh(t, i);
    if (a) if (i.fillStyle === "solid") if (l.length === 1) {
      const h = nh(t, Object.assign(Object.assign({}, i), { disableMultiStroke: !0, roughness: i.roughness ? i.roughness + i.fillShapeRoughnessGain : 0 }));
      n.push({ type: "fillPath", ops: this._mergedShape(h.ops) });
    } else n.push(Cs(l, i));
    else n.push(Mr(l, i));
    return o && (s ? l.forEach((h) => {
      n.push(Dn(h, !1, i));
    }) : n.push(c)), this._d("path", n, i);
  }
  opsToPath(t, r) {
    let i = "";
    for (const n of t.ops) {
      const a = typeof r == "number" && r >= 0 ? n.data.map((o) => +o.toFixed(r)) : n.data;
      switch (n.op) {
        case "move":
          i += `M${a[0]} ${a[1]} `;
          break;
        case "bcurveTo":
          i += `C${a[0]} ${a[1]}, ${a[2]} ${a[3]}, ${a[4]} ${a[5]} `;
          break;
        case "lineTo":
          i += `L${a[0]} ${a[1]} `;
      }
    }
    return i.trim();
  }
  toPaths(t) {
    const r = t.sets || [], i = t.options || this.defaultOptions, n = [];
    for (const a of r) {
      let o = null;
      switch (a.type) {
        case "path":
          o = { d: this.opsToPath(a), stroke: i.stroke, strokeWidth: i.strokeWidth, fill: Zt };
          break;
        case "fillPath":
          o = { d: this.opsToPath(a), stroke: Zt, strokeWidth: 0, fill: i.fill || Zt };
          break;
        case "fillSketch":
          o = this.fillSketch(a, i);
      }
      o && n.push(o);
    }
    return n;
  }
  fillSketch(t, r) {
    let i = r.fillWeight;
    return i < 0 && (i = r.strokeWidth / 2), { d: this.opsToPath(t), stroke: r.fill || Zt, strokeWidth: i, fill: Zt };
  }
  _mergedShape(t) {
    return t.filter((r, i) => i === 0 || r.op !== "move");
  }
}
class Ov {
  constructor(t, r) {
    this.canvas = t, this.ctx = this.canvas.getContext("2d"), this.gen = new ba(r);
  }
  draw(t) {
    const r = t.sets || [], i = t.options || this.getDefaultOptions(), n = this.ctx, a = t.options.fixedDecimalPlaceDigits;
    for (const o of r) switch (o.type) {
      case "path":
        n.save(), n.strokeStyle = i.stroke === "none" ? "transparent" : i.stroke, n.lineWidth = i.strokeWidth, i.strokeLineDash && n.setLineDash(i.strokeLineDash), i.strokeLineDashOffset && (n.lineDashOffset = i.strokeLineDashOffset), this._drawToContext(n, o, a), n.restore();
        break;
      case "fillPath": {
        n.save(), n.fillStyle = i.fill || "";
        const s = t.shape === "curve" || t.shape === "polygon" || t.shape === "path" ? "evenodd" : "nonzero";
        this._drawToContext(n, o, a, s), n.restore();
        break;
      }
      case "fillSketch":
        this.fillSketch(n, o, i);
    }
  }
  fillSketch(t, r, i) {
    let n = i.fillWeight;
    n < 0 && (n = i.strokeWidth / 2), t.save(), i.fillLineDash && t.setLineDash(i.fillLineDash), i.fillLineDashOffset && (t.lineDashOffset = i.fillLineDashOffset), t.strokeStyle = i.fill || "", t.lineWidth = n, this._drawToContext(t, r, i.fixedDecimalPlaceDigits), t.restore();
  }
  _drawToContext(t, r, i, n = "nonzero") {
    t.beginPath();
    for (const a of r.ops) {
      const o = typeof i == "number" && i >= 0 ? a.data.map((s) => +s.toFixed(i)) : a.data;
      switch (a.op) {
        case "move":
          t.moveTo(o[0], o[1]);
          break;
        case "bcurveTo":
          t.bezierCurveTo(o[0], o[1], o[2], o[3], o[4], o[5]);
          break;
        case "lineTo":
          t.lineTo(o[0], o[1]);
      }
    }
    r.type === "fillPath" ? t.fill(n) : t.stroke();
  }
  get generator() {
    return this.gen;
  }
  getDefaultOptions() {
    return this.gen.defaultOptions;
  }
  line(t, r, i, n, a) {
    const o = this.gen.line(t, r, i, n, a);
    return this.draw(o), o;
  }
  rectangle(t, r, i, n, a) {
    const o = this.gen.rectangle(t, r, i, n, a);
    return this.draw(o), o;
  }
  ellipse(t, r, i, n, a) {
    const o = this.gen.ellipse(t, r, i, n, a);
    return this.draw(o), o;
  }
  circle(t, r, i, n) {
    const a = this.gen.circle(t, r, i, n);
    return this.draw(a), a;
  }
  linearPath(t, r) {
    const i = this.gen.linearPath(t, r);
    return this.draw(i), i;
  }
  polygon(t, r) {
    const i = this.gen.polygon(t, r);
    return this.draw(i), i;
  }
  arc(t, r, i, n, a, o, s = !1, l) {
    const c = this.gen.arc(t, r, i, n, a, o, s, l);
    return this.draw(c), c;
  }
  curve(t, r) {
    const i = this.gen.curve(t, r);
    return this.draw(i), i;
  }
  path(t, r) {
    const i = this.gen.path(t, r);
    return this.draw(i), i;
  }
}
const vn = "http://www.w3.org/2000/svg";
class Rv {
  constructor(t, r) {
    this.svg = t, this.gen = new ba(r);
  }
  draw(t) {
    const r = t.sets || [], i = t.options || this.getDefaultOptions(), n = this.svg.ownerDocument || window.document, a = n.createElementNS(vn, "g"), o = t.options.fixedDecimalPlaceDigits;
    for (const s of r) {
      let l = null;
      switch (s.type) {
        case "path":
          l = n.createElementNS(vn, "path"), l.setAttribute("d", this.opsToPath(s, o)), l.setAttribute("stroke", i.stroke), l.setAttribute("stroke-width", i.strokeWidth + ""), l.setAttribute("fill", "none"), i.strokeLineDash && l.setAttribute("stroke-dasharray", i.strokeLineDash.join(" ").trim()), i.strokeLineDashOffset && l.setAttribute("stroke-dashoffset", `${i.strokeLineDashOffset}`);
          break;
        case "fillPath":
          l = n.createElementNS(vn, "path"), l.setAttribute("d", this.opsToPath(s, o)), l.setAttribute("stroke", "none"), l.setAttribute("stroke-width", "0"), l.setAttribute("fill", i.fill || ""), t.shape !== "curve" && t.shape !== "polygon" || l.setAttribute("fill-rule", "evenodd");
          break;
        case "fillSketch":
          l = this.fillSketch(n, s, i);
      }
      l && a.appendChild(l);
    }
    return a;
  }
  fillSketch(t, r, i) {
    let n = i.fillWeight;
    n < 0 && (n = i.strokeWidth / 2);
    const a = t.createElementNS(vn, "path");
    return a.setAttribute("d", this.opsToPath(r, i.fixedDecimalPlaceDigits)), a.setAttribute("stroke", i.fill || ""), a.setAttribute("stroke-width", n + ""), a.setAttribute("fill", "none"), i.fillLineDash && a.setAttribute("stroke-dasharray", i.fillLineDash.join(" ").trim()), i.fillLineDashOffset && a.setAttribute("stroke-dashoffset", `${i.fillLineDashOffset}`), a;
  }
  get generator() {
    return this.gen;
  }
  getDefaultOptions() {
    return this.gen.defaultOptions;
  }
  opsToPath(t, r) {
    return this.gen.opsToPath(t, r);
  }
  line(t, r, i, n, a) {
    const o = this.gen.line(t, r, i, n, a);
    return this.draw(o);
  }
  rectangle(t, r, i, n, a) {
    const o = this.gen.rectangle(t, r, i, n, a);
    return this.draw(o);
  }
  ellipse(t, r, i, n, a) {
    const o = this.gen.ellipse(t, r, i, n, a);
    return this.draw(o);
  }
  circle(t, r, i, n) {
    const a = this.gen.circle(t, r, i, n);
    return this.draw(a);
  }
  linearPath(t, r) {
    const i = this.gen.linearPath(t, r);
    return this.draw(i);
  }
  polygon(t, r) {
    const i = this.gen.polygon(t, r);
    return this.draw(i);
  }
  arc(t, r, i, n, a, o, s = !1, l) {
    const c = this.gen.arc(t, r, i, n, a, o, s, l);
    return this.draw(c);
  }
  curve(t, r) {
    const i = this.gen.curve(t, r);
    return this.draw(i);
  }
  path(t, r) {
    const i = this.gen.path(t, r);
    return this.draw(i);
  }
}
var H = { canvas: (e, t) => new Ov(e, t), svg: (e, t) => new Rv(e, t), generator: (e) => new ba(e), newSeed: () => ba.newSeed() }, Q = /* @__PURE__ */ d(async (e, t, r) => {
  var f, g;
  let i;
  const n = t.useHtmlLabels || Ke((f = ot()) == null ? void 0 : f.htmlLabels);
  r ? i = r : i = "node default";
  const a = e.insert("g").attr("class", i).attr("id", t.domId || t.id), o = a.insert("g").attr("class", "label").attr("style", Dt(t.labelStyle));
  let s;
  t.label === void 0 ? s = "" : s = typeof t.label == "string" ? t.label : t.label[0];
  const l = !!t.icon || !!t.img, c = t.labelType === "markdown", h = await Ne(
    o,
    pe(ei(s), ot()),
    {
      useHtmlLabels: n,
      width: t.width || ((g = ot().flowchart) == null ? void 0 : g.wrappingWidth),
      // @ts-expect-error -- This is currently not used. Should this be `classes` instead?
      cssClasses: c ? "markdown-node-label" : void 0,
      style: t.labelStyle,
      addSvgBackground: l,
      markdown: c
    },
    ot()
  );
  let u = h.getBBox();
  const p = ((t == null ? void 0 : t.padding) ?? 0) / 2;
  if (n) {
    const m = h.children[0], y = et(h);
    await Vp(m, s), u = m.getBoundingClientRect(), y.attr("width", u.width), y.attr("height", u.height);
  }
  return n ? o.attr("transform", "translate(" + -u.width / 2 + ", " + -u.height / 2 + ")") : o.attr("transform", "translate(0, " + -u.height / 2 + ")"), t.centerLabel && o.attr("transform", "translate(" + -u.width / 2 + ", " + -u.height / 2 + ")"), o.insert("rect", ":first-child"), { shapeSvg: a, bbox: u, halfPadding: p, label: o };
}, "labelHelper"), ws = /* @__PURE__ */ d(async (e, t, r) => {
  var l, c;
  const i = r.useHtmlLabels ?? It(ot()), n = e.insert("g").attr("class", "label").attr("style", r.labelStyle || ""), a = await Ne(n, pe(ei(t), ot()), {
    useHtmlLabels: i,
    width: r.width || ((c = (l = ot()) == null ? void 0 : l.flowchart) == null ? void 0 : c.wrappingWidth),
    style: r.labelStyle,
    addSvgBackground: !!r.icon || !!r.img
  });
  let o = a.getBBox();
  const s = r.padding / 2;
  if (It(ot())) {
    const h = a.children[0], u = et(a);
    o = h.getBoundingClientRect(), u.attr("width", o.width), u.attr("height", o.height);
  }
  return i ? n.attr("transform", "translate(" + -o.width / 2 + ", " + -o.height / 2 + ")") : n.attr("transform", "translate(0, " + -o.height / 2 + ")"), r.centerLabel && n.attr("transform", "translate(" + -o.width / 2 + ", " + -o.height / 2 + ")"), n.insert("rect", ":first-child"), { shapeSvg: e, bbox: o, halfPadding: s, label: n };
}, "insertLabel"), G = /* @__PURE__ */ d((e, t) => {
  const r = t.node().getBBox();
  e.width = r.width, e.height = r.height;
}, "updateNodeBounds"), K = /* @__PURE__ */ d((e, t) => (e.look === "handDrawn" ? "rough-node" : "node") + " " + e.cssClasses + " " + (t || ""), "getNodeClasses");
function nt(e) {
  const t = e.map((r, i) => `${i === 0 ? "M" : "L"}${r.x},${r.y}`);
  return t.push("Z"), t.join(" ");
}
d(nt, "createPathFromPoints");
function Ze(e, t, r, i, n, a) {
  const o = [], l = r - e, c = i - t, h = l / a, u = 2 * Math.PI / h, p = t + c / 2;
  for (let f = 0; f <= 50; f++) {
    const g = f / 50, m = e + g * l, y = p + n * Math.sin(u * (m - e));
    o.push({ x: m, y });
  }
  return o;
}
d(Ze, "generateFullSineWavePoints");
function Gi(e, t, r, i, n, a) {
  const o = [], s = n * Math.PI / 180, h = (a * Math.PI / 180 - s) / (i - 1);
  for (let u = 0; u < i; u++) {
    const p = s + u * h, f = e + r * Math.cos(p), g = t + r * Math.sin(p);
    o.push({ x: -f, y: -g });
  }
  return o;
}
d(Gi, "generateCirclePoints");
var Dv = /* @__PURE__ */ d((e, t) => {
  var r = e.x, i = e.y, n = t.x - r, a = t.y - i, o = e.width / 2, s = e.height / 2, l, c;
  return Math.abs(a) * o > Math.abs(n) * s ? (a < 0 && (s = -s), l = a === 0 ? 0 : s * n / a, c = s) : (n < 0 && (o = -o), l = o, c = n === 0 ? 0 : o * a / n), { x: r + l, y: i + c };
}, "intersectRect"), ii = Dv, Iv = /* @__PURE__ */ d(async (e, t, r, i = !1, n = !1) => {
  let a = t || "";
  typeof a == "object" && (a = a[0]);
  const o = ot(), s = It(o);
  return await Ne(
    e,
    a,
    {
      style: r,
      isTitle: i,
      useHtmlLabels: s,
      markdown: !1,
      isNode: n,
      width: Number.POSITIVE_INFINITY
    },
    o
  );
}, "createLabel"), je = Iv, Je = /* @__PURE__ */ d((e, t, r, i, n) => [
  "M",
  e + n,
  t,
  // Move to the first point
  "H",
  e + r - n,
  // Draw horizontal line to the beginning of the right corner
  "A",
  n,
  n,
  0,
  0,
  1,
  e + r,
  t + n,
  // Draw arc to the right top corner
  "V",
  t + i - n,
  // Draw vertical line down to the beginning of the right bottom corner
  "A",
  n,
  n,
  0,
  0,
  1,
  e + r - n,
  t + i,
  // Draw arc to the right bottom corner
  "H",
  e + n,
  // Draw horizontal line to the beginning of the left bottom corner
  "A",
  n,
  n,
  0,
  0,
  1,
  e,
  t + i - n,
  // Draw arc to the left bottom corner
  "V",
  t + n,
  // Draw vertical line up to the beginning of the left top corner
  "A",
  n,
  n,
  0,
  0,
  1,
  e + n,
  t,
  // Draw arc to the left top corner
  "Z"
  // Close the path
].join(" "), "createRoundedRectPathD"), Md = /* @__PURE__ */ d(async (e, t) => {
  A.info("Creating subgraph rect for ", t.id, t);
  const r = ot(), { themeVariables: i, handDrawnSeed: n } = r, { clusterBkg: a, clusterBorder: o } = i, { labelStyles: s, nodeStyles: l, borderStyles: c, backgroundStyles: h } = Y(t), u = e.insert("g").attr("class", "cluster " + t.cssClasses).attr("id", t.id).attr("data-look", t.look), p = It(r), f = u.insert("g").attr("class", "cluster-label ");
  let g;
  t.labelType === "markdown" ? g = await Ne(f, t.label, {
    style: t.labelStyle,
    useHtmlLabels: p,
    isNode: !0,
    width: t.width
  }) : g = await je(f, t.label, t.labelStyle || "", !1, !0);
  let m = g.getBBox();
  if (It(r)) {
    const T = g.children[0], B = et(g);
    m = T.getBoundingClientRect(), B.attr("width", m.width), B.attr("height", m.height);
  }
  const y = t.width <= m.width + t.padding ? m.width + t.padding : t.width;
  t.width <= m.width + t.padding ? t.diff = (y - t.width) / 2 - t.padding : t.diff = -t.padding;
  const x = t.height, b = t.x - y / 2, _ = t.y - x / 2;
  A.trace("Data ", t, JSON.stringify(t));
  let S;
  if (t.look === "handDrawn") {
    const T = H.svg(u), B = j(t, {
      roughness: 0.7,
      fill: a,
      // fill: 'red',
      stroke: o,
      fillWeight: 3,
      seed: n
    }), F = T.path(Je(b, _, y, x, 0), B);
    S = u.insert(() => (A.debug("Rough node insert CXC", F), F), ":first-child"), S.select("path:nth-child(2)").attr("style", c.join(";")), S.select("path").attr("style", h.join(";").replace("fill", "stroke"));
  } else
    S = u.insert("rect", ":first-child"), S.attr("style", l).attr("rx", t.rx).attr("ry", t.ry).attr("x", b).attr("y", _).attr("width", y).attr("height", x);
  const { subGraphTitleTopMargin: v } = ll(r);
  if (f.attr(
    "transform",
    // This puts the label on top of the box instead of inside it
    `translate(${t.x - m.width / 2}, ${t.y - t.height / 2 + v})`
  ), s) {
    const T = f.select("span");
    T && T.attr("style", s);
  }
  const C = S.node().getBBox();
  return t.offsetX = 0, t.width = C.width, t.height = C.height, t.offsetY = m.height - t.padding / 2, t.intersect = function(T) {
    return ii(t, T);
  }, { cluster: u, labelBBox: m };
}, "rect"), Pv = /* @__PURE__ */ d((e, t) => {
  const r = e.insert("g").attr("class", "note-cluster").attr("id", t.id), i = r.insert("rect", ":first-child"), n = 0 * t.padding, a = n / 2;
  i.attr("rx", t.rx).attr("ry", t.ry).attr("x", t.x - t.width / 2 - a).attr("y", t.y - t.height / 2 - a).attr("width", t.width + n).attr("height", t.height + n).attr("fill", "none");
  const o = i.node().getBBox();
  return t.width = o.width, t.height = o.height, t.intersect = function(s) {
    return ii(t, s);
  }, { cluster: r, labelBBox: { width: 0, height: 0 } };
}, "noteGroup"), Nv = /* @__PURE__ */ d(async (e, t) => {
  const r = ot(), { themeVariables: i, handDrawnSeed: n } = r, { altBackground: a, compositeBackground: o, compositeTitleBackground: s, nodeBorder: l } = i, c = e.insert("g").attr("class", t.cssClasses).attr("id", t.id).attr("data-id", t.id).attr("data-look", t.look), h = c.insert("g", ":first-child"), u = c.insert("g").attr("class", "cluster-label");
  let p = c.append("rect");
  const f = await je(u, t.label, t.labelStyle, void 0, !0);
  let g = f.getBBox();
  if (It(r)) {
    const F = f.children[0], P = et(f);
    g = F.getBoundingClientRect(), P.attr("width", g.width), P.attr("height", g.height);
  }
  const m = 0 * t.padding, y = m / 2, x = (t.width <= g.width + t.padding ? g.width + t.padding : t.width) + m;
  t.width <= g.width + t.padding ? t.diff = (x - t.width) / 2 - t.padding : t.diff = -t.padding;
  const b = t.height + m, _ = t.height + m - g.height - 6, S = t.x - x / 2, v = t.y - b / 2;
  t.width = x;
  const C = t.y - t.height / 2 - y + g.height + 2;
  let T;
  if (t.look === "handDrawn") {
    const F = t.cssClasses.includes("statediagram-cluster-alt"), P = H.svg(c), L = t.rx || t.ry ? P.path(Je(S, v, x, b, 10), {
      roughness: 0.7,
      fill: s,
      fillStyle: "solid",
      stroke: l,
      seed: n
    }) : P.rectangle(S, v, x, b, { seed: n });
    T = c.insert(() => L, ":first-child");
    const W = P.rectangle(S, C, x, _, {
      fill: F ? a : o,
      fillStyle: F ? "hachure" : "solid",
      stroke: l,
      seed: n
    });
    T = c.insert(() => L, ":first-child"), p = c.insert(() => W);
  } else
    T = h.insert("rect", ":first-child"), T.attr("class", "outer").attr("x", S).attr("y", v).attr("width", x).attr("height", b).attr("data-look", t.look), p.attr("class", "inner").attr("x", S).attr("y", C).attr("width", x).attr("height", _);
  u.attr(
    "transform",
    `translate(${t.x - g.width / 2}, ${v + 1 - (It(r) ? 0 : 3)})`
  );
  const B = T.node().getBBox();
  return t.height = B.height, t.offsetX = 0, t.offsetY = g.height - t.padding / 2, t.labelBBox = g, t.intersect = function(F) {
    return ii(t, F);
  }, { cluster: c, labelBBox: g };
}, "roundedWithTitle"), zv = /* @__PURE__ */ d(async (e, t) => {
  A.info("Creating subgraph rect for ", t.id, t);
  const r = ot(), { themeVariables: i, handDrawnSeed: n } = r, { clusterBkg: a, clusterBorder: o } = i, { labelStyles: s, nodeStyles: l, borderStyles: c, backgroundStyles: h } = Y(t), u = e.insert("g").attr("class", "cluster " + t.cssClasses).attr("id", t.id).attr("data-look", t.look), p = It(r), f = u.insert("g").attr("class", "cluster-label "), g = await Ne(f, t.label, {
    style: t.labelStyle,
    useHtmlLabels: p,
    isNode: !0,
    width: t.width
  });
  let m = g.getBBox();
  if (It(r)) {
    const T = g.children[0], B = et(g);
    m = T.getBoundingClientRect(), B.attr("width", m.width), B.attr("height", m.height);
  }
  const y = t.width <= m.width + t.padding ? m.width + t.padding : t.width;
  t.width <= m.width + t.padding ? t.diff = (y - t.width) / 2 - t.padding : t.diff = -t.padding;
  const x = t.height, b = t.x - y / 2, _ = t.y - x / 2;
  A.trace("Data ", t, JSON.stringify(t));
  let S;
  if (t.look === "handDrawn") {
    const T = H.svg(u), B = j(t, {
      roughness: 0.7,
      fill: a,
      // fill: 'red',
      stroke: o,
      fillWeight: 4,
      seed: n
    }), F = T.path(Je(b, _, y, x, t.rx), B);
    S = u.insert(() => (A.debug("Rough node insert CXC", F), F), ":first-child"), S.select("path:nth-child(2)").attr("style", c.join(";")), S.select("path").attr("style", h.join(";").replace("fill", "stroke"));
  } else
    S = u.insert("rect", ":first-child"), S.attr("style", l).attr("rx", t.rx).attr("ry", t.ry).attr("x", b).attr("y", _).attr("width", y).attr("height", x);
  const { subGraphTitleTopMargin: v } = ll(r);
  if (f.attr(
    "transform",
    // This puts the label on top of the box instead of inside it
    `translate(${t.x - m.width / 2}, ${t.y - t.height / 2 + v})`
  ), s) {
    const T = f.select("span");
    T && T.attr("style", s);
  }
  const C = S.node().getBBox();
  return t.offsetX = 0, t.width = C.width, t.height = C.height, t.offsetY = m.height - t.padding / 2, t.intersect = function(T) {
    return ii(t, T);
  }, { cluster: u, labelBBox: m };
}, "kanbanSection"), Wv = /* @__PURE__ */ d((e, t) => {
  const r = ot(), { themeVariables: i, handDrawnSeed: n } = r, { nodeBorder: a } = i, o = e.insert("g").attr("class", t.cssClasses).attr("id", t.id).attr("data-look", t.look), s = o.insert("g", ":first-child"), l = 0 * t.padding, c = t.width + l;
  t.diff = -t.padding;
  const h = t.height + l, u = t.x - c / 2, p = t.y - h / 2;
  t.width = c;
  let f;
  if (t.look === "handDrawn") {
    const y = H.svg(o).rectangle(u, p, c, h, {
      fill: "lightgrey",
      roughness: 0.5,
      strokeLineDash: [5],
      stroke: a,
      seed: n
    });
    f = o.insert(() => y, ":first-child");
  } else
    f = s.insert("rect", ":first-child"), f.attr("class", "divider").attr("x", u).attr("y", p).attr("width", c).attr("height", h).attr("data-look", t.look);
  const g = f.node().getBBox();
  return t.height = g.height, t.offsetX = 0, t.offsetY = 0, t.intersect = function(m) {
    return ii(t, m);
  }, { cluster: o, labelBBox: {} };
}, "divider"), qv = Md, Hv = {
  rect: Md,
  squareRect: qv,
  roundedWithTitle: Nv,
  noteGroup: Pv,
  divider: Wv,
  kanbanSection: zv
}, Ed = /* @__PURE__ */ new Map(), jv = /* @__PURE__ */ d(async (e, t) => {
  const r = t.shape || "rect", i = await Hv[r](e, t);
  return Ed.set(t.id, i), i;
}, "insertCluster"), AL = /* @__PURE__ */ d(() => {
  Ed = /* @__PURE__ */ new Map();
}, "clear");
function $d(e, t) {
  return e.intersect(t);
}
d($d, "intersectNode");
var Yv = $d;
function Fd(e, t, r, i) {
  var n = e.x, a = e.y, o = n - i.x, s = a - i.y, l = Math.sqrt(t * t * s * s + r * r * o * o), c = Math.abs(t * r * o / l);
  i.x < n && (c = -c);
  var h = Math.abs(t * r * s / l);
  return i.y < a && (h = -h), { x: n + c, y: a + h };
}
d(Fd, "intersectEllipse");
var Od = Fd;
function Rd(e, t, r) {
  return Od(e, t, t, r);
}
d(Rd, "intersectCircle");
var Uv = Rd;
function Dd(e, t, r, i) {
  {
    const n = t.y - e.y, a = e.x - t.x, o = t.x * e.y - e.x * t.y, s = n * r.x + a * r.y + o, l = n * i.x + a * i.y + o, c = 1e-6;
    if (s !== 0 && l !== 0 && po(s, l))
      return;
    const h = i.y - r.y, u = r.x - i.x, p = i.x * r.y - r.x * i.y, f = h * e.x + u * e.y + p, g = h * t.x + u * t.y + p;
    if (Math.abs(f) < c && Math.abs(g) < c && po(f, g))
      return;
    const m = n * u - h * a;
    if (m === 0)
      return;
    const y = Math.abs(m / 2);
    let x = a * p - u * o;
    const b = x < 0 ? (x - y) / m : (x + y) / m;
    x = h * o - n * p;
    const _ = x < 0 ? (x - y) / m : (x + y) / m;
    return { x: b, y: _ };
  }
}
d(Dd, "intersectLine");
function po(e, t) {
  return e * t > 0;
}
d(po, "sameSign");
var Gv = Dd;
function Id(e, t, r) {
  let i = e.x, n = e.y, a = [], o = Number.POSITIVE_INFINITY, s = Number.POSITIVE_INFINITY;
  typeof t.forEach == "function" ? t.forEach(function(h) {
    o = Math.min(o, h.x), s = Math.min(s, h.y);
  }) : (o = Math.min(o, t.x), s = Math.min(s, t.y));
  let l = i - e.width / 2 - o, c = n - e.height / 2 - s;
  for (let h = 0; h < t.length; h++) {
    let u = t[h], p = t[h < t.length - 1 ? h + 1 : 0], f = Gv(
      e,
      r,
      { x: l + u.x, y: c + u.y },
      { x: l + p.x, y: c + p.y }
    );
    f && a.push(f);
  }
  return a.length ? (a.length > 1 && a.sort(function(h, u) {
    let p = h.x - r.x, f = h.y - r.y, g = Math.sqrt(p * p + f * f), m = u.x - r.x, y = u.y - r.y, x = Math.sqrt(m * m + y * y);
    return g < x ? -1 : g === x ? 0 : 1;
  }), a[0]) : e;
}
d(Id, "intersectPolygon");
var Xv = Id, z = {
  node: Yv,
  circle: Uv,
  ellipse: Od,
  polygon: Xv,
  rect: ii
};
function Pd(e, t) {
  const { labelStyles: r } = Y(t);
  t.labelStyle = r;
  const i = K(t);
  let n = i;
  i || (n = "anchor");
  const a = e.insert("g").attr("class", n).attr("id", t.domId || t.id), o = 1, { cssStyles: s } = t, l = H.svg(a), c = j(t, { fill: "black", stroke: "none", fillStyle: "solid" });
  t.look !== "handDrawn" && (c.roughness = 0);
  const h = l.circle(0, 0, o * 2, c), u = a.insert(() => h, ":first-child");
  return u.attr("class", "anchor").attr("style", Dt(s)), G(t, u), t.intersect = function(p) {
    return A.info("Circle intersect", t, o, p), z.circle(t, o, p);
  }, a;
}
d(Pd, "anchor");
function go(e, t, r, i, n, a, o) {
  const l = (e + r) / 2, c = (t + i) / 2, h = Math.atan2(i - t, r - e), u = (r - e) / 2, p = (i - t) / 2, f = u / n, g = p / a, m = Math.sqrt(f ** 2 + g ** 2);
  if (m > 1)
    throw new Error("The given radii are too small to create an arc between the points.");
  const y = Math.sqrt(1 - m ** 2), x = l + y * a * Math.sin(h) * (o ? -1 : 1), b = c - y * n * Math.cos(h) * (o ? -1 : 1), _ = Math.atan2((t - b) / a, (e - x) / n);
  let v = Math.atan2((i - b) / a, (r - x) / n) - _;
  o && v < 0 && (v += 2 * Math.PI), !o && v > 0 && (v -= 2 * Math.PI);
  const C = [];
  for (let T = 0; T < 20; T++) {
    const B = T / 19, F = _ + B * v, P = x + n * Math.cos(F), L = b + a * Math.sin(F);
    C.push({ x: P, y: L });
  }
  return C;
}
d(go, "generateArcPoints");
async function Nd(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a } = await Q(e, t, K(t)), o = a.width + t.padding + 20, s = a.height + t.padding, l = s / 2, c = l / (2.5 + s / 50), { cssStyles: h } = t, u = [
    { x: o / 2, y: -s / 2 },
    { x: -o / 2, y: -s / 2 },
    ...go(-o / 2, -s / 2, -o / 2, s / 2, c, l, !1),
    { x: o / 2, y: s / 2 },
    ...go(o / 2, s / 2, o / 2, -s / 2, c, l, !0)
  ], p = H.svg(n), f = j(t, {});
  t.look !== "handDrawn" && (f.roughness = 0, f.fillStyle = "solid");
  const g = nt(u), m = p.path(g, f), y = n.insert(() => m, ":first-child");
  return y.attr("class", "basic label-container"), h && t.look !== "handDrawn" && y.selectAll("path").attr("style", h), i && t.look !== "handDrawn" && y.selectAll("path").attr("style", i), y.attr("transform", `translate(${c / 2}, 0)`), G(t, y), t.intersect = function(x) {
    return z.polygon(t, u, x);
  }, n;
}
d(Nd, "bowTieRect");
function ze(e, t, r, i) {
  return e.insert("polygon", ":first-child").attr(
    "points",
    i.map(function(n) {
      return n.x + "," + n.y;
    }).join(" ")
  ).attr("class", "label-container").attr("transform", "translate(" + -t / 2 + "," + r / 2 + ")");
}
d(ze, "insertPolygonShape");
async function zd(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a } = await Q(e, t, K(t)), o = a.height + t.padding, s = 12, l = a.width + t.padding + s, c = 0, h = l, u = -o, p = 0, f = [
    { x: c + s, y: u },
    { x: h, y: u },
    { x: h, y: p },
    { x: c, y: p },
    { x: c, y: u + s },
    { x: c + s, y: u }
  ];
  let g;
  const { cssStyles: m } = t;
  if (t.look === "handDrawn") {
    const y = H.svg(n), x = j(t, {}), b = nt(f), _ = y.path(b, x);
    g = n.insert(() => _, ":first-child").attr("transform", `translate(${-l / 2}, ${o / 2})`), m && g.attr("style", m);
  } else
    g = ze(n, l, o, f);
  return i && g.attr("style", i), G(t, g), t.intersect = function(y) {
    return z.polygon(t, f, y);
  }, n;
}
d(zd, "card");
function Wd(e, t) {
  const { nodeStyles: r } = Y(t);
  t.label = "";
  const i = e.insert("g").attr("class", K(t)).attr("id", t.domId ?? t.id), { cssStyles: n } = t, a = Math.max(28, t.width ?? 0), o = [
    { x: 0, y: a / 2 },
    { x: a / 2, y: 0 },
    { x: 0, y: -a / 2 },
    { x: -a / 2, y: 0 }
  ], s = H.svg(i), l = j(t, {});
  t.look !== "handDrawn" && (l.roughness = 0, l.fillStyle = "solid");
  const c = nt(o), h = s.path(c, l), u = i.insert(() => h, ":first-child");
  return n && t.look !== "handDrawn" && u.selectAll("path").attr("style", n), r && t.look !== "handDrawn" && u.selectAll("path").attr("style", r), t.width = 28, t.height = 28, t.intersect = function(p) {
    return z.polygon(t, o, p);
  }, i;
}
d(Wd, "choice");
async function _l(e, t, r) {
  const { labelStyles: i, nodeStyles: n } = Y(t);
  t.labelStyle = i;
  const { shapeSvg: a, bbox: o, halfPadding: s } = await Q(e, t, K(t)), l = (r == null ? void 0 : r.padding) ?? s, c = o.width / 2 + l;
  let h;
  const { cssStyles: u } = t;
  if (t.look === "handDrawn") {
    const p = H.svg(a), f = j(t, {}), g = p.circle(0, 0, c * 2, f);
    h = a.insert(() => g, ":first-child"), h.attr("class", "basic label-container").attr("style", Dt(u));
  } else
    h = a.insert("circle", ":first-child").attr("class", "basic label-container").attr("style", n).attr("r", c).attr("cx", 0).attr("cy", 0);
  return G(t, h), t.calcIntersect = function(p, f) {
    const g = p.width / 2;
    return z.circle(p, g, f);
  }, t.intersect = function(p) {
    return A.info("Circle intersect", t, c, p), z.circle(t, c, p);
  }, a;
}
d(_l, "circle");
function qd(e) {
  const t = Math.cos(Math.PI / 4), r = Math.sin(Math.PI / 4), i = e * 2, n = { x: i / 2 * t, y: i / 2 * r }, a = { x: -(i / 2) * t, y: i / 2 * r }, o = { x: -(i / 2) * t, y: -(i / 2) * r }, s = { x: i / 2 * t, y: -(i / 2) * r };
  return `M ${a.x},${a.y} L ${s.x},${s.y}
                   M ${n.x},${n.y} L ${o.x},${o.y}`;
}
d(qd, "createLine");
function Hd(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r, t.label = "";
  const n = e.insert("g").attr("class", K(t)).attr("id", t.domId ?? t.id), a = Math.max(30, (t == null ? void 0 : t.width) ?? 0), { cssStyles: o } = t, s = H.svg(n), l = j(t, {});
  t.look !== "handDrawn" && (l.roughness = 0, l.fillStyle = "solid");
  const c = s.circle(0, 0, a * 2, l), h = qd(a), u = s.path(h, l), p = n.insert(() => c, ":first-child");
  return p.insert(() => u), o && t.look !== "handDrawn" && p.selectAll("path").attr("style", o), i && t.look !== "handDrawn" && p.selectAll("path").attr("style", i), G(t, p), t.intersect = function(f) {
    return A.info("crossedCircle intersect", t, { radius: a, point: f }), z.circle(t, a, f);
  }, n;
}
d(Hd, "crossedCircle");
function $e(e, t, r, i = 100, n = 0, a = 180) {
  const o = [], s = n * Math.PI / 180, h = (a * Math.PI / 180 - s) / (i - 1);
  for (let u = 0; u < i; u++) {
    const p = s + u * h, f = e + r * Math.cos(p), g = t + r * Math.sin(p);
    o.push({ x: -f, y: -g });
  }
  return o;
}
d($e, "generateCirclePoints");
async function jd(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a, label: o } = await Q(e, t, K(t)), s = a.width + (t.padding ?? 0), l = a.height + (t.padding ?? 0), c = Math.max(5, l * 0.1), { cssStyles: h } = t, u = [
    ...$e(s / 2, -l / 2, c, 30, -90, 0),
    { x: -s / 2 - c, y: c },
    ...$e(s / 2 + c * 2, -c, c, 20, -180, -270),
    ...$e(s / 2 + c * 2, c, c, 20, -90, -180),
    { x: -s / 2 - c, y: -l / 2 },
    ...$e(s / 2, l / 2, c, 20, 0, 90)
  ], p = [
    { x: s / 2, y: -l / 2 - c },
    { x: -s / 2, y: -l / 2 - c },
    ...$e(s / 2, -l / 2, c, 20, -90, 0),
    { x: -s / 2 - c, y: -c },
    ...$e(s / 2 + s * 0.1, -c, c, 20, -180, -270),
    ...$e(s / 2 + s * 0.1, c, c, 20, -90, -180),
    { x: -s / 2 - c, y: l / 2 },
    ...$e(s / 2, l / 2, c, 20, 0, 90),
    { x: -s / 2, y: l / 2 + c },
    { x: s / 2, y: l / 2 + c }
  ], f = H.svg(n), g = j(t, { fill: "none" });
  t.look !== "handDrawn" && (g.roughness = 0, g.fillStyle = "solid");
  const y = nt(u).replace("Z", ""), x = f.path(y, g), b = nt(p), _ = f.path(b, { ...g }), S = n.insert("g", ":first-child");
  return S.insert(() => _, ":first-child").attr("stroke-opacity", 0), S.insert(() => x, ":first-child"), S.attr("class", "text"), h && t.look !== "handDrawn" && S.selectAll("path").attr("style", h), i && t.look !== "handDrawn" && S.selectAll("path").attr("style", i), S.attr("transform", `translate(${c}, 0)`), o.attr(
    "transform",
    `translate(${-s / 2 + c - (a.x - (a.left ?? 0))},${-l / 2 + (t.padding ?? 0) / 2 - (a.y - (a.top ?? 0))})`
  ), G(t, S), t.intersect = function(v) {
    return z.polygon(t, p, v);
  }, n;
}
d(jd, "curlyBraceLeft");
function Fe(e, t, r, i = 100, n = 0, a = 180) {
  const o = [], s = n * Math.PI / 180, h = (a * Math.PI / 180 - s) / (i - 1);
  for (let u = 0; u < i; u++) {
    const p = s + u * h, f = e + r * Math.cos(p), g = t + r * Math.sin(p);
    o.push({ x: f, y: g });
  }
  return o;
}
d(Fe, "generateCirclePoints");
async function Yd(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a, label: o } = await Q(e, t, K(t)), s = a.width + (t.padding ?? 0), l = a.height + (t.padding ?? 0), c = Math.max(5, l * 0.1), { cssStyles: h } = t, u = [
    ...Fe(s / 2, -l / 2, c, 20, -90, 0),
    { x: s / 2 + c, y: -c },
    ...Fe(s / 2 + c * 2, -c, c, 20, -180, -270),
    ...Fe(s / 2 + c * 2, c, c, 20, -90, -180),
    { x: s / 2 + c, y: l / 2 },
    ...Fe(s / 2, l / 2, c, 20, 0, 90)
  ], p = [
    { x: -s / 2, y: -l / 2 - c },
    { x: s / 2, y: -l / 2 - c },
    ...Fe(s / 2, -l / 2, c, 20, -90, 0),
    { x: s / 2 + c, y: -c },
    ...Fe(s / 2 + c * 2, -c, c, 20, -180, -270),
    ...Fe(s / 2 + c * 2, c, c, 20, -90, -180),
    { x: s / 2 + c, y: l / 2 },
    ...Fe(s / 2, l / 2, c, 20, 0, 90),
    { x: s / 2, y: l / 2 + c },
    { x: -s / 2, y: l / 2 + c }
  ], f = H.svg(n), g = j(t, { fill: "none" });
  t.look !== "handDrawn" && (g.roughness = 0, g.fillStyle = "solid");
  const y = nt(u).replace("Z", ""), x = f.path(y, g), b = nt(p), _ = f.path(b, { ...g }), S = n.insert("g", ":first-child");
  return S.insert(() => _, ":first-child").attr("stroke-opacity", 0), S.insert(() => x, ":first-child"), S.attr("class", "text"), h && t.look !== "handDrawn" && S.selectAll("path").attr("style", h), i && t.look !== "handDrawn" && S.selectAll("path").attr("style", i), S.attr("transform", `translate(${-c}, 0)`), o.attr(
    "transform",
    `translate(${-s / 2 + (t.padding ?? 0) / 2 - (a.x - (a.left ?? 0))},${-l / 2 + (t.padding ?? 0) / 2 - (a.y - (a.top ?? 0))})`
  ), G(t, S), t.intersect = function(v) {
    return z.polygon(t, p, v);
  }, n;
}
d(Yd, "curlyBraceRight");
function Bt(e, t, r, i = 100, n = 0, a = 180) {
  const o = [], s = n * Math.PI / 180, h = (a * Math.PI / 180 - s) / (i - 1);
  for (let u = 0; u < i; u++) {
    const p = s + u * h, f = e + r * Math.cos(p), g = t + r * Math.sin(p);
    o.push({ x: -f, y: -g });
  }
  return o;
}
d(Bt, "generateCirclePoints");
async function Ud(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a, label: o } = await Q(e, t, K(t)), s = a.width + (t.padding ?? 0), l = a.height + (t.padding ?? 0), c = Math.max(5, l * 0.1), { cssStyles: h } = t, u = [
    ...Bt(s / 2, -l / 2, c, 30, -90, 0),
    { x: -s / 2 - c, y: c },
    ...Bt(s / 2 + c * 2, -c, c, 20, -180, -270),
    ...Bt(s / 2 + c * 2, c, c, 20, -90, -180),
    { x: -s / 2 - c, y: -l / 2 },
    ...Bt(s / 2, l / 2, c, 20, 0, 90)
  ], p = [
    ...Bt(-s / 2 + c + c / 2, -l / 2, c, 20, -90, -180),
    { x: s / 2 - c / 2, y: c },
    ...Bt(-s / 2 - c / 2, -c, c, 20, 0, 90),
    ...Bt(-s / 2 - c / 2, c, c, 20, -90, 0),
    { x: s / 2 - c / 2, y: -c },
    ...Bt(-s / 2 + c + c / 2, l / 2, c, 30, -180, -270)
  ], f = [
    { x: s / 2, y: -l / 2 - c },
    { x: -s / 2, y: -l / 2 - c },
    ...Bt(s / 2, -l / 2, c, 20, -90, 0),
    { x: -s / 2 - c, y: -c },
    ...Bt(s / 2 + c * 2, -c, c, 20, -180, -270),
    ...Bt(s / 2 + c * 2, c, c, 20, -90, -180),
    { x: -s / 2 - c, y: l / 2 },
    ...Bt(s / 2, l / 2, c, 20, 0, 90),
    { x: -s / 2, y: l / 2 + c },
    { x: s / 2 - c - c / 2, y: l / 2 + c },
    ...Bt(-s / 2 + c + c / 2, -l / 2, c, 20, -90, -180),
    { x: s / 2 - c / 2, y: c },
    ...Bt(-s / 2 - c / 2, -c, c, 20, 0, 90),
    ...Bt(-s / 2 - c / 2, c, c, 20, -90, 0),
    { x: s / 2 - c / 2, y: -c },
    ...Bt(-s / 2 + c + c / 2, l / 2, c, 30, -180, -270)
  ], g = H.svg(n), m = j(t, { fill: "none" });
  t.look !== "handDrawn" && (m.roughness = 0, m.fillStyle = "solid");
  const x = nt(u).replace("Z", ""), b = g.path(x, m), S = nt(p).replace("Z", ""), v = g.path(S, m), C = nt(f), T = g.path(C, { ...m }), B = n.insert("g", ":first-child");
  return B.insert(() => T, ":first-child").attr("stroke-opacity", 0), B.insert(() => b, ":first-child"), B.insert(() => v, ":first-child"), B.attr("class", "text"), h && t.look !== "handDrawn" && B.selectAll("path").attr("style", h), i && t.look !== "handDrawn" && B.selectAll("path").attr("style", i), B.attr("transform", `translate(${c - c / 4}, 0)`), o.attr(
    "transform",
    `translate(${-s / 2 + (t.padding ?? 0) / 2 - (a.x - (a.left ?? 0))},${-l / 2 + (t.padding ?? 0) / 2 - (a.y - (a.top ?? 0))})`
  ), G(t, B), t.intersect = function(F) {
    return z.polygon(t, f, F);
  }, n;
}
d(Ud, "curlyBraces");
async function Gd(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a } = await Q(e, t, K(t)), o = 80, s = 20, l = Math.max(o, (a.width + (t.padding ?? 0) * 2) * 1.25, (t == null ? void 0 : t.width) ?? 0), c = Math.max(s, a.height + (t.padding ?? 0) * 2, (t == null ? void 0 : t.height) ?? 0), h = c / 2, { cssStyles: u } = t, p = H.svg(n), f = j(t, {});
  t.look !== "handDrawn" && (f.roughness = 0, f.fillStyle = "solid");
  const g = l, m = c, y = g - h, x = m / 4, b = [
    { x: y, y: 0 },
    { x, y: 0 },
    { x: 0, y: m / 2 },
    { x, y: m },
    { x: y, y: m },
    ...Gi(-y, -m / 2, h, 50, 270, 90)
  ], _ = nt(b), S = p.path(_, f), v = n.insert(() => S, ":first-child");
  return v.attr("class", "basic label-container"), u && t.look !== "handDrawn" && v.selectChildren("path").attr("style", u), i && t.look !== "handDrawn" && v.selectChildren("path").attr("style", i), v.attr("transform", `translate(${-l / 2}, ${-c / 2})`), G(t, v), t.intersect = function(C) {
    return z.polygon(t, b, C);
  }, n;
}
d(Gd, "curvedTrapezoid");
var Vv = /* @__PURE__ */ d((e, t, r, i, n, a) => [
  `M${e},${t + a}`,
  `a${n},${a} 0,0,0 ${r},0`,
  `a${n},${a} 0,0,0 ${-r},0`,
  `l0,${i}`,
  `a${n},${a} 0,0,0 ${r},0`,
  `l0,${-i}`
].join(" "), "createCylinderPathD"), Zv = /* @__PURE__ */ d((e, t, r, i, n, a) => [
  `M${e},${t + a}`,
  `M${e + r},${t + a}`,
  `a${n},${a} 0,0,0 ${-r},0`,
  `l0,${i}`,
  `a${n},${a} 0,0,0 ${r},0`,
  `l0,${-i}`
].join(" "), "createOuterCylinderPathD"), Kv = /* @__PURE__ */ d((e, t, r, i, n, a) => [`M${e - r / 2},${-i / 2}`, `a${n},${a} 0,0,0 ${r},0`].join(" "), "createInnerCylinderPathD");
async function Xd(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a, label: o } = await Q(e, t, K(t)), s = Math.max(a.width + t.padding, t.width ?? 0), l = s / 2, c = l / (2.5 + s / 50), h = Math.max(a.height + c + t.padding, t.height ?? 0);
  let u;
  const { cssStyles: p } = t;
  if (t.look === "handDrawn") {
    const f = H.svg(n), g = Zv(0, 0, s, h, l, c), m = Kv(0, c, s, h, l, c), y = f.path(g, j(t, {})), x = f.path(m, j(t, { fill: "none" }));
    u = n.insert(() => x, ":first-child"), u = n.insert(() => y, ":first-child"), u.attr("class", "basic label-container"), p && u.attr("style", p);
  } else {
    const f = Vv(0, 0, s, h, l, c);
    u = n.insert("path", ":first-child").attr("d", f).attr("class", "basic label-container").attr("style", Dt(p)).attr("style", i);
  }
  return u.attr("label-offset-y", c), u.attr("transform", `translate(${-s / 2}, ${-(h / 2 + c)})`), G(t, u), o.attr(
    "transform",
    `translate(${-(a.width / 2) - (a.x - (a.left ?? 0))}, ${-(a.height / 2) + (t.padding ?? 0) / 1.5 - (a.y - (a.top ?? 0))})`
  ), t.intersect = function(f) {
    const g = z.rect(t, f), m = g.x - (t.x ?? 0);
    if (l != 0 && (Math.abs(m) < (t.width ?? 0) / 2 || Math.abs(m) == (t.width ?? 0) / 2 && Math.abs(g.y - (t.y ?? 0)) > (t.height ?? 0) / 2 - c)) {
      let y = c * c * (1 - m * m / (l * l));
      y > 0 && (y = Math.sqrt(y)), y = c - y, f.y - (t.y ?? 0) > 0 && (y = -y), g.y += y;
    }
    return g;
  }, n;
}
d(Xd, "cylinder");
async function Vd(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a, label: o } = await Q(e, t, K(t)), s = a.width + t.padding, l = a.height + t.padding, c = l * 0.2, h = -s / 2, u = -l / 2 - c / 2, { cssStyles: p } = t, f = H.svg(n), g = j(t, {});
  t.look !== "handDrawn" && (g.roughness = 0, g.fillStyle = "solid");
  const m = [
    { x: h, y: u + c },
    { x: -h, y: u + c },
    { x: -h, y: -u },
    { x: h, y: -u },
    { x: h, y: u },
    { x: -h, y: u },
    { x: -h, y: u + c }
  ], y = f.polygon(
    m.map((b) => [b.x, b.y]),
    g
  ), x = n.insert(() => y, ":first-child");
  return x.attr("class", "basic label-container"), p && t.look !== "handDrawn" && x.selectAll("path").attr("style", p), i && t.look !== "handDrawn" && x.selectAll("path").attr("style", i), o.attr(
    "transform",
    `translate(${h + (t.padding ?? 0) / 2 - (a.x - (a.left ?? 0))}, ${u + c + (t.padding ?? 0) / 2 - (a.y - (a.top ?? 0))})`
  ), G(t, x), t.intersect = function(b) {
    return z.rect(t, b);
  }, n;
}
d(Vd, "dividedRectangle");
async function Zd(e, t) {
  var p, f;
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a, halfPadding: o } = await Q(e, t, K(t)), l = a.width / 2 + o + 5, c = a.width / 2 + o;
  let h;
  const { cssStyles: u } = t;
  if (t.look === "handDrawn") {
    const g = H.svg(n), m = j(t, { roughness: 0.2, strokeWidth: 2.5 }), y = j(t, { roughness: 0.2, strokeWidth: 1.5 }), x = g.circle(0, 0, l * 2, m), b = g.circle(0, 0, c * 2, y);
    h = n.insert("g", ":first-child"), h.attr("class", Dt(t.cssClasses)).attr("style", Dt(u)), (p = h.node()) == null || p.appendChild(x), (f = h.node()) == null || f.appendChild(b);
  } else {
    h = n.insert("g", ":first-child");
    const g = h.insert("circle", ":first-child"), m = h.insert("circle");
    h.attr("class", "basic label-container").attr("style", i), g.attr("class", "outer-circle").attr("style", i).attr("r", l).attr("cx", 0).attr("cy", 0), m.attr("class", "inner-circle").attr("style", i).attr("r", c).attr("cx", 0).attr("cy", 0);
  }
  return G(t, h), t.intersect = function(g) {
    return A.info("DoubleCircle intersect", t, l, g), z.circle(t, l, g);
  }, n;
}
d(Zd, "doublecircle");
function Kd(e, t, { config: { themeVariables: r } }) {
  const { labelStyles: i, nodeStyles: n } = Y(t);
  t.label = "", t.labelStyle = i;
  const a = e.insert("g").attr("class", K(t)).attr("id", t.domId ?? t.id), o = 7, { cssStyles: s } = t, l = H.svg(a), { nodeBorder: c } = r, h = j(t, { fillStyle: "solid" });
  t.look !== "handDrawn" && (h.roughness = 0);
  const u = l.circle(0, 0, o * 2, h), p = a.insert(() => u, ":first-child");
  return p.selectAll("path").attr("style", `fill: ${c} !important;`), s && s.length > 0 && t.look !== "handDrawn" && p.selectAll("path").attr("style", s), n && t.look !== "handDrawn" && p.selectAll("path").attr("style", n), G(t, p), t.intersect = function(f) {
    return A.info("filledCircle intersect", t, { radius: o, point: f }), z.circle(t, o, f);
  }, a;
}
d(Kd, "filledCircle");
async function Qd(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a, label: o } = await Q(e, t, K(t)), s = a.width + (t.padding ?? 0), l = s + a.height, c = s + a.height, h = [
    { x: 0, y: -l },
    { x: c, y: -l },
    { x: c / 2, y: 0 }
  ], { cssStyles: u } = t, p = H.svg(n), f = j(t, {});
  t.look !== "handDrawn" && (f.roughness = 0, f.fillStyle = "solid");
  const g = nt(h), m = p.path(g, f), y = n.insert(() => m, ":first-child").attr("transform", `translate(${-l / 2}, ${l / 2})`);
  return u && t.look !== "handDrawn" && y.selectChildren("path").attr("style", u), i && t.look !== "handDrawn" && y.selectChildren("path").attr("style", i), t.width = s, t.height = l, G(t, y), o.attr(
    "transform",
    `translate(${-a.width / 2 - (a.x - (a.left ?? 0))}, ${-l / 2 + (t.padding ?? 0) / 2 + (a.y - (a.top ?? 0))})`
  ), t.intersect = function(x) {
    return A.info("Triangle intersect", t, h, x), z.polygon(t, h, x);
  }, n;
}
d(Qd, "flippedTriangle");
function Jd(e, t, { dir: r, config: { state: i, themeVariables: n } }) {
  const { nodeStyles: a } = Y(t);
  t.label = "";
  const o = e.insert("g").attr("class", K(t)).attr("id", t.domId ?? t.id), { cssStyles: s } = t;
  let l = Math.max(70, (t == null ? void 0 : t.width) ?? 0), c = Math.max(10, (t == null ? void 0 : t.height) ?? 0);
  r === "LR" && (l = Math.max(10, (t == null ? void 0 : t.width) ?? 0), c = Math.max(70, (t == null ? void 0 : t.height) ?? 0));
  const h = -1 * l / 2, u = -1 * c / 2, p = H.svg(o), f = j(t, {
    stroke: n.lineColor,
    fill: n.lineColor
  });
  t.look !== "handDrawn" && (f.roughness = 0, f.fillStyle = "solid");
  const g = p.rectangle(h, u, l, c, f), m = o.insert(() => g, ":first-child");
  s && t.look !== "handDrawn" && m.selectAll("path").attr("style", s), a && t.look !== "handDrawn" && m.selectAll("path").attr("style", a), G(t, m);
  const y = (i == null ? void 0 : i.padding) ?? 0;
  return t.width && t.height && (t.width += y / 2 || 0, t.height += y / 2 || 0), t.intersect = function(x) {
    return z.rect(t, x);
  }, o;
}
d(Jd, "forkJoin");
async function tg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const n = 80, a = 50, { shapeSvg: o, bbox: s } = await Q(e, t, K(t)), l = Math.max(n, s.width + (t.padding ?? 0) * 2, (t == null ? void 0 : t.width) ?? 0), c = Math.max(a, s.height + (t.padding ?? 0) * 2, (t == null ? void 0 : t.height) ?? 0), h = c / 2, { cssStyles: u } = t, p = H.svg(o), f = j(t, {});
  t.look !== "handDrawn" && (f.roughness = 0, f.fillStyle = "solid");
  const g = [
    { x: -l / 2, y: -c / 2 },
    { x: l / 2 - h, y: -c / 2 },
    ...Gi(-l / 2 + h, 0, h, 50, 90, 270),
    { x: l / 2 - h, y: c / 2 },
    { x: -l / 2, y: c / 2 }
  ], m = nt(g), y = p.path(m, f), x = o.insert(() => y, ":first-child");
  return x.attr("class", "basic label-container"), u && t.look !== "handDrawn" && x.selectChildren("path").attr("style", u), i && t.look !== "handDrawn" && x.selectChildren("path").attr("style", i), G(t, x), t.intersect = function(b) {
    return A.info("Pill intersect", t, { radius: h, point: b }), z.polygon(t, g, b);
  }, o;
}
d(tg, "halfRoundedRectangle");
var Qv = /* @__PURE__ */ d((e, t, r, i, n) => [
  `M${e + n},${t}`,
  `L${e + r - n},${t}`,
  `L${e + r},${t - i / 2}`,
  `L${e + r - n},${t - i}`,
  `L${e + n},${t - i}`,
  `L${e},${t - i / 2}`,
  "Z"
].join(" "), "createHexagonPathD");
async function eg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a } = await Q(e, t, K(t)), o = 4, s = a.height + t.padding, l = s / o, c = a.width + 2 * l + t.padding, h = [
    { x: l, y: 0 },
    { x: c - l, y: 0 },
    { x: c, y: -s / 2 },
    { x: c - l, y: -s },
    { x: l, y: -s },
    { x: 0, y: -s / 2 }
  ];
  let u;
  const { cssStyles: p } = t;
  if (t.look === "handDrawn") {
    const f = H.svg(n), g = j(t, {}), m = Qv(0, 0, c, s, l), y = f.path(m, g);
    u = n.insert(() => y, ":first-child").attr("transform", `translate(${-c / 2}, ${s / 2})`), p && u.attr("style", p);
  } else
    u = ze(n, c, s, h);
  return i && u.attr("style", i), t.width = c, t.height = s, G(t, u), t.intersect = function(f) {
    return z.polygon(t, h, f);
  }, n;
}
d(eg, "hexagon");
async function rg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.label = "", t.labelStyle = r;
  const { shapeSvg: n } = await Q(e, t, K(t)), a = Math.max(30, (t == null ? void 0 : t.width) ?? 0), o = Math.max(30, (t == null ? void 0 : t.height) ?? 0), { cssStyles: s } = t, l = H.svg(n), c = j(t, {});
  t.look !== "handDrawn" && (c.roughness = 0, c.fillStyle = "solid");
  const h = [
    { x: 0, y: 0 },
    { x: a, y: 0 },
    { x: 0, y: o },
    { x: a, y: o }
  ], u = nt(h), p = l.path(u, c), f = n.insert(() => p, ":first-child");
  return f.attr("class", "basic label-container"), s && t.look !== "handDrawn" && f.selectChildren("path").attr("style", s), i && t.look !== "handDrawn" && f.selectChildren("path").attr("style", i), f.attr("transform", `translate(${-a / 2}, ${-o / 2})`), G(t, f), t.intersect = function(g) {
    return A.info("Pill intersect", t, { points: h }), z.polygon(t, h, g);
  }, n;
}
d(rg, "hourglass");
async function ig(e, t, { config: { themeVariables: r, flowchart: i } }) {
  const { labelStyles: n } = Y(t);
  t.labelStyle = n;
  const a = t.assetHeight ?? 48, o = t.assetWidth ?? 48, s = Math.max(a, o), l = i == null ? void 0 : i.wrappingWidth;
  t.width = Math.max(s, l ?? 0);
  const { shapeSvg: c, bbox: h, label: u } = await Q(e, t, "icon-shape default"), p = t.pos === "t", f = s, g = s, { nodeBorder: m } = r, { stylesMap: y } = ri(t), x = -g / 2, b = -f / 2, _ = t.label ? 8 : 0, S = H.svg(c), v = j(t, { stroke: "none", fill: "none" });
  t.look !== "handDrawn" && (v.roughness = 0, v.fillStyle = "solid");
  const C = S.rectangle(x, b, g, f, v), T = Math.max(g, h.width), B = f + h.height + _, F = S.rectangle(-T / 2, -B / 2, T, B, {
    ...v,
    fill: "transparent",
    stroke: "none"
  }), P = c.insert(() => C, ":first-child"), L = c.insert(() => F);
  if (t.icon) {
    const W = c.append("g");
    W.html(
      `<g>${await sn(t.icon, {
        height: s,
        width: s,
        fallbackPrefix: ""
      })}</g>`
    );
    const M = W.node().getBBox(), E = M.width, N = M.height, R = M.x, O = M.y;
    W.attr(
      "transform",
      `translate(${-E / 2 - R},${p ? h.height / 2 + _ / 2 - N / 2 - O : -h.height / 2 - _ / 2 - N / 2 - O})`
    ), W.attr("style", `color: ${y.get("stroke") ?? m};`);
  }
  return u.attr(
    "transform",
    `translate(${-h.width / 2 - (h.x - (h.left ?? 0))},${p ? -B / 2 : B / 2 - h.height})`
  ), P.attr(
    "transform",
    `translate(0,${p ? h.height / 2 + _ / 2 : -h.height / 2 - _ / 2})`
  ), G(t, L), t.intersect = function(W) {
    if (A.info("iconSquare intersect", t, W), !t.label)
      return z.rect(t, W);
    const M = t.x ?? 0, E = t.y ?? 0, N = t.height ?? 0;
    let R = [];
    return p ? R = [
      { x: M - h.width / 2, y: E - N / 2 },
      { x: M + h.width / 2, y: E - N / 2 },
      { x: M + h.width / 2, y: E - N / 2 + h.height + _ },
      { x: M + g / 2, y: E - N / 2 + h.height + _ },
      { x: M + g / 2, y: E + N / 2 },
      { x: M - g / 2, y: E + N / 2 },
      { x: M - g / 2, y: E - N / 2 + h.height + _ },
      { x: M - h.width / 2, y: E - N / 2 + h.height + _ }
    ] : R = [
      { x: M - g / 2, y: E - N / 2 },
      { x: M + g / 2, y: E - N / 2 },
      { x: M + g / 2, y: E - N / 2 + f },
      { x: M + h.width / 2, y: E - N / 2 + f },
      { x: M + h.width / 2 / 2, y: E + N / 2 },
      { x: M - h.width / 2, y: E + N / 2 },
      { x: M - h.width / 2, y: E - N / 2 + f },
      { x: M - g / 2, y: E - N / 2 + f }
    ], z.polygon(t, R, W);
  }, c;
}
d(ig, "icon");
async function ng(e, t, { config: { themeVariables: r, flowchart: i } }) {
  const { labelStyles: n } = Y(t);
  t.labelStyle = n;
  const a = t.assetHeight ?? 48, o = t.assetWidth ?? 48, s = Math.max(a, o), l = i == null ? void 0 : i.wrappingWidth;
  t.width = Math.max(s, l ?? 0);
  const { shapeSvg: c, bbox: h, label: u } = await Q(e, t, "icon-shape default"), p = 20, f = t.label ? 8 : 0, g = t.pos === "t", { nodeBorder: m, mainBkg: y } = r, { stylesMap: x } = ri(t), b = H.svg(c), _ = j(t, {});
  t.look !== "handDrawn" && (_.roughness = 0, _.fillStyle = "solid");
  const S = x.get("fill");
  _.stroke = S ?? y;
  const v = c.append("g");
  t.icon && v.html(
    `<g>${await sn(t.icon, {
      height: s,
      width: s,
      fallbackPrefix: ""
    })}</g>`
  );
  const C = v.node().getBBox(), T = C.width, B = C.height, F = C.x, P = C.y, L = Math.max(T, B) * Math.SQRT2 + p * 2, W = b.circle(0, 0, L, _), M = Math.max(L, h.width), E = L + h.height + f, N = b.rectangle(-M / 2, -E / 2, M, E, {
    ..._,
    fill: "transparent",
    stroke: "none"
  }), R = c.insert(() => W, ":first-child"), O = c.insert(() => N);
  return v.attr(
    "transform",
    `translate(${-T / 2 - F},${g ? h.height / 2 + f / 2 - B / 2 - P : -h.height / 2 - f / 2 - B / 2 - P})`
  ), v.attr("style", `color: ${x.get("stroke") ?? m};`), u.attr(
    "transform",
    `translate(${-h.width / 2 - (h.x - (h.left ?? 0))},${g ? -E / 2 : E / 2 - h.height})`
  ), R.attr(
    "transform",
    `translate(0,${g ? h.height / 2 + f / 2 : -h.height / 2 - f / 2})`
  ), G(t, O), t.intersect = function(I) {
    return A.info("iconSquare intersect", t, I), z.rect(t, I);
  }, c;
}
d(ng, "iconCircle");
async function ag(e, t, { config: { themeVariables: r, flowchart: i } }) {
  const { labelStyles: n } = Y(t);
  t.labelStyle = n;
  const a = t.assetHeight ?? 48, o = t.assetWidth ?? 48, s = Math.max(a, o), l = i == null ? void 0 : i.wrappingWidth;
  t.width = Math.max(s, l ?? 0);
  const { shapeSvg: c, bbox: h, halfPadding: u, label: p } = await Q(
    e,
    t,
    "icon-shape default"
  ), f = t.pos === "t", g = s + u * 2, m = s + u * 2, { nodeBorder: y, mainBkg: x } = r, { stylesMap: b } = ri(t), _ = -m / 2, S = -g / 2, v = t.label ? 8 : 0, C = H.svg(c), T = j(t, {});
  t.look !== "handDrawn" && (T.roughness = 0, T.fillStyle = "solid");
  const B = b.get("fill");
  T.stroke = B ?? x;
  const F = C.path(Je(_, S, m, g, 5), T), P = Math.max(m, h.width), L = g + h.height + v, W = C.rectangle(-P / 2, -L / 2, P, L, {
    ...T,
    fill: "transparent",
    stroke: "none"
  }), M = c.insert(() => F, ":first-child").attr("class", "icon-shape2"), E = c.insert(() => W);
  if (t.icon) {
    const N = c.append("g");
    N.html(
      `<g>${await sn(t.icon, {
        height: s,
        width: s,
        fallbackPrefix: ""
      })}</g>`
    );
    const R = N.node().getBBox(), O = R.width, I = R.height, lt = R.x, xt = R.y;
    N.attr(
      "transform",
      `translate(${-O / 2 - lt},${f ? h.height / 2 + v / 2 - I / 2 - xt : -h.height / 2 - v / 2 - I / 2 - xt})`
    ), N.attr("style", `color: ${b.get("stroke") ?? y};`);
  }
  return p.attr(
    "transform",
    `translate(${-h.width / 2 - (h.x - (h.left ?? 0))},${f ? -L / 2 : L / 2 - h.height})`
  ), M.attr(
    "transform",
    `translate(0,${f ? h.height / 2 + v / 2 : -h.height / 2 - v / 2})`
  ), G(t, E), t.intersect = function(N) {
    if (A.info("iconSquare intersect", t, N), !t.label)
      return z.rect(t, N);
    const R = t.x ?? 0, O = t.y ?? 0, I = t.height ?? 0;
    let lt = [];
    return f ? lt = [
      { x: R - h.width / 2, y: O - I / 2 },
      { x: R + h.width / 2, y: O - I / 2 },
      { x: R + h.width / 2, y: O - I / 2 + h.height + v },
      { x: R + m / 2, y: O - I / 2 + h.height + v },
      { x: R + m / 2, y: O + I / 2 },
      { x: R - m / 2, y: O + I / 2 },
      { x: R - m / 2, y: O - I / 2 + h.height + v },
      { x: R - h.width / 2, y: O - I / 2 + h.height + v }
    ] : lt = [
      { x: R - m / 2, y: O - I / 2 },
      { x: R + m / 2, y: O - I / 2 },
      { x: R + m / 2, y: O - I / 2 + g },
      { x: R + h.width / 2, y: O - I / 2 + g },
      { x: R + h.width / 2 / 2, y: O + I / 2 },
      { x: R - h.width / 2, y: O + I / 2 },
      { x: R - h.width / 2, y: O - I / 2 + g },
      { x: R - m / 2, y: O - I / 2 + g }
    ], z.polygon(t, lt, N);
  }, c;
}
d(ag, "iconRounded");
async function sg(e, t, { config: { themeVariables: r, flowchart: i } }) {
  const { labelStyles: n } = Y(t);
  t.labelStyle = n;
  const a = t.assetHeight ?? 48, o = t.assetWidth ?? 48, s = Math.max(a, o), l = i == null ? void 0 : i.wrappingWidth;
  t.width = Math.max(s, l ?? 0);
  const { shapeSvg: c, bbox: h, halfPadding: u, label: p } = await Q(
    e,
    t,
    "icon-shape default"
  ), f = t.pos === "t", g = s + u * 2, m = s + u * 2, { nodeBorder: y, mainBkg: x } = r, { stylesMap: b } = ri(t), _ = -m / 2, S = -g / 2, v = t.label ? 8 : 0, C = H.svg(c), T = j(t, {});
  t.look !== "handDrawn" && (T.roughness = 0, T.fillStyle = "solid");
  const B = b.get("fill");
  T.stroke = B ?? x;
  const F = C.path(Je(_, S, m, g, 0.1), T), P = Math.max(m, h.width), L = g + h.height + v, W = C.rectangle(-P / 2, -L / 2, P, L, {
    ...T,
    fill: "transparent",
    stroke: "none"
  }), M = c.insert(() => F, ":first-child"), E = c.insert(() => W);
  if (t.icon) {
    const N = c.append("g");
    N.html(
      `<g>${await sn(t.icon, {
        height: s,
        width: s,
        fallbackPrefix: ""
      })}</g>`
    );
    const R = N.node().getBBox(), O = R.width, I = R.height, lt = R.x, xt = R.y;
    N.attr(
      "transform",
      `translate(${-O / 2 - lt},${f ? h.height / 2 + v / 2 - I / 2 - xt : -h.height / 2 - v / 2 - I / 2 - xt})`
    ), N.attr("style", `color: ${b.get("stroke") ?? y};`);
  }
  return p.attr(
    "transform",
    `translate(${-h.width / 2 - (h.x - (h.left ?? 0))},${f ? -L / 2 : L / 2 - h.height})`
  ), M.attr(
    "transform",
    `translate(0,${f ? h.height / 2 + v / 2 : -h.height / 2 - v / 2})`
  ), G(t, E), t.intersect = function(N) {
    if (A.info("iconSquare intersect", t, N), !t.label)
      return z.rect(t, N);
    const R = t.x ?? 0, O = t.y ?? 0, I = t.height ?? 0;
    let lt = [];
    return f ? lt = [
      { x: R - h.width / 2, y: O - I / 2 },
      { x: R + h.width / 2, y: O - I / 2 },
      { x: R + h.width / 2, y: O - I / 2 + h.height + v },
      { x: R + m / 2, y: O - I / 2 + h.height + v },
      { x: R + m / 2, y: O + I / 2 },
      { x: R - m / 2, y: O + I / 2 },
      { x: R - m / 2, y: O - I / 2 + h.height + v },
      { x: R - h.width / 2, y: O - I / 2 + h.height + v }
    ] : lt = [
      { x: R - m / 2, y: O - I / 2 },
      { x: R + m / 2, y: O - I / 2 },
      { x: R + m / 2, y: O - I / 2 + g },
      { x: R + h.width / 2, y: O - I / 2 + g },
      { x: R + h.width / 2 / 2, y: O + I / 2 },
      { x: R - h.width / 2, y: O + I / 2 },
      { x: R - h.width / 2, y: O - I / 2 + g },
      { x: R - m / 2, y: O - I / 2 + g }
    ], z.polygon(t, lt, N);
  }, c;
}
d(sg, "iconSquare");
async function og(e, t, { config: { flowchart: r } }) {
  const i = new Image();
  i.src = (t == null ? void 0 : t.img) ?? "", await i.decode();
  const n = Number(i.naturalWidth.toString().replace("px", "")), a = Number(i.naturalHeight.toString().replace("px", ""));
  t.imageAspectRatio = n / a;
  const { labelStyles: o } = Y(t);
  t.labelStyle = o;
  const s = r == null ? void 0 : r.wrappingWidth;
  t.defaultWidth = r == null ? void 0 : r.wrappingWidth;
  const l = Math.max(
    t.label ? s ?? 0 : 0,
    (t == null ? void 0 : t.assetWidth) ?? n
  ), c = t.constraint === "on" && t != null && t.assetHeight ? t.assetHeight * t.imageAspectRatio : l, h = t.constraint === "on" ? c / t.imageAspectRatio : (t == null ? void 0 : t.assetHeight) ?? a;
  t.width = Math.max(c, s ?? 0);
  const { shapeSvg: u, bbox: p, label: f } = await Q(e, t, "image-shape default"), g = t.pos === "t", m = -c / 2, y = -h / 2, x = t.label ? 8 : 0, b = H.svg(u), _ = j(t, {});
  t.look !== "handDrawn" && (_.roughness = 0, _.fillStyle = "solid");
  const S = b.rectangle(m, y, c, h, _), v = Math.max(c, p.width), C = h + p.height + x, T = b.rectangle(-v / 2, -C / 2, v, C, {
    ..._,
    fill: "none",
    stroke: "none"
  }), B = u.insert(() => S, ":first-child"), F = u.insert(() => T);
  if (t.img) {
    const P = u.append("image");
    P.attr("href", t.img), P.attr("width", c), P.attr("height", h), P.attr("preserveAspectRatio", "none"), P.attr(
      "transform",
      `translate(${-c / 2},${g ? C / 2 - h : -C / 2})`
    );
  }
  return f.attr(
    "transform",
    `translate(${-p.width / 2 - (p.x - (p.left ?? 0))},${g ? -h / 2 - p.height / 2 - x / 2 : h / 2 - p.height / 2 + x / 2})`
  ), B.attr(
    "transform",
    `translate(0,${g ? p.height / 2 + x / 2 : -p.height / 2 - x / 2})`
  ), G(t, F), t.intersect = function(P) {
    if (A.info("iconSquare intersect", t, P), !t.label)
      return z.rect(t, P);
    const L = t.x ?? 0, W = t.y ?? 0, M = t.height ?? 0;
    let E = [];
    return g ? E = [
      { x: L - p.width / 2, y: W - M / 2 },
      { x: L + p.width / 2, y: W - M / 2 },
      { x: L + p.width / 2, y: W - M / 2 + p.height + x },
      { x: L + c / 2, y: W - M / 2 + p.height + x },
      { x: L + c / 2, y: W + M / 2 },
      { x: L - c / 2, y: W + M / 2 },
      { x: L - c / 2, y: W - M / 2 + p.height + x },
      { x: L - p.width / 2, y: W - M / 2 + p.height + x }
    ] : E = [
      { x: L - c / 2, y: W - M / 2 },
      { x: L + c / 2, y: W - M / 2 },
      { x: L + c / 2, y: W - M / 2 + h },
      { x: L + p.width / 2, y: W - M / 2 + h },
      { x: L + p.width / 2 / 2, y: W + M / 2 },
      { x: L - p.width / 2, y: W + M / 2 },
      { x: L - p.width / 2, y: W - M / 2 + h },
      { x: L - c / 2, y: W - M / 2 + h }
    ], z.polygon(t, E, P);
  }, u;
}
d(og, "imageSquare");
async function lg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a } = await Q(e, t, K(t)), o = Math.max(a.width + (t.padding ?? 0) * 2, (t == null ? void 0 : t.width) ?? 0), s = Math.max(a.height + (t.padding ?? 0) * 2, (t == null ? void 0 : t.height) ?? 0), l = [
    { x: 0, y: 0 },
    { x: o, y: 0 },
    { x: o + 3 * s / 6, y: -s },
    { x: -3 * s / 6, y: -s }
  ];
  let c;
  const { cssStyles: h } = t;
  if (t.look === "handDrawn") {
    const u = H.svg(n), p = j(t, {}), f = nt(l), g = u.path(f, p);
    c = n.insert(() => g, ":first-child").attr("transform", `translate(${-o / 2}, ${s / 2})`), h && c.attr("style", h);
  } else
    c = ze(n, o, s, l);
  return i && c.attr("style", i), t.width = o, t.height = s, G(t, c), t.intersect = function(u) {
    return z.polygon(t, l, u);
  }, n;
}
d(lg, "inv_trapezoid");
async function ln(e, t, r) {
  const { labelStyles: i, nodeStyles: n } = Y(t);
  t.labelStyle = i;
  const { shapeSvg: a, bbox: o } = await Q(e, t, K(t)), s = Math.max(o.width + r.labelPaddingX * 2, (t == null ? void 0 : t.width) || 0), l = Math.max(o.height + r.labelPaddingY * 2, (t == null ? void 0 : t.height) || 0), c = -s / 2, h = -l / 2;
  let u, { rx: p, ry: f } = t;
  const { cssStyles: g } = t;
  if (r != null && r.rx && r.ry && (p = r.rx, f = r.ry), t.look === "handDrawn") {
    const m = H.svg(a), y = j(t, {}), x = p || f ? m.path(Je(c, h, s, l, p || 0), y) : m.rectangle(c, h, s, l, y);
    u = a.insert(() => x, ":first-child"), u.attr("class", "basic label-container").attr("style", Dt(g));
  } else
    u = a.insert("rect", ":first-child"), u.attr("class", "basic label-container").attr("style", n).attr("rx", Dt(p)).attr("ry", Dt(f)).attr("x", c).attr("y", h).attr("width", s).attr("height", l);
  return G(t, u), t.calcIntersect = function(m, y) {
    return z.rect(m, y);
  }, t.intersect = function(m) {
    return z.rect(t, m);
  }, a;
}
d(ln, "drawRect");
async function cg(e, t) {
  const { shapeSvg: r, bbox: i, label: n } = await Q(e, t, "label"), a = r.insert("rect", ":first-child");
  return a.attr("width", 0.1).attr("height", 0.1), r.attr("class", "label edgeLabel"), n.attr(
    "transform",
    `translate(${-(i.width / 2) - (i.x - (i.left ?? 0))}, ${-(i.height / 2) - (i.y - (i.top ?? 0))})`
  ), G(t, a), t.intersect = function(l) {
    return z.rect(t, l);
  }, r;
}
d(cg, "labelRect");
async function hg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a } = await Q(e, t, K(t)), o = Math.max(a.width + (t.padding ?? 0), (t == null ? void 0 : t.width) ?? 0), s = Math.max(a.height + (t.padding ?? 0), (t == null ? void 0 : t.height) ?? 0), l = [
    { x: 0, y: 0 },
    { x: o + 3 * s / 6, y: 0 },
    { x: o, y: -s },
    { x: -(3 * s) / 6, y: -s }
  ];
  let c;
  const { cssStyles: h } = t;
  if (t.look === "handDrawn") {
    const u = H.svg(n), p = j(t, {}), f = nt(l), g = u.path(f, p);
    c = n.insert(() => g, ":first-child").attr("transform", `translate(${-o / 2}, ${s / 2})`), h && c.attr("style", h);
  } else
    c = ze(n, o, s, l);
  return i && c.attr("style", i), t.width = o, t.height = s, G(t, c), t.intersect = function(u) {
    return z.polygon(t, l, u);
  }, n;
}
d(hg, "lean_left");
async function ug(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a } = await Q(e, t, K(t)), o = Math.max(a.width + (t.padding ?? 0), (t == null ? void 0 : t.width) ?? 0), s = Math.max(a.height + (t.padding ?? 0), (t == null ? void 0 : t.height) ?? 0), l = [
    { x: -3 * s / 6, y: 0 },
    { x: o, y: 0 },
    { x: o + 3 * s / 6, y: -s },
    { x: 0, y: -s }
  ];
  let c;
  const { cssStyles: h } = t;
  if (t.look === "handDrawn") {
    const u = H.svg(n), p = j(t, {}), f = nt(l), g = u.path(f, p);
    c = n.insert(() => g, ":first-child").attr("transform", `translate(${-o / 2}, ${s / 2})`), h && c.attr("style", h);
  } else
    c = ze(n, o, s, l);
  return i && c.attr("style", i), t.width = o, t.height = s, G(t, c), t.intersect = function(u) {
    return z.polygon(t, l, u);
  }, n;
}
d(ug, "lean_right");
function fg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.label = "", t.labelStyle = r;
  const n = e.insert("g").attr("class", K(t)).attr("id", t.domId ?? t.id), { cssStyles: a } = t, o = Math.max(35, (t == null ? void 0 : t.width) ?? 0), s = Math.max(35, (t == null ? void 0 : t.height) ?? 0), l = 7, c = [
    { x: o, y: 0 },
    { x: 0, y: s + l / 2 },
    { x: o - 2 * l, y: s + l / 2 },
    { x: 0, y: 2 * s },
    { x: o, y: s - l / 2 },
    { x: 2 * l, y: s - l / 2 }
  ], h = H.svg(n), u = j(t, {});
  t.look !== "handDrawn" && (u.roughness = 0, u.fillStyle = "solid");
  const p = nt(c), f = h.path(p, u), g = n.insert(() => f, ":first-child");
  return a && t.look !== "handDrawn" && g.selectAll("path").attr("style", a), i && t.look !== "handDrawn" && g.selectAll("path").attr("style", i), g.attr("transform", `translate(-${o / 2},${-s})`), G(t, g), t.intersect = function(m) {
    return A.info("lightningBolt intersect", t, m), z.polygon(t, c, m);
  }, n;
}
d(fg, "lightningBolt");
var Jv = /* @__PURE__ */ d((e, t, r, i, n, a, o) => [
  `M${e},${t + a}`,
  `a${n},${a} 0,0,0 ${r},0`,
  `a${n},${a} 0,0,0 ${-r},0`,
  `l0,${i}`,
  `a${n},${a} 0,0,0 ${r},0`,
  `l0,${-i}`,
  `M${e},${t + a + o}`,
  `a${n},${a} 0,0,0 ${r},0`
].join(" "), "createCylinderPathD"), tS = /* @__PURE__ */ d((e, t, r, i, n, a, o) => [
  `M${e},${t + a}`,
  `M${e + r},${t + a}`,
  `a${n},${a} 0,0,0 ${-r},0`,
  `l0,${i}`,
  `a${n},${a} 0,0,0 ${r},0`,
  `l0,${-i}`,
  `M${e},${t + a + o}`,
  `a${n},${a} 0,0,0 ${r},0`
].join(" "), "createOuterCylinderPathD"), eS = /* @__PURE__ */ d((e, t, r, i, n, a) => [`M${e - r / 2},${-i / 2}`, `a${n},${a} 0,0,0 ${r},0`].join(" "), "createInnerCylinderPathD");
async function pg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a, label: o } = await Q(e, t, K(t)), s = Math.max(a.width + (t.padding ?? 0), t.width ?? 0), l = s / 2, c = l / (2.5 + s / 50), h = Math.max(a.height + c + (t.padding ?? 0), t.height ?? 0), u = h * 0.1;
  let p;
  const { cssStyles: f } = t;
  if (t.look === "handDrawn") {
    const g = H.svg(n), m = tS(0, 0, s, h, l, c, u), y = eS(0, c, s, h, l, c), x = j(t, {}), b = g.path(m, x), _ = g.path(y, x);
    n.insert(() => _, ":first-child").attr("class", "line"), p = n.insert(() => b, ":first-child"), p.attr("class", "basic label-container"), f && p.attr("style", f);
  } else {
    const g = Jv(0, 0, s, h, l, c, u);
    p = n.insert("path", ":first-child").attr("d", g).attr("class", "basic label-container").attr("style", Dt(f)).attr("style", i);
  }
  return p.attr("label-offset-y", c), p.attr("transform", `translate(${-s / 2}, ${-(h / 2 + c)})`), G(t, p), o.attr(
    "transform",
    `translate(${-(a.width / 2) - (a.x - (a.left ?? 0))}, ${-(a.height / 2) + c - (a.y - (a.top ?? 0))})`
  ), t.intersect = function(g) {
    const m = z.rect(t, g), y = m.x - (t.x ?? 0);
    if (l != 0 && (Math.abs(y) < (t.width ?? 0) / 2 || Math.abs(y) == (t.width ?? 0) / 2 && Math.abs(m.y - (t.y ?? 0)) > (t.height ?? 0) / 2 - c)) {
      let x = c * c * (1 - y * y / (l * l));
      x > 0 && (x = Math.sqrt(x)), x = c - x, g.y - (t.y ?? 0) > 0 && (x = -x), m.y += x;
    }
    return m;
  }, n;
}
d(pg, "linedCylinder");
async function dg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a, label: o } = await Q(e, t, K(t)), s = Math.max(a.width + (t.padding ?? 0) * 2, (t == null ? void 0 : t.width) ?? 0), l = Math.max(a.height + (t.padding ?? 0) * 2, (t == null ? void 0 : t.height) ?? 0), c = l / 4, h = l + c, { cssStyles: u } = t, p = H.svg(n), f = j(t, {});
  t.look !== "handDrawn" && (f.roughness = 0, f.fillStyle = "solid");
  const g = [
    { x: -s / 2 - s / 2 * 0.1, y: -h / 2 },
    { x: -s / 2 - s / 2 * 0.1, y: h / 2 },
    ...Ze(
      -s / 2 - s / 2 * 0.1,
      h / 2,
      s / 2 + s / 2 * 0.1,
      h / 2,
      c,
      0.8
    ),
    { x: s / 2 + s / 2 * 0.1, y: -h / 2 },
    { x: -s / 2 - s / 2 * 0.1, y: -h / 2 },
    { x: -s / 2, y: -h / 2 },
    { x: -s / 2, y: h / 2 * 1.1 },
    { x: -s / 2, y: -h / 2 }
  ], m = p.polygon(
    g.map((x) => [x.x, x.y]),
    f
  ), y = n.insert(() => m, ":first-child");
  return y.attr("class", "basic label-container"), u && t.look !== "handDrawn" && y.selectAll("path").attr("style", u), i && t.look !== "handDrawn" && y.selectAll("path").attr("style", i), y.attr("transform", `translate(0,${-c / 2})`), o.attr(
    "transform",
    `translate(${-s / 2 + (t.padding ?? 0) + s / 2 * 0.1 / 2 - (a.x - (a.left ?? 0))},${-l / 2 + (t.padding ?? 0) - c / 2 - (a.y - (a.top ?? 0))})`
  ), G(t, y), t.intersect = function(x) {
    return z.polygon(t, g, x);
  }, n;
}
d(dg, "linedWaveEdgedRect");
async function gg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a, label: o } = await Q(e, t, K(t)), s = Math.max(a.width + (t.padding ?? 0) * 2, (t == null ? void 0 : t.width) ?? 0), l = Math.max(a.height + (t.padding ?? 0) * 2, (t == null ? void 0 : t.height) ?? 0), c = 5, h = -s / 2, u = -l / 2, { cssStyles: p } = t, f = H.svg(n), g = j(t, {}), m = [
    { x: h - c, y: u + c },
    { x: h - c, y: u + l + c },
    { x: h + s - c, y: u + l + c },
    { x: h + s - c, y: u + l },
    { x: h + s, y: u + l },
    { x: h + s, y: u + l - c },
    { x: h + s + c, y: u + l - c },
    { x: h + s + c, y: u - c },
    { x: h + c, y: u - c },
    { x: h + c, y: u },
    { x: h, y: u },
    { x: h, y: u + c }
  ], y = [
    { x: h, y: u + c },
    { x: h + s - c, y: u + c },
    { x: h + s - c, y: u + l },
    { x: h + s, y: u + l },
    { x: h + s, y: u },
    { x: h, y: u }
  ];
  t.look !== "handDrawn" && (g.roughness = 0, g.fillStyle = "solid");
  const x = nt(m), b = f.path(x, g), _ = nt(y), S = f.path(_, { ...g, fill: "none" }), v = n.insert(() => S, ":first-child");
  return v.insert(() => b, ":first-child"), v.attr("class", "basic label-container"), p && t.look !== "handDrawn" && v.selectAll("path").attr("style", p), i && t.look !== "handDrawn" && v.selectAll("path").attr("style", i), o.attr(
    "transform",
    `translate(${-(a.width / 2) - c - (a.x - (a.left ?? 0))}, ${-(a.height / 2) + c - (a.y - (a.top ?? 0))})`
  ), G(t, v), t.intersect = function(C) {
    return z.polygon(t, m, C);
  }, n;
}
d(gg, "multiRect");
async function mg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a, label: o } = await Q(e, t, K(t)), s = Math.max(a.width + (t.padding ?? 0) * 2, (t == null ? void 0 : t.width) ?? 0), l = Math.max(a.height + (t.padding ?? 0) * 2, (t == null ? void 0 : t.height) ?? 0), c = l / 4, h = l + c, u = -s / 2, p = -h / 2, f = 5, { cssStyles: g } = t, m = Ze(
    u - f,
    p + h + f,
    u + s - f,
    p + h + f,
    c,
    0.8
  ), y = m == null ? void 0 : m[m.length - 1], x = [
    { x: u - f, y: p + f },
    { x: u - f, y: p + h + f },
    ...m,
    { x: u + s - f, y: y.y - f },
    { x: u + s, y: y.y - f },
    { x: u + s, y: y.y - 2 * f },
    { x: u + s + f, y: y.y - 2 * f },
    { x: u + s + f, y: p - f },
    { x: u + f, y: p - f },
    { x: u + f, y: p },
    { x: u, y: p },
    { x: u, y: p + f }
  ], b = [
    { x: u, y: p + f },
    { x: u + s - f, y: p + f },
    { x: u + s - f, y: y.y - f },
    { x: u + s, y: y.y - f },
    { x: u + s, y: p },
    { x: u, y: p }
  ], _ = H.svg(n), S = j(t, {});
  t.look !== "handDrawn" && (S.roughness = 0, S.fillStyle = "solid");
  const v = nt(x), C = _.path(v, S), T = nt(b), B = _.path(T, S), F = n.insert(() => C, ":first-child");
  return F.insert(() => B), F.attr("class", "basic label-container"), g && t.look !== "handDrawn" && F.selectAll("path").attr("style", g), i && t.look !== "handDrawn" && F.selectAll("path").attr("style", i), F.attr("transform", `translate(0,${-c / 2})`), o.attr(
    "transform",
    `translate(${-(a.width / 2) - f - (a.x - (a.left ?? 0))}, ${-(a.height / 2) + f - c / 2 - (a.y - (a.top ?? 0))})`
  ), G(t, F), t.intersect = function(P) {
    return z.polygon(t, x, P);
  }, n;
}
d(mg, "multiWaveEdgedRectangle");
async function yg(e, t, { config: { themeVariables: r } }) {
  const { labelStyles: i, nodeStyles: n } = Y(t);
  t.labelStyle = i, t.useHtmlLabels || It(Ot()) || (t.centerLabel = !0);
  const { shapeSvg: o, bbox: s, label: l } = await Q(e, t, K(t)), c = Math.max(s.width + (t.padding ?? 0) * 2, (t == null ? void 0 : t.width) ?? 0), h = Math.max(s.height + (t.padding ?? 0) * 2, (t == null ? void 0 : t.height) ?? 0), u = -c / 2, p = -h / 2, { cssStyles: f } = t, g = H.svg(o), m = j(t, {
    fill: r.noteBkgColor,
    stroke: r.noteBorderColor
  });
  t.look !== "handDrawn" && (m.roughness = 0, m.fillStyle = "solid");
  const y = g.rectangle(u, p, c, h, m), x = o.insert(() => y, ":first-child");
  return x.attr("class", "basic label-container"), f && t.look !== "handDrawn" && x.selectAll("path").attr("style", f), n && t.look !== "handDrawn" && x.selectAll("path").attr("style", n), l.attr(
    "transform",
    `translate(${-s.width / 2 - (s.x - (s.left ?? 0))}, ${-(s.height / 2) - (s.y - (s.top ?? 0))})`
  ), G(t, x), t.intersect = function(b) {
    return z.rect(t, b);
  }, o;
}
d(yg, "note");
var rS = /* @__PURE__ */ d((e, t, r) => [
  `M${e + r / 2},${t}`,
  `L${e + r},${t - r / 2}`,
  `L${e + r / 2},${t - r}`,
  `L${e},${t - r / 2}`,
  "Z"
].join(" "), "createDecisionBoxPathD");
async function xg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a } = await Q(e, t, K(t)), o = a.width + t.padding, s = a.height + t.padding, l = o + s, c = 0.5, h = [
    { x: l / 2, y: 0 },
    { x: l, y: -l / 2 },
    { x: l / 2, y: -l },
    { x: 0, y: -l / 2 }
  ];
  let u;
  const { cssStyles: p } = t;
  if (t.look === "handDrawn") {
    const f = H.svg(n), g = j(t, {}), m = rS(0, 0, l), y = f.path(m, g);
    u = n.insert(() => y, ":first-child").attr("transform", `translate(${-l / 2 + c}, ${l / 2})`), p && u.attr("style", p);
  } else
    u = ze(n, l, l, h), u.attr("transform", `translate(${-l / 2 + c}, ${l / 2})`);
  return i && u.attr("style", i), G(t, u), t.calcIntersect = function(f, g) {
    const m = f.width, y = [
      { x: m / 2, y: 0 },
      { x: m, y: -m / 2 },
      { x: m / 2, y: -m },
      { x: 0, y: -m / 2 }
    ], x = z.polygon(f, y, g);
    return { x: x.x - 0.5, y: x.y - 0.5 };
  }, t.intersect = function(f) {
    return this.calcIntersect(t, f);
  }, n;
}
d(xg, "question");
async function bg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a, label: o } = await Q(e, t, K(t)), s = Math.max(a.width + (t.padding ?? 0), (t == null ? void 0 : t.width) ?? 0), l = Math.max(a.height + (t.padding ?? 0), (t == null ? void 0 : t.height) ?? 0), c = -s / 2, h = -l / 2, u = h / 2, p = [
    { x: c + u, y: h },
    { x: c, y: 0 },
    { x: c + u, y: -h },
    { x: -c, y: -h },
    { x: -c, y: h }
  ], { cssStyles: f } = t, g = H.svg(n), m = j(t, {});
  t.look !== "handDrawn" && (m.roughness = 0, m.fillStyle = "solid");
  const y = nt(p), x = g.path(y, m), b = n.insert(() => x, ":first-child");
  return b.attr("class", "basic label-container"), f && t.look !== "handDrawn" && b.selectAll("path").attr("style", f), i && t.look !== "handDrawn" && b.selectAll("path").attr("style", i), b.attr("transform", `translate(${-u / 2},0)`), o.attr(
    "transform",
    `translate(${-u / 2 - a.width / 2 - (a.x - (a.left ?? 0))}, ${-(a.height / 2) - (a.y - (a.top ?? 0))})`
  ), G(t, b), t.intersect = function(_) {
    return z.polygon(t, p, _);
  }, n;
}
d(bg, "rect_left_inv_arrow");
async function Cg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  let n;
  t.cssClasses ? n = "node " + t.cssClasses : n = "node default";
  const a = e.insert("g").attr("class", n).attr("id", t.domId || t.id), o = a.insert("g"), s = a.insert("g").attr("class", "label").attr("style", i), l = t.description, c = t.label, h = await je(s, c, t.labelStyle, !0, !0);
  let u = { width: 0, height: 0 };
  if (It(ot())) {
    const B = h.children[0], F = et(h);
    u = B.getBoundingClientRect(), F.attr("width", u.width), F.attr("height", u.height);
  }
  A.info("Text 2", l);
  const p = l || [], f = h.getBBox(), g = await je(
    s,
    Array.isArray(p) ? p.join("<br/>") : p,
    t.labelStyle,
    !0,
    !0
  ), m = g.children[0], y = et(g);
  u = m.getBoundingClientRect(), y.attr("width", u.width), y.attr("height", u.height);
  const x = (t.padding || 0) / 2;
  et(g).attr(
    "transform",
    "translate( " + (u.width > f.width ? 0 : (f.width - u.width) / 2) + ", " + (f.height + x + 5) + ")"
  ), et(h).attr(
    "transform",
    "translate( " + (u.width < f.width ? 0 : -(f.width - u.width) / 2) + ", 0)"
  ), u = s.node().getBBox(), s.attr(
    "transform",
    "translate(" + -u.width / 2 + ", " + (-u.height / 2 - x + 3) + ")"
  );
  const b = u.width + (t.padding || 0), _ = u.height + (t.padding || 0), S = -u.width / 2 - x, v = -u.height / 2 - x;
  let C, T;
  if (t.look === "handDrawn") {
    const B = H.svg(a), F = j(t, {}), P = B.path(
      Je(S, v, b, _, t.rx || 0),
      F
    ), L = B.line(
      -u.width / 2 - x,
      -u.height / 2 - x + f.height + x,
      u.width / 2 + x,
      -u.height / 2 - x + f.height + x,
      F
    );
    T = a.insert(() => (A.debug("Rough node insert CXC", P), L), ":first-child"), C = a.insert(() => (A.debug("Rough node insert CXC", P), P), ":first-child");
  } else
    C = o.insert("rect", ":first-child"), T = o.insert("line"), C.attr("class", "outer title-state").attr("style", i).attr("x", -u.width / 2 - x).attr("y", -u.height / 2 - x).attr("width", u.width + (t.padding || 0)).attr("height", u.height + (t.padding || 0)), T.attr("class", "divider").attr("x1", -u.width / 2 - x).attr("x2", u.width / 2 + x).attr("y1", -u.height / 2 - x + f.height + x).attr("y2", -u.height / 2 - x + f.height + x);
  return G(t, C), t.intersect = function(B) {
    return z.rect(t, B);
  }, a;
}
d(Cg, "rectWithTitle");
async function _g(e, t) {
  const r = {
    rx: 5,
    ry: 5,
    labelPaddingX: ((t == null ? void 0 : t.padding) || 0) * 1,
    labelPaddingY: ((t == null ? void 0 : t.padding) || 0) * 1
  };
  return ln(e, t, r);
}
d(_g, "roundedRect");
async function wg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a, label: o } = await Q(e, t, K(t)), s = (t == null ? void 0 : t.padding) ?? 0, l = Math.max(a.width + (t.padding ?? 0) * 2, (t == null ? void 0 : t.width) ?? 0), c = Math.max(a.height + (t.padding ?? 0) * 2, (t == null ? void 0 : t.height) ?? 0), h = -a.width / 2 - s, u = -a.height / 2 - s, { cssStyles: p } = t, f = H.svg(n), g = j(t, {});
  t.look !== "handDrawn" && (g.roughness = 0, g.fillStyle = "solid");
  const m = [
    { x: h, y: u },
    { x: h + l + 8, y: u },
    { x: h + l + 8, y: u + c },
    { x: h - 8, y: u + c },
    { x: h - 8, y: u },
    { x: h, y: u },
    { x: h, y: u + c }
  ], y = f.polygon(
    m.map((b) => [b.x, b.y]),
    g
  ), x = n.insert(() => y, ":first-child");
  return x.attr("class", "basic label-container").attr("style", Dt(p)), i && t.look !== "handDrawn" && x.selectAll("path").attr("style", i), p && t.look !== "handDrawn" && x.selectAll("path").attr("style", i), o.attr(
    "transform",
    `translate(${-l / 2 + 4 + (t.padding ?? 0) - (a.x - (a.left ?? 0))},${-c / 2 + (t.padding ?? 0) - (a.y - (a.top ?? 0))})`
  ), G(t, x), t.intersect = function(b) {
    return z.rect(t, b);
  }, n;
}
d(wg, "shadedProcess");
async function kg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a, label: o } = await Q(e, t, K(t)), s = Math.max(a.width + (t.padding ?? 0) * 2, (t == null ? void 0 : t.width) ?? 0), l = Math.max(a.height + (t.padding ?? 0) * 2, (t == null ? void 0 : t.height) ?? 0), c = -s / 2, h = -l / 2, { cssStyles: u } = t, p = H.svg(n), f = j(t, {});
  t.look !== "handDrawn" && (f.roughness = 0, f.fillStyle = "solid");
  const g = [
    { x: c, y: h },
    { x: c, y: h + l },
    { x: c + s, y: h + l },
    { x: c + s, y: h - l / 2 }
  ], m = nt(g), y = p.path(m, f), x = n.insert(() => y, ":first-child");
  return x.attr("class", "basic label-container"), u && t.look !== "handDrawn" && x.selectChildren("path").attr("style", u), i && t.look !== "handDrawn" && x.selectChildren("path").attr("style", i), x.attr("transform", `translate(0, ${l / 4})`), o.attr(
    "transform",
    `translate(${-s / 2 + (t.padding ?? 0) - (a.x - (a.left ?? 0))}, ${-l / 4 + (t.padding ?? 0) - (a.y - (a.top ?? 0))})`
  ), G(t, x), t.intersect = function(b) {
    return z.polygon(t, g, b);
  }, n;
}
d(kg, "slopedRect");
async function vg(e, t) {
  const r = {
    rx: 0,
    ry: 0,
    labelPaddingX: t.labelPaddingX ?? ((t == null ? void 0 : t.padding) || 0) * 2,
    labelPaddingY: ((t == null ? void 0 : t.padding) || 0) * 1
  };
  return ln(e, t, r);
}
d(vg, "squareRect");
async function Sg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a } = await Q(e, t, K(t)), o = a.height + t.padding, s = a.width + o / 4 + t.padding, l = o / 2, { cssStyles: c } = t, h = H.svg(n), u = j(t, {});
  t.look !== "handDrawn" && (u.roughness = 0, u.fillStyle = "solid");
  const p = [
    { x: -s / 2 + l, y: -o / 2 },
    { x: s / 2 - l, y: -o / 2 },
    ...Gi(-s / 2 + l, 0, l, 50, 90, 270),
    { x: s / 2 - l, y: o / 2 },
    ...Gi(s / 2 - l, 0, l, 50, 270, 450)
  ], f = nt(p), g = h.path(f, u), m = n.insert(() => g, ":first-child");
  return m.attr("class", "basic label-container outer-path"), c && t.look !== "handDrawn" && m.selectChildren("path").attr("style", c), i && t.look !== "handDrawn" && m.selectChildren("path").attr("style", i), G(t, m), t.intersect = function(y) {
    return z.polygon(t, p, y);
  }, n;
}
d(Sg, "stadium");
async function Tg(e, t) {
  return ln(e, t, {
    rx: 5,
    ry: 5
  });
}
d(Tg, "state");
function Bg(e, t, { config: { themeVariables: r } }) {
  const { labelStyles: i, nodeStyles: n } = Y(t);
  t.labelStyle = i;
  const { cssStyles: a } = t, { lineColor: o, stateBorder: s, nodeBorder: l } = r, c = e.insert("g").attr("class", "node default").attr("id", t.domId || t.id), h = H.svg(c), u = j(t, {});
  t.look !== "handDrawn" && (u.roughness = 0, u.fillStyle = "solid");
  const p = h.circle(0, 0, 14, {
    ...u,
    stroke: o,
    strokeWidth: 2
  }), f = s ?? l, g = h.circle(0, 0, 5, {
    ...u,
    fill: f,
    stroke: f,
    strokeWidth: 2,
    fillStyle: "solid"
  }), m = c.insert(() => p, ":first-child");
  return m.insert(() => g), a && m.selectAll("path").attr("style", a), n && m.selectAll("path").attr("style", n), G(t, m), t.intersect = function(y) {
    return z.circle(t, 7, y);
  }, c;
}
d(Bg, "stateEnd");
function Ag(e, t, { config: { themeVariables: r } }) {
  const { lineColor: i } = r, n = e.insert("g").attr("class", "node default").attr("id", t.domId || t.id);
  let a;
  if (t.look === "handDrawn") {
    const s = H.svg(n).circle(0, 0, 14, uk(i));
    a = n.insert(() => s), a.attr("class", "state-start").attr("r", 7).attr("width", 14).attr("height", 14);
  } else
    a = n.insert("circle", ":first-child"), a.attr("class", "state-start").attr("r", 7).attr("width", 14).attr("height", 14);
  return G(t, a), t.intersect = function(o) {
    return z.circle(t, 7, o);
  }, n;
}
d(Ag, "stateStart");
async function Lg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a } = await Q(e, t, K(t)), o = ((t == null ? void 0 : t.padding) || 0) / 2, s = a.width + t.padding, l = a.height + t.padding, c = -a.width / 2 - o, h = -a.height / 2 - o, u = [
    { x: 0, y: 0 },
    { x: s, y: 0 },
    { x: s, y: -l },
    { x: 0, y: -l },
    { x: 0, y: 0 },
    { x: -8, y: 0 },
    { x: s + 8, y: 0 },
    { x: s + 8, y: -l },
    { x: -8, y: -l },
    { x: -8, y: 0 }
  ];
  if (t.look === "handDrawn") {
    const p = H.svg(n), f = j(t, {}), g = p.rectangle(c - 8, h, s + 16, l, f), m = p.line(c, h, c, h + l, f), y = p.line(c + s, h, c + s, h + l, f);
    n.insert(() => m, ":first-child"), n.insert(() => y, ":first-child");
    const x = n.insert(() => g, ":first-child"), { cssStyles: b } = t;
    x.attr("class", "basic label-container").attr("style", Dt(b)), G(t, x);
  } else {
    const p = ze(n, s, l, u);
    i && p.attr("style", i), G(t, p);
  }
  return t.intersect = function(p) {
    return z.polygon(t, u, p);
  }, n;
}
d(Lg, "subroutine");
async function Mg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a } = await Q(e, t, K(t)), o = Math.max(a.width + (t.padding ?? 0) * 2, (t == null ? void 0 : t.width) ?? 0), s = Math.max(a.height + (t.padding ?? 0) * 2, (t == null ? void 0 : t.height) ?? 0), l = -o / 2, c = -s / 2, h = 0.2 * s, u = 0.2 * s, { cssStyles: p } = t, f = H.svg(n), g = j(t, {}), m = [
    { x: l - h / 2, y: c },
    { x: l + o + h / 2, y: c },
    { x: l + o + h / 2, y: c + s },
    { x: l - h / 2, y: c + s }
  ], y = [
    { x: l + o - h / 2, y: c + s },
    { x: l + o + h / 2, y: c + s },
    { x: l + o + h / 2, y: c + s - u }
  ];
  t.look !== "handDrawn" && (g.roughness = 0, g.fillStyle = "solid");
  const x = nt(m), b = f.path(x, g), _ = nt(y), S = f.path(_, { ...g, fillStyle: "solid" }), v = n.insert(() => S, ":first-child");
  return v.insert(() => b, ":first-child"), v.attr("class", "basic label-container"), p && t.look !== "handDrawn" && v.selectAll("path").attr("style", p), i && t.look !== "handDrawn" && v.selectAll("path").attr("style", i), G(t, v), t.intersect = function(C) {
    return z.polygon(t, m, C);
  }, n;
}
d(Mg, "taggedRect");
async function Eg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a, label: o } = await Q(e, t, K(t)), s = Math.max(a.width + (t.padding ?? 0) * 2, (t == null ? void 0 : t.width) ?? 0), l = Math.max(a.height + (t.padding ?? 0) * 2, (t == null ? void 0 : t.height) ?? 0), c = l / 4, h = 0.2 * s, u = 0.2 * l, p = l + c, { cssStyles: f } = t, g = H.svg(n), m = j(t, {});
  t.look !== "handDrawn" && (m.roughness = 0, m.fillStyle = "solid");
  const y = [
    { x: -s / 2 - s / 2 * 0.1, y: p / 2 },
    ...Ze(
      -s / 2 - s / 2 * 0.1,
      p / 2,
      s / 2 + s / 2 * 0.1,
      p / 2,
      c,
      0.8
    ),
    { x: s / 2 + s / 2 * 0.1, y: -p / 2 },
    { x: -s / 2 - s / 2 * 0.1, y: -p / 2 }
  ], x = -s / 2 + s / 2 * 0.1, b = -p / 2 - u * 0.4, _ = [
    { x: x + s - h, y: (b + l) * 1.4 },
    { x: x + s, y: b + l - u },
    { x: x + s, y: (b + l) * 0.9 },
    ...Ze(
      x + s,
      (b + l) * 1.3,
      x + s - h,
      (b + l) * 1.5,
      -l * 0.03,
      0.5
    )
  ], S = nt(y), v = g.path(S, m), C = nt(_), T = g.path(C, {
    ...m,
    fillStyle: "solid"
  }), B = n.insert(() => T, ":first-child");
  return B.insert(() => v, ":first-child"), B.attr("class", "basic label-container"), f && t.look !== "handDrawn" && B.selectAll("path").attr("style", f), i && t.look !== "handDrawn" && B.selectAll("path").attr("style", i), B.attr("transform", `translate(0,${-c / 2})`), o.attr(
    "transform",
    `translate(${-s / 2 + (t.padding ?? 0) - (a.x - (a.left ?? 0))},${-l / 2 + (t.padding ?? 0) - c / 2 - (a.y - (a.top ?? 0))})`
  ), G(t, B), t.intersect = function(F) {
    return z.polygon(t, y, F);
  }, n;
}
d(Eg, "taggedWaveEdgedRectangle");
async function $g(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a } = await Q(e, t, K(t)), o = Math.max(a.width + t.padding, (t == null ? void 0 : t.width) || 0), s = Math.max(a.height + t.padding, (t == null ? void 0 : t.height) || 0), l = -o / 2, c = -s / 2, h = n.insert("rect", ":first-child");
  return h.attr("class", "text").attr("style", i).attr("rx", 0).attr("ry", 0).attr("x", l).attr("y", c).attr("width", o).attr("height", s), G(t, h), t.intersect = function(u) {
    return z.rect(t, u);
  }, n;
}
d($g, "text");
var iS = /* @__PURE__ */ d((e, t, r, i, n, a) => `M${e},${t}
    a${n},${a} 0,0,1 0,${-i}
    l${r},0
    a${n},${a} 0,0,1 0,${i}
    M${r},${-i}
    a${n},${a} 0,0,0 0,${i}
    l${-r},0`, "createCylinderPathD"), nS = /* @__PURE__ */ d((e, t, r, i, n, a) => [
  `M${e},${t}`,
  `M${e + r},${t}`,
  `a${n},${a} 0,0,0 0,${-i}`,
  `l${-r},0`,
  `a${n},${a} 0,0,0 0,${i}`,
  `l${r},0`
].join(" "), "createOuterCylinderPathD"), aS = /* @__PURE__ */ d((e, t, r, i, n, a) => [`M${e + r / 2},${-i / 2}`, `a${n},${a} 0,0,0 0,${i}`].join(" "), "createInnerCylinderPathD");
async function Fg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a, label: o, halfPadding: s } = await Q(
    e,
    t,
    K(t)
  ), l = t.look === "neo" ? s * 2 : s, c = a.height + l, h = c / 2, u = h / (2.5 + c / 50), p = a.width + u + l, { cssStyles: f } = t;
  let g;
  if (t.look === "handDrawn") {
    const m = H.svg(n), y = nS(0, 0, p, c, u, h), x = aS(0, 0, p, c, u, h), b = m.path(y, j(t, {})), _ = m.path(x, j(t, { fill: "none" }));
    g = n.insert(() => _, ":first-child"), g = n.insert(() => b, ":first-child"), g.attr("class", "basic label-container"), f && g.attr("style", f);
  } else {
    const m = iS(0, 0, p, c, u, h);
    g = n.insert("path", ":first-child").attr("d", m).attr("class", "basic label-container").attr("style", Dt(f)).attr("style", i), g.attr("class", "basic label-container"), f && g.selectAll("path").attr("style", f), i && g.selectAll("path").attr("style", i);
  }
  return g.attr("label-offset-x", u), g.attr("transform", `translate(${-p / 2}, ${c / 2} )`), o.attr(
    "transform",
    `translate(${-(a.width / 2) - u - (a.x - (a.left ?? 0))}, ${-(a.height / 2) - (a.y - (a.top ?? 0))})`
  ), G(t, g), t.intersect = function(m) {
    const y = z.rect(t, m), x = y.y - (t.y ?? 0);
    if (h != 0 && (Math.abs(x) < (t.height ?? 0) / 2 || Math.abs(x) == (t.height ?? 0) / 2 && Math.abs(y.x - (t.x ?? 0)) > (t.width ?? 0) / 2 - u)) {
      let b = u * u * (1 - x * x / (h * h));
      b != 0 && (b = Math.sqrt(Math.abs(b))), b = u - b, m.x - (t.x ?? 0) > 0 && (b = -b), y.x += b;
    }
    return y;
  }, n;
}
d(Fg, "tiltedCylinder");
async function Og(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a } = await Q(e, t, K(t)), o = a.width + t.padding, s = a.height + t.padding, l = [
    { x: -3 * s / 6, y: 0 },
    { x: o + 3 * s / 6, y: 0 },
    { x: o, y: -s },
    { x: 0, y: -s }
  ];
  let c;
  const { cssStyles: h } = t;
  if (t.look === "handDrawn") {
    const u = H.svg(n), p = j(t, {}), f = nt(l), g = u.path(f, p);
    c = n.insert(() => g, ":first-child").attr("transform", `translate(${-o / 2}, ${s / 2})`), h && c.attr("style", h);
  } else
    c = ze(n, o, s, l);
  return i && c.attr("style", i), t.width = o, t.height = s, G(t, c), t.intersect = function(u) {
    return z.polygon(t, l, u);
  }, n;
}
d(Og, "trapezoid");
async function Rg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a } = await Q(e, t, K(t)), o = 60, s = 20, l = Math.max(o, a.width + (t.padding ?? 0) * 2, (t == null ? void 0 : t.width) ?? 0), c = Math.max(s, a.height + (t.padding ?? 0) * 2, (t == null ? void 0 : t.height) ?? 0), { cssStyles: h } = t, u = H.svg(n), p = j(t, {});
  t.look !== "handDrawn" && (p.roughness = 0, p.fillStyle = "solid");
  const f = [
    { x: -l / 2 * 0.8, y: -c / 2 },
    { x: l / 2 * 0.8, y: -c / 2 },
    { x: l / 2, y: -c / 2 * 0.6 },
    { x: l / 2, y: c / 2 },
    { x: -l / 2, y: c / 2 },
    { x: -l / 2, y: -c / 2 * 0.6 }
  ], g = nt(f), m = u.path(g, p), y = n.insert(() => m, ":first-child");
  return y.attr("class", "basic label-container"), h && t.look !== "handDrawn" && y.selectChildren("path").attr("style", h), i && t.look !== "handDrawn" && y.selectChildren("path").attr("style", i), G(t, y), t.intersect = function(x) {
    return z.polygon(t, f, x);
  }, n;
}
d(Rg, "trapezoidalPentagon");
async function Dg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a, label: o } = await Q(e, t, K(t)), s = t.useHtmlLabels || It(ot()), l = a.width + (t.padding ?? 0), c = l + a.height, h = l + a.height, u = [
    { x: 0, y: 0 },
    { x: h, y: 0 },
    { x: h / 2, y: -c }
  ], { cssStyles: p } = t, f = H.svg(n), g = j(t, {});
  t.look !== "handDrawn" && (g.roughness = 0, g.fillStyle = "solid");
  const m = nt(u), y = f.path(m, g), x = n.insert(() => y, ":first-child").attr("transform", `translate(${-c / 2}, ${c / 2})`);
  return p && t.look !== "handDrawn" && x.selectChildren("path").attr("style", p), i && t.look !== "handDrawn" && x.selectChildren("path").attr("style", i), t.width = l, t.height = c, G(t, x), o.attr(
    "transform",
    `translate(${-a.width / 2 - (a.x - (a.left ?? 0))}, ${c / 2 - (a.height + (t.padding ?? 0) / (s ? 2 : 1) - (a.y - (a.top ?? 0)))})`
  ), t.intersect = function(b) {
    return A.info("Triangle intersect", t, u, b), z.polygon(t, u, b);
  }, n;
}
d(Dg, "triangle");
async function Ig(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a, label: o } = await Q(e, t, K(t)), s = Math.max(a.width + (t.padding ?? 0) * 2, (t == null ? void 0 : t.width) ?? 0), l = Math.max(a.height + (t.padding ?? 0) * 2, (t == null ? void 0 : t.height) ?? 0), c = l / 8, h = l + c, { cssStyles: u } = t, f = 70 - s, g = f > 0 ? f / 2 : 0, m = H.svg(n), y = j(t, {});
  t.look !== "handDrawn" && (y.roughness = 0, y.fillStyle = "solid");
  const x = [
    { x: -s / 2 - g, y: h / 2 },
    ...Ze(
      -s / 2 - g,
      h / 2,
      s / 2 + g,
      h / 2,
      c,
      0.8
    ),
    { x: s / 2 + g, y: -h / 2 },
    { x: -s / 2 - g, y: -h / 2 }
  ], b = nt(x), _ = m.path(b, y), S = n.insert(() => _, ":first-child");
  return S.attr("class", "basic label-container"), u && t.look !== "handDrawn" && S.selectAll("path").attr("style", u), i && t.look !== "handDrawn" && S.selectAll("path").attr("style", i), S.attr("transform", `translate(0,${-c / 2})`), o.attr(
    "transform",
    `translate(${-s / 2 + (t.padding ?? 0) - (a.x - (a.left ?? 0))},${-l / 2 + (t.padding ?? 0) - c - (a.y - (a.top ?? 0))})`
  ), G(t, S), t.intersect = function(v) {
    return z.polygon(t, x, v);
  }, n;
}
d(Ig, "waveEdgedRectangle");
async function Pg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a } = await Q(e, t, K(t)), o = 100, s = 50, l = Math.max(a.width + (t.padding ?? 0) * 2, (t == null ? void 0 : t.width) ?? 0), c = Math.max(a.height + (t.padding ?? 0) * 2, (t == null ? void 0 : t.height) ?? 0), h = l / c;
  let u = l, p = c;
  u > p * h ? p = u / h : u = p * h, u = Math.max(u, o), p = Math.max(p, s);
  const f = Math.min(p * 0.2, p / 4), g = p + f * 2, { cssStyles: m } = t, y = H.svg(n), x = j(t, {});
  t.look !== "handDrawn" && (x.roughness = 0, x.fillStyle = "solid");
  const b = [
    { x: -u / 2, y: g / 2 },
    ...Ze(-u / 2, g / 2, u / 2, g / 2, f, 1),
    { x: u / 2, y: -g / 2 },
    ...Ze(u / 2, -g / 2, -u / 2, -g / 2, f, -1)
  ], _ = nt(b), S = y.path(_, x), v = n.insert(() => S, ":first-child");
  return v.attr("class", "basic label-container"), m && t.look !== "handDrawn" && v.selectAll("path").attr("style", m), i && t.look !== "handDrawn" && v.selectAll("path").attr("style", i), G(t, v), t.intersect = function(C) {
    return z.polygon(t, b, C);
  }, n;
}
d(Pg, "waveRectangle");
async function Ng(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a, label: o } = await Q(e, t, K(t)), s = Math.max(a.width + (t.padding ?? 0) * 2, (t == null ? void 0 : t.width) ?? 0), l = Math.max(a.height + (t.padding ?? 0) * 2, (t == null ? void 0 : t.height) ?? 0), c = 5, h = -s / 2, u = -l / 2, { cssStyles: p } = t, f = H.svg(n), g = j(t, {}), m = [
    { x: h - c, y: u - c },
    { x: h - c, y: u + l },
    { x: h + s, y: u + l },
    { x: h + s, y: u - c }
  ], y = `M${h - c},${u - c} L${h + s},${u - c} L${h + s},${u + l} L${h - c},${u + l} L${h - c},${u - c}
                M${h - c},${u} L${h + s},${u}
                M${h},${u - c} L${h},${u + l}`;
  t.look !== "handDrawn" && (g.roughness = 0, g.fillStyle = "solid");
  const x = f.path(y, g), b = n.insert(() => x, ":first-child");
  return b.attr("transform", `translate(${c / 2}, ${c / 2})`), b.attr("class", "basic label-container"), p && t.look !== "handDrawn" && b.selectAll("path").attr("style", p), i && t.look !== "handDrawn" && b.selectAll("path").attr("style", i), o.attr(
    "transform",
    `translate(${-(a.width / 2) + c / 2 - (a.x - (a.left ?? 0))}, ${-(a.height / 2) + c / 2 - (a.y - (a.top ?? 0))})`
  ), G(t, b), t.intersect = function(_) {
    return z.polygon(t, m, _);
  }, n;
}
d(Ng, "windowPane");
async function wl(e, t) {
  var ne, dt, ge, ct;
  const r = t;
  if (r.alias && (t.label = r.alias), t.look === "handDrawn") {
    const { themeVariables: at } = Ot(), { background: ut } = at, yt = {
      ...t,
      id: t.id + "-background",
      look: "default",
      cssStyles: ["stroke: none", `fill: ${ut}`]
    };
    await wl(e, yt);
  }
  const i = Ot();
  t.useHtmlLabels = i.htmlLabels;
  let n = ((ne = i.er) == null ? void 0 : ne.diagramPadding) ?? 10, a = ((dt = i.er) == null ? void 0 : dt.entityPadding) ?? 6;
  const { cssStyles: o } = t, { labelStyles: s, nodeStyles: l } = Y(t);
  if (r.attributes.length === 0 && t.label) {
    const at = {
      rx: 0,
      ry: 0,
      labelPaddingX: n,
      labelPaddingY: n * 1.5
    };
    Ie(t.label, i) + at.labelPaddingX * 2 < i.er.minEntityWidth && (t.width = i.er.minEntityWidth);
    const ut = await ln(e, t, at);
    if (!Ke(i.htmlLabels)) {
      const yt = ut.select("text"), Lt = (ge = yt.node()) == null ? void 0 : ge.getBBox();
      yt.attr("transform", `translate(${-Lt.width / 2}, 0)`);
    }
    return ut;
  }
  i.htmlLabels || (n *= 1.25, a *= 1.25);
  let c = K(t);
  c || (c = "node default");
  const h = e.insert("g").attr("class", c).attr("id", t.domId || t.id), u = await $r(h, t.label ?? "", i, 0, 0, ["name"], s);
  u.height += a;
  let p = 0;
  const f = [], g = [];
  let m = 0, y = 0, x = 0, b = 0, _ = !0, S = !0;
  for (const at of r.attributes) {
    const ut = await $r(
      h,
      at.type,
      i,
      0,
      p,
      ["attribute-type"],
      s
    );
    m = Math.max(m, ut.width + n);
    const yt = await $r(
      h,
      at.name,
      i,
      0,
      p,
      ["attribute-name"],
      s
    );
    y = Math.max(y, yt.width + n);
    const Lt = await $r(
      h,
      at.keys.join(),
      i,
      0,
      p,
      ["attribute-keys"],
      s
    );
    x = Math.max(x, Lt.width + n);
    const ae = await $r(
      h,
      at.comment,
      i,
      0,
      p,
      ["attribute-comment"],
      s
    );
    b = Math.max(b, ae.width + n);
    const se = Math.max(ut.height, yt.height, Lt.height, ae.height) + a;
    g.push({ yOffset: p, rowHeight: se }), p += se;
  }
  let v = 4;
  x <= n && (_ = !1, x = 0, v--), b <= n && (S = !1, b = 0, v--);
  const C = h.node().getBBox();
  if (u.width + n * 2 - (m + y + x + b) > 0) {
    const at = u.width + n * 2 - (m + y + x + b);
    m += at / v, y += at / v, x > 0 && (x += at / v), b > 0 && (b += at / v);
  }
  const T = m + y + x + b, B = H.svg(h), F = j(t, {});
  t.look !== "handDrawn" && (F.roughness = 0, F.fillStyle = "solid");
  let P = 0;
  g.length > 0 && (P = g.reduce((at, ut) => at + ((ut == null ? void 0 : ut.rowHeight) ?? 0), 0));
  const L = Math.max(C.width + n * 2, (t == null ? void 0 : t.width) || 0, T), W = Math.max((P ?? 0) + u.height, (t == null ? void 0 : t.height) || 0), M = -L / 2, E = -W / 2;
  h.selectAll("g:not(:first-child)").each((at, ut, yt) => {
    const Lt = et(yt[ut]), ae = Lt.attr("transform");
    let se = 0, ai = 0;
    if (ae) {
      const We = RegExp(/translate\(([^,]+),([^)]+)\)/).exec(ae);
      We && (se = parseFloat(We[1]), ai = parseFloat(We[2]), Lt.attr("class").includes("attribute-name") ? se += m : Lt.attr("class").includes("attribute-keys") ? se += m + y : Lt.attr("class").includes("attribute-comment") && (se += m + y + x));
    }
    Lt.attr(
      "transform",
      `translate(${M + n / 2 + se}, ${ai + E + u.height + a / 2})`
    );
  }), h.select(".name").attr("transform", "translate(" + -u.width / 2 + ", " + (E + a / 2) + ")");
  const N = B.rectangle(M, E, L, W, F), R = h.insert(() => N, ":first-child").attr("style", o.join("")), { themeVariables: O } = Ot(), { rowEven: I, rowOdd: lt, nodeBorder: xt } = O;
  f.push(0);
  for (const [at, ut] of g.entries()) {
    const Lt = (at + 1) % 2 === 0 && ut.yOffset !== 0, ae = B.rectangle(M, u.height + E + (ut == null ? void 0 : ut.yOffset), L, ut == null ? void 0 : ut.rowHeight, {
      ...F,
      fill: Lt ? I : lt,
      stroke: xt
    });
    h.insert(() => ae, "g.label").attr("style", o.join("")).attr("class", `row-rect-${Lt ? "even" : "odd"}`);
  }
  let rt = B.line(M, u.height + E, L + M, u.height + E, F);
  h.insert(() => rt).attr("class", "divider"), rt = B.line(m + M, u.height + E, m + M, W + E, F), h.insert(() => rt).attr("class", "divider"), _ && (rt = B.line(
    m + y + M,
    u.height + E,
    m + y + M,
    W + E,
    F
  ), h.insert(() => rt).attr("class", "divider")), S && (rt = B.line(
    m + y + x + M,
    u.height + E,
    m + y + x + M,
    W + E,
    F
  ), h.insert(() => rt).attr("class", "divider"));
  for (const at of f)
    rt = B.line(
      M,
      u.height + E + at,
      L + M,
      u.height + E + at,
      F
    ), h.insert(() => rt).attr("class", "divider");
  if (G(t, R), l && t.look !== "handDrawn") {
    const at = l.split(";"), ut = (ct = at == null ? void 0 : at.filter((yt) => yt.includes("stroke"))) == null ? void 0 : ct.map((yt) => `${yt}`).join("; ");
    h.selectAll("path").attr("style", ut ?? ""), h.selectAll(".row-rect-even path").attr("style", l);
  }
  return t.intersect = function(at) {
    return z.rect(t, at);
  }, h;
}
d(wl, "erBox");
async function $r(e, t, r, i = 0, n = 0, a = [], o = "") {
  const s = e.insert("g").attr("class", `label ${a.join(" ")}`).attr("transform", `translate(${i}, ${n})`).attr("style", o);
  t !== tc(t) && (t = tc(t), t = t.replaceAll("<", "&lt;").replaceAll(">", "&gt;"));
  const l = s.node().appendChild(
    await Ne(
      s,
      t,
      {
        width: Ie(t, r) + 100,
        style: o,
        useHtmlLabels: r.htmlLabels
      },
      r
    )
  );
  if (t.includes("&lt;") || t.includes("&gt;")) {
    let h = l.children[0];
    for (h.textContent = h.textContent.replaceAll("&lt;", "<").replaceAll("&gt;", ">"); h.childNodes[0]; )
      h = h.childNodes[0], h.textContent = h.textContent.replaceAll("&lt;", "<").replaceAll("&gt;", ">");
  }
  let c = l.getBBox();
  if (Ke(r.htmlLabels)) {
    const h = l.children[0];
    h.style.textAlign = "start";
    const u = et(l);
    c = h.getBoundingClientRect(), u.attr("width", c.width), u.attr("height", c.height);
  }
  return c;
}
d($r, "addText");
async function zg(e, t, r, i, n = r.class.padding ?? 12) {
  const a = i ? 0 : 3, o = e.insert("g").attr("class", K(t)).attr("id", t.domId || t.id);
  let s = null, l = null, c = null, h = null, u = 0, p = 0, f = 0;
  if (s = o.insert("g").attr("class", "annotation-group text"), t.annotations.length > 0) {
    const b = t.annotations[0];
    await Bi(s, { text: `«${b}»` }, 0), u = s.node().getBBox().height;
  }
  l = o.insert("g").attr("class", "label-group text"), await Bi(l, t, 0, ["font-weight: bolder"]);
  const g = l.node().getBBox();
  p = g.height, c = o.insert("g").attr("class", "members-group text");
  let m = 0;
  for (const b of t.members) {
    const _ = await Bi(c, b, m, [b.parseClassifier()]);
    m += _ + a;
  }
  f = c.node().getBBox().height, f <= 0 && (f = n / 2), h = o.insert("g").attr("class", "methods-group text");
  let y = 0;
  for (const b of t.methods) {
    const _ = await Bi(h, b, y, [b.parseClassifier()]);
    y += _ + a;
  }
  let x = o.node().getBBox();
  if (s !== null) {
    const b = s.node().getBBox();
    s.attr("transform", `translate(${-b.width / 2})`);
  }
  return l.attr("transform", `translate(${-g.width / 2}, ${u})`), x = o.node().getBBox(), c.attr(
    "transform",
    `translate(0, ${u + p + n * 2})`
  ), x = o.node().getBBox(), h.attr(
    "transform",
    `translate(0, ${u + p + (f ? f + n * 4 : n * 2)})`
  ), x = o.node().getBBox(), { shapeSvg: o, bbox: x };
}
d(zg, "textHelper");
async function Bi(e, t, r, i = []) {
  const n = e.insert("g").attr("class", "label").attr("style", i.join("; ")), a = Ot();
  let o = "useHtmlLabels" in t ? t.useHtmlLabels : Ke(a.htmlLabels) ?? !0, s = "";
  "text" in t ? s = t.text : s = t.label, !o && s.startsWith("\\") && (s = s.substring(1)), Di(s) && (o = !0);
  const l = await Ne(
    n,
    Eo(ei(s)),
    {
      width: Ie(s, a) + 50,
      // Add room for error when splitting text into multiple lines
      classes: "markdown-node-label",
      useHtmlLabels: o
    },
    a
  );
  let c, h = 1;
  if (o) {
    const u = l.children[0], p = et(l);
    h = u.innerHTML.split("<br>").length, u.innerHTML.includes("</math>") && (h += u.innerHTML.split("<mrow>").length - 1);
    const f = u.getElementsByTagName("img");
    if (f) {
      const g = s.replace(/<img[^>]*>/g, "").trim() === "";
      await Promise.all(
        [...f].map(
          (m) => new Promise((y) => {
            function x() {
              var b;
              if (m.style.display = "flex", m.style.flexDirection = "column", g) {
                const _ = ((b = a.fontSize) == null ? void 0 : b.toString()) ?? window.getComputedStyle(document.body).fontSize, v = parseInt(_, 10) * 5 + "px";
                m.style.minWidth = v, m.style.maxWidth = v;
              } else
                m.style.width = "100%";
              y(m);
            }
            d(x, "setupImage"), setTimeout(() => {
              m.complete && x();
            }), m.addEventListener("error", x), m.addEventListener("load", x);
          })
        )
      );
    }
    c = u.getBoundingClientRect(), p.attr("width", c.width), p.attr("height", c.height);
  } else {
    i.includes("font-weight: bolder") && et(l).selectAll("tspan").attr("font-weight", ""), h = l.children.length;
    const u = l.children[0];
    (l.textContent === "" || l.textContent.includes("&gt")) && (u.textContent = s[0] + s.substring(1).replaceAll("&gt;", ">").replaceAll("&lt;", "<").trim(), s[1] === " " && (u.textContent = u.textContent[0] + " " + u.textContent.substring(1))), u.textContent === "undefined" && (u.textContent = ""), c = l.getBBox();
  }
  return n.attr("transform", "translate(0," + (-c.height / (2 * h) + r) + ")"), c.height;
}
d(Bi, "addText");
async function Wg(e, t) {
  var F, P;
  const r = ot(), i = r.class.padding ?? 12, n = i, a = t.useHtmlLabels ?? Ke(r.htmlLabels) ?? !0, o = t;
  o.annotations = o.annotations ?? [], o.members = o.members ?? [], o.methods = o.methods ?? [];
  const { shapeSvg: s, bbox: l } = await zg(e, t, r, a, n), { labelStyles: c, nodeStyles: h } = Y(t);
  t.labelStyle = c, t.cssStyles = o.styles || "";
  const u = ((F = o.styles) == null ? void 0 : F.join(";")) || h || "";
  t.cssStyles || (t.cssStyles = u.replaceAll("!important", "").split(";"));
  const p = o.members.length === 0 && o.methods.length === 0 && !((P = r.class) != null && P.hideEmptyMembersBox), f = H.svg(s), g = j(t, {});
  t.look !== "handDrawn" && (g.roughness = 0, g.fillStyle = "solid");
  const m = l.width;
  let y = l.height;
  o.members.length === 0 && o.methods.length === 0 ? y += n : o.members.length > 0 && o.methods.length === 0 && (y += n * 2);
  const x = -m / 2, b = -y / 2, _ = f.rectangle(
    x - i,
    b - i - (p ? i : o.members.length === 0 && o.methods.length === 0 ? -i / 2 : 0),
    m + 2 * i,
    y + 2 * i + (p ? i * 2 : o.members.length === 0 && o.methods.length === 0 ? -i : 0),
    g
  ), S = s.insert(() => _, ":first-child");
  S.attr("class", "basic label-container");
  const v = S.node().getBBox();
  s.selectAll(".text").each((L, W, M) => {
    var lt;
    const E = et(M[W]), N = E.attr("transform");
    let R = 0;
    if (N) {
      const rt = RegExp(/translate\(([^,]+),([^)]+)\)/).exec(N);
      rt && (R = parseFloat(rt[2]));
    }
    let O = R + b + i - (p ? i : o.members.length === 0 && o.methods.length === 0 ? -i / 2 : 0);
    a || (O -= 4);
    let I = x;
    (E.attr("class").includes("label-group") || E.attr("class").includes("annotation-group")) && (I = -((lt = E.node()) == null ? void 0 : lt.getBBox().width) / 2 || 0, s.selectAll("text").each(function(xt, rt, ne) {
      window.getComputedStyle(ne[rt]).textAnchor === "middle" && (I = 0);
    })), E.attr("transform", `translate(${I}, ${O})`);
  });
  const C = s.select(".annotation-group").node().getBBox().height - (p ? i / 2 : 0) || 0, T = s.select(".label-group").node().getBBox().height - (p ? i / 2 : 0) || 0, B = s.select(".members-group").node().getBBox().height - (p ? i / 2 : 0) || 0;
  if (o.members.length > 0 || o.methods.length > 0 || p) {
    const L = f.line(
      v.x,
      C + T + b + i,
      v.x + v.width,
      C + T + b + i,
      g
    );
    s.insert(() => L).attr("class", "divider").attr("style", u);
  }
  if (p || o.members.length > 0 || o.methods.length > 0) {
    const L = f.line(
      v.x,
      C + T + B + b + n * 2 + i,
      v.x + v.width,
      C + T + B + b + i + n * 2,
      g
    );
    s.insert(() => L).attr("class", "divider").attr("style", u);
  }
  if (o.look !== "handDrawn" && s.selectAll("path").attr("style", u), S.select(":nth-child(2)").attr("style", u), s.selectAll(".divider").select("path").attr("style", u), t.labelStyle ? s.selectAll("span").attr("style", t.labelStyle) : s.selectAll("span").attr("style", u), !a) {
    const L = RegExp(/color\s*:\s*([^;]*)/), W = L.exec(u);
    if (W) {
      const M = W[0].replace("color", "fill");
      s.selectAll("tspan").attr("style", M);
    } else if (c) {
      const M = L.exec(c);
      if (M) {
        const E = M[0].replace("color", "fill");
        s.selectAll("tspan").attr("style", E);
      }
    }
  }
  return G(t, S), t.intersect = function(L) {
    return z.rect(t, L);
  }, s;
}
d(Wg, "classBox");
async function qg(e, t) {
  var C, T;
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const n = t, a = t, o = 20, s = 20, l = "verifyMethod" in t, c = K(t), h = e.insert("g").attr("class", c).attr("id", t.domId ?? t.id);
  let u;
  l ? u = await Ce(
    h,
    `&lt;&lt;${n.type}&gt;&gt;`,
    0,
    t.labelStyle
  ) : u = await Ce(h, "&lt;&lt;Element&gt;&gt;", 0, t.labelStyle);
  let p = u;
  const f = await Ce(
    h,
    n.name,
    p,
    t.labelStyle + "; font-weight: bold;"
  );
  if (p += f + s, l) {
    const B = await Ce(
      h,
      `${n.requirementId ? `ID: ${n.requirementId}` : ""}`,
      p,
      t.labelStyle
    );
    p += B;
    const F = await Ce(
      h,
      `${n.text ? `Text: ${n.text}` : ""}`,
      p,
      t.labelStyle
    );
    p += F;
    const P = await Ce(
      h,
      `${n.risk ? `Risk: ${n.risk}` : ""}`,
      p,
      t.labelStyle
    );
    p += P, await Ce(
      h,
      `${n.verifyMethod ? `Verification: ${n.verifyMethod}` : ""}`,
      p,
      t.labelStyle
    );
  } else {
    const B = await Ce(
      h,
      `${a.type ? `Type: ${a.type}` : ""}`,
      p,
      t.labelStyle
    );
    p += B, await Ce(
      h,
      `${a.docRef ? `Doc Ref: ${a.docRef}` : ""}`,
      p,
      t.labelStyle
    );
  }
  const g = (((C = h.node()) == null ? void 0 : C.getBBox().width) ?? 200) + o, m = (((T = h.node()) == null ? void 0 : T.getBBox().height) ?? 200) + o, y = -g / 2, x = -m / 2, b = H.svg(h), _ = j(t, {});
  t.look !== "handDrawn" && (_.roughness = 0, _.fillStyle = "solid");
  const S = b.rectangle(y, x, g, m, _), v = h.insert(() => S, ":first-child");
  if (v.attr("class", "basic label-container").attr("style", i), h.selectAll(".label").each((B, F, P) => {
    const L = et(P[F]), W = L.attr("transform");
    let M = 0, E = 0;
    if (W) {
      const I = RegExp(/translate\(([^,]+),([^)]+)\)/).exec(W);
      I && (M = parseFloat(I[1]), E = parseFloat(I[2]));
    }
    const N = E - m / 2;
    let R = y + o / 2;
    (F === 0 || F === 1) && (R = M), L.attr("transform", `translate(${R}, ${N + o})`);
  }), p > u + f + s) {
    const B = b.line(
      y,
      x + u + f + s,
      y + g,
      x + u + f + s,
      _
    );
    h.insert(() => B).attr("style", i);
  }
  return G(t, v), t.intersect = function(B) {
    return z.rect(t, B);
  }, h;
}
d(qg, "requirementBox");
async function Ce(e, t, r, i = "") {
  if (t === "")
    return 0;
  const n = e.insert("g").attr("class", "label").attr("style", i), a = ot(), o = a.htmlLabels ?? !0, s = await Ne(
    n,
    Eo(ei(t)),
    {
      width: Ie(t, a) + 50,
      // Add room for error when splitting text into multiple lines
      classes: "markdown-node-label",
      useHtmlLabels: o,
      style: i
    },
    a
  );
  let l;
  if (o) {
    const c = s.children[0], h = et(s);
    l = c.getBoundingClientRect(), h.attr("width", l.width), h.attr("height", l.height);
  } else {
    const c = s.children[0];
    for (const h of c.children)
      h.textContent = h.textContent.replaceAll("&gt;", ">").replaceAll("&lt;", "<"), i && h.setAttribute("style", i);
    l = s.getBBox(), l.height += 6;
  }
  return n.attr("transform", `translate(${-l.width / 2},${-l.height / 2 + r})`), l.height;
}
d(Ce, "addText");
var sS = /* @__PURE__ */ d((e) => {
  switch (e) {
    case "Very High":
      return "red";
    case "High":
      return "orange";
    case "Medium":
      return null;
    case "Low":
      return "blue";
    case "Very Low":
      return "lightblue";
  }
}, "colorFromPriority");
async function Hg(e, t, { config: r }) {
  var W, M;
  const { labelStyles: i, nodeStyles: n } = Y(t);
  t.labelStyle = i || "";
  const a = 10, o = t.width;
  t.width = (t.width ?? 200) - 10;
  const {
    shapeSvg: s,
    bbox: l,
    label: c
  } = await Q(e, t, K(t)), h = t.padding || 10;
  let u = "", p;
  "ticket" in t && t.ticket && ((W = r == null ? void 0 : r.kanban) != null && W.ticketBaseUrl) && (u = (M = r == null ? void 0 : r.kanban) == null ? void 0 : M.ticketBaseUrl.replace("#TICKET#", t.ticket), p = s.insert("svg:a", ":first-child").attr("class", "kanban-ticket-link").attr("xlink:href", u).attr("target", "_blank"));
  const f = {
    useHtmlLabels: t.useHtmlLabels,
    labelStyle: t.labelStyle || "",
    width: t.width,
    img: t.img,
    padding: t.padding || 8,
    centerLabel: !1
  };
  let g, m;
  p ? { label: g, bbox: m } = await ws(
    p,
    "ticket" in t && t.ticket || "",
    f
  ) : { label: g, bbox: m } = await ws(
    s,
    "ticket" in t && t.ticket || "",
    f
  );
  const { label: y, bbox: x } = await ws(
    s,
    "assigned" in t && t.assigned || "",
    f
  );
  t.width = o;
  const b = 10, _ = (t == null ? void 0 : t.width) || 0, S = Math.max(m.height, x.height) / 2, v = Math.max(l.height + b * 2, (t == null ? void 0 : t.height) || 0) + S, C = -_ / 2, T = -v / 2;
  c.attr(
    "transform",
    "translate(" + (h - _ / 2) + ", " + (-S - l.height / 2) + ")"
  ), g.attr(
    "transform",
    "translate(" + (h - _ / 2) + ", " + (-S + l.height / 2) + ")"
  ), y.attr(
    "transform",
    "translate(" + (h + _ / 2 - x.width - 2 * a) + ", " + (-S + l.height / 2) + ")"
  );
  let B;
  const { rx: F, ry: P } = t, { cssStyles: L } = t;
  if (t.look === "handDrawn") {
    const E = H.svg(s), N = j(t, {}), R = F || P ? E.path(Je(C, T, _, v, F || 0), N) : E.rectangle(C, T, _, v, N);
    B = s.insert(() => R, ":first-child"), B.attr("class", "basic label-container").attr("style", L || null);
  } else {
    B = s.insert("rect", ":first-child"), B.attr("class", "basic label-container __APA__").attr("style", n).attr("rx", F ?? 5).attr("ry", P ?? 5).attr("x", C).attr("y", T).attr("width", _).attr("height", v);
    const E = "priority" in t && t.priority;
    if (E) {
      const N = s.append("line"), R = C + 2, O = T + Math.floor((F ?? 0) / 2), I = T + v - Math.floor((F ?? 0) / 2);
      N.attr("x1", R).attr("y1", O).attr("x2", R).attr("y2", I).attr("stroke-width", "4").attr("stroke", sS(E));
    }
  }
  return G(t, B), t.height = v, t.intersect = function(E) {
    return z.rect(t, E);
  }, s;
}
d(Hg, "kanbanItem");
async function jg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a, halfPadding: o, label: s } = await Q(
    e,
    t,
    K(t)
  ), l = a.width + 10 * o, c = a.height + 8 * o, h = 0.15 * l, { cssStyles: u } = t, p = a.width + 20, f = a.height + 20, g = Math.max(l, p), m = Math.max(c, f);
  s.attr("transform", `translate(${-a.width / 2}, ${-a.height / 2})`);
  let y;
  const x = `M0 0 
    a${h},${h} 1 0,0 ${g * 0.25},${-1 * m * 0.1}
    a${h},${h} 1 0,0 ${g * 0.25},0
    a${h},${h} 1 0,0 ${g * 0.25},0
    a${h},${h} 1 0,0 ${g * 0.25},${m * 0.1}

    a${h},${h} 1 0,0 ${g * 0.15},${m * 0.33}
    a${h * 0.8},${h * 0.8} 1 0,0 0,${m * 0.34}
    a${h},${h} 1 0,0 ${-1 * g * 0.15},${m * 0.33}

    a${h},${h} 1 0,0 ${-1 * g * 0.25},${m * 0.15}
    a${h},${h} 1 0,0 ${-1 * g * 0.25},0
    a${h},${h} 1 0,0 ${-1 * g * 0.25},0
    a${h},${h} 1 0,0 ${-1 * g * 0.25},${-1 * m * 0.15}

    a${h},${h} 1 0,0 ${-1 * g * 0.1},${-1 * m * 0.33}
    a${h * 0.8},${h * 0.8} 1 0,0 0,${-1 * m * 0.34}
    a${h},${h} 1 0,0 ${g * 0.1},${-1 * m * 0.33}
  H0 V0 Z`;
  if (t.look === "handDrawn") {
    const b = H.svg(n), _ = j(t, {}), S = b.path(x, _);
    y = n.insert(() => S, ":first-child"), y.attr("class", "basic label-container").attr("style", Dt(u));
  } else
    y = n.insert("path", ":first-child").attr("class", "basic label-container").attr("style", i).attr("d", x);
  return y.attr("transform", `translate(${-g / 2}, ${-m / 2})`), G(t, y), t.calcIntersect = function(b, _) {
    return z.rect(b, _);
  }, t.intersect = function(b) {
    return A.info("Bang intersect", t, b), z.rect(t, b);
  }, n;
}
d(jg, "bang");
async function Yg(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a, halfPadding: o, label: s } = await Q(
    e,
    t,
    K(t)
  ), l = a.width + 2 * o, c = a.height + 2 * o, h = 0.15 * l, u = 0.25 * l, p = 0.35 * l, f = 0.2 * l, { cssStyles: g } = t;
  let m;
  const y = `M0 0 
    a${h},${h} 0 0,1 ${l * 0.25},${-1 * l * 0.1}
    a${p},${p} 1 0,1 ${l * 0.4},${-1 * l * 0.1}
    a${u},${u} 1 0,1 ${l * 0.35},${l * 0.2}

    a${h},${h} 1 0,1 ${l * 0.15},${c * 0.35}
    a${f},${f} 1 0,1 ${-1 * l * 0.15},${c * 0.65}

    a${u},${h} 1 0,1 ${-1 * l * 0.25},${l * 0.15}
    a${p},${p} 1 0,1 ${-1 * l * 0.5},0
    a${h},${h} 1 0,1 ${-1 * l * 0.25},${-1 * l * 0.15}

    a${h},${h} 1 0,1 ${-1 * l * 0.1},${-1 * c * 0.35}
    a${f},${f} 1 0,1 ${l * 0.1},${-1 * c * 0.65}
  H0 V0 Z`;
  if (t.look === "handDrawn") {
    const x = H.svg(n), b = j(t, {}), _ = x.path(y, b);
    m = n.insert(() => _, ":first-child"), m.attr("class", "basic label-container").attr("style", Dt(g));
  } else
    m = n.insert("path", ":first-child").attr("class", "basic label-container").attr("style", i).attr("d", y);
  return s.attr("transform", `translate(${-a.width / 2}, ${-a.height / 2})`), m.attr("transform", `translate(${-l / 2}, ${-c / 2})`), G(t, m), t.calcIntersect = function(x, b) {
    return z.rect(x, b);
  }, t.intersect = function(x) {
    return A.info("Cloud intersect", t, x), z.rect(t, x);
  }, n;
}
d(Yg, "cloud");
async function Ug(e, t) {
  const { labelStyles: r, nodeStyles: i } = Y(t);
  t.labelStyle = r;
  const { shapeSvg: n, bbox: a, halfPadding: o, label: s } = await Q(
    e,
    t,
    K(t)
  ), l = a.width + 8 * o, c = a.height + 2 * o, h = 5, u = `
    M${-l / 2} ${c / 2 - h}
    v${-c + 2 * h}
    q0,-${h} ${h},-${h}
    h${l - 2 * h}
    q${h},0 ${h},${h}
    v${c - 2 * h}
    q0,${h} -${h},${h}
    h${-l + 2 * h}
    q-${h},0 -${h},-${h}
    Z
  `, p = n.append("path").attr("id", "node-" + t.id).attr("class", "node-bkg node-" + t.type).attr("style", i).attr("d", u);
  return n.append("line").attr("class", "node-line-").attr("x1", -l / 2).attr("y1", c / 2).attr("x2", l / 2).attr("y2", c / 2), s.attr("transform", `translate(${-a.width / 2}, ${-a.height / 2})`), n.append(() => s.node()), G(t, p), t.calcIntersect = function(f, g) {
    return z.rect(f, g);
  }, t.intersect = function(f) {
    return z.rect(t, f);
  }, n;
}
d(Ug, "defaultMindmapNode");
async function Gg(e, t) {
  const r = {
    padding: t.padding ?? 0
  };
  return _l(e, t, r);
}
d(Gg, "mindmapCircle");
var oS = [
  {
    semanticName: "Process",
    name: "Rectangle",
    shortName: "rect",
    description: "Standard process shape",
    aliases: ["proc", "process", "rectangle"],
    internalAliases: ["squareRect"],
    handler: vg
  },
  {
    semanticName: "Event",
    name: "Rounded Rectangle",
    shortName: "rounded",
    description: "Represents an event",
    aliases: ["event"],
    internalAliases: ["roundedRect"],
    handler: _g
  },
  {
    semanticName: "Terminal Point",
    name: "Stadium",
    shortName: "stadium",
    description: "Terminal point",
    aliases: ["terminal", "pill"],
    handler: Sg
  },
  {
    semanticName: "Subprocess",
    name: "Framed Rectangle",
    shortName: "fr-rect",
    description: "Subprocess",
    aliases: ["subprocess", "subproc", "framed-rectangle", "subroutine"],
    handler: Lg
  },
  {
    semanticName: "Database",
    name: "Cylinder",
    shortName: "cyl",
    description: "Database storage",
    aliases: ["db", "database", "cylinder"],
    handler: Xd
  },
  {
    semanticName: "Start",
    name: "Circle",
    shortName: "circle",
    description: "Starting point",
    aliases: ["circ"],
    handler: _l
  },
  {
    semanticName: "Bang",
    name: "Bang",
    shortName: "bang",
    description: "Bang",
    aliases: ["bang"],
    handler: jg
  },
  {
    semanticName: "Cloud",
    name: "Cloud",
    shortName: "cloud",
    description: "cloud",
    aliases: ["cloud"],
    handler: Yg
  },
  {
    semanticName: "Decision",
    name: "Diamond",
    shortName: "diam",
    description: "Decision-making step",
    aliases: ["decision", "diamond", "question"],
    handler: xg
  },
  {
    semanticName: "Prepare Conditional",
    name: "Hexagon",
    shortName: "hex",
    description: "Preparation or condition step",
    aliases: ["hexagon", "prepare"],
    handler: eg
  },
  {
    semanticName: "Data Input/Output",
    name: "Lean Right",
    shortName: "lean-r",
    description: "Represents input or output",
    aliases: ["lean-right", "in-out"],
    internalAliases: ["lean_right"],
    handler: ug
  },
  {
    semanticName: "Data Input/Output",
    name: "Lean Left",
    shortName: "lean-l",
    description: "Represents output or input",
    aliases: ["lean-left", "out-in"],
    internalAliases: ["lean_left"],
    handler: hg
  },
  {
    semanticName: "Priority Action",
    name: "Trapezoid Base Bottom",
    shortName: "trap-b",
    description: "Priority action",
    aliases: ["priority", "trapezoid-bottom", "trapezoid"],
    handler: Og
  },
  {
    semanticName: "Manual Operation",
    name: "Trapezoid Base Top",
    shortName: "trap-t",
    description: "Represents a manual task",
    aliases: ["manual", "trapezoid-top", "inv-trapezoid"],
    internalAliases: ["inv_trapezoid"],
    handler: lg
  },
  {
    semanticName: "Stop",
    name: "Double Circle",
    shortName: "dbl-circ",
    description: "Represents a stop point",
    aliases: ["double-circle"],
    internalAliases: ["doublecircle"],
    handler: Zd
  },
  {
    semanticName: "Text Block",
    name: "Text Block",
    shortName: "text",
    description: "Text block",
    handler: $g
  },
  {
    semanticName: "Card",
    name: "Notched Rectangle",
    shortName: "notch-rect",
    description: "Represents a card",
    aliases: ["card", "notched-rectangle"],
    handler: zd
  },
  {
    semanticName: "Lined/Shaded Process",
    name: "Lined Rectangle",
    shortName: "lin-rect",
    description: "Lined process shape",
    aliases: ["lined-rectangle", "lined-process", "lin-proc", "shaded-process"],
    handler: wg
  },
  {
    semanticName: "Start",
    name: "Small Circle",
    shortName: "sm-circ",
    description: "Small starting point",
    aliases: ["start", "small-circle"],
    internalAliases: ["stateStart"],
    handler: Ag
  },
  {
    semanticName: "Stop",
    name: "Framed Circle",
    shortName: "fr-circ",
    description: "Stop point",
    aliases: ["stop", "framed-circle"],
    internalAliases: ["stateEnd"],
    handler: Bg
  },
  {
    semanticName: "Fork/Join",
    name: "Filled Rectangle",
    shortName: "fork",
    description: "Fork or join in process flow",
    aliases: ["join"],
    internalAliases: ["forkJoin"],
    handler: Jd
  },
  {
    semanticName: "Collate",
    name: "Hourglass",
    shortName: "hourglass",
    description: "Represents a collate operation",
    aliases: ["hourglass", "collate"],
    handler: rg
  },
  {
    semanticName: "Comment",
    name: "Curly Brace",
    shortName: "brace",
    description: "Adds a comment",
    aliases: ["comment", "brace-l"],
    handler: jd
  },
  {
    semanticName: "Comment Right",
    name: "Curly Brace",
    shortName: "brace-r",
    description: "Adds a comment",
    handler: Yd
  },
  {
    semanticName: "Comment with braces on both sides",
    name: "Curly Braces",
    shortName: "braces",
    description: "Adds a comment",
    handler: Ud
  },
  {
    semanticName: "Com Link",
    name: "Lightning Bolt",
    shortName: "bolt",
    description: "Communication link",
    aliases: ["com-link", "lightning-bolt"],
    handler: fg
  },
  {
    semanticName: "Document",
    name: "Document",
    shortName: "doc",
    description: "Represents a document",
    aliases: ["doc", "document"],
    handler: Ig
  },
  {
    semanticName: "Delay",
    name: "Half-Rounded Rectangle",
    shortName: "delay",
    description: "Represents a delay",
    aliases: ["half-rounded-rectangle"],
    handler: tg
  },
  {
    semanticName: "Direct Access Storage",
    name: "Horizontal Cylinder",
    shortName: "h-cyl",
    description: "Direct access storage",
    aliases: ["das", "horizontal-cylinder"],
    handler: Fg
  },
  {
    semanticName: "Disk Storage",
    name: "Lined Cylinder",
    shortName: "lin-cyl",
    description: "Disk storage",
    aliases: ["disk", "lined-cylinder"],
    handler: pg
  },
  {
    semanticName: "Display",
    name: "Curved Trapezoid",
    shortName: "curv-trap",
    description: "Represents a display",
    aliases: ["curved-trapezoid", "display"],
    handler: Gd
  },
  {
    semanticName: "Divided Process",
    name: "Divided Rectangle",
    shortName: "div-rect",
    description: "Divided process shape",
    aliases: ["div-proc", "divided-rectangle", "divided-process"],
    handler: Vd
  },
  {
    semanticName: "Extract",
    name: "Triangle",
    shortName: "tri",
    description: "Extraction process",
    aliases: ["extract", "triangle"],
    handler: Dg
  },
  {
    semanticName: "Internal Storage",
    name: "Window Pane",
    shortName: "win-pane",
    description: "Internal storage",
    aliases: ["internal-storage", "window-pane"],
    handler: Ng
  },
  {
    semanticName: "Junction",
    name: "Filled Circle",
    shortName: "f-circ",
    description: "Junction point",
    aliases: ["junction", "filled-circle"],
    handler: Kd
  },
  {
    semanticName: "Loop Limit",
    name: "Trapezoidal Pentagon",
    shortName: "notch-pent",
    description: "Loop limit step",
    aliases: ["loop-limit", "notched-pentagon"],
    handler: Rg
  },
  {
    semanticName: "Manual File",
    name: "Flipped Triangle",
    shortName: "flip-tri",
    description: "Manual file operation",
    aliases: ["manual-file", "flipped-triangle"],
    handler: Qd
  },
  {
    semanticName: "Manual Input",
    name: "Sloped Rectangle",
    shortName: "sl-rect",
    description: "Manual input step",
    aliases: ["manual-input", "sloped-rectangle"],
    handler: kg
  },
  {
    semanticName: "Multi-Document",
    name: "Stacked Document",
    shortName: "docs",
    description: "Multiple documents",
    aliases: ["documents", "st-doc", "stacked-document"],
    handler: mg
  },
  {
    semanticName: "Multi-Process",
    name: "Stacked Rectangle",
    shortName: "st-rect",
    description: "Multiple processes",
    aliases: ["procs", "processes", "stacked-rectangle"],
    handler: gg
  },
  {
    semanticName: "Stored Data",
    name: "Bow Tie Rectangle",
    shortName: "bow-rect",
    description: "Stored data",
    aliases: ["stored-data", "bow-tie-rectangle"],
    handler: Nd
  },
  {
    semanticName: "Summary",
    name: "Crossed Circle",
    shortName: "cross-circ",
    description: "Summary",
    aliases: ["summary", "crossed-circle"],
    handler: Hd
  },
  {
    semanticName: "Tagged Document",
    name: "Tagged Document",
    shortName: "tag-doc",
    description: "Tagged document",
    aliases: ["tag-doc", "tagged-document"],
    handler: Eg
  },
  {
    semanticName: "Tagged Process",
    name: "Tagged Rectangle",
    shortName: "tag-rect",
    description: "Tagged process",
    aliases: ["tagged-rectangle", "tag-proc", "tagged-process"],
    handler: Mg
  },
  {
    semanticName: "Paper Tape",
    name: "Flag",
    shortName: "flag",
    description: "Paper tape",
    aliases: ["paper-tape"],
    handler: Pg
  },
  {
    semanticName: "Odd",
    name: "Odd",
    shortName: "odd",
    description: "Odd shape",
    internalAliases: ["rect_left_inv_arrow"],
    handler: bg
  },
  {
    semanticName: "Lined Document",
    name: "Lined Document",
    shortName: "lin-doc",
    description: "Lined document",
    aliases: ["lined-document"],
    handler: dg
  }
], lS = /* @__PURE__ */ d(() => {
  const t = [
    ...Object.entries({
      // States
      state: Tg,
      choice: Wd,
      note: yg,
      // Rectangles
      rectWithTitle: Cg,
      labelRect: cg,
      // Icons
      iconSquare: sg,
      iconCircle: ng,
      icon: ig,
      iconRounded: ag,
      imageSquare: og,
      anchor: Pd,
      // Kanban diagram
      kanbanItem: Hg,
      //Mindmap diagram
      mindmapCircle: Gg,
      defaultMindmapNode: Ug,
      // class diagram
      classBox: Wg,
      // er diagram
      erBox: wl,
      // Requirement diagram
      requirementBox: qg
    }),
    ...oS.flatMap((r) => [
      r.shortName,
      ..."aliases" in r ? r.aliases : [],
      ..."internalAliases" in r ? r.internalAliases : []
    ].map((n) => [n, r.handler]))
  ];
  return Object.fromEntries(t);
}, "generateShapeMap"), Xg = lS();
function cS(e) {
  return e in Xg;
}
d(cS, "isValidShape");
var ja = /* @__PURE__ */ new Map();
async function Vg(e, t, r) {
  let i, n;
  t.shape === "rect" && (t.rx && t.ry ? t.shape = "roundedRect" : t.shape = "squareRect");
  const a = t.shape ? Xg[t.shape] : void 0;
  if (!a)
    throw new Error(`No such shape: ${t.shape}. Please check your syntax.`);
  if (t.link) {
    let o;
    r.config.securityLevel === "sandbox" ? o = "_top" : t.linkTarget && (o = t.linkTarget || "_blank"), i = e.insert("svg:a").attr("xlink:href", t.link).attr("target", o ?? null), n = await a(i, t, r);
  } else
    n = await a(e, t, r), i = n;
  return t.tooltip && n.attr("title", t.tooltip), ja.set(t.id, i), t.haveCallback && i.attr("class", i.attr("class") + " clickable"), i;
}
d(Vg, "insertNode");
var LL = /* @__PURE__ */ d((e, t) => {
  ja.set(t.id, e);
}, "setNodeElem"), ML = /* @__PURE__ */ d(() => {
  ja.clear();
}, "clear"), EL = /* @__PURE__ */ d((e) => {
  const t = ja.get(e.id);
  A.trace(
    "Transforming node",
    e.diff,
    e,
    "translate(" + (e.x - e.width / 2 - 5) + ", " + e.width / 2 + ")"
  );
  const r = 8, i = e.diff || 0;
  return e.clusterNode ? t.attr(
    "transform",
    "translate(" + (e.x + i - e.width / 2) + ", " + (e.y - e.height / 2 - r) + ")"
  ) : t.attr("transform", "translate(" + e.x + ", " + e.y + ")"), i;
}, "positionNode"), hS = /* @__PURE__ */ d((e, t, r, i, n, a) => {
  t.arrowTypeStart && ch(e, "start", t.arrowTypeStart, r, i, n, a), t.arrowTypeEnd && ch(e, "end", t.arrowTypeEnd, r, i, n, a);
}, "addEdgeMarkers"), uS = {
  arrow_cross: { type: "cross", fill: !1 },
  arrow_point: { type: "point", fill: !0 },
  arrow_barb: { type: "barb", fill: !0 },
  arrow_circle: { type: "circle", fill: !1 },
  aggregation: { type: "aggregation", fill: !1 },
  extension: { type: "extension", fill: !1 },
  composition: { type: "composition", fill: !0 },
  dependency: { type: "dependency", fill: !0 },
  lollipop: { type: "lollipop", fill: !1 },
  only_one: { type: "onlyOne", fill: !1 },
  zero_or_one: { type: "zeroOrOne", fill: !1 },
  one_or_more: { type: "oneOrMore", fill: !1 },
  zero_or_more: { type: "zeroOrMore", fill: !1 },
  requirement_arrow: { type: "requirement_arrow", fill: !1 },
  requirement_contains: { type: "requirement_contains", fill: !1 }
}, ch = /* @__PURE__ */ d((e, t, r, i, n, a, o) => {
  var u;
  const s = uS[r];
  if (!s) {
    A.warn(`Unknown arrow type: ${r}`);
    return;
  }
  const l = s.type, h = `${n}_${a}-${l}${t === "start" ? "Start" : "End"}`;
  if (o && o.trim() !== "") {
    const p = o.replace(/[^\dA-Za-z]/g, "_"), f = `${h}_${p}`;
    if (!document.getElementById(f)) {
      const g = document.getElementById(h);
      if (g) {
        const m = g.cloneNode(!0);
        m.id = f, m.querySelectorAll("path, circle, line").forEach((x) => {
          x.setAttribute("stroke", o), s.fill && x.setAttribute("fill", o);
        }), (u = g.parentNode) == null || u.appendChild(m);
      }
    }
    e.attr(`marker-${t}`, `url(${i}#${f})`);
  } else
    e.attr(`marker-${t}`, `url(${i}#${h})`);
}, "addEdgeMarker"), fS = /* @__PURE__ */ d((e) => {
  var t, r;
  return typeof e == "string" ? e : (r = (t = ot()) == null ? void 0 : t.flowchart) == null ? void 0 : r.curve;
}, "resolveEdgeCurveType"), Ca = /* @__PURE__ */ new Map(), At = /* @__PURE__ */ new Map(), $L = /* @__PURE__ */ d(() => {
  Ca.clear(), At.clear();
}, "clear"), Ci = /* @__PURE__ */ d((e) => e ? typeof e == "string" ? e : e.reduce((t, r) => t + ";" + r, "") : "", "getLabelStyles"), pS = /* @__PURE__ */ d(async (e, t) => {
  const r = ot();
  let i = It(r);
  const { labelStyles: n } = Y(t);
  t.labelStyle = n;
  const a = e.insert("g").attr("class", "edgeLabel"), o = a.insert("g").attr("class", "label").attr("data-id", t.id), s = t.labelType === "markdown", c = await Ne(
    e,
    t.label,
    {
      style: Ci(t.labelStyle),
      useHtmlLabels: i,
      addSvgBackground: !0,
      isNode: !1,
      markdown: s,
      // Plain text edge labels should auto-wrap, markdown edge labels respect markdownAutoWrap config
      width: s ? void 0 : void 0
    },
    r
  );
  o.node().appendChild(c), A.info("abc82", t, t.labelType);
  let h = c.getBBox(), u = h;
  if (i) {
    const f = c.children[0], g = et(c);
    h = f.getBoundingClientRect(), u = h, g.attr("width", h.width), g.attr("height", h.height);
  } else {
    const f = et(c).select("text").node();
    f && typeof f.getBBox == "function" && (u = f.getBBox());
  }
  o.attr("transform", di(u, i)), Ca.set(t.id, a), t.width = h.width, t.height = h.height;
  let p;
  if (t.startLabelLeft) {
    const f = e.insert("g").attr("class", "edgeTerminals"), g = f.insert("g").attr("class", "inner"), m = await je(
      g,
      t.startLabelLeft,
      Ci(t.labelStyle) || "",
      !1,
      !1
    );
    p = m;
    let y = m.getBBox();
    if (i) {
      const x = m.children[0], b = et(m);
      y = x.getBoundingClientRect(), b.attr("width", y.width), b.attr("height", y.height);
    }
    g.attr("transform", di(y, i)), At.get(t.id) || At.set(t.id, {}), At.get(t.id).startLeft = f, Ai(p, t.startLabelLeft);
  }
  if (t.startLabelRight) {
    const f = e.insert("g").attr("class", "edgeTerminals"), g = f.insert("g").attr("class", "inner"), m = await je(
      g,
      t.startLabelRight,
      Ci(t.labelStyle) || "",
      !1,
      !1
    );
    p = m, g.node().appendChild(m);
    let y = m.getBBox();
    if (i) {
      const x = m.children[0], b = et(m);
      y = x.getBoundingClientRect(), b.attr("width", y.width), b.attr("height", y.height);
    }
    g.attr("transform", di(y, i)), At.get(t.id) || At.set(t.id, {}), At.get(t.id).startRight = f, Ai(p, t.startLabelRight);
  }
  if (t.endLabelLeft) {
    const f = e.insert("g").attr("class", "edgeTerminals"), g = f.insert("g").attr("class", "inner"), m = await je(
      g,
      t.endLabelLeft,
      Ci(t.labelStyle) || "",
      !1,
      !1
    );
    p = m;
    let y = m.getBBox();
    if (i) {
      const x = m.children[0], b = et(m);
      y = x.getBoundingClientRect(), b.attr("width", y.width), b.attr("height", y.height);
    }
    g.attr("transform", di(y, i)), f.node().appendChild(m), At.get(t.id) || At.set(t.id, {}), At.get(t.id).endLeft = f, Ai(p, t.endLabelLeft);
  }
  if (t.endLabelRight) {
    const f = e.insert("g").attr("class", "edgeTerminals"), g = f.insert("g").attr("class", "inner"), m = await je(
      g,
      t.endLabelRight,
      Ci(t.labelStyle) || "",
      !1,
      !1
    );
    p = m;
    let y = m.getBBox();
    if (i) {
      const x = m.children[0], b = et(m);
      y = x.getBoundingClientRect(), b.attr("width", y.width), b.attr("height", y.height);
    }
    g.attr("transform", di(y, i)), f.node().appendChild(m), At.get(t.id) || At.set(t.id, {}), At.get(t.id).endRight = f, Ai(p, t.endLabelRight);
  }
  return c;
}, "insertEdgeLabel");
function Ai(e, t) {
  It(ot()) && e && (e.style.width = t.length * 9 + "px", e.style.height = "12px");
}
d(Ai, "setTerminalWidth");
var dS = /* @__PURE__ */ d((e, t) => {
  A.debug("Moving label abc88 ", e.id, e.label, Ca.get(e.id), t);
  let r = t.updatedPath ? t.updatedPath : t.originalPath;
  const i = ot(), { subGraphTitleTotalMargin: n } = ll(i);
  if (e.label) {
    const a = Ca.get(e.id);
    let o = e.x, s = e.y;
    if (r) {
      const l = he.calcLabelPosition(r);
      A.debug(
        "Moving label " + e.label + " from (",
        o,
        ",",
        s,
        ") to (",
        l.x,
        ",",
        l.y,
        ") abc88"
      ), t.updatedPath && (o = l.x, s = l.y);
    }
    a.attr("transform", `translate(${o}, ${s + n / 2})`);
  }
  if (e.startLabelLeft) {
    const a = At.get(e.id).startLeft;
    let o = e.x, s = e.y;
    if (r) {
      const l = he.calcTerminalLabelPosition(e.arrowTypeStart ? 10 : 0, "start_left", r);
      o = l.x, s = l.y;
    }
    a.attr("transform", `translate(${o}, ${s})`);
  }
  if (e.startLabelRight) {
    const a = At.get(e.id).startRight;
    let o = e.x, s = e.y;
    if (r) {
      const l = he.calcTerminalLabelPosition(
        e.arrowTypeStart ? 10 : 0,
        "start_right",
        r
      );
      o = l.x, s = l.y;
    }
    a.attr("transform", `translate(${o}, ${s})`);
  }
  if (e.endLabelLeft) {
    const a = At.get(e.id).endLeft;
    let o = e.x, s = e.y;
    if (r) {
      const l = he.calcTerminalLabelPosition(e.arrowTypeEnd ? 10 : 0, "end_left", r);
      o = l.x, s = l.y;
    }
    a.attr("transform", `translate(${o}, ${s})`);
  }
  if (e.endLabelRight) {
    const a = At.get(e.id).endRight;
    let o = e.x, s = e.y;
    if (r) {
      const l = he.calcTerminalLabelPosition(e.arrowTypeEnd ? 10 : 0, "end_right", r);
      o = l.x, s = l.y;
    }
    a.attr("transform", `translate(${o}, ${s})`);
  }
}, "positionEdgeLabel"), gS = /* @__PURE__ */ d((e, t) => {
  const r = e.x, i = e.y, n = Math.abs(t.x - r), a = Math.abs(t.y - i), o = e.width / 2, s = e.height / 2;
  return n >= o || a >= s;
}, "outsideNode"), mS = /* @__PURE__ */ d((e, t, r) => {
  A.debug(`intersection calc abc89:
  outsidePoint: ${JSON.stringify(t)}
  insidePoint : ${JSON.stringify(r)}
  node        : x:${e.x} y:${e.y} w:${e.width} h:${e.height}`);
  const i = e.x, n = e.y, a = Math.abs(i - r.x), o = e.width / 2;
  let s = r.x < t.x ? o - a : o + a;
  const l = e.height / 2, c = Math.abs(t.y - r.y), h = Math.abs(t.x - r.x);
  if (Math.abs(n - t.y) * o > Math.abs(i - t.x) * l) {
    let u = r.y < t.y ? t.y - l - n : n - l - t.y;
    s = h * u / c;
    const p = {
      x: r.x < t.x ? r.x + s : r.x - h + s,
      y: r.y < t.y ? r.y + c - u : r.y - c + u
    };
    return s === 0 && (p.x = t.x, p.y = t.y), h === 0 && (p.x = t.x), c === 0 && (p.y = t.y), A.debug(`abc89 top/bottom calc, Q ${c}, q ${u}, R ${h}, r ${s}`, p), p;
  } else {
    r.x < t.x ? s = t.x - o - i : s = i - o - t.x;
    let u = c * s / h, p = r.x < t.x ? r.x + h - s : r.x - h + s, f = r.y < t.y ? r.y + u : r.y - u;
    return A.debug(`sides calc abc89, Q ${c}, q ${u}, R ${h}, r ${s}`, { _x: p, _y: f }), s === 0 && (p = t.x, f = t.y), h === 0 && (p = t.x), c === 0 && (f = t.y), { x: p, y: f };
  }
}, "intersection"), hh = /* @__PURE__ */ d((e, t) => {
  A.warn("abc88 cutPathAtIntersect", e, t);
  let r = [], i = e[0], n = !1;
  return e.forEach((a) => {
    if (A.info("abc88 checking point", a, t), !gS(t, a) && !n) {
      const o = mS(t, i, a);
      A.debug("abc88 inside", a, i, o), A.debug("abc88 intersection", o, t);
      let s = !1;
      r.forEach((l) => {
        s = s || l.x === o.x && l.y === o.y;
      }), r.some((l) => l.x === o.x && l.y === o.y) ? A.warn("abc88 no intersect", o, r) : r.push(o), n = !0;
    } else
      A.warn("abc88 outside", a, i), i = a, n || r.push(a);
  }), A.debug("returning points", r), r;
}, "cutPathAtIntersect");
function Zg(e) {
  const t = [], r = [];
  for (let i = 1; i < e.length - 1; i++) {
    const n = e[i - 1], a = e[i], o = e[i + 1];
    (n.x === a.x && a.y === o.y && Math.abs(a.x - o.x) > 5 && Math.abs(a.y - n.y) > 5 || n.y === a.y && a.x === o.x && Math.abs(a.x - n.x) > 5 && Math.abs(a.y - o.y) > 5) && (t.push(a), r.push(i));
  }
  return { cornerPoints: t, cornerPointPositions: r };
}
d(Zg, "extractCornerPoints");
var uh = /* @__PURE__ */ d(function(e, t, r) {
  const i = t.x - e.x, n = t.y - e.y, a = Math.sqrt(i * i + n * n), o = r / a;
  return { x: t.x - o * i, y: t.y - o * n };
}, "findAdjacentPoint"), yS = /* @__PURE__ */ d(function(e) {
  const { cornerPointPositions: t } = Zg(e), r = [];
  for (let i = 0; i < e.length; i++)
    if (t.includes(i)) {
      const n = e[i - 1], a = e[i + 1], o = e[i], s = uh(n, o, 5), l = uh(a, o, 5), c = l.x - s.x, h = l.y - s.y;
      r.push(s);
      const u = Math.sqrt(2) * 2;
      let p = { x: o.x, y: o.y };
      if (Math.abs(a.x - n.x) > 10 && Math.abs(a.y - n.y) >= 10) {
        A.debug(
          "Corner point fixing",
          Math.abs(a.x - n.x),
          Math.abs(a.y - n.y)
        );
        const f = 5;
        o.x === s.x ? p = {
          x: c < 0 ? s.x - f + u : s.x + f - u,
          y: h < 0 ? s.y - u : s.y + u
        } : p = {
          x: c < 0 ? s.x - u : s.x + u,
          y: h < 0 ? s.y - f + u : s.y + f - u
        };
      } else
        A.debug(
          "Corner point skipping fixing",
          Math.abs(a.x - n.x),
          Math.abs(a.y - n.y)
        );
      r.push(p, l);
    } else
      r.push(e[i]);
  return r;
}, "fixCorners"), xS = /* @__PURE__ */ d((e, t, r) => {
  const i = e - t - r, n = 2, a = 2, o = n + a, s = Math.floor(i / o), l = Array(s).fill(`${n} ${a}`).join(" ");
  return `0 ${t} ${l} ${r}`;
}, "generateDashArray"), bS = /* @__PURE__ */ d(function(e, t, r, i, n, a, o, s = !1) {
  var R;
  const { handDrawnSeed: l } = ot();
  let c = t.points, h = !1;
  const u = n;
  var p = a;
  const f = [];
  for (const O in t.cssCompiledStyles)
    Zp(O) || f.push(t.cssCompiledStyles[O]);
  A.debug("UIO intersect check", t.points, p.x, u.x), p.intersect && u.intersect && !s && (c = c.slice(1, t.points.length - 1), c.unshift(u.intersect(c[0])), A.debug(
    "Last point UIO",
    t.start,
    "-->",
    t.end,
    c[c.length - 1],
    p,
    p.intersect(c[c.length - 1])
  ), c.push(p.intersect(c[c.length - 1])));
  const g = btoa(JSON.stringify(c));
  t.toCluster && (A.info("to cluster abc88", r.get(t.toCluster)), c = hh(t.points, r.get(t.toCluster).node), h = !0), t.fromCluster && (A.debug(
    "from cluster abc88",
    r.get(t.fromCluster),
    JSON.stringify(c, null, 2)
  ), c = hh(c.reverse(), r.get(t.fromCluster).node).reverse(), h = !0);
  let m = c.filter((O) => !Number.isNaN(O.y));
  const y = fS(t.curve);
  y !== "rounded" && (m = yS(m));
  let x = Fi;
  switch (y) {
    case "linear":
      x = Fi;
      break;
    case "basis":
      x = Ws;
      break;
    case "cardinal":
      x = Au;
      break;
    case "bumpX":
      x = ku;
      break;
    case "bumpY":
      x = vu;
      break;
    case "catmullRom":
      x = Mu;
      break;
    case "monotoneX":
      x = Du;
      break;
    case "monotoneY":
      x = Iu;
      break;
    case "natural":
      x = Nu;
      break;
    case "step":
      x = zu;
      break;
    case "stepAfter":
      x = qu;
      break;
    case "stepBefore":
      x = Wu;
      break;
    case "rounded":
      x = Fi;
      break;
    default:
      x = Ws;
  }
  const { x: b, y: _ } = pC(t), S = Z1().x(b).y(_).curve(x);
  let v;
  switch (t.thickness) {
    case "normal":
      v = "edge-thickness-normal";
      break;
    case "thick":
      v = "edge-thickness-thick";
      break;
    case "invisible":
      v = "edge-thickness-invisible";
      break;
    default:
      v = "edge-thickness-normal";
  }
  switch (t.pattern) {
    case "solid":
      v += " edge-pattern-solid";
      break;
    case "dotted":
      v += " edge-pattern-dotted";
      break;
    case "dashed":
      v += " edge-pattern-dashed";
      break;
    default:
      v += " edge-pattern-solid";
  }
  let C, T = y === "rounded" ? Kg(Qg(m, t), 5) : S(m);
  const B = Array.isArray(t.style) ? t.style : [t.style];
  let F = B.find((O) => O == null ? void 0 : O.startsWith("stroke:")), P = "";
  t.animate && (P = "edge-animation-fast"), t.animation && (P = "edge-animation-" + t.animation);
  let L = !1;
  if (t.look === "handDrawn") {
    const O = H.svg(e);
    Object.assign([], m);
    const I = O.path(T, {
      roughness: 0.3,
      seed: l
    });
    v += " transition", C = et(I).select("path").attr("id", t.id).attr(
      "class",
      " " + v + (t.classes ? " " + t.classes : "") + (P ? " " + P : "")
    ).attr("style", B ? B.reduce((xt, rt) => xt + ";" + rt, "") : "");
    let lt = C.attr("d");
    C.attr("d", lt), e.node().appendChild(C.node());
  } else {
    const O = f.join(";"), I = B ? B.reduce((ge, ct) => ge + ct + ";", "") : "", lt = (O ? O + ";" + I + ";" : I) + ";" + (B ? B.reduce((ge, ct) => ge + ";" + ct, "") : "");
    C = e.append("path").attr("d", T).attr("id", t.id).attr(
      "class",
      " " + v + (t.classes ? " " + t.classes : "") + (P ? " " + P : "")
    ).attr("style", lt), F = (R = lt.match(/stroke:([^;]+)/)) == null ? void 0 : R[1], L = t.animate === !0 || !!t.animation || O.includes("animation");
    const xt = C.node(), rt = typeof xt.getTotalLength == "function" ? xt.getTotalLength() : 0, ne = Bc[t.arrowTypeStart] || 0, dt = Bc[t.arrowTypeEnd] || 0;
    if (t.look === "neo" && !L) {
      const ct = `stroke-dasharray: ${t.pattern === "dotted" || t.pattern === "dashed" ? xS(rt, ne, dt) : `0 ${ne} ${rt - ne - dt} ${dt}`}; stroke-dashoffset: 0;`;
      C.attr("style", ct + C.attr("style"));
    }
  }
  C.attr("data-edge", !0), C.attr("data-et", "edge"), C.attr("data-id", t.id), C.attr("data-points", g), t.showPoints && m.forEach((O) => {
    e.append("circle").style("stroke", "red").style("fill", "red").attr("r", 1).attr("cx", O.x).attr("cy", O.y);
  });
  let W = "";
  (ot().flowchart.arrowMarkerAbsolute || ot().state.arrowMarkerAbsolute) && (W = window.location.protocol + "//" + window.location.host + window.location.pathname + window.location.search, W = W.replace(/\(/g, "\\(").replace(/\)/g, "\\)")), A.info("arrowTypeStart", t.arrowTypeStart), A.info("arrowTypeEnd", t.arrowTypeEnd), hS(C, t, W, o, i, F);
  const M = Math.floor(c.length / 2), E = c[M];
  he.isLabelCoordinateInPath(E, C.attr("d")) || (h = !0);
  let N = {};
  return h && (N.updatedPath = c), N.originalPath = t.points, N;
}, "insertEdge");
function Kg(e, t) {
  if (e.length < 2)
    return "";
  let r = "";
  const i = e.length, n = 1e-5;
  for (let a = 0; a < i; a++) {
    const o = e[a], s = e[a - 1], l = e[a + 1];
    if (a === 0)
      r += `M${o.x},${o.y}`;
    else if (a === i - 1)
      r += `L${o.x},${o.y}`;
    else {
      const c = o.x - s.x, h = o.y - s.y, u = l.x - o.x, p = l.y - o.y, f = Math.hypot(c, h), g = Math.hypot(u, p);
      if (f < n || g < n) {
        r += `L${o.x},${o.y}`;
        continue;
      }
      const m = c / f, y = h / f, x = u / g, b = p / g, _ = m * x + y * b, S = Math.max(-1, Math.min(1, _)), v = Math.acos(S);
      if (v < n || Math.abs(Math.PI - v) < n) {
        r += `L${o.x},${o.y}`;
        continue;
      }
      const C = Math.min(t / Math.sin(v / 2), f / 2, g / 2), T = o.x - m * C, B = o.y - y * C, F = o.x + x * C, P = o.y + b * C;
      r += `L${T},${B}`, r += `Q${o.x},${o.y} ${F},${P}`;
    }
  }
  return r;
}
d(Kg, "generateRoundedPath");
function mo(e, t) {
  if (!e || !t)
    return { angle: 0, deltaX: 0, deltaY: 0 };
  const r = t.x - e.x, i = t.y - e.y;
  return { angle: Math.atan2(i, r), deltaX: r, deltaY: i };
}
d(mo, "calculateDeltaAndAngle");
function Qg(e, t) {
  const r = e.map((n) => ({ ...n }));
  if (e.length >= 2 && Ft[t.arrowTypeStart]) {
    const n = Ft[t.arrowTypeStart], a = e[0], o = e[1], { angle: s } = mo(a, o), l = n * Math.cos(s), c = n * Math.sin(s);
    r[0].x = a.x + l, r[0].y = a.y + c;
  }
  const i = e.length;
  if (i >= 2 && Ft[t.arrowTypeEnd]) {
    const n = Ft[t.arrowTypeEnd], a = e[i - 1], o = e[i - 2], { angle: s } = mo(o, a), l = n * Math.cos(s), c = n * Math.sin(s);
    r[i - 1].x = a.x - l, r[i - 1].y = a.y - c;
  }
  return r;
}
d(Qg, "applyMarkerOffsetsToPoints");
var CS = /* @__PURE__ */ d((e, t, r, i) => {
  t.forEach((n) => {
    DS[n](e, r, i);
  });
}, "insertMarkers"), _S = /* @__PURE__ */ d((e, t, r) => {
  A.trace("Making markers for ", r), e.append("defs").append("marker").attr("id", r + "_" + t + "-extensionStart").attr("class", "marker extension " + t).attr("refX", 18).attr("refY", 7).attr("markerWidth", 190).attr("markerHeight", 240).attr("orient", "auto").append("path").attr("d", "M 1,7 L18,13 V 1 Z"), e.append("defs").append("marker").attr("id", r + "_" + t + "-extensionEnd").attr("class", "marker extension " + t).attr("refX", 1).attr("refY", 7).attr("markerWidth", 20).attr("markerHeight", 28).attr("orient", "auto").append("path").attr("d", "M 1,1 V 13 L18,7 Z");
}, "extension"), wS = /* @__PURE__ */ d((e, t, r) => {
  e.append("defs").append("marker").attr("id", r + "_" + t + "-compositionStart").attr("class", "marker composition " + t).attr("refX", 18).attr("refY", 7).attr("markerWidth", 190).attr("markerHeight", 240).attr("orient", "auto").append("path").attr("d", "M 18,7 L9,13 L1,7 L9,1 Z"), e.append("defs").append("marker").attr("id", r + "_" + t + "-compositionEnd").attr("class", "marker composition " + t).attr("refX", 1).attr("refY", 7).attr("markerWidth", 20).attr("markerHeight", 28).attr("orient", "auto").append("path").attr("d", "M 18,7 L9,13 L1,7 L9,1 Z");
}, "composition"), kS = /* @__PURE__ */ d((e, t, r) => {
  e.append("defs").append("marker").attr("id", r + "_" + t + "-aggregationStart").attr("class", "marker aggregation " + t).attr("refX", 18).attr("refY", 7).attr("markerWidth", 190).attr("markerHeight", 240).attr("orient", "auto").append("path").attr("d", "M 18,7 L9,13 L1,7 L9,1 Z"), e.append("defs").append("marker").attr("id", r + "_" + t + "-aggregationEnd").attr("class", "marker aggregation " + t).attr("refX", 1).attr("refY", 7).attr("markerWidth", 20).attr("markerHeight", 28).attr("orient", "auto").append("path").attr("d", "M 18,7 L9,13 L1,7 L9,1 Z");
}, "aggregation"), vS = /* @__PURE__ */ d((e, t, r) => {
  e.append("defs").append("marker").attr("id", r + "_" + t + "-dependencyStart").attr("class", "marker dependency " + t).attr("refX", 6).attr("refY", 7).attr("markerWidth", 190).attr("markerHeight", 240).attr("orient", "auto").append("path").attr("d", "M 5,7 L9,13 L1,7 L9,1 Z"), e.append("defs").append("marker").attr("id", r + "_" + t + "-dependencyEnd").attr("class", "marker dependency " + t).attr("refX", 13).attr("refY", 7).attr("markerWidth", 20).attr("markerHeight", 28).attr("orient", "auto").append("path").attr("d", "M 18,7 L9,13 L14,7 L9,1 Z");
}, "dependency"), SS = /* @__PURE__ */ d((e, t, r) => {
  e.append("defs").append("marker").attr("id", r + "_" + t + "-lollipopStart").attr("class", "marker lollipop " + t).attr("refX", 13).attr("refY", 7).attr("markerWidth", 190).attr("markerHeight", 240).attr("orient", "auto").append("circle").attr("fill", "transparent").attr("cx", 7).attr("cy", 7).attr("r", 6), e.append("defs").append("marker").attr("id", r + "_" + t + "-lollipopEnd").attr("class", "marker lollipop " + t).attr("refX", 1).attr("refY", 7).attr("markerWidth", 190).attr("markerHeight", 240).attr("orient", "auto").append("circle").attr("fill", "transparent").attr("cx", 7).attr("cy", 7).attr("r", 6);
}, "lollipop"), TS = /* @__PURE__ */ d((e, t, r) => {
  e.append("marker").attr("id", r + "_" + t + "-pointEnd").attr("class", "marker " + t).attr("viewBox", "0 0 10 10").attr("refX", 5).attr("refY", 5).attr("markerUnits", "userSpaceOnUse").attr("markerWidth", 8).attr("markerHeight", 8).attr("orient", "auto").append("path").attr("d", "M 0 0 L 10 5 L 0 10 z").attr("class", "arrowMarkerPath").style("stroke-width", 1).style("stroke-dasharray", "1,0"), e.append("marker").attr("id", r + "_" + t + "-pointStart").attr("class", "marker " + t).attr("viewBox", "0 0 10 10").attr("refX", 4.5).attr("refY", 5).attr("markerUnits", "userSpaceOnUse").attr("markerWidth", 8).attr("markerHeight", 8).attr("orient", "auto").append("path").attr("d", "M 0 5 L 10 10 L 10 0 z").attr("class", "arrowMarkerPath").style("stroke-width", 1).style("stroke-dasharray", "1,0");
}, "point"), BS = /* @__PURE__ */ d((e, t, r) => {
  e.append("marker").attr("id", r + "_" + t + "-circleEnd").attr("class", "marker " + t).attr("viewBox", "0 0 10 10").attr("refX", 11).attr("refY", 5).attr("markerUnits", "userSpaceOnUse").attr("markerWidth", 11).attr("markerHeight", 11).attr("orient", "auto").append("circle").attr("cx", "5").attr("cy", "5").attr("r", "5").attr("class", "arrowMarkerPath").style("stroke-width", 1).style("stroke-dasharray", "1,0"), e.append("marker").attr("id", r + "_" + t + "-circleStart").attr("class", "marker " + t).attr("viewBox", "0 0 10 10").attr("refX", -1).attr("refY", 5).attr("markerUnits", "userSpaceOnUse").attr("markerWidth", 11).attr("markerHeight", 11).attr("orient", "auto").append("circle").attr("cx", "5").attr("cy", "5").attr("r", "5").attr("class", "arrowMarkerPath").style("stroke-width", 1).style("stroke-dasharray", "1,0");
}, "circle"), AS = /* @__PURE__ */ d((e, t, r) => {
  e.append("marker").attr("id", r + "_" + t + "-crossEnd").attr("class", "marker cross " + t).attr("viewBox", "0 0 11 11").attr("refX", 12).attr("refY", 5.2).attr("markerUnits", "userSpaceOnUse").attr("markerWidth", 11).attr("markerHeight", 11).attr("orient", "auto").append("path").attr("d", "M 1,1 l 9,9 M 10,1 l -9,9").attr("class", "arrowMarkerPath").style("stroke-width", 2).style("stroke-dasharray", "1,0"), e.append("marker").attr("id", r + "_" + t + "-crossStart").attr("class", "marker cross " + t).attr("viewBox", "0 0 11 11").attr("refX", -1).attr("refY", 5.2).attr("markerUnits", "userSpaceOnUse").attr("markerWidth", 11).attr("markerHeight", 11).attr("orient", "auto").append("path").attr("d", "M 1,1 l 9,9 M 10,1 l -9,9").attr("class", "arrowMarkerPath").style("stroke-width", 2).style("stroke-dasharray", "1,0");
}, "cross"), LS = /* @__PURE__ */ d((e, t, r) => {
  e.append("defs").append("marker").attr("id", r + "_" + t + "-barbEnd").attr("refX", 19).attr("refY", 7).attr("markerWidth", 20).attr("markerHeight", 14).attr("markerUnits", "userSpaceOnUse").attr("orient", "auto").append("path").attr("d", "M 19,7 L9,13 L14,7 L9,1 Z");
}, "barb"), MS = /* @__PURE__ */ d((e, t, r) => {
  e.append("defs").append("marker").attr("id", r + "_" + t + "-onlyOneStart").attr("class", "marker onlyOne " + t).attr("refX", 0).attr("refY", 9).attr("markerWidth", 18).attr("markerHeight", 18).attr("orient", "auto").append("path").attr("d", "M9,0 L9,18 M15,0 L15,18"), e.append("defs").append("marker").attr("id", r + "_" + t + "-onlyOneEnd").attr("class", "marker onlyOne " + t).attr("refX", 18).attr("refY", 9).attr("markerWidth", 18).attr("markerHeight", 18).attr("orient", "auto").append("path").attr("d", "M3,0 L3,18 M9,0 L9,18");
}, "only_one"), ES = /* @__PURE__ */ d((e, t, r) => {
  const i = e.append("defs").append("marker").attr("id", r + "_" + t + "-zeroOrOneStart").attr("class", "marker zeroOrOne " + t).attr("refX", 0).attr("refY", 9).attr("markerWidth", 30).attr("markerHeight", 18).attr("orient", "auto");
  i.append("circle").attr("fill", "white").attr("cx", 21).attr("cy", 9).attr("r", 6), i.append("path").attr("d", "M9,0 L9,18");
  const n = e.append("defs").append("marker").attr("id", r + "_" + t + "-zeroOrOneEnd").attr("class", "marker zeroOrOne " + t).attr("refX", 30).attr("refY", 9).attr("markerWidth", 30).attr("markerHeight", 18).attr("orient", "auto");
  n.append("circle").attr("fill", "white").attr("cx", 9).attr("cy", 9).attr("r", 6), n.append("path").attr("d", "M21,0 L21,18");
}, "zero_or_one"), $S = /* @__PURE__ */ d((e, t, r) => {
  e.append("defs").append("marker").attr("id", r + "_" + t + "-oneOrMoreStart").attr("class", "marker oneOrMore " + t).attr("refX", 18).attr("refY", 18).attr("markerWidth", 45).attr("markerHeight", 36).attr("orient", "auto").append("path").attr("d", "M0,18 Q 18,0 36,18 Q 18,36 0,18 M42,9 L42,27"), e.append("defs").append("marker").attr("id", r + "_" + t + "-oneOrMoreEnd").attr("class", "marker oneOrMore " + t).attr("refX", 27).attr("refY", 18).attr("markerWidth", 45).attr("markerHeight", 36).attr("orient", "auto").append("path").attr("d", "M3,9 L3,27 M9,18 Q27,0 45,18 Q27,36 9,18");
}, "one_or_more"), FS = /* @__PURE__ */ d((e, t, r) => {
  const i = e.append("defs").append("marker").attr("id", r + "_" + t + "-zeroOrMoreStart").attr("class", "marker zeroOrMore " + t).attr("refX", 18).attr("refY", 18).attr("markerWidth", 57).attr("markerHeight", 36).attr("orient", "auto");
  i.append("circle").attr("fill", "white").attr("cx", 48).attr("cy", 18).attr("r", 6), i.append("path").attr("d", "M0,18 Q18,0 36,18 Q18,36 0,18");
  const n = e.append("defs").append("marker").attr("id", r + "_" + t + "-zeroOrMoreEnd").attr("class", "marker zeroOrMore " + t).attr("refX", 39).attr("refY", 18).attr("markerWidth", 57).attr("markerHeight", 36).attr("orient", "auto");
  n.append("circle").attr("fill", "white").attr("cx", 9).attr("cy", 18).attr("r", 6), n.append("path").attr("d", "M21,18 Q39,0 57,18 Q39,36 21,18");
}, "zero_or_more"), OS = /* @__PURE__ */ d((e, t, r) => {
  e.append("defs").append("marker").attr("id", r + "_" + t + "-requirement_arrowEnd").attr("refX", 20).attr("refY", 10).attr("markerWidth", 20).attr("markerHeight", 20).attr("orient", "auto").append("path").attr(
    "d",
    `M0,0
      L20,10
      M20,10
      L0,20`
  );
}, "requirement_arrow"), RS = /* @__PURE__ */ d((e, t, r) => {
  const i = e.append("defs").append("marker").attr("id", r + "_" + t + "-requirement_containsStart").attr("refX", 0).attr("refY", 10).attr("markerWidth", 20).attr("markerHeight", 20).attr("orient", "auto").append("g");
  i.append("circle").attr("cx", 10).attr("cy", 10).attr("r", 9).attr("fill", "none"), i.append("line").attr("x1", 1).attr("x2", 19).attr("y1", 10).attr("y2", 10), i.append("line").attr("y1", 1).attr("y2", 19).attr("x1", 10).attr("x2", 10);
}, "requirement_contains"), DS = {
  extension: _S,
  composition: wS,
  aggregation: kS,
  dependency: vS,
  lollipop: SS,
  point: TS,
  circle: BS,
  cross: AS,
  barb: LS,
  only_one: MS,
  zero_or_one: ES,
  one_or_more: $S,
  zero_or_more: FS,
  requirement_arrow: OS,
  requirement_contains: RS
}, IS = CS, PS = {
  common: Qi,
  getConfig: Ot,
  insertCluster: jv,
  insertEdge: bS,
  insertEdgeLabel: pS,
  insertMarkers: IS,
  insertNode: Vg,
  interpolateToCurve: rl,
  labelHelper: Q,
  log: A,
  positionEdgeLabel: dS
}, Xi = {}, Jg = /* @__PURE__ */ d((e) => {
  for (const t of e)
    Xi[t.name] = t;
}, "registerLayoutLoaders"), NS = /* @__PURE__ */ d(() => {
  Jg([
    {
      name: "dagre",
      loader: /* @__PURE__ */ d(async () => await import("./dagre-KLK3FWXG-CSIDwZlP.js"), "loader")
    },
    {
      name: "cose-bilkent",
      loader: /* @__PURE__ */ d(async () => await import("./cose-bilkent-S5V4N54A-01e1jHbd.js"), "loader")
    }
  ]);
}, "registerDefaultLayoutLoaders");
NS();
var FL = /* @__PURE__ */ d(async (e, t) => {
  if (!(e.layoutAlgorithm in Xi))
    throw new Error(`Unknown layout algorithm: ${e.layoutAlgorithm}`);
  const r = Xi[e.layoutAlgorithm];
  return (await r.loader()).render(e, t, PS, {
    algorithm: r.algorithm
  });
}, "render"), OL = /* @__PURE__ */ d((e = "", { fallback: t = "dagre" } = {}) => {
  if (e in Xi)
    return e;
  if (t in Xi)
    return A.warn(`Layout algorithm ${e} is not registered. Using ${t} as fallback.`), t;
  throw new Error(`Both layout algorithms ${e} and ${t} are not registered.`);
}, "getRegisteredLayoutAlgorithm"), tm = "comm", em = "rule", rm = "decl", zS = "@import", WS = "@namespace", qS = "@keyframes", HS = "@layer", im = Math.abs, kl = String.fromCharCode;
function nm(e) {
  return e.trim();
}
function Pn(e, t, r) {
  return e.replace(t, r);
}
function jS(e, t, r) {
  return e.indexOf(t, r);
}
function Dr(e, t) {
  return e.charCodeAt(t) | 0;
}
function Kr(e, t, r) {
  return e.slice(t, r);
}
function _e(e) {
  return e.length;
}
function YS(e) {
  return e.length;
}
function Sn(e, t) {
  return t.push(e), e;
}
var Ya = 1, Qr = 1, am = 0, ie = 0, _t = 0, ni = "";
function vl(e, t, r, i, n, a, o, s) {
  return { value: e, root: t, parent: r, type: i, props: n, children: a, line: Ya, column: Qr, length: o, return: "", siblings: s };
}
function US() {
  return _t;
}
function GS() {
  return _t = ie > 0 ? Dr(ni, --ie) : 0, Qr--, _t === 10 && (Qr = 1, Ya--), _t;
}
function fe() {
  return _t = ie < am ? Dr(ni, ie++) : 0, Qr++, _t === 10 && (Qr = 1, Ya++), _t;
}
function Ye() {
  return Dr(ni, ie);
}
function Nn() {
  return ie;
}
function Ua(e, t) {
  return Kr(ni, e, t);
}
function Vi(e) {
  switch (e) {
    case 0:
    case 9:
    case 10:
    case 13:
    case 32:
      return 5;
    case 33:
    case 43:
    case 44:
    case 47:
    case 62:
    case 64:
    case 126:
    case 59:
    case 123:
    case 125:
      return 4;
    case 58:
      return 3;
    case 34:
    case 39:
    case 40:
    case 91:
      return 2;
    case 41:
    case 93:
      return 1;
  }
  return 0;
}
function XS(e) {
  return Ya = Qr = 1, am = _e(ni = e), ie = 0, [];
}
function VS(e) {
  return ni = "", e;
}
function ks(e) {
  return nm(Ua(ie - 1, yo(e === 91 ? e + 2 : e === 40 ? e + 1 : e)));
}
function ZS(e) {
  for (; (_t = Ye()) && _t < 33; )
    fe();
  return Vi(e) > 2 || Vi(_t) > 3 ? "" : " ";
}
function KS(e, t) {
  for (; --t && fe() && !(_t < 48 || _t > 102 || _t > 57 && _t < 65 || _t > 70 && _t < 97); )
    ;
  return Ua(e, Nn() + (t < 6 && Ye() == 32 && fe() == 32));
}
function yo(e) {
  for (; fe(); )
    switch (_t) {
      case e:
        return ie;
      case 34:
      case 39:
        e !== 34 && e !== 39 && yo(_t);
        break;
      case 40:
        e === 41 && yo(e);
        break;
      case 92:
        fe();
        break;
    }
  return ie;
}
function QS(e, t) {
  for (; fe() && e + _t !== 57; )
    if (e + _t === 84 && Ye() === 47)
      break;
  return "/*" + Ua(t, ie - 1) + "*" + kl(e === 47 ? e : fe());
}
function JS(e) {
  for (; !Vi(Ye()); )
    fe();
  return Ua(e, ie);
}
function tT(e) {
  return VS(zn("", null, null, null, [""], e = XS(e), 0, [0], e));
}
function zn(e, t, r, i, n, a, o, s, l) {
  for (var c = 0, h = 0, u = o, p = 0, f = 0, g = 0, m = 1, y = 1, x = 1, b = 0, _ = "", S = n, v = a, C = i, T = _; y; )
    switch (g = b, b = fe()) {
      case 40:
        if (g != 108 && Dr(T, u - 1) == 58) {
          jS(T += Pn(ks(b), "&", "&\f"), "&\f", im(c ? s[c - 1] : 0)) != -1 && (x = -1);
          break;
        }
      case 34:
      case 39:
      case 91:
        T += ks(b);
        break;
      case 9:
      case 10:
      case 13:
      case 32:
        T += ZS(g);
        break;
      case 92:
        T += KS(Nn() - 1, 7);
        continue;
      case 47:
        switch (Ye()) {
          case 42:
          case 47:
            Sn(eT(QS(fe(), Nn()), t, r, l), l), (Vi(g || 1) == 5 || Vi(Ye() || 1) == 5) && _e(T) && Kr(T, -1, void 0) !== " " && (T += " ");
            break;
          default:
            T += "/";
        }
        break;
      case 123 * m:
        s[c++] = _e(T) * x;
      case 125 * m:
      case 59:
      case 0:
        switch (b) {
          case 0:
          case 125:
            y = 0;
          case 59 + h:
            x == -1 && (T = Pn(T, /\f/g, "")), f > 0 && (_e(T) - u || m === 0 && g === 47) && Sn(f > 32 ? ph(T + ";", i, r, u - 1, l) : ph(Pn(T, " ", "") + ";", i, r, u - 2, l), l);
            break;
          case 59:
            T += ";";
          default:
            if (Sn(C = fh(T, t, r, c, h, n, s, _, S = [], v = [], u, a), a), b === 123)
              if (h === 0)
                zn(T, t, C, C, S, a, u, s, v);
              else {
                switch (p) {
                  case 99:
                    if (Dr(T, 3) === 110) break;
                  case 108:
                    if (Dr(T, 2) === 97) break;
                  default:
                    h = 0;
                  case 100:
                  case 109:
                  case 115:
                }
                h ? zn(e, C, C, i && Sn(fh(e, C, C, 0, 0, n, s, _, n, S = [], u, v), v), n, v, u, s, i ? S : v) : zn(T, C, C, C, [""], v, 0, s, v);
              }
        }
        c = h = f = 0, m = x = 1, _ = T = "", u = o;
        break;
      case 58:
        u = 1 + _e(T), f = g;
      default:
        if (m < 1) {
          if (b == 123)
            --m;
          else if (b == 125 && m++ == 0 && GS() == 125)
            continue;
        }
        switch (T += kl(b), b * m) {
          case 38:
            x = h > 0 ? 1 : (T += "\f", -1);
            break;
          case 44:
            s[c++] = (_e(T) - 1) * x, x = 1;
            break;
          case 64:
            Ye() === 45 && (T += ks(fe())), p = Ye(), h = u = _e(_ = T += JS(Nn())), b++;
            break;
          case 45:
            g === 45 && _e(T) == 2 && (m = 0);
        }
    }
  return a;
}
function fh(e, t, r, i, n, a, o, s, l, c, h, u) {
  for (var p = n - 1, f = n === 0 ? a : [""], g = YS(f), m = 0, y = 0, x = 0; m < i; ++m)
    for (var b = 0, _ = Kr(e, p + 1, p = im(y = o[m])), S = e; b < g; ++b)
      (S = nm(y > 0 ? f[b] + " " + _ : Pn(_, /&\f/g, f[b]))) && (l[x++] = S);
  return vl(e, t, r, n === 0 ? em : s, l, c, h, u);
}
function eT(e, t, r, i) {
  return vl(e, t, r, tm, kl(US()), Kr(e, 2, -2), 0, i);
}
function ph(e, t, r, i, n) {
  return vl(e, t, r, rm, Kr(e, 0, i), Kr(e, i + 1, -1), i, n);
}
function xo(e, t) {
  for (var r = "", i = 0; i < e.length; i++)
    r += t(e[i], i, e, t) || "";
  return r;
}
function rT(e, t, r, i) {
  switch (e.type) {
    case HS:
      if (e.children.length) break;
    case zS:
    case WS:
    case rm:
      return e.return = e.return || e.value;
    case tm:
      return "";
    case qS:
      return e.return = e.value + "{" + xo(e.children, i) + "}";
    case em:
      if (!_e(e.value = e.props.join(","))) return "";
  }
  return _e(r = xo(e.children, i)) ? e.return = e.value + "{" + r + "}" : "";
}
var iT = Lp(Object.keys, Object), nT = Object.prototype, aT = nT.hasOwnProperty;
function sT(e) {
  if (!Da(e))
    return iT(e);
  var t = [];
  for (var r in Object(e))
    aT.call(e, r) && r != "constructor" && t.push(r);
  return t;
}
var bo = wr(Te, "DataView"), Co = wr(Te, "Promise"), _o = wr(Te, "Set"), wo = wr(Te, "WeakMap"), dh = "[object Map]", oT = "[object Object]", gh = "[object Promise]", mh = "[object Set]", yh = "[object WeakMap]", xh = "[object DataView]", lT = _r(bo), cT = _r(Ui), hT = _r(Co), uT = _r(_o), fT = _r(wo), sr = Jr;
(bo && sr(new bo(new ArrayBuffer(1))) != xh || Ui && sr(new Ui()) != dh || Co && sr(Co.resolve()) != gh || _o && sr(new _o()) != mh || wo && sr(new wo()) != yh) && (sr = function(e) {
  var t = Jr(e), r = t == oT ? e.constructor : void 0, i = r ? _r(r) : "";
  if (i)
    switch (i) {
      case lT:
        return xh;
      case cT:
        return dh;
      case hT:
        return gh;
      case uT:
        return mh;
      case fT:
        return yh;
    }
  return t;
});
var pT = "[object Map]", dT = "[object Set]", gT = Object.prototype, mT = gT.hasOwnProperty;
function bh(e) {
  if (e == null)
    return !0;
  if (Ia(e) && (ha(e) || typeof e == "string" || typeof e.splice == "function" || tl(e) || el(e) || ca(e)))
    return !e.length;
  var t = sr(e);
  if (t == pT || t == dT)
    return !e.size;
  if (Da(e))
    return !sT(e).length;
  for (var r in e)
    if (mT.call(e, r))
      return !1;
  return !0;
}
var sm = "c4", yT = /* @__PURE__ */ d((e) => /^\s*C4Context|C4Container|C4Component|C4Dynamic|C4Deployment/.test(e), "detector"), xT = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./c4Diagram-IC4MRINW-BB-qPbZa.js");
  return { id: sm, diagram: e };
}, "loader"), bT = {
  id: sm,
  detector: yT,
  loader: xT
}, CT = bT, om = "flowchart", _T = /* @__PURE__ */ d((e, t) => {
  var r, i;
  return ((r = t == null ? void 0 : t.flowchart) == null ? void 0 : r.defaultRenderer) === "dagre-wrapper" || ((i = t == null ? void 0 : t.flowchart) == null ? void 0 : i.defaultRenderer) === "elk" ? !1 : /^\s*graph/.test(e);
}, "detector"), wT = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./flowDiagram-PKNHOUZH-CilKspe0.js");
  return { id: om, diagram: e };
}, "loader"), kT = {
  id: om,
  detector: _T,
  loader: wT
}, vT = kT, lm = "flowchart-v2", ST = /* @__PURE__ */ d((e, t) => {
  var r, i, n;
  return ((r = t == null ? void 0 : t.flowchart) == null ? void 0 : r.defaultRenderer) === "dagre-d3" ? !1 : (((i = t == null ? void 0 : t.flowchart) == null ? void 0 : i.defaultRenderer) === "elk" && (t.layout = "elk"), /^\s*graph/.test(e) && ((n = t == null ? void 0 : t.flowchart) == null ? void 0 : n.defaultRenderer) === "dagre-wrapper" ? !0 : /^\s*flowchart/.test(e));
}, "detector"), TT = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./flowDiagram-PKNHOUZH-CilKspe0.js");
  return { id: lm, diagram: e };
}, "loader"), BT = {
  id: lm,
  detector: ST,
  loader: TT
}, AT = BT, cm = "er", LT = /* @__PURE__ */ d((e) => /^\s*erDiagram/.test(e), "detector"), MT = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./erDiagram-INFDFZHY-CFVbPFqQ.js");
  return { id: cm, diagram: e };
}, "loader"), ET = {
  id: cm,
  detector: LT,
  loader: MT
}, $T = ET, hm = "gitGraph", FT = /* @__PURE__ */ d((e) => /^\s*gitGraph/.test(e), "detector"), OT = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./gitGraphDiagram-K3NZZRJ6-CkOeswU7.js");
  return { id: hm, diagram: e };
}, "loader"), RT = {
  id: hm,
  detector: FT,
  loader: OT
}, DT = RT, um = "gantt", IT = /* @__PURE__ */ d((e) => /^\s*gantt/.test(e), "detector"), PT = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./ganttDiagram-A5KZAMGK-D-GCGVKI.js");
  return { id: um, diagram: e };
}, "loader"), NT = {
  id: um,
  detector: IT,
  loader: PT
}, zT = NT, fm = "info", WT = /* @__PURE__ */ d((e) => /^\s*info/.test(e), "detector"), qT = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./infoDiagram-LFFYTUFH-B9n09GlR.js");
  return { id: fm, diagram: e };
}, "loader"), HT = {
  id: fm,
  detector: WT,
  loader: qT
}, pm = "pie", jT = /* @__PURE__ */ d((e) => /^\s*pie/.test(e), "detector"), YT = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./pieDiagram-SKSYHLDU-CFkPFbpw.js");
  return { id: pm, diagram: e };
}, "loader"), UT = {
  id: pm,
  detector: jT,
  loader: YT
}, dm = "quadrantChart", GT = /* @__PURE__ */ d((e) => /^\s*quadrantChart/.test(e), "detector"), XT = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./quadrantDiagram-337W2JSQ-EjqQYzhW.js");
  return { id: dm, diagram: e };
}, "loader"), VT = {
  id: dm,
  detector: GT,
  loader: XT
}, ZT = VT, gm = "xychart", KT = /* @__PURE__ */ d((e) => /^\s*xychart(-beta)?/.test(e), "detector"), QT = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./xychartDiagram-JWTSCODW-QYcd7syN.js");
  return { id: gm, diagram: e };
}, "loader"), JT = {
  id: gm,
  detector: KT,
  loader: QT
}, tB = JT, mm = "requirement", eB = /* @__PURE__ */ d((e) => /^\s*requirement(Diagram)?/.test(e), "detector"), rB = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./requirementDiagram-Z7DCOOCP-D-b5pNoz.js");
  return { id: mm, diagram: e };
}, "loader"), iB = {
  id: mm,
  detector: eB,
  loader: rB
}, nB = iB, ym = "sequence", aB = /* @__PURE__ */ d((e) => /^\s*sequenceDiagram/.test(e), "detector"), sB = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./sequenceDiagram-2WXFIKYE-BQgGaepC.js");
  return { id: ym, diagram: e };
}, "loader"), oB = {
  id: ym,
  detector: aB,
  loader: sB
}, lB = oB, xm = "class", cB = /* @__PURE__ */ d((e, t) => {
  var r;
  return ((r = t == null ? void 0 : t.class) == null ? void 0 : r.defaultRenderer) === "dagre-wrapper" ? !1 : /^\s*classDiagram/.test(e);
}, "detector"), hB = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./classDiagram-VBA2DB6C-DyFN4Aej.js");
  return { id: xm, diagram: e };
}, "loader"), uB = {
  id: xm,
  detector: cB,
  loader: hB
}, fB = uB, bm = "classDiagram", pB = /* @__PURE__ */ d((e, t) => {
  var r;
  return /^\s*classDiagram/.test(e) && ((r = t == null ? void 0 : t.class) == null ? void 0 : r.defaultRenderer) === "dagre-wrapper" ? !0 : /^\s*classDiagram-v2/.test(e);
}, "detector"), dB = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./classDiagram-v2-RAHNMMFH-DyFN4Aej.js");
  return { id: bm, diagram: e };
}, "loader"), gB = {
  id: bm,
  detector: pB,
  loader: dB
}, mB = gB, Cm = "state", yB = /* @__PURE__ */ d((e, t) => {
  var r;
  return ((r = t == null ? void 0 : t.state) == null ? void 0 : r.defaultRenderer) === "dagre-wrapper" ? !1 : /^\s*stateDiagram/.test(e);
}, "detector"), xB = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./stateDiagram-RAJIS63D-BKqRsM-k.js");
  return { id: Cm, diagram: e };
}, "loader"), bB = {
  id: Cm,
  detector: yB,
  loader: xB
}, CB = bB, _m = "stateDiagram", _B = /* @__PURE__ */ d((e, t) => {
  var r;
  return !!(/^\s*stateDiagram-v2/.test(e) || /^\s*stateDiagram/.test(e) && ((r = t == null ? void 0 : t.state) == null ? void 0 : r.defaultRenderer) === "dagre-wrapper");
}, "detector"), wB = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./stateDiagram-v2-FVOUBMTO-DwK3Gl3f.js");
  return { id: _m, diagram: e };
}, "loader"), kB = {
  id: _m,
  detector: _B,
  loader: wB
}, vB = kB, wm = "journey", SB = /* @__PURE__ */ d((e) => /^\s*journey/.test(e), "detector"), TB = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./journeyDiagram-4ABVD52K-DDaECK-e.js");
  return { id: wm, diagram: e };
}, "loader"), BB = {
  id: wm,
  detector: SB,
  loader: TB
}, AB = BB, LB = /* @__PURE__ */ d((e, t, r) => {
  A.debug(`rendering svg for syntax error
`);
  const i = a2(t), n = i.append("g");
  i.attr("viewBox", "0 0 2412 512"), Uh(i, 100, 512, !0), n.append("path").attr("class", "error-icon").attr(
    "d",
    "m411.313,123.313c6.25-6.25 6.25-16.375 0-22.625s-16.375-6.25-22.625,0l-32,32-9.375,9.375-20.688-20.688c-12.484-12.5-32.766-12.5-45.25,0l-16,16c-1.261,1.261-2.304,2.648-3.31,4.051-21.739-8.561-45.324-13.426-70.065-13.426-105.867,0-192,86.133-192,192s86.133,192 192,192 192-86.133 192-192c0-24.741-4.864-48.327-13.426-70.065 1.402-1.007 2.79-2.049 4.051-3.31l16-16c12.5-12.492 12.5-32.758 0-45.25l-20.688-20.688 9.375-9.375 32.001-31.999zm-219.313,100.687c-52.938,0-96,43.063-96,96 0,8.836-7.164,16-16,16s-16-7.164-16-16c0-70.578 57.422-128 128-128 8.836,0 16,7.164 16,16s-7.164,16-16,16z"
  ), n.append("path").attr("class", "error-icon").attr(
    "d",
    "m459.02,148.98c-6.25-6.25-16.375-6.25-22.625,0s-6.25,16.375 0,22.625l16,16c3.125,3.125 7.219,4.688 11.313,4.688 4.094,0 8.188-1.563 11.313-4.688 6.25-6.25 6.25-16.375 0-22.625l-16.001-16z"
  ), n.append("path").attr("class", "error-icon").attr(
    "d",
    "m340.395,75.605c3.125,3.125 7.219,4.688 11.313,4.688 4.094,0 8.188-1.563 11.313-4.688 6.25-6.25 6.25-16.375 0-22.625l-16-16c-6.25-6.25-16.375-6.25-22.625,0s-6.25,16.375 0,22.625l15.999,16z"
  ), n.append("path").attr("class", "error-icon").attr(
    "d",
    "m400,64c8.844,0 16-7.164 16-16v-32c0-8.836-7.156-16-16-16-8.844,0-16,7.164-16,16v32c0,8.836 7.156,16 16,16z"
  ), n.append("path").attr("class", "error-icon").attr(
    "d",
    "m496,96.586h-32c-8.844,0-16,7.164-16,16 0,8.836 7.156,16 16,16h32c8.844,0 16-7.164 16-16 0-8.836-7.156-16-16-16z"
  ), n.append("path").attr("class", "error-icon").attr(
    "d",
    "m436.98,75.605c3.125,3.125 7.219,4.688 11.313,4.688 4.094,0 8.188-1.563 11.313-4.688l32-32c6.25-6.25 6.25-16.375 0-22.625s-16.375-6.25-22.625,0l-32,32c-6.251,6.25-6.251,16.375-0.001,22.625z"
  ), n.append("text").attr("class", "error-text").attr("x", 1440).attr("y", 250).attr("font-size", "150px").style("text-anchor", "middle").text("Syntax error in text"), n.append("text").attr("class", "error-text").attr("x", 1250).attr("y", 400).attr("font-size", "100px").style("text-anchor", "middle").text(`mermaid version ${r}`);
}, "draw"), km = { draw: LB }, MB = km, EB = {
  db: {},
  renderer: km,
  parser: {
    parse: /* @__PURE__ */ d(() => {
    }, "parse")
  }
}, $B = EB, vm = "flowchart-elk", FB = /* @__PURE__ */ d((e, t = {}) => {
  var r;
  return (
    // If diagram explicitly states flowchart-elk
    /^\s*flowchart-elk/.test(e) || // If a flowchart/graph diagram has their default renderer set to elk
    /^\s*(flowchart|graph)/.test(e) && ((r = t == null ? void 0 : t.flowchart) == null ? void 0 : r.defaultRenderer) === "elk" ? (t.layout = "elk", !0) : !1
  );
}, "detector"), OB = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./flowDiagram-PKNHOUZH-CilKspe0.js");
  return { id: vm, diagram: e };
}, "loader"), RB = {
  id: vm,
  detector: FB,
  loader: OB
}, DB = RB, Sm = "timeline", IB = /* @__PURE__ */ d((e) => /^\s*timeline/.test(e), "detector"), PB = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./timeline-definition-YZTLITO2-BJlwK8l5.js");
  return { id: Sm, diagram: e };
}, "loader"), NB = {
  id: Sm,
  detector: IB,
  loader: PB
}, zB = NB, Tm = "mindmap", WB = /* @__PURE__ */ d((e) => /^\s*mindmap/.test(e), "detector"), qB = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./mindmap-definition-YRQLILUH-HQWf0uEz.js");
  return { id: Tm, diagram: e };
}, "loader"), HB = {
  id: Tm,
  detector: WB,
  loader: qB
}, jB = HB, Bm = "kanban", YB = /* @__PURE__ */ d((e) => /^\s*kanban/.test(e), "detector"), UB = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./kanban-definition-K7BYSVSG-dT0Q-GUP.js");
  return { id: Bm, diagram: e };
}, "loader"), GB = {
  id: Bm,
  detector: YB,
  loader: UB
}, XB = GB, Am = "sankey", VB = /* @__PURE__ */ d((e) => /^\s*sankey(-beta)?/.test(e), "detector"), ZB = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./sankeyDiagram-WA2Y5GQK-C23YU2w_.js");
  return { id: Am, diagram: e };
}, "loader"), KB = {
  id: Am,
  detector: VB,
  loader: ZB
}, QB = KB, Lm = "packet", JB = /* @__PURE__ */ d((e) => /^\s*packet(-beta)?/.test(e), "detector"), tA = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./diagram-P4PSJMXO-DkUr3aNT.js");
  return { id: Lm, diagram: e };
}, "loader"), eA = {
  id: Lm,
  detector: JB,
  loader: tA
}, Mm = "radar", rA = /* @__PURE__ */ d((e) => /^\s*radar-beta/.test(e), "detector"), iA = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./diagram-IFDJBPK2-LANA8aLu.js");
  return { id: Mm, diagram: e };
}, "loader"), nA = {
  id: Mm,
  detector: rA,
  loader: iA
}, Em = "block", aA = /* @__PURE__ */ d((e) => /^\s*block(-beta)?/.test(e), "detector"), sA = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./blockDiagram-WCTKOSBZ-DlfCgSB9.js");
  return { id: Em, diagram: e };
}, "loader"), oA = {
  id: Em,
  detector: aA,
  loader: sA
}, lA = oA, $m = "architecture", cA = /* @__PURE__ */ d((e) => /^\s*architecture/.test(e), "detector"), hA = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./architectureDiagram-2XIMDMQ5-DunQJNcv.js");
  return { id: $m, diagram: e };
}, "loader"), uA = {
  id: $m,
  detector: cA,
  loader: hA
}, fA = uA, Fm = "ishikawa", pA = /* @__PURE__ */ d((e) => /^\s*ishikawa(-beta)?\b/i.test(e), "detector"), dA = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./ishikawaDiagram-PHBUUO56-CfOVkUJ3.js");
  return { id: Fm, diagram: e };
}, "loader"), gA = {
  id: Fm,
  detector: pA,
  loader: dA
}, Om = "venn", mA = /* @__PURE__ */ d((e) => /^\s*venn-beta/.test(e), "detector"), yA = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./vennDiagram-LZ73GAT5-DiZZS_zt.js");
  return { id: Om, diagram: e };
}, "loader"), xA = {
  id: Om,
  detector: mA,
  loader: yA
}, bA = xA, Rm = "treemap", CA = /* @__PURE__ */ d((e) => /^\s*treemap/.test(e), "detector"), _A = /* @__PURE__ */ d(async () => {
  const { diagram: e } = await import("./diagram-E7M64L7V-D7-WEEiq.js");
  return { id: Rm, diagram: e };
}, "loader"), wA = {
  id: Rm,
  detector: CA,
  loader: _A
}, Ch = !1, Ga = /* @__PURE__ */ d(() => {
  Ch || (Ch = !0, Yn("error", $B, (e) => e.toLowerCase().trim() === "error"), Yn(
    "---",
    // --- diagram type may appear if YAML front-matter is not parsed correctly
    {
      db: {
        clear: /* @__PURE__ */ d(() => {
        }, "clear")
      },
      styles: {},
      // should never be used
      renderer: {
        draw: /* @__PURE__ */ d(() => {
        }, "draw")
      },
      parser: {
        parse: /* @__PURE__ */ d(() => {
          throw new Error(
            "Diagrams beginning with --- are not valid. If you were trying to use a YAML front-matter, please ensure that you've correctly opened and closed the YAML front-matter with un-indented `---` blocks"
          );
        }, "parse")
      },
      init: /* @__PURE__ */ d(() => null, "init")
      // no op
    },
    (e) => e.toLowerCase().trimStart().startsWith("---")
  ), Bs(DB, jB, fA), Bs(
    CT,
    XB,
    mB,
    fB,
    $T,
    zT,
    HT,
    UT,
    nB,
    lB,
    AT,
    vT,
    zB,
    DT,
    vB,
    CB,
    AB,
    ZT,
    QB,
    eA,
    tB,
    lA,
    nA,
    gA,
    wA,
    bA
  ));
}, "addDiagrams"), kA = /* @__PURE__ */ d(async () => {
  A.debug("Loading registered diagrams");
  const t = (await Promise.allSettled(
    Object.entries(pr).map(async ([r, { detector: i, loader: n }]) => {
      if (n)
        try {
          Es(r);
        } catch {
          try {
            const { diagram: a, id: o } = await n();
            Yn(o, a, i);
          } catch (a) {
            throw A.error(`Failed to load external diagram with key ${r}. Removing from detectors.`), delete pr[r], a;
          }
        }
    })
  )).filter((r) => r.status === "rejected");
  if (t.length > 0) {
    A.error(`Failed to load ${t.length} external diagrams`);
    for (const r of t)
      A.error(r);
    throw new Error(`Failed to load ${t.length} external diagrams`);
  }
}, "loadRegisteredDiagrams"), vA = "graphics-document document";
function Dm(e, t) {
  e.attr("role", vA), t !== "" && e.attr("aria-roledescription", t);
}
d(Dm, "setA11yDiagramInfo");
function Im(e, t, r, i) {
  if (e.insert !== void 0) {
    if (r) {
      const n = `chart-desc-${i}`;
      e.attr("aria-describedby", n), e.insert("desc", ":first-child").attr("id", n).text(r);
    }
    if (t) {
      const n = `chart-title-${i}`;
      e.attr("aria-labelledby", n), e.insert("title", ":first-child").attr("id", n).text(t);
    }
  }
}
d(Im, "addSVGa11yTitleDescription");
var fr, ko = (fr = class {
  constructor(t, r, i, n, a) {
    this.type = t, this.text = r, this.db = i, this.parser = n, this.renderer = a;
  }
  static async fromText(t, r = {}) {
    var c, h;
    const i = Ot(), n = To(t, i);
    t = hk(t) + `
`;
    try {
      Es(n);
    } catch {
      const u = D0(n);
      if (!u)
        throw new $h(`Diagram ${n} not found.`);
      const { id: p, diagram: f } = await u();
      Yn(p, f);
    }
    const { db: a, parser: o, renderer: s, init: l } = Es(n);
    return o.parser && (o.parser.yy = a), (c = a.clear) == null || c.call(a), l == null || l(i), r.title && ((h = a.setDiagramTitle) == null || h.call(a, r.title)), await o.parse(t), new fr(n, t, a, o, s);
  }
  async render(t, r) {
    await this.renderer.draw(this.text, t, r, this);
  }
  getParser() {
    return this.parser;
  }
  getType() {
    return this.type;
  }
}, d(fr, "Diagram"), fr), _h = [], SA = /* @__PURE__ */ d(() => {
  _h.forEach((e) => {
    e();
  }), _h = [];
}, "attachFunctions"), TA = /* @__PURE__ */ d((e) => e.replace(/^\s*%%(?!{)[^\n]+\n?/gm, "").trimStart(), "cleanupComments");
function Pm(e) {
  const t = e.match(Eh);
  if (!t)
    return {
      text: e,
      metadata: {}
    };
  let r = fC(t[1], {
    // To support config, we need JSON schema.
    // https://www.yaml.org/spec/1.2/spec.html#id2803231
    schema: uC
  }) ?? {};
  r = typeof r == "object" && !Array.isArray(r) ? r : {};
  const i = {};
  return r.displayMode && (i.displayMode = r.displayMode.toString()), r.title && (i.title = r.title.toString()), r.config && (i.config = r.config), {
    text: e.slice(t[0].length),
    metadata: i
  };
}
d(Pm, "extractFrontMatter");
var BA = /* @__PURE__ */ d((e) => e.replace(/\r\n?/g, `
`).replace(
  /<(\w+)([^>]*)>/g,
  (t, r, i) => "<" + r + i.replace(/="([^"]*)"/g, "='$1'") + ">"
), "cleanupText"), AA = /* @__PURE__ */ d((e) => {
  const { text: t, metadata: r } = Pm(e), { displayMode: i, title: n, config: a = {} } = r;
  return i && (a.gantt || (a.gantt = {}), a.gantt.displayMode = i), { title: n, config: a, text: t };
}, "processFrontmatter"), LA = /* @__PURE__ */ d((e) => {
  const t = he.detectInit(e) ?? {}, r = he.detectDirective(e, "wrap");
  return Array.isArray(r) ? t.wrap = r.some(({ type: i }) => i === "wrap") : (r == null ? void 0 : r.type) === "wrap" && (t.wrap = !0), {
    text: Kw(e),
    directive: t
  };
}, "processDirectives");
function Sl(e) {
  const t = BA(e), r = AA(t), i = LA(r.text), n = ol(r.config, i.directive);
  return e = TA(i.text), {
    code: e,
    title: r.title,
    config: n
  };
}
d(Sl, "preprocessDiagram");
function Nm(e) {
  const t = new TextEncoder().encode(e), r = Array.from(t, (i) => String.fromCodePoint(i)).join("");
  return btoa(r);
}
d(Nm, "toBase64");
var MA = 5e4, EA = "graph TB;a[Maximum text size in diagram exceeded];style a fill:#faa", $A = "sandbox", FA = "loose", OA = "http://www.w3.org/2000/svg", RA = "http://www.w3.org/1999/xlink", DA = "http://www.w3.org/1999/xhtml", IA = "100%", PA = "100%", NA = "border:0;margin:0;", zA = "margin:0", WA = "allow-top-navigation-by-user-activation allow-popups", qA = 'The "iframe" tag is not supported by your browser.', HA = ["foreignobject"], jA = ["dominant-baseline"];
function Tl(e) {
  const t = Sl(e);
  return Hn(), Q0(t.config ?? {}), t;
}
d(Tl, "processAndSetConfigs");
async function zm(e, t) {
  Ga();
  try {
    const { code: r, config: i } = Tl(e);
    return { diagramType: (await qm(r)).type, config: i };
  } catch (r) {
    if (t != null && t.suppressErrors)
      return !1;
    throw r;
  }
}
d(zm, "parse");
var wh = /* @__PURE__ */ d((e, t, r = []) => `
.${e} ${t} { ${r.join(" !important; ")} !important; }`, "cssImportantStyles"), YA = /* @__PURE__ */ d((e, t = /* @__PURE__ */ new Map()) => {
  let r = "";
  if (e.themeCSS !== void 0 && (r += `
${e.themeCSS}`), e.fontFamily !== void 0 && (r += `
:root { --mermaid-font-family: ${e.fontFamily}}`), e.altFontFamily !== void 0 && (r += `
:root { --mermaid-alt-font-family: ${e.altFontFamily}}`), t instanceof Map) {
    const o = It(e) ? ["> *", "span"] : ["rect", "polygon", "ellipse", "circle", "path"];
    t.forEach((s) => {
      bh(s.styles) || o.forEach((l) => {
        r += wh(s.id, l, s.styles);
      }), bh(s.textStyles) || (r += wh(
        s.id,
        "tspan",
        ((s == null ? void 0 : s.textStyles) || []).map((l) => l.replace("color", "fill"))
      ));
    });
  }
  return r;
}, "createCssStyles"), UA = /* @__PURE__ */ d((e, t, r, i) => {
  const n = YA(e, r), a = yy(t, n, e.themeVariables);
  return xo(tT(`${i}{${a}}`), rT);
}, "createUserStyles"), GA = /* @__PURE__ */ d((e = "", t, r) => {
  let i = e;
  return !r && !t && (i = i.replace(
    /marker-end="url\([\d+./:=?A-Za-z-]*?#/g,
    'marker-end="url(#'
  )), i = ei(i), i = i.replace(/<br>/g, "<br/>"), i;
}, "cleanUpSvgCode"), XA = /* @__PURE__ */ d((e = "", t) => {
  var n, a;
  const r = (a = (n = t == null ? void 0 : t.viewBox) == null ? void 0 : n.baseVal) != null && a.height ? t.viewBox.baseVal.height + "px" : PA, i = Nm(`<body style="${zA}">${e}</body>`);
  return `<iframe style="width:${IA};height:${r};${NA}" src="data:text/html;charset=UTF-8;base64,${i}" sandbox="${WA}">
  ${qA}
</iframe>`;
}, "putIntoIFrame"), kh = /* @__PURE__ */ d((e, t, r, i, n) => {
  const a = e.append("div");
  a.attr("id", r), i && a.attr("style", i);
  const o = a.append("svg").attr("id", t).attr("width", "100%").attr("xmlns", OA);
  return n && o.attr("xmlns:xlink", n), o.append("g"), e;
}, "appendDivSvgG");
function vo(e, t) {
  return e.append("iframe").attr("id", t).attr("style", "width: 100%; height: 100%;").attr("sandbox", "");
}
d(vo, "sandboxedIframe");
var VA = /* @__PURE__ */ d((e, t, r, i) => {
  var n, a, o;
  (n = e.getElementById(t)) == null || n.remove(), (a = e.getElementById(r)) == null || a.remove(), (o = e.getElementById(i)) == null || o.remove();
}, "removeExistingElements"), ZA = /* @__PURE__ */ d(async function(e, t, r) {
  var W, M, E, N, R, O;
  Ga();
  const i = Tl(t);
  t = i.code;
  const n = Ot();
  A.debug(n), t.length > ((n == null ? void 0 : n.maxTextSize) ?? MA) && (t = EA);
  const a = "#" + e, o = "i" + e, s = "#" + o, l = "d" + e, c = "#" + l, h = /* @__PURE__ */ d(() => {
    const lt = et(p ? s : c).node();
    lt && "remove" in lt && lt.remove();
  }, "removeTempElements");
  let u = et("body");
  const p = n.securityLevel === $A, f = n.securityLevel === FA, g = n.fontFamily;
  if (r !== void 0) {
    if (r && (r.innerHTML = ""), p) {
      const I = vo(et(r), o);
      u = et(I.nodes()[0].contentDocument.body), u.node().style.margin = 0;
    } else
      u = et(r);
    kh(u, e, l, `font-family: ${g}`, RA);
  } else {
    if (VA(document, e, l, o), p) {
      const I = vo(et("body"), o);
      u = et(I.nodes()[0].contentDocument.body), u.node().style.margin = 0;
    } else
      u = et("body");
    kh(u, e, l);
  }
  let m, y;
  try {
    m = await ko.fromText(t, { title: i.title });
  } catch (I) {
    if (n.suppressErrorRendering)
      throw h(), I;
    m = await ko.fromText("error"), y = I;
  }
  const x = u.select(c).node(), b = m.type, _ = x.firstChild, S = _.firstChild, v = (M = (W = m.renderer).getClasses) == null ? void 0 : M.call(W, t, m), C = UA(n, b, v, a), T = document.createElement("style");
  T.innerHTML = C, _.insertBefore(T, S);
  try {
    await m.renderer.draw(t, e, "11.13.0", m);
  } catch (I) {
    throw n.suppressErrorRendering ? h() : MB.draw(t, e, "11.13.0"), I;
  }
  const B = u.select(`${c} svg`), F = (N = (E = m.db).getAccTitle) == null ? void 0 : N.call(E), P = (O = (R = m.db).getAccDescription) == null ? void 0 : O.call(R);
  Hm(b, B, F, P), u.select(`[id="${e}"]`).selectAll("foreignobject > *").attr("xmlns", DA);
  let L = u.select(c).node().innerHTML;
  if (A.debug("config.arrowMarkerAbsolute", n.arrowMarkerAbsolute), L = GA(L, p, Ke(n.arrowMarkerAbsolute)), p) {
    const I = u.select(c + " svg").node();
    L = XA(L, I);
  } else f || (L = Yr.sanitize(L, {
    ADD_TAGS: HA,
    ADD_ATTR: jA,
    HTML_INTEGRATION_POINTS: { foreignobject: !0 }
  }));
  if (SA(), y)
    throw y;
  return h(), {
    diagramType: b,
    svg: L,
    bindFunctions: m.db.bindFunctions
  };
}, "render");
function Wm(e = {}) {
  var i;
  const t = kt({}, e);
  t != null && t.fontFamily && !((i = t.themeVariables) != null && i.fontFamily) && (t.themeVariables || (t.themeVariables = {}), t.themeVariables.fontFamily = t.fontFamily), Z0(t), t != null && t.theme && t.theme in Oe ? t.themeVariables = Oe[t.theme].getThemeVariables(
    t.themeVariables
  ) : t && (t.themeVariables = Oe.default.getThemeVariables(t.themeVariables));
  const r = typeof t == "object" ? V0(t) : Ih();
  So(r.logLevel), Ga();
}
d(Wm, "initialize");
var qm = /* @__PURE__ */ d((e, t = {}) => {
  const { code: r } = Sl(e);
  return ko.fromText(r, t);
}, "getDiagramFromText");
function Hm(e, t, r, i) {
  Dm(t, e), Im(t, r, i, t.attr("id"));
}
d(Hm, "addA11yInfo");
var br = Object.freeze({
  render: ZA,
  parse: zm,
  getDiagramFromText: qm,
  initialize: Wm,
  getConfig: Ot,
  setConfig: Ph,
  getSiteConfig: Ih,
  updateSiteConfig: K0,
  reset: /* @__PURE__ */ d(() => {
    Hn();
  }, "reset"),
  globalReset: /* @__PURE__ */ d(() => {
    Hn(Ur);
  }, "globalReset"),
  defaultConfig: Ur
});
So(Ot().logLevel);
Hn(Ot());
var KA = /* @__PURE__ */ d((e, t, r) => {
  A.warn(e), sl(e) ? (r && r(e.str, e.hash), t.push({ ...e, message: e.str, error: e })) : (r && r(e), e instanceof Error && t.push({
    str: e.message,
    message: e.message,
    hash: e.name,
    error: e
  }));
}, "handleError"), jm = /* @__PURE__ */ d(async function(e = {
  querySelector: ".mermaid"
}) {
  try {
    await QA(e);
  } catch (t) {
    if (sl(t) && A.error(t.str), Qt.parseError && Qt.parseError(t), !e.suppressErrors)
      throw A.error("Use the suppressErrors option to suppress these errors"), t;
  }
}, "run"), QA = /* @__PURE__ */ d(async function({ postRenderCallback: e, querySelector: t, nodes: r } = {
  querySelector: ".mermaid"
}) {
  const i = br.getConfig();
  A.debug(`${e ? "" : "No "}Callback function found`);
  let n;
  if (r)
    n = r;
  else if (t)
    n = document.querySelectorAll(t);
  else
    throw new Error("Nodes and querySelector are both undefined");
  A.debug(`Found ${n.length} diagrams`), (i == null ? void 0 : i.startOnLoad) !== void 0 && (A.debug("Start On Load: " + (i == null ? void 0 : i.startOnLoad)), br.updateSiteConfig({ startOnLoad: i == null ? void 0 : i.startOnLoad }));
  const a = new he.InitIDGenerator(i.deterministicIds, i.deterministicIDSeed);
  let o;
  const s = [];
  for (const l of Array.from(n)) {
    if (A.info("Rendering diagram: " + l.id), l.getAttribute("data-processed"))
      continue;
    l.setAttribute("data-processed", "true");
    const c = `mermaid-${a.next()}`;
    o = l.innerHTML, o = cd(he.entityDecode(o)).trim().replace(/<br\s*\/?>/gi, "<br/>");
    const h = he.detectInit(o);
    h && A.debug("Detected early reinit: ", h);
    try {
      const { svg: u, bindFunctions: p } = await Xm(c, o, l);
      l.innerHTML = u, e && await e(c), p && p(l);
    } catch (u) {
      KA(u, s, Qt.parseError);
    }
  }
  if (s.length > 0)
    throw s[0];
}, "runThrowsErrors"), Ym = /* @__PURE__ */ d(function(e) {
  br.initialize(e);
}, "initialize"), JA = /* @__PURE__ */ d(async function(e, t, r) {
  A.warn("mermaid.init is deprecated. Please use run instead."), e && Ym(e);
  const i = { postRenderCallback: r, querySelector: ".mermaid" };
  typeof t == "string" ? i.querySelector = t : t && (t instanceof HTMLElement ? i.nodes = [t] : i.nodes = t), await jm(i);
}, "init"), tL = /* @__PURE__ */ d(async (e, {
  lazyLoad: t = !0
} = {}) => {
  Ga(), Bs(...e), t === !1 && await kA();
}, "registerExternalDiagrams"), Um = /* @__PURE__ */ d(function() {
  if (Qt.startOnLoad) {
    const { startOnLoad: e } = br.getConfig();
    e && Qt.run().catch((t) => A.error("Mermaid failed to initialize", t));
  }
}, "contentLoaded");
typeof document < "u" && window.addEventListener("load", Um, !1);
var eL = /* @__PURE__ */ d(function(e) {
  Qt.parseError = e;
}, "setParseErrorHandler"), _a = [], vs = !1, Gm = /* @__PURE__ */ d(async () => {
  if (!vs) {
    for (vs = !0; _a.length > 0; ) {
      const e = _a.shift();
      if (e)
        try {
          await e();
        } catch (t) {
          A.error("Error executing queue", t);
        }
    }
    vs = !1;
  }
}, "executeQueue"), rL = /* @__PURE__ */ d(async (e, t) => new Promise((r, i) => {
  const n = /* @__PURE__ */ d(() => new Promise((a, o) => {
    br.parse(e, t).then(
      (s) => {
        a(s), r(s);
      },
      (s) => {
        var l;
        A.error("Error parsing", s), (l = Qt.parseError) == null || l.call(Qt, s), o(s), i(s);
      }
    );
  }), "performCall");
  _a.push(n), Gm().catch(i);
}), "parse"), Xm = /* @__PURE__ */ d((e, t, r) => new Promise((i, n) => {
  const a = /* @__PURE__ */ d(() => new Promise((o, s) => {
    br.render(e, t, r).then(
      (l) => {
        o(l), i(l);
      },
      (l) => {
        var c;
        A.error("Error parsing", l), (c = Qt.parseError) == null || c.call(Qt, l), s(l), n(l);
      }
    );
  }), "performCall");
  _a.push(a), Gm().catch(n);
}), "render"), iL = /* @__PURE__ */ d(() => Object.keys(pr).map((e) => ({
  id: e
})), "getRegisteredDiagramsMetadata"), Qt = {
  startOnLoad: !0,
  mermaidAPI: br,
  parse: rL,
  render: Xm,
  init: JA,
  run: jm,
  registerExternalDiagrams: tL,
  registerLayoutLoaders: Jg,
  initialize: Ym,
  parseError: void 0,
  contentLoaded: Um,
  setParseErrorHandler: eL,
  detectType: To,
  registerIconPacks: yv,
  getRegisteredDiagramsMetadata: iL
}, nL = Qt;
/*! Check if previously processed */
/*!
 * Wait for document loaded before starting the execution
 */
const RL = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
  __proto__: null,
  default: nL
}, Symbol.toStringTag, { value: "Module" }));
export {
  _L as $,
  xy as A,
  hL as B,
  Mi as C,
  ke as D,
  s0 as E,
  Ty as F,
  ol as G,
  Dh as H,
  Ot as I,
  uC as J,
  rk as K,
  a2 as L,
  U1 as M,
  No as N,
  dL as O,
  yL as P,
  Lr as Q,
  Cc as R,
  bc as S,
  bL as T,
  tt as U,
  xL as V,
  mL as W,
  fL as X,
  pL as Y,
  gL as Z,
  d as _,
  Cy as a,
  Tb as a$,
  CL as a0,
  q0 as a1,
  Di as a2,
  lL as a3,
  Pa as a4,
  Gw as a5,
  sy as a6,
  Yh as a7,
  tc as a8,
  Z1 as a9,
  $L as aA,
  AL as aB,
  G as aC,
  LL as aD,
  bS as aE,
  dS as aF,
  pS as aG,
  bv as aH,
  Th as aI,
  G1 as aJ,
  oL as aK,
  sn as aL,
  yv as aM,
  mv as aN,
  Cr as aO,
  jw as aP,
  Ip as aQ,
  Fa as aR,
  Ia as aS,
  ha as aT,
  Np as aU,
  Dp as aV,
  Cw as aW,
  Ro as aX,
  He as aY,
  Ni as aZ,
  pc as a_,
  Ws as aa,
  ek as ab,
  dy as ac,
  Zi as ad,
  q as ae,
  Z as af,
  Gh as ag,
  jv as ah,
  Vg as ai,
  EL as aj,
  pC as ak,
  It as al,
  Ne as am,
  di as an,
  ll as ao,
  Yp as ap,
  ei as aq,
  Vp as ar,
  H as as,
  Hw as at,
  R_ as au,
  Dw as av,
  Qo as aw,
  bh as ax,
  IS as ay,
  ML as az,
  by as b,
  Y as b0,
  Zp as b1,
  Vt as b2,
  bb as b3,
  Oo as b4,
  ou as b5,
  tn as b6,
  hu as b7,
  uL as b8,
  qw as b9,
  $p as bA,
  _o as bB,
  Yw as bC,
  Da as bD,
  RL as bE,
  Rw as ba,
  w_ as bb,
  Jo as bc,
  mw as bd,
  Uw as be,
  nn as bf,
  Jr as bg,
  oa as bh,
  Bw as bi,
  sT as bj,
  rn as bk,
  ca as bl,
  _w as bm,
  Mp as bn,
  S_ as bo,
  T_ as bp,
  sr as bq,
  Nc as br,
  B_ as bs,
  tl as bt,
  v_ as bu,
  M_ as bv,
  ti as bw,
  Qe as bx,
  Oc as by,
  el as bz,
  ot as c,
  et as d,
  Uh as e,
  kt as f,
  wy as g,
  Ie as h,
  pe as i,
  dC as j,
  Qi as k,
  A as l,
  Gp as m,
  Ki as n,
  cL as o,
  OL as p,
  ky as q,
  FL as r,
  _y as s,
  vy as t,
  he as u,
  fC as v,
  ak as w,
  cS as x,
  wL as y,
  Yr as z
};