@blocknote/core 0.4.3 → 0.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/blocknote.js +522 -521
- package/dist/blocknote.js.map +1 -1
- package/dist/blocknote.umd.cjs +10 -10
- package/dist/blocknote.umd.cjs.map +1 -1
- package/package.json +2 -2
- package/src/BlockNoteEditor.ts +102 -63
- package/src/api/formatConversions/formatConversions.ts +4 -4
- package/src/extensions/Blocks/nodes/BlockContainer.ts +84 -111
- package/types/src/BlockNoteEditor.d.ts +62 -44
- package/types/src/api/formatConversions/formatConversions.d.ts +2 -2
package/dist/blocknote.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var Ha = Object.defineProperty;
|
|
2
2
|
var Fa = (e, t, n) => t in e ? Ha(e, t, { enumerable: !0, configurable: !0, writable: !0, value: n }) : e[t] = n;
|
|
3
3
|
var U = (e, t, n) => (Fa(e, typeof t != "symbol" ? t + "" : t, n), n);
|
|
4
|
-
import { Extension as st, Mark as Yo, findChildren as
|
|
4
|
+
import { Extension as st, Mark as Yo, findChildren as qn, combineTransactionSteps as va, getChangedRanges as Ua, findChildrenInRange as Ga, Node as bt, mergeAttributes as Rt, InputRule as ar, findParentNode as Ka, isTextSelection as za, isNodeSelection as Ya, posToDOMRect as jo, getMarkRange as Gr, extensions as r1, Editor as ja } from "@tiptap/core";
|
|
5
5
|
import { Bold as qa } from "@tiptap/extension-bold";
|
|
6
6
|
import { Code as Qa } from "@tiptap/extension-code";
|
|
7
7
|
import { Dropcursor as Wa } from "@tiptap/extension-dropcursor";
|
|
@@ -13,8 +13,8 @@ import { Link as qo } from "@tiptap/extension-link";
|
|
|
13
13
|
import { Strike as Za } from "@tiptap/extension-strike";
|
|
14
14
|
import { Text as el } from "@tiptap/extension-text";
|
|
15
15
|
import { Underline as tl } from "@tiptap/extension-underline";
|
|
16
|
-
import { Slice as
|
|
17
|
-
import { Plugin as at, PluginKey as Ve, TextSelection as
|
|
16
|
+
import { Slice as qt, Fragment as Qt, DOMSerializer as nl, DOMParser as rl } from "prosemirror-model";
|
|
17
|
+
import { Plugin as at, PluginKey as Ve, TextSelection as Kr, Selection as gn, NodeSelection as il } from "prosemirror-state";
|
|
18
18
|
import { v4 as ol } from "uuid";
|
|
19
19
|
import * as sl from "prosemirror-view";
|
|
20
20
|
import { Decoration as J1, DecorationSet as Z1 } from "prosemirror-view";
|
|
@@ -22,7 +22,7 @@ import al from "rehype-remark";
|
|
|
22
22
|
import Qo from "remark-gfm";
|
|
23
23
|
import ll from "remark-rehype";
|
|
24
24
|
import { fromDom as zr } from "hast-util-from-dom";
|
|
25
|
-
function
|
|
25
|
+
function re(e, t) {
|
|
26
26
|
if (t < 0 || t > e.nodeSize)
|
|
27
27
|
return;
|
|
28
28
|
const n = e.resolve(t), r = n.depth;
|
|
@@ -67,7 +67,7 @@ const cl = st.create({
|
|
|
67
67
|
addCommands() {
|
|
68
68
|
return {
|
|
69
69
|
setBlockBackgroundColor: (e, t) => ({ state: n, view: r }) => {
|
|
70
|
-
const i =
|
|
70
|
+
const i = re(n.doc, e);
|
|
71
71
|
return i === void 0 ? !1 : (n.tr.setNodeAttribute(
|
|
72
72
|
i.startPos - 1,
|
|
73
73
|
"backgroundColor",
|
|
@@ -133,7 +133,7 @@ function dl(e) {
|
|
|
133
133
|
);
|
|
134
134
|
return hl(t);
|
|
135
135
|
}
|
|
136
|
-
const
|
|
136
|
+
const lr = st.create({
|
|
137
137
|
name: "uniqueID",
|
|
138
138
|
// we’ll set a very high priority to make sure this runs first
|
|
139
139
|
// and is compatible with `appendTransaction` hooks of other extensions
|
|
@@ -169,7 +169,7 @@ const cr = st.create({
|
|
|
169
169
|
))
|
|
170
170
|
return;
|
|
171
171
|
const { view: e, state: t } = this.editor, { tr: n, doc: r } = t, { types: i, attributeName: o, generateID: s } = this.options;
|
|
172
|
-
|
|
172
|
+
qn(r, (c) => i.includes(c.type.name) && c.attrs[o] === null).forEach(({ node: c, pos: u }) => {
|
|
173
173
|
n.setNodeMarkup(u, void 0, {
|
|
174
174
|
...c.attrs,
|
|
175
175
|
[o]: s()
|
|
@@ -267,9 +267,9 @@ const cr = st.create({
|
|
|
267
267
|
c.marks
|
|
268
268
|
);
|
|
269
269
|
a.push(u);
|
|
270
|
-
}),
|
|
270
|
+
}), Qt.from(a);
|
|
271
271
|
};
|
|
272
|
-
return t = !1, new
|
|
272
|
+
return t = !1, new qt(
|
|
273
273
|
o(n.content),
|
|
274
274
|
n.openStart,
|
|
275
275
|
n.openEnd
|
|
@@ -324,7 +324,7 @@ function Xo(e, t) {
|
|
|
324
324
|
}
|
|
325
325
|
function on(e, t) {
|
|
326
326
|
let n = e.id;
|
|
327
|
-
n === void 0 && (n =
|
|
327
|
+
n === void 0 && (n = lr.options.generateID());
|
|
328
328
|
let r = e.type;
|
|
329
329
|
r === void 0 && (r = "paragraph");
|
|
330
330
|
let i;
|
|
@@ -388,7 +388,7 @@ function pl(e) {
|
|
|
388
388
|
}), n = void 0);
|
|
389
389
|
}), t;
|
|
390
390
|
}
|
|
391
|
-
function
|
|
391
|
+
function yt(e, t) {
|
|
392
392
|
if (e.type.name !== "blockContainer")
|
|
393
393
|
throw Error(
|
|
394
394
|
"Node must be of type blockContainer, but is of type" + e.type.name + "."
|
|
@@ -396,9 +396,9 @@ function Qt(e, t) {
|
|
|
396
396
|
const n = t == null ? void 0 : t.get(e);
|
|
397
397
|
if (n)
|
|
398
398
|
return n;
|
|
399
|
-
const r =
|
|
399
|
+
const r = re(e, 0);
|
|
400
400
|
let i = r.id;
|
|
401
|
-
i === null && (i =
|
|
401
|
+
i === null && (i = lr.options.generateID());
|
|
402
402
|
const o = {};
|
|
403
403
|
for (const [u, h] of Object.entries({
|
|
404
404
|
...r.node.attrs,
|
|
@@ -412,7 +412,7 @@ function Qt(e, t) {
|
|
|
412
412
|
}
|
|
413
413
|
const s = pl(r.contentNode), a = [];
|
|
414
414
|
for (let u = 0; u < r.numChildBlocks; u++)
|
|
415
|
-
a.push(
|
|
415
|
+
a.push(yt(r.node.lastChild.child(u)));
|
|
416
416
|
const c = {
|
|
417
417
|
id: i,
|
|
418
418
|
type: r.contentType.name,
|
|
@@ -464,9 +464,9 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
464
464
|
apply(t, n, r, i) {
|
|
465
465
|
if (n.currentTransactionOldBlockAttrs = {}, n.updatedBlocks.clear(), !t.docChanged || r.doc.eq(i.doc))
|
|
466
466
|
return n;
|
|
467
|
-
const o = {}, s =
|
|
467
|
+
const o = {}, s = qn(r.doc, (u) => u.attrs.id), a = new Map(
|
|
468
468
|
s.map((u) => [u.node.attrs.id, u])
|
|
469
|
-
), c =
|
|
469
|
+
), c = qn(i.doc, (u) => u.attrs.id);
|
|
470
470
|
for (let u of c) {
|
|
471
471
|
const h = a.get(u.node.attrs.id), m = h == null ? void 0 : h.node.firstChild, g = u.node.firstChild;
|
|
472
472
|
if (h && m && g) {
|
|
@@ -522,7 +522,7 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
522
522
|
id: "data-id",
|
|
523
523
|
depth: "data-depth",
|
|
524
524
|
depthChange: "data-depth-change"
|
|
525
|
-
}, yl =
|
|
525
|
+
}, yl = bt.create({
|
|
526
526
|
name: "blockContainer",
|
|
527
527
|
group: "blockContainer",
|
|
528
528
|
// A block always contains content, and optionally a blockGroup which contains nested blocks
|
|
@@ -553,13 +553,13 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
553
553
|
renderHTML({ HTMLAttributes: e }) {
|
|
554
554
|
return [
|
|
555
555
|
"div",
|
|
556
|
-
|
|
556
|
+
Rt(e, {
|
|
557
557
|
class: Qe.blockOuter,
|
|
558
558
|
"data-node-type": "block-outer"
|
|
559
559
|
}),
|
|
560
560
|
[
|
|
561
561
|
"div",
|
|
562
|
-
|
|
562
|
+
Rt(e, {
|
|
563
563
|
// TODO: maybe remove html attributes from inner block
|
|
564
564
|
class: Qe.block,
|
|
565
565
|
"data-node-type": this.name
|
|
@@ -575,15 +575,55 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
575
575
|
const r = t.schema.nodes.blockContainer.createAndFill();
|
|
576
576
|
return n && t.tr.insert(e, r), !0;
|
|
577
577
|
},
|
|
578
|
-
// Deletes a block at a given position
|
|
579
|
-
BNDeleteBlock: (e) => ({ state: t,
|
|
580
|
-
const
|
|
578
|
+
// Deletes a block at a given position.
|
|
579
|
+
BNDeleteBlock: (e) => ({ state: t, dispatch: n }) => {
|
|
580
|
+
const r = re(t.doc, e);
|
|
581
|
+
if (r === void 0)
|
|
582
|
+
return !1;
|
|
583
|
+
const { startPos: i, endPos: o } = r;
|
|
584
|
+
return n && t.tr.deleteRange(i, o), !0;
|
|
585
|
+
},
|
|
586
|
+
// Updates a block at a given position.
|
|
587
|
+
BNUpdateBlock: (e, t) => ({ state: n, dispatch: r }) => {
|
|
588
|
+
const i = re(n.doc, e);
|
|
581
589
|
if (i === void 0)
|
|
582
590
|
return !1;
|
|
583
|
-
const { startPos: o, endPos: s } = i;
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
591
|
+
const { startPos: o, endPos: s, node: a, contentNode: c } = i;
|
|
592
|
+
if (r) {
|
|
593
|
+
if (t.children !== void 0) {
|
|
594
|
+
const u = [];
|
|
595
|
+
for (const h of t.children)
|
|
596
|
+
u.push(on(h, n.schema));
|
|
597
|
+
a.childCount === 2 ? n.tr.replace(
|
|
598
|
+
o + c.nodeSize + 1,
|
|
599
|
+
s - 1,
|
|
600
|
+
new qt(Qt.from(u), 0, 0)
|
|
601
|
+
) : n.tr.insert(
|
|
602
|
+
o + c.nodeSize,
|
|
603
|
+
n.schema.nodes.blockGroup.create({}, u)
|
|
604
|
+
);
|
|
605
|
+
}
|
|
606
|
+
if (t.content !== void 0) {
|
|
607
|
+
let u = [];
|
|
608
|
+
typeof t.content == "string" ? u.push(n.schema.text(t.content)) : u = Xo(t.content, n.schema), n.tr.replace(
|
|
609
|
+
o + 1,
|
|
610
|
+
o + c.nodeSize - 1,
|
|
611
|
+
new qt(Qt.from(u), 0, 0)
|
|
612
|
+
);
|
|
613
|
+
}
|
|
614
|
+
n.tr.setNodeMarkup(
|
|
615
|
+
o,
|
|
616
|
+
t.type === void 0 ? void 0 : n.schema.nodes[t.type],
|
|
617
|
+
{
|
|
618
|
+
...c.attrs,
|
|
619
|
+
...t.props
|
|
620
|
+
}
|
|
621
|
+
), n.tr.setNodeMarkup(o - 1, void 0, {
|
|
622
|
+
...a.attrs,
|
|
623
|
+
...t.props
|
|
624
|
+
});
|
|
625
|
+
}
|
|
626
|
+
return !0;
|
|
587
627
|
},
|
|
588
628
|
// Appends the text contents of a block to the nearest previous block, given a position between them. Children of
|
|
589
629
|
// the merged block are moved out of it first, rather than also being merged.
|
|
@@ -606,7 +646,7 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
606
646
|
const r = t.doc.resolve(e + 1).node().type.name === "blockContainer", i = t.doc.resolve(e - 1).node().type.name === "blockContainer";
|
|
607
647
|
if (!r || !i)
|
|
608
648
|
return !1;
|
|
609
|
-
const o =
|
|
649
|
+
const o = re(
|
|
610
650
|
t.doc,
|
|
611
651
|
e + 1
|
|
612
652
|
), { node: s, contentNode: a, startPos: c, endPos: u, depth: h } = o;
|
|
@@ -616,26 +656,26 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
616
656
|
), _ = t.doc.resolve(u - 1), I = E.blockRange(_);
|
|
617
657
|
n && t.tr.lift(I, h - 1);
|
|
618
658
|
}
|
|
619
|
-
let m = e - 1, g =
|
|
659
|
+
let m = e - 1, g = re(t.doc, m);
|
|
620
660
|
for (; g.numChildBlocks > 0; )
|
|
621
|
-
if (m--, g =
|
|
661
|
+
if (m--, g = re(t.doc, m), g === void 0)
|
|
622
662
|
return !1;
|
|
623
663
|
return n && (t.tr.deleteRange(c, c + a.nodeSize), t.tr.insertText(a.textContent, m - 1), t.tr.setSelection(
|
|
624
|
-
new
|
|
664
|
+
new Kr(t.doc.resolve(m - 1))
|
|
625
665
|
)), !0;
|
|
626
666
|
},
|
|
627
667
|
// Splits a block at a given position. Content after the position is moved to a new block below, at the same
|
|
628
668
|
// nesting level.
|
|
629
669
|
BNSplitBlock: (e, t) => ({ state: n, dispatch: r }) => {
|
|
630
|
-
const i =
|
|
670
|
+
const i = re(n.doc, e);
|
|
631
671
|
if (i === void 0)
|
|
632
672
|
return !1;
|
|
633
673
|
const { contentNode: o, contentType: s, startPos: a, endPos: c, depth: u } = i, h = n.doc.cut(a + 1, e), m = n.doc.cut(e, c - 1), g = n.schema.nodes.blockContainer.createAndFill(), E = c + 1, _ = E + 2;
|
|
634
674
|
return r && (n.tr.insert(E, g), n.tr.replace(
|
|
635
675
|
_,
|
|
636
676
|
_ + 1,
|
|
637
|
-
m.content.size > 0 ? new
|
|
638
|
-
|
|
677
|
+
m.content.size > 0 ? new qt(
|
|
678
|
+
Qt.from(m),
|
|
639
679
|
u + 2,
|
|
640
680
|
u + 2
|
|
641
681
|
) : void 0
|
|
@@ -645,70 +685,16 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
645
685
|
n.schema.node(s).type,
|
|
646
686
|
o.attrs
|
|
647
687
|
), n.tr.setSelection(
|
|
648
|
-
new
|
|
688
|
+
new Kr(n.doc.resolve(_))
|
|
649
689
|
), n.tr.replace(
|
|
650
690
|
a + 1,
|
|
651
691
|
c - 1,
|
|
652
|
-
h.content.size > 0 ? new
|
|
653
|
-
|
|
692
|
+
h.content.size > 0 ? new qt(
|
|
693
|
+
Qt.from(h),
|
|
654
694
|
u + 2,
|
|
655
695
|
u + 2
|
|
656
696
|
) : void 0
|
|
657
697
|
)), !0;
|
|
658
|
-
},
|
|
659
|
-
// Updates a block to the given specification.
|
|
660
|
-
BNUpdateBlock: (e, t) => ({ state: n, dispatch: r }) => {
|
|
661
|
-
const i = ne(n.doc, e);
|
|
662
|
-
if (i === void 0)
|
|
663
|
-
return !1;
|
|
664
|
-
const { startPos: o, endPos: s, node: a, contentNode: c } = i;
|
|
665
|
-
if (r) {
|
|
666
|
-
if (t.children !== void 0) {
|
|
667
|
-
const u = [];
|
|
668
|
-
for (const h of t.children)
|
|
669
|
-
u.push(on(h, n.schema));
|
|
670
|
-
a.childCount === 2 ? n.tr.replace(
|
|
671
|
-
o + c.nodeSize + 1,
|
|
672
|
-
s - 1,
|
|
673
|
-
new jt(qt.from(u), 0, 0)
|
|
674
|
-
) : n.tr.insert(
|
|
675
|
-
o + c.nodeSize,
|
|
676
|
-
n.schema.nodes.blockGroup.create({}, u)
|
|
677
|
-
);
|
|
678
|
-
}
|
|
679
|
-
if (t.content !== void 0) {
|
|
680
|
-
let u = [];
|
|
681
|
-
typeof t.content == "string" ? u.push(n.schema.text(t.content)) : u = Xo(t.content, n.schema), n.tr.replace(
|
|
682
|
-
o + 1,
|
|
683
|
-
o + c.nodeSize - 1,
|
|
684
|
-
new jt(qt.from(u), 0, 0)
|
|
685
|
-
);
|
|
686
|
-
}
|
|
687
|
-
n.tr.setNodeMarkup(
|
|
688
|
-
o,
|
|
689
|
-
t.type === void 0 ? void 0 : n.schema.nodes[t.type],
|
|
690
|
-
{
|
|
691
|
-
...c.attrs,
|
|
692
|
-
...t.props
|
|
693
|
-
}
|
|
694
|
-
);
|
|
695
|
-
}
|
|
696
|
-
return !0;
|
|
697
|
-
},
|
|
698
|
-
// Updates a block to the given specification if it's empty, otherwise creates a new block from that specification
|
|
699
|
-
// below it.
|
|
700
|
-
BNCreateOrUpdateBlock: (e, t) => ({ state: n, chain: r }) => {
|
|
701
|
-
const i = ne(n.doc, e);
|
|
702
|
-
if (i === void 0)
|
|
703
|
-
return !1;
|
|
704
|
-
const { node: o, startPos: s, endPos: a } = i;
|
|
705
|
-
if (o.textContent.length === 0) {
|
|
706
|
-
const c = s + 1;
|
|
707
|
-
return r().BNUpdateBlock(e, t).setTextSelection(c).run();
|
|
708
|
-
} else {
|
|
709
|
-
const c = a + 1, u = c + 1;
|
|
710
|
-
return r().BNCreateBlock(c).BNUpdateBlock(u, t).setTextSelection(u).run();
|
|
711
|
-
}
|
|
712
698
|
}
|
|
713
699
|
};
|
|
714
700
|
},
|
|
@@ -724,7 +710,7 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
724
710
|
() => n.undoInputRule(),
|
|
725
711
|
// Reverts block content type to a paragraph if the selection is at the start of the block.
|
|
726
712
|
() => n.command(({ state: r }) => {
|
|
727
|
-
const { contentType: i } =
|
|
713
|
+
const { contentType: i } = re(
|
|
728
714
|
r.doc,
|
|
729
715
|
r.selection.from
|
|
730
716
|
), o = r.selection.$anchor.parentOffset === 0, s = i.name === "paragraph";
|
|
@@ -738,7 +724,7 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
738
724
|
// Merges block with the previous one if it isn't indented, isn't the first block in the doc, and the selection
|
|
739
725
|
// is at the start of the block.
|
|
740
726
|
() => n.command(({ state: r }) => {
|
|
741
|
-
const { depth: i, startPos: o } =
|
|
727
|
+
const { depth: i, startPos: o } = re(
|
|
742
728
|
r.doc,
|
|
743
729
|
r.selection.from
|
|
744
730
|
), s = r.selection.$anchor.parentOffset === 0, a = r.selection.anchor === r.selection.head, c = o === 2, u = o - 1;
|
|
@@ -749,7 +735,7 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
749
735
|
// Removes a level of nesting if the block is empty & indented, while the selection is also empty & at the start
|
|
750
736
|
// of the block.
|
|
751
737
|
() => n.command(({ state: r }) => {
|
|
752
|
-
const { node: i, depth: o } =
|
|
738
|
+
const { node: i, depth: o } = re(
|
|
753
739
|
r.doc,
|
|
754
740
|
r.selection.from
|
|
755
741
|
), s = r.selection.$anchor.parentOffset === 0, a = r.selection.anchor === r.selection.head, c = i.textContent.length === 0, u = o > 2;
|
|
@@ -758,7 +744,7 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
758
744
|
// Creates a new block and moves the selection to it if the current one is empty, while the selection is also
|
|
759
745
|
// empty & at the start of the block.
|
|
760
746
|
() => n.command(({ state: r, chain: i }) => {
|
|
761
|
-
const { node: o, endPos: s } =
|
|
747
|
+
const { node: o, endPos: s } = re(
|
|
762
748
|
r.doc,
|
|
763
749
|
r.selection.from
|
|
764
750
|
), a = r.selection.$anchor.parentOffset === 0, c = r.selection.anchor === r.selection.head, u = o.textContent.length === 0;
|
|
@@ -771,7 +757,7 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
771
757
|
// Splits the current block, moving content inside that's after the cursor to a new text block below. Also
|
|
772
758
|
// deletes the selection beforehand, if it's not empty.
|
|
773
759
|
() => n.command(({ state: r, chain: i }) => {
|
|
774
|
-
const { node: o } =
|
|
760
|
+
const { node: o } = re(
|
|
775
761
|
r.doc,
|
|
776
762
|
r.selection.from
|
|
777
763
|
);
|
|
@@ -813,7 +799,7 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
813
799
|
})
|
|
814
800
|
};
|
|
815
801
|
}
|
|
816
|
-
}), xl =
|
|
802
|
+
}), xl = bt.create({
|
|
817
803
|
name: "blockGroup",
|
|
818
804
|
group: "blockGroup",
|
|
819
805
|
content: "blockContainer+",
|
|
@@ -833,14 +819,14 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
833
819
|
renderHTML({ HTMLAttributes: e }) {
|
|
834
820
|
return [
|
|
835
821
|
"div",
|
|
836
|
-
|
|
822
|
+
Rt(this.options.HTMLAttributes, e, {
|
|
837
823
|
class: Qe.blockGroup,
|
|
838
824
|
"data-node-type": "blockGroup"
|
|
839
825
|
}),
|
|
840
826
|
0
|
|
841
827
|
];
|
|
842
828
|
}
|
|
843
|
-
}), Rl =
|
|
829
|
+
}), Rl = bt.create({
|
|
844
830
|
name: "paragraph",
|
|
845
831
|
group: "blockContent",
|
|
846
832
|
content: "inline*",
|
|
@@ -856,14 +842,14 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
856
842
|
renderHTML({ HTMLAttributes: e }) {
|
|
857
843
|
return [
|
|
858
844
|
"div",
|
|
859
|
-
|
|
845
|
+
Rt(e, {
|
|
860
846
|
class: Qe.blockContent,
|
|
861
847
|
"data-content-type": this.name
|
|
862
848
|
}),
|
|
863
849
|
["p", 0]
|
|
864
850
|
];
|
|
865
851
|
}
|
|
866
|
-
}), bl =
|
|
852
|
+
}), bl = bt.create({
|
|
867
853
|
name: "heading",
|
|
868
854
|
group: "blockContent",
|
|
869
855
|
content: "inline*",
|
|
@@ -881,7 +867,7 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
881
867
|
},
|
|
882
868
|
addInputRules() {
|
|
883
869
|
return [
|
|
884
|
-
...["1", "2", "3"].map((e) => new
|
|
870
|
+
...["1", "2", "3"].map((e) => new ar({
|
|
885
871
|
find: new RegExp(`^(#{${parseInt(e)}})\\s$`),
|
|
886
872
|
handler: ({ state: t, chain: n, range: r }) => {
|
|
887
873
|
n().BNUpdateBlock(t.selection.from, {
|
|
@@ -916,7 +902,7 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
916
902
|
renderHTML({ node: e, HTMLAttributes: t }) {
|
|
917
903
|
return [
|
|
918
904
|
"div",
|
|
919
|
-
|
|
905
|
+
Rt(t, {
|
|
920
906
|
class: Qe.blockContent,
|
|
921
907
|
"data-content-type": this.name
|
|
922
908
|
}),
|
|
@@ -924,7 +910,7 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
924
910
|
];
|
|
925
911
|
}
|
|
926
912
|
}), Jo = (e) => {
|
|
927
|
-
const { node: t, contentType: n } =
|
|
913
|
+
const { node: t, contentType: n } = re(
|
|
928
914
|
e.state.doc,
|
|
929
915
|
e.state.selection.from
|
|
930
916
|
), r = e.state.selection.anchor === e.state.selection.head;
|
|
@@ -942,14 +928,14 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
942
928
|
s.command(() => t.textContent.length > 0 ? (o().deleteSelection().BNSplitBlock(i.selection.from, !0).run(), !0) : !1)
|
|
943
929
|
)
|
|
944
930
|
]);
|
|
945
|
-
}, Ml =
|
|
931
|
+
}, Ml = bt.create({
|
|
946
932
|
name: "bulletListItem",
|
|
947
933
|
group: "blockContent",
|
|
948
934
|
content: "inline*",
|
|
949
935
|
addInputRules() {
|
|
950
936
|
return [
|
|
951
937
|
// Creates an unordered list when starting with "-", "+", or "*".
|
|
952
|
-
new
|
|
938
|
+
new ar({
|
|
953
939
|
find: new RegExp("^[-+*]\\s$"),
|
|
954
940
|
handler: ({ state: e, chain: t, range: n }) => {
|
|
955
941
|
t().BNUpdateBlock(e.selection.from, {
|
|
@@ -995,7 +981,7 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
995
981
|
renderHTML({ HTMLAttributes: e }) {
|
|
996
982
|
return [
|
|
997
983
|
"div",
|
|
998
|
-
|
|
984
|
+
Rt(e, {
|
|
999
985
|
class: Qe.blockContent,
|
|
1000
986
|
"data-content-type": this.name
|
|
1001
987
|
}),
|
|
@@ -1011,11 +997,11 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
1011
997
|
return n.doc.descendants((o, s) => {
|
|
1012
998
|
if (o.type.name === "blockContainer" && o.firstChild.type.name === "numberedListItem") {
|
|
1013
999
|
let a = "1";
|
|
1014
|
-
const c = s === 1, u =
|
|
1000
|
+
const c = s === 1, u = re(r.doc, s + 1);
|
|
1015
1001
|
if (u === void 0)
|
|
1016
1002
|
return;
|
|
1017
1003
|
if (!c) {
|
|
1018
|
-
const g =
|
|
1004
|
+
const g = re(r.doc, s - 2);
|
|
1019
1005
|
if (g === void 0)
|
|
1020
1006
|
return;
|
|
1021
1007
|
if (!(u.depth !== g.depth)) {
|
|
@@ -1032,7 +1018,7 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
1032
1018
|
}
|
|
1033
1019
|
}), i ? r : null;
|
|
1034
1020
|
}
|
|
1035
|
-
}), Dl =
|
|
1021
|
+
}), Dl = bt.create({
|
|
1036
1022
|
name: "numberedListItem",
|
|
1037
1023
|
group: "blockContent",
|
|
1038
1024
|
content: "inline*",
|
|
@@ -1050,7 +1036,7 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
1050
1036
|
addInputRules() {
|
|
1051
1037
|
return [
|
|
1052
1038
|
// Creates an ordered list when starting with "1.".
|
|
1053
|
-
new
|
|
1039
|
+
new ar({
|
|
1054
1040
|
find: new RegExp("^1\\.\\s$"),
|
|
1055
1041
|
handler: ({ state: e, chain: t, range: n }) => {
|
|
1056
1042
|
t().BNUpdateBlock(e.selection.from, {
|
|
@@ -1101,7 +1087,7 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
1101
1087
|
renderHTML({ HTMLAttributes: e }) {
|
|
1102
1088
|
return [
|
|
1103
1089
|
"div",
|
|
1104
|
-
|
|
1090
|
+
Rt(e, {
|
|
1105
1091
|
class: Qe.blockContent,
|
|
1106
1092
|
"data-content-type": this.name
|
|
1107
1093
|
}),
|
|
@@ -1117,19 +1103,19 @@ const jr = new Ve("previous-blocks"), El = {
|
|
|
1117
1103
|
Dl,
|
|
1118
1104
|
yl,
|
|
1119
1105
|
xl,
|
|
1120
|
-
|
|
1106
|
+
bt.create({
|
|
1121
1107
|
name: "doc",
|
|
1122
1108
|
topNode: !0,
|
|
1123
1109
|
content: "blockGroup"
|
|
1124
1110
|
})
|
|
1125
|
-
], Bl = "_bnEditor_yxlqg_3", Hl = "_bnRoot_yxlqg_14", Fl = "_dragPreview_yxlqg_29",
|
|
1111
|
+
], Bl = "_bnEditor_yxlqg_3", Hl = "_bnRoot_yxlqg_14", Fl = "_dragPreview_yxlqg_29", Qn = {
|
|
1126
1112
|
bnEditor: Bl,
|
|
1127
1113
|
bnRoot: Hl,
|
|
1128
1114
|
dragPreview: Fl
|
|
1129
1115
|
}, vl = Ka(
|
|
1130
1116
|
(e) => e.type.name === "blockContainer"
|
|
1131
1117
|
);
|
|
1132
|
-
function
|
|
1118
|
+
function Wn() {
|
|
1133
1119
|
return {
|
|
1134
1120
|
active: !1,
|
|
1135
1121
|
triggerCharacter: void 0,
|
|
@@ -1153,7 +1139,7 @@ class Ul {
|
|
|
1153
1139
|
U(this, "suggestionsMenu");
|
|
1154
1140
|
U(this, "pluginState");
|
|
1155
1141
|
U(this, "itemCallback");
|
|
1156
|
-
this.editor = t, this.pluginKey = n, this.pluginState =
|
|
1142
|
+
this.editor = t, this.pluginKey = n, this.pluginState = Wn(), this.itemCallback = (o) => {
|
|
1157
1143
|
t._tiptapEditor.chain().focus().deleteRange({
|
|
1158
1144
|
from: this.pluginState.queryStartPos - this.pluginState.triggerCharacter.length,
|
|
1159
1145
|
to: t._tiptapEditor.state.selection.from
|
|
@@ -1216,7 +1202,7 @@ function Gl({
|
|
|
1216
1202
|
state: {
|
|
1217
1203
|
// Initialize the plugin's internal state.
|
|
1218
1204
|
init() {
|
|
1219
|
-
return
|
|
1205
|
+
return Wn();
|
|
1220
1206
|
},
|
|
1221
1207
|
// Apply changes to the plugin state from an editor transaction.
|
|
1222
1208
|
apply(a, c, u, h) {
|
|
@@ -1251,7 +1237,7 @@ function Gl({
|
|
|
1251
1237
|
c.active && h.selection.from < c.queryStartPos || // Entering more than 3 characters, after the last query that matched with at least 1 menu item, should hide
|
|
1252
1238
|
// the menu.
|
|
1253
1239
|
m.notFoundCount > 3)
|
|
1254
|
-
return
|
|
1240
|
+
return Wn();
|
|
1255
1241
|
if (((I = a.getMeta(e)) == null ? void 0 : I.selectedItemIndexChanged) !== void 0) {
|
|
1256
1242
|
let M = a.getMeta(e).selectedItemIndexChanged;
|
|
1257
1243
|
M < 0 ? M = c.items.length - 1 : M >= c.items.length && (M = 0), m.keyboardHoveredItemIndex = M;
|
|
@@ -1332,7 +1318,7 @@ function Gl({
|
|
|
1332
1318
|
}
|
|
1333
1319
|
});
|
|
1334
1320
|
}
|
|
1335
|
-
const
|
|
1321
|
+
const cr = new Ve("suggestions-slash-commands"), Kl = st.create({
|
|
1336
1322
|
name: "slash-command",
|
|
1337
1323
|
addOptions() {
|
|
1338
1324
|
return {
|
|
@@ -1347,7 +1333,7 @@ const ur = new Ve("suggestions-slash-commands"), Kl = st.create({
|
|
|
1347
1333
|
const e = this.options.commands;
|
|
1348
1334
|
return [
|
|
1349
1335
|
Gl({
|
|
1350
|
-
pluginKey:
|
|
1336
|
+
pluginKey: cr,
|
|
1351
1337
|
editor: this.options.editor,
|
|
1352
1338
|
defaultTriggerCharacter: "/",
|
|
1353
1339
|
suggestionsMenuFactory: this.options.slashMenuFactory,
|
|
@@ -1359,7 +1345,7 @@ const ur = new Ve("suggestions-slash-commands"), Kl = st.create({
|
|
|
1359
1345
|
];
|
|
1360
1346
|
}
|
|
1361
1347
|
});
|
|
1362
|
-
class f1 extends
|
|
1348
|
+
class f1 extends gn {
|
|
1363
1349
|
constructor(n, r) {
|
|
1364
1350
|
super(n, r);
|
|
1365
1351
|
U(this, "nodes");
|
|
@@ -1373,7 +1359,7 @@ class f1 extends _n {
|
|
|
1373
1359
|
return new f1(n.resolve(r), n.resolve(i));
|
|
1374
1360
|
}
|
|
1375
1361
|
content() {
|
|
1376
|
-
return new
|
|
1362
|
+
return new qt(Qt.from(this.nodes), 0, 0);
|
|
1377
1363
|
}
|
|
1378
1364
|
eq(n) {
|
|
1379
1365
|
if (!(n instanceof f1) || this.nodes.length !== n.nodes.length || this.from !== n.from || this.to !== n.to)
|
|
@@ -1385,7 +1371,7 @@ class f1 extends _n {
|
|
|
1385
1371
|
}
|
|
1386
1372
|
map(n, r) {
|
|
1387
1373
|
let i = r.mapResult(this.from), o = r.mapResult(this.to);
|
|
1388
|
-
return o.deleted ?
|
|
1374
|
+
return o.deleted ? gn.near(n.resolve(i.pos)) : i.deleted ? gn.near(n.resolve(o.pos)) : new f1(
|
|
1389
1375
|
n.resolve(i.pos),
|
|
1390
1376
|
n.resolve(o.pos)
|
|
1391
1377
|
);
|
|
@@ -1441,7 +1427,7 @@ function qr(e, t, n = t) {
|
|
|
1441
1427
|
);
|
|
1442
1428
|
for (let c = i.childElementCount - 1; c >= 0; c--)
|
|
1443
1429
|
(c > a || c < s) && r.removeChild(r.children[c]);
|
|
1444
|
-
es(), _t = r, _t.className = _t.className + " " +
|
|
1430
|
+
es(), _t = r, _t.className = _t.className + " " + Qn.dragPreview, document.body.appendChild(_t);
|
|
1445
1431
|
}
|
|
1446
1432
|
function es() {
|
|
1447
1433
|
_t !== void 0 && (document.body.removeChild(_t), _t = void 0);
|
|
@@ -1555,7 +1541,7 @@ class Ql {
|
|
|
1555
1541
|
});
|
|
1556
1542
|
if (!n)
|
|
1557
1543
|
return;
|
|
1558
|
-
const r =
|
|
1544
|
+
const r = re(this.editor.state.doc, n.pos);
|
|
1559
1545
|
if (r === void 0)
|
|
1560
1546
|
return;
|
|
1561
1547
|
const { contentNode: i, endPos: o } = r;
|
|
@@ -1565,7 +1551,7 @@ class Ql {
|
|
|
1565
1551
|
} else
|
|
1566
1552
|
this.editor.commands.setTextSelection(o);
|
|
1567
1553
|
this.editor.view.focus(), this.editor.view.dispatch(
|
|
1568
|
-
this.editor.view.state.tr.scrollIntoView().setMeta(
|
|
1554
|
+
this.editor.view.state.tr.scrollIntoView().setMeta(cr, {
|
|
1569
1555
|
// TODO import suggestion plugin key
|
|
1570
1556
|
activate: !0,
|
|
1571
1557
|
type: "drag"
|
|
@@ -1783,7 +1769,7 @@ class Vl {
|
|
|
1783
1769
|
};
|
|
1784
1770
|
}
|
|
1785
1771
|
getDynamicParams() {
|
|
1786
|
-
const t =
|
|
1772
|
+
const t = re(
|
|
1787
1773
|
this.editor.state.doc,
|
|
1788
1774
|
this.editor.state.selection.from
|
|
1789
1775
|
);
|
|
@@ -1856,7 +1842,7 @@ class ec {
|
|
|
1856
1842
|
), a = s.marks();
|
|
1857
1843
|
for (const c of a)
|
|
1858
1844
|
if (c.type.name === t.schema.mark("link").type.name) {
|
|
1859
|
-
this.mouseHoveredHyperlinkMark = c, this.mouseHoveredHyperlinkMarkRange =
|
|
1845
|
+
this.mouseHoveredHyperlinkMark = c, this.mouseHoveredHyperlinkMarkRange = Gr(
|
|
1860
1846
|
s,
|
|
1861
1847
|
c.type,
|
|
1862
1848
|
c.attrs
|
|
@@ -1876,7 +1862,7 @@ class ec {
|
|
|
1876
1862
|
const s = this.editor.state.selection.$from.marks();
|
|
1877
1863
|
for (const a of s)
|
|
1878
1864
|
if (a.type.name === this.editor.schema.mark("link").type.name) {
|
|
1879
|
-
this.keyboardHoveredHyperlinkMark = a, this.keyboardHoveredHyperlinkMarkRange =
|
|
1865
|
+
this.keyboardHoveredHyperlinkMark = a, this.keyboardHoveredHyperlinkMarkRange = Gr(
|
|
1880
1866
|
this.editor.state.selection.$from,
|
|
1881
1867
|
a.type,
|
|
1882
1868
|
a.attrs
|
|
@@ -1988,7 +1974,7 @@ const tc = (e, t) => new at({
|
|
|
1988
1974
|
key: rc,
|
|
1989
1975
|
props: {
|
|
1990
1976
|
decorations: (e) => {
|
|
1991
|
-
const { doc: t, selection: n } = e, r =
|
|
1977
|
+
const { doc: t, selection: n } = e, r = cr.getState(e), i = this.editor.isEditable || !this.options.showOnlyWhenEditable, { anchor: o } = n, s = [];
|
|
1992
1978
|
if (i)
|
|
1993
1979
|
return t.descendants((a, c) => {
|
|
1994
1980
|
const u = o >= c && o <= c + a.nodeSize, h = !a.isLeaf && !a.childCount;
|
|
@@ -2013,7 +1999,7 @@ class oc {
|
|
|
2013
1999
|
this.name = t, this.match = n;
|
|
2014
2000
|
}
|
|
2015
2001
|
}
|
|
2016
|
-
class
|
|
2002
|
+
class Ft extends oc {
|
|
2017
2003
|
/**
|
|
2018
2004
|
* Constructs a new slash-command.
|
|
2019
2005
|
*
|
|
@@ -2027,58 +2013,58 @@ class Ht extends oc {
|
|
|
2027
2013
|
).length !== 0), this.name = t, this.execute = n, this.aliases = r;
|
|
2028
2014
|
}
|
|
2029
2015
|
}
|
|
2030
|
-
function
|
|
2016
|
+
function vt(e, t) {
|
|
2031
2017
|
const n = e.getTextCursorPosition().block;
|
|
2032
2018
|
n.content.length === 1 && n.content[0].type === "text" && n.content[0].text === "/" || n.content.length === 0 ? e.updateBlock(n, t) : (e.insertBlocks([t], n, "after"), e.setTextCursorPosition(e.getTextCursorPosition().nextBlock));
|
|
2033
2019
|
}
|
|
2034
2020
|
const sc = [
|
|
2035
2021
|
// Command for creating a level 1 heading
|
|
2036
|
-
new
|
|
2022
|
+
new Ft(
|
|
2037
2023
|
"Heading",
|
|
2038
|
-
(e) =>
|
|
2024
|
+
(e) => vt(e, {
|
|
2039
2025
|
type: "heading",
|
|
2040
2026
|
props: { level: "1" }
|
|
2041
2027
|
}),
|
|
2042
2028
|
["h", "heading1", "h1"]
|
|
2043
2029
|
),
|
|
2044
2030
|
// Command for creating a level 2 heading
|
|
2045
|
-
new
|
|
2031
|
+
new Ft(
|
|
2046
2032
|
"Heading 2",
|
|
2047
|
-
(e) =>
|
|
2033
|
+
(e) => vt(e, {
|
|
2048
2034
|
type: "heading",
|
|
2049
2035
|
props: { level: "2" }
|
|
2050
2036
|
}),
|
|
2051
2037
|
["h2", "heading2", "subheading"]
|
|
2052
2038
|
),
|
|
2053
2039
|
// Command for creating a level 3 heading
|
|
2054
|
-
new
|
|
2040
|
+
new Ft(
|
|
2055
2041
|
"Heading 3",
|
|
2056
|
-
(e) =>
|
|
2042
|
+
(e) => vt(e, {
|
|
2057
2043
|
type: "heading",
|
|
2058
2044
|
props: { level: "3" }
|
|
2059
2045
|
}),
|
|
2060
2046
|
["h3", "heading3", "subheading"]
|
|
2061
2047
|
),
|
|
2062
2048
|
// Command for creating an ordered list
|
|
2063
|
-
new
|
|
2049
|
+
new Ft(
|
|
2064
2050
|
"Numbered List",
|
|
2065
|
-
(e) =>
|
|
2051
|
+
(e) => vt(e, {
|
|
2066
2052
|
type: "numberedListItem"
|
|
2067
2053
|
}),
|
|
2068
2054
|
["li", "list", "numberedlist", "numbered list"]
|
|
2069
2055
|
),
|
|
2070
2056
|
// Command for creating a bullet list
|
|
2071
|
-
new
|
|
2057
|
+
new Ft(
|
|
2072
2058
|
"Bullet List",
|
|
2073
|
-
(e) =>
|
|
2059
|
+
(e) => vt(e, {
|
|
2074
2060
|
type: "bulletListItem"
|
|
2075
2061
|
}),
|
|
2076
2062
|
["ul", "list", "bulletlist", "bullet list"]
|
|
2077
2063
|
),
|
|
2078
2064
|
// Command for creating a paragraph (pretty useless)
|
|
2079
|
-
new
|
|
2065
|
+
new Ft(
|
|
2080
2066
|
"Paragraph",
|
|
2081
|
-
(e) =>
|
|
2067
|
+
(e) => vt(e, {
|
|
2082
2068
|
type: "paragraph"
|
|
2083
2069
|
}),
|
|
2084
2070
|
["p"]
|
|
@@ -2197,7 +2183,7 @@ const sc = [
|
|
|
2197
2183
|
addCommands() {
|
|
2198
2184
|
return {
|
|
2199
2185
|
setTextAlignment: (e) => ({ state: t }) => {
|
|
2200
|
-
const n = [], r =
|
|
2186
|
+
const n = [], r = re(
|
|
2201
2187
|
t.doc,
|
|
2202
2188
|
t.selection.from
|
|
2203
2189
|
);
|
|
@@ -2233,7 +2219,7 @@ const sc = [
|
|
|
2233
2219
|
addCommands() {
|
|
2234
2220
|
return {
|
|
2235
2221
|
setBlockTextColor: (e, t) => ({ state: n, view: r }) => {
|
|
2236
|
-
const i =
|
|
2222
|
+
const i = re(n.doc, e);
|
|
2237
2223
|
return i === void 0 ? !1 : (n.tr.setNodeAttribute(i.startPos - 1, "textColor", t), r.focus(), !0);
|
|
2238
2224
|
}
|
|
2239
2225
|
};
|
|
@@ -2316,7 +2302,7 @@ const sc = [
|
|
|
2316
2302
|
includeChildren: !0,
|
|
2317
2303
|
showOnlyCurrent: !1
|
|
2318
2304
|
}),
|
|
2319
|
-
|
|
2305
|
+
lr.configure({
|
|
2320
2306
|
types: ["blockContainer"]
|
|
2321
2307
|
}),
|
|
2322
2308
|
Va,
|
|
@@ -2362,7 +2348,7 @@ const sc = [
|
|
|
2362
2348
|
})
|
|
2363
2349
|
), t;
|
|
2364
2350
|
};
|
|
2365
|
-
function
|
|
2351
|
+
function ur(e, t) {
|
|
2366
2352
|
let n, r;
|
|
2367
2353
|
if (t.firstChild.descendants((i, o) => n ? !1 : i.type.name !== "blockContainer" || i.attrs.id !== e ? !0 : (n = i, r = o + 1, !1)), n === void 0 || r === void 0)
|
|
2368
2354
|
throw Error("Could not find block in the editor with matching ID.");
|
|
@@ -2376,7 +2362,7 @@ function ts(e, t, n = "before", r) {
|
|
|
2376
2362
|
for (const u of e)
|
|
2377
2363
|
o.push(on(u, r.schema));
|
|
2378
2364
|
let s = -1;
|
|
2379
|
-
const { node: a, posBeforeNode: c } =
|
|
2365
|
+
const { node: a, posBeforeNode: c } = ur(i, r.state.doc);
|
|
2380
2366
|
if (n === "before" && (s = c), n === "after" && (s = c + a.nodeSize), n === "nested") {
|
|
2381
2367
|
if (a.childCount < 2) {
|
|
2382
2368
|
s = c + a.firstChild.nodeSize + 1;
|
|
@@ -2394,7 +2380,7 @@ function ts(e, t, n = "before", r) {
|
|
|
2394
2380
|
r.view.dispatch(r.state.tr.insert(s, o));
|
|
2395
2381
|
}
|
|
2396
2382
|
function dc(e, t, n) {
|
|
2397
|
-
const r = typeof e == "string" ? e : e.id, { posBeforeNode: i } =
|
|
2383
|
+
const r = typeof e == "string" ? e : e.id, { posBeforeNode: i } = ur(r, n.state.doc);
|
|
2398
2384
|
n.commands.BNUpdateBlock(i + 1, t);
|
|
2399
2385
|
}
|
|
2400
2386
|
function ns(e, t) {
|
|
@@ -2472,7 +2458,7 @@ var rs = function(t) {
|
|
|
2472
2458
|
r = Zr(a, n), i = Zr(t, n), a !== i && (h && i && (Xr(i) || (o = Vr(i))) ? (o ? (o = !1, s = r && Vr(r) ? r : []) : s = r && Xr(r) ? r : {}, Jr(a, { name: n, newValue: e(h, s, i) })) : typeof i < "u" && Jr(a, { name: n, newValue: i }));
|
|
2473
2459
|
return a;
|
|
2474
2460
|
};
|
|
2475
|
-
function
|
|
2461
|
+
function $n(e) {
|
|
2476
2462
|
if (typeof e != "object" || e === null)
|
|
2477
2463
|
return !1;
|
|
2478
2464
|
const t = Object.getPrototypeOf(e);
|
|
@@ -2535,13 +2521,13 @@ function Tc(e, t) {
|
|
|
2535
2521
|
}
|
|
2536
2522
|
}
|
|
2537
2523
|
function m1(e) {
|
|
2538
|
-
return !e || typeof e != "object" ? "" : "position" in e || "type" in e ? ti(e.position) : "start" in e || "end" in e ? ti(e) : "line" in e || "column" in e ?
|
|
2524
|
+
return !e || typeof e != "object" ? "" : "position" in e || "type" in e ? ti(e.position) : "start" in e || "end" in e ? ti(e) : "line" in e || "column" in e ? Vn(e) : "";
|
|
2539
2525
|
}
|
|
2540
|
-
function
|
|
2526
|
+
function Vn(e) {
|
|
2541
2527
|
return ni(e && e.line) + ":" + ni(e && e.column);
|
|
2542
2528
|
}
|
|
2543
2529
|
function ti(e) {
|
|
2544
|
-
return
|
|
2530
|
+
return Vn(e && e.start) + "-" + Vn(e && e.end);
|
|
2545
2531
|
}
|
|
2546
2532
|
function ni(e) {
|
|
2547
2533
|
return e && typeof e == "number" ? e : 1;
|
|
@@ -2708,7 +2694,7 @@ const Sc = { cwd: Nc };
|
|
|
2708
2694
|
function Nc() {
|
|
2709
2695
|
return "/";
|
|
2710
2696
|
}
|
|
2711
|
-
function
|
|
2697
|
+
function Xn(e) {
|
|
2712
2698
|
return e !== null && typeof e == "object" && // @ts-expect-error: indexable.
|
|
2713
2699
|
e.href && // @ts-expect-error: indexable.
|
|
2714
2700
|
e.origin;
|
|
@@ -2716,7 +2702,7 @@ function Jn(e) {
|
|
|
2716
2702
|
function Ic(e) {
|
|
2717
2703
|
if (typeof e == "string")
|
|
2718
2704
|
e = new URL(e);
|
|
2719
|
-
else if (!
|
|
2705
|
+
else if (!Xn(e)) {
|
|
2720
2706
|
const t = new TypeError(
|
|
2721
2707
|
'The "path" argument must be of type string or an instance of URL. Received `' + e + "`"
|
|
2722
2708
|
);
|
|
@@ -2749,7 +2735,7 @@ function kc(e) {
|
|
|
2749
2735
|
}
|
|
2750
2736
|
return decodeURIComponent(t);
|
|
2751
2737
|
}
|
|
2752
|
-
const
|
|
2738
|
+
const _n = ["history", "path", "basename", "stem", "extname", "dirname"];
|
|
2753
2739
|
class Oc {
|
|
2754
2740
|
/**
|
|
2755
2741
|
* Create a new virtual file.
|
|
@@ -2775,15 +2761,15 @@ class Oc {
|
|
|
2775
2761
|
*/
|
|
2776
2762
|
constructor(t) {
|
|
2777
2763
|
let n;
|
|
2778
|
-
t ? typeof t == "string" || yc(t) ? n = { value: t } :
|
|
2764
|
+
t ? typeof t == "string" || yc(t) ? n = { value: t } : Xn(t) ? n = { path: t } : n = t : n = {}, this.data = {}, this.messages = [], this.history = [], this.cwd = Sc.cwd(), this.value, this.stored, this.result, this.map;
|
|
2779
2765
|
let r = -1;
|
|
2780
|
-
for (; ++r <
|
|
2781
|
-
const o =
|
|
2766
|
+
for (; ++r < _n.length; ) {
|
|
2767
|
+
const o = _n[r];
|
|
2782
2768
|
o in n && n[o] !== void 0 && n[o] !== null && (this[o] = o === "history" ? [...n[o]] : n[o]);
|
|
2783
2769
|
}
|
|
2784
2770
|
let i;
|
|
2785
2771
|
for (i in n)
|
|
2786
|
-
|
|
2772
|
+
_n.includes(i) || (this[i] = n[i]);
|
|
2787
2773
|
}
|
|
2788
2774
|
/**
|
|
2789
2775
|
* Get the full path (example: `'~/index.min.js'`).
|
|
@@ -2803,7 +2789,7 @@ class Oc {
|
|
|
2803
2789
|
* @param {string | URL} path
|
|
2804
2790
|
*/
|
|
2805
2791
|
set path(t) {
|
|
2806
|
-
|
|
2792
|
+
Xn(t) && (t = Ic(t)), Cn(t, "path"), this.path !== t && this.history.push(t);
|
|
2807
2793
|
}
|
|
2808
2794
|
/**
|
|
2809
2795
|
* Get the parent path (example: `'~'`).
|
|
@@ -2833,7 +2819,7 @@ class Oc {
|
|
|
2833
2819
|
* Cannot be nullified (use `file.path = file.dirname` instead).
|
|
2834
2820
|
*/
|
|
2835
2821
|
set basename(t) {
|
|
2836
|
-
|
|
2822
|
+
Cn(t, "basename"), An(t, "basename"), this.path = Ye.join(this.dirname || "", t);
|
|
2837
2823
|
}
|
|
2838
2824
|
/**
|
|
2839
2825
|
* Get the extname (including dot) (example: `'.js'`).
|
|
@@ -2849,7 +2835,7 @@ class Oc {
|
|
|
2849
2835
|
* Cannot be set if there’s no `path` yet.
|
|
2850
2836
|
*/
|
|
2851
2837
|
set extname(t) {
|
|
2852
|
-
if (
|
|
2838
|
+
if (An(t, "extname"), ri(this.dirname, "extname"), t) {
|
|
2853
2839
|
if (t.charCodeAt(0) !== 46)
|
|
2854
2840
|
throw new Error("`extname` must start with `.`");
|
|
2855
2841
|
if (t.includes(".", 1))
|
|
@@ -2871,7 +2857,7 @@ class Oc {
|
|
|
2871
2857
|
* Cannot be nullified (use `file.path = file.dirname` instead).
|
|
2872
2858
|
*/
|
|
2873
2859
|
set stem(t) {
|
|
2874
|
-
|
|
2860
|
+
Cn(t, "stem"), An(t, "stem"), this.path = Ye.join(this.dirname || "", t + (this.extname || ""));
|
|
2875
2861
|
}
|
|
2876
2862
|
/**
|
|
2877
2863
|
* Serialize the file.
|
|
@@ -2950,13 +2936,13 @@ class Oc {
|
|
|
2950
2936
|
throw i.fatal = !0, i;
|
|
2951
2937
|
}
|
|
2952
2938
|
}
|
|
2953
|
-
function
|
|
2939
|
+
function An(e, t) {
|
|
2954
2940
|
if (e && e.includes(Ye.sep))
|
|
2955
2941
|
throw new Error(
|
|
2956
2942
|
"`" + t + "` cannot be a path: did not expect `" + Ye.sep + "`"
|
|
2957
2943
|
);
|
|
2958
2944
|
}
|
|
2959
|
-
function
|
|
2945
|
+
function Cn(e, t) {
|
|
2960
2946
|
if (!e)
|
|
2961
2947
|
throw new Error("`" + t + "` cannot be empty");
|
|
2962
2948
|
}
|
|
@@ -2967,7 +2953,7 @@ function ri(e, t) {
|
|
|
2967
2953
|
function yc(e) {
|
|
2968
2954
|
return rs(e);
|
|
2969
2955
|
}
|
|
2970
|
-
const
|
|
2956
|
+
const hr = ss().freeze(), os = {}.hasOwnProperty;
|
|
2971
2957
|
function ss() {
|
|
2972
2958
|
const e = mc(), t = [];
|
|
2973
2959
|
let n = {}, r, i = -1;
|
|
@@ -2980,7 +2966,7 @@ function ss() {
|
|
|
2980
2966
|
return I.data(ei(!0, {}, n)), I;
|
|
2981
2967
|
}
|
|
2982
2968
|
function s(I, M) {
|
|
2983
|
-
return typeof I == "string" ? arguments.length === 2 ? (
|
|
2969
|
+
return typeof I == "string" ? arguments.length === 2 ? (In("data", r), n[I] = M, o) : os.call(n, I) && n[I] || null : I ? (In("data", r), n = I, o) : n;
|
|
2984
2970
|
}
|
|
2985
2971
|
function a() {
|
|
2986
2972
|
if (r)
|
|
@@ -2997,7 +2983,7 @@ function ss() {
|
|
|
2997
2983
|
}
|
|
2998
2984
|
function c(I, ...M) {
|
|
2999
2985
|
let N;
|
|
3000
|
-
if (
|
|
2986
|
+
if (In("use", r), I != null)
|
|
3001
2987
|
if (typeof I == "function")
|
|
3002
2988
|
G(I, ...M);
|
|
3003
2989
|
else if (typeof I == "object")
|
|
@@ -3038,18 +3024,18 @@ function ss() {
|
|
|
3038
3024
|
Q = t[Y];
|
|
3039
3025
|
break;
|
|
3040
3026
|
}
|
|
3041
|
-
Q ? (
|
|
3027
|
+
Q ? ($n(Q[1]) && $n(w) && (w = ei(!0, Q[1], w)), Q[1] = w) : t.push([...arguments]);
|
|
3042
3028
|
}
|
|
3043
3029
|
}
|
|
3044
3030
|
function u(I) {
|
|
3045
3031
|
o.freeze();
|
|
3046
3032
|
const M = i1(I), N = o.Parser;
|
|
3047
|
-
return
|
|
3033
|
+
return Sn("parse", N), ii(N, "parse") ? new N(String(M), M).parse() : N(String(M), M);
|
|
3048
3034
|
}
|
|
3049
3035
|
function h(I, M) {
|
|
3050
3036
|
o.freeze();
|
|
3051
3037
|
const N = i1(M), D = o.Compiler;
|
|
3052
|
-
return
|
|
3038
|
+
return Nn("stringify", D), oi(I), ii(D, "compile") ? new D(I, N).compile() : D(I, N);
|
|
3053
3039
|
}
|
|
3054
3040
|
function m(I, M, N) {
|
|
3055
3041
|
if (oi(I), o.freeze(), !N && typeof M == "function" && (N = M, M = void 0), !N)
|
|
@@ -3070,7 +3056,7 @@ function ss() {
|
|
|
3070
3056
|
}
|
|
3071
3057
|
}
|
|
3072
3058
|
function E(I, M) {
|
|
3073
|
-
if (o.freeze(),
|
|
3059
|
+
if (o.freeze(), Sn("process", o.Parser), Nn("process", o.Compiler), !M)
|
|
3074
3060
|
return new Promise(N);
|
|
3075
3061
|
N(null, M);
|
|
3076
3062
|
function N(D, R) {
|
|
@@ -3090,7 +3076,7 @@ function ss() {
|
|
|
3090
3076
|
}
|
|
3091
3077
|
function _(I) {
|
|
3092
3078
|
let M;
|
|
3093
|
-
o.freeze(),
|
|
3079
|
+
o.freeze(), Sn("processSync", o.Parser), Nn("processSync", o.Compiler);
|
|
3094
3080
|
const N = i1(I);
|
|
3095
3081
|
return o.process(N, D), si("processSync", "process", M), N;
|
|
3096
3082
|
function D(R) {
|
|
@@ -3114,22 +3100,22 @@ function xc(e) {
|
|
|
3114
3100
|
return !0;
|
|
3115
3101
|
return !1;
|
|
3116
3102
|
}
|
|
3117
|
-
function
|
|
3103
|
+
function Sn(e, t) {
|
|
3118
3104
|
if (typeof t != "function")
|
|
3119
3105
|
throw new TypeError("Cannot `" + e + "` without `Parser`");
|
|
3120
3106
|
}
|
|
3121
|
-
function
|
|
3107
|
+
function Nn(e, t) {
|
|
3122
3108
|
if (typeof t != "function")
|
|
3123
3109
|
throw new TypeError("Cannot `" + e + "` without `Compiler`");
|
|
3124
3110
|
}
|
|
3125
|
-
function
|
|
3111
|
+
function In(e, t) {
|
|
3126
3112
|
if (t)
|
|
3127
3113
|
throw new Error(
|
|
3128
3114
|
"Cannot call `" + e + "` on a frozen processor.\nCreate a new processor first, by calling it: use `processor()` instead of `processor`."
|
|
3129
3115
|
);
|
|
3130
3116
|
}
|
|
3131
3117
|
function oi(e) {
|
|
3132
|
-
if (
|
|
3118
|
+
if (!$n(e) || typeof e.type != "string")
|
|
3133
3119
|
throw new TypeError("Expected node, got `" + e + "`");
|
|
3134
3120
|
}
|
|
3135
3121
|
function si(e, t, n) {
|
|
@@ -3250,7 +3236,7 @@ Ue.isControlCodePoint = function(e) {
|
|
|
3250
3236
|
Ue.isUndefinedCodePoint = function(e) {
|
|
3251
3237
|
return e >= 64976 && e <= 65007 || Mc.indexOf(e) > -1;
|
|
3252
3238
|
};
|
|
3253
|
-
var
|
|
3239
|
+
var dr = {
|
|
3254
3240
|
controlCharacterInInputStream: "control-character-in-input-stream",
|
|
3255
3241
|
noncharacterInInputStream: "noncharacter-in-input-stream",
|
|
3256
3242
|
surrogateInInputStream: "surrogate-in-input-stream",
|
|
@@ -3312,7 +3298,7 @@ var fr = {
|
|
|
3312
3298
|
nestedNoscriptInHead: "nested-noscript-in-head",
|
|
3313
3299
|
eofInElementThatCanContainOnlyText: "eof-in-element-that-can-contain-only-text"
|
|
3314
3300
|
};
|
|
3315
|
-
const
|
|
3301
|
+
const zt = Ue, kn = dr, St = zt.CODE_POINTS, Lc = 1 << 16;
|
|
3316
3302
|
let Pc = class {
|
|
3317
3303
|
constructor() {
|
|
3318
3304
|
this.html = null, this.pos = -1, this.lastGapPos = -1, this.lastCharPos = -1, this.gapStack = [], this.skipNextNewLine = !1, this.lastChunkWritten = !1, this.endOfChunkHit = !1, this.bufferWaterline = Lc;
|
|
@@ -3325,11 +3311,11 @@ let Pc = class {
|
|
|
3325
3311
|
_processSurrogate(t) {
|
|
3326
3312
|
if (this.pos !== this.lastCharPos) {
|
|
3327
3313
|
const n = this.html.charCodeAt(this.pos + 1);
|
|
3328
|
-
if (
|
|
3329
|
-
return this.pos++, this._addGap(),
|
|
3314
|
+
if (zt.isSurrogatePair(n))
|
|
3315
|
+
return this.pos++, this._addGap(), zt.getSurrogatePairCodePoint(t, n);
|
|
3330
3316
|
} else if (!this.lastChunkWritten)
|
|
3331
3317
|
return this.endOfChunkHit = !0, St.EOF;
|
|
3332
|
-
return this._err(
|
|
3318
|
+
return this._err(kn.surrogateInInputStream), t;
|
|
3333
3319
|
}
|
|
3334
3320
|
dropParsedChunk() {
|
|
3335
3321
|
this.pos > this.bufferWaterline && (this.lastCharPos -= this.pos, this.html = this.html.substring(this.pos), this.pos = 0, this.lastGapPos = -1, this.gapStack = []);
|
|
@@ -3344,17 +3330,17 @@ let Pc = class {
|
|
|
3344
3330
|
if (this.pos++, this.pos > this.lastCharPos)
|
|
3345
3331
|
return this.endOfChunkHit = !this.lastChunkWritten, St.EOF;
|
|
3346
3332
|
let t = this.html.charCodeAt(this.pos);
|
|
3347
|
-
return this.skipNextNewLine && t === St.LINE_FEED ? (this.skipNextNewLine = !1, this._addGap(), this.advance()) : t === St.CARRIAGE_RETURN ? (this.skipNextNewLine = !0, St.LINE_FEED) : (this.skipNextNewLine = !1,
|
|
3333
|
+
return this.skipNextNewLine && t === St.LINE_FEED ? (this.skipNextNewLine = !1, this._addGap(), this.advance()) : t === St.CARRIAGE_RETURN ? (this.skipNextNewLine = !0, St.LINE_FEED) : (this.skipNextNewLine = !1, zt.isSurrogate(t) && (t = this._processSurrogate(t)), t > 31 && t < 127 || t === St.LINE_FEED || t === St.CARRIAGE_RETURN || t > 159 && t < 64976 || this._checkForProblematicCharacters(t), t);
|
|
3348
3334
|
}
|
|
3349
3335
|
_checkForProblematicCharacters(t) {
|
|
3350
|
-
|
|
3336
|
+
zt.isControlCodePoint(t) ? this._err(kn.controlCharacterInInputStream) : zt.isUndefinedCodePoint(t) && this._err(kn.noncharacterInInputStream);
|
|
3351
3337
|
}
|
|
3352
3338
|
retreat() {
|
|
3353
3339
|
this.pos === this.lastGapPos && (this.lastGapPos = this.gapStack.pop(), this.pos--), this.pos--;
|
|
3354
3340
|
}
|
|
3355
3341
|
};
|
|
3356
3342
|
var Dc = Pc, wc = new Uint16Array([4, 52, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 106, 303, 412, 810, 1432, 1701, 1796, 1987, 2114, 2360, 2420, 2484, 3170, 3251, 4140, 4393, 4575, 4610, 5106, 5512, 5728, 6117, 6274, 6315, 6345, 6427, 6516, 7002, 7910, 8733, 9323, 9870, 10170, 10631, 10893, 11318, 11386, 11467, 12773, 13092, 14474, 14922, 15448, 15542, 16419, 17666, 18166, 18611, 19004, 19095, 19298, 19397, 4, 16, 69, 77, 97, 98, 99, 102, 103, 108, 109, 110, 111, 112, 114, 115, 116, 117, 140, 150, 158, 169, 176, 194, 199, 210, 216, 222, 226, 242, 256, 266, 283, 294, 108, 105, 103, 5, 198, 1, 59, 148, 1, 198, 80, 5, 38, 1, 59, 156, 1, 38, 99, 117, 116, 101, 5, 193, 1, 59, 167, 1, 193, 114, 101, 118, 101, 59, 1, 258, 4, 2, 105, 121, 182, 191, 114, 99, 5, 194, 1, 59, 189, 1, 194, 59, 1, 1040, 114, 59, 3, 55349, 56580, 114, 97, 118, 101, 5, 192, 1, 59, 208, 1, 192, 112, 104, 97, 59, 1, 913, 97, 99, 114, 59, 1, 256, 100, 59, 1, 10835, 4, 2, 103, 112, 232, 237, 111, 110, 59, 1, 260, 102, 59, 3, 55349, 56632, 112, 108, 121, 70, 117, 110, 99, 116, 105, 111, 110, 59, 1, 8289, 105, 110, 103, 5, 197, 1, 59, 264, 1, 197, 4, 2, 99, 115, 272, 277, 114, 59, 3, 55349, 56476, 105, 103, 110, 59, 1, 8788, 105, 108, 100, 101, 5, 195, 1, 59, 292, 1, 195, 109, 108, 5, 196, 1, 59, 301, 1, 196, 4, 8, 97, 99, 101, 102, 111, 114, 115, 117, 321, 350, 354, 383, 388, 394, 400, 405, 4, 2, 99, 114, 327, 336, 107, 115, 108, 97, 115, 104, 59, 1, 8726, 4, 2, 118, 119, 342, 345, 59, 1, 10983, 101, 100, 59, 1, 8966, 121, 59, 1, 1041, 4, 3, 99, 114, 116, 362, 369, 379, 97, 117, 115, 101, 59, 1, 8757, 110, 111, 117, 108, 108, 105, 115, 59, 1, 8492, 97, 59, 1, 914, 114, 59, 3, 55349, 56581, 112, 102, 59, 3, 55349, 56633, 101, 118, 101, 59, 1, 728, 99, 114, 59, 1, 8492, 109, 112, 101, 113, 59, 1, 8782, 4, 14, 72, 79, 97, 99, 100, 101, 102, 104, 105, 108, 111, 114, 115, 117, 442, 447, 456, 504, 542, 547, 569, 573, 577, 616, 678, 784, 790, 796, 99, 121, 59, 1, 1063, 80, 89, 5, 169, 1, 59, 454, 1, 169, 4, 3, 99, 112, 121, 464, 470, 497, 117, 116, 101, 59, 1, 262, 4, 2, 59, 105, 476, 478, 1, 8914, 116, 97, 108, 68, 105, 102, 102, 101, 114, 101, 110, 116, 105, 97, 108, 68, 59, 1, 8517, 108, 101, 121, 115, 59, 1, 8493, 4, 4, 97, 101, 105, 111, 514, 520, 530, 535, 114, 111, 110, 59, 1, 268, 100, 105, 108, 5, 199, 1, 59, 528, 1, 199, 114, 99, 59, 1, 264, 110, 105, 110, 116, 59, 1, 8752, 111, 116, 59, 1, 266, 4, 2, 100, 110, 553, 560, 105, 108, 108, 97, 59, 1, 184, 116, 101, 114, 68, 111, 116, 59, 1, 183, 114, 59, 1, 8493, 105, 59, 1, 935, 114, 99, 108, 101, 4, 4, 68, 77, 80, 84, 591, 596, 603, 609, 111, 116, 59, 1, 8857, 105, 110, 117, 115, 59, 1, 8854, 108, 117, 115, 59, 1, 8853, 105, 109, 101, 115, 59, 1, 8855, 111, 4, 2, 99, 115, 623, 646, 107, 119, 105, 115, 101, 67, 111, 110, 116, 111, 117, 114, 73, 110, 116, 101, 103, 114, 97, 108, 59, 1, 8754, 101, 67, 117, 114, 108, 121, 4, 2, 68, 81, 658, 671, 111, 117, 98, 108, 101, 81, 117, 111, 116, 101, 59, 1, 8221, 117, 111, 116, 101, 59, 1, 8217, 4, 4, 108, 110, 112, 117, 688, 701, 736, 753, 111, 110, 4, 2, 59, 101, 696, 698, 1, 8759, 59, 1, 10868, 4, 3, 103, 105, 116, 709, 717, 722, 114, 117, 101, 110, 116, 59, 1, 8801, 110, 116, 59, 1, 8751, 111, 117, 114, 73, 110, 116, 101, 103, 114, 97, 108, 59, 1, 8750, 4, 2, 102, 114, 742, 745, 59, 1, 8450, 111, 100, 117, 99, 116, 59, 1, 8720, 110, 116, 101, 114, 67, 108, 111, 99, 107, 119, 105, 115, 101, 67, 111, 110, 116, 111, 117, 114, 73, 110, 116, 101, 103, 114, 97, 108, 59, 1, 8755, 111, 115, 115, 59, 1, 10799, 99, 114, 59, 3, 55349, 56478, 112, 4, 2, 59, 67, 803, 805, 1, 8915, 97, 112, 59, 1, 8781, 4, 11, 68, 74, 83, 90, 97, 99, 101, 102, 105, 111, 115, 834, 850, 855, 860, 865, 888, 903, 916, 921, 1011, 1415, 4, 2, 59, 111, 840, 842, 1, 8517, 116, 114, 97, 104, 100, 59, 1, 10513, 99, 121, 59, 1, 1026, 99, 121, 59, 1, 1029, 99, 121, 59, 1, 1039, 4, 3, 103, 114, 115, 873, 879, 883, 103, 101, 114, 59, 1, 8225, 114, 59, 1, 8609, 104, 118, 59, 1, 10980, 4, 2, 97, 121, 894, 900, 114, 111, 110, 59, 1, 270, 59, 1, 1044, 108, 4, 2, 59, 116, 910, 912, 1, 8711, 97, 59, 1, 916, 114, 59, 3, 55349, 56583, 4, 2, 97, 102, 927, 998, 4, 2, 99, 109, 933, 992, 114, 105, 116, 105, 99, 97, 108, 4, 4, 65, 68, 71, 84, 950, 957, 978, 985, 99, 117, 116, 101, 59, 1, 180, 111, 4, 2, 116, 117, 964, 967, 59, 1, 729, 98, 108, 101, 65, 99, 117, 116, 101, 59, 1, 733, 114, 97, 118, 101, 59, 1, 96, 105, 108, 100, 101, 59, 1, 732, 111, 110, 100, 59, 1, 8900, 102, 101, 114, 101, 110, 116, 105, 97, 108, 68, 59, 1, 8518, 4, 4, 112, 116, 117, 119, 1021, 1026, 1048, 1249, 102, 59, 3, 55349, 56635, 4, 3, 59, 68, 69, 1034, 1036, 1041, 1, 168, 111, 116, 59, 1, 8412, 113, 117, 97, 108, 59, 1, 8784, 98, 108, 101, 4, 6, 67, 68, 76, 82, 85, 86, 1065, 1082, 1101, 1189, 1211, 1236, 111, 110, 116, 111, 117, 114, 73, 110, 116, 101, 103, 114, 97, 108, 59, 1, 8751, 111, 4, 2, 116, 119, 1089, 1092, 59, 1, 168, 110, 65, 114, 114, 111, 119, 59, 1, 8659, 4, 2, 101, 111, 1107, 1141, 102, 116, 4, 3, 65, 82, 84, 1117, 1124, 1136, 114, 114, 111, 119, 59, 1, 8656, 105, 103, 104, 116, 65, 114, 114, 111, 119, 59, 1, 8660, 101, 101, 59, 1, 10980, 110, 103, 4, 2, 76, 82, 1149, 1177, 101, 102, 116, 4, 2, 65, 82, 1158, 1165, 114, 114, 111, 119, 59, 1, 10232, 105, 103, 104, 116, 65, 114, 114, 111, 119, 59, 1, 10234, 105, 103, 104, 116, 65, 114, 114, 111, 119, 59, 1, 10233, 105, 103, 104, 116, 4, 2, 65, 84, 1199, 1206, 114, 114, 111, 119, 59, 1, 8658, 101, 101, 59, 1, 8872, 112, 4, 2, 65, 68, 1218, 1225, 114, 114, 111, 119, 59, 1, 8657, 111, 119, 110, 65, 114, 114, 111, 119, 59, 1, 8661, 101, 114, 116, 105, 99, 97, 108, 66, 97, 114, 59, 1, 8741, 110, 4, 6, 65, 66, 76, 82, 84, 97, 1264, 1292, 1299, 1352, 1391, 1408, 114, 114, 111, 119, 4, 3, 59, 66, 85, 1276, 1278, 1283, 1, 8595, 97, 114, 59, 1, 10515, 112, 65, 114, 114, 111, 119, 59, 1, 8693, 114, 101, 118, 101, 59, 1, 785, 101, 102, 116, 4, 3, 82, 84, 86, 1310, 1323, 1334, 105, 103, 104, 116, 86, 101, 99, 116, 111, 114, 59, 1, 10576, 101, 101, 86, 101, 99, 116, 111, 114, 59, 1, 10590, 101, 99, 116, 111, 114, 4, 2, 59, 66, 1345, 1347, 1, 8637, 97, 114, 59, 1, 10582, 105, 103, 104, 116, 4, 2, 84, 86, 1362, 1373, 101, 101, 86, 101, 99, 116, 111, 114, 59, 1, 10591, 101, 99, 116, 111, 114, 4, 2, 59, 66, 1384, 1386, 1, 8641, 97, 114, 59, 1, 10583, 101, 101, 4, 2, 59, 65, 1399, 1401, 1, 8868, 114, 114, 111, 119, 59, 1, 8615, 114, 114, 111, 119, 59, 1, 8659, 4, 2, 99, 116, 1421, 1426, 114, 59, 3, 55349, 56479, 114, 111, 107, 59, 1, 272, 4, 16, 78, 84, 97, 99, 100, 102, 103, 108, 109, 111, 112, 113, 115, 116, 117, 120, 1466, 1470, 1478, 1489, 1515, 1520, 1525, 1536, 1544, 1593, 1609, 1617, 1650, 1664, 1668, 1677, 71, 59, 1, 330, 72, 5, 208, 1, 59, 1476, 1, 208, 99, 117, 116, 101, 5, 201, 1, 59, 1487, 1, 201, 4, 3, 97, 105, 121, 1497, 1503, 1512, 114, 111, 110, 59, 1, 282, 114, 99, 5, 202, 1, 59, 1510, 1, 202, 59, 1, 1069, 111, 116, 59, 1, 278, 114, 59, 3, 55349, 56584, 114, 97, 118, 101, 5, 200, 1, 59, 1534, 1, 200, 101, 109, 101, 110, 116, 59, 1, 8712, 4, 2, 97, 112, 1550, 1555, 99, 114, 59, 1, 274, 116, 121, 4, 2, 83, 86, 1563, 1576, 109, 97, 108, 108, 83, 113, 117, 97, 114, 101, 59, 1, 9723, 101, 114, 121, 83, 109, 97, 108, 108, 83, 113, 117, 97, 114, 101, 59, 1, 9643, 4, 2, 103, 112, 1599, 1604, 111, 110, 59, 1, 280, 102, 59, 3, 55349, 56636, 115, 105, 108, 111, 110, 59, 1, 917, 117, 4, 2, 97, 105, 1624, 1640, 108, 4, 2, 59, 84, 1631, 1633, 1, 10869, 105, 108, 100, 101, 59, 1, 8770, 108, 105, 98, 114, 105, 117, 109, 59, 1, 8652, 4, 2, 99, 105, 1656, 1660, 114, 59, 1, 8496, 109, 59, 1, 10867, 97, 59, 1, 919, 109, 108, 5, 203, 1, 59, 1675, 1, 203, 4, 2, 105, 112, 1683, 1689, 115, 116, 115, 59, 1, 8707, 111, 110, 101, 110, 116, 105, 97, 108, 69, 59, 1, 8519, 4, 5, 99, 102, 105, 111, 115, 1713, 1717, 1722, 1762, 1791, 121, 59, 1, 1060, 114, 59, 3, 55349, 56585, 108, 108, 101, 100, 4, 2, 83, 86, 1732, 1745, 109, 97, 108, 108, 83, 113, 117, 97, 114, 101, 59, 1, 9724, 101, 114, 121, 83, 109, 97, 108, 108, 83, 113, 117, 97, 114, 101, 59, 1, 9642, 4, 3, 112, 114, 117, 1770, 1775, 1781, 102, 59, 3, 55349, 56637, 65, 108, 108, 59, 1, 8704, 114, 105, 101, 114, 116, 114, 102, 59, 1, 8497, 99, 114, 59, 1, 8497, 4, 12, 74, 84, 97, 98, 99, 100, 102, 103, 111, 114, 115, 116, 1822, 1827, 1834, 1848, 1855, 1877, 1882, 1887, 1890, 1896, 1978, 1984, 99, 121, 59, 1, 1027, 5, 62, 1, 59, 1832, 1, 62, 109, 109, 97, 4, 2, 59, 100, 1843, 1845, 1, 915, 59, 1, 988, 114, 101, 118, 101, 59, 1, 286, 4, 3, 101, 105, 121, 1863, 1869, 1874, 100, 105, 108, 59, 1, 290, 114, 99, 59, 1, 284, 59, 1, 1043, 111, 116, 59, 1, 288, 114, 59, 3, 55349, 56586, 59, 1, 8921, 112, 102, 59, 3, 55349, 56638, 101, 97, 116, 101, 114, 4, 6, 69, 70, 71, 76, 83, 84, 1915, 1933, 1944, 1953, 1959, 1971, 113, 117, 97, 108, 4, 2, 59, 76, 1925, 1927, 1, 8805, 101, 115, 115, 59, 1, 8923, 117, 108, 108, 69, 113, 117, 97, 108, 59, 1, 8807, 114, 101, 97, 116, 101, 114, 59, 1, 10914, 101, 115, 115, 59, 1, 8823, 108, 97, 110, 116, 69, 113, 117, 97, 108, 59, 1, 10878, 105, 108, 100, 101, 59, 1, 8819, 99, 114, 59, 3, 55349, 56482, 59, 1, 8811, 4, 8, 65, 97, 99, 102, 105, 111, 115, 117, 2005, 2012, 2026, 2032, 2036, 2049, 2073, 2089, 82, 68, 99, 121, 59, 1, 1066, 4, 2, 99, 116, 2018, 2023, 101, 107, 59, 1, 711, 59, 1, 94, 105, 114, 99, 59, 1, 292, 114, 59, 1, 8460, 108, 98, 101, 114, 116, 83, 112, 97, 99, 101, 59, 1, 8459, 4, 2, 112, 114, 2055, 2059, 102, 59, 1, 8461, 105, 122, 111, 110, 116, 97, 108, 76, 105, 110, 101, 59, 1, 9472, 4, 2, 99, 116, 2079, 2083, 114, 59, 1, 8459, 114, 111, 107, 59, 1, 294, 109, 112, 4, 2, 68, 69, 2097, 2107, 111, 119, 110, 72, 117, 109, 112, 59, 1, 8782, 113, 117, 97, 108, 59, 1, 8783, 4, 14, 69, 74, 79, 97, 99, 100, 102, 103, 109, 110, 111, 115, 116, 117, 2144, 2149, 2155, 2160, 2171, 2189, 2194, 2198, 2209, 2245, 2307, 2329, 2334, 2341, 99, 121, 59, 1, 1045, 108, 105, 103, 59, 1, 306, 99, 121, 59, 1, 1025, 99, 117, 116, 101, 5, 205, 1, 59, 2169, 1, 205, 4, 2, 105, 121, 2177, 2186, 114, 99, 5, 206, 1, 59, 2184, 1, 206, 59, 1, 1048, 111, 116, 59, 1, 304, 114, 59, 1, 8465, 114, 97, 118, 101, 5, 204, 1, 59, 2207, 1, 204, 4, 3, 59, 97, 112, 2217, 2219, 2238, 1, 8465, 4, 2, 99, 103, 2225, 2229, 114, 59, 1, 298, 105, 110, 97, 114, 121, 73, 59, 1, 8520, 108, 105, 101, 115, 59, 1, 8658, 4, 2, 116, 118, 2251, 2281, 4, 2, 59, 101, 2257, 2259, 1, 8748, 4, 2, 103, 114, 2265, 2271, 114, 97, 108, 59, 1, 8747, 115, 101, 99, 116, 105, 111, 110, 59, 1, 8898, 105, 115, 105, 98, 108, 101, 4, 2, 67, 84, 2293, 2300, 111, 109, 109, 97, 59, 1, 8291, 105, 109, 101, 115, 59, 1, 8290, 4, 3, 103, 112, 116, 2315, 2320, 2325, 111, 110, 59, 1, 302, 102, 59, 3, 55349, 56640, 97, 59, 1, 921, 99, 114, 59, 1, 8464, 105, 108, 100, 101, 59, 1, 296, 4, 2, 107, 109, 2347, 2352, 99, 121, 59, 1, 1030, 108, 5, 207, 1, 59, 2358, 1, 207, 4, 5, 99, 102, 111, 115, 117, 2372, 2386, 2391, 2397, 2414, 4, 2, 105, 121, 2378, 2383, 114, 99, 59, 1, 308, 59, 1, 1049, 114, 59, 3, 55349, 56589, 112, 102, 59, 3, 55349, 56641, 4, 2, 99, 101, 2403, 2408, 114, 59, 3, 55349, 56485, 114, 99, 121, 59, 1, 1032, 107, 99, 121, 59, 1, 1028, 4, 7, 72, 74, 97, 99, 102, 111, 115, 2436, 2441, 2446, 2452, 2467, 2472, 2478, 99, 121, 59, 1, 1061, 99, 121, 59, 1, 1036, 112, 112, 97, 59, 1, 922, 4, 2, 101, 121, 2458, 2464, 100, 105, 108, 59, 1, 310, 59, 1, 1050, 114, 59, 3, 55349, 56590, 112, 102, 59, 3, 55349, 56642, 99, 114, 59, 3, 55349, 56486, 4, 11, 74, 84, 97, 99, 101, 102, 108, 109, 111, 115, 116, 2508, 2513, 2520, 2562, 2585, 2981, 2986, 3004, 3011, 3146, 3167, 99, 121, 59, 1, 1033, 5, 60, 1, 59, 2518, 1, 60, 4, 5, 99, 109, 110, 112, 114, 2532, 2538, 2544, 2548, 2558, 117, 116, 101, 59, 1, 313, 98, 100, 97, 59, 1, 923, 103, 59, 1, 10218, 108, 97, 99, 101, 116, 114, 102, 59, 1, 8466, 114, 59, 1, 8606, 4, 3, 97, 101, 121, 2570, 2576, 2582, 114, 111, 110, 59, 1, 317, 100, 105, 108, 59, 1, 315, 59, 1, 1051, 4, 2, 102, 115, 2591, 2907, 116, 4, 10, 65, 67, 68, 70, 82, 84, 85, 86, 97, 114, 2614, 2663, 2672, 2728, 2735, 2760, 2820, 2870, 2888, 2895, 4, 2, 110, 114, 2620, 2633, 103, 108, 101, 66, 114, 97, 99, 107, 101, 116, 59, 1, 10216, 114, 111, 119, 4, 3, 59, 66, 82, 2644, 2646, 2651, 1, 8592, 97, 114, 59, 1, 8676, 105, 103, 104, 116, 65, 114, 114, 111, 119, 59, 1, 8646, 101, 105, 108, 105, 110, 103, 59, 1, 8968, 111, 4, 2, 117, 119, 2679, 2692, 98, 108, 101, 66, 114, 97, 99, 107, 101, 116, 59, 1, 10214, 110, 4, 2, 84, 86, 2699, 2710, 101, 101, 86, 101, 99, 116, 111, 114, 59, 1, 10593, 101, 99, 116, 111, 114, 4, 2, 59, 66, 2721, 2723, 1, 8643, 97, 114, 59, 1, 10585, 108, 111, 111, 114, 59, 1, 8970, 105, 103, 104, 116, 4, 2, 65, 86, 2745, 2752, 114, 114, 111, 119, 59, 1, 8596, 101, 99, 116, 111, 114, 59, 1, 10574, 4, 2, 101, 114, 2766, 2792, 101, 4, 3, 59, 65, 86, 2775, 2777, 2784, 1, 8867, 114, 114, 111, 119, 59, 1, 8612, 101, 99, 116, 111, 114, 59, 1, 10586, 105, 97, 110, 103, 108, 101, 4, 3, 59, 66, 69, 2806, 2808, 2813, 1, 8882, 97, 114, 59, 1, 10703, 113, 117, 97, 108, 59, 1, 8884, 112, 4, 3, 68, 84, 86, 2829, 2841, 2852, 111, 119, 110, 86, 101, 99, 116, 111, 114, 59, 1, 10577, 101, 101, 86, 101, 99, 116, 111, 114, 59, 1, 10592, 101, 99, 116, 111, 114, 4, 2, 59, 66, 2863, 2865, 1, 8639, 97, 114, 59, 1, 10584, 101, 99, 116, 111, 114, 4, 2, 59, 66, 2881, 2883, 1, 8636, 97, 114, 59, 1, 10578, 114, 114, 111, 119, 59, 1, 8656, 105, 103, 104, 116, 97, 114, 114, 111, 119, 59, 1, 8660, 115, 4, 6, 69, 70, 71, 76, 83, 84, 2922, 2936, 2947, 2956, 2962, 2974, 113, 117, 97, 108, 71, 114, 101, 97, 116, 101, 114, 59, 1, 8922, 117, 108, 108, 69, 113, 117, 97, 108, 59, 1, 8806, 114, 101, 97, 116, 101, 114, 59, 1, 8822, 101, 115, 115, 59, 1, 10913, 108, 97, 110, 116, 69, 113, 117, 97, 108, 59, 1, 10877, 105, 108, 100, 101, 59, 1, 8818, 114, 59, 3, 55349, 56591, 4, 2, 59, 101, 2992, 2994, 1, 8920, 102, 116, 97, 114, 114, 111, 119, 59, 1, 8666, 105, 100, 111, 116, 59, 1, 319, 4, 3, 110, 112, 119, 3019, 3110, 3115, 103, 4, 4, 76, 82, 108, 114, 3030, 3058, 3070, 3098, 101, 102, 116, 4, 2, 65, 82, 3039, 3046, 114, 114, 111, 119, 59, 1, 10229, 105, 103, 104, 116, 65, 114, 114, 111, 119, 59, 1, 10231, 105, 103, 104, 116, 65, 114, 114, 111, 119, 59, 1, 10230, 101, 102, 116, 4, 2, 97, 114, 3079, 3086, 114, 114, 111, 119, 59, 1, 10232, 105, 103, 104, 116, 97, 114, 114, 111, 119, 59, 1, 10234, 105, 103, 104, 116, 97, 114, 114, 111, 119, 59, 1, 10233, 102, 59, 3, 55349, 56643, 101, 114, 4, 2, 76, 82, 3123, 3134, 101, 102, 116, 65, 114, 114, 111, 119, 59, 1, 8601, 105, 103, 104, 116, 65, 114, 114, 111, 119, 59, 1, 8600, 4, 3, 99, 104, 116, 3154, 3158, 3161, 114, 59, 1, 8466, 59, 1, 8624, 114, 111, 107, 59, 1, 321, 59, 1, 8810, 4, 8, 97, 99, 101, 102, 105, 111, 115, 117, 3188, 3192, 3196, 3222, 3227, 3237, 3243, 3248, 112, 59, 1, 10501, 121, 59, 1, 1052, 4, 2, 100, 108, 3202, 3213, 105, 117, 109, 83, 112, 97, 99, 101, 59, 1, 8287, 108, 105, 110, 116, 114, 102, 59, 1, 8499, 114, 59, 3, 55349, 56592, 110, 117, 115, 80, 108, 117, 115, 59, 1, 8723, 112, 102, 59, 3, 55349, 56644, 99, 114, 59, 1, 8499, 59, 1, 924, 4, 9, 74, 97, 99, 101, 102, 111, 115, 116, 117, 3271, 3276, 3283, 3306, 3422, 3427, 4120, 4126, 4137, 99, 121, 59, 1, 1034, 99, 117, 116, 101, 59, 1, 323, 4, 3, 97, 101, 121, 3291, 3297, 3303, 114, 111, 110, 59, 1, 327, 100, 105, 108, 59, 1, 325, 59, 1, 1053, 4, 3, 103, 115, 119, 3314, 3380, 3415, 97, 116, 105, 118, 101, 4, 3, 77, 84, 86, 3327, 3340, 3365, 101, 100, 105, 117, 109, 83, 112, 97, 99, 101, 59, 1, 8203, 104, 105, 4, 2, 99, 110, 3348, 3357, 107, 83, 112, 97, 99, 101, 59, 1, 8203, 83, 112, 97, 99, 101, 59, 1, 8203, 101, 114, 121, 84, 104, 105, 110, 83, 112, 97, 99, 101, 59, 1, 8203, 116, 101, 100, 4, 2, 71, 76, 3389, 3405, 114, 101, 97, 116, 101, 114, 71, 114, 101, 97, 116, 101, 114, 59, 1, 8811, 101, 115, 115, 76, 101, 115, 115, 59, 1, 8810, 76, 105, 110, 101, 59, 1, 10, 114, 59, 3, 55349, 56593, 4, 4, 66, 110, 112, 116, 3437, 3444, 3460, 3464, 114, 101, 97, 107, 59, 1, 8288, 66, 114, 101, 97, 107, 105, 110, 103, 83, 112, 97, 99, 101, 59, 1, 160, 102, 59, 1, 8469, 4, 13, 59, 67, 68, 69, 71, 72, 76, 78, 80, 82, 83, 84, 86, 3492, 3494, 3517, 3536, 3578, 3657, 3685, 3784, 3823, 3860, 3915, 4066, 4107, 1, 10988, 4, 2, 111, 117, 3500, 3510, 110, 103, 114, 117, 101, 110, 116, 59, 1, 8802, 112, 67, 97, 112, 59, 1, 8813, 111, 117, 98, 108, 101, 86, 101, 114, 116, 105, 99, 97, 108, 66, 97, 114, 59, 1, 8742, 4, 3, 108, 113, 120, 3544, 3552, 3571, 101, 109, 101, 110, 116, 59, 1, 8713, 117, 97, 108, 4, 2, 59, 84, 3561, 3563, 1, 8800, 105, 108, 100, 101, 59, 3, 8770, 824, 105, 115, 116, 115, 59, 1, 8708, 114, 101, 97, 116, 101, 114, 4, 7, 59, 69, 70, 71, 76, 83, 84, 3600, 3602, 3609, 3621, 3631, 3637, 3650, 1, 8815, 113, 117, 97, 108, 59, 1, 8817, 117, 108, 108, 69, 113, 117, 97, 108, 59, 3, 8807, 824, 114, 101, 97, 116, 101, 114, 59, 3, 8811, 824, 101, 115, 115, 59, 1, 8825, 108, 97, 110, 116, 69, 113, 117, 97, 108, 59, 3, 10878, 824, 105, 108, 100, 101, 59, 1, 8821, 117, 109, 112, 4, 2, 68, 69, 3666, 3677, 111, 119, 110, 72, 117, 109, 112, 59, 3, 8782, 824, 113, 117, 97, 108, 59, 3, 8783, 824, 101, 4, 2, 102, 115, 3692, 3724, 116, 84, 114, 105, 97, 110, 103, 108, 101, 4, 3, 59, 66, 69, 3709, 3711, 3717, 1, 8938, 97, 114, 59, 3, 10703, 824, 113, 117, 97, 108, 59, 1, 8940, 115, 4, 6, 59, 69, 71, 76, 83, 84, 3739, 3741, 3748, 3757, 3764, 3777, 1, 8814, 113, 117, 97, 108, 59, 1, 8816, 114, 101, 97, 116, 101, 114, 59, 1, 8824, 101, 115, 115, 59, 3, 8810, 824, 108, 97, 110, 116, 69, 113, 117, 97, 108, 59, 3, 10877, 824, 105, 108, 100, 101, 59, 1, 8820, 101, 115, 116, 101, 100, 4, 2, 71, 76, 3795, 3812, 114, 101, 97, 116, 101, 114, 71, 114, 101, 97, 116, 101, 114, 59, 3, 10914, 824, 101, 115, 115, 76, 101, 115, 115, 59, 3, 10913, 824, 114, 101, 99, 101, 100, 101, 115, 4, 3, 59, 69, 83, 3838, 3840, 3848, 1, 8832, 113, 117, 97, 108, 59, 3, 10927, 824, 108, 97, 110, 116, 69, 113, 117, 97, 108, 59, 1, 8928, 4, 2, 101, 105, 3866, 3881, 118, 101, 114, 115, 101, 69, 108, 101, 109, 101, 110, 116, 59, 1, 8716, 103, 104, 116, 84, 114, 105, 97, 110, 103, 108, 101, 4, 3, 59, 66, 69, 3900, 3902, 3908, 1, 8939, 97, 114, 59, 3, 10704, 824, 113, 117, 97, 108, 59, 1, 8941, 4, 2, 113, 117, 3921, 3973, 117, 97, 114, 101, 83, 117, 4, 2, 98, 112, 3933, 3952, 115, 101, 116, 4, 2, 59, 69, 3942, 3945, 3, 8847, 824, 113, 117, 97, 108, 59, 1, 8930, 101, 114, 115, 101, 116, 4, 2, 59, 69, 3963, 3966, 3, 8848, 824, 113, 117, 97, 108, 59, 1, 8931, 4, 3, 98, 99, 112, 3981, 4e3, 4045, 115, 101, 116, 4, 2, 59, 69, 3990, 3993, 3, 8834, 8402, 113, 117, 97, 108, 59, 1, 8840, 99, 101, 101, 100, 115, 4, 4, 59, 69, 83, 84, 4015, 4017, 4025, 4037, 1, 8833, 113, 117, 97, 108, 59, 3, 10928, 824, 108, 97, 110, 116, 69, 113, 117, 97, 108, 59, 1, 8929, 105, 108, 100, 101, 59, 3, 8831, 824, 101, 114, 115, 101, 116, 4, 2, 59, 69, 4056, 4059, 3, 8835, 8402, 113, 117, 97, 108, 59, 1, 8841, 105, 108, 100, 101, 4, 4, 59, 69, 70, 84, 4080, 4082, 4089, 4100, 1, 8769, 113, 117, 97, 108, 59, 1, 8772, 117, 108, 108, 69, 113, 117, 97, 108, 59, 1, 8775, 105, 108, 100, 101, 59, 1, 8777, 101, 114, 116, 105, 99, 97, 108, 66, 97, 114, 59, 1, 8740, 99, 114, 59, 3, 55349, 56489, 105, 108, 100, 101, 5, 209, 1, 59, 4135, 1, 209, 59, 1, 925, 4, 14, 69, 97, 99, 100, 102, 103, 109, 111, 112, 114, 115, 116, 117, 118, 4170, 4176, 4187, 4205, 4212, 4217, 4228, 4253, 4259, 4292, 4295, 4316, 4337, 4346, 108, 105, 103, 59, 1, 338, 99, 117, 116, 101, 5, 211, 1, 59, 4185, 1, 211, 4, 2, 105, 121, 4193, 4202, 114, 99, 5, 212, 1, 59, 4200, 1, 212, 59, 1, 1054, 98, 108, 97, 99, 59, 1, 336, 114, 59, 3, 55349, 56594, 114, 97, 118, 101, 5, 210, 1, 59, 4226, 1, 210, 4, 3, 97, 101, 105, 4236, 4241, 4246, 99, 114, 59, 1, 332, 103, 97, 59, 1, 937, 99, 114, 111, 110, 59, 1, 927, 112, 102, 59, 3, 55349, 56646, 101, 110, 67, 117, 114, 108, 121, 4, 2, 68, 81, 4272, 4285, 111, 117, 98, 108, 101, 81, 117, 111, 116, 101, 59, 1, 8220, 117, 111, 116, 101, 59, 1, 8216, 59, 1, 10836, 4, 2, 99, 108, 4301, 4306, 114, 59, 3, 55349, 56490, 97, 115, 104, 5, 216, 1, 59, 4314, 1, 216, 105, 4, 2, 108, 109, 4323, 4332, 100, 101, 5, 213, 1, 59, 4330, 1, 213, 101, 115, 59, 1, 10807, 109, 108, 5, 214, 1, 59, 4344, 1, 214, 101, 114, 4, 2, 66, 80, 4354, 4380, 4, 2, 97, 114, 4360, 4364, 114, 59, 1, 8254, 97, 99, 4, 2, 101, 107, 4372, 4375, 59, 1, 9182, 101, 116, 59, 1, 9140, 97, 114, 101, 110, 116, 104, 101, 115, 105, 115, 59, 1, 9180, 4, 9, 97, 99, 102, 104, 105, 108, 111, 114, 115, 4413, 4422, 4426, 4431, 4435, 4438, 4448, 4471, 4561, 114, 116, 105, 97, 108, 68, 59, 1, 8706, 121, 59, 1, 1055, 114, 59, 3, 55349, 56595, 105, 59, 1, 934, 59, 1, 928, 117, 115, 77, 105, 110, 117, 115, 59, 1, 177, 4, 2, 105, 112, 4454, 4467, 110, 99, 97, 114, 101, 112, 108, 97, 110, 101, 59, 1, 8460, 102, 59, 1, 8473, 4, 4, 59, 101, 105, 111, 4481, 4483, 4526, 4531, 1, 10939, 99, 101, 100, 101, 115, 4, 4, 59, 69, 83, 84, 4498, 4500, 4507, 4519, 1, 8826, 113, 117, 97, 108, 59, 1, 10927, 108, 97, 110, 116, 69, 113, 117, 97, 108, 59, 1, 8828, 105, 108, 100, 101, 59, 1, 8830, 109, 101, 59, 1, 8243, 4, 2, 100, 112, 4537, 4543, 117, 99, 116, 59, 1, 8719, 111, 114, 116, 105, 111, 110, 4, 2, 59, 97, 4555, 4557, 1, 8759, 108, 59, 1, 8733, 4, 2, 99, 105, 4567, 4572, 114, 59, 3, 55349, 56491, 59, 1, 936, 4, 4, 85, 102, 111, 115, 4585, 4594, 4599, 4604, 79, 84, 5, 34, 1, 59, 4592, 1, 34, 114, 59, 3, 55349, 56596, 112, 102, 59, 1, 8474, 99, 114, 59, 3, 55349, 56492, 4, 12, 66, 69, 97, 99, 101, 102, 104, 105, 111, 114, 115, 117, 4636, 4642, 4650, 4681, 4704, 4763, 4767, 4771, 5047, 5069, 5081, 5094, 97, 114, 114, 59, 1, 10512, 71, 5, 174, 1, 59, 4648, 1, 174, 4, 3, 99, 110, 114, 4658, 4664, 4668, 117, 116, 101, 59, 1, 340, 103, 59, 1, 10219, 114, 4, 2, 59, 116, 4675, 4677, 1, 8608, 108, 59, 1, 10518, 4, 3, 97, 101, 121, 4689, 4695, 4701, 114, 111, 110, 59, 1, 344, 100, 105, 108, 59, 1, 342, 59, 1, 1056, 4, 2, 59, 118, 4710, 4712, 1, 8476, 101, 114, 115, 101, 4, 2, 69, 85, 4722, 4748, 4, 2, 108, 113, 4728, 4736, 101, 109, 101, 110, 116, 59, 1, 8715, 117, 105, 108, 105, 98, 114, 105, 117, 109, 59, 1, 8651, 112, 69, 113, 117, 105, 108, 105, 98, 114, 105, 117, 109, 59, 1, 10607, 114, 59, 1, 8476, 111, 59, 1, 929, 103, 104, 116, 4, 8, 65, 67, 68, 70, 84, 85, 86, 97, 4792, 4840, 4849, 4905, 4912, 4972, 5022, 5040, 4, 2, 110, 114, 4798, 4811, 103, 108, 101, 66, 114, 97, 99, 107, 101, 116, 59, 1, 10217, 114, 111, 119, 4, 3, 59, 66, 76, 4822, 4824, 4829, 1, 8594, 97, 114, 59, 1, 8677, 101, 102, 116, 65, 114, 114, 111, 119, 59, 1, 8644, 101, 105, 108, 105, 110, 103, 59, 1, 8969, 111, 4, 2, 117, 119, 4856, 4869, 98, 108, 101, 66, 114, 97, 99, 107, 101, 116, 59, 1, 10215, 110, 4, 2, 84, 86, 4876, 4887, 101, 101, 86, 101, 99, 116, 111, 114, 59, 1, 10589, 101, 99, 116, 111, 114, 4, 2, 59, 66, 4898, 4900, 1, 8642, 97, 114, 59, 1, 10581, 108, 111, 111, 114, 59, 1, 8971, 4, 2, 101, 114, 4918, 4944, 101, 4, 3, 59, 65, 86, 4927, 4929, 4936, 1, 8866, 114, 114, 111, 119, 59, 1, 8614, 101, 99, 116, 111, 114, 59, 1, 10587, 105, 97, 110, 103, 108, 101, 4, 3, 59, 66, 69, 4958, 4960, 4965, 1, 8883, 97, 114, 59, 1, 10704, 113, 117, 97, 108, 59, 1, 8885, 112, 4, 3, 68, 84, 86, 4981, 4993, 5004, 111, 119, 110, 86, 101, 99, 116, 111, 114, 59, 1, 10575, 101, 101, 86, 101, 99, 116, 111, 114, 59, 1, 10588, 101, 99, 116, 111, 114, 4, 2, 59, 66, 5015, 5017, 1, 8638, 97, 114, 59, 1, 10580, 101, 99, 116, 111, 114, 4, 2, 59, 66, 5033, 5035, 1, 8640, 97, 114, 59, 1, 10579, 114, 114, 111, 119, 59, 1, 8658, 4, 2, 112, 117, 5053, 5057, 102, 59, 1, 8477, 110, 100, 73, 109, 112, 108, 105, 101, 115, 59, 1, 10608, 105, 103, 104, 116, 97, 114, 114, 111, 119, 59, 1, 8667, 4, 2, 99, 104, 5087, 5091, 114, 59, 1, 8475, 59, 1, 8625, 108, 101, 68, 101, 108, 97, 121, 101, 100, 59, 1, 10740, 4, 13, 72, 79, 97, 99, 102, 104, 105, 109, 111, 113, 115, 116, 117, 5134, 5150, 5157, 5164, 5198, 5203, 5259, 5265, 5277, 5283, 5374, 5380, 5385, 4, 2, 67, 99, 5140, 5146, 72, 99, 121, 59, 1, 1065, 121, 59, 1, 1064, 70, 84, 99, 121, 59, 1, 1068, 99, 117, 116, 101, 59, 1, 346, 4, 5, 59, 97, 101, 105, 121, 5176, 5178, 5184, 5190, 5195, 1, 10940, 114, 111, 110, 59, 1, 352, 100, 105, 108, 59, 1, 350, 114, 99, 59, 1, 348, 59, 1, 1057, 114, 59, 3, 55349, 56598, 111, 114, 116, 4, 4, 68, 76, 82, 85, 5216, 5227, 5238, 5250, 111, 119, 110, 65, 114, 114, 111, 119, 59, 1, 8595, 101, 102, 116, 65, 114, 114, 111, 119, 59, 1, 8592, 105, 103, 104, 116, 65, 114, 114, 111, 119, 59, 1, 8594, 112, 65, 114, 114, 111, 119, 59, 1, 8593, 103, 109, 97, 59, 1, 931, 97, 108, 108, 67, 105, 114, 99, 108, 101, 59, 1, 8728, 112, 102, 59, 3, 55349, 56650, 4, 2, 114, 117, 5289, 5293, 116, 59, 1, 8730, 97, 114, 101, 4, 4, 59, 73, 83, 85, 5306, 5308, 5322, 5367, 1, 9633, 110, 116, 101, 114, 115, 101, 99, 116, 105, 111, 110, 59, 1, 8851, 117, 4, 2, 98, 112, 5329, 5347, 115, 101, 116, 4, 2, 59, 69, 5338, 5340, 1, 8847, 113, 117, 97, 108, 59, 1, 8849, 101, 114, 115, 101, 116, 4, 2, 59, 69, 5358, 5360, 1, 8848, 113, 117, 97, 108, 59, 1, 8850, 110, 105, 111, 110, 59, 1, 8852, 99, 114, 59, 3, 55349, 56494, 97, 114, 59, 1, 8902, 4, 4, 98, 99, 109, 112, 5395, 5420, 5475, 5478, 4, 2, 59, 115, 5401, 5403, 1, 8912, 101, 116, 4, 2, 59, 69, 5411, 5413, 1, 8912, 113, 117, 97, 108, 59, 1, 8838, 4, 2, 99, 104, 5426, 5468, 101, 101, 100, 115, 4, 4, 59, 69, 83, 84, 5440, 5442, 5449, 5461, 1, 8827, 113, 117, 97, 108, 59, 1, 10928, 108, 97, 110, 116, 69, 113, 117, 97, 108, 59, 1, 8829, 105, 108, 100, 101, 59, 1, 8831, 84, 104, 97, 116, 59, 1, 8715, 59, 1, 8721, 4, 3, 59, 101, 115, 5486, 5488, 5507, 1, 8913, 114, 115, 101, 116, 4, 2, 59, 69, 5498, 5500, 1, 8835, 113, 117, 97, 108, 59, 1, 8839, 101, 116, 59, 1, 8913, 4, 11, 72, 82, 83, 97, 99, 102, 104, 105, 111, 114, 115, 5536, 5546, 5552, 5567, 5579, 5602, 5607, 5655, 5695, 5701, 5711, 79, 82, 78, 5, 222, 1, 59, 5544, 1, 222, 65, 68, 69, 59, 1, 8482, 4, 2, 72, 99, 5558, 5563, 99, 121, 59, 1, 1035, 121, 59, 1, 1062, 4, 2, 98, 117, 5573, 5576, 59, 1, 9, 59, 1, 932, 4, 3, 97, 101, 121, 5587, 5593, 5599, 114, 111, 110, 59, 1, 356, 100, 105, 108, 59, 1, 354, 59, 1, 1058, 114, 59, 3, 55349, 56599, 4, 2, 101, 105, 5613, 5631, 4, 2, 114, 116, 5619, 5627, 101, 102, 111, 114, 101, 59, 1, 8756, 97, 59, 1, 920, 4, 2, 99, 110, 5637, 5647, 107, 83, 112, 97, 99, 101, 59, 3, 8287, 8202, 83, 112, 97, 99, 101, 59, 1, 8201, 108, 100, 101, 4, 4, 59, 69, 70, 84, 5668, 5670, 5677, 5688, 1, 8764, 113, 117, 97, 108, 59, 1, 8771, 117, 108, 108, 69, 113, 117, 97, 108, 59, 1, 8773, 105, 108, 100, 101, 59, 1, 8776, 112, 102, 59, 3, 55349, 56651, 105, 112, 108, 101, 68, 111, 116, 59, 1, 8411, 4, 2, 99, 116, 5717, 5722, 114, 59, 3, 55349, 56495, 114, 111, 107, 59, 1, 358, 4, 14, 97, 98, 99, 100, 102, 103, 109, 110, 111, 112, 114, 115, 116, 117, 5758, 5789, 5805, 5823, 5830, 5835, 5846, 5852, 5921, 5937, 6089, 6095, 6101, 6108, 4, 2, 99, 114, 5764, 5774, 117, 116, 101, 5, 218, 1, 59, 5772, 1, 218, 114, 4, 2, 59, 111, 5781, 5783, 1, 8607, 99, 105, 114, 59, 1, 10569, 114, 4, 2, 99, 101, 5796, 5800, 121, 59, 1, 1038, 118, 101, 59, 1, 364, 4, 2, 105, 121, 5811, 5820, 114, 99, 5, 219, 1, 59, 5818, 1, 219, 59, 1, 1059, 98, 108, 97, 99, 59, 1, 368, 114, 59, 3, 55349, 56600, 114, 97, 118, 101, 5, 217, 1, 59, 5844, 1, 217, 97, 99, 114, 59, 1, 362, 4, 2, 100, 105, 5858, 5905, 101, 114, 4, 2, 66, 80, 5866, 5892, 4, 2, 97, 114, 5872, 5876, 114, 59, 1, 95, 97, 99, 4, 2, 101, 107, 5884, 5887, 59, 1, 9183, 101, 116, 59, 1, 9141, 97, 114, 101, 110, 116, 104, 101, 115, 105, 115, 59, 1, 9181, 111, 110, 4, 2, 59, 80, 5913, 5915, 1, 8899, 108, 117, 115, 59, 1, 8846, 4, 2, 103, 112, 5927, 5932, 111, 110, 59, 1, 370, 102, 59, 3, 55349, 56652, 4, 8, 65, 68, 69, 84, 97, 100, 112, 115, 5955, 5985, 5996, 6009, 6026, 6033, 6044, 6075, 114, 114, 111, 119, 4, 3, 59, 66, 68, 5967, 5969, 5974, 1, 8593, 97, 114, 59, 1, 10514, 111, 119, 110, 65, 114, 114, 111, 119, 59, 1, 8645, 111, 119, 110, 65, 114, 114, 111, 119, 59, 1, 8597, 113, 117, 105, 108, 105, 98, 114, 105, 117, 109, 59, 1, 10606, 101, 101, 4, 2, 59, 65, 6017, 6019, 1, 8869, 114, 114, 111, 119, 59, 1, 8613, 114, 114, 111, 119, 59, 1, 8657, 111, 119, 110, 97, 114, 114, 111, 119, 59, 1, 8661, 101, 114, 4, 2, 76, 82, 6052, 6063, 101, 102, 116, 65, 114, 114, 111, 119, 59, 1, 8598, 105, 103, 104, 116, 65, 114, 114, 111, 119, 59, 1, 8599, 105, 4, 2, 59, 108, 6082, 6084, 1, 978, 111, 110, 59, 1, 933, 105, 110, 103, 59, 1, 366, 99, 114, 59, 3, 55349, 56496, 105, 108, 100, 101, 59, 1, 360, 109, 108, 5, 220, 1, 59, 6115, 1, 220, 4, 9, 68, 98, 99, 100, 101, 102, 111, 115, 118, 6137, 6143, 6148, 6152, 6166, 6250, 6255, 6261, 6267, 97, 115, 104, 59, 1, 8875, 97, 114, 59, 1, 10987, 121, 59, 1, 1042, 97, 115, 104, 4, 2, 59, 108, 6161, 6163, 1, 8873, 59, 1, 10982, 4, 2, 101, 114, 6172, 6175, 59, 1, 8897, 4, 3, 98, 116, 121, 6183, 6188, 6238, 97, 114, 59, 1, 8214, 4, 2, 59, 105, 6194, 6196, 1, 8214, 99, 97, 108, 4, 4, 66, 76, 83, 84, 6209, 6214, 6220, 6231, 97, 114, 59, 1, 8739, 105, 110, 101, 59, 1, 124, 101, 112, 97, 114, 97, 116, 111, 114, 59, 1, 10072, 105, 108, 100, 101, 59, 1, 8768, 84, 104, 105, 110, 83, 112, 97, 99, 101, 59, 1, 8202, 114, 59, 3, 55349, 56601, 112, 102, 59, 3, 55349, 56653, 99, 114, 59, 3, 55349, 56497, 100, 97, 115, 104, 59, 1, 8874, 4, 5, 99, 101, 102, 111, 115, 6286, 6292, 6298, 6303, 6309, 105, 114, 99, 59, 1, 372, 100, 103, 101, 59, 1, 8896, 114, 59, 3, 55349, 56602, 112, 102, 59, 3, 55349, 56654, 99, 114, 59, 3, 55349, 56498, 4, 4, 102, 105, 111, 115, 6325, 6330, 6333, 6339, 114, 59, 3, 55349, 56603, 59, 1, 926, 112, 102, 59, 3, 55349, 56655, 99, 114, 59, 3, 55349, 56499, 4, 9, 65, 73, 85, 97, 99, 102, 111, 115, 117, 6365, 6370, 6375, 6380, 6391, 6405, 6410, 6416, 6422, 99, 121, 59, 1, 1071, 99, 121, 59, 1, 1031, 99, 121, 59, 1, 1070, 99, 117, 116, 101, 5, 221, 1, 59, 6389, 1, 221, 4, 2, 105, 121, 6397, 6402, 114, 99, 59, 1, 374, 59, 1, 1067, 114, 59, 3, 55349, 56604, 112, 102, 59, 3, 55349, 56656, 99, 114, 59, 3, 55349, 56500, 109, 108, 59, 1, 376, 4, 8, 72, 97, 99, 100, 101, 102, 111, 115, 6445, 6450, 6457, 6472, 6477, 6501, 6505, 6510, 99, 121, 59, 1, 1046, 99, 117, 116, 101, 59, 1, 377, 4, 2, 97, 121, 6463, 6469, 114, 111, 110, 59, 1, 381, 59, 1, 1047, 111, 116, 59, 1, 379, 4, 2, 114, 116, 6483, 6497, 111, 87, 105, 100, 116, 104, 83, 112, 97, 99, 101, 59, 1, 8203, 97, 59, 1, 918, 114, 59, 1, 8488, 112, 102, 59, 1, 8484, 99, 114, 59, 3, 55349, 56501, 4, 16, 97, 98, 99, 101, 102, 103, 108, 109, 110, 111, 112, 114, 115, 116, 117, 119, 6550, 6561, 6568, 6612, 6622, 6634, 6645, 6672, 6699, 6854, 6870, 6923, 6933, 6963, 6974, 6983, 99, 117, 116, 101, 5, 225, 1, 59, 6559, 1, 225, 114, 101, 118, 101, 59, 1, 259, 4, 6, 59, 69, 100, 105, 117, 121, 6582, 6584, 6588, 6591, 6600, 6609, 1, 8766, 59, 3, 8766, 819, 59, 1, 8767, 114, 99, 5, 226, 1, 59, 6598, 1, 226, 116, 101, 5, 180, 1, 59, 6607, 1, 180, 59, 1, 1072, 108, 105, 103, 5, 230, 1, 59, 6620, 1, 230, 4, 2, 59, 114, 6628, 6630, 1, 8289, 59, 3, 55349, 56606, 114, 97, 118, 101, 5, 224, 1, 59, 6643, 1, 224, 4, 2, 101, 112, 6651, 6667, 4, 2, 102, 112, 6657, 6663, 115, 121, 109, 59, 1, 8501, 104, 59, 1, 8501, 104, 97, 59, 1, 945, 4, 2, 97, 112, 6678, 6692, 4, 2, 99, 108, 6684, 6688, 114, 59, 1, 257, 103, 59, 1, 10815, 5, 38, 1, 59, 6697, 1, 38, 4, 2, 100, 103, 6705, 6737, 4, 5, 59, 97, 100, 115, 118, 6717, 6719, 6724, 6727, 6734, 1, 8743, 110, 100, 59, 1, 10837, 59, 1, 10844, 108, 111, 112, 101, 59, 1, 10840, 59, 1, 10842, 4, 7, 59, 101, 108, 109, 114, 115, 122, 6753, 6755, 6758, 6762, 6814, 6835, 6848, 1, 8736, 59, 1, 10660, 101, 59, 1, 8736, 115, 100, 4, 2, 59, 97, 6770, 6772, 1, 8737, 4, 8, 97, 98, 99, 100, 101, 102, 103, 104, 6790, 6793, 6796, 6799, 6802, 6805, 6808, 6811, 59, 1, 10664, 59, 1, 10665, 59, 1, 10666, 59, 1, 10667, 59, 1, 10668, 59, 1, 10669, 59, 1, 10670, 59, 1, 10671, 116, 4, 2, 59, 118, 6821, 6823, 1, 8735, 98, 4, 2, 59, 100, 6830, 6832, 1, 8894, 59, 1, 10653, 4, 2, 112, 116, 6841, 6845, 104, 59, 1, 8738, 59, 1, 197, 97, 114, 114, 59, 1, 9084, 4, 2, 103, 112, 6860, 6865, 111, 110, 59, 1, 261, 102, 59, 3, 55349, 56658, 4, 7, 59, 69, 97, 101, 105, 111, 112, 6886, 6888, 6891, 6897, 6900, 6904, 6908, 1, 8776, 59, 1, 10864, 99, 105, 114, 59, 1, 10863, 59, 1, 8778, 100, 59, 1, 8779, 115, 59, 1, 39, 114, 111, 120, 4, 2, 59, 101, 6917, 6919, 1, 8776, 113, 59, 1, 8778, 105, 110, 103, 5, 229, 1, 59, 6931, 1, 229, 4, 3, 99, 116, 121, 6941, 6946, 6949, 114, 59, 3, 55349, 56502, 59, 1, 42, 109, 112, 4, 2, 59, 101, 6957, 6959, 1, 8776, 113, 59, 1, 8781, 105, 108, 100, 101, 5, 227, 1, 59, 6972, 1, 227, 109, 108, 5, 228, 1, 59, 6981, 1, 228, 4, 2, 99, 105, 6989, 6997, 111, 110, 105, 110, 116, 59, 1, 8755, 110, 116, 59, 1, 10769, 4, 16, 78, 97, 98, 99, 100, 101, 102, 105, 107, 108, 110, 111, 112, 114, 115, 117, 7036, 7041, 7119, 7135, 7149, 7155, 7219, 7224, 7347, 7354, 7463, 7489, 7786, 7793, 7814, 7866, 111, 116, 59, 1, 10989, 4, 2, 99, 114, 7047, 7094, 107, 4, 4, 99, 101, 112, 115, 7058, 7064, 7073, 7080, 111, 110, 103, 59, 1, 8780, 112, 115, 105, 108, 111, 110, 59, 1, 1014, 114, 105, 109, 101, 59, 1, 8245, 105, 109, 4, 2, 59, 101, 7088, 7090, 1, 8765, 113, 59, 1, 8909, 4, 2, 118, 119, 7100, 7105, 101, 101, 59, 1, 8893, 101, 100, 4, 2, 59, 103, 7113, 7115, 1, 8965, 101, 59, 1, 8965, 114, 107, 4, 2, 59, 116, 7127, 7129, 1, 9141, 98, 114, 107, 59, 1, 9142, 4, 2, 111, 121, 7141, 7146, 110, 103, 59, 1, 8780, 59, 1, 1073, 113, 117, 111, 59, 1, 8222, 4, 5, 99, 109, 112, 114, 116, 7167, 7181, 7188, 7193, 7199, 97, 117, 115, 4, 2, 59, 101, 7176, 7178, 1, 8757, 59, 1, 8757, 112, 116, 121, 118, 59, 1, 10672, 115, 105, 59, 1, 1014, 110, 111, 117, 59, 1, 8492, 4, 3, 97, 104, 119, 7207, 7210, 7213, 59, 1, 946, 59, 1, 8502, 101, 101, 110, 59, 1, 8812, 114, 59, 3, 55349, 56607, 103, 4, 7, 99, 111, 115, 116, 117, 118, 119, 7241, 7262, 7288, 7305, 7328, 7335, 7340, 4, 3, 97, 105, 117, 7249, 7253, 7258, 112, 59, 1, 8898, 114, 99, 59, 1, 9711, 112, 59, 1, 8899, 4, 3, 100, 112, 116, 7270, 7275, 7281, 111, 116, 59, 1, 10752, 108, 117, 115, 59, 1, 10753, 105, 109, 101, 115, 59, 1, 10754, 4, 2, 113, 116, 7294, 7300, 99, 117, 112, 59, 1, 10758, 97, 114, 59, 1, 9733, 114, 105, 97, 110, 103, 108, 101, 4, 2, 100, 117, 7318, 7324, 111, 119, 110, 59, 1, 9661, 112, 59, 1, 9651, 112, 108, 117, 115, 59, 1, 10756, 101, 101, 59, 1, 8897, 101, 100, 103, 101, 59, 1, 8896, 97, 114, 111, 119, 59, 1, 10509, 4, 3, 97, 107, 111, 7362, 7436, 7458, 4, 2, 99, 110, 7368, 7432, 107, 4, 3, 108, 115, 116, 7377, 7386, 7394, 111, 122, 101, 110, 103, 101, 59, 1, 10731, 113, 117, 97, 114, 101, 59, 1, 9642, 114, 105, 97, 110, 103, 108, 101, 4, 4, 59, 100, 108, 114, 7411, 7413, 7419, 7425, 1, 9652, 111, 119, 110, 59, 1, 9662, 101, 102, 116, 59, 1, 9666, 105, 103, 104, 116, 59, 1, 9656, 107, 59, 1, 9251, 4, 2, 49, 51, 7442, 7454, 4, 2, 50, 52, 7448, 7451, 59, 1, 9618, 59, 1, 9617, 52, 59, 1, 9619, 99, 107, 59, 1, 9608, 4, 2, 101, 111, 7469, 7485, 4, 2, 59, 113, 7475, 7478, 3, 61, 8421, 117, 105, 118, 59, 3, 8801, 8421, 116, 59, 1, 8976, 4, 4, 112, 116, 119, 120, 7499, 7504, 7517, 7523, 102, 59, 3, 55349, 56659, 4, 2, 59, 116, 7510, 7512, 1, 8869, 111, 109, 59, 1, 8869, 116, 105, 101, 59, 1, 8904, 4, 12, 68, 72, 85, 86, 98, 100, 104, 109, 112, 116, 117, 118, 7549, 7571, 7597, 7619, 7655, 7660, 7682, 7708, 7715, 7721, 7728, 7750, 4, 4, 76, 82, 108, 114, 7559, 7562, 7565, 7568, 59, 1, 9559, 59, 1, 9556, 59, 1, 9558, 59, 1, 9555, 4, 5, 59, 68, 85, 100, 117, 7583, 7585, 7588, 7591, 7594, 1, 9552, 59, 1, 9574, 59, 1, 9577, 59, 1, 9572, 59, 1, 9575, 4, 4, 76, 82, 108, 114, 7607, 7610, 7613, 7616, 59, 1, 9565, 59, 1, 9562, 59, 1, 9564, 59, 1, 9561, 4, 7, 59, 72, 76, 82, 104, 108, 114, 7635, 7637, 7640, 7643, 7646, 7649, 7652, 1, 9553, 59, 1, 9580, 59, 1, 9571, 59, 1, 9568, 59, 1, 9579, 59, 1, 9570, 59, 1, 9567, 111, 120, 59, 1, 10697, 4, 4, 76, 82, 108, 114, 7670, 7673, 7676, 7679, 59, 1, 9557, 59, 1, 9554, 59, 1, 9488, 59, 1, 9484, 4, 5, 59, 68, 85, 100, 117, 7694, 7696, 7699, 7702, 7705, 1, 9472, 59, 1, 9573, 59, 1, 9576, 59, 1, 9516, 59, 1, 9524, 105, 110, 117, 115, 59, 1, 8863, 108, 117, 115, 59, 1, 8862, 105, 109, 101, 115, 59, 1, 8864, 4, 4, 76, 82, 108, 114, 7738, 7741, 7744, 7747, 59, 1, 9563, 59, 1, 9560, 59, 1, 9496, 59, 1, 9492, 4, 7, 59, 72, 76, 82, 104, 108, 114, 7766, 7768, 7771, 7774, 7777, 7780, 7783, 1, 9474, 59, 1, 9578, 59, 1, 9569, 59, 1, 9566, 59, 1, 9532, 59, 1, 9508, 59, 1, 9500, 114, 105, 109, 101, 59, 1, 8245, 4, 2, 101, 118, 7799, 7804, 118, 101, 59, 1, 728, 98, 97, 114, 5, 166, 1, 59, 7812, 1, 166, 4, 4, 99, 101, 105, 111, 7824, 7829, 7834, 7846, 114, 59, 3, 55349, 56503, 109, 105, 59, 1, 8271, 109, 4, 2, 59, 101, 7841, 7843, 1, 8765, 59, 1, 8909, 108, 4, 3, 59, 98, 104, 7855, 7857, 7860, 1, 92, 59, 1, 10693, 115, 117, 98, 59, 1, 10184, 4, 2, 108, 109, 7872, 7885, 108, 4, 2, 59, 101, 7879, 7881, 1, 8226, 116, 59, 1, 8226, 112, 4, 3, 59, 69, 101, 7894, 7896, 7899, 1, 8782, 59, 1, 10926, 4, 2, 59, 113, 7905, 7907, 1, 8783, 59, 1, 8783, 4, 15, 97, 99, 100, 101, 102, 104, 105, 108, 111, 114, 115, 116, 117, 119, 121, 7942, 8021, 8075, 8080, 8121, 8126, 8157, 8279, 8295, 8430, 8446, 8485, 8491, 8707, 8726, 4, 3, 99, 112, 114, 7950, 7956, 8007, 117, 116, 101, 59, 1, 263, 4, 6, 59, 97, 98, 99, 100, 115, 7970, 7972, 7977, 7984, 7998, 8003, 1, 8745, 110, 100, 59, 1, 10820, 114, 99, 117, 112, 59, 1, 10825, 4, 2, 97, 117, 7990, 7994, 112, 59, 1, 10827, 112, 59, 1, 10823, 111, 116, 59, 1, 10816, 59, 3, 8745, 65024, 4, 2, 101, 111, 8013, 8017, 116, 59, 1, 8257, 110, 59, 1, 711, 4, 4, 97, 101, 105, 117, 8031, 8046, 8056, 8061, 4, 2, 112, 114, 8037, 8041, 115, 59, 1, 10829, 111, 110, 59, 1, 269, 100, 105, 108, 5, 231, 1, 59, 8054, 1, 231, 114, 99, 59, 1, 265, 112, 115, 4, 2, 59, 115, 8069, 8071, 1, 10828, 109, 59, 1, 10832, 111, 116, 59, 1, 267, 4, 3, 100, 109, 110, 8088, 8097, 8104, 105, 108, 5, 184, 1, 59, 8095, 1, 184, 112, 116, 121, 118, 59, 1, 10674, 116, 5, 162, 2, 59, 101, 8112, 8114, 1, 162, 114, 100, 111, 116, 59, 1, 183, 114, 59, 3, 55349, 56608, 4, 3, 99, 101, 105, 8134, 8138, 8154, 121, 59, 1, 1095, 99, 107, 4, 2, 59, 109, 8146, 8148, 1, 10003, 97, 114, 107, 59, 1, 10003, 59, 1, 967, 114, 4, 7, 59, 69, 99, 101, 102, 109, 115, 8174, 8176, 8179, 8258, 8261, 8268, 8273, 1, 9675, 59, 1, 10691, 4, 3, 59, 101, 108, 8187, 8189, 8193, 1, 710, 113, 59, 1, 8791, 101, 4, 2, 97, 100, 8200, 8223, 114, 114, 111, 119, 4, 2, 108, 114, 8210, 8216, 101, 102, 116, 59, 1, 8634, 105, 103, 104, 116, 59, 1, 8635, 4, 5, 82, 83, 97, 99, 100, 8235, 8238, 8241, 8246, 8252, 59, 1, 174, 59, 1, 9416, 115, 116, 59, 1, 8859, 105, 114, 99, 59, 1, 8858, 97, 115, 104, 59, 1, 8861, 59, 1, 8791, 110, 105, 110, 116, 59, 1, 10768, 105, 100, 59, 1, 10991, 99, 105, 114, 59, 1, 10690, 117, 98, 115, 4, 2, 59, 117, 8288, 8290, 1, 9827, 105, 116, 59, 1, 9827, 4, 4, 108, 109, 110, 112, 8305, 8326, 8376, 8400, 111, 110, 4, 2, 59, 101, 8313, 8315, 1, 58, 4, 2, 59, 113, 8321, 8323, 1, 8788, 59, 1, 8788, 4, 2, 109, 112, 8332, 8344, 97, 4, 2, 59, 116, 8339, 8341, 1, 44, 59, 1, 64, 4, 3, 59, 102, 108, 8352, 8354, 8358, 1, 8705, 110, 59, 1, 8728, 101, 4, 2, 109, 120, 8365, 8371, 101, 110, 116, 59, 1, 8705, 101, 115, 59, 1, 8450, 4, 2, 103, 105, 8382, 8395, 4, 2, 59, 100, 8388, 8390, 1, 8773, 111, 116, 59, 1, 10861, 110, 116, 59, 1, 8750, 4, 3, 102, 114, 121, 8408, 8412, 8417, 59, 3, 55349, 56660, 111, 100, 59, 1, 8720, 5, 169, 2, 59, 115, 8424, 8426, 1, 169, 114, 59, 1, 8471, 4, 2, 97, 111, 8436, 8441, 114, 114, 59, 1, 8629, 115, 115, 59, 1, 10007, 4, 2, 99, 117, 8452, 8457, 114, 59, 3, 55349, 56504, 4, 2, 98, 112, 8463, 8474, 4, 2, 59, 101, 8469, 8471, 1, 10959, 59, 1, 10961, 4, 2, 59, 101, 8480, 8482, 1, 10960, 59, 1, 10962, 100, 111, 116, 59, 1, 8943, 4, 7, 100, 101, 108, 112, 114, 118, 119, 8507, 8522, 8536, 8550, 8600, 8697, 8702, 97, 114, 114, 4, 2, 108, 114, 8516, 8519, 59, 1, 10552, 59, 1, 10549, 4, 2, 112, 115, 8528, 8532, 114, 59, 1, 8926, 99, 59, 1, 8927, 97, 114, 114, 4, 2, 59, 112, 8545, 8547, 1, 8630, 59, 1, 10557, 4, 6, 59, 98, 99, 100, 111, 115, 8564, 8566, 8573, 8587, 8592, 8596, 1, 8746, 114, 99, 97, 112, 59, 1, 10824, 4, 2, 97, 117, 8579, 8583, 112, 59, 1, 10822, 112, 59, 1, 10826, 111, 116, 59, 1, 8845, 114, 59, 1, 10821, 59, 3, 8746, 65024, 4, 4, 97, 108, 114, 118, 8610, 8623, 8663, 8672, 114, 114, 4, 2, 59, 109, 8618, 8620, 1, 8631, 59, 1, 10556, 121, 4, 3, 101, 118, 119, 8632, 8651, 8656, 113, 4, 2, 112, 115, 8639, 8645, 114, 101, 99, 59, 1, 8926, 117, 99, 99, 59, 1, 8927, 101, 101, 59, 1, 8910, 101, 100, 103, 101, 59, 1, 8911, 101, 110, 5, 164, 1, 59, 8670, 1, 164, 101, 97, 114, 114, 111, 119, 4, 2, 108, 114, 8684, 8690, 101, 102, 116, 59, 1, 8630, 105, 103, 104, 116, 59, 1, 8631, 101, 101, 59, 1, 8910, 101, 100, 59, 1, 8911, 4, 2, 99, 105, 8713, 8721, 111, 110, 105, 110, 116, 59, 1, 8754, 110, 116, 59, 1, 8753, 108, 99, 116, 121, 59, 1, 9005, 4, 19, 65, 72, 97, 98, 99, 100, 101, 102, 104, 105, 106, 108, 111, 114, 115, 116, 117, 119, 122, 8773, 8778, 8783, 8821, 8839, 8854, 8887, 8914, 8930, 8944, 9036, 9041, 9058, 9197, 9227, 9258, 9281, 9297, 9305, 114, 114, 59, 1, 8659, 97, 114, 59, 1, 10597, 4, 4, 103, 108, 114, 115, 8793, 8799, 8805, 8809, 103, 101, 114, 59, 1, 8224, 101, 116, 104, 59, 1, 8504, 114, 59, 1, 8595, 104, 4, 2, 59, 118, 8816, 8818, 1, 8208, 59, 1, 8867, 4, 2, 107, 108, 8827, 8834, 97, 114, 111, 119, 59, 1, 10511, 97, 99, 59, 1, 733, 4, 2, 97, 121, 8845, 8851, 114, 111, 110, 59, 1, 271, 59, 1, 1076, 4, 3, 59, 97, 111, 8862, 8864, 8880, 1, 8518, 4, 2, 103, 114, 8870, 8876, 103, 101, 114, 59, 1, 8225, 114, 59, 1, 8650, 116, 115, 101, 113, 59, 1, 10871, 4, 3, 103, 108, 109, 8895, 8902, 8907, 5, 176, 1, 59, 8900, 1, 176, 116, 97, 59, 1, 948, 112, 116, 121, 118, 59, 1, 10673, 4, 2, 105, 114, 8920, 8926, 115, 104, 116, 59, 1, 10623, 59, 3, 55349, 56609, 97, 114, 4, 2, 108, 114, 8938, 8941, 59, 1, 8643, 59, 1, 8642, 4, 5, 97, 101, 103, 115, 118, 8956, 8986, 8989, 8996, 9001, 109, 4, 3, 59, 111, 115, 8965, 8967, 8983, 1, 8900, 110, 100, 4, 2, 59, 115, 8975, 8977, 1, 8900, 117, 105, 116, 59, 1, 9830, 59, 1, 9830, 59, 1, 168, 97, 109, 109, 97, 59, 1, 989, 105, 110, 59, 1, 8946, 4, 3, 59, 105, 111, 9009, 9011, 9031, 1, 247, 100, 101, 5, 247, 2, 59, 111, 9020, 9022, 1, 247, 110, 116, 105, 109, 101, 115, 59, 1, 8903, 110, 120, 59, 1, 8903, 99, 121, 59, 1, 1106, 99, 4, 2, 111, 114, 9048, 9053, 114, 110, 59, 1, 8990, 111, 112, 59, 1, 8973, 4, 5, 108, 112, 116, 117, 119, 9070, 9076, 9081, 9130, 9144, 108, 97, 114, 59, 1, 36, 102, 59, 3, 55349, 56661, 4, 5, 59, 101, 109, 112, 115, 9093, 9095, 9109, 9116, 9122, 1, 729, 113, 4, 2, 59, 100, 9102, 9104, 1, 8784, 111, 116, 59, 1, 8785, 105, 110, 117, 115, 59, 1, 8760, 108, 117, 115, 59, 1, 8724, 113, 117, 97, 114, 101, 59, 1, 8865, 98, 108, 101, 98, 97, 114, 119, 101, 100, 103, 101, 59, 1, 8966, 110, 4, 3, 97, 100, 104, 9153, 9160, 9172, 114, 114, 111, 119, 59, 1, 8595, 111, 119, 110, 97, 114, 114, 111, 119, 115, 59, 1, 8650, 97, 114, 112, 111, 111, 110, 4, 2, 108, 114, 9184, 9190, 101, 102, 116, 59, 1, 8643, 105, 103, 104, 116, 59, 1, 8642, 4, 2, 98, 99, 9203, 9211, 107, 97, 114, 111, 119, 59, 1, 10512, 4, 2, 111, 114, 9217, 9222, 114, 110, 59, 1, 8991, 111, 112, 59, 1, 8972, 4, 3, 99, 111, 116, 9235, 9248, 9252, 4, 2, 114, 121, 9241, 9245, 59, 3, 55349, 56505, 59, 1, 1109, 108, 59, 1, 10742, 114, 111, 107, 59, 1, 273, 4, 2, 100, 114, 9264, 9269, 111, 116, 59, 1, 8945, 105, 4, 2, 59, 102, 9276, 9278, 1, 9663, 59, 1, 9662, 4, 2, 97, 104, 9287, 9292, 114, 114, 59, 1, 8693, 97, 114, 59, 1, 10607, 97, 110, 103, 108, 101, 59, 1, 10662, 4, 2, 99, 105, 9311, 9315, 121, 59, 1, 1119, 103, 114, 97, 114, 114, 59, 1, 10239, 4, 18, 68, 97, 99, 100, 101, 102, 103, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 120, 9361, 9376, 9398, 9439, 9444, 9447, 9462, 9495, 9531, 9585, 9598, 9614, 9659, 9755, 9771, 9792, 9808, 9826, 4, 2, 68, 111, 9367, 9372, 111, 116, 59, 1, 10871, 116, 59, 1, 8785, 4, 2, 99, 115, 9382, 9392, 117, 116, 101, 5, 233, 1, 59, 9390, 1, 233, 116, 101, 114, 59, 1, 10862, 4, 4, 97, 105, 111, 121, 9408, 9414, 9430, 9436, 114, 111, 110, 59, 1, 283, 114, 4, 2, 59, 99, 9421, 9423, 1, 8790, 5, 234, 1, 59, 9428, 1, 234, 108, 111, 110, 59, 1, 8789, 59, 1, 1101, 111, 116, 59, 1, 279, 59, 1, 8519, 4, 2, 68, 114, 9453, 9458, 111, 116, 59, 1, 8786, 59, 3, 55349, 56610, 4, 3, 59, 114, 115, 9470, 9472, 9482, 1, 10906, 97, 118, 101, 5, 232, 1, 59, 9480, 1, 232, 4, 2, 59, 100, 9488, 9490, 1, 10902, 111, 116, 59, 1, 10904, 4, 4, 59, 105, 108, 115, 9505, 9507, 9515, 9518, 1, 10905, 110, 116, 101, 114, 115, 59, 1, 9191, 59, 1, 8467, 4, 2, 59, 100, 9524, 9526, 1, 10901, 111, 116, 59, 1, 10903, 4, 3, 97, 112, 115, 9539, 9544, 9564, 99, 114, 59, 1, 275, 116, 121, 4, 3, 59, 115, 118, 9554, 9556, 9561, 1, 8709, 101, 116, 59, 1, 8709, 59, 1, 8709, 112, 4, 2, 49, 59, 9571, 9583, 4, 2, 51, 52, 9577, 9580, 59, 1, 8196, 59, 1, 8197, 1, 8195, 4, 2, 103, 115, 9591, 9594, 59, 1, 331, 112, 59, 1, 8194, 4, 2, 103, 112, 9604, 9609, 111, 110, 59, 1, 281, 102, 59, 3, 55349, 56662, 4, 3, 97, 108, 115, 9622, 9635, 9640, 114, 4, 2, 59, 115, 9629, 9631, 1, 8917, 108, 59, 1, 10723, 117, 115, 59, 1, 10865, 105, 4, 3, 59, 108, 118, 9649, 9651, 9656, 1, 949, 111, 110, 59, 1, 949, 59, 1, 1013, 4, 4, 99, 115, 117, 118, 9669, 9686, 9716, 9747, 4, 2, 105, 111, 9675, 9680, 114, 99, 59, 1, 8790, 108, 111, 110, 59, 1, 8789, 4, 2, 105, 108, 9692, 9696, 109, 59, 1, 8770, 97, 110, 116, 4, 2, 103, 108, 9705, 9710, 116, 114, 59, 1, 10902, 101, 115, 115, 59, 1, 10901, 4, 3, 97, 101, 105, 9724, 9729, 9734, 108, 115, 59, 1, 61, 115, 116, 59, 1, 8799, 118, 4, 2, 59, 68, 9741, 9743, 1, 8801, 68, 59, 1, 10872, 112, 97, 114, 115, 108, 59, 1, 10725, 4, 2, 68, 97, 9761, 9766, 111, 116, 59, 1, 8787, 114, 114, 59, 1, 10609, 4, 3, 99, 100, 105, 9779, 9783, 9788, 114, 59, 1, 8495, 111, 116, 59, 1, 8784, 109, 59, 1, 8770, 4, 2, 97, 104, 9798, 9801, 59, 1, 951, 5, 240, 1, 59, 9806, 1, 240, 4, 2, 109, 114, 9814, 9822, 108, 5, 235, 1, 59, 9820, 1, 235, 111, 59, 1, 8364, 4, 3, 99, 105, 112, 9834, 9838, 9843, 108, 59, 1, 33, 115, 116, 59, 1, 8707, 4, 2, 101, 111, 9849, 9859, 99, 116, 97, 116, 105, 111, 110, 59, 1, 8496, 110, 101, 110, 116, 105, 97, 108, 101, 59, 1, 8519, 4, 12, 97, 99, 101, 102, 105, 106, 108, 110, 111, 112, 114, 115, 9896, 9910, 9914, 9921, 9954, 9960, 9967, 9989, 9994, 10027, 10036, 10164, 108, 108, 105, 110, 103, 100, 111, 116, 115, 101, 113, 59, 1, 8786, 121, 59, 1, 1092, 109, 97, 108, 101, 59, 1, 9792, 4, 3, 105, 108, 114, 9929, 9935, 9950, 108, 105, 103, 59, 1, 64259, 4, 2, 105, 108, 9941, 9945, 103, 59, 1, 64256, 105, 103, 59, 1, 64260, 59, 3, 55349, 56611, 108, 105, 103, 59, 1, 64257, 108, 105, 103, 59, 3, 102, 106, 4, 3, 97, 108, 116, 9975, 9979, 9984, 116, 59, 1, 9837, 105, 103, 59, 1, 64258, 110, 115, 59, 1, 9649, 111, 102, 59, 1, 402, 4, 2, 112, 114, 1e4, 10005, 102, 59, 3, 55349, 56663, 4, 2, 97, 107, 10011, 10016, 108, 108, 59, 1, 8704, 4, 2, 59, 118, 10022, 10024, 1, 8916, 59, 1, 10969, 97, 114, 116, 105, 110, 116, 59, 1, 10765, 4, 2, 97, 111, 10042, 10159, 4, 2, 99, 115, 10048, 10155, 4, 6, 49, 50, 51, 52, 53, 55, 10062, 10102, 10114, 10135, 10139, 10151, 4, 6, 50, 51, 52, 53, 54, 56, 10076, 10083, 10086, 10093, 10096, 10099, 5, 189, 1, 59, 10081, 1, 189, 59, 1, 8531, 5, 188, 1, 59, 10091, 1, 188, 59, 1, 8533, 59, 1, 8537, 59, 1, 8539, 4, 2, 51, 53, 10108, 10111, 59, 1, 8532, 59, 1, 8534, 4, 3, 52, 53, 56, 10122, 10129, 10132, 5, 190, 1, 59, 10127, 1, 190, 59, 1, 8535, 59, 1, 8540, 53, 59, 1, 8536, 4, 2, 54, 56, 10145, 10148, 59, 1, 8538, 59, 1, 8541, 56, 59, 1, 8542, 108, 59, 1, 8260, 119, 110, 59, 1, 8994, 99, 114, 59, 3, 55349, 56507, 4, 17, 69, 97, 98, 99, 100, 101, 102, 103, 105, 106, 108, 110, 111, 114, 115, 116, 118, 10206, 10217, 10247, 10254, 10268, 10273, 10358, 10363, 10374, 10380, 10385, 10406, 10458, 10464, 10470, 10497, 10610, 4, 2, 59, 108, 10212, 10214, 1, 8807, 59, 1, 10892, 4, 3, 99, 109, 112, 10225, 10231, 10244, 117, 116, 101, 59, 1, 501, 109, 97, 4, 2, 59, 100, 10239, 10241, 1, 947, 59, 1, 989, 59, 1, 10886, 114, 101, 118, 101, 59, 1, 287, 4, 2, 105, 121, 10260, 10265, 114, 99, 59, 1, 285, 59, 1, 1075, 111, 116, 59, 1, 289, 4, 4, 59, 108, 113, 115, 10283, 10285, 10288, 10308, 1, 8805, 59, 1, 8923, 4, 3, 59, 113, 115, 10296, 10298, 10301, 1, 8805, 59, 1, 8807, 108, 97, 110, 116, 59, 1, 10878, 4, 4, 59, 99, 100, 108, 10318, 10320, 10324, 10345, 1, 10878, 99, 59, 1, 10921, 111, 116, 4, 2, 59, 111, 10332, 10334, 1, 10880, 4, 2, 59, 108, 10340, 10342, 1, 10882, 59, 1, 10884, 4, 2, 59, 101, 10351, 10354, 3, 8923, 65024, 115, 59, 1, 10900, 114, 59, 3, 55349, 56612, 4, 2, 59, 103, 10369, 10371, 1, 8811, 59, 1, 8921, 109, 101, 108, 59, 1, 8503, 99, 121, 59, 1, 1107, 4, 4, 59, 69, 97, 106, 10395, 10397, 10400, 10403, 1, 8823, 59, 1, 10898, 59, 1, 10917, 59, 1, 10916, 4, 4, 69, 97, 101, 115, 10416, 10419, 10434, 10453, 59, 1, 8809, 112, 4, 2, 59, 112, 10426, 10428, 1, 10890, 114, 111, 120, 59, 1, 10890, 4, 2, 59, 113, 10440, 10442, 1, 10888, 4, 2, 59, 113, 10448, 10450, 1, 10888, 59, 1, 8809, 105, 109, 59, 1, 8935, 112, 102, 59, 3, 55349, 56664, 97, 118, 101, 59, 1, 96, 4, 2, 99, 105, 10476, 10480, 114, 59, 1, 8458, 109, 4, 3, 59, 101, 108, 10489, 10491, 10494, 1, 8819, 59, 1, 10894, 59, 1, 10896, 5, 62, 6, 59, 99, 100, 108, 113, 114, 10512, 10514, 10527, 10532, 10538, 10545, 1, 62, 4, 2, 99, 105, 10520, 10523, 59, 1, 10919, 114, 59, 1, 10874, 111, 116, 59, 1, 8919, 80, 97, 114, 59, 1, 10645, 117, 101, 115, 116, 59, 1, 10876, 4, 5, 97, 100, 101, 108, 115, 10557, 10574, 10579, 10599, 10605, 4, 2, 112, 114, 10563, 10570, 112, 114, 111, 120, 59, 1, 10886, 114, 59, 1, 10616, 111, 116, 59, 1, 8919, 113, 4, 2, 108, 113, 10586, 10592, 101, 115, 115, 59, 1, 8923, 108, 101, 115, 115, 59, 1, 10892, 101, 115, 115, 59, 1, 8823, 105, 109, 59, 1, 8819, 4, 2, 101, 110, 10616, 10626, 114, 116, 110, 101, 113, 113, 59, 3, 8809, 65024, 69, 59, 3, 8809, 65024, 4, 10, 65, 97, 98, 99, 101, 102, 107, 111, 115, 121, 10653, 10658, 10713, 10718, 10724, 10760, 10765, 10786, 10850, 10875, 114, 114, 59, 1, 8660, 4, 4, 105, 108, 109, 114, 10668, 10674, 10678, 10684, 114, 115, 112, 59, 1, 8202, 102, 59, 1, 189, 105, 108, 116, 59, 1, 8459, 4, 2, 100, 114, 10690, 10695, 99, 121, 59, 1, 1098, 4, 3, 59, 99, 119, 10703, 10705, 10710, 1, 8596, 105, 114, 59, 1, 10568, 59, 1, 8621, 97, 114, 59, 1, 8463, 105, 114, 99, 59, 1, 293, 4, 3, 97, 108, 114, 10732, 10748, 10754, 114, 116, 115, 4, 2, 59, 117, 10741, 10743, 1, 9829, 105, 116, 59, 1, 9829, 108, 105, 112, 59, 1, 8230, 99, 111, 110, 59, 1, 8889, 114, 59, 3, 55349, 56613, 115, 4, 2, 101, 119, 10772, 10779, 97, 114, 111, 119, 59, 1, 10533, 97, 114, 111, 119, 59, 1, 10534, 4, 5, 97, 109, 111, 112, 114, 10798, 10803, 10809, 10839, 10844, 114, 114, 59, 1, 8703, 116, 104, 116, 59, 1, 8763, 107, 4, 2, 108, 114, 10816, 10827, 101, 102, 116, 97, 114, 114, 111, 119, 59, 1, 8617, 105, 103, 104, 116, 97, 114, 114, 111, 119, 59, 1, 8618, 102, 59, 3, 55349, 56665, 98, 97, 114, 59, 1, 8213, 4, 3, 99, 108, 116, 10858, 10863, 10869, 114, 59, 3, 55349, 56509, 97, 115, 104, 59, 1, 8463, 114, 111, 107, 59, 1, 295, 4, 2, 98, 112, 10881, 10887, 117, 108, 108, 59, 1, 8259, 104, 101, 110, 59, 1, 8208, 4, 15, 97, 99, 101, 102, 103, 105, 106, 109, 110, 111, 112, 113, 115, 116, 117, 10925, 10936, 10958, 10977, 10990, 11001, 11039, 11045, 11101, 11192, 11220, 11226, 11237, 11285, 11299, 99, 117, 116, 101, 5, 237, 1, 59, 10934, 1, 237, 4, 3, 59, 105, 121, 10944, 10946, 10955, 1, 8291, 114, 99, 5, 238, 1, 59, 10953, 1, 238, 59, 1, 1080, 4, 2, 99, 120, 10964, 10968, 121, 59, 1, 1077, 99, 108, 5, 161, 1, 59, 10975, 1, 161, 4, 2, 102, 114, 10983, 10986, 59, 1, 8660, 59, 3, 55349, 56614, 114, 97, 118, 101, 5, 236, 1, 59, 10999, 1, 236, 4, 4, 59, 105, 110, 111, 11011, 11013, 11028, 11034, 1, 8520, 4, 2, 105, 110, 11019, 11024, 110, 116, 59, 1, 10764, 116, 59, 1, 8749, 102, 105, 110, 59, 1, 10716, 116, 97, 59, 1, 8489, 108, 105, 103, 59, 1, 307, 4, 3, 97, 111, 112, 11053, 11092, 11096, 4, 3, 99, 103, 116, 11061, 11065, 11088, 114, 59, 1, 299, 4, 3, 101, 108, 112, 11073, 11076, 11082, 59, 1, 8465, 105, 110, 101, 59, 1, 8464, 97, 114, 116, 59, 1, 8465, 104, 59, 1, 305, 102, 59, 1, 8887, 101, 100, 59, 1, 437, 4, 5, 59, 99, 102, 111, 116, 11113, 11115, 11121, 11136, 11142, 1, 8712, 97, 114, 101, 59, 1, 8453, 105, 110, 4, 2, 59, 116, 11129, 11131, 1, 8734, 105, 101, 59, 1, 10717, 100, 111, 116, 59, 1, 305, 4, 5, 59, 99, 101, 108, 112, 11154, 11156, 11161, 11179, 11186, 1, 8747, 97, 108, 59, 1, 8890, 4, 2, 103, 114, 11167, 11173, 101, 114, 115, 59, 1, 8484, 99, 97, 108, 59, 1, 8890, 97, 114, 104, 107, 59, 1, 10775, 114, 111, 100, 59, 1, 10812, 4, 4, 99, 103, 112, 116, 11202, 11206, 11211, 11216, 121, 59, 1, 1105, 111, 110, 59, 1, 303, 102, 59, 3, 55349, 56666, 97, 59, 1, 953, 114, 111, 100, 59, 1, 10812, 117, 101, 115, 116, 5, 191, 1, 59, 11235, 1, 191, 4, 2, 99, 105, 11243, 11248, 114, 59, 3, 55349, 56510, 110, 4, 5, 59, 69, 100, 115, 118, 11261, 11263, 11266, 11271, 11282, 1, 8712, 59, 1, 8953, 111, 116, 59, 1, 8949, 4, 2, 59, 118, 11277, 11279, 1, 8948, 59, 1, 8947, 59, 1, 8712, 4, 2, 59, 105, 11291, 11293, 1, 8290, 108, 100, 101, 59, 1, 297, 4, 2, 107, 109, 11305, 11310, 99, 121, 59, 1, 1110, 108, 5, 239, 1, 59, 11316, 1, 239, 4, 6, 99, 102, 109, 111, 115, 117, 11332, 11346, 11351, 11357, 11363, 11380, 4, 2, 105, 121, 11338, 11343, 114, 99, 59, 1, 309, 59, 1, 1081, 114, 59, 3, 55349, 56615, 97, 116, 104, 59, 1, 567, 112, 102, 59, 3, 55349, 56667, 4, 2, 99, 101, 11369, 11374, 114, 59, 3, 55349, 56511, 114, 99, 121, 59, 1, 1112, 107, 99, 121, 59, 1, 1108, 4, 8, 97, 99, 102, 103, 104, 106, 111, 115, 11404, 11418, 11433, 11438, 11445, 11450, 11455, 11461, 112, 112, 97, 4, 2, 59, 118, 11413, 11415, 1, 954, 59, 1, 1008, 4, 2, 101, 121, 11424, 11430, 100, 105, 108, 59, 1, 311, 59, 1, 1082, 114, 59, 3, 55349, 56616, 114, 101, 101, 110, 59, 1, 312, 99, 121, 59, 1, 1093, 99, 121, 59, 1, 1116, 112, 102, 59, 3, 55349, 56668, 99, 114, 59, 3, 55349, 56512, 4, 23, 65, 66, 69, 72, 97, 98, 99, 100, 101, 102, 103, 104, 106, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 11515, 11538, 11544, 11555, 11560, 11721, 11780, 11818, 11868, 12136, 12160, 12171, 12203, 12208, 12246, 12275, 12327, 12509, 12523, 12569, 12641, 12732, 12752, 4, 3, 97, 114, 116, 11523, 11528, 11532, 114, 114, 59, 1, 8666, 114, 59, 1, 8656, 97, 105, 108, 59, 1, 10523, 97, 114, 114, 59, 1, 10510, 4, 2, 59, 103, 11550, 11552, 1, 8806, 59, 1, 10891, 97, 114, 59, 1, 10594, 4, 9, 99, 101, 103, 109, 110, 112, 113, 114, 116, 11580, 11586, 11594, 11600, 11606, 11624, 11627, 11636, 11694, 117, 116, 101, 59, 1, 314, 109, 112, 116, 121, 118, 59, 1, 10676, 114, 97, 110, 59, 1, 8466, 98, 100, 97, 59, 1, 955, 103, 4, 3, 59, 100, 108, 11615, 11617, 11620, 1, 10216, 59, 1, 10641, 101, 59, 1, 10216, 59, 1, 10885, 117, 111, 5, 171, 1, 59, 11634, 1, 171, 114, 4, 8, 59, 98, 102, 104, 108, 112, 115, 116, 11655, 11657, 11669, 11673, 11677, 11681, 11685, 11690, 1, 8592, 4, 2, 59, 102, 11663, 11665, 1, 8676, 115, 59, 1, 10527, 115, 59, 1, 10525, 107, 59, 1, 8617, 112, 59, 1, 8619, 108, 59, 1, 10553, 105, 109, 59, 1, 10611, 108, 59, 1, 8610, 4, 3, 59, 97, 101, 11702, 11704, 11709, 1, 10923, 105, 108, 59, 1, 10521, 4, 2, 59, 115, 11715, 11717, 1, 10925, 59, 3, 10925, 65024, 4, 3, 97, 98, 114, 11729, 11734, 11739, 114, 114, 59, 1, 10508, 114, 107, 59, 1, 10098, 4, 2, 97, 107, 11745, 11758, 99, 4, 2, 101, 107, 11752, 11755, 59, 1, 123, 59, 1, 91, 4, 2, 101, 115, 11764, 11767, 59, 1, 10635, 108, 4, 2, 100, 117, 11774, 11777, 59, 1, 10639, 59, 1, 10637, 4, 4, 97, 101, 117, 121, 11790, 11796, 11811, 11815, 114, 111, 110, 59, 1, 318, 4, 2, 100, 105, 11802, 11807, 105, 108, 59, 1, 316, 108, 59, 1, 8968, 98, 59, 1, 123, 59, 1, 1083, 4, 4, 99, 113, 114, 115, 11828, 11832, 11845, 11864, 97, 59, 1, 10550, 117, 111, 4, 2, 59, 114, 11840, 11842, 1, 8220, 59, 1, 8222, 4, 2, 100, 117, 11851, 11857, 104, 97, 114, 59, 1, 10599, 115, 104, 97, 114, 59, 1, 10571, 104, 59, 1, 8626, 4, 5, 59, 102, 103, 113, 115, 11880, 11882, 12008, 12011, 12031, 1, 8804, 116, 4, 5, 97, 104, 108, 114, 116, 11895, 11913, 11935, 11947, 11996, 114, 114, 111, 119, 4, 2, 59, 116, 11905, 11907, 1, 8592, 97, 105, 108, 59, 1, 8610, 97, 114, 112, 111, 111, 110, 4, 2, 100, 117, 11925, 11931, 111, 119, 110, 59, 1, 8637, 112, 59, 1, 8636, 101, 102, 116, 97, 114, 114, 111, 119, 115, 59, 1, 8647, 105, 103, 104, 116, 4, 3, 97, 104, 115, 11959, 11974, 11984, 114, 114, 111, 119, 4, 2, 59, 115, 11969, 11971, 1, 8596, 59, 1, 8646, 97, 114, 112, 111, 111, 110, 115, 59, 1, 8651, 113, 117, 105, 103, 97, 114, 114, 111, 119, 59, 1, 8621, 104, 114, 101, 101, 116, 105, 109, 101, 115, 59, 1, 8907, 59, 1, 8922, 4, 3, 59, 113, 115, 12019, 12021, 12024, 1, 8804, 59, 1, 8806, 108, 97, 110, 116, 59, 1, 10877, 4, 5, 59, 99, 100, 103, 115, 12043, 12045, 12049, 12070, 12083, 1, 10877, 99, 59, 1, 10920, 111, 116, 4, 2, 59, 111, 12057, 12059, 1, 10879, 4, 2, 59, 114, 12065, 12067, 1, 10881, 59, 1, 10883, 4, 2, 59, 101, 12076, 12079, 3, 8922, 65024, 115, 59, 1, 10899, 4, 5, 97, 100, 101, 103, 115, 12095, 12103, 12108, 12126, 12131, 112, 112, 114, 111, 120, 59, 1, 10885, 111, 116, 59, 1, 8918, 113, 4, 2, 103, 113, 12115, 12120, 116, 114, 59, 1, 8922, 103, 116, 114, 59, 1, 10891, 116, 114, 59, 1, 8822, 105, 109, 59, 1, 8818, 4, 3, 105, 108, 114, 12144, 12150, 12156, 115, 104, 116, 59, 1, 10620, 111, 111, 114, 59, 1, 8970, 59, 3, 55349, 56617, 4, 2, 59, 69, 12166, 12168, 1, 8822, 59, 1, 10897, 4, 2, 97, 98, 12177, 12198, 114, 4, 2, 100, 117, 12184, 12187, 59, 1, 8637, 4, 2, 59, 108, 12193, 12195, 1, 8636, 59, 1, 10602, 108, 107, 59, 1, 9604, 99, 121, 59, 1, 1113, 4, 5, 59, 97, 99, 104, 116, 12220, 12222, 12227, 12235, 12241, 1, 8810, 114, 114, 59, 1, 8647, 111, 114, 110, 101, 114, 59, 1, 8990, 97, 114, 100, 59, 1, 10603, 114, 105, 59, 1, 9722, 4, 2, 105, 111, 12252, 12258, 100, 111, 116, 59, 1, 320, 117, 115, 116, 4, 2, 59, 97, 12267, 12269, 1, 9136, 99, 104, 101, 59, 1, 9136, 4, 4, 69, 97, 101, 115, 12285, 12288, 12303, 12322, 59, 1, 8808, 112, 4, 2, 59, 112, 12295, 12297, 1, 10889, 114, 111, 120, 59, 1, 10889, 4, 2, 59, 113, 12309, 12311, 1, 10887, 4, 2, 59, 113, 12317, 12319, 1, 10887, 59, 1, 8808, 105, 109, 59, 1, 8934, 4, 8, 97, 98, 110, 111, 112, 116, 119, 122, 12345, 12359, 12364, 12421, 12446, 12467, 12474, 12490, 4, 2, 110, 114, 12351, 12355, 103, 59, 1, 10220, 114, 59, 1, 8701, 114, 107, 59, 1, 10214, 103, 4, 3, 108, 109, 114, 12373, 12401, 12409, 101, 102, 116, 4, 2, 97, 114, 12382, 12389, 114, 114, 111, 119, 59, 1, 10229, 105, 103, 104, 116, 97, 114, 114, 111, 119, 59, 1, 10231, 97, 112, 115, 116, 111, 59, 1, 10236, 105, 103, 104, 116, 97, 114, 114, 111, 119, 59, 1, 10230, 112, 97, 114, 114, 111, 119, 4, 2, 108, 114, 12433, 12439, 101, 102, 116, 59, 1, 8619, 105, 103, 104, 116, 59, 1, 8620, 4, 3, 97, 102, 108, 12454, 12458, 12462, 114, 59, 1, 10629, 59, 3, 55349, 56669, 117, 115, 59, 1, 10797, 105, 109, 101, 115, 59, 1, 10804, 4, 2, 97, 98, 12480, 12485, 115, 116, 59, 1, 8727, 97, 114, 59, 1, 95, 4, 3, 59, 101, 102, 12498, 12500, 12506, 1, 9674, 110, 103, 101, 59, 1, 9674, 59, 1, 10731, 97, 114, 4, 2, 59, 108, 12517, 12519, 1, 40, 116, 59, 1, 10643, 4, 5, 97, 99, 104, 109, 116, 12535, 12540, 12548, 12561, 12564, 114, 114, 59, 1, 8646, 111, 114, 110, 101, 114, 59, 1, 8991, 97, 114, 4, 2, 59, 100, 12556, 12558, 1, 8651, 59, 1, 10605, 59, 1, 8206, 114, 105, 59, 1, 8895, 4, 6, 97, 99, 104, 105, 113, 116, 12583, 12589, 12594, 12597, 12614, 12635, 113, 117, 111, 59, 1, 8249, 114, 59, 3, 55349, 56513, 59, 1, 8624, 109, 4, 3, 59, 101, 103, 12606, 12608, 12611, 1, 8818, 59, 1, 10893, 59, 1, 10895, 4, 2, 98, 117, 12620, 12623, 59, 1, 91, 111, 4, 2, 59, 114, 12630, 12632, 1, 8216, 59, 1, 8218, 114, 111, 107, 59, 1, 322, 5, 60, 8, 59, 99, 100, 104, 105, 108, 113, 114, 12660, 12662, 12675, 12680, 12686, 12692, 12698, 12705, 1, 60, 4, 2, 99, 105, 12668, 12671, 59, 1, 10918, 114, 59, 1, 10873, 111, 116, 59, 1, 8918, 114, 101, 101, 59, 1, 8907, 109, 101, 115, 59, 1, 8905, 97, 114, 114, 59, 1, 10614, 117, 101, 115, 116, 59, 1, 10875, 4, 2, 80, 105, 12711, 12716, 97, 114, 59, 1, 10646, 4, 3, 59, 101, 102, 12724, 12726, 12729, 1, 9667, 59, 1, 8884, 59, 1, 9666, 114, 4, 2, 100, 117, 12739, 12746, 115, 104, 97, 114, 59, 1, 10570, 104, 97, 114, 59, 1, 10598, 4, 2, 101, 110, 12758, 12768, 114, 116, 110, 101, 113, 113, 59, 3, 8808, 65024, 69, 59, 3, 8808, 65024, 4, 14, 68, 97, 99, 100, 101, 102, 104, 105, 108, 110, 111, 112, 115, 117, 12803, 12809, 12893, 12908, 12914, 12928, 12933, 12937, 13011, 13025, 13032, 13049, 13052, 13069, 68, 111, 116, 59, 1, 8762, 4, 4, 99, 108, 112, 114, 12819, 12827, 12849, 12887, 114, 5, 175, 1, 59, 12825, 1, 175, 4, 2, 101, 116, 12833, 12836, 59, 1, 9794, 4, 2, 59, 101, 12842, 12844, 1, 10016, 115, 101, 59, 1, 10016, 4, 2, 59, 115, 12855, 12857, 1, 8614, 116, 111, 4, 4, 59, 100, 108, 117, 12869, 12871, 12877, 12883, 1, 8614, 111, 119, 110, 59, 1, 8615, 101, 102, 116, 59, 1, 8612, 112, 59, 1, 8613, 107, 101, 114, 59, 1, 9646, 4, 2, 111, 121, 12899, 12905, 109, 109, 97, 59, 1, 10793, 59, 1, 1084, 97, 115, 104, 59, 1, 8212, 97, 115, 117, 114, 101, 100, 97, 110, 103, 108, 101, 59, 1, 8737, 114, 59, 3, 55349, 56618, 111, 59, 1, 8487, 4, 3, 99, 100, 110, 12945, 12954, 12985, 114, 111, 5, 181, 1, 59, 12952, 1, 181, 4, 4, 59, 97, 99, 100, 12964, 12966, 12971, 12976, 1, 8739, 115, 116, 59, 1, 42, 105, 114, 59, 1, 10992, 111, 116, 5, 183, 1, 59, 12983, 1, 183, 117, 115, 4, 3, 59, 98, 100, 12995, 12997, 13e3, 1, 8722, 59, 1, 8863, 4, 2, 59, 117, 13006, 13008, 1, 8760, 59, 1, 10794, 4, 2, 99, 100, 13017, 13021, 112, 59, 1, 10971, 114, 59, 1, 8230, 112, 108, 117, 115, 59, 1, 8723, 4, 2, 100, 112, 13038, 13044, 101, 108, 115, 59, 1, 8871, 102, 59, 3, 55349, 56670, 59, 1, 8723, 4, 2, 99, 116, 13058, 13063, 114, 59, 3, 55349, 56514, 112, 111, 115, 59, 1, 8766, 4, 3, 59, 108, 109, 13077, 13079, 13087, 1, 956, 116, 105, 109, 97, 112, 59, 1, 8888, 97, 112, 59, 1, 8888, 4, 24, 71, 76, 82, 86, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 109, 111, 112, 114, 115, 116, 117, 118, 119, 13142, 13165, 13217, 13229, 13247, 13330, 13359, 13414, 13420, 13508, 13513, 13579, 13602, 13626, 13631, 13762, 13767, 13855, 13936, 13995, 14214, 14285, 14312, 14432, 4, 2, 103, 116, 13148, 13152, 59, 3, 8921, 824, 4, 2, 59, 118, 13158, 13161, 3, 8811, 8402, 59, 3, 8811, 824, 4, 3, 101, 108, 116, 13173, 13200, 13204, 102, 116, 4, 2, 97, 114, 13181, 13188, 114, 114, 111, 119, 59, 1, 8653, 105, 103, 104, 116, 97, 114, 114, 111, 119, 59, 1, 8654, 59, 3, 8920, 824, 4, 2, 59, 118, 13210, 13213, 3, 8810, 8402, 59, 3, 8810, 824, 105, 103, 104, 116, 97, 114, 114, 111, 119, 59, 1, 8655, 4, 2, 68, 100, 13235, 13241, 97, 115, 104, 59, 1, 8879, 97, 115, 104, 59, 1, 8878, 4, 5, 98, 99, 110, 112, 116, 13259, 13264, 13270, 13275, 13308, 108, 97, 59, 1, 8711, 117, 116, 101, 59, 1, 324, 103, 59, 3, 8736, 8402, 4, 5, 59, 69, 105, 111, 112, 13287, 13289, 13293, 13298, 13302, 1, 8777, 59, 3, 10864, 824, 100, 59, 3, 8779, 824, 115, 59, 1, 329, 114, 111, 120, 59, 1, 8777, 117, 114, 4, 2, 59, 97, 13316, 13318, 1, 9838, 108, 4, 2, 59, 115, 13325, 13327, 1, 9838, 59, 1, 8469, 4, 2, 115, 117, 13336, 13344, 112, 5, 160, 1, 59, 13342, 1, 160, 109, 112, 4, 2, 59, 101, 13352, 13355, 3, 8782, 824, 59, 3, 8783, 824, 4, 5, 97, 101, 111, 117, 121, 13371, 13385, 13391, 13407, 13411, 4, 2, 112, 114, 13377, 13380, 59, 1, 10819, 111, 110, 59, 1, 328, 100, 105, 108, 59, 1, 326, 110, 103, 4, 2, 59, 100, 13399, 13401, 1, 8775, 111, 116, 59, 3, 10861, 824, 112, 59, 1, 10818, 59, 1, 1085, 97, 115, 104, 59, 1, 8211, 4, 7, 59, 65, 97, 100, 113, 115, 120, 13436, 13438, 13443, 13466, 13472, 13478, 13494, 1, 8800, 114, 114, 59, 1, 8663, 114, 4, 2, 104, 114, 13450, 13454, 107, 59, 1, 10532, 4, 2, 59, 111, 13460, 13462, 1, 8599, 119, 59, 1, 8599, 111, 116, 59, 3, 8784, 824, 117, 105, 118, 59, 1, 8802, 4, 2, 101, 105, 13484, 13489, 97, 114, 59, 1, 10536, 109, 59, 3, 8770, 824, 105, 115, 116, 4, 2, 59, 115, 13503, 13505, 1, 8708, 59, 1, 8708, 114, 59, 3, 55349, 56619, 4, 4, 69, 101, 115, 116, 13523, 13527, 13563, 13568, 59, 3, 8807, 824, 4, 3, 59, 113, 115, 13535, 13537, 13559, 1, 8817, 4, 3, 59, 113, 115, 13545, 13547, 13551, 1, 8817, 59, 3, 8807, 824, 108, 97, 110, 116, 59, 3, 10878, 824, 59, 3, 10878, 824, 105, 109, 59, 1, 8821, 4, 2, 59, 114, 13574, 13576, 1, 8815, 59, 1, 8815, 4, 3, 65, 97, 112, 13587, 13592, 13597, 114, 114, 59, 1, 8654, 114, 114, 59, 1, 8622, 97, 114, 59, 1, 10994, 4, 3, 59, 115, 118, 13610, 13612, 13623, 1, 8715, 4, 2, 59, 100, 13618, 13620, 1, 8956, 59, 1, 8954, 59, 1, 8715, 99, 121, 59, 1, 1114, 4, 7, 65, 69, 97, 100, 101, 115, 116, 13647, 13652, 13656, 13661, 13665, 13737, 13742, 114, 114, 59, 1, 8653, 59, 3, 8806, 824, 114, 114, 59, 1, 8602, 114, 59, 1, 8229, 4, 4, 59, 102, 113, 115, 13675, 13677, 13703, 13725, 1, 8816, 116, 4, 2, 97, 114, 13684, 13691, 114, 114, 111, 119, 59, 1, 8602, 105, 103, 104, 116, 97, 114, 114, 111, 119, 59, 1, 8622, 4, 3, 59, 113, 115, 13711, 13713, 13717, 1, 8816, 59, 3, 8806, 824, 108, 97, 110, 116, 59, 3, 10877, 824, 4, 2, 59, 115, 13731, 13734, 3, 10877, 824, 59, 1, 8814, 105, 109, 59, 1, 8820, 4, 2, 59, 114, 13748, 13750, 1, 8814, 105, 4, 2, 59, 101, 13757, 13759, 1, 8938, 59, 1, 8940, 105, 100, 59, 1, 8740, 4, 2, 112, 116, 13773, 13778, 102, 59, 3, 55349, 56671, 5, 172, 3, 59, 105, 110, 13787, 13789, 13829, 1, 172, 110, 4, 4, 59, 69, 100, 118, 13800, 13802, 13806, 13812, 1, 8713, 59, 3, 8953, 824, 111, 116, 59, 3, 8949, 824, 4, 3, 97, 98, 99, 13820, 13823, 13826, 59, 1, 8713, 59, 1, 8951, 59, 1, 8950, 105, 4, 2, 59, 118, 13836, 13838, 1, 8716, 4, 3, 97, 98, 99, 13846, 13849, 13852, 59, 1, 8716, 59, 1, 8958, 59, 1, 8957, 4, 3, 97, 111, 114, 13863, 13892, 13899, 114, 4, 4, 59, 97, 115, 116, 13874, 13876, 13883, 13888, 1, 8742, 108, 108, 101, 108, 59, 1, 8742, 108, 59, 3, 11005, 8421, 59, 3, 8706, 824, 108, 105, 110, 116, 59, 1, 10772, 4, 3, 59, 99, 101, 13907, 13909, 13914, 1, 8832, 117, 101, 59, 1, 8928, 4, 2, 59, 99, 13920, 13923, 3, 10927, 824, 4, 2, 59, 101, 13929, 13931, 1, 8832, 113, 59, 3, 10927, 824, 4, 4, 65, 97, 105, 116, 13946, 13951, 13971, 13982, 114, 114, 59, 1, 8655, 114, 114, 4, 3, 59, 99, 119, 13961, 13963, 13967, 1, 8603, 59, 3, 10547, 824, 59, 3, 8605, 824, 103, 104, 116, 97, 114, 114, 111, 119, 59, 1, 8603, 114, 105, 4, 2, 59, 101, 13990, 13992, 1, 8939, 59, 1, 8941, 4, 7, 99, 104, 105, 109, 112, 113, 117, 14011, 14036, 14060, 14080, 14085, 14090, 14106, 4, 4, 59, 99, 101, 114, 14021, 14023, 14028, 14032, 1, 8833, 117, 101, 59, 1, 8929, 59, 3, 10928, 824, 59, 3, 55349, 56515, 111, 114, 116, 4, 2, 109, 112, 14045, 14050, 105, 100, 59, 1, 8740, 97, 114, 97, 108, 108, 101, 108, 59, 1, 8742, 109, 4, 2, 59, 101, 14067, 14069, 1, 8769, 4, 2, 59, 113, 14075, 14077, 1, 8772, 59, 1, 8772, 105, 100, 59, 1, 8740, 97, 114, 59, 1, 8742, 115, 117, 4, 2, 98, 112, 14098, 14102, 101, 59, 1, 8930, 101, 59, 1, 8931, 4, 3, 98, 99, 112, 14114, 14157, 14171, 4, 4, 59, 69, 101, 115, 14124, 14126, 14130, 14133, 1, 8836, 59, 3, 10949, 824, 59, 1, 8840, 101, 116, 4, 2, 59, 101, 14141, 14144, 3, 8834, 8402, 113, 4, 2, 59, 113, 14151, 14153, 1, 8840, 59, 3, 10949, 824, 99, 4, 2, 59, 101, 14164, 14166, 1, 8833, 113, 59, 3, 10928, 824, 4, 4, 59, 69, 101, 115, 14181, 14183, 14187, 14190, 1, 8837, 59, 3, 10950, 824, 59, 1, 8841, 101, 116, 4, 2, 59, 101, 14198, 14201, 3, 8835, 8402, 113, 4, 2, 59, 113, 14208, 14210, 1, 8841, 59, 3, 10950, 824, 4, 4, 103, 105, 108, 114, 14224, 14228, 14238, 14242, 108, 59, 1, 8825, 108, 100, 101, 5, 241, 1, 59, 14236, 1, 241, 103, 59, 1, 8824, 105, 97, 110, 103, 108, 101, 4, 2, 108, 114, 14254, 14269, 101, 102, 116, 4, 2, 59, 101, 14263, 14265, 1, 8938, 113, 59, 1, 8940, 105, 103, 104, 116, 4, 2, 59, 101, 14279, 14281, 1, 8939, 113, 59, 1, 8941, 4, 2, 59, 109, 14291, 14293, 1, 957, 4, 3, 59, 101, 115, 14301, 14303, 14308, 1, 35, 114, 111, 59, 1, 8470, 112, 59, 1, 8199, 4, 9, 68, 72, 97, 100, 103, 105, 108, 114, 115, 14332, 14338, 14344, 14349, 14355, 14369, 14376, 14408, 14426, 97, 115, 104, 59, 1, 8877, 97, 114, 114, 59, 1, 10500, 112, 59, 3, 8781, 8402, 97, 115, 104, 59, 1, 8876, 4, 2, 101, 116, 14361, 14365, 59, 3, 8805, 8402, 59, 3, 62, 8402, 110, 102, 105, 110, 59, 1, 10718, 4, 3, 65, 101, 116, 14384, 14389, 14393, 114, 114, 59, 1, 10498, 59, 3, 8804, 8402, 4, 2, 59, 114, 14399, 14402, 3, 60, 8402, 105, 101, 59, 3, 8884, 8402, 4, 2, 65, 116, 14414, 14419, 114, 114, 59, 1, 10499, 114, 105, 101, 59, 3, 8885, 8402, 105, 109, 59, 3, 8764, 8402, 4, 3, 65, 97, 110, 14440, 14445, 14468, 114, 114, 59, 1, 8662, 114, 4, 2, 104, 114, 14452, 14456, 107, 59, 1, 10531, 4, 2, 59, 111, 14462, 14464, 1, 8598, 119, 59, 1, 8598, 101, 97, 114, 59, 1, 10535, 4, 18, 83, 97, 99, 100, 101, 102, 103, 104, 105, 108, 109, 111, 112, 114, 115, 116, 117, 118, 14512, 14515, 14535, 14560, 14597, 14603, 14618, 14643, 14657, 14662, 14701, 14741, 14747, 14769, 14851, 14877, 14907, 14916, 59, 1, 9416, 4, 2, 99, 115, 14521, 14531, 117, 116, 101, 5, 243, 1, 59, 14529, 1, 243, 116, 59, 1, 8859, 4, 2, 105, 121, 14541, 14557, 114, 4, 2, 59, 99, 14548, 14550, 1, 8858, 5, 244, 1, 59, 14555, 1, 244, 59, 1, 1086, 4, 5, 97, 98, 105, 111, 115, 14572, 14577, 14583, 14587, 14591, 115, 104, 59, 1, 8861, 108, 97, 99, 59, 1, 337, 118, 59, 1, 10808, 116, 59, 1, 8857, 111, 108, 100, 59, 1, 10684, 108, 105, 103, 59, 1, 339, 4, 2, 99, 114, 14609, 14614, 105, 114, 59, 1, 10687, 59, 3, 55349, 56620, 4, 3, 111, 114, 116, 14626, 14630, 14640, 110, 59, 1, 731, 97, 118, 101, 5, 242, 1, 59, 14638, 1, 242, 59, 1, 10689, 4, 2, 98, 109, 14649, 14654, 97, 114, 59, 1, 10677, 59, 1, 937, 110, 116, 59, 1, 8750, 4, 4, 97, 99, 105, 116, 14672, 14677, 14693, 14698, 114, 114, 59, 1, 8634, 4, 2, 105, 114, 14683, 14687, 114, 59, 1, 10686, 111, 115, 115, 59, 1, 10683, 110, 101, 59, 1, 8254, 59, 1, 10688, 4, 3, 97, 101, 105, 14709, 14714, 14719, 99, 114, 59, 1, 333, 103, 97, 59, 1, 969, 4, 3, 99, 100, 110, 14727, 14733, 14736, 114, 111, 110, 59, 1, 959, 59, 1, 10678, 117, 115, 59, 1, 8854, 112, 102, 59, 3, 55349, 56672, 4, 3, 97, 101, 108, 14755, 14759, 14764, 114, 59, 1, 10679, 114, 112, 59, 1, 10681, 117, 115, 59, 1, 8853, 4, 7, 59, 97, 100, 105, 111, 115, 118, 14785, 14787, 14792, 14831, 14837, 14841, 14848, 1, 8744, 114, 114, 59, 1, 8635, 4, 4, 59, 101, 102, 109, 14802, 14804, 14817, 14824, 1, 10845, 114, 4, 2, 59, 111, 14811, 14813, 1, 8500, 102, 59, 1, 8500, 5, 170, 1, 59, 14822, 1, 170, 5, 186, 1, 59, 14829, 1, 186, 103, 111, 102, 59, 1, 8886, 114, 59, 1, 10838, 108, 111, 112, 101, 59, 1, 10839, 59, 1, 10843, 4, 3, 99, 108, 111, 14859, 14863, 14873, 114, 59, 1, 8500, 97, 115, 104, 5, 248, 1, 59, 14871, 1, 248, 108, 59, 1, 8856, 105, 4, 2, 108, 109, 14884, 14893, 100, 101, 5, 245, 1, 59, 14891, 1, 245, 101, 115, 4, 2, 59, 97, 14901, 14903, 1, 8855, 115, 59, 1, 10806, 109, 108, 5, 246, 1, 59, 14914, 1, 246, 98, 97, 114, 59, 1, 9021, 4, 12, 97, 99, 101, 102, 104, 105, 108, 109, 111, 114, 115, 117, 14948, 14992, 14996, 15033, 15038, 15068, 15090, 15189, 15192, 15222, 15427, 15441, 114, 4, 4, 59, 97, 115, 116, 14959, 14961, 14976, 14989, 1, 8741, 5, 182, 2, 59, 108, 14968, 14970, 1, 182, 108, 101, 108, 59, 1, 8741, 4, 2, 105, 108, 14982, 14986, 109, 59, 1, 10995, 59, 1, 11005, 59, 1, 8706, 121, 59, 1, 1087, 114, 4, 5, 99, 105, 109, 112, 116, 15009, 15014, 15019, 15024, 15027, 110, 116, 59, 1, 37, 111, 100, 59, 1, 46, 105, 108, 59, 1, 8240, 59, 1, 8869, 101, 110, 107, 59, 1, 8241, 114, 59, 3, 55349, 56621, 4, 3, 105, 109, 111, 15046, 15057, 15063, 4, 2, 59, 118, 15052, 15054, 1, 966, 59, 1, 981, 109, 97, 116, 59, 1, 8499, 110, 101, 59, 1, 9742, 4, 3, 59, 116, 118, 15076, 15078, 15087, 1, 960, 99, 104, 102, 111, 114, 107, 59, 1, 8916, 59, 1, 982, 4, 2, 97, 117, 15096, 15119, 110, 4, 2, 99, 107, 15103, 15115, 107, 4, 2, 59, 104, 15110, 15112, 1, 8463, 59, 1, 8462, 118, 59, 1, 8463, 115, 4, 9, 59, 97, 98, 99, 100, 101, 109, 115, 116, 15140, 15142, 15148, 15151, 15156, 15168, 15171, 15179, 15184, 1, 43, 99, 105, 114, 59, 1, 10787, 59, 1, 8862, 105, 114, 59, 1, 10786, 4, 2, 111, 117, 15162, 15165, 59, 1, 8724, 59, 1, 10789, 59, 1, 10866, 110, 5, 177, 1, 59, 15177, 1, 177, 105, 109, 59, 1, 10790, 119, 111, 59, 1, 10791, 59, 1, 177, 4, 3, 105, 112, 117, 15200, 15208, 15213, 110, 116, 105, 110, 116, 59, 1, 10773, 102, 59, 3, 55349, 56673, 110, 100, 5, 163, 1, 59, 15220, 1, 163, 4, 10, 59, 69, 97, 99, 101, 105, 110, 111, 115, 117, 15244, 15246, 15249, 15253, 15258, 15334, 15347, 15367, 15416, 15421, 1, 8826, 59, 1, 10931, 112, 59, 1, 10935, 117, 101, 59, 1, 8828, 4, 2, 59, 99, 15264, 15266, 1, 10927, 4, 6, 59, 97, 99, 101, 110, 115, 15280, 15282, 15290, 15299, 15303, 15329, 1, 8826, 112, 112, 114, 111, 120, 59, 1, 10935, 117, 114, 108, 121, 101, 113, 59, 1, 8828, 113, 59, 1, 10927, 4, 3, 97, 101, 115, 15311, 15319, 15324, 112, 112, 114, 111, 120, 59, 1, 10937, 113, 113, 59, 1, 10933, 105, 109, 59, 1, 8936, 105, 109, 59, 1, 8830, 109, 101, 4, 2, 59, 115, 15342, 15344, 1, 8242, 59, 1, 8473, 4, 3, 69, 97, 115, 15355, 15358, 15362, 59, 1, 10933, 112, 59, 1, 10937, 105, 109, 59, 1, 8936, 4, 3, 100, 102, 112, 15375, 15378, 15404, 59, 1, 8719, 4, 3, 97, 108, 115, 15386, 15392, 15398, 108, 97, 114, 59, 1, 9006, 105, 110, 101, 59, 1, 8978, 117, 114, 102, 59, 1, 8979, 4, 2, 59, 116, 15410, 15412, 1, 8733, 111, 59, 1, 8733, 105, 109, 59, 1, 8830, 114, 101, 108, 59, 1, 8880, 4, 2, 99, 105, 15433, 15438, 114, 59, 3, 55349, 56517, 59, 1, 968, 110, 99, 115, 112, 59, 1, 8200, 4, 6, 102, 105, 111, 112, 115, 117, 15462, 15467, 15472, 15478, 15485, 15491, 114, 59, 3, 55349, 56622, 110, 116, 59, 1, 10764, 112, 102, 59, 3, 55349, 56674, 114, 105, 109, 101, 59, 1, 8279, 99, 114, 59, 3, 55349, 56518, 4, 3, 97, 101, 111, 15499, 15520, 15534, 116, 4, 2, 101, 105, 15506, 15515, 114, 110, 105, 111, 110, 115, 59, 1, 8461, 110, 116, 59, 1, 10774, 115, 116, 4, 2, 59, 101, 15528, 15530, 1, 63, 113, 59, 1, 8799, 116, 5, 34, 1, 59, 15540, 1, 34, 4, 21, 65, 66, 72, 97, 98, 99, 100, 101, 102, 104, 105, 108, 109, 110, 111, 112, 114, 115, 116, 117, 120, 15586, 15609, 15615, 15620, 15796, 15855, 15893, 15931, 15977, 16001, 16039, 16183, 16204, 16222, 16228, 16285, 16312, 16318, 16363, 16408, 16416, 4, 3, 97, 114, 116, 15594, 15599, 15603, 114, 114, 59, 1, 8667, 114, 59, 1, 8658, 97, 105, 108, 59, 1, 10524, 97, 114, 114, 59, 1, 10511, 97, 114, 59, 1, 10596, 4, 7, 99, 100, 101, 110, 113, 114, 116, 15636, 15651, 15656, 15664, 15687, 15696, 15770, 4, 2, 101, 117, 15642, 15646, 59, 3, 8765, 817, 116, 101, 59, 1, 341, 105, 99, 59, 1, 8730, 109, 112, 116, 121, 118, 59, 1, 10675, 103, 4, 4, 59, 100, 101, 108, 15675, 15677, 15680, 15683, 1, 10217, 59, 1, 10642, 59, 1, 10661, 101, 59, 1, 10217, 117, 111, 5, 187, 1, 59, 15694, 1, 187, 114, 4, 11, 59, 97, 98, 99, 102, 104, 108, 112, 115, 116, 119, 15721, 15723, 15727, 15739, 15742, 15746, 15750, 15754, 15758, 15763, 15767, 1, 8594, 112, 59, 1, 10613, 4, 2, 59, 102, 15733, 15735, 1, 8677, 115, 59, 1, 10528, 59, 1, 10547, 115, 59, 1, 10526, 107, 59, 1, 8618, 112, 59, 1, 8620, 108, 59, 1, 10565, 105, 109, 59, 1, 10612, 108, 59, 1, 8611, 59, 1, 8605, 4, 2, 97, 105, 15776, 15781, 105, 108, 59, 1, 10522, 111, 4, 2, 59, 110, 15788, 15790, 1, 8758, 97, 108, 115, 59, 1, 8474, 4, 3, 97, 98, 114, 15804, 15809, 15814, 114, 114, 59, 1, 10509, 114, 107, 59, 1, 10099, 4, 2, 97, 107, 15820, 15833, 99, 4, 2, 101, 107, 15827, 15830, 59, 1, 125, 59, 1, 93, 4, 2, 101, 115, 15839, 15842, 59, 1, 10636, 108, 4, 2, 100, 117, 15849, 15852, 59, 1, 10638, 59, 1, 10640, 4, 4, 97, 101, 117, 121, 15865, 15871, 15886, 15890, 114, 111, 110, 59, 1, 345, 4, 2, 100, 105, 15877, 15882, 105, 108, 59, 1, 343, 108, 59, 1, 8969, 98, 59, 1, 125, 59, 1, 1088, 4, 4, 99, 108, 113, 115, 15903, 15907, 15914, 15927, 97, 59, 1, 10551, 100, 104, 97, 114, 59, 1, 10601, 117, 111, 4, 2, 59, 114, 15922, 15924, 1, 8221, 59, 1, 8221, 104, 59, 1, 8627, 4, 3, 97, 99, 103, 15939, 15966, 15970, 108, 4, 4, 59, 105, 112, 115, 15950, 15952, 15957, 15963, 1, 8476, 110, 101, 59, 1, 8475, 97, 114, 116, 59, 1, 8476, 59, 1, 8477, 116, 59, 1, 9645, 5, 174, 1, 59, 15975, 1, 174, 4, 3, 105, 108, 114, 15985, 15991, 15997, 115, 104, 116, 59, 1, 10621, 111, 111, 114, 59, 1, 8971, 59, 3, 55349, 56623, 4, 2, 97, 111, 16007, 16028, 114, 4, 2, 100, 117, 16014, 16017, 59, 1, 8641, 4, 2, 59, 108, 16023, 16025, 1, 8640, 59, 1, 10604, 4, 2, 59, 118, 16034, 16036, 1, 961, 59, 1, 1009, 4, 3, 103, 110, 115, 16047, 16167, 16171, 104, 116, 4, 6, 97, 104, 108, 114, 115, 116, 16063, 16081, 16103, 16130, 16143, 16155, 114, 114, 111, 119, 4, 2, 59, 116, 16073, 16075, 1, 8594, 97, 105, 108, 59, 1, 8611, 97, 114, 112, 111, 111, 110, 4, 2, 100, 117, 16093, 16099, 111, 119, 110, 59, 1, 8641, 112, 59, 1, 8640, 101, 102, 116, 4, 2, 97, 104, 16112, 16120, 114, 114, 111, 119, 115, 59, 1, 8644, 97, 114, 112, 111, 111, 110, 115, 59, 1, 8652, 105, 103, 104, 116, 97, 114, 114, 111, 119, 115, 59, 1, 8649, 113, 117, 105, 103, 97, 114, 114, 111, 119, 59, 1, 8605, 104, 114, 101, 101, 116, 105, 109, 101, 115, 59, 1, 8908, 103, 59, 1, 730, 105, 110, 103, 100, 111, 116, 115, 101, 113, 59, 1, 8787, 4, 3, 97, 104, 109, 16191, 16196, 16201, 114, 114, 59, 1, 8644, 97, 114, 59, 1, 8652, 59, 1, 8207, 111, 117, 115, 116, 4, 2, 59, 97, 16214, 16216, 1, 9137, 99, 104, 101, 59, 1, 9137, 109, 105, 100, 59, 1, 10990, 4, 4, 97, 98, 112, 116, 16238, 16252, 16257, 16278, 4, 2, 110, 114, 16244, 16248, 103, 59, 1, 10221, 114, 59, 1, 8702, 114, 107, 59, 1, 10215, 4, 3, 97, 102, 108, 16265, 16269, 16273, 114, 59, 1, 10630, 59, 3, 55349, 56675, 117, 115, 59, 1, 10798, 105, 109, 101, 115, 59, 1, 10805, 4, 2, 97, 112, 16291, 16304, 114, 4, 2, 59, 103, 16298, 16300, 1, 41, 116, 59, 1, 10644, 111, 108, 105, 110, 116, 59, 1, 10770, 97, 114, 114, 59, 1, 8649, 4, 4, 97, 99, 104, 113, 16328, 16334, 16339, 16342, 113, 117, 111, 59, 1, 8250, 114, 59, 3, 55349, 56519, 59, 1, 8625, 4, 2, 98, 117, 16348, 16351, 59, 1, 93, 111, 4, 2, 59, 114, 16358, 16360, 1, 8217, 59, 1, 8217, 4, 3, 104, 105, 114, 16371, 16377, 16383, 114, 101, 101, 59, 1, 8908, 109, 101, 115, 59, 1, 8906, 105, 4, 4, 59, 101, 102, 108, 16394, 16396, 16399, 16402, 1, 9657, 59, 1, 8885, 59, 1, 9656, 116, 114, 105, 59, 1, 10702, 108, 117, 104, 97, 114, 59, 1, 10600, 59, 1, 8478, 4, 19, 97, 98, 99, 100, 101, 102, 104, 105, 108, 109, 111, 112, 113, 114, 115, 116, 117, 119, 122, 16459, 16466, 16472, 16572, 16590, 16672, 16687, 16746, 16844, 16850, 16924, 16963, 16988, 17115, 17121, 17154, 17206, 17614, 17656, 99, 117, 116, 101, 59, 1, 347, 113, 117, 111, 59, 1, 8218, 4, 10, 59, 69, 97, 99, 101, 105, 110, 112, 115, 121, 16494, 16496, 16499, 16513, 16518, 16531, 16536, 16556, 16564, 16569, 1, 8827, 59, 1, 10932, 4, 2, 112, 114, 16505, 16508, 59, 1, 10936, 111, 110, 59, 1, 353, 117, 101, 59, 1, 8829, 4, 2, 59, 100, 16524, 16526, 1, 10928, 105, 108, 59, 1, 351, 114, 99, 59, 1, 349, 4, 3, 69, 97, 115, 16544, 16547, 16551, 59, 1, 10934, 112, 59, 1, 10938, 105, 109, 59, 1, 8937, 111, 108, 105, 110, 116, 59, 1, 10771, 105, 109, 59, 1, 8831, 59, 1, 1089, 111, 116, 4, 3, 59, 98, 101, 16582, 16584, 16587, 1, 8901, 59, 1, 8865, 59, 1, 10854, 4, 7, 65, 97, 99, 109, 115, 116, 120, 16606, 16611, 16634, 16642, 16646, 16652, 16668, 114, 114, 59, 1, 8664, 114, 4, 2, 104, 114, 16618, 16622, 107, 59, 1, 10533, 4, 2, 59, 111, 16628, 16630, 1, 8600, 119, 59, 1, 8600, 116, 5, 167, 1, 59, 16640, 1, 167, 105, 59, 1, 59, 119, 97, 114, 59, 1, 10537, 109, 4, 2, 105, 110, 16659, 16665, 110, 117, 115, 59, 1, 8726, 59, 1, 8726, 116, 59, 1, 10038, 114, 4, 2, 59, 111, 16679, 16682, 3, 55349, 56624, 119, 110, 59, 1, 8994, 4, 4, 97, 99, 111, 121, 16697, 16702, 16716, 16739, 114, 112, 59, 1, 9839, 4, 2, 104, 121, 16708, 16713, 99, 121, 59, 1, 1097, 59, 1, 1096, 114, 116, 4, 2, 109, 112, 16724, 16729, 105, 100, 59, 1, 8739, 97, 114, 97, 108, 108, 101, 108, 59, 1, 8741, 5, 173, 1, 59, 16744, 1, 173, 4, 2, 103, 109, 16752, 16770, 109, 97, 4, 3, 59, 102, 118, 16762, 16764, 16767, 1, 963, 59, 1, 962, 59, 1, 962, 4, 8, 59, 100, 101, 103, 108, 110, 112, 114, 16788, 16790, 16795, 16806, 16817, 16828, 16832, 16838, 1, 8764, 111, 116, 59, 1, 10858, 4, 2, 59, 113, 16801, 16803, 1, 8771, 59, 1, 8771, 4, 2, 59, 69, 16812, 16814, 1, 10910, 59, 1, 10912, 4, 2, 59, 69, 16823, 16825, 1, 10909, 59, 1, 10911, 101, 59, 1, 8774, 108, 117, 115, 59, 1, 10788, 97, 114, 114, 59, 1, 10610, 97, 114, 114, 59, 1, 8592, 4, 4, 97, 101, 105, 116, 16860, 16883, 16891, 16904, 4, 2, 108, 115, 16866, 16878, 108, 115, 101, 116, 109, 105, 110, 117, 115, 59, 1, 8726, 104, 112, 59, 1, 10803, 112, 97, 114, 115, 108, 59, 1, 10724, 4, 2, 100, 108, 16897, 16900, 59, 1, 8739, 101, 59, 1, 8995, 4, 2, 59, 101, 16910, 16912, 1, 10922, 4, 2, 59, 115, 16918, 16920, 1, 10924, 59, 3, 10924, 65024, 4, 3, 102, 108, 112, 16932, 16938, 16958, 116, 99, 121, 59, 1, 1100, 4, 2, 59, 98, 16944, 16946, 1, 47, 4, 2, 59, 97, 16952, 16954, 1, 10692, 114, 59, 1, 9023, 102, 59, 3, 55349, 56676, 97, 4, 2, 100, 114, 16970, 16985, 101, 115, 4, 2, 59, 117, 16978, 16980, 1, 9824, 105, 116, 59, 1, 9824, 59, 1, 8741, 4, 3, 99, 115, 117, 16996, 17028, 17089, 4, 2, 97, 117, 17002, 17015, 112, 4, 2, 59, 115, 17009, 17011, 1, 8851, 59, 3, 8851, 65024, 112, 4, 2, 59, 115, 17022, 17024, 1, 8852, 59, 3, 8852, 65024, 117, 4, 2, 98, 112, 17035, 17062, 4, 3, 59, 101, 115, 17043, 17045, 17048, 1, 8847, 59, 1, 8849, 101, 116, 4, 2, 59, 101, 17056, 17058, 1, 8847, 113, 59, 1, 8849, 4, 3, 59, 101, 115, 17070, 17072, 17075, 1, 8848, 59, 1, 8850, 101, 116, 4, 2, 59, 101, 17083, 17085, 1, 8848, 113, 59, 1, 8850, 4, 3, 59, 97, 102, 17097, 17099, 17112, 1, 9633, 114, 4, 2, 101, 102, 17106, 17109, 59, 1, 9633, 59, 1, 9642, 59, 1, 9642, 97, 114, 114, 59, 1, 8594, 4, 4, 99, 101, 109, 116, 17131, 17136, 17142, 17148, 114, 59, 3, 55349, 56520, 116, 109, 110, 59, 1, 8726, 105, 108, 101, 59, 1, 8995, 97, 114, 102, 59, 1, 8902, 4, 2, 97, 114, 17160, 17172, 114, 4, 2, 59, 102, 17167, 17169, 1, 9734, 59, 1, 9733, 4, 2, 97, 110, 17178, 17202, 105, 103, 104, 116, 4, 2, 101, 112, 17188, 17197, 112, 115, 105, 108, 111, 110, 59, 1, 1013, 104, 105, 59, 1, 981, 115, 59, 1, 175, 4, 5, 98, 99, 109, 110, 112, 17218, 17351, 17420, 17423, 17427, 4, 9, 59, 69, 100, 101, 109, 110, 112, 114, 115, 17238, 17240, 17243, 17248, 17261, 17267, 17279, 17285, 17291, 1, 8834, 59, 1, 10949, 111, 116, 59, 1, 10941, 4, 2, 59, 100, 17254, 17256, 1, 8838, 111, 116, 59, 1, 10947, 117, 108, 116, 59, 1, 10945, 4, 2, 69, 101, 17273, 17276, 59, 1, 10955, 59, 1, 8842, 108, 117, 115, 59, 1, 10943, 97, 114, 114, 59, 1, 10617, 4, 3, 101, 105, 117, 17299, 17335, 17339, 116, 4, 3, 59, 101, 110, 17308, 17310, 17322, 1, 8834, 113, 4, 2, 59, 113, 17317, 17319, 1, 8838, 59, 1, 10949, 101, 113, 4, 2, 59, 113, 17330, 17332, 1, 8842, 59, 1, 10955, 109, 59, 1, 10951, 4, 2, 98, 112, 17345, 17348, 59, 1, 10965, 59, 1, 10963, 99, 4, 6, 59, 97, 99, 101, 110, 115, 17366, 17368, 17376, 17385, 17389, 17415, 1, 8827, 112, 112, 114, 111, 120, 59, 1, 10936, 117, 114, 108, 121, 101, 113, 59, 1, 8829, 113, 59, 1, 10928, 4, 3, 97, 101, 115, 17397, 17405, 17410, 112, 112, 114, 111, 120, 59, 1, 10938, 113, 113, 59, 1, 10934, 105, 109, 59, 1, 8937, 105, 109, 59, 1, 8831, 59, 1, 8721, 103, 59, 1, 9834, 4, 13, 49, 50, 51, 59, 69, 100, 101, 104, 108, 109, 110, 112, 115, 17455, 17462, 17469, 17476, 17478, 17481, 17496, 17509, 17524, 17530, 17536, 17548, 17554, 5, 185, 1, 59, 17460, 1, 185, 5, 178, 1, 59, 17467, 1, 178, 5, 179, 1, 59, 17474, 1, 179, 1, 8835, 59, 1, 10950, 4, 2, 111, 115, 17487, 17491, 116, 59, 1, 10942, 117, 98, 59, 1, 10968, 4, 2, 59, 100, 17502, 17504, 1, 8839, 111, 116, 59, 1, 10948, 115, 4, 2, 111, 117, 17516, 17520, 108, 59, 1, 10185, 98, 59, 1, 10967, 97, 114, 114, 59, 1, 10619, 117, 108, 116, 59, 1, 10946, 4, 2, 69, 101, 17542, 17545, 59, 1, 10956, 59, 1, 8843, 108, 117, 115, 59, 1, 10944, 4, 3, 101, 105, 117, 17562, 17598, 17602, 116, 4, 3, 59, 101, 110, 17571, 17573, 17585, 1, 8835, 113, 4, 2, 59, 113, 17580, 17582, 1, 8839, 59, 1, 10950, 101, 113, 4, 2, 59, 113, 17593, 17595, 1, 8843, 59, 1, 10956, 109, 59, 1, 10952, 4, 2, 98, 112, 17608, 17611, 59, 1, 10964, 59, 1, 10966, 4, 3, 65, 97, 110, 17622, 17627, 17650, 114, 114, 59, 1, 8665, 114, 4, 2, 104, 114, 17634, 17638, 107, 59, 1, 10534, 4, 2, 59, 111, 17644, 17646, 1, 8601, 119, 59, 1, 8601, 119, 97, 114, 59, 1, 10538, 108, 105, 103, 5, 223, 1, 59, 17664, 1, 223, 4, 13, 97, 98, 99, 100, 101, 102, 104, 105, 111, 112, 114, 115, 119, 17694, 17709, 17714, 17737, 17742, 17749, 17754, 17860, 17905, 17957, 17964, 18090, 18122, 4, 2, 114, 117, 17700, 17706, 103, 101, 116, 59, 1, 8982, 59, 1, 964, 114, 107, 59, 1, 9140, 4, 3, 97, 101, 121, 17722, 17728, 17734, 114, 111, 110, 59, 1, 357, 100, 105, 108, 59, 1, 355, 59, 1, 1090, 111, 116, 59, 1, 8411, 108, 114, 101, 99, 59, 1, 8981, 114, 59, 3, 55349, 56625, 4, 4, 101, 105, 107, 111, 17764, 17805, 17836, 17851, 4, 2, 114, 116, 17770, 17786, 101, 4, 2, 52, 102, 17777, 17780, 59, 1, 8756, 111, 114, 101, 59, 1, 8756, 97, 4, 3, 59, 115, 118, 17795, 17797, 17802, 1, 952, 121, 109, 59, 1, 977, 59, 1, 977, 4, 2, 99, 110, 17811, 17831, 107, 4, 2, 97, 115, 17818, 17826, 112, 112, 114, 111, 120, 59, 1, 8776, 105, 109, 59, 1, 8764, 115, 112, 59, 1, 8201, 4, 2, 97, 115, 17842, 17846, 112, 59, 1, 8776, 105, 109, 59, 1, 8764, 114, 110, 5, 254, 1, 59, 17858, 1, 254, 4, 3, 108, 109, 110, 17868, 17873, 17901, 100, 101, 59, 1, 732, 101, 115, 5, 215, 3, 59, 98, 100, 17884, 17886, 17898, 1, 215, 4, 2, 59, 97, 17892, 17894, 1, 8864, 114, 59, 1, 10801, 59, 1, 10800, 116, 59, 1, 8749, 4, 3, 101, 112, 115, 17913, 17917, 17953, 97, 59, 1, 10536, 4, 4, 59, 98, 99, 102, 17927, 17929, 17934, 17939, 1, 8868, 111, 116, 59, 1, 9014, 105, 114, 59, 1, 10993, 4, 2, 59, 111, 17945, 17948, 3, 55349, 56677, 114, 107, 59, 1, 10970, 97, 59, 1, 10537, 114, 105, 109, 101, 59, 1, 8244, 4, 3, 97, 105, 112, 17972, 17977, 18082, 100, 101, 59, 1, 8482, 4, 7, 97, 100, 101, 109, 112, 115, 116, 17993, 18051, 18056, 18059, 18066, 18072, 18076, 110, 103, 108, 101, 4, 5, 59, 100, 108, 113, 114, 18009, 18011, 18017, 18032, 18035, 1, 9653, 111, 119, 110, 59, 1, 9663, 101, 102, 116, 4, 2, 59, 101, 18026, 18028, 1, 9667, 113, 59, 1, 8884, 59, 1, 8796, 105, 103, 104, 116, 4, 2, 59, 101, 18045, 18047, 1, 9657, 113, 59, 1, 8885, 111, 116, 59, 1, 9708, 59, 1, 8796, 105, 110, 117, 115, 59, 1, 10810, 108, 117, 115, 59, 1, 10809, 98, 59, 1, 10701, 105, 109, 101, 59, 1, 10811, 101, 122, 105, 117, 109, 59, 1, 9186, 4, 3, 99, 104, 116, 18098, 18111, 18116, 4, 2, 114, 121, 18104, 18108, 59, 3, 55349, 56521, 59, 1, 1094, 99, 121, 59, 1, 1115, 114, 111, 107, 59, 1, 359, 4, 2, 105, 111, 18128, 18133, 120, 116, 59, 1, 8812, 104, 101, 97, 100, 4, 2, 108, 114, 18143, 18154, 101, 102, 116, 97, 114, 114, 111, 119, 59, 1, 8606, 105, 103, 104, 116, 97, 114, 114, 111, 119, 59, 1, 8608, 4, 18, 65, 72, 97, 98, 99, 100, 102, 103, 104, 108, 109, 111, 112, 114, 115, 116, 117, 119, 18204, 18209, 18214, 18234, 18250, 18268, 18292, 18308, 18319, 18343, 18379, 18397, 18413, 18504, 18547, 18553, 18584, 18603, 114, 114, 59, 1, 8657, 97, 114, 59, 1, 10595, 4, 2, 99, 114, 18220, 18230, 117, 116, 101, 5, 250, 1, 59, 18228, 1, 250, 114, 59, 1, 8593, 114, 4, 2, 99, 101, 18241, 18245, 121, 59, 1, 1118, 118, 101, 59, 1, 365, 4, 2, 105, 121, 18256, 18265, 114, 99, 5, 251, 1, 59, 18263, 1, 251, 59, 1, 1091, 4, 3, 97, 98, 104, 18276, 18281, 18287, 114, 114, 59, 1, 8645, 108, 97, 99, 59, 1, 369, 97, 114, 59, 1, 10606, 4, 2, 105, 114, 18298, 18304, 115, 104, 116, 59, 1, 10622, 59, 3, 55349, 56626, 114, 97, 118, 101, 5, 249, 1, 59, 18317, 1, 249, 4, 2, 97, 98, 18325, 18338, 114, 4, 2, 108, 114, 18332, 18335, 59, 1, 8639, 59, 1, 8638, 108, 107, 59, 1, 9600, 4, 2, 99, 116, 18349, 18374, 4, 2, 111, 114, 18355, 18369, 114, 110, 4, 2, 59, 101, 18363, 18365, 1, 8988, 114, 59, 1, 8988, 111, 112, 59, 1, 8975, 114, 105, 59, 1, 9720, 4, 2, 97, 108, 18385, 18390, 99, 114, 59, 1, 363, 5, 168, 1, 59, 18395, 1, 168, 4, 2, 103, 112, 18403, 18408, 111, 110, 59, 1, 371, 102, 59, 3, 55349, 56678, 4, 6, 97, 100, 104, 108, 115, 117, 18427, 18434, 18445, 18470, 18475, 18494, 114, 114, 111, 119, 59, 1, 8593, 111, 119, 110, 97, 114, 114, 111, 119, 59, 1, 8597, 97, 114, 112, 111, 111, 110, 4, 2, 108, 114, 18457, 18463, 101, 102, 116, 59, 1, 8639, 105, 103, 104, 116, 59, 1, 8638, 117, 115, 59, 1, 8846, 105, 4, 3, 59, 104, 108, 18484, 18486, 18489, 1, 965, 59, 1, 978, 111, 110, 59, 1, 965, 112, 97, 114, 114, 111, 119, 115, 59, 1, 8648, 4, 3, 99, 105, 116, 18512, 18537, 18542, 4, 2, 111, 114, 18518, 18532, 114, 110, 4, 2, 59, 101, 18526, 18528, 1, 8989, 114, 59, 1, 8989, 111, 112, 59, 1, 8974, 110, 103, 59, 1, 367, 114, 105, 59, 1, 9721, 99, 114, 59, 3, 55349, 56522, 4, 3, 100, 105, 114, 18561, 18566, 18572, 111, 116, 59, 1, 8944, 108, 100, 101, 59, 1, 361, 105, 4, 2, 59, 102, 18579, 18581, 1, 9653, 59, 1, 9652, 4, 2, 97, 109, 18590, 18595, 114, 114, 59, 1, 8648, 108, 5, 252, 1, 59, 18601, 1, 252, 97, 110, 103, 108, 101, 59, 1, 10663, 4, 15, 65, 66, 68, 97, 99, 100, 101, 102, 108, 110, 111, 112, 114, 115, 122, 18643, 18648, 18661, 18667, 18847, 18851, 18857, 18904, 18909, 18915, 18931, 18937, 18943, 18949, 18996, 114, 114, 59, 1, 8661, 97, 114, 4, 2, 59, 118, 18656, 18658, 1, 10984, 59, 1, 10985, 97, 115, 104, 59, 1, 8872, 4, 2, 110, 114, 18673, 18679, 103, 114, 116, 59, 1, 10652, 4, 7, 101, 107, 110, 112, 114, 115, 116, 18695, 18704, 18711, 18720, 18742, 18754, 18810, 112, 115, 105, 108, 111, 110, 59, 1, 1013, 97, 112, 112, 97, 59, 1, 1008, 111, 116, 104, 105, 110, 103, 59, 1, 8709, 4, 3, 104, 105, 114, 18728, 18732, 18735, 105, 59, 1, 981, 59, 1, 982, 111, 112, 116, 111, 59, 1, 8733, 4, 2, 59, 104, 18748, 18750, 1, 8597, 111, 59, 1, 1009, 4, 2, 105, 117, 18760, 18766, 103, 109, 97, 59, 1, 962, 4, 2, 98, 112, 18772, 18791, 115, 101, 116, 110, 101, 113, 4, 2, 59, 113, 18784, 18787, 3, 8842, 65024, 59, 3, 10955, 65024, 115, 101, 116, 110, 101, 113, 4, 2, 59, 113, 18803, 18806, 3, 8843, 65024, 59, 3, 10956, 65024, 4, 2, 104, 114, 18816, 18822, 101, 116, 97, 59, 1, 977, 105, 97, 110, 103, 108, 101, 4, 2, 108, 114, 18834, 18840, 101, 102, 116, 59, 1, 8882, 105, 103, 104, 116, 59, 1, 8883, 121, 59, 1, 1074, 97, 115, 104, 59, 1, 8866, 4, 3, 101, 108, 114, 18865, 18884, 18890, 4, 3, 59, 98, 101, 18873, 18875, 18880, 1, 8744, 97, 114, 59, 1, 8891, 113, 59, 1, 8794, 108, 105, 112, 59, 1, 8942, 4, 2, 98, 116, 18896, 18901, 97, 114, 59, 1, 124, 59, 1, 124, 114, 59, 3, 55349, 56627, 116, 114, 105, 59, 1, 8882, 115, 117, 4, 2, 98, 112, 18923, 18927, 59, 3, 8834, 8402, 59, 3, 8835, 8402, 112, 102, 59, 3, 55349, 56679, 114, 111, 112, 59, 1, 8733, 116, 114, 105, 59, 1, 8883, 4, 2, 99, 117, 18955, 18960, 114, 59, 3, 55349, 56523, 4, 2, 98, 112, 18966, 18981, 110, 4, 2, 69, 101, 18973, 18977, 59, 3, 10955, 65024, 59, 3, 8842, 65024, 110, 4, 2, 69, 101, 18988, 18992, 59, 3, 10956, 65024, 59, 3, 8843, 65024, 105, 103, 122, 97, 103, 59, 1, 10650, 4, 7, 99, 101, 102, 111, 112, 114, 115, 19020, 19026, 19061, 19066, 19072, 19075, 19089, 105, 114, 99, 59, 1, 373, 4, 2, 100, 105, 19032, 19055, 4, 2, 98, 103, 19038, 19043, 97, 114, 59, 1, 10847, 101, 4, 2, 59, 113, 19050, 19052, 1, 8743, 59, 1, 8793, 101, 114, 112, 59, 1, 8472, 114, 59, 3, 55349, 56628, 112, 102, 59, 3, 55349, 56680, 59, 1, 8472, 4, 2, 59, 101, 19081, 19083, 1, 8768, 97, 116, 104, 59, 1, 8768, 99, 114, 59, 3, 55349, 56524, 4, 14, 99, 100, 102, 104, 105, 108, 109, 110, 111, 114, 115, 117, 118, 119, 19125, 19146, 19152, 19157, 19173, 19176, 19192, 19197, 19202, 19236, 19252, 19269, 19286, 19291, 4, 3, 97, 105, 117, 19133, 19137, 19142, 112, 59, 1, 8898, 114, 99, 59, 1, 9711, 112, 59, 1, 8899, 116, 114, 105, 59, 1, 9661, 114, 59, 3, 55349, 56629, 4, 2, 65, 97, 19163, 19168, 114, 114, 59, 1, 10234, 114, 114, 59, 1, 10231, 59, 1, 958, 4, 2, 65, 97, 19182, 19187, 114, 114, 59, 1, 10232, 114, 114, 59, 1, 10229, 97, 112, 59, 1, 10236, 105, 115, 59, 1, 8955, 4, 3, 100, 112, 116, 19210, 19215, 19230, 111, 116, 59, 1, 10752, 4, 2, 102, 108, 19221, 19225, 59, 3, 55349, 56681, 117, 115, 59, 1, 10753, 105, 109, 101, 59, 1, 10754, 4, 2, 65, 97, 19242, 19247, 114, 114, 59, 1, 10233, 114, 114, 59, 1, 10230, 4, 2, 99, 113, 19258, 19263, 114, 59, 3, 55349, 56525, 99, 117, 112, 59, 1, 10758, 4, 2, 112, 116, 19275, 19281, 108, 117, 115, 59, 1, 10756, 114, 105, 59, 1, 9651, 101, 101, 59, 1, 8897, 101, 100, 103, 101, 59, 1, 8896, 4, 8, 97, 99, 101, 102, 105, 111, 115, 117, 19316, 19335, 19349, 19357, 19362, 19367, 19373, 19379, 99, 4, 2, 117, 121, 19323, 19332, 116, 101, 5, 253, 1, 59, 19330, 1, 253, 59, 1, 1103, 4, 2, 105, 121, 19341, 19346, 114, 99, 59, 1, 375, 59, 1, 1099, 110, 5, 165, 1, 59, 19355, 1, 165, 114, 59, 3, 55349, 56630, 99, 121, 59, 1, 1111, 112, 102, 59, 3, 55349, 56682, 99, 114, 59, 3, 55349, 56526, 4, 2, 99, 109, 19385, 19389, 121, 59, 1, 1102, 108, 5, 255, 1, 59, 19395, 1, 255, 4, 10, 97, 99, 100, 101, 102, 104, 105, 111, 115, 119, 19419, 19426, 19441, 19446, 19462, 19467, 19472, 19480, 19486, 19492, 99, 117, 116, 101, 59, 1, 378, 4, 2, 97, 121, 19432, 19438, 114, 111, 110, 59, 1, 382, 59, 1, 1079, 111, 116, 59, 1, 380, 4, 2, 101, 116, 19452, 19458, 116, 114, 102, 59, 1, 8488, 97, 59, 1, 950, 114, 59, 3, 55349, 56631, 99, 121, 59, 1, 1078, 103, 114, 97, 114, 114, 59, 1, 8669, 112, 102, 59, 3, 55349, 56683, 99, 114, 59, 3, 55349, 56527, 4, 2, 106, 110, 19498, 19501, 59, 1, 8205, 106, 59, 1, 8204]);
|
|
3357
|
-
const Bc = Dc, V = Ue,
|
|
3343
|
+
const Bc = Dc, V = Ue, xt = wc, S = dr, d = V.CODE_POINTS, Nt = V.CODE_POINT_SEQUENCES, Hc = {
|
|
3358
3344
|
128: 8364,
|
|
3359
3345
|
130: 8218,
|
|
3360
3346
|
131: 402,
|
|
@@ -3382,7 +3368,7 @@ const Bc = Dc, V = Ue, yt = wc, S = fr, d = V.CODE_POINTS, Nt = V.CODE_POINT_SEQ
|
|
|
3382
3368
|
156: 339,
|
|
3383
3369
|
158: 382,
|
|
3384
3370
|
159: 376
|
|
3385
|
-
}, as = 1 << 0, ls = 1 << 1, cs = 1 << 2, Fc = as | ls | cs, z = "DATA_STATE",
|
|
3371
|
+
}, as = 1 << 0, ls = 1 << 1, cs = 1 << 2, Fc = as | ls | cs, z = "DATA_STATE", Yt = "RCDATA_STATE", d1 = "RAWTEXT_STATE", it = "SCRIPT_DATA_STATE", us = "PLAINTEXT_STATE", ai = "TAG_OPEN_STATE", li = "END_TAG_OPEN_STATE", On = "TAG_NAME_STATE", ci = "RCDATA_LESS_THAN_SIGN_STATE", ui = "RCDATA_END_TAG_OPEN_STATE", hi = "RCDATA_END_TAG_NAME_STATE", di = "RAWTEXT_LESS_THAN_SIGN_STATE", fi = "RAWTEXT_END_TAG_OPEN_STATE", mi = "RAWTEXT_END_TAG_NAME_STATE", Ti = "SCRIPT_DATA_LESS_THAN_SIGN_STATE", pi = "SCRIPT_DATA_END_TAG_OPEN_STATE", Ei = "SCRIPT_DATA_END_TAG_NAME_STATE", gi = "SCRIPT_DATA_ESCAPE_START_STATE", _i = "SCRIPT_DATA_ESCAPE_START_DASH_STATE", Be = "SCRIPT_DATA_ESCAPED_STATE", Ai = "SCRIPT_DATA_ESCAPED_DASH_STATE", yn = "SCRIPT_DATA_ESCAPED_DASH_DASH_STATE", x1 = "SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN_STATE", Ci = "SCRIPT_DATA_ESCAPED_END_TAG_OPEN_STATE", Si = "SCRIPT_DATA_ESCAPED_END_TAG_NAME_STATE", Ni = "SCRIPT_DATA_DOUBLE_ESCAPE_START_STATE", Ze = "SCRIPT_DATA_DOUBLE_ESCAPED_STATE", Ii = "SCRIPT_DATA_DOUBLE_ESCAPED_DASH_STATE", ki = "SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH_STATE", R1 = "SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN_STATE", Oi = "SCRIPT_DATA_DOUBLE_ESCAPE_END_STATE", ze = "BEFORE_ATTRIBUTE_NAME_STATE", b1 = "ATTRIBUTE_NAME_STATE", xn = "AFTER_ATTRIBUTE_NAME_STATE", Rn = "BEFORE_ATTRIBUTE_VALUE_STATE", M1 = "ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE", L1 = "ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE", P1 = "ATTRIBUTE_VALUE_UNQUOTED_STATE", bn = "AFTER_ATTRIBUTE_VALUE_QUOTED_STATE", ht = "SELF_CLOSING_START_TAG_STATE", o1 = "BOGUS_COMMENT_STATE", yi = "MARKUP_DECLARATION_OPEN_STATE", xi = "COMMENT_START_STATE", Ri = "COMMENT_START_DASH_STATE", dt = "COMMENT_STATE", bi = "COMMENT_LESS_THAN_SIGN_STATE", Mi = "COMMENT_LESS_THAN_SIGN_BANG_STATE", Li = "COMMENT_LESS_THAN_SIGN_BANG_DASH_STATE", Pi = "COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH_STATE", D1 = "COMMENT_END_DASH_STATE", w1 = "COMMENT_END_STATE", Di = "COMMENT_END_BANG_STATE", wi = "DOCTYPE_STATE", B1 = "BEFORE_DOCTYPE_NAME_STATE", H1 = "DOCTYPE_NAME_STATE", Bi = "AFTER_DOCTYPE_NAME_STATE", Hi = "AFTER_DOCTYPE_PUBLIC_KEYWORD_STATE", Fi = "BEFORE_DOCTYPE_PUBLIC_IDENTIFIER_STATE", Mn = "DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED_STATE", Ln = "DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED_STATE", Pn = "AFTER_DOCTYPE_PUBLIC_IDENTIFIER_STATE", vi = "BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS_STATE", Ui = "AFTER_DOCTYPE_SYSTEM_KEYWORD_STATE", Gi = "BEFORE_DOCTYPE_SYSTEM_IDENTIFIER_STATE", s1 = "DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED_STATE", a1 = "DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED_STATE", Dn = "AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE", et = "BOGUS_DOCTYPE_STATE", F1 = "CDATA_SECTION_STATE", Ki = "CDATA_SECTION_BRACKET_STATE", zi = "CDATA_SECTION_END_STATE", Ut = "CHARACTER_REFERENCE_STATE", Yi = "NAMED_CHARACTER_REFERENCE_STATE", ji = "AMBIGUOS_AMPERSAND_STATE", qi = "NUMERIC_CHARACTER_REFERENCE_STATE", Qi = "HEXADEMICAL_CHARACTER_REFERENCE_START_STATE", Wi = "DECIMAL_CHARACTER_REFERENCE_START_STATE", $i = "HEXADEMICAL_CHARACTER_REFERENCE_STATE", Vi = "DECIMAL_CHARACTER_REFERENCE_STATE", l1 = "NUMERIC_CHARACTER_REFERENCE_END_STATE";
|
|
3386
3372
|
function ee(e) {
|
|
3387
3373
|
return e === d.SPACE || e === d.LINE_FEED || e === d.TABULATION || e === d.FORM_FEED;
|
|
3388
3374
|
}
|
|
@@ -3398,7 +3384,7 @@ function Ot(e) {
|
|
|
3398
3384
|
function pt(e) {
|
|
3399
3385
|
return Ot(e) || He(e);
|
|
3400
3386
|
}
|
|
3401
|
-
function
|
|
3387
|
+
function wn(e) {
|
|
3402
3388
|
return pt(e) || T1(e);
|
|
3403
3389
|
}
|
|
3404
3390
|
function hs(e) {
|
|
@@ -3413,23 +3399,23 @@ function vc(e) {
|
|
|
3413
3399
|
function q1(e) {
|
|
3414
3400
|
return e + 32;
|
|
3415
3401
|
}
|
|
3416
|
-
function
|
|
3402
|
+
function ne(e) {
|
|
3417
3403
|
return e <= 65535 ? String.fromCharCode(e) : (e -= 65536, String.fromCharCode(e >>> 10 & 1023 | 55296) + String.fromCharCode(56320 | e & 1023));
|
|
3418
3404
|
}
|
|
3419
3405
|
function ft(e) {
|
|
3420
3406
|
return String.fromCharCode(q1(e));
|
|
3421
3407
|
}
|
|
3422
3408
|
function Xi(e, t) {
|
|
3423
|
-
const n =
|
|
3409
|
+
const n = xt[++e];
|
|
3424
3410
|
let r = ++e, i = r + n - 1;
|
|
3425
3411
|
for (; r <= i; ) {
|
|
3426
|
-
const o = r + i >>> 1, s =
|
|
3412
|
+
const o = r + i >>> 1, s = xt[o];
|
|
3427
3413
|
if (s < t)
|
|
3428
3414
|
r = o + 1;
|
|
3429
3415
|
else if (s > t)
|
|
3430
3416
|
i = o - 1;
|
|
3431
3417
|
else
|
|
3432
|
-
return
|
|
3418
|
+
return xt[o + n];
|
|
3433
3419
|
}
|
|
3434
3420
|
return -1;
|
|
3435
3421
|
}
|
|
@@ -3586,7 +3572,7 @@ let be = class _e {
|
|
|
3586
3572
|
}
|
|
3587
3573
|
_emitCodePoint(t) {
|
|
3588
3574
|
let n = _e.CHARACTER_TOKEN;
|
|
3589
|
-
ee(t) ? n = _e.WHITESPACE_CHARACTER_TOKEN : t === d.NULL && (n = _e.NULL_CHARACTER_TOKEN), this._appendCharToCurrentCharacterToken(n,
|
|
3575
|
+
ee(t) ? n = _e.WHITESPACE_CHARACTER_TOKEN : t === d.NULL && (n = _e.NULL_CHARACTER_TOKEN), this._appendCharToCurrentCharacterToken(n, ne(t));
|
|
3590
3576
|
}
|
|
3591
3577
|
_emitSeveralCodePoints(t) {
|
|
3592
3578
|
for (let n = 0; n < t.length; n++)
|
|
@@ -3601,8 +3587,8 @@ let be = class _e {
|
|
|
3601
3587
|
_matchNamedCharacterReference(t) {
|
|
3602
3588
|
let n = null, r = 1, i = Xi(0, t);
|
|
3603
3589
|
for (this.tempBuff.push(t); i > -1; ) {
|
|
3604
|
-
const o =
|
|
3605
|
-
s && o & as && (n = o & ls ? [
|
|
3590
|
+
const o = xt[i], s = o < Fc;
|
|
3591
|
+
s && o & as && (n = o & ls ? [xt[++i], xt[++i]] : [xt[++i]], r = 0);
|
|
3606
3592
|
const c = this._consume();
|
|
3607
3593
|
if (this.tempBuff.push(c), r++, c === d.EOF)
|
|
3608
3594
|
break;
|
|
@@ -3618,14 +3604,14 @@ let be = class _e {
|
|
|
3618
3604
|
_isCharacterReferenceAttributeQuirk(t) {
|
|
3619
3605
|
if (!t && this._isCharacterReferenceInAttribute()) {
|
|
3620
3606
|
const n = this._consume();
|
|
3621
|
-
return this._unconsume(), n === d.EQUALS_SIGN ||
|
|
3607
|
+
return this._unconsume(), n === d.EQUALS_SIGN || wn(n);
|
|
3622
3608
|
}
|
|
3623
3609
|
return !1;
|
|
3624
3610
|
}
|
|
3625
3611
|
_flushCodePointsConsumedAsCharacterReference() {
|
|
3626
3612
|
if (this._isCharacterReferenceInAttribute())
|
|
3627
3613
|
for (let t = 0; t < this.tempBuff.length; t++)
|
|
3628
|
-
this.currentAttr.value +=
|
|
3614
|
+
this.currentAttr.value += ne(this.tempBuff[t]);
|
|
3629
3615
|
else
|
|
3630
3616
|
this._emitSeveralCodePoints(this.tempBuff);
|
|
3631
3617
|
this.tempBuff = [];
|
|
@@ -3634,12 +3620,12 @@ let be = class _e {
|
|
|
3634
3620
|
// Data state
|
|
3635
3621
|
//------------------------------------------------------------------
|
|
3636
3622
|
[z](t) {
|
|
3637
|
-
this.preprocessor.dropParsedChunk(), t === d.LESS_THAN_SIGN ? this.state = ai : t === d.AMPERSAND ? (this.returnState = z, this.state =
|
|
3623
|
+
this.preprocessor.dropParsedChunk(), t === d.LESS_THAN_SIGN ? this.state = ai : t === d.AMPERSAND ? (this.returnState = z, this.state = Ut) : t === d.NULL ? (this._err(S.unexpectedNullCharacter), this._emitCodePoint(t)) : t === d.EOF ? this._emitEOFToken() : this._emitCodePoint(t);
|
|
3638
3624
|
}
|
|
3639
3625
|
// RCDATA state
|
|
3640
3626
|
//------------------------------------------------------------------
|
|
3641
|
-
[
|
|
3642
|
-
this.preprocessor.dropParsedChunk(), t === d.AMPERSAND ? (this.returnState =
|
|
3627
|
+
[Yt](t) {
|
|
3628
|
+
this.preprocessor.dropParsedChunk(), t === d.AMPERSAND ? (this.returnState = Yt, this.state = Ut) : t === d.LESS_THAN_SIGN ? this.state = ci : t === d.NULL ? (this._err(S.unexpectedNullCharacter), this._emitChars(V.REPLACEMENT_CHARACTER)) : t === d.EOF ? this._emitEOFToken() : this._emitCodePoint(t);
|
|
3643
3629
|
}
|
|
3644
3630
|
// RAWTEXT state
|
|
3645
3631
|
//------------------------------------------------------------------
|
|
@@ -3659,27 +3645,27 @@ let be = class _e {
|
|
|
3659
3645
|
// Tag open state
|
|
3660
3646
|
//------------------------------------------------------------------
|
|
3661
3647
|
[ai](t) {
|
|
3662
|
-
t === d.EXCLAMATION_MARK ? this.state = yi : t === d.SOLIDUS ? this.state = li : pt(t) ? (this._createStartTagToken(), this._reconsumeInState(
|
|
3648
|
+
t === d.EXCLAMATION_MARK ? this.state = yi : t === d.SOLIDUS ? this.state = li : pt(t) ? (this._createStartTagToken(), this._reconsumeInState(On)) : t === d.QUESTION_MARK ? (this._err(S.unexpectedQuestionMarkInsteadOfTagName), this._createCommentToken(), this._reconsumeInState(o1)) : t === d.EOF ? (this._err(S.eofBeforeTagName), this._emitChars("<"), this._emitEOFToken()) : (this._err(S.invalidFirstCharacterOfTagName), this._emitChars("<"), this._reconsumeInState(z));
|
|
3663
3649
|
}
|
|
3664
3650
|
// End tag open state
|
|
3665
3651
|
//------------------------------------------------------------------
|
|
3666
3652
|
[li](t) {
|
|
3667
|
-
pt(t) ? (this._createEndTagToken(), this._reconsumeInState(
|
|
3653
|
+
pt(t) ? (this._createEndTagToken(), this._reconsumeInState(On)) : t === d.GREATER_THAN_SIGN ? (this._err(S.missingEndTagName), this.state = z) : t === d.EOF ? (this._err(S.eofBeforeTagName), this._emitChars("</"), this._emitEOFToken()) : (this._err(S.invalidFirstCharacterOfTagName), this._createCommentToken(), this._reconsumeInState(o1));
|
|
3668
3654
|
}
|
|
3669
3655
|
// Tag name state
|
|
3670
3656
|
//------------------------------------------------------------------
|
|
3671
|
-
[
|
|
3672
|
-
ee(t) ? this.state = ze : t === d.SOLIDUS ? this.state = ht : t === d.GREATER_THAN_SIGN ? (this.state = z, this._emitCurrentToken()) : He(t) ? this.currentToken.tagName += ft(t) : t === d.NULL ? (this._err(S.unexpectedNullCharacter), this.currentToken.tagName += V.REPLACEMENT_CHARACTER) : t === d.EOF ? (this._err(S.eofInTag), this._emitEOFToken()) : this.currentToken.tagName +=
|
|
3657
|
+
[On](t) {
|
|
3658
|
+
ee(t) ? this.state = ze : t === d.SOLIDUS ? this.state = ht : t === d.GREATER_THAN_SIGN ? (this.state = z, this._emitCurrentToken()) : He(t) ? this.currentToken.tagName += ft(t) : t === d.NULL ? (this._err(S.unexpectedNullCharacter), this.currentToken.tagName += V.REPLACEMENT_CHARACTER) : t === d.EOF ? (this._err(S.eofInTag), this._emitEOFToken()) : this.currentToken.tagName += ne(t);
|
|
3673
3659
|
}
|
|
3674
3660
|
// RCDATA less-than sign state
|
|
3675
3661
|
//------------------------------------------------------------------
|
|
3676
3662
|
[ci](t) {
|
|
3677
|
-
t === d.SOLIDUS ? (this.tempBuff = [], this.state = ui) : (this._emitChars("<"), this._reconsumeInState(
|
|
3663
|
+
t === d.SOLIDUS ? (this.tempBuff = [], this.state = ui) : (this._emitChars("<"), this._reconsumeInState(Yt));
|
|
3678
3664
|
}
|
|
3679
3665
|
// RCDATA end tag open state
|
|
3680
3666
|
//------------------------------------------------------------------
|
|
3681
3667
|
[ui](t) {
|
|
3682
|
-
pt(t) ? (this._createEndTagToken(), this._reconsumeInState(hi)) : (this._emitChars("</"), this._reconsumeInState(
|
|
3668
|
+
pt(t) ? (this._createEndTagToken(), this._reconsumeInState(hi)) : (this._emitChars("</"), this._reconsumeInState(Yt));
|
|
3683
3669
|
}
|
|
3684
3670
|
// RCDATA end tag name state
|
|
3685
3671
|
//------------------------------------------------------------------
|
|
@@ -3687,7 +3673,7 @@ let be = class _e {
|
|
|
3687
3673
|
if (He(t))
|
|
3688
3674
|
this.currentToken.tagName += ft(t), this.tempBuff.push(t);
|
|
3689
3675
|
else if (Ot(t))
|
|
3690
|
-
this.currentToken.tagName +=
|
|
3676
|
+
this.currentToken.tagName += ne(t), this.tempBuff.push(t);
|
|
3691
3677
|
else {
|
|
3692
3678
|
if (this.lastStartTagName === this.currentToken.tagName) {
|
|
3693
3679
|
if (ee(t)) {
|
|
@@ -3703,7 +3689,7 @@ let be = class _e {
|
|
|
3703
3689
|
return;
|
|
3704
3690
|
}
|
|
3705
3691
|
}
|
|
3706
|
-
this._emitChars("</"), this._emitSeveralCodePoints(this.tempBuff), this._reconsumeInState(
|
|
3692
|
+
this._emitChars("</"), this._emitSeveralCodePoints(this.tempBuff), this._reconsumeInState(Yt);
|
|
3707
3693
|
}
|
|
3708
3694
|
}
|
|
3709
3695
|
// RAWTEXT less-than sign state
|
|
@@ -3722,7 +3708,7 @@ let be = class _e {
|
|
|
3722
3708
|
if (He(t))
|
|
3723
3709
|
this.currentToken.tagName += ft(t), this.tempBuff.push(t);
|
|
3724
3710
|
else if (Ot(t))
|
|
3725
|
-
this.currentToken.tagName +=
|
|
3711
|
+
this.currentToken.tagName += ne(t), this.tempBuff.push(t);
|
|
3726
3712
|
else {
|
|
3727
3713
|
if (this.lastStartTagName === this.currentToken.tagName) {
|
|
3728
3714
|
if (ee(t)) {
|
|
@@ -3757,7 +3743,7 @@ let be = class _e {
|
|
|
3757
3743
|
if (He(t))
|
|
3758
3744
|
this.currentToken.tagName += ft(t), this.tempBuff.push(t);
|
|
3759
3745
|
else if (Ot(t))
|
|
3760
|
-
this.currentToken.tagName +=
|
|
3746
|
+
this.currentToken.tagName += ne(t), this.tempBuff.push(t);
|
|
3761
3747
|
else {
|
|
3762
3748
|
if (this.lastStartTagName === this.currentToken.tagName) {
|
|
3763
3749
|
if (ee(t)) {
|
|
@@ -3782,7 +3768,7 @@ let be = class _e {
|
|
|
3782
3768
|
// Script data escape start dash state
|
|
3783
3769
|
//------------------------------------------------------------------
|
|
3784
3770
|
[_i](t) {
|
|
3785
|
-
t === d.HYPHEN_MINUS ? (this.state =
|
|
3771
|
+
t === d.HYPHEN_MINUS ? (this.state = yn, this._emitChars("-")) : this._reconsumeInState(it);
|
|
3786
3772
|
}
|
|
3787
3773
|
// Script data escaped state
|
|
3788
3774
|
//------------------------------------------------------------------
|
|
@@ -3792,11 +3778,11 @@ let be = class _e {
|
|
|
3792
3778
|
// Script data escaped dash state
|
|
3793
3779
|
//------------------------------------------------------------------
|
|
3794
3780
|
[Ai](t) {
|
|
3795
|
-
t === d.HYPHEN_MINUS ? (this.state =
|
|
3781
|
+
t === d.HYPHEN_MINUS ? (this.state = yn, this._emitChars("-")) : t === d.LESS_THAN_SIGN ? this.state = x1 : t === d.NULL ? (this._err(S.unexpectedNullCharacter), this.state = Be, this._emitChars(V.REPLACEMENT_CHARACTER)) : t === d.EOF ? (this._err(S.eofInScriptHtmlCommentLikeText), this._emitEOFToken()) : (this.state = Be, this._emitCodePoint(t));
|
|
3796
3782
|
}
|
|
3797
3783
|
// Script data escaped dash dash state
|
|
3798
3784
|
//------------------------------------------------------------------
|
|
3799
|
-
[
|
|
3785
|
+
[yn](t) {
|
|
3800
3786
|
t === d.HYPHEN_MINUS ? this._emitChars("-") : t === d.LESS_THAN_SIGN ? this.state = x1 : t === d.GREATER_THAN_SIGN ? (this.state = it, this._emitChars(">")) : t === d.NULL ? (this._err(S.unexpectedNullCharacter), this.state = Be, this._emitChars(V.REPLACEMENT_CHARACTER)) : t === d.EOF ? (this._err(S.eofInScriptHtmlCommentLikeText), this._emitEOFToken()) : (this.state = Be, this._emitCodePoint(t));
|
|
3801
3787
|
}
|
|
3802
3788
|
// Script data escaped less-than sign state
|
|
@@ -3815,7 +3801,7 @@ let be = class _e {
|
|
|
3815
3801
|
if (He(t))
|
|
3816
3802
|
this.currentToken.tagName += ft(t), this.tempBuff.push(t);
|
|
3817
3803
|
else if (Ot(t))
|
|
3818
|
-
this.currentToken.tagName +=
|
|
3804
|
+
this.currentToken.tagName += ne(t), this.tempBuff.push(t);
|
|
3819
3805
|
else {
|
|
3820
3806
|
if (this.lastStartTagName === this.currentToken.tagName) {
|
|
3821
3807
|
if (ee(t)) {
|
|
@@ -3867,41 +3853,41 @@ let be = class _e {
|
|
|
3867
3853
|
// Before attribute name state
|
|
3868
3854
|
//------------------------------------------------------------------
|
|
3869
3855
|
[ze](t) {
|
|
3870
|
-
ee(t) || (t === d.SOLIDUS || t === d.GREATER_THAN_SIGN || t === d.EOF ? this._reconsumeInState(
|
|
3856
|
+
ee(t) || (t === d.SOLIDUS || t === d.GREATER_THAN_SIGN || t === d.EOF ? this._reconsumeInState(xn) : t === d.EQUALS_SIGN ? (this._err(S.unexpectedEqualsSignBeforeAttributeName), this._createAttr("="), this.state = b1) : (this._createAttr(""), this._reconsumeInState(b1)));
|
|
3871
3857
|
}
|
|
3872
3858
|
// Attribute name state
|
|
3873
3859
|
//------------------------------------------------------------------
|
|
3874
3860
|
[b1](t) {
|
|
3875
|
-
ee(t) || t === d.SOLIDUS || t === d.GREATER_THAN_SIGN || t === d.EOF ? (this._leaveAttrName(
|
|
3861
|
+
ee(t) || t === d.SOLIDUS || t === d.GREATER_THAN_SIGN || t === d.EOF ? (this._leaveAttrName(xn), this._unconsume()) : t === d.EQUALS_SIGN ? this._leaveAttrName(Rn) : He(t) ? this.currentAttr.name += ft(t) : t === d.QUOTATION_MARK || t === d.APOSTROPHE || t === d.LESS_THAN_SIGN ? (this._err(S.unexpectedCharacterInAttributeName), this.currentAttr.name += ne(t)) : t === d.NULL ? (this._err(S.unexpectedNullCharacter), this.currentAttr.name += V.REPLACEMENT_CHARACTER) : this.currentAttr.name += ne(t);
|
|
3876
3862
|
}
|
|
3877
3863
|
// After attribute name state
|
|
3878
3864
|
//------------------------------------------------------------------
|
|
3879
|
-
[
|
|
3880
|
-
ee(t) || (t === d.SOLIDUS ? this.state = ht : t === d.EQUALS_SIGN ? this.state =
|
|
3865
|
+
[xn](t) {
|
|
3866
|
+
ee(t) || (t === d.SOLIDUS ? this.state = ht : t === d.EQUALS_SIGN ? this.state = Rn : t === d.GREATER_THAN_SIGN ? (this.state = z, this._emitCurrentToken()) : t === d.EOF ? (this._err(S.eofInTag), this._emitEOFToken()) : (this._createAttr(""), this._reconsumeInState(b1)));
|
|
3881
3867
|
}
|
|
3882
3868
|
// Before attribute value state
|
|
3883
3869
|
//------------------------------------------------------------------
|
|
3884
|
-
[
|
|
3870
|
+
[Rn](t) {
|
|
3885
3871
|
ee(t) || (t === d.QUOTATION_MARK ? this.state = M1 : t === d.APOSTROPHE ? this.state = L1 : t === d.GREATER_THAN_SIGN ? (this._err(S.missingAttributeValue), this.state = z, this._emitCurrentToken()) : this._reconsumeInState(P1));
|
|
3886
3872
|
}
|
|
3887
3873
|
// Attribute value (double-quoted) state
|
|
3888
3874
|
//------------------------------------------------------------------
|
|
3889
3875
|
[M1](t) {
|
|
3890
|
-
t === d.QUOTATION_MARK ? this.state =
|
|
3876
|
+
t === d.QUOTATION_MARK ? this.state = bn : t === d.AMPERSAND ? (this.returnState = M1, this.state = Ut) : t === d.NULL ? (this._err(S.unexpectedNullCharacter), this.currentAttr.value += V.REPLACEMENT_CHARACTER) : t === d.EOF ? (this._err(S.eofInTag), this._emitEOFToken()) : this.currentAttr.value += ne(t);
|
|
3891
3877
|
}
|
|
3892
3878
|
// Attribute value (single-quoted) state
|
|
3893
3879
|
//------------------------------------------------------------------
|
|
3894
3880
|
[L1](t) {
|
|
3895
|
-
t === d.APOSTROPHE ? this.state =
|
|
3881
|
+
t === d.APOSTROPHE ? this.state = bn : t === d.AMPERSAND ? (this.returnState = L1, this.state = Ut) : t === d.NULL ? (this._err(S.unexpectedNullCharacter), this.currentAttr.value += V.REPLACEMENT_CHARACTER) : t === d.EOF ? (this._err(S.eofInTag), this._emitEOFToken()) : this.currentAttr.value += ne(t);
|
|
3896
3882
|
}
|
|
3897
3883
|
// Attribute value (unquoted) state
|
|
3898
3884
|
//------------------------------------------------------------------
|
|
3899
3885
|
[P1](t) {
|
|
3900
|
-
ee(t) ? this._leaveAttrValue(ze) : t === d.AMPERSAND ? (this.returnState = P1, this.state =
|
|
3886
|
+
ee(t) ? this._leaveAttrValue(ze) : t === d.AMPERSAND ? (this.returnState = P1, this.state = Ut) : t === d.GREATER_THAN_SIGN ? (this._leaveAttrValue(z), this._emitCurrentToken()) : t === d.NULL ? (this._err(S.unexpectedNullCharacter), this.currentAttr.value += V.REPLACEMENT_CHARACTER) : t === d.QUOTATION_MARK || t === d.APOSTROPHE || t === d.LESS_THAN_SIGN || t === d.EQUALS_SIGN || t === d.GRAVE_ACCENT ? (this._err(S.unexpectedCharacterInUnquotedAttributeValue), this.currentAttr.value += ne(t)) : t === d.EOF ? (this._err(S.eofInTag), this._emitEOFToken()) : this.currentAttr.value += ne(t);
|
|
3901
3887
|
}
|
|
3902
3888
|
// After attribute value (quoted) state
|
|
3903
3889
|
//------------------------------------------------------------------
|
|
3904
|
-
[
|
|
3890
|
+
[bn](t) {
|
|
3905
3891
|
ee(t) ? this._leaveAttrValue(ze) : t === d.SOLIDUS ? this._leaveAttrValue(ht) : t === d.GREATER_THAN_SIGN ? (this._leaveAttrValue(z), this._emitCurrentToken()) : t === d.EOF ? (this._err(S.eofInTag), this._emitEOFToken()) : (this._err(S.missingWhitespaceBetweenAttributes), this._reconsumeInState(ze));
|
|
3906
3892
|
}
|
|
3907
3893
|
// Self-closing start tag state
|
|
@@ -3912,7 +3898,7 @@ let be = class _e {
|
|
|
3912
3898
|
// Bogus comment state
|
|
3913
3899
|
//------------------------------------------------------------------
|
|
3914
3900
|
[o1](t) {
|
|
3915
|
-
t === d.GREATER_THAN_SIGN ? (this.state = z, this._emitCurrentToken()) : t === d.EOF ? (this._emitCurrentToken(), this._emitEOFToken()) : t === d.NULL ? (this._err(S.unexpectedNullCharacter), this.currentToken.data += V.REPLACEMENT_CHARACTER) : this.currentToken.data +=
|
|
3901
|
+
t === d.GREATER_THAN_SIGN ? (this.state = z, this._emitCurrentToken()) : t === d.EOF ? (this._emitCurrentToken(), this._emitEOFToken()) : t === d.NULL ? (this._err(S.unexpectedNullCharacter), this.currentToken.data += V.REPLACEMENT_CHARACTER) : this.currentToken.data += ne(t);
|
|
3916
3902
|
}
|
|
3917
3903
|
// Markup declaration open state
|
|
3918
3904
|
//------------------------------------------------------------------
|
|
@@ -3932,7 +3918,7 @@ let be = class _e {
|
|
|
3932
3918
|
// Comment state
|
|
3933
3919
|
//------------------------------------------------------------------
|
|
3934
3920
|
[dt](t) {
|
|
3935
|
-
t === d.HYPHEN_MINUS ? this.state = D1 : t === d.LESS_THAN_SIGN ? (this.currentToken.data += "<", this.state = bi) : t === d.NULL ? (this._err(S.unexpectedNullCharacter), this.currentToken.data += V.REPLACEMENT_CHARACTER) : t === d.EOF ? (this._err(S.eofInComment), this._emitCurrentToken(), this._emitEOFToken()) : this.currentToken.data +=
|
|
3921
|
+
t === d.HYPHEN_MINUS ? this.state = D1 : t === d.LESS_THAN_SIGN ? (this.currentToken.data += "<", this.state = bi) : t === d.NULL ? (this._err(S.unexpectedNullCharacter), this.currentToken.data += V.REPLACEMENT_CHARACTER) : t === d.EOF ? (this._err(S.eofInComment), this._emitCurrentToken(), this._emitEOFToken()) : this.currentToken.data += ne(t);
|
|
3936
3922
|
}
|
|
3937
3923
|
// Comment less-than sign state
|
|
3938
3924
|
//------------------------------------------------------------------
|
|
@@ -3977,12 +3963,12 @@ let be = class _e {
|
|
|
3977
3963
|
// Before DOCTYPE name state
|
|
3978
3964
|
//------------------------------------------------------------------
|
|
3979
3965
|
[B1](t) {
|
|
3980
|
-
ee(t) || (He(t) ? (this._createDoctypeToken(ft(t)), this.state = H1) : t === d.NULL ? (this._err(S.unexpectedNullCharacter), this._createDoctypeToken(V.REPLACEMENT_CHARACTER), this.state = H1) : t === d.GREATER_THAN_SIGN ? (this._err(S.missingDoctypeName), this._createDoctypeToken(null), this.currentToken.forceQuirks = !0, this._emitCurrentToken(), this.state = z) : t === d.EOF ? (this._err(S.eofInDoctype), this._createDoctypeToken(null), this.currentToken.forceQuirks = !0, this._emitCurrentToken(), this._emitEOFToken()) : (this._createDoctypeToken(
|
|
3966
|
+
ee(t) || (He(t) ? (this._createDoctypeToken(ft(t)), this.state = H1) : t === d.NULL ? (this._err(S.unexpectedNullCharacter), this._createDoctypeToken(V.REPLACEMENT_CHARACTER), this.state = H1) : t === d.GREATER_THAN_SIGN ? (this._err(S.missingDoctypeName), this._createDoctypeToken(null), this.currentToken.forceQuirks = !0, this._emitCurrentToken(), this.state = z) : t === d.EOF ? (this._err(S.eofInDoctype), this._createDoctypeToken(null), this.currentToken.forceQuirks = !0, this._emitCurrentToken(), this._emitEOFToken()) : (this._createDoctypeToken(ne(t)), this.state = H1));
|
|
3981
3967
|
}
|
|
3982
3968
|
// DOCTYPE name state
|
|
3983
3969
|
//------------------------------------------------------------------
|
|
3984
3970
|
[H1](t) {
|
|
3985
|
-
ee(t) ? this.state = Bi : t === d.GREATER_THAN_SIGN ? (this.state = z, this._emitCurrentToken()) : He(t) ? this.currentToken.name += ft(t) : t === d.NULL ? (this._err(S.unexpectedNullCharacter), this.currentToken.name += V.REPLACEMENT_CHARACTER) : t === d.EOF ? (this._err(S.eofInDoctype), this.currentToken.forceQuirks = !0, this._emitCurrentToken(), this._emitEOFToken()) : this.currentToken.name +=
|
|
3971
|
+
ee(t) ? this.state = Bi : t === d.GREATER_THAN_SIGN ? (this.state = z, this._emitCurrentToken()) : He(t) ? this.currentToken.name += ft(t) : t === d.NULL ? (this._err(S.unexpectedNullCharacter), this.currentToken.name += V.REPLACEMENT_CHARACTER) : t === d.EOF ? (this._err(S.eofInDoctype), this.currentToken.forceQuirks = !0, this._emitCurrentToken(), this._emitEOFToken()) : this.currentToken.name += ne(t);
|
|
3986
3972
|
}
|
|
3987
3973
|
// After DOCTYPE name state
|
|
3988
3974
|
//------------------------------------------------------------------
|
|
@@ -3992,26 +3978,26 @@ let be = class _e {
|
|
|
3992
3978
|
// After DOCTYPE public keyword state
|
|
3993
3979
|
//------------------------------------------------------------------
|
|
3994
3980
|
[Hi](t) {
|
|
3995
|
-
ee(t) ? this.state = Fi : t === d.QUOTATION_MARK ? (this._err(S.missingWhitespaceAfterDoctypePublicKeyword), this.currentToken.publicId = "", this.state =
|
|
3981
|
+
ee(t) ? this.state = Fi : t === d.QUOTATION_MARK ? (this._err(S.missingWhitespaceAfterDoctypePublicKeyword), this.currentToken.publicId = "", this.state = Mn) : t === d.APOSTROPHE ? (this._err(S.missingWhitespaceAfterDoctypePublicKeyword), this.currentToken.publicId = "", this.state = Ln) : t === d.GREATER_THAN_SIGN ? (this._err(S.missingDoctypePublicIdentifier), this.currentToken.forceQuirks = !0, this.state = z, this._emitCurrentToken()) : t === d.EOF ? (this._err(S.eofInDoctype), this.currentToken.forceQuirks = !0, this._emitCurrentToken(), this._emitEOFToken()) : (this._err(S.missingQuoteBeforeDoctypePublicIdentifier), this.currentToken.forceQuirks = !0, this._reconsumeInState(et));
|
|
3996
3982
|
}
|
|
3997
3983
|
// Before DOCTYPE public identifier state
|
|
3998
3984
|
//------------------------------------------------------------------
|
|
3999
3985
|
[Fi](t) {
|
|
4000
|
-
ee(t) || (t === d.QUOTATION_MARK ? (this.currentToken.publicId = "", this.state =
|
|
3986
|
+
ee(t) || (t === d.QUOTATION_MARK ? (this.currentToken.publicId = "", this.state = Mn) : t === d.APOSTROPHE ? (this.currentToken.publicId = "", this.state = Ln) : t === d.GREATER_THAN_SIGN ? (this._err(S.missingDoctypePublicIdentifier), this.currentToken.forceQuirks = !0, this.state = z, this._emitCurrentToken()) : t === d.EOF ? (this._err(S.eofInDoctype), this.currentToken.forceQuirks = !0, this._emitCurrentToken(), this._emitEOFToken()) : (this._err(S.missingQuoteBeforeDoctypePublicIdentifier), this.currentToken.forceQuirks = !0, this._reconsumeInState(et)));
|
|
4001
3987
|
}
|
|
4002
3988
|
// DOCTYPE public identifier (double-quoted) state
|
|
4003
3989
|
//------------------------------------------------------------------
|
|
4004
|
-
[
|
|
4005
|
-
t === d.QUOTATION_MARK ? this.state =
|
|
3990
|
+
[Mn](t) {
|
|
3991
|
+
t === d.QUOTATION_MARK ? this.state = Pn : t === d.NULL ? (this._err(S.unexpectedNullCharacter), this.currentToken.publicId += V.REPLACEMENT_CHARACTER) : t === d.GREATER_THAN_SIGN ? (this._err(S.abruptDoctypePublicIdentifier), this.currentToken.forceQuirks = !0, this._emitCurrentToken(), this.state = z) : t === d.EOF ? (this._err(S.eofInDoctype), this.currentToken.forceQuirks = !0, this._emitCurrentToken(), this._emitEOFToken()) : this.currentToken.publicId += ne(t);
|
|
4006
3992
|
}
|
|
4007
3993
|
// DOCTYPE public identifier (single-quoted) state
|
|
4008
3994
|
//------------------------------------------------------------------
|
|
4009
|
-
[
|
|
4010
|
-
t === d.APOSTROPHE ? this.state =
|
|
3995
|
+
[Ln](t) {
|
|
3996
|
+
t === d.APOSTROPHE ? this.state = Pn : t === d.NULL ? (this._err(S.unexpectedNullCharacter), this.currentToken.publicId += V.REPLACEMENT_CHARACTER) : t === d.GREATER_THAN_SIGN ? (this._err(S.abruptDoctypePublicIdentifier), this.currentToken.forceQuirks = !0, this._emitCurrentToken(), this.state = z) : t === d.EOF ? (this._err(S.eofInDoctype), this.currentToken.forceQuirks = !0, this._emitCurrentToken(), this._emitEOFToken()) : this.currentToken.publicId += ne(t);
|
|
4011
3997
|
}
|
|
4012
3998
|
// After DOCTYPE public identifier state
|
|
4013
3999
|
//------------------------------------------------------------------
|
|
4014
|
-
[
|
|
4000
|
+
[Pn](t) {
|
|
4015
4001
|
ee(t) ? this.state = vi : t === d.GREATER_THAN_SIGN ? (this.state = z, this._emitCurrentToken()) : t === d.QUOTATION_MARK ? (this._err(S.missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers), this.currentToken.systemId = "", this.state = s1) : t === d.APOSTROPHE ? (this._err(S.missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers), this.currentToken.systemId = "", this.state = a1) : t === d.EOF ? (this._err(S.eofInDoctype), this.currentToken.forceQuirks = !0, this._emitCurrentToken(), this._emitEOFToken()) : (this._err(S.missingQuoteBeforeDoctypeSystemIdentifier), this.currentToken.forceQuirks = !0, this._reconsumeInState(et));
|
|
4016
4002
|
}
|
|
4017
4003
|
// Between DOCTYPE public and system identifiers state
|
|
@@ -4032,16 +4018,16 @@ let be = class _e {
|
|
|
4032
4018
|
// DOCTYPE system identifier (double-quoted) state
|
|
4033
4019
|
//------------------------------------------------------------------
|
|
4034
4020
|
[s1](t) {
|
|
4035
|
-
t === d.QUOTATION_MARK ? this.state =
|
|
4021
|
+
t === d.QUOTATION_MARK ? this.state = Dn : t === d.NULL ? (this._err(S.unexpectedNullCharacter), this.currentToken.systemId += V.REPLACEMENT_CHARACTER) : t === d.GREATER_THAN_SIGN ? (this._err(S.abruptDoctypeSystemIdentifier), this.currentToken.forceQuirks = !0, this._emitCurrentToken(), this.state = z) : t === d.EOF ? (this._err(S.eofInDoctype), this.currentToken.forceQuirks = !0, this._emitCurrentToken(), this._emitEOFToken()) : this.currentToken.systemId += ne(t);
|
|
4036
4022
|
}
|
|
4037
4023
|
// DOCTYPE system identifier (single-quoted) state
|
|
4038
4024
|
//------------------------------------------------------------------
|
|
4039
4025
|
[a1](t) {
|
|
4040
|
-
t === d.APOSTROPHE ? this.state =
|
|
4026
|
+
t === d.APOSTROPHE ? this.state = Dn : t === d.NULL ? (this._err(S.unexpectedNullCharacter), this.currentToken.systemId += V.REPLACEMENT_CHARACTER) : t === d.GREATER_THAN_SIGN ? (this._err(S.abruptDoctypeSystemIdentifier), this.currentToken.forceQuirks = !0, this._emitCurrentToken(), this.state = z) : t === d.EOF ? (this._err(S.eofInDoctype), this.currentToken.forceQuirks = !0, this._emitCurrentToken(), this._emitEOFToken()) : this.currentToken.systemId += ne(t);
|
|
4041
4027
|
}
|
|
4042
4028
|
// After DOCTYPE system identifier state
|
|
4043
4029
|
//------------------------------------------------------------------
|
|
4044
|
-
[
|
|
4030
|
+
[Dn](t) {
|
|
4045
4031
|
ee(t) || (t === d.GREATER_THAN_SIGN ? (this._emitCurrentToken(), this.state = z) : t === d.EOF ? (this._err(S.eofInDoctype), this.currentToken.forceQuirks = !0, this._emitCurrentToken(), this._emitEOFToken()) : (this._err(S.unexpectedCharacterAfterDoctypeSystemIdentifier), this._reconsumeInState(et)));
|
|
4046
4032
|
}
|
|
4047
4033
|
// Bogus DOCTYPE state
|
|
@@ -4066,8 +4052,8 @@ let be = class _e {
|
|
|
4066
4052
|
}
|
|
4067
4053
|
// Character reference state
|
|
4068
4054
|
//------------------------------------------------------------------
|
|
4069
|
-
[
|
|
4070
|
-
this.tempBuff = [d.AMPERSAND], t === d.NUMBER_SIGN ? (this.tempBuff.push(t), this.state = qi) :
|
|
4055
|
+
[Ut](t) {
|
|
4056
|
+
this.tempBuff = [d.AMPERSAND], t === d.NUMBER_SIGN ? (this.tempBuff.push(t), this.state = qi) : wn(t) ? this._reconsumeInState(Yi) : (this._flushCodePointsConsumedAsCharacterReference(), this._reconsumeInState(this.returnState));
|
|
4071
4057
|
}
|
|
4072
4058
|
// Named character reference state
|
|
4073
4059
|
//------------------------------------------------------------------
|
|
@@ -4084,7 +4070,7 @@ let be = class _e {
|
|
|
4084
4070
|
// Ambiguos ampersand state
|
|
4085
4071
|
//------------------------------------------------------------------
|
|
4086
4072
|
[ji](t) {
|
|
4087
|
-
|
|
4073
|
+
wn(t) ? this._isCharacterReferenceInAttribute() ? this.currentAttr.value += ne(t) : this._emitCodePoint(t) : (t === d.SEMICOLON && this._err(S.unknownNamedCharacterReference), this._reconsumeInState(this.returnState));
|
|
4088
4074
|
}
|
|
4089
4075
|
// Numeric character reference state
|
|
4090
4076
|
//------------------------------------------------------------------
|
|
@@ -4141,7 +4127,7 @@ be.EOF_TOKEN = "EOF_TOKEN";
|
|
|
4141
4127
|
be.HIBERNATION_TOKEN = "HIBERNATION_TOKEN";
|
|
4142
4128
|
be.MODE = {
|
|
4143
4129
|
DATA: z,
|
|
4144
|
-
RCDATA:
|
|
4130
|
+
RCDATA: Yt,
|
|
4145
4131
|
RAWTEXT: d1,
|
|
4146
4132
|
SCRIPT_DATA: it,
|
|
4147
4133
|
PLAINTEXT: us
|
|
@@ -4153,7 +4139,7 @@ be.getTokenAttr = function(e, t) {
|
|
|
4153
4139
|
return null;
|
|
4154
4140
|
};
|
|
4155
4141
|
var sn = be, Ge = {};
|
|
4156
|
-
const
|
|
4142
|
+
const Bn = Ge.NAMESPACES = {
|
|
4157
4143
|
HTML: "http://www.w3.org/1999/xhtml",
|
|
4158
4144
|
MATHML: "http://www.w3.org/1998/Math/MathML",
|
|
4159
4145
|
SVG: "http://www.w3.org/2000/svg",
|
|
@@ -4301,7 +4287,7 @@ const O = Ge.TAG_NAMES = {
|
|
|
4301
4287
|
XMP: "xmp"
|
|
4302
4288
|
};
|
|
4303
4289
|
Ge.SPECIAL_ELEMENTS = {
|
|
4304
|
-
[
|
|
4290
|
+
[Bn.HTML]: {
|
|
4305
4291
|
[O.ADDRESS]: !0,
|
|
4306
4292
|
[O.APPLET]: !0,
|
|
4307
4293
|
[O.AREA]: !0,
|
|
@@ -4384,7 +4370,7 @@ Ge.SPECIAL_ELEMENTS = {
|
|
|
4384
4370
|
[O.WBR]: !0,
|
|
4385
4371
|
[O.XMP]: !0
|
|
4386
4372
|
},
|
|
4387
|
-
[
|
|
4373
|
+
[Bn.MATHML]: {
|
|
4388
4374
|
[O.MI]: !0,
|
|
4389
4375
|
[O.MO]: !0,
|
|
4390
4376
|
[O.MN]: !0,
|
|
@@ -4392,7 +4378,7 @@ Ge.SPECIAL_ELEMENTS = {
|
|
|
4392
4378
|
[O.MTEXT]: !0,
|
|
4393
4379
|
[O.ANNOTATION_XML]: !0
|
|
4394
4380
|
},
|
|
4395
|
-
[
|
|
4381
|
+
[Bn.SVG]: {
|
|
4396
4382
|
[O.TITLE]: !0,
|
|
4397
4383
|
[O.FOREIGN_OBJECT]: !0,
|
|
4398
4384
|
[O.DESC]: !0
|
|
@@ -4662,7 +4648,7 @@ let Gc = class {
|
|
|
4662
4648
|
};
|
|
4663
4649
|
var Kc = Gc;
|
|
4664
4650
|
const U1 = 3;
|
|
4665
|
-
let
|
|
4651
|
+
let fr = class Et {
|
|
4666
4652
|
constructor(t) {
|
|
4667
4653
|
this.length = 0, this.entries = [], this.treeAdapter = t, this.bookmark = null;
|
|
4668
4654
|
}
|
|
@@ -4757,9 +4743,9 @@ let mr = class Et {
|
|
|
4757
4743
|
return null;
|
|
4758
4744
|
}
|
|
4759
4745
|
};
|
|
4760
|
-
|
|
4761
|
-
|
|
4762
|
-
var zc =
|
|
4746
|
+
fr.MARKER_ENTRY = "MARKER_ENTRY";
|
|
4747
|
+
fr.ELEMENT_ENTRY = "ELEMENT_ENTRY";
|
|
4748
|
+
var zc = fr;
|
|
4763
4749
|
let ms = class {
|
|
4764
4750
|
constructor(t) {
|
|
4765
4751
|
const n = {}, r = this._getOverriddenMethods(this, n);
|
|
@@ -4805,7 +4791,7 @@ let jc = class extends Yc {
|
|
|
4805
4791
|
}
|
|
4806
4792
|
};
|
|
4807
4793
|
var Ts = jc;
|
|
4808
|
-
const Zi = lt,
|
|
4794
|
+
const Zi = lt, Hn = sn, qc = Ts;
|
|
4809
4795
|
let Qc = class extends Zi {
|
|
4810
4796
|
constructor(t) {
|
|
4811
4797
|
super(t), this.tokenizer = t, this.posTracker = Zi.install(t.preprocessor, qc), this.currentAttrLocation = null, this.ctLoc = null;
|
|
@@ -4856,15 +4842,15 @@ let Qc = class extends Zi {
|
|
|
4856
4842
|
},
|
|
4857
4843
|
_emitCurrentToken() {
|
|
4858
4844
|
const i = this.currentToken.location;
|
|
4859
|
-
this.currentCharacterToken && (this.currentCharacterToken.location.endLine = i.startLine, this.currentCharacterToken.location.endCol = i.startCol, this.currentCharacterToken.location.endOffset = i.startOffset), this.currentToken.type ===
|
|
4845
|
+
this.currentCharacterToken && (this.currentCharacterToken.location.endLine = i.startLine, this.currentCharacterToken.location.endCol = i.startCol, this.currentCharacterToken.location.endOffset = i.startOffset), this.currentToken.type === Hn.EOF_TOKEN ? (i.endLine = i.startLine, i.endCol = i.startCol, i.endOffset = i.startOffset) : (i.endLine = t.posTracker.line, i.endCol = t.posTracker.col + 1, i.endOffset = t.posTracker.offset + 1), n._emitCurrentToken.call(this);
|
|
4860
4846
|
},
|
|
4861
4847
|
_emitCurrentCharacterToken() {
|
|
4862
4848
|
const i = this.currentCharacterToken && this.currentCharacterToken.location;
|
|
4863
4849
|
i && i.endOffset === -1 && (i.endLine = t.posTracker.line, i.endCol = t.posTracker.col, i.endOffset = t.posTracker.offset), n._emitCurrentCharacterToken.call(this);
|
|
4864
4850
|
}
|
|
4865
4851
|
};
|
|
4866
|
-
return Object.keys(
|
|
4867
|
-
const o =
|
|
4852
|
+
return Object.keys(Hn.MODE).forEach((i) => {
|
|
4853
|
+
const o = Hn.MODE[i];
|
|
4868
4854
|
r[o] = function(s) {
|
|
4869
4855
|
t.ctLoc = t._getCurrentLocation(), n[o].call(this, s);
|
|
4870
4856
|
};
|
|
@@ -4894,8 +4880,8 @@ let $c = class extends Wc {
|
|
|
4894
4880
|
}
|
|
4895
4881
|
};
|
|
4896
4882
|
var Vc = $c;
|
|
4897
|
-
const
|
|
4898
|
-
let eu = class extends
|
|
4883
|
+
const Fn = lt, eo = sn, Xc = ps, Jc = Vc, Zc = Ge, vn = Zc.TAG_NAMES;
|
|
4884
|
+
let eu = class extends Fn {
|
|
4899
4885
|
constructor(t) {
|
|
4900
4886
|
super(t), this.parser = t, this.treeAdapter = this.parser.treeAdapter, this.posTracker = null, this.lastStartTagToken = null, this.lastFosterParentingLocation = null, this.currentToken = null;
|
|
4901
4887
|
}
|
|
@@ -4913,8 +4899,8 @@ let eu = class extends vn {
|
|
|
4913
4899
|
return {
|
|
4914
4900
|
_bootstrap(r, i) {
|
|
4915
4901
|
n._bootstrap.call(this, r, i), t.lastStartTagToken = null, t.lastFosterParentingLocation = null, t.currentToken = null;
|
|
4916
|
-
const o =
|
|
4917
|
-
t.posTracker = o.posTracker,
|
|
4902
|
+
const o = Fn.install(this.tokenizer, Xc);
|
|
4903
|
+
t.posTracker = o.posTracker, Fn.install(this.openElements, Jc, {
|
|
4918
4904
|
onItemPop: function(s) {
|
|
4919
4905
|
t._setEndLocation(s, t.currentToken);
|
|
4920
4906
|
}
|
|
@@ -4930,7 +4916,7 @@ let eu = class extends vn {
|
|
|
4930
4916
|
t.currentToken = r, n._processTokenInForeignContent.call(this, r);
|
|
4931
4917
|
},
|
|
4932
4918
|
_processToken(r) {
|
|
4933
|
-
if (t.currentToken = r, n._processToken.call(this, r), r.type === eo.END_TAG_TOKEN && (r.tagName ===
|
|
4919
|
+
if (t.currentToken = r, n._processToken.call(this, r), r.type === eo.END_TAG_TOKEN && (r.tagName === vn.HTML || r.tagName === vn.BODY && this.openElements.hasInScope(vn.BODY)))
|
|
4934
4920
|
for (let o = this.openElements.stackTop; o >= 0; o--) {
|
|
4935
4921
|
const s = this.openElements.items[o];
|
|
4936
4922
|
if (this.treeAdapter.getTagName(s) === r.tagName) {
|
|
@@ -5020,8 +5006,8 @@ let ru = class extends nu {
|
|
|
5020
5006
|
};
|
|
5021
5007
|
}
|
|
5022
5008
|
};
|
|
5023
|
-
var
|
|
5024
|
-
const iu =
|
|
5009
|
+
var mr = ru;
|
|
5010
|
+
const iu = mr, ou = Ts, su = lt;
|
|
5025
5011
|
let au = class extends iu {
|
|
5026
5012
|
constructor(t, n) {
|
|
5027
5013
|
super(t, n), this.posTracker = su.install(t, ou), this.lastErrOffset = -1;
|
|
@@ -5031,7 +5017,7 @@ let au = class extends iu {
|
|
|
5031
5017
|
}
|
|
5032
5018
|
};
|
|
5033
5019
|
var lu = au;
|
|
5034
|
-
const cu =
|
|
5020
|
+
const cu = mr, uu = lu, hu = lt;
|
|
5035
5021
|
let du = class extends cu {
|
|
5036
5022
|
constructor(t, n) {
|
|
5037
5023
|
super(t, n);
|
|
@@ -5040,7 +5026,7 @@ let du = class extends cu {
|
|
|
5040
5026
|
}
|
|
5041
5027
|
};
|
|
5042
5028
|
var fu = du;
|
|
5043
|
-
const mu =
|
|
5029
|
+
const mu = mr, Tu = fu, pu = ps, to = lt;
|
|
5044
5030
|
let Eu = class extends mu {
|
|
5045
5031
|
constructor(t, n) {
|
|
5046
5032
|
super(t, n), this.opts = n, this.ctLoc = null, this.locBeforeToken = !1;
|
|
@@ -5218,7 +5204,7 @@ var Cu = function(t, n) {
|
|
|
5218
5204
|
r[o] = i[o];
|
|
5219
5205
|
}), r), /* @__PURE__ */ Object.create(null));
|
|
5220
5206
|
}, an = {};
|
|
5221
|
-
const { DOCUMENT_MODE:
|
|
5207
|
+
const { DOCUMENT_MODE: Gt } = Ge, _s = "html", Su = "about:legacy-compat", Nu = "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd", As = [
|
|
5222
5208
|
"+//silmaril//dtd html pro v0r11 19970101//",
|
|
5223
5209
|
"-//as//dtd html 3.0 aswedit + extensions//",
|
|
5224
5210
|
"-//advasoft ltd//dtd html 3.0 aswedit + extensions//",
|
|
@@ -5296,28 +5282,28 @@ an.isConforming = function(e) {
|
|
|
5296
5282
|
};
|
|
5297
5283
|
an.getDocumentMode = function(e) {
|
|
5298
5284
|
if (e.name !== _s)
|
|
5299
|
-
return
|
|
5285
|
+
return Gt.QUIRKS;
|
|
5300
5286
|
const t = e.systemId;
|
|
5301
5287
|
if (t && t.toLowerCase() === Nu)
|
|
5302
|
-
return
|
|
5288
|
+
return Gt.QUIRKS;
|
|
5303
5289
|
let n = e.publicId;
|
|
5304
5290
|
if (n !== null) {
|
|
5305
5291
|
if (n = n.toLowerCase(), ku.indexOf(n) > -1)
|
|
5306
|
-
return
|
|
5292
|
+
return Gt.QUIRKS;
|
|
5307
5293
|
let r = t === null ? Iu : As;
|
|
5308
5294
|
if (ro(n, r))
|
|
5309
|
-
return
|
|
5295
|
+
return Gt.QUIRKS;
|
|
5310
5296
|
if (r = t === null ? Cs : Ou, ro(n, r))
|
|
5311
|
-
return
|
|
5297
|
+
return Gt.LIMITED_QUIRKS;
|
|
5312
5298
|
}
|
|
5313
|
-
return
|
|
5299
|
+
return Gt.NO_QUIRKS;
|
|
5314
5300
|
};
|
|
5315
5301
|
an.serializeContent = function(e, t, n) {
|
|
5316
5302
|
let r = "!DOCTYPE ";
|
|
5317
5303
|
return e && (r += e), t ? r += " PUBLIC " + no(t) : n && (r += " SYSTEM"), n !== null && (r += " " + no(n)), r;
|
|
5318
5304
|
};
|
|
5319
5305
|
var At = {};
|
|
5320
|
-
const
|
|
5306
|
+
const Un = sn, Tr = Ge, P = Tr.TAG_NAMES, Te = Tr.NAMESPACES, Q1 = Tr.ATTRS, io = {
|
|
5321
5307
|
TEXT_HTML: "text/html",
|
|
5322
5308
|
APPLICATION_XML: "application/xhtml+xml"
|
|
5323
5309
|
}, yu = "definitionurl", xu = "definitionURL", Ru = {
|
|
@@ -5477,7 +5463,7 @@ const Gn = sn, pr = Ge, P = pr.TAG_NAMES, Te = pr.NAMESPACES, Q1 = pr.ATTRS, io
|
|
|
5477
5463
|
};
|
|
5478
5464
|
At.causesExit = function(e) {
|
|
5479
5465
|
const t = e.tagName;
|
|
5480
|
-
return t === P.FONT && (
|
|
5466
|
+
return t === P.FONT && (Un.getTokenAttr(e, Q1.COLOR) !== null || Un.getTokenAttr(e, Q1.SIZE) !== null || Un.getTokenAttr(e, Q1.FACE) !== null) ? !0 : Lu[t];
|
|
5481
5467
|
};
|
|
5482
5468
|
At.adjustTokenMathMLAttrs = function(e) {
|
|
5483
5469
|
for (let t = 0; t < e.attrs.length; t++)
|
|
@@ -5518,12 +5504,12 @@ function Du(e, t, n) {
|
|
|
5518
5504
|
At.isIntegrationPoint = function(e, t, n, r) {
|
|
5519
5505
|
return !!((!r || r === Te.HTML) && Du(e, t, n) || (!r || r === Te.MATHML) && Pu(e, t));
|
|
5520
5506
|
};
|
|
5521
|
-
const f = sn, wu = Kc, oo = zc, Bu = tu, Hu = gu, so = lt, Fu = q, vu = Cu, ao = an, je = At, pe =
|
|
5507
|
+
const f = sn, wu = Kc, oo = zc, Bu = tu, Hu = gu, so = lt, Fu = q, vu = Cu, ao = an, je = At, pe = dr, Uu = Ue, Mt = Ge, l = Mt.TAG_NAMES, L = Mt.NAMESPACES, Ss = Mt.ATTRS, Gu = {
|
|
5522
5508
|
scriptingEnabled: !0,
|
|
5523
5509
|
sourceCodeLocationInfo: !1,
|
|
5524
5510
|
onParseError: null,
|
|
5525
5511
|
treeAdapter: Fu
|
|
5526
|
-
}, Ns = "hidden", Ku = 8, zu = 3, Is = "INITIAL_MODE",
|
|
5512
|
+
}, Ns = "hidden", Ku = 8, zu = 3, Is = "INITIAL_MODE", pr = "BEFORE_HTML_MODE", ln = "BEFORE_HEAD_MODE", Jt = "IN_HEAD_MODE", ks = "IN_HEAD_NO_SCRIPT_MODE", cn = "AFTER_HEAD_MODE", We = "IN_BODY_MODE", en = "TEXT_MODE", Ee = "IN_TABLE_MODE", Os = "IN_TABLE_TEXT_MODE", un = "IN_CAPTION_MODE", I1 = "IN_COLUMN_GROUP_MODE", ye = "IN_TABLE_BODY_MODE", ot = "IN_ROW_MODE", hn = "IN_CELL_MODE", Er = "IN_SELECT_MODE", gr = "IN_SELECT_IN_TABLE_MODE", tn = "IN_TEMPLATE_MODE", _r = "AFTER_BODY_MODE", dn = "IN_FRAMESET_MODE", ys = "AFTER_FRAMESET_MODE", xs = "AFTER_AFTER_BODY_MODE", Rs = "AFTER_AFTER_FRAMESET_MODE", Yu = {
|
|
5527
5513
|
[l.TR]: ot,
|
|
5528
5514
|
[l.TBODY]: ye,
|
|
5529
5515
|
[l.THEAD]: ye,
|
|
@@ -5554,7 +5540,7 @@ const f = sn, wu = Kc, oo = zc, Bu = tu, Hu = gu, so = lt, Fu = q, vu = Cu, ao =
|
|
|
5554
5540
|
[f.END_TAG_TOKEN]: u1,
|
|
5555
5541
|
[f.EOF_TOKEN]: u1
|
|
5556
5542
|
},
|
|
5557
|
-
[
|
|
5543
|
+
[pr]: {
|
|
5558
5544
|
[f.CHARACTER_TOKEN]: p1,
|
|
5559
5545
|
[f.NULL_CHARACTER_TOKEN]: p1,
|
|
5560
5546
|
[f.WHITESPACE_CHARACTER_TOKEN]: j,
|
|
@@ -5581,7 +5567,7 @@ const f = sn, wu = Kc, oo = zc, Bu = tu, Hu = gu, so = lt, Fu = q, vu = Cu, ao =
|
|
|
5581
5567
|
[f.COMMENT_TOKEN]: ue,
|
|
5582
5568
|
[f.DOCTYPE_TOKEN]: G1,
|
|
5583
5569
|
[f.START_TAG_TOKEN]: fe,
|
|
5584
|
-
[f.END_TAG_TOKEN]:
|
|
5570
|
+
[f.END_TAG_TOKEN]: Lt,
|
|
5585
5571
|
[f.EOF_TOKEN]: g1
|
|
5586
5572
|
},
|
|
5587
5573
|
[ks]: {
|
|
@@ -5611,7 +5597,7 @@ const f = sn, wu = Kc, oo = zc, Bu = tu, Hu = gu, so = lt, Fu = q, vu = Cu, ao =
|
|
|
5611
5597
|
[f.COMMENT_TOKEN]: ue,
|
|
5612
5598
|
[f.DOCTYPE_TOKEN]: j,
|
|
5613
5599
|
[f.START_TAG_TOKEN]: Se,
|
|
5614
|
-
[f.END_TAG_TOKEN]:
|
|
5600
|
+
[f.END_TAG_TOKEN]: Ar,
|
|
5615
5601
|
[f.EOF_TOKEN]: nt
|
|
5616
5602
|
},
|
|
5617
5603
|
[en]: {
|
|
@@ -5630,8 +5616,8 @@ const f = sn, wu = Kc, oo = zc, Bu = tu, Hu = gu, so = lt, Fu = q, vu = Cu, ao =
|
|
|
5630
5616
|
[f.WHITESPACE_CHARACTER_TOKEN]: rt,
|
|
5631
5617
|
[f.COMMENT_TOKEN]: ue,
|
|
5632
5618
|
[f.DOCTYPE_TOKEN]: j,
|
|
5633
|
-
[f.START_TAG_TOKEN]:
|
|
5634
|
-
[f.END_TAG_TOKEN]:
|
|
5619
|
+
[f.START_TAG_TOKEN]: Cr,
|
|
5620
|
+
[f.END_TAG_TOKEN]: Sr,
|
|
5635
5621
|
[f.EOF_TOKEN]: nt
|
|
5636
5622
|
},
|
|
5637
5623
|
[Os]: {
|
|
@@ -5694,7 +5680,7 @@ const f = sn, wu = Kc, oo = zc, Bu = tu, Hu = gu, so = lt, Fu = q, vu = Cu, ao =
|
|
|
5694
5680
|
[f.END_TAG_TOKEN]: a0,
|
|
5695
5681
|
[f.EOF_TOKEN]: nt
|
|
5696
5682
|
},
|
|
5697
|
-
[
|
|
5683
|
+
[Er]: {
|
|
5698
5684
|
[f.CHARACTER_TOKEN]: Ae,
|
|
5699
5685
|
[f.NULL_CHARACTER_TOKEN]: j,
|
|
5700
5686
|
[f.WHITESPACE_CHARACTER_TOKEN]: Ae,
|
|
@@ -5704,7 +5690,7 @@ const f = sn, wu = Kc, oo = zc, Bu = tu, Hu = gu, so = lt, Fu = q, vu = Cu, ao =
|
|
|
5704
5690
|
[f.END_TAG_TOKEN]: Ms,
|
|
5705
5691
|
[f.EOF_TOKEN]: nt
|
|
5706
5692
|
},
|
|
5707
|
-
[
|
|
5693
|
+
[gr]: {
|
|
5708
5694
|
[f.CHARACTER_TOKEN]: Ae,
|
|
5709
5695
|
[f.NULL_CHARACTER_TOKEN]: j,
|
|
5710
5696
|
[f.WHITESPACE_CHARACTER_TOKEN]: Ae,
|
|
@@ -5724,7 +5710,7 @@ const f = sn, wu = Kc, oo = zc, Bu = tu, Hu = gu, so = lt, Fu = q, vu = Cu, ao =
|
|
|
5724
5710
|
[f.END_TAG_TOKEN]: h0,
|
|
5725
5711
|
[f.EOF_TOKEN]: Ls
|
|
5726
5712
|
},
|
|
5727
|
-
[
|
|
5713
|
+
[_r]: {
|
|
5728
5714
|
[f.CHARACTER_TOKEN]: rn,
|
|
5729
5715
|
[f.NULL_CHARACTER_TOKEN]: rn,
|
|
5730
5716
|
[f.WHITESPACE_CHARACTER_TOKEN]: It,
|
|
@@ -5990,11 +5976,11 @@ class qu {
|
|
|
5990
5976
|
if (i === l.TEMPLATE)
|
|
5991
5977
|
break;
|
|
5992
5978
|
if (i === l.TABLE) {
|
|
5993
|
-
this.insertionMode =
|
|
5979
|
+
this.insertionMode = gr;
|
|
5994
5980
|
return;
|
|
5995
5981
|
}
|
|
5996
5982
|
}
|
|
5997
|
-
this.insertionMode =
|
|
5983
|
+
this.insertionMode = Er;
|
|
5998
5984
|
}
|
|
5999
5985
|
_pushTmplInsertionMode(t) {
|
|
6000
5986
|
this.tmplInsertionModeStack.push(t), this.tmplInsertionModeStackTop++, this.currentTmplInsertionMode = t;
|
|
@@ -6038,7 +6024,7 @@ class qu {
|
|
|
6038
6024
|
//Special elements
|
|
6039
6025
|
_isSpecialElement(t) {
|
|
6040
6026
|
const n = this.treeAdapter.getTagName(t), r = this.treeAdapter.getNamespaceURI(t);
|
|
6041
|
-
return
|
|
6027
|
+
return Mt.SPECIAL_ELEMENTS[r][n];
|
|
6042
6028
|
}
|
|
6043
6029
|
}
|
|
6044
6030
|
var Qu = qu;
|
|
@@ -6114,11 +6100,11 @@ function c1(e) {
|
|
|
6114
6100
|
}
|
|
6115
6101
|
function t9(e, t) {
|
|
6116
6102
|
e._setDocumentType(t);
|
|
6117
|
-
const n = t.forceQuirks ?
|
|
6118
|
-
ao.isConforming(t) || e._err(pe.nonConformingDoctype), e.treeAdapter.setDocumentMode(e.document, n), e.insertionMode =
|
|
6103
|
+
const n = t.forceQuirks ? Mt.DOCUMENT_MODE.QUIRKS : ao.getDocumentMode(t);
|
|
6104
|
+
ao.isConforming(t) || e._err(pe.nonConformingDoctype), e.treeAdapter.setDocumentMode(e.document, n), e.insertionMode = pr;
|
|
6119
6105
|
}
|
|
6120
6106
|
function u1(e, t) {
|
|
6121
|
-
e._err(pe.missingDoctype, { beforeToken: !0 }), e.treeAdapter.setDocumentMode(e.document,
|
|
6107
|
+
e._err(pe.missingDoctype, { beforeToken: !0 }), e.treeAdapter.setDocumentMode(e.document, Mt.DOCUMENT_MODE.QUIRKS), e.insertionMode = pr, e._processToken(t);
|
|
6122
6108
|
}
|
|
6123
6109
|
function n9(e, t) {
|
|
6124
6110
|
t.tagName === l.HTML ? (e._insertElement(t, L.HTML), e.insertionMode = ln) : p1(e, t);
|
|
@@ -6145,7 +6131,7 @@ function fe(e, t) {
|
|
|
6145
6131
|
const n = t.tagName;
|
|
6146
6132
|
n === l.HTML ? Se(e, t) : n === l.BASE || n === l.BASEFONT || n === l.BGSOUND || n === l.LINK || n === l.META ? (e._appendElement(t, L.HTML), t.ackSelfClosing = !0) : n === l.TITLE ? e._switchToTextParsing(t, f.MODE.RCDATA) : n === l.NOSCRIPT ? e.options.scriptingEnabled ? e._switchToTextParsing(t, f.MODE.RAWTEXT) : (e._insertElement(t, L.HTML), e.insertionMode = ks) : n === l.NOFRAMES || n === l.STYLE ? e._switchToTextParsing(t, f.MODE.RAWTEXT) : n === l.SCRIPT ? e._switchToTextParsing(t, f.MODE.SCRIPT_DATA) : n === l.TEMPLATE ? (e._insertTemplate(t, L.HTML), e.activeFormattingElements.insertMarker(), e.framesetOk = !1, e.insertionMode = tn, e._pushTmplInsertionMode(tn)) : n === l.HEAD ? e._err(pe.misplacedStartTagForHeadElement) : g1(e, t);
|
|
6147
6133
|
}
|
|
6148
|
-
function
|
|
6134
|
+
function Lt(e, t) {
|
|
6149
6135
|
const n = t.tagName;
|
|
6150
6136
|
n === l.HEAD ? (e.openElements.pop(), e.insertionMode = cn) : n === l.BODY || n === l.BR || n === l.HTML ? g1(e, t) : n === l.TEMPLATE && e.openElements.tmplCount > 0 ? (e.openElements.generateImpliedEndTagsThoroughly(), e.openElements.currentTagName !== l.TEMPLATE && e._err(pe.closingOfElementWithOpenChildElements), e.openElements.popUntilTagNamePopped(l.TEMPLATE), e.activeFormattingElements.clearToLastMarker(), e._popTmplInsertionMode(), e._resetInsertionMode()) : e._err(pe.endTagWithoutMatchingOpenElement);
|
|
6151
6137
|
}
|
|
@@ -6170,7 +6156,7 @@ function l9(e, t) {
|
|
|
6170
6156
|
}
|
|
6171
6157
|
function c9(e, t) {
|
|
6172
6158
|
const n = t.tagName;
|
|
6173
|
-
n === l.BODY || n === l.HTML || n === l.BR ? A1(e, t) : n === l.TEMPLATE ?
|
|
6159
|
+
n === l.BODY || n === l.HTML || n === l.BR ? A1(e, t) : n === l.TEMPLATE ? Lt(e, t) : e._err(pe.endTagWithoutMatchingOpenElement);
|
|
6174
6160
|
}
|
|
6175
6161
|
function A1(e, t) {
|
|
6176
6162
|
e._insertFakeElement(l.BODY), e.insertionMode = We, e._processToken(t);
|
|
@@ -6232,7 +6218,7 @@ function g9(e, t) {
|
|
|
6232
6218
|
const n = e.activeFormattingElements.getElementEntryInScopeWithTagName(l.A);
|
|
6233
6219
|
n && (gt(e, t), e.openElements.remove(n.element), e.activeFormattingElements.removeEntry(n)), e._reconstructActiveFormattingElements(), e._insertElement(t, L.HTML), e.activeFormattingElements.pushElement(e.openElements.current, t);
|
|
6234
6220
|
}
|
|
6235
|
-
function
|
|
6221
|
+
function Kt(e, t) {
|
|
6236
6222
|
e._reconstructActiveFormattingElements(), e._insertElement(t, L.HTML), e.activeFormattingElements.pushElement(e.openElements.current, t);
|
|
6237
6223
|
}
|
|
6238
6224
|
function _9(e, t) {
|
|
@@ -6242,9 +6228,9 @@ function ho(e, t) {
|
|
|
6242
6228
|
e._reconstructActiveFormattingElements(), e._insertElement(t, L.HTML), e.activeFormattingElements.insertMarker(), e.framesetOk = !1;
|
|
6243
6229
|
}
|
|
6244
6230
|
function A9(e, t) {
|
|
6245
|
-
e.treeAdapter.getDocumentMode(e.document) !==
|
|
6231
|
+
e.treeAdapter.getDocumentMode(e.document) !== Mt.DOCUMENT_MODE.QUIRKS && e.openElements.hasInButtonScope(l.P) && e._closePElement(), e._insertElement(t, L.HTML), e.framesetOk = !1, e.insertionMode = Ee;
|
|
6246
6232
|
}
|
|
6247
|
-
function
|
|
6233
|
+
function jt(e, t) {
|
|
6248
6234
|
e._reconstructActiveFormattingElements(), e._appendElement(t, L.HTML), e.framesetOk = !1, t.ackSelfClosing = !0;
|
|
6249
6235
|
}
|
|
6250
6236
|
function C9(e, t) {
|
|
@@ -6259,7 +6245,7 @@ function S9(e, t) {
|
|
|
6259
6245
|
e.openElements.hasInButtonScope(l.P) && e._closePElement(), e._appendElement(t, L.HTML), e.framesetOk = !1, t.ackSelfClosing = !0;
|
|
6260
6246
|
}
|
|
6261
6247
|
function N9(e, t) {
|
|
6262
|
-
t.tagName = l.IMG,
|
|
6248
|
+
t.tagName = l.IMG, jt(e, t);
|
|
6263
6249
|
}
|
|
6264
6250
|
function I9(e, t) {
|
|
6265
6251
|
e._insertElement(t, L.HTML), e.skipNextNewLine = !0, e.tokenizer.state = f.MODE.RCDATA, e.originalInsertionMode = e.insertionMode, e.framesetOk = !1, e.insertionMode = en;
|
|
@@ -6274,7 +6260,7 @@ function mo(e, t) {
|
|
|
6274
6260
|
e._switchToTextParsing(t, f.MODE.RAWTEXT);
|
|
6275
6261
|
}
|
|
6276
6262
|
function y9(e, t) {
|
|
6277
|
-
e._reconstructActiveFormattingElements(), e._insertElement(t, L.HTML), e.framesetOk = !1, e.insertionMode === Ee || e.insertionMode === un || e.insertionMode === ye || e.insertionMode === ot || e.insertionMode === hn ? e.insertionMode =
|
|
6263
|
+
e._reconstructActiveFormattingElements(), e._insertElement(t, L.HTML), e.framesetOk = !1, e.insertionMode === Ee || e.insertionMode === un || e.insertionMode === ye || e.insertionMode === ot || e.insertionMode === hn ? e.insertionMode = gr : e.insertionMode = Er;
|
|
6278
6264
|
}
|
|
6279
6265
|
function To(e, t) {
|
|
6280
6266
|
e.openElements.currentTagName === l.OPTION && e.openElements.pop(), e._reconstructActiveFormattingElements(), e._insertElement(t, L.HTML);
|
|
@@ -6301,22 +6287,22 @@ function Se(e, t) {
|
|
|
6301
6287
|
const n = t.tagName;
|
|
6302
6288
|
switch (n.length) {
|
|
6303
6289
|
case 1:
|
|
6304
|
-
n === l.I || n === l.S || n === l.B || n === l.U ?
|
|
6290
|
+
n === l.I || n === l.S || n === l.B || n === l.U ? Kt(e, t) : n === l.P ? tt(e, t) : n === l.A ? g9(e, t) : Ie(e, t);
|
|
6305
6291
|
break;
|
|
6306
6292
|
case 2:
|
|
6307
|
-
n === l.DL || n === l.OL || n === l.UL ? tt(e, t) : n === l.H1 || n === l.H2 || n === l.H3 || n === l.H4 || n === l.H5 || n === l.H6 ? f9(e, t) : n === l.LI || n === l.DD || n === l.DT ? T9(e, t) : n === l.EM || n === l.TT ?
|
|
6293
|
+
n === l.DL || n === l.OL || n === l.UL ? tt(e, t) : n === l.H1 || n === l.H2 || n === l.H3 || n === l.H4 || n === l.H5 || n === l.H6 ? f9(e, t) : n === l.LI || n === l.DD || n === l.DT ? T9(e, t) : n === l.EM || n === l.TT ? Kt(e, t) : n === l.BR ? jt(e, t) : n === l.HR ? S9(e, t) : n === l.RB ? po(e, t) : n === l.RT || n === l.RP ? x9(e, t) : n !== l.TH && n !== l.TD && n !== l.TR && Ie(e, t);
|
|
6308
6294
|
break;
|
|
6309
6295
|
case 3:
|
|
6310
|
-
n === l.DIV || n === l.DIR || n === l.NAV ? tt(e, t) : n === l.PRE ? uo(e, t) : n === l.BIG ?
|
|
6296
|
+
n === l.DIV || n === l.DIR || n === l.NAV ? tt(e, t) : n === l.PRE ? uo(e, t) : n === l.BIG ? Kt(e, t) : n === l.IMG || n === l.WBR ? jt(e, t) : n === l.XMP ? k9(e, t) : n === l.SVG ? M9(e, t) : n === l.RTC ? po(e, t) : n !== l.COL && Ie(e, t);
|
|
6311
6297
|
break;
|
|
6312
6298
|
case 4:
|
|
6313
|
-
n === l.HTML ? u9(e, t) : n === l.BASE || n === l.LINK || n === l.META ? fe(e, t) : n === l.BODY ? h9(e, t) : n === l.MAIN || n === l.MENU ? tt(e, t) : n === l.FORM ? m9(e, t) : n === l.CODE || n === l.FONT ?
|
|
6299
|
+
n === l.HTML ? u9(e, t) : n === l.BASE || n === l.LINK || n === l.META ? fe(e, t) : n === l.BODY ? h9(e, t) : n === l.MAIN || n === l.MENU ? tt(e, t) : n === l.FORM ? m9(e, t) : n === l.CODE || n === l.FONT ? Kt(e, t) : n === l.NOBR ? _9(e, t) : n === l.AREA ? jt(e, t) : n === l.MATH ? b9(e, t) : n === l.MENU ? R9(e, t) : n !== l.HEAD && Ie(e, t);
|
|
6314
6300
|
break;
|
|
6315
6301
|
case 5:
|
|
6316
|
-
n === l.STYLE || n === l.TITLE ? fe(e, t) : n === l.ASIDE ? tt(e, t) : n === l.SMALL ?
|
|
6302
|
+
n === l.STYLE || n === l.TITLE ? fe(e, t) : n === l.ASIDE ? tt(e, t) : n === l.SMALL ? Kt(e, t) : n === l.TABLE ? A9(e, t) : n === l.EMBED ? jt(e, t) : n === l.INPUT ? C9(e, t) : n === l.PARAM || n === l.TRACK ? fo(e, t) : n === l.IMAGE ? N9(e, t) : n !== l.FRAME && n !== l.TBODY && n !== l.TFOOT && n !== l.THEAD && Ie(e, t);
|
|
6317
6303
|
break;
|
|
6318
6304
|
case 6:
|
|
6319
|
-
n === l.SCRIPT ? fe(e, t) : n === l.CENTER || n === l.FIGURE || n === l.FOOTER || n === l.HEADER || n === l.HGROUP || n === l.DIALOG ? tt(e, t) : n === l.BUTTON ? E9(e, t) : n === l.STRIKE || n === l.STRONG ?
|
|
6305
|
+
n === l.SCRIPT ? fe(e, t) : n === l.CENTER || n === l.FIGURE || n === l.FOOTER || n === l.HEADER || n === l.HGROUP || n === l.DIALOG ? tt(e, t) : n === l.BUTTON ? E9(e, t) : n === l.STRIKE || n === l.STRONG ? Kt(e, t) : n === l.APPLET || n === l.OBJECT ? ho(e, t) : n === l.KEYGEN ? jt(e, t) : n === l.SOURCE ? fo(e, t) : n === l.IFRAME ? O9(e, t) : n === l.SELECT ? y9(e, t) : n === l.OPTION ? To(e, t) : Ie(e, t);
|
|
6320
6306
|
break;
|
|
6321
6307
|
case 7:
|
|
6322
6308
|
n === l.BGSOUND ? fe(e, t) : n === l.DETAILS || n === l.ADDRESS || n === l.ARTICLE || n === l.SECTION || n === l.SUMMARY ? tt(e, t) : n === l.LISTING ? uo(e, t) : n === l.MARQUEE ? ho(e, t) : n === l.NOEMBED ? mo(e, t) : n !== l.CAPTION && Ie(e, t);
|
|
@@ -6335,10 +6321,10 @@ function Se(e, t) {
|
|
|
6335
6321
|
}
|
|
6336
6322
|
}
|
|
6337
6323
|
function L9(e) {
|
|
6338
|
-
e.openElements.hasInScope(l.BODY) && (e.insertionMode =
|
|
6324
|
+
e.openElements.hasInScope(l.BODY) && (e.insertionMode = _r);
|
|
6339
6325
|
}
|
|
6340
6326
|
function P9(e, t) {
|
|
6341
|
-
e.openElements.hasInScope(l.BODY) && (e.insertionMode =
|
|
6327
|
+
e.openElements.hasInScope(l.BODY) && (e.insertionMode = _r, e._processToken(t));
|
|
6342
6328
|
}
|
|
6343
6329
|
function mt(e, t) {
|
|
6344
6330
|
const n = t.tagName;
|
|
@@ -6380,7 +6366,7 @@ function Fe(e, t) {
|
|
|
6380
6366
|
break;
|
|
6381
6367
|
}
|
|
6382
6368
|
}
|
|
6383
|
-
function
|
|
6369
|
+
function Ar(e, t) {
|
|
6384
6370
|
const n = t.tagName;
|
|
6385
6371
|
switch (n.length) {
|
|
6386
6372
|
case 1:
|
|
@@ -6405,7 +6391,7 @@ function Cr(e, t) {
|
|
|
6405
6391
|
n === l.ADDRESS || n === l.ARTICLE || n === l.DETAILS || n === l.SECTION || n === l.SUMMARY || n === l.LISTING ? mt(e, t) : n === l.MARQUEE ? Eo(e, t) : Fe(e, t);
|
|
6406
6392
|
break;
|
|
6407
6393
|
case 8:
|
|
6408
|
-
n === l.FIELDSET ? mt(e, t) : n === l.TEMPLATE ?
|
|
6394
|
+
n === l.FIELDSET ? mt(e, t) : n === l.TEMPLATE ? Lt(e, t) : Fe(e, t);
|
|
6409
6395
|
break;
|
|
6410
6396
|
case 10:
|
|
6411
6397
|
n === l.BLOCKQUOTE || n === l.FIGCAPTION ? mt(e, t) : Fe(e, t);
|
|
@@ -6452,7 +6438,7 @@ function W9(e, t) {
|
|
|
6452
6438
|
function $9(e, t) {
|
|
6453
6439
|
!e.formElement && e.openElements.tmplCount === 0 && (e._insertElement(t, L.HTML), e.formElement = e.openElements.current, e.openElements.pop());
|
|
6454
6440
|
}
|
|
6455
|
-
function
|
|
6441
|
+
function Cr(e, t) {
|
|
6456
6442
|
const n = t.tagName;
|
|
6457
6443
|
switch (n.length) {
|
|
6458
6444
|
case 2:
|
|
@@ -6480,9 +6466,9 @@ function Sr(e, t) {
|
|
|
6480
6466
|
ke(e, t);
|
|
6481
6467
|
}
|
|
6482
6468
|
}
|
|
6483
|
-
function
|
|
6469
|
+
function Sr(e, t) {
|
|
6484
6470
|
const n = t.tagName;
|
|
6485
|
-
n === l.TABLE ? e.openElements.hasInTableScope(l.TABLE) && (e.openElements.popUntilTagNamePopped(l.TABLE), e._resetInsertionMode()) : n === l.TEMPLATE ?
|
|
6471
|
+
n === l.TABLE ? e.openElements.hasInTableScope(l.TABLE) && (e.openElements.popUntilTagNamePopped(l.TABLE), e._resetInsertionMode()) : n === l.TEMPLATE ? Lt(e, t) : n !== l.BODY && n !== l.CAPTION && n !== l.COL && n !== l.COLGROUP && n !== l.HTML && n !== l.TBODY && n !== l.TD && n !== l.TFOOT && n !== l.TH && n !== l.THEAD && n !== l.TR && ke(e, t);
|
|
6486
6472
|
}
|
|
6487
6473
|
function ke(e, t) {
|
|
6488
6474
|
const n = e.fosterParentingEnabled;
|
|
@@ -6510,7 +6496,7 @@ function J9(e, t) {
|
|
|
6510
6496
|
}
|
|
6511
6497
|
function Z9(e, t) {
|
|
6512
6498
|
const n = t.tagName;
|
|
6513
|
-
n === l.CAPTION || n === l.TABLE ? e.openElements.hasInTableScope(l.CAPTION) && (e.openElements.generateImpliedEndTags(), e.openElements.popUntilTagNamePopped(l.CAPTION), e.activeFormattingElements.clearToLastMarker(), e.insertionMode = Ee, n === l.TABLE && e._processToken(t)) : n !== l.BODY && n !== l.COL && n !== l.COLGROUP && n !== l.HTML && n !== l.TBODY && n !== l.TD && n !== l.TFOOT && n !== l.TH && n !== l.THEAD && n !== l.TR &&
|
|
6499
|
+
n === l.CAPTION || n === l.TABLE ? e.openElements.hasInTableScope(l.CAPTION) && (e.openElements.generateImpliedEndTags(), e.openElements.popUntilTagNamePopped(l.CAPTION), e.activeFormattingElements.clearToLastMarker(), e.insertionMode = Ee, n === l.TABLE && e._processToken(t)) : n !== l.BODY && n !== l.COL && n !== l.COLGROUP && n !== l.HTML && n !== l.TBODY && n !== l.TD && n !== l.TFOOT && n !== l.TH && n !== l.THEAD && n !== l.TR && Ar(e, t);
|
|
6514
6500
|
}
|
|
6515
6501
|
function e0(e, t) {
|
|
6516
6502
|
const n = t.tagName;
|
|
@@ -6518,26 +6504,26 @@ function e0(e, t) {
|
|
|
6518
6504
|
}
|
|
6519
6505
|
function t0(e, t) {
|
|
6520
6506
|
const n = t.tagName;
|
|
6521
|
-
n === l.COLGROUP ? e.openElements.currentTagName === l.COLGROUP && (e.openElements.pop(), e.insertionMode = Ee) : n === l.TEMPLATE ?
|
|
6507
|
+
n === l.COLGROUP ? e.openElements.currentTagName === l.COLGROUP && (e.openElements.pop(), e.insertionMode = Ee) : n === l.TEMPLATE ? Lt(e, t) : n !== l.COL && nn(e, t);
|
|
6522
6508
|
}
|
|
6523
6509
|
function nn(e, t) {
|
|
6524
6510
|
e.openElements.currentTagName === l.COLGROUP && (e.openElements.pop(), e.insertionMode = Ee, e._processToken(t));
|
|
6525
6511
|
}
|
|
6526
6512
|
function n0(e, t) {
|
|
6527
6513
|
const n = t.tagName;
|
|
6528
|
-
n === l.TR ? (e.openElements.clearBackToTableBodyContext(), e._insertElement(t, L.HTML), e.insertionMode = ot) : n === l.TH || n === l.TD ? (e.openElements.clearBackToTableBodyContext(), e._insertFakeElement(l.TR), e.insertionMode = ot, e._processToken(t)) : n === l.CAPTION || n === l.COL || n === l.COLGROUP || n === l.TBODY || n === l.TFOOT || n === l.THEAD ? e.openElements.hasTableBodyContextInTableScope() && (e.openElements.clearBackToTableBodyContext(), e.openElements.pop(), e.insertionMode = Ee, e._processToken(t)) :
|
|
6514
|
+
n === l.TR ? (e.openElements.clearBackToTableBodyContext(), e._insertElement(t, L.HTML), e.insertionMode = ot) : n === l.TH || n === l.TD ? (e.openElements.clearBackToTableBodyContext(), e._insertFakeElement(l.TR), e.insertionMode = ot, e._processToken(t)) : n === l.CAPTION || n === l.COL || n === l.COLGROUP || n === l.TBODY || n === l.TFOOT || n === l.THEAD ? e.openElements.hasTableBodyContextInTableScope() && (e.openElements.clearBackToTableBodyContext(), e.openElements.pop(), e.insertionMode = Ee, e._processToken(t)) : Cr(e, t);
|
|
6529
6515
|
}
|
|
6530
6516
|
function r0(e, t) {
|
|
6531
6517
|
const n = t.tagName;
|
|
6532
|
-
n === l.TBODY || n === l.TFOOT || n === l.THEAD ? e.openElements.hasInTableScope(n) && (e.openElements.clearBackToTableBodyContext(), e.openElements.pop(), e.insertionMode = Ee) : n === l.TABLE ? e.openElements.hasTableBodyContextInTableScope() && (e.openElements.clearBackToTableBodyContext(), e.openElements.pop(), e.insertionMode = Ee, e._processToken(t)) : (n !== l.BODY && n !== l.CAPTION && n !== l.COL && n !== l.COLGROUP || n !== l.HTML && n !== l.TD && n !== l.TH && n !== l.TR) &&
|
|
6518
|
+
n === l.TBODY || n === l.TFOOT || n === l.THEAD ? e.openElements.hasInTableScope(n) && (e.openElements.clearBackToTableBodyContext(), e.openElements.pop(), e.insertionMode = Ee) : n === l.TABLE ? e.openElements.hasTableBodyContextInTableScope() && (e.openElements.clearBackToTableBodyContext(), e.openElements.pop(), e.insertionMode = Ee, e._processToken(t)) : (n !== l.BODY && n !== l.CAPTION && n !== l.COL && n !== l.COLGROUP || n !== l.HTML && n !== l.TD && n !== l.TH && n !== l.TR) && Sr(e, t);
|
|
6533
6519
|
}
|
|
6534
6520
|
function i0(e, t) {
|
|
6535
6521
|
const n = t.tagName;
|
|
6536
|
-
n === l.TH || n === l.TD ? (e.openElements.clearBackToTableRowContext(), e._insertElement(t, L.HTML), e.insertionMode = hn, e.activeFormattingElements.insertMarker()) : n === l.CAPTION || n === l.COL || n === l.COLGROUP || n === l.TBODY || n === l.TFOOT || n === l.THEAD || n === l.TR ? e.openElements.hasInTableScope(l.TR) && (e.openElements.clearBackToTableRowContext(), e.openElements.pop(), e.insertionMode = ye, e._processToken(t)) :
|
|
6522
|
+
n === l.TH || n === l.TD ? (e.openElements.clearBackToTableRowContext(), e._insertElement(t, L.HTML), e.insertionMode = hn, e.activeFormattingElements.insertMarker()) : n === l.CAPTION || n === l.COL || n === l.COLGROUP || n === l.TBODY || n === l.TFOOT || n === l.THEAD || n === l.TR ? e.openElements.hasInTableScope(l.TR) && (e.openElements.clearBackToTableRowContext(), e.openElements.pop(), e.insertionMode = ye, e._processToken(t)) : Cr(e, t);
|
|
6537
6523
|
}
|
|
6538
6524
|
function o0(e, t) {
|
|
6539
6525
|
const n = t.tagName;
|
|
6540
|
-
n === l.TR ? e.openElements.hasInTableScope(l.TR) && (e.openElements.clearBackToTableRowContext(), e.openElements.pop(), e.insertionMode = ye) : n === l.TABLE ? e.openElements.hasInTableScope(l.TR) && (e.openElements.clearBackToTableRowContext(), e.openElements.pop(), e.insertionMode = ye, e._processToken(t)) : n === l.TBODY || n === l.TFOOT || n === l.THEAD ? (e.openElements.hasInTableScope(n) || e.openElements.hasInTableScope(l.TR)) && (e.openElements.clearBackToTableRowContext(), e.openElements.pop(), e.insertionMode = ye, e._processToken(t)) : (n !== l.BODY && n !== l.CAPTION && n !== l.COL && n !== l.COLGROUP || n !== l.HTML && n !== l.TD && n !== l.TH) &&
|
|
6526
|
+
n === l.TR ? e.openElements.hasInTableScope(l.TR) && (e.openElements.clearBackToTableRowContext(), e.openElements.pop(), e.insertionMode = ye) : n === l.TABLE ? e.openElements.hasInTableScope(l.TR) && (e.openElements.clearBackToTableRowContext(), e.openElements.pop(), e.insertionMode = ye, e._processToken(t)) : n === l.TBODY || n === l.TFOOT || n === l.THEAD ? (e.openElements.hasInTableScope(n) || e.openElements.hasInTableScope(l.TR)) && (e.openElements.clearBackToTableRowContext(), e.openElements.pop(), e.insertionMode = ye, e._processToken(t)) : (n !== l.BODY && n !== l.CAPTION && n !== l.COL && n !== l.COLGROUP || n !== l.HTML && n !== l.TD && n !== l.TH) && Sr(e, t);
|
|
6541
6527
|
}
|
|
6542
6528
|
function s0(e, t) {
|
|
6543
6529
|
const n = t.tagName;
|
|
@@ -6545,7 +6531,7 @@ function s0(e, t) {
|
|
|
6545
6531
|
}
|
|
6546
6532
|
function a0(e, t) {
|
|
6547
6533
|
const n = t.tagName;
|
|
6548
|
-
n === l.TD || n === l.TH ? e.openElements.hasInTableScope(n) && (e.openElements.generateImpliedEndTags(), e.openElements.popUntilTagNamePopped(n), e.activeFormattingElements.clearToLastMarker(), e.insertionMode = ot) : n === l.TABLE || n === l.TBODY || n === l.TFOOT || n === l.THEAD || n === l.TR ? e.openElements.hasInTableScope(n) && (e._closeTableCell(), e._processToken(t)) : n !== l.BODY && n !== l.CAPTION && n !== l.COL && n !== l.COLGROUP && n !== l.HTML &&
|
|
6534
|
+
n === l.TD || n === l.TH ? e.openElements.hasInTableScope(n) && (e.openElements.generateImpliedEndTags(), e.openElements.popUntilTagNamePopped(n), e.activeFormattingElements.clearToLastMarker(), e.insertionMode = ot) : n === l.TABLE || n === l.TBODY || n === l.TFOOT || n === l.THEAD || n === l.TR ? e.openElements.hasInTableScope(n) && (e._closeTableCell(), e._processToken(t)) : n !== l.BODY && n !== l.CAPTION && n !== l.COL && n !== l.COLGROUP && n !== l.HTML && Ar(e, t);
|
|
6549
6535
|
}
|
|
6550
6536
|
function bs(e, t) {
|
|
6551
6537
|
const n = t.tagName;
|
|
@@ -6557,7 +6543,7 @@ function Ms(e, t) {
|
|
|
6557
6543
|
const r = e.openElements.items[e.openElements.stackTop - 1], i = r && e.treeAdapter.getTagName(r);
|
|
6558
6544
|
e.openElements.currentTagName === l.OPTION && i === l.OPTGROUP && e.openElements.pop(), e.openElements.currentTagName === l.OPTGROUP && e.openElements.pop();
|
|
6559
6545
|
} else
|
|
6560
|
-
n === l.OPTION ? e.openElements.currentTagName === l.OPTION && e.openElements.pop() : n === l.SELECT && e.openElements.hasInSelectScope(l.SELECT) ? (e.openElements.popUntilTagNamePopped(l.SELECT), e._resetInsertionMode()) : n === l.TEMPLATE &&
|
|
6546
|
+
n === l.OPTION ? e.openElements.currentTagName === l.OPTION && e.openElements.pop() : n === l.SELECT && e.openElements.hasInSelectScope(l.SELECT) ? (e.openElements.popUntilTagNamePopped(l.SELECT), e._resetInsertionMode()) : n === l.TEMPLATE && Lt(e, t);
|
|
6561
6547
|
}
|
|
6562
6548
|
function l0(e, t) {
|
|
6563
6549
|
const n = t.tagName;
|
|
@@ -6577,7 +6563,7 @@ function u0(e, t) {
|
|
|
6577
6563
|
}
|
|
6578
6564
|
}
|
|
6579
6565
|
function h0(e, t) {
|
|
6580
|
-
t.tagName === l.TEMPLATE &&
|
|
6566
|
+
t.tagName === l.TEMPLATE && Lt(e, t);
|
|
6581
6567
|
}
|
|
6582
6568
|
function Ls(e, t) {
|
|
6583
6569
|
e.openElements.tmplCount > 0 ? (e.openElements.popUntilTagNamePopped(l.TEMPLATE), e.activeFormattingElements.clearToLastMarker(), e._popTmplInsertionMode(), e._resetInsertionMode(), e._processToken(t)) : e.stopped = !0;
|
|
@@ -6690,11 +6676,11 @@ Me.prototype.commaOrSpaceSeparated = !1;
|
|
|
6690
6676
|
Me.prototype.mustUseProperty = !1;
|
|
6691
6677
|
Me.prototype.defined = !1;
|
|
6692
6678
|
let k0 = 0;
|
|
6693
|
-
const K =
|
|
6694
|
-
function
|
|
6679
|
+
const K = Pt(), oe = Pt(), Ds = Pt(), k = Pt(), te = Pt(), $t = Pt(), Ne = Pt();
|
|
6680
|
+
function Pt() {
|
|
6695
6681
|
return 2 ** ++k0;
|
|
6696
6682
|
}
|
|
6697
|
-
const
|
|
6683
|
+
const Jn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6698
6684
|
__proto__: null,
|
|
6699
6685
|
boolean: K,
|
|
6700
6686
|
booleanish: oe,
|
|
@@ -6703,8 +6689,8 @@ const Zn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6703
6689
|
number: k,
|
|
6704
6690
|
overloadedBoolean: Ds,
|
|
6705
6691
|
spaceSeparated: te
|
|
6706
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
6707
|
-
class
|
|
6692
|
+
}, Symbol.toStringTag, { value: "Module" })), Gn = Object.keys(Jn);
|
|
6693
|
+
class Nr extends Me {
|
|
6708
6694
|
/**
|
|
6709
6695
|
* @constructor
|
|
6710
6696
|
* @param {string} property
|
|
@@ -6715,13 +6701,13 @@ class Ir extends Me {
|
|
|
6715
6701
|
constructor(t, n, r, i) {
|
|
6716
6702
|
let o = -1;
|
|
6717
6703
|
if (super(t, n), go(this, "space", i), typeof r == "number")
|
|
6718
|
-
for (; ++o <
|
|
6719
|
-
const s =
|
|
6720
|
-
go(this,
|
|
6704
|
+
for (; ++o < Gn.length; ) {
|
|
6705
|
+
const s = Gn[o];
|
|
6706
|
+
go(this, Gn[o], (r & Jn[s]) === Jn[s]);
|
|
6721
6707
|
}
|
|
6722
6708
|
}
|
|
6723
6709
|
}
|
|
6724
|
-
|
|
6710
|
+
Nr.prototype.defined = !0;
|
|
6725
6711
|
function go(e, t, n) {
|
|
6726
6712
|
n && (e[t] = n);
|
|
6727
6713
|
}
|
|
@@ -6731,7 +6717,7 @@ function Zt(e) {
|
|
|
6731
6717
|
let r;
|
|
6732
6718
|
for (r in e.properties)
|
|
6733
6719
|
if (O0.call(e.properties, r)) {
|
|
6734
|
-
const i = e.properties[r], o = new
|
|
6720
|
+
const i = e.properties[r], o = new Nr(
|
|
6735
6721
|
r,
|
|
6736
6722
|
e.transform(e.attributes || {}, r),
|
|
6737
6723
|
i,
|
|
@@ -7736,7 +7722,7 @@ const vs = Zt({
|
|
|
7736
7722
|
zoomAndPan: null
|
|
7737
7723
|
}
|
|
7738
7724
|
}), R0 = /^data[-\w.:]+$/i, _o = /-[a-z]/g, b0 = /[A-Z]/g;
|
|
7739
|
-
function
|
|
7725
|
+
function Ir(e, t) {
|
|
7740
7726
|
const n = S1(t);
|
|
7741
7727
|
let r = t, i = Me;
|
|
7742
7728
|
if (n in e.normal)
|
|
@@ -7752,7 +7738,7 @@ function kr(e, t) {
|
|
|
7752
7738
|
s.charAt(0) !== "-" && (s = "-" + s), t = "data" + s;
|
|
7753
7739
|
}
|
|
7754
7740
|
}
|
|
7755
|
-
i =
|
|
7741
|
+
i = Nr;
|
|
7756
7742
|
}
|
|
7757
7743
|
return new i(r, t);
|
|
7758
7744
|
}
|
|
@@ -7802,7 +7788,7 @@ function w0(e, t) {
|
|
|
7802
7788
|
(n.padRight ? " " : "") + "," + (n.padLeft === !1 ? "" : " ")
|
|
7803
7789
|
).trim();
|
|
7804
7790
|
}
|
|
7805
|
-
const B0 = /* @__PURE__ */ new Set(["menu", "submit", "reset", "button"]),
|
|
7791
|
+
const B0 = /* @__PURE__ */ new Set(["menu", "submit", "reset", "button"]), Zn = {}.hasOwnProperty;
|
|
7806
7792
|
function Gs(e, t, n) {
|
|
7807
7793
|
const r = n && U0(n);
|
|
7808
7794
|
return (
|
|
@@ -7826,14 +7812,14 @@ function Gs(e, t, n) {
|
|
|
7826
7812
|
let c = -1, u;
|
|
7827
7813
|
if (o == null)
|
|
7828
7814
|
u = { type: "root", children: [] }, a.unshift(s);
|
|
7829
|
-
else if (u = P0(o, t), u.tagName = u.tagName.toLowerCase(), r &&
|
|
7815
|
+
else if (u = P0(o, t), u.tagName = u.tagName.toLowerCase(), r && Zn.call(r, u.tagName) && (u.tagName = r[u.tagName]), H0(s, u.tagName)) {
|
|
7830
7816
|
let h;
|
|
7831
7817
|
for (h in s)
|
|
7832
|
-
|
|
7818
|
+
Zn.call(s, h) && F0(e, u.properties, h, s[h]);
|
|
7833
7819
|
} else
|
|
7834
7820
|
a.unshift(s);
|
|
7835
7821
|
for (; ++c < a.length; )
|
|
7836
|
-
|
|
7822
|
+
er(u.children, a[c]);
|
|
7837
7823
|
return u.type === "element" && u.tagName === "template" && (u.content = { type: "root", children: u.children }, u.children = []), u;
|
|
7838
7824
|
}
|
|
7839
7825
|
);
|
|
@@ -7842,7 +7828,7 @@ function H0(e, t) {
|
|
|
7842
7828
|
return e == null || typeof e != "object" || Array.isArray(e) ? !1 : t === "input" || !e.type || typeof e.type != "string" ? !0 : "children" in e && Array.isArray(e.children) ? !1 : t === "button" ? B0.has(e.type.toLowerCase()) : !("value" in e);
|
|
7843
7829
|
}
|
|
7844
7830
|
function F0(e, t, n, r) {
|
|
7845
|
-
const i =
|
|
7831
|
+
const i = Ir(e, n);
|
|
7846
7832
|
let o = -1, s;
|
|
7847
7833
|
if (r != null) {
|
|
7848
7834
|
if (typeof r == "number") {
|
|
@@ -7860,16 +7846,16 @@ function F0(e, t, n, r) {
|
|
|
7860
7846
|
i.property === "className" && Array.isArray(t.className) && (s = t.className.concat(s)), t[i.property] = s;
|
|
7861
7847
|
}
|
|
7862
7848
|
}
|
|
7863
|
-
function
|
|
7849
|
+
function er(e, t) {
|
|
7864
7850
|
let n = -1;
|
|
7865
7851
|
if (t != null)
|
|
7866
7852
|
if (typeof t == "string" || typeof t == "number")
|
|
7867
7853
|
e.push({ type: "text", value: String(t) });
|
|
7868
7854
|
else if (Array.isArray(t))
|
|
7869
7855
|
for (; ++n < t.length; )
|
|
7870
|
-
|
|
7856
|
+
er(e, t[n]);
|
|
7871
7857
|
else if (typeof t == "object" && "type" in t)
|
|
7872
|
-
t.type === "root" ?
|
|
7858
|
+
t.type === "root" ? er(e, t.children) : e.push(t);
|
|
7873
7859
|
else
|
|
7874
7860
|
throw new Error("Expected node, nodes, or string, got `" + t + "`");
|
|
7875
7861
|
}
|
|
@@ -7886,7 +7872,7 @@ function v0(e) {
|
|
|
7886
7872
|
const t = [];
|
|
7887
7873
|
let n;
|
|
7888
7874
|
for (n in e)
|
|
7889
|
-
|
|
7875
|
+
Zn.call(e, n) && t.push([n, e[n]].join(": "));
|
|
7890
7876
|
return t.join("; ");
|
|
7891
7877
|
}
|
|
7892
7878
|
function U0(e) {
|
|
@@ -7976,7 +7962,7 @@ const j0 = {
|
|
|
7976
7962
|
function Q0(e, t) {
|
|
7977
7963
|
const n = t || {};
|
|
7978
7964
|
let r, i;
|
|
7979
|
-
return V0(n) ? (i = n, r = {}) : (i = n.file || void 0, r = n),
|
|
7965
|
+
return V0(n) ? (i = n, r = {}) : (i = n.file || void 0, r = n), kr(
|
|
7980
7966
|
{
|
|
7981
7967
|
schema: r.space === "svg" ? O1 : fn,
|
|
7982
7968
|
file: i,
|
|
@@ -7986,7 +7972,7 @@ function Q0(e, t) {
|
|
|
7986
7972
|
e
|
|
7987
7973
|
);
|
|
7988
7974
|
}
|
|
7989
|
-
function
|
|
7975
|
+
function kr(e, t) {
|
|
7990
7976
|
let n;
|
|
7991
7977
|
switch (t.nodeName) {
|
|
7992
7978
|
case "#comment": {
|
|
@@ -8038,7 +8024,7 @@ function zs(e, t) {
|
|
|
8038
8024
|
let n = -1;
|
|
8039
8025
|
const r = [];
|
|
8040
8026
|
for (; ++n < t.length; )
|
|
8041
|
-
r[n] =
|
|
8027
|
+
r[n] = kr(e, t[n]);
|
|
8042
8028
|
return r;
|
|
8043
8029
|
}
|
|
8044
8030
|
function W0(e, t) {
|
|
@@ -8055,7 +8041,7 @@ function W0(e, t) {
|
|
|
8055
8041
|
const a = (
|
|
8056
8042
|
/** @type {P5Template} */
|
|
8057
8043
|
t
|
|
8058
|
-
), c = a.sourceCodeLocation, u = c && c.startTag && Wt(c.startTag), h = c && c.endTag && Wt(c.endTag), m =
|
|
8044
|
+
), c = a.sourceCodeLocation, u = c && c.startTag && Wt(c.startTag), h = c && c.endTag && Wt(c.endTag), m = kr(e, a.content);
|
|
8059
8045
|
u && h && e.file && (m.position = { start: u.end, end: h.start }), s.content = m;
|
|
8060
8046
|
}
|
|
8061
8047
|
return e.schema = n, s;
|
|
@@ -8075,7 +8061,7 @@ function $0(e, t, n) {
|
|
|
8075
8061
|
let s;
|
|
8076
8062
|
if (n.attrs)
|
|
8077
8063
|
for (s in n.attrs)
|
|
8078
|
-
Ks.call(n.attrs, s) && (o[
|
|
8064
|
+
Ks.call(n.attrs, s) && (o[Ir(e.schema, s).property] = Wt(
|
|
8079
8065
|
n.attrs[s]
|
|
8080
8066
|
));
|
|
8081
8067
|
t.data = {
|
|
@@ -8594,7 +8580,7 @@ const s5 = [
|
|
|
8594
8580
|
"yacute",
|
|
8595
8581
|
"yen",
|
|
8596
8582
|
"yuml"
|
|
8597
|
-
],
|
|
8583
|
+
], Kn = {
|
|
8598
8584
|
nbsp: " ",
|
|
8599
8585
|
iexcl: "¡",
|
|
8600
8586
|
cent: "¢",
|
|
@@ -8856,14 +8842,14 @@ const s5 = [
|
|
|
8856
8842
|
"not",
|
|
8857
8843
|
"para",
|
|
8858
8844
|
"times"
|
|
8859
|
-
], qs = {}.hasOwnProperty,
|
|
8845
|
+
], qs = {}.hasOwnProperty, tr = {};
|
|
8860
8846
|
let z1;
|
|
8861
|
-
for (z1 in
|
|
8862
|
-
qs.call(
|
|
8847
|
+
for (z1 in Kn)
|
|
8848
|
+
qs.call(Kn, z1) && (tr[Kn[z1]] = z1);
|
|
8863
8849
|
function l5(e, t, n, r) {
|
|
8864
8850
|
const i = String.fromCharCode(e);
|
|
8865
|
-
if (qs.call(
|
|
8866
|
-
const o =
|
|
8851
|
+
if (qs.call(tr, i)) {
|
|
8852
|
+
const o = tr[i], s = "&" + o;
|
|
8867
8853
|
return n && s5.includes(o) && !a5.includes(o) && (!r || t && t !== 61 && /[^\da-z]/i.test(String.fromCharCode(t))) ? s : s + ";";
|
|
8868
8854
|
}
|
|
8869
8855
|
return "";
|
|
@@ -8910,7 +8896,7 @@ function Oo(e, t) {
|
|
|
8910
8896
|
r++, i = n.indexOf(t, i + t.length);
|
|
8911
8897
|
return r;
|
|
8912
8898
|
}
|
|
8913
|
-
function
|
|
8899
|
+
function Or(e) {
|
|
8914
8900
|
const t = (
|
|
8915
8901
|
// @ts-expect-error looks like a node.
|
|
8916
8902
|
e && typeof e == "object" && e.type === "text" ? (
|
|
@@ -8927,7 +8913,7 @@ function Ws(e) {
|
|
|
8927
8913
|
const o = n ? n.children : [];
|
|
8928
8914
|
let s = (r || 0) + e, a = o && o[s];
|
|
8929
8915
|
if (!i)
|
|
8930
|
-
for (; a &&
|
|
8916
|
+
for (; a && Or(a); )
|
|
8931
8917
|
s += e, a = o[s];
|
|
8932
8918
|
return a;
|
|
8933
8919
|
}
|
|
@@ -8939,9 +8925,9 @@ function $s(e) {
|
|
|
8939
8925
|
return d5.call(e, n.tagName) && e[n.tagName](n, r, i);
|
|
8940
8926
|
}
|
|
8941
8927
|
}
|
|
8942
|
-
const
|
|
8928
|
+
const yr = $s({
|
|
8943
8929
|
html: f5,
|
|
8944
|
-
head:
|
|
8930
|
+
head: zn,
|
|
8945
8931
|
body: m5,
|
|
8946
8932
|
p: T5,
|
|
8947
8933
|
li: p5,
|
|
@@ -8952,8 +8938,8 @@ const xr = $s({
|
|
|
8952
8938
|
optgroup: _5,
|
|
8953
8939
|
option: A5,
|
|
8954
8940
|
menuitem: C5,
|
|
8955
|
-
colgroup:
|
|
8956
|
-
caption:
|
|
8941
|
+
colgroup: zn,
|
|
8942
|
+
caption: zn,
|
|
8957
8943
|
thead: S5,
|
|
8958
8944
|
tbody: N5,
|
|
8959
8945
|
tfoot: I5,
|
|
@@ -8961,9 +8947,9 @@ const xr = $s({
|
|
|
8961
8947
|
td: xo,
|
|
8962
8948
|
th: xo
|
|
8963
8949
|
});
|
|
8964
|
-
function
|
|
8950
|
+
function zn(e, t, n) {
|
|
8965
8951
|
const r = ae(n, t, !0);
|
|
8966
|
-
return !r || r.type !== "comment" && !(r.type === "text" &&
|
|
8952
|
+
return !r || r.type !== "comment" && !(r.type === "text" && Or(r.value.charAt(0)));
|
|
8967
8953
|
}
|
|
8968
8954
|
function f5(e, t, n) {
|
|
8969
8955
|
const r = ae(n, t);
|
|
@@ -9051,15 +9037,15 @@ function x5(e) {
|
|
|
9051
9037
|
}
|
|
9052
9038
|
function R5(e) {
|
|
9053
9039
|
const t = ae(e, -1, !0);
|
|
9054
|
-
return !t || t.type !== "comment" && !(t.type === "text" &&
|
|
9040
|
+
return !t || t.type !== "comment" && !(t.type === "text" && Or(t.value.charAt(0))) && !(t.type === "element" && (t.tagName === "meta" || t.tagName === "link" || t.tagName === "script" || t.tagName === "style" || t.tagName === "template"));
|
|
9055
9041
|
}
|
|
9056
9042
|
function b5(e, t, n) {
|
|
9057
9043
|
const r = Qs(n, t), i = ae(e, -1, !0);
|
|
9058
|
-
return n && r && r.type === "element" && r.tagName === "colgroup" &&
|
|
9044
|
+
return n && r && r.type === "element" && r.tagName === "colgroup" && yr(r, n.children.indexOf(r), n) ? !1 : i && i.type === "element" && i.tagName === "col";
|
|
9059
9045
|
}
|
|
9060
9046
|
function M5(e, t, n) {
|
|
9061
9047
|
const r = Qs(n, t), i = ae(e, -1);
|
|
9062
|
-
return n && r && r.type === "element" && (r.tagName === "thead" || r.tagName === "tbody") &&
|
|
9048
|
+
return n && r && r.type === "element" && (r.tagName === "thead" || r.tagName === "tbody") && yr(r, n.children.indexOf(r), n) ? !1 : i && i.type === "element" && i.tagName === "tr";
|
|
9063
9049
|
}
|
|
9064
9050
|
const Y1 = {
|
|
9065
9051
|
// See: <https://html.spec.whatwg.org/#attribute-name-state>.
|
|
@@ -9100,7 +9086,7 @@ function L5(e, t, n, r) {
|
|
|
9100
9086
|
const u = P5(r, e.properties), h = r.all(
|
|
9101
9087
|
i.space === "html" && e.tagName === "template" ? e.content : e
|
|
9102
9088
|
);
|
|
9103
|
-
return r.schema = i, h && (s = !1), (u || !o || !O5(e, t, n)) && (a.push("<", e.tagName, u ? " " + u : ""), s && (i.space === "svg" || r.settings.closeSelfClosing) && (c = u.charAt(u.length - 1), (!r.settings.tightSelfClosing || c === "/" || c && c !== '"' && c !== "'") && a.push(" "), a.push("/")), a.push(">")), a.push(h), !s && (!o || !
|
|
9089
|
+
return r.schema = i, h && (s = !1), (u || !o || !O5(e, t, n)) && (a.push("<", e.tagName, u ? " " + u : ""), s && (i.space === "svg" || r.settings.closeSelfClosing) && (c = u.charAt(u.length - 1), (!r.settings.tightSelfClosing || c === "/" || c && c !== '"' && c !== "'") && a.push(" "), a.push("/")), a.push(">")), a.push(h), !s && (!o || !yr(e, t, n)) && a.push("</" + e.tagName + ">"), a.join("");
|
|
9104
9090
|
}
|
|
9105
9091
|
function P5(e, t) {
|
|
9106
9092
|
const n = [];
|
|
@@ -9119,7 +9105,7 @@ function P5(e, t) {
|
|
|
9119
9105
|
return n.join("");
|
|
9120
9106
|
}
|
|
9121
9107
|
function D5(e, t, n) {
|
|
9122
|
-
const r =
|
|
9108
|
+
const r = Ir(e.schema, t), i = e.settings.allowParseErrors && e.schema.space === "html" ? 0 : 1, o = e.settings.allowDangerousCharacters ? 0 : 1;
|
|
9123
9109
|
let s = e.quote, a;
|
|
9124
9110
|
if (r.overloadedBoolean && (n === r.attribute || n === "") ? n = !0 : (r.boolean || r.overloadedBoolean && typeof n != "string") && (n = Boolean(n)), n == null || n === !1 || typeof n == "number" && Number.isNaN(n))
|
|
9125
9111
|
return "";
|
|
@@ -9278,7 +9264,7 @@ function j5(e, t) {
|
|
|
9278
9264
|
r === i ? ++o > s && (s = o) : o = 1, i = r + t.length, r = n.indexOf(t, i);
|
|
9279
9265
|
return s;
|
|
9280
9266
|
}
|
|
9281
|
-
function
|
|
9267
|
+
function nr(e, t) {
|
|
9282
9268
|
return Boolean(
|
|
9283
9269
|
!t.options.fences && e.value && // If there’s no info…
|
|
9284
9270
|
!e.lang && // And there’s a non-whitespace character…
|
|
@@ -9296,7 +9282,7 @@ function q5(e) {
|
|
|
9296
9282
|
}
|
|
9297
9283
|
function Q5(e, t, n, r) {
|
|
9298
9284
|
const i = q5(n), o = e.value || "", s = i === "`" ? "GraveAccent" : "Tilde";
|
|
9299
|
-
if (
|
|
9285
|
+
if (nr(e, n)) {
|
|
9300
9286
|
const m = n.enter("codeIndented"), g = n.indentLines(o, W5);
|
|
9301
9287
|
return m(), g;
|
|
9302
9288
|
}
|
|
@@ -9332,7 +9318,7 @@ function Q5(e, t, n, r) {
|
|
|
9332
9318
|
function W5(e, t, n) {
|
|
9333
9319
|
return (n ? "" : " ") + e;
|
|
9334
9320
|
}
|
|
9335
|
-
function
|
|
9321
|
+
function xr(e) {
|
|
9336
9322
|
const t = e.options.quote || '"';
|
|
9337
9323
|
if (t !== '"' && t !== "'")
|
|
9338
9324
|
throw new Error(
|
|
@@ -9341,7 +9327,7 @@ function Rr(e) {
|
|
|
9341
9327
|
return t;
|
|
9342
9328
|
}
|
|
9343
9329
|
function $5(e, t, n, r) {
|
|
9344
|
-
const i =
|
|
9330
|
+
const i = xr(n), o = i === '"' ? "Quote" : "Apostrophe", s = n.enter("definition");
|
|
9345
9331
|
let a = n.enter("label");
|
|
9346
9332
|
const c = n.createTracker(r);
|
|
9347
9333
|
let u = c.move("[");
|
|
@@ -9393,7 +9379,7 @@ function Zs(e, t, n, r) {
|
|
|
9393
9379
|
function X5(e, t, n) {
|
|
9394
9380
|
return n.options.emphasis || "*";
|
|
9395
9381
|
}
|
|
9396
|
-
const
|
|
9382
|
+
const Rr = (
|
|
9397
9383
|
/**
|
|
9398
9384
|
* @type {(
|
|
9399
9385
|
* (<Kind extends Node>(test: PredicateTest<Kind>) => AssertPredicate<Kind>) &
|
|
@@ -9420,7 +9406,7 @@ function J5(e) {
|
|
|
9420
9406
|
const t = [];
|
|
9421
9407
|
let n = -1;
|
|
9422
9408
|
for (; ++n < e.length; )
|
|
9423
|
-
t[n] =
|
|
9409
|
+
t[n] = Rr(e[n]);
|
|
9424
9410
|
return mn(r);
|
|
9425
9411
|
function r(...i) {
|
|
9426
9412
|
let o = -1;
|
|
@@ -9458,7 +9444,7 @@ function mn(e) {
|
|
|
9458
9444
|
function th() {
|
|
9459
9445
|
return !0;
|
|
9460
9446
|
}
|
|
9461
|
-
const nh = !0,
|
|
9447
|
+
const nh = !0, rr = !1, rh = "skip", ih = (
|
|
9462
9448
|
/**
|
|
9463
9449
|
* @type {(
|
|
9464
9450
|
* (<Tree extends Node, Check extends Test>(tree: Tree, test: Check, visitor: BuildVisitor<Tree, Check>, reverse?: boolean | null | undefined) => void) &
|
|
@@ -9474,7 +9460,7 @@ const nh = !0, ir = !1, rh = "skip", ih = (
|
|
|
9474
9460
|
*/
|
|
9475
9461
|
function(e, t, n, r) {
|
|
9476
9462
|
typeof t == "function" && typeof n != "function" && (r = n, n = t, t = null);
|
|
9477
|
-
const i =
|
|
9463
|
+
const i = Rr(t), o = r ? -1 : 1;
|
|
9478
9464
|
s(e, void 0, [])();
|
|
9479
9465
|
function s(a, c, u) {
|
|
9480
9466
|
const h = a && typeof a == "object" ? a : {};
|
|
@@ -9493,11 +9479,11 @@ const nh = !0, ir = !1, rh = "skip", ih = (
|
|
|
9493
9479
|
return m;
|
|
9494
9480
|
function m() {
|
|
9495
9481
|
let g = [], E, _, I;
|
|
9496
|
-
if ((!t || i(a, c, u[u.length - 1] || null)) && (g = oh(n(a, u)), g[0] ===
|
|
9482
|
+
if ((!t || i(a, c, u[u.length - 1] || null)) && (g = oh(n(a, u)), g[0] === rr))
|
|
9497
9483
|
return g;
|
|
9498
9484
|
if (a.children && g[0] !== rh)
|
|
9499
9485
|
for (_ = (r ? a.children.length : -1) + o, I = u.concat(a); _ > -1 && _ < a.children.length; ) {
|
|
9500
|
-
if (E = s(a.children[_], _, I)(), E[0] ===
|
|
9486
|
+
if (E = s(a.children[_], _, I)(), E[0] === rr)
|
|
9501
9487
|
return E;
|
|
9502
9488
|
_ = typeof E[1] == "number" ? E[1] : _ + o;
|
|
9503
9489
|
}
|
|
@@ -9535,7 +9521,7 @@ const sh = (
|
|
|
9535
9521
|
}
|
|
9536
9522
|
}
|
|
9537
9523
|
);
|
|
9538
|
-
function
|
|
9524
|
+
function br(e, t) {
|
|
9539
9525
|
const n = (t || {}).includeImageAlt;
|
|
9540
9526
|
return ea(
|
|
9541
9527
|
e,
|
|
@@ -9559,9 +9545,9 @@ function ta(e, t) {
|
|
|
9559
9545
|
let n = !1;
|
|
9560
9546
|
return sh(e, (r) => {
|
|
9561
9547
|
if ("value" in r && /\r?\n|\r/.test(r.value) || r.type === "break")
|
|
9562
|
-
return n = !0,
|
|
9548
|
+
return n = !0, rr;
|
|
9563
9549
|
}), Boolean(
|
|
9564
|
-
(!e.depth || e.depth < 3) &&
|
|
9550
|
+
(!e.depth || e.depth < 3) && br(e) && (t.options.setext || n)
|
|
9565
9551
|
);
|
|
9566
9552
|
}
|
|
9567
9553
|
function lh(e, t, n, r) {
|
|
@@ -9602,7 +9588,7 @@ function ch() {
|
|
|
9602
9588
|
}
|
|
9603
9589
|
ra.peek = uh;
|
|
9604
9590
|
function ra(e, t, n, r) {
|
|
9605
|
-
const i =
|
|
9591
|
+
const i = xr(n), o = i === '"' ? "Quote" : "Apostrophe", s = n.enter("image");
|
|
9606
9592
|
let a = n.enter("label");
|
|
9607
9593
|
const c = n.createTracker(r);
|
|
9608
9594
|
let u = c.move("![");
|
|
@@ -9683,7 +9669,7 @@ function dh() {
|
|
|
9683
9669
|
return "`";
|
|
9684
9670
|
}
|
|
9685
9671
|
function aa(e, t) {
|
|
9686
|
-
const n =
|
|
9672
|
+
const n = br(e);
|
|
9687
9673
|
return Boolean(
|
|
9688
9674
|
!t.options.resourceLink && // If there’s a url…
|
|
9689
9675
|
e.url && // And there’s a no title…
|
|
@@ -9697,7 +9683,7 @@ function aa(e, t) {
|
|
|
9697
9683
|
}
|
|
9698
9684
|
la.peek = fh;
|
|
9699
9685
|
function la(e, t, n, r) {
|
|
9700
|
-
const i =
|
|
9686
|
+
const i = xr(n), o = i === '"' ? "Quote" : "Apostrophe", s = n.createTracker(r);
|
|
9701
9687
|
let a, c;
|
|
9702
9688
|
if (aa(e, n)) {
|
|
9703
9689
|
const h = n.stack;
|
|
@@ -9764,7 +9750,7 @@ function ca(e, t, n, r) {
|
|
|
9764
9750
|
function mh() {
|
|
9765
9751
|
return "[";
|
|
9766
9752
|
}
|
|
9767
|
-
function
|
|
9753
|
+
function Mr(e) {
|
|
9768
9754
|
const t = e.options.bullet || "*";
|
|
9769
9755
|
if (t !== "*" && t !== "+" && t !== "-")
|
|
9770
9756
|
throw new Error(
|
|
@@ -9773,7 +9759,7 @@ function Lr(e) {
|
|
|
9773
9759
|
return t;
|
|
9774
9760
|
}
|
|
9775
9761
|
function Th(e) {
|
|
9776
|
-
const t =
|
|
9762
|
+
const t = Mr(e), n = e.options.bulletOther;
|
|
9777
9763
|
if (!n)
|
|
9778
9764
|
return t === "*" ? "-" : "*";
|
|
9779
9765
|
if (n !== "*" && n !== "+" && n !== "-")
|
|
@@ -9818,7 +9804,7 @@ function ha(e) {
|
|
|
9818
9804
|
}
|
|
9819
9805
|
function Eh(e, t, n, r) {
|
|
9820
9806
|
const i = n.enter("list"), o = n.bulletCurrent;
|
|
9821
|
-
let s = e.ordered ? ua(n) :
|
|
9807
|
+
let s = e.ordered ? ua(n) : Mr(n);
|
|
9822
9808
|
const a = e.ordered ? ph(n) : Th(n), c = n.bulletLastUsed;
|
|
9823
9809
|
let u = !1;
|
|
9824
9810
|
if (t && // Explicit `other` set.
|
|
@@ -9857,7 +9843,7 @@ function gh(e) {
|
|
|
9857
9843
|
}
|
|
9858
9844
|
function _h(e, t, n, r) {
|
|
9859
9845
|
const i = gh(n);
|
|
9860
|
-
let o = n.bulletCurrent ||
|
|
9846
|
+
let o = n.bulletCurrent || Mr(n);
|
|
9861
9847
|
t && t.type === "list" && t.ordered && (o = (typeof t.start == "number" && t.start > -1 ? t.start : 1) + (n.options.incrementListMarker === !1 ? 0 : t.children.indexOf(e)) + o);
|
|
9862
9848
|
let s = o.length + 1;
|
|
9863
9849
|
(i === "tab" || i === "mixed" && (t && t.type === "list" && t.spread || e.spread)) && (s = Math.ceil(s / 4) * 4);
|
|
@@ -9878,7 +9864,7 @@ function Ah(e, t, n, r) {
|
|
|
9878
9864
|
}
|
|
9879
9865
|
const Ch = (
|
|
9880
9866
|
/** @type {AssertPredicatePhrasing} */
|
|
9881
|
-
|
|
9867
|
+
Rr([
|
|
9882
9868
|
"break",
|
|
9883
9869
|
"delete",
|
|
9884
9870
|
"emphasis",
|
|
@@ -9957,7 +9943,7 @@ const xh = {
|
|
|
9957
9943
|
thematicBreak: yh
|
|
9958
9944
|
}, Rh = [bh];
|
|
9959
9945
|
function bh(e, t, n, r) {
|
|
9960
|
-
if (t.type === "code" &&
|
|
9946
|
+
if (t.type === "code" && nr(t, r) && (e.type === "list" || e.type === t.type && nr(e, r)) || e.type === "list" && e.type === t.type && Boolean(e.ordered) === Boolean(t.ordered) && !(e.ordered ? r.options.bulletOrderedOther : r.options.bulletOther))
|
|
9961
9947
|
return !1;
|
|
9962
9948
|
if ("spread" in n && typeof n.spread == "boolean")
|
|
9963
9949
|
return e.type === "paragraph" && // Two paragraphs.
|
|
@@ -10101,7 +10087,7 @@ const kt = [
|
|
|
10101
10087
|
// A tilde can start code (fenced).
|
|
10102
10088
|
{ atBreak: !0, character: "~" }
|
|
10103
10089
|
], Lo = document.createElement("i");
|
|
10104
|
-
function
|
|
10090
|
+
function Lr(e) {
|
|
10105
10091
|
const t = "&" + e + ";";
|
|
10106
10092
|
Lo.innerHTML = t;
|
|
10107
10093
|
const n = Lo.textContent;
|
|
@@ -10129,7 +10115,7 @@ function Ph(e, t, n) {
|
|
|
10129
10115
|
const i = n.charCodeAt(1), o = i === 120 || i === 88;
|
|
10130
10116
|
return fa(n.slice(o ? 2 : 1), o ? 16 : 10);
|
|
10131
10117
|
}
|
|
10132
|
-
return
|
|
10118
|
+
return Lr(n) || e;
|
|
10133
10119
|
}
|
|
10134
10120
|
function Dh(e) {
|
|
10135
10121
|
return e.label || !e.identifier ? e.label || "" : ma(e.identifier);
|
|
@@ -10394,8 +10380,8 @@ function Zh(e, t) {
|
|
|
10394
10380
|
(t[n].add === "after" ? e : r).push(t[n]);
|
|
10395
10381
|
$e(e, 0, 0, r);
|
|
10396
10382
|
}
|
|
10397
|
-
const ed = /[!-/:-@[-`{-~\u00A1\u00A7\u00AB\u00B6\u00B7\u00BB\u00BF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C77\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4F\u2E52\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]/, qe = Ct(/[A-Za-z]/),
|
|
10398
|
-
function
|
|
10383
|
+
const ed = /[!-/:-@[-`{-~\u00A1\u00A7\u00AB\u00B6\u00B7\u00BB\u00BF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C77\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4F\u2E52\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]/, qe = Ct(/[A-Za-z]/), ir = Ct(/\d/), td = Ct(/[\dA-Fa-f]/), ve = Ct(/[\dA-Za-z]/), nd = Ct(/[!-/:-@[-`{-~]/), wo = Ct(/[#-'*+\--9=?A-Z^-~]/);
|
|
10384
|
+
function or(e) {
|
|
10399
10385
|
return (
|
|
10400
10386
|
// Special whitespace codes (which have negative values), C0 and Control
|
|
10401
10387
|
// character DEL
|
|
@@ -10616,7 +10602,7 @@ function Ho(e) {
|
|
|
10616
10602
|
if (id(e))
|
|
10617
10603
|
return 2;
|
|
10618
10604
|
}
|
|
10619
|
-
function
|
|
10605
|
+
function Pr(e, t, n) {
|
|
10620
10606
|
const r = [];
|
|
10621
10607
|
let i = -1;
|
|
10622
10608
|
for (; ++i < e.length; ) {
|
|
@@ -10625,7 +10611,7 @@ function Dr(e, t, n) {
|
|
|
10625
10611
|
}
|
|
10626
10612
|
return t;
|
|
10627
10613
|
}
|
|
10628
|
-
const
|
|
10614
|
+
const sr = {
|
|
10629
10615
|
name: "attention",
|
|
10630
10616
|
tokenize: hd,
|
|
10631
10617
|
resolveAll: ud
|
|
@@ -10667,7 +10653,7 @@ function ud(e, t) {
|
|
|
10667
10653
|
["enter", o, t]
|
|
10668
10654
|
]), u = Oe(
|
|
10669
10655
|
u,
|
|
10670
|
-
|
|
10656
|
+
Pr(
|
|
10671
10657
|
t.parser.constructs.insideSpan.null,
|
|
10672
10658
|
e.slice(r + 1, n),
|
|
10673
10659
|
t
|
|
@@ -10725,7 +10711,7 @@ function fd(e, t, n) {
|
|
|
10725
10711
|
return _ === 58 ? (e.consume(_), c) : (_ === 43 || _ === 45 || _ === 46 || ve(_)) && r++ < 32 ? (e.consume(_), a) : u(_);
|
|
10726
10712
|
}
|
|
10727
10713
|
function c(_) {
|
|
10728
|
-
return _ === 62 ? (e.exit("autolinkProtocol"), E(_)) : _ === null || _ === 32 || _ === 60 ||
|
|
10714
|
+
return _ === 62 ? (e.exit("autolinkProtocol"), E(_)) : _ === null || _ === 32 || _ === 60 || or(_) ? n(_) : (e.consume(_), c);
|
|
10729
10715
|
}
|
|
10730
10716
|
function u(_) {
|
|
10731
10717
|
return _ === 64 ? (e.consume(_), r = 0, h) : wo(_) ? (e.consume(_), u) : n(_);
|
|
@@ -10816,11 +10802,11 @@ function _d(e, t, n) {
|
|
|
10816
10802
|
return m === 35 ? (e.enter("characterReferenceMarkerNumeric"), e.consume(m), e.exit("characterReferenceMarkerNumeric"), u) : (e.enter("characterReferenceValue"), o = 31, s = ve, h(m));
|
|
10817
10803
|
}
|
|
10818
10804
|
function u(m) {
|
|
10819
|
-
return m === 88 || m === 120 ? (e.enter("characterReferenceMarkerHexadecimal"), e.consume(m), e.exit("characterReferenceMarkerHexadecimal"), e.enter("characterReferenceValue"), o = 6, s = td, h) : (e.enter("characterReferenceValue"), o = 7, s =
|
|
10805
|
+
return m === 88 || m === 120 ? (e.enter("characterReferenceMarkerHexadecimal"), e.consume(m), e.exit("characterReferenceMarkerHexadecimal"), e.enter("characterReferenceValue"), o = 6, s = td, h) : (e.enter("characterReferenceValue"), o = 7, s = ir, h(m));
|
|
10820
10806
|
}
|
|
10821
10807
|
function h(m) {
|
|
10822
10808
|
let g;
|
|
10823
|
-
return m === 59 && i ? (g = e.exit("characterReferenceValue"), s === ve && !
|
|
10809
|
+
return m === 59 && i ? (g = e.exit("characterReferenceValue"), s === ve && !Lr(r.sliceSerialize(g)) ? n(m) : (e.enter("characterReferenceMarker"), e.consume(m), e.exit("characterReferenceMarker"), e.exit("characterReference"), t)) : s(m) && i++ < o ? (e.consume(m), h) : n(m);
|
|
10824
10810
|
}
|
|
10825
10811
|
}
|
|
10826
10812
|
const vo = {
|
|
@@ -10914,7 +10900,7 @@ function Ad(e, t, n) {
|
|
|
10914
10900
|
}
|
|
10915
10901
|
}
|
|
10916
10902
|
}
|
|
10917
|
-
const
|
|
10903
|
+
const Yn = {
|
|
10918
10904
|
name: "codeIndented",
|
|
10919
10905
|
tokenize: Sd
|
|
10920
10906
|
}, Cd = {
|
|
@@ -11087,7 +11073,7 @@ function _a(e, t, n, r, i, o, s, a, c) {
|
|
|
11087
11073
|
let h = 0;
|
|
11088
11074
|
return m;
|
|
11089
11075
|
function m(N) {
|
|
11090
|
-
return N === 60 ? (e.enter(r), e.enter(i), e.enter(o), e.consume(N), e.exit(o), g) : N === null || N === 41 ||
|
|
11076
|
+
return N === 60 ? (e.enter(r), e.enter(i), e.enter(o), e.consume(N), e.exit(o), g) : N === null || N === 41 || or(N) ? n(N) : (e.enter(r), e.enter(s), e.enter(a), e.enter("chunkString", {
|
|
11091
11077
|
contentType: "string"
|
|
11092
11078
|
}), I(N));
|
|
11093
11079
|
}
|
|
@@ -11103,7 +11089,7 @@ function _a(e, t, n, r, i, o, s, a, c) {
|
|
|
11103
11089
|
return N === 60 || N === 62 || N === 92 ? (e.consume(N), E) : E(N);
|
|
11104
11090
|
}
|
|
11105
11091
|
function I(N) {
|
|
11106
|
-
return N === 40 ? ++h > u ? n(N) : (e.consume(N), I) : N === 41 ? h-- ? (e.consume(N), I) : (e.exit("chunkString"), e.exit(a), e.exit(s), e.exit(r), t(N)) : N === null || xe(N) ? h ? n(N) : (e.exit("chunkString"), e.exit(a), e.exit(s), e.exit(r), t(N)) :
|
|
11092
|
+
return N === 40 ? ++h > u ? n(N) : (e.consume(N), I) : N === 41 ? h-- ? (e.consume(N), I) : (e.exit("chunkString"), e.exit(a), e.exit(s), e.exit(r), t(N)) : N === null || xe(N) ? h ? n(N) : (e.exit("chunkString"), e.exit(a), e.exit(s), e.exit(r), t(N)) : or(N) ? n(N) : (e.consume(N), N === 92 ? M : I);
|
|
11107
11093
|
}
|
|
11108
11094
|
function M(N) {
|
|
11109
11095
|
return N === 40 || N === 41 || N === 92 ? (e.consume(N), I) : I(N);
|
|
@@ -11446,13 +11432,13 @@ function Qd(e, t, n) {
|
|
|
11446
11432
|
p
|
|
11447
11433
|
)(T) : (e.enter("htmlFlowData"), b(T));
|
|
11448
11434
|
}
|
|
11449
|
-
function me(T,
|
|
11450
|
-
return
|
|
11451
|
-
function
|
|
11435
|
+
function me(T, Dt, e1) {
|
|
11436
|
+
return wt;
|
|
11437
|
+
function wt(De) {
|
|
11452
11438
|
return T.enter("lineEnding"), T.consume(De), T.exit("lineEnding"), ce;
|
|
11453
11439
|
}
|
|
11454
11440
|
function ce(De) {
|
|
11455
|
-
return r.parser.lazy[r.now().line] ? e1(De) :
|
|
11441
|
+
return r.parser.lazy[r.now().line] ? e1(De) : Dt(De);
|
|
11456
11442
|
}
|
|
11457
11443
|
}
|
|
11458
11444
|
function Le(T) {
|
|
@@ -11584,7 +11570,7 @@ function Vd(e, t, n) {
|
|
|
11584
11570
|
return p === 62 ? (e.consume(p), e.exit("htmlTextData"), e.exit("htmlText"), t) : n(p);
|
|
11585
11571
|
}
|
|
11586
11572
|
}
|
|
11587
|
-
const
|
|
11573
|
+
const Dr = {
|
|
11588
11574
|
name: "labelEnd",
|
|
11589
11575
|
tokenize: nf,
|
|
11590
11576
|
resolveTo: tf,
|
|
@@ -11634,7 +11620,7 @@ function tf(e, t) {
|
|
|
11634
11620
|
["enter", u, t]
|
|
11635
11621
|
], a = Oe(a, e.slice(o + 1, o + r + 3)), a = Oe(a, [["enter", h, t]]), a = Oe(
|
|
11636
11622
|
a,
|
|
11637
|
-
|
|
11623
|
+
Pr(
|
|
11638
11624
|
t.parser.constructs.insideSpan.null,
|
|
11639
11625
|
e.slice(o + r + 4, s - 3),
|
|
11640
11626
|
t
|
|
@@ -11749,7 +11735,7 @@ function sf(e, t, n) {
|
|
|
11749
11735
|
const af = {
|
|
11750
11736
|
name: "labelStartImage",
|
|
11751
11737
|
tokenize: lf,
|
|
11752
|
-
resolveAll:
|
|
11738
|
+
resolveAll: Dr.resolveAll
|
|
11753
11739
|
};
|
|
11754
11740
|
function lf(e, t, n) {
|
|
11755
11741
|
const r = this;
|
|
@@ -11767,7 +11753,7 @@ function lf(e, t, n) {
|
|
|
11767
11753
|
const cf = {
|
|
11768
11754
|
name: "labelStartLink",
|
|
11769
11755
|
tokenize: uf,
|
|
11770
|
-
resolveAll:
|
|
11756
|
+
resolveAll: Dr.resolveAll
|
|
11771
11757
|
};
|
|
11772
11758
|
function uf(e, t, n) {
|
|
11773
11759
|
const r = this;
|
|
@@ -11779,7 +11765,7 @@ function uf(e, t, n) {
|
|
|
11779
11765
|
return s === 94 && "_hiddenFootnoteSupport" in r.parser.constructs ? n(s) : t(s);
|
|
11780
11766
|
}
|
|
11781
11767
|
}
|
|
11782
|
-
const
|
|
11768
|
+
const jn = {
|
|
11783
11769
|
name: "lineEnding",
|
|
11784
11770
|
tokenize: hf
|
|
11785
11771
|
};
|
|
@@ -11826,7 +11812,7 @@ function Tf(e, t, n) {
|
|
|
11826
11812
|
return a;
|
|
11827
11813
|
function a(E) {
|
|
11828
11814
|
const _ = r.containerState.type || (E === 42 || E === 43 || E === 45 ? "listUnordered" : "listOrdered");
|
|
11829
|
-
if (_ === "listUnordered" ? !r.containerState.marker || E === r.containerState.marker :
|
|
11815
|
+
if (_ === "listUnordered" ? !r.containerState.marker || E === r.containerState.marker : ir(E)) {
|
|
11830
11816
|
if (r.containerState.type || (r.containerState.type = _, e.enter(_, {
|
|
11831
11817
|
_container: !0
|
|
11832
11818
|
})), _ === "listUnordered")
|
|
@@ -11837,7 +11823,7 @@ function Tf(e, t, n) {
|
|
|
11837
11823
|
return n(E);
|
|
11838
11824
|
}
|
|
11839
11825
|
function c(E) {
|
|
11840
|
-
return
|
|
11826
|
+
return ir(E) && ++s < 10 ? (e.consume(E), c) : (!r.interrupt || s < 2) && (r.containerState.marker ? E === r.containerState.marker : E === 41 || E === 46) ? (e.exit("listItemValue"), u(E)) : n(E);
|
|
11841
11827
|
}
|
|
11842
11828
|
function u(E) {
|
|
11843
11829
|
return e.enter("listItemMarker"), e.consume(E), e.exit("listItemMarker"), r.containerState.marker = r.containerState.marker || E, e.check(
|
|
@@ -12126,7 +12112,7 @@ function xf(e, t, n) {
|
|
|
12126
12112
|
let h = t.tokenize.call(u, c);
|
|
12127
12113
|
return t.resolveAll && o.push(t), u;
|
|
12128
12114
|
function m(b) {
|
|
12129
|
-
return s = Oe(s, b), M(), s[s.length - 1] !== null ? [] : (Y(t, 0), u.events =
|
|
12115
|
+
return s = Oe(s, b), M(), s[s.length - 1] !== null ? [] : (Y(t, 0), u.events = Pr(o, u.events, u), u.events);
|
|
12130
12116
|
}
|
|
12131
12117
|
function g(b, B) {
|
|
12132
12118
|
return bf(E(b), B);
|
|
@@ -12182,37 +12168,37 @@ function xf(e, t, n) {
|
|
|
12182
12168
|
function p(ce) {
|
|
12183
12169
|
return De;
|
|
12184
12170
|
function De(ct) {
|
|
12185
|
-
const
|
|
12171
|
+
const Bt = ct !== null && ce[ct], Ht = ct !== null && ce.null, pn = [
|
|
12186
12172
|
// To do: add more extension tests.
|
|
12187
12173
|
/* c8 ignore next 2 */
|
|
12188
|
-
...Array.isArray(
|
|
12189
|
-
...Array.isArray(
|
|
12174
|
+
...Array.isArray(Bt) ? Bt : Bt ? [Bt] : [],
|
|
12175
|
+
...Array.isArray(Ht) ? Ht : Ht ? [Ht] : []
|
|
12190
12176
|
];
|
|
12191
12177
|
return T(pn)(ct);
|
|
12192
12178
|
}
|
|
12193
12179
|
}
|
|
12194
12180
|
function T(ce) {
|
|
12195
|
-
return Pe = ce, de = 0, ce.length === 0 ? Ke :
|
|
12181
|
+
return Pe = ce, de = 0, ce.length === 0 ? Ke : Dt(ce[de]);
|
|
12196
12182
|
}
|
|
12197
|
-
function
|
|
12183
|
+
function Dt(ce) {
|
|
12198
12184
|
return De;
|
|
12199
12185
|
function De(ct) {
|
|
12200
|
-
return le = Q(), ge = ce, ce.partial || (u.currentConstruct = ce), ce.name && u.parser.constructs.disable.null.includes(ce.name) ?
|
|
12186
|
+
return le = Q(), ge = ce, ce.partial || (u.currentConstruct = ce), ce.name && u.parser.constructs.disable.null.includes(ce.name) ? wt() : ce.tokenize.call(
|
|
12201
12187
|
// If we do have fields, create an object w/ `context` as its
|
|
12202
12188
|
// prototype.
|
|
12203
12189
|
// This allows a “live binding”, which is needed for `interrupt`.
|
|
12204
12190
|
B ? Object.assign(Object.create(u), B) : u,
|
|
12205
12191
|
c,
|
|
12206
12192
|
e1,
|
|
12207
|
-
|
|
12193
|
+
wt
|
|
12208
12194
|
)(ct);
|
|
12209
12195
|
}
|
|
12210
12196
|
}
|
|
12211
12197
|
function e1(ce) {
|
|
12212
12198
|
return b(ge, le), Le;
|
|
12213
12199
|
}
|
|
12214
|
-
function
|
|
12215
|
-
return le.restore(), ++de < Pe.length ?
|
|
12200
|
+
function wt(ce) {
|
|
12201
|
+
return le.restore(), ++de < Pe.length ? Dt(Pe[de]) : Ke;
|
|
12216
12202
|
}
|
|
12217
12203
|
}
|
|
12218
12204
|
}
|
|
@@ -12303,9 +12289,9 @@ const Mf = {
|
|
|
12303
12289
|
}, Lf = {
|
|
12304
12290
|
[91]: Dd
|
|
12305
12291
|
}, Pf = {
|
|
12306
|
-
[-2]:
|
|
12307
|
-
[-1]:
|
|
12308
|
-
[32]:
|
|
12292
|
+
[-2]: Yn,
|
|
12293
|
+
[-1]: Yn,
|
|
12294
|
+
[32]: Yn
|
|
12309
12295
|
}, Df = {
|
|
12310
12296
|
[35]: Ud,
|
|
12311
12297
|
[42]: X1,
|
|
@@ -12319,20 +12305,20 @@ const Mf = {
|
|
|
12319
12305
|
[38]: Ea,
|
|
12320
12306
|
[92]: pa
|
|
12321
12307
|
}, Bf = {
|
|
12322
|
-
[-5]:
|
|
12323
|
-
[-4]:
|
|
12324
|
-
[-3]:
|
|
12308
|
+
[-5]: jn,
|
|
12309
|
+
[-4]: jn,
|
|
12310
|
+
[-3]: jn,
|
|
12325
12311
|
[33]: af,
|
|
12326
12312
|
[38]: Ea,
|
|
12327
|
-
[42]:
|
|
12313
|
+
[42]: sr,
|
|
12328
12314
|
[60]: [dd, $d],
|
|
12329
12315
|
[91]: cf,
|
|
12330
12316
|
[92]: [Fd, pa],
|
|
12331
|
-
[93]:
|
|
12332
|
-
[95]:
|
|
12317
|
+
[93]: Dr,
|
|
12318
|
+
[95]: sr,
|
|
12333
12319
|
[96]: Id
|
|
12334
12320
|
}, Hf = {
|
|
12335
|
-
null: [
|
|
12321
|
+
null: [sr, If]
|
|
12336
12322
|
}, Ff = {
|
|
12337
12323
|
null: [42, 95]
|
|
12338
12324
|
}, vf = {
|
|
@@ -12440,17 +12426,17 @@ function jf(e) {
|
|
|
12440
12426
|
transforms: [],
|
|
12441
12427
|
canContainEols: ["emphasis", "fragment", "heading", "paragraph", "strong"],
|
|
12442
12428
|
enter: {
|
|
12443
|
-
autolink: a(
|
|
12429
|
+
autolink: a(vr),
|
|
12444
12430
|
autolinkProtocol: b,
|
|
12445
12431
|
autolinkEmail: b,
|
|
12446
|
-
atxHeading: a(
|
|
12432
|
+
atxHeading: a(Br),
|
|
12447
12433
|
blockQuote: a(pn),
|
|
12448
12434
|
characterEscape: b,
|
|
12449
12435
|
characterReference: b,
|
|
12450
|
-
codeFenced: a(
|
|
12436
|
+
codeFenced: a(wr),
|
|
12451
12437
|
codeFencedFenceInfo: c,
|
|
12452
12438
|
codeFencedFenceMeta: c,
|
|
12453
|
-
codeIndented: a(
|
|
12439
|
+
codeIndented: a(wr, c),
|
|
12454
12440
|
codeText: a(xa, c),
|
|
12455
12441
|
codeTextData: b,
|
|
12456
12442
|
data: b,
|
|
@@ -12460,25 +12446,25 @@ function jf(e) {
|
|
|
12460
12446
|
definitionLabelString: c,
|
|
12461
12447
|
definitionTitleString: c,
|
|
12462
12448
|
emphasis: a(ba),
|
|
12463
|
-
hardBreakEscape: a(
|
|
12464
|
-
hardBreakTrailing: a(
|
|
12465
|
-
htmlFlow: a(
|
|
12449
|
+
hardBreakEscape: a(Hr),
|
|
12450
|
+
hardBreakTrailing: a(Hr),
|
|
12451
|
+
htmlFlow: a(Fr, c),
|
|
12466
12452
|
htmlFlowData: b,
|
|
12467
|
-
htmlText: a(
|
|
12453
|
+
htmlText: a(Fr, c),
|
|
12468
12454
|
htmlTextData: b,
|
|
12469
12455
|
image: a(Ma),
|
|
12470
12456
|
label: c,
|
|
12471
|
-
link: a(
|
|
12457
|
+
link: a(vr),
|
|
12472
12458
|
listItem: a(La),
|
|
12473
12459
|
listItemValue: _,
|
|
12474
|
-
listOrdered: a(
|
|
12475
|
-
listUnordered: a(
|
|
12460
|
+
listOrdered: a(Ur, E),
|
|
12461
|
+
listUnordered: a(Ur),
|
|
12476
12462
|
paragraph: a(Pa),
|
|
12477
|
-
reference:
|
|
12463
|
+
reference: wt,
|
|
12478
12464
|
referenceString: c,
|
|
12479
12465
|
resourceDestinationString: c,
|
|
12480
12466
|
resourceTitleString: c,
|
|
12481
|
-
setextHeading: a(
|
|
12467
|
+
setextHeading: a(Br),
|
|
12482
12468
|
strong: a(Da),
|
|
12483
12469
|
thematicBreak: a(Ba)
|
|
12484
12470
|
},
|
|
@@ -12486,8 +12472,8 @@ function jf(e) {
|
|
|
12486
12472
|
atxHeading: h(),
|
|
12487
12473
|
atxHeadingSequence: w,
|
|
12488
12474
|
autolink: h(),
|
|
12489
|
-
autolinkEmail:
|
|
12490
|
-
autolinkProtocol:
|
|
12475
|
+
autolinkEmail: Ht,
|
|
12476
|
+
autolinkProtocol: Bt,
|
|
12491
12477
|
blockQuote: h(),
|
|
12492
12478
|
characterEscapeValue: B,
|
|
12493
12479
|
characterReferenceMarkerHexadecimal: De,
|
|
@@ -12524,7 +12510,7 @@ function jf(e) {
|
|
|
12524
12510
|
paragraph: h(),
|
|
12525
12511
|
referenceString: ce,
|
|
12526
12512
|
resourceDestinationString: T,
|
|
12527
|
-
resourceTitleString:
|
|
12513
|
+
resourceTitleString: Dt,
|
|
12528
12514
|
resource: e1,
|
|
12529
12515
|
setextHeading: h(he),
|
|
12530
12516
|
setextHeadingLineSequence: Q,
|
|
@@ -12670,7 +12656,7 @@ function jf(e) {
|
|
|
12670
12656
|
return H.position.end = Tt(A.end), H;
|
|
12671
12657
|
}
|
|
12672
12658
|
function g() {
|
|
12673
|
-
return
|
|
12659
|
+
return br(this.stack.pop());
|
|
12674
12660
|
}
|
|
12675
12661
|
function E() {
|
|
12676
12662
|
o("expectingFirstListItemValue", !0);
|
|
@@ -12800,14 +12786,14 @@ function jf(e) {
|
|
|
12800
12786
|
const A = this.resume(), x = this.stack[this.stack.length - 1];
|
|
12801
12787
|
x.url = A;
|
|
12802
12788
|
}
|
|
12803
|
-
function
|
|
12789
|
+
function Dt() {
|
|
12804
12790
|
const A = this.resume(), x = this.stack[this.stack.length - 1];
|
|
12805
12791
|
x.title = A;
|
|
12806
12792
|
}
|
|
12807
12793
|
function e1() {
|
|
12808
12794
|
o("inReference");
|
|
12809
12795
|
}
|
|
12810
|
-
function
|
|
12796
|
+
function wt() {
|
|
12811
12797
|
o("referenceType", "collapsed");
|
|
12812
12798
|
}
|
|
12813
12799
|
function ce(A) {
|
|
@@ -12825,16 +12811,16 @@ function jf(e) {
|
|
|
12825
12811
|
H ? ($ = fa(
|
|
12826
12812
|
x,
|
|
12827
12813
|
H === "characterReferenceMarkerNumeric" ? 10 : 16
|
|
12828
|
-
), o("characterReferenceType")) : $ =
|
|
12814
|
+
), o("characterReferenceType")) : $ = Lr(x);
|
|
12829
12815
|
const J = this.stack.pop();
|
|
12830
12816
|
J.value += $, J.position.end = Tt(A.end);
|
|
12831
12817
|
}
|
|
12832
|
-
function
|
|
12818
|
+
function Bt(A) {
|
|
12833
12819
|
B.call(this, A);
|
|
12834
12820
|
const x = this.stack[this.stack.length - 1];
|
|
12835
12821
|
x.url = this.sliceSerialize(A);
|
|
12836
12822
|
}
|
|
12837
|
-
function
|
|
12823
|
+
function Ht(A) {
|
|
12838
12824
|
B.call(this, A);
|
|
12839
12825
|
const x = this.stack[this.stack.length - 1];
|
|
12840
12826
|
x.url = "mailto:" + this.sliceSerialize(A);
|
|
@@ -12845,7 +12831,7 @@ function jf(e) {
|
|
|
12845
12831
|
children: []
|
|
12846
12832
|
};
|
|
12847
12833
|
}
|
|
12848
|
-
function
|
|
12834
|
+
function wr() {
|
|
12849
12835
|
return {
|
|
12850
12836
|
type: "code",
|
|
12851
12837
|
lang: null,
|
|
@@ -12874,19 +12860,19 @@ function jf(e) {
|
|
|
12874
12860
|
children: []
|
|
12875
12861
|
};
|
|
12876
12862
|
}
|
|
12877
|
-
function
|
|
12863
|
+
function Br() {
|
|
12878
12864
|
return {
|
|
12879
12865
|
type: "heading",
|
|
12880
12866
|
depth: void 0,
|
|
12881
12867
|
children: []
|
|
12882
12868
|
};
|
|
12883
12869
|
}
|
|
12884
|
-
function
|
|
12870
|
+
function Hr() {
|
|
12885
12871
|
return {
|
|
12886
12872
|
type: "break"
|
|
12887
12873
|
};
|
|
12888
12874
|
}
|
|
12889
|
-
function
|
|
12875
|
+
function Fr() {
|
|
12890
12876
|
return {
|
|
12891
12877
|
type: "html",
|
|
12892
12878
|
value: ""
|
|
@@ -12900,7 +12886,7 @@ function jf(e) {
|
|
|
12900
12886
|
alt: null
|
|
12901
12887
|
};
|
|
12902
12888
|
}
|
|
12903
|
-
function
|
|
12889
|
+
function vr() {
|
|
12904
12890
|
return {
|
|
12905
12891
|
type: "link",
|
|
12906
12892
|
title: null,
|
|
@@ -12908,7 +12894,7 @@ function jf(e) {
|
|
|
12908
12894
|
children: []
|
|
12909
12895
|
};
|
|
12910
12896
|
}
|
|
12911
|
-
function
|
|
12897
|
+
function Ur(A) {
|
|
12912
12898
|
return {
|
|
12913
12899
|
type: "list",
|
|
12914
12900
|
ordered: A.type === "listOrdered",
|
|
@@ -13081,7 +13067,7 @@ async function Oa(e, t) {
|
|
|
13081
13067
|
const s = on(o, t), a = r.serializeNode(s);
|
|
13082
13068
|
n.appendChild(a);
|
|
13083
13069
|
}
|
|
13084
|
-
return (await
|
|
13070
|
+
return (await hr().use(Ys, { fragment: !0 }).use(Wf, {
|
|
13085
13071
|
orderedListItemBlockTypes: /* @__PURE__ */ new Set(["numberedListItem"]),
|
|
13086
13072
|
unorderedListItemBlockTypes: /* @__PURE__ */ new Set(["bulletListItem"])
|
|
13087
13073
|
}).use(Xs).process(n.innerHTML)).value;
|
|
@@ -13091,14 +13077,14 @@ async function ya(e, t) {
|
|
|
13091
13077
|
n.innerHTML = e.trim();
|
|
13092
13078
|
const i = rl.fromSchema(t).parse(n), o = [];
|
|
13093
13079
|
for (let s = 0; s < i.firstChild.childCount; s++)
|
|
13094
|
-
o.push(
|
|
13080
|
+
o.push(yt(i.firstChild.child(s)));
|
|
13095
13081
|
return o;
|
|
13096
13082
|
}
|
|
13097
13083
|
async function Vf(e, t) {
|
|
13098
|
-
return (await
|
|
13084
|
+
return (await hr().use(Ys, { fragment: !0 }).use($f).use(al).use(Qo).use(Vh).process(await Oa(e, t))).value;
|
|
13099
13085
|
}
|
|
13100
13086
|
async function Xf(e, t) {
|
|
13101
|
-
const n = await
|
|
13087
|
+
const n = await hr().use(Qf).use(Qo).use(ll).use(Xs).process(e);
|
|
13102
13088
|
return ya(n.value, t);
|
|
13103
13089
|
}
|
|
13104
13090
|
const Jf = {
|
|
@@ -13120,21 +13106,25 @@ class M4 {
|
|
|
13120
13106
|
const i = {
|
|
13121
13107
|
...Jf,
|
|
13122
13108
|
...t._tiptapOptions,
|
|
13109
|
+
onCreate: () => {
|
|
13110
|
+
var c;
|
|
13111
|
+
(c = t.onEditorCreate) == null || c.call(t, this);
|
|
13112
|
+
},
|
|
13123
13113
|
onUpdate: () => {
|
|
13124
13114
|
var c;
|
|
13125
|
-
(c = t.
|
|
13115
|
+
(c = t.onEditorContentChange) == null || c.call(t, this);
|
|
13126
13116
|
},
|
|
13127
|
-
|
|
13117
|
+
onSelectionUpdate: () => {
|
|
13128
13118
|
var c;
|
|
13129
|
-
(c = t.
|
|
13119
|
+
(c = t.onTextCursorPositionChange) == null || c.call(t, this);
|
|
13130
13120
|
},
|
|
13131
13121
|
extensions: t.enableBlockNoteExtensions === !1 ? (o = t._tiptapOptions) == null ? void 0 : o.extensions : [...((s = t._tiptapOptions) == null ? void 0 : s.extensions) || [], ...r],
|
|
13132
13122
|
editorProps: {
|
|
13133
13123
|
attributes: {
|
|
13134
13124
|
...t.editorDOMAttributes || {},
|
|
13135
13125
|
class: [
|
|
13136
|
-
|
|
13137
|
-
|
|
13126
|
+
Qn.bnEditor,
|
|
13127
|
+
Qn.bnRoot,
|
|
13138
13128
|
((a = t.editorDOMAttributes) == null ? void 0 : a.class) || ""
|
|
13139
13129
|
].join(" ")
|
|
13140
13130
|
}
|
|
@@ -13146,19 +13136,29 @@ class M4 {
|
|
|
13146
13136
|
return this._tiptapEditor.view.dom;
|
|
13147
13137
|
}
|
|
13148
13138
|
/**
|
|
13149
|
-
* Gets a
|
|
13139
|
+
* Gets a snapshot of all top-level (non-nested) blocks in the editor.
|
|
13140
|
+
* @returns A snapshot of all top-level (non-nested) blocks in the editor.
|
|
13150
13141
|
*/
|
|
13151
13142
|
get topLevelBlocks() {
|
|
13152
13143
|
const t = [];
|
|
13153
|
-
return this._tiptapEditor.state.doc.firstChild.descendants((n) => (t.push(
|
|
13144
|
+
return this._tiptapEditor.state.doc.firstChild.descendants((n) => (t.push(yt(n, this.blockCache)), !1)), t;
|
|
13145
|
+
}
|
|
13146
|
+
/**
|
|
13147
|
+
* Gets a snapshot of an existing block from the editor.
|
|
13148
|
+
* @param blockIdentifier The identifier of an existing block that should be retrieved.
|
|
13149
|
+
* @returns The block that matches the identifier, or `undefined` if no matching block was found.
|
|
13150
|
+
*/
|
|
13151
|
+
getBlock(t) {
|
|
13152
|
+
const n = typeof t == "string" ? t : t.id;
|
|
13153
|
+
let r;
|
|
13154
|
+
return this._tiptapEditor.state.doc.firstChild.descendants((i) => typeof r < "u" ? !1 : i.type.name !== "blockContainer" || i.attrs.id !== n ? !0 : (r = yt(i, this.blockCache), !1)), r;
|
|
13154
13155
|
}
|
|
13155
13156
|
/**
|
|
13156
|
-
* Traverses all blocks in the editor
|
|
13157
|
-
*
|
|
13158
|
-
* @param callback The callback to execute for each block.
|
|
13157
|
+
* Traverses all blocks in the editor depth-first, and executes a callback for each.
|
|
13158
|
+
* @param callback The callback to execute for each block. Returning `false` stops the traversal.
|
|
13159
13159
|
* @param reverse Whether the blocks should be traversed in reverse order.
|
|
13160
13160
|
*/
|
|
13161
|
-
|
|
13161
|
+
forEachBlock(t, n = !1) {
|
|
13162
13162
|
function r(i) {
|
|
13163
13163
|
if (n)
|
|
13164
13164
|
for (const o of i.reverse())
|
|
@@ -13170,10 +13170,11 @@ class M4 {
|
|
|
13170
13170
|
r(this.topLevelBlocks);
|
|
13171
13171
|
}
|
|
13172
13172
|
/**
|
|
13173
|
-
* Gets
|
|
13173
|
+
* Gets a snapshot of the current text cursor position.
|
|
13174
|
+
* @returns A snapshot of the current text cursor position.
|
|
13174
13175
|
*/
|
|
13175
13176
|
getTextCursorPosition() {
|
|
13176
|
-
const { node: t, depth: n, startPos: r, endPos: i } =
|
|
13177
|
+
const { node: t, depth: n, startPos: r, endPos: i } = re(
|
|
13177
13178
|
this._tiptapEditor.state.doc,
|
|
13178
13179
|
this._tiptapEditor.state.selection.from
|
|
13179
13180
|
), o = this._tiptapEditor.state.doc.resolve(i).index(n - 1), s = this._tiptapEditor.state.doc.resolve(i + 1).node().childCount;
|
|
@@ -13181,105 +13182,105 @@ class M4 {
|
|
|
13181
13182
|
o > 0 && (a = this._tiptapEditor.state.doc.resolve(r - 2).node());
|
|
13182
13183
|
let c;
|
|
13183
13184
|
return o < s - 1 && (c = this._tiptapEditor.state.doc.resolve(i + 2).node()), {
|
|
13184
|
-
block:
|
|
13185
|
-
prevBlock: a === void 0 ? void 0 :
|
|
13186
|
-
nextBlock: c === void 0 ? void 0 :
|
|
13185
|
+
block: yt(t, this.blockCache),
|
|
13186
|
+
prevBlock: a === void 0 ? void 0 : yt(a, this.blockCache),
|
|
13187
|
+
nextBlock: c === void 0 ? void 0 : yt(c, this.blockCache)
|
|
13187
13188
|
};
|
|
13188
13189
|
}
|
|
13190
|
+
/**
|
|
13191
|
+
* Sets the text cursor position to the start or end of an existing block. Throws an error if the target block could
|
|
13192
|
+
* not be found.
|
|
13193
|
+
* @param targetBlock The identifier of an existing block that the text cursor should be moved to.
|
|
13194
|
+
* @param placement Whether the text cursor should be placed at the start or end of the block.
|
|
13195
|
+
*/
|
|
13189
13196
|
setTextCursorPosition(t, n = "start") {
|
|
13190
|
-
const { posBeforeNode: r } =
|
|
13191
|
-
t.id,
|
|
13192
|
-
this._tiptapEditor.state.doc
|
|
13193
|
-
), { startPos: i, contentNode: o } = ne(
|
|
13197
|
+
const r = typeof t == "string" ? t : t.id, { posBeforeNode: i } = ur(r, this._tiptapEditor.state.doc), { startPos: o, contentNode: s } = re(
|
|
13194
13198
|
this._tiptapEditor.state.doc,
|
|
13195
|
-
|
|
13199
|
+
i + 2
|
|
13196
13200
|
);
|
|
13197
|
-
n === "start" ? this._tiptapEditor.commands.setTextSelection(
|
|
13198
|
-
|
|
13201
|
+
n === "start" ? this._tiptapEditor.commands.setTextSelection(o + 1) : this._tiptapEditor.commands.setTextSelection(
|
|
13202
|
+
o + s.nodeSize - 1
|
|
13199
13203
|
);
|
|
13200
13204
|
}
|
|
13201
13205
|
/**
|
|
13202
|
-
* Inserts
|
|
13203
|
-
*
|
|
13204
|
-
* @param
|
|
13205
|
-
* @param
|
|
13206
|
-
*
|
|
13206
|
+
* Inserts new blocks into the editor. If a block's `id` is undefined, BlockNote generates one automatically. Throws an
|
|
13207
|
+
* error if the reference block could not be found.
|
|
13208
|
+
* @param blocksToInsert An array of partial blocks that should be inserted.
|
|
13209
|
+
* @param referenceBlock An identifier for an existing block, at which the new blocks should be inserted.
|
|
13210
|
+
* @param placement Whether the blocks should be inserted just before, just after, or nested inside the
|
|
13211
|
+
* `referenceBlock`. Inserts the blocks at the start of the existing block's children if "nested" is used.
|
|
13207
13212
|
*/
|
|
13208
13213
|
insertBlocks(t, n, r = "before") {
|
|
13209
|
-
ts(
|
|
13210
|
-
t,
|
|
13211
|
-
n,
|
|
13212
|
-
r,
|
|
13213
|
-
this._tiptapEditor
|
|
13214
|
-
);
|
|
13214
|
+
ts(t, n, r, this._tiptapEditor);
|
|
13215
13215
|
}
|
|
13216
13216
|
/**
|
|
13217
|
-
* Updates
|
|
13217
|
+
* Updates an existing block in the editor. Since updatedBlock is a PartialBlock object, some fields might not be
|
|
13218
|
+
* defined. These undefined fields are kept as-is from the existing block. Throws an error if the block to update could
|
|
13219
|
+
* not be found.
|
|
13218
13220
|
* @param blockToUpdate The block that should be updated.
|
|
13219
|
-
* @param
|
|
13221
|
+
* @param update A partial block which defines how the existing block should be changed.
|
|
13220
13222
|
*/
|
|
13221
13223
|
updateBlock(t, n) {
|
|
13222
13224
|
dc(t, n, this._tiptapEditor);
|
|
13223
13225
|
}
|
|
13224
13226
|
/**
|
|
13225
|
-
* Removes
|
|
13226
|
-
* @param blocksToRemove An array of blocks that should be removed.
|
|
13227
|
+
* Removes existing blocks from the editor. Throws an error if any of the blocks could not be found.
|
|
13228
|
+
* @param blocksToRemove An array of identifiers for existing blocks that should be removed.
|
|
13227
13229
|
*/
|
|
13228
13230
|
removeBlocks(t) {
|
|
13229
13231
|
ns(t, this._tiptapEditor);
|
|
13230
13232
|
}
|
|
13231
13233
|
/**
|
|
13232
|
-
* Replaces
|
|
13233
|
-
*
|
|
13234
|
-
* of the blocks could not be found.
|
|
13234
|
+
* Replaces existing blocks in the editor with new blocks. If the blocks that should be removed are not adjacent or
|
|
13235
|
+
* are at different nesting levels, `blocksToInsert` will be inserted at the position of the first block in
|
|
13236
|
+
* `blocksToRemove`. Throws an error if any of the blocks to remove could not be found.
|
|
13235
13237
|
* @param blocksToRemove An array of blocks that should be replaced.
|
|
13236
|
-
* @param blocksToInsert An array of blocks to replace the old ones with.
|
|
13238
|
+
* @param blocksToInsert An array of partial blocks to replace the old ones with.
|
|
13237
13239
|
*/
|
|
13238
13240
|
replaceBlocks(t, n) {
|
|
13239
13241
|
fc(t, n, this._tiptapEditor);
|
|
13240
13242
|
}
|
|
13241
13243
|
/**
|
|
13242
|
-
*
|
|
13243
|
-
*
|
|
13244
|
-
|
|
13245
|
-
|
|
13246
|
-
this._tiptapEditor.on("update", t);
|
|
13247
|
-
}
|
|
13248
|
-
/**
|
|
13249
|
-
* Serializes a list of blocks into an HTML string. The output is not the same as what's rendered by the editor, and
|
|
13250
|
-
* is simplified in order to better conform to HTML standards. Block structuring elements are removed, children of
|
|
13251
|
-
* blocks which aren't list items are lifted out of them, and list items blocks are wrapped in `ul`/`ol` tags.
|
|
13252
|
-
* @param blocks The list of blocks to serialize into HTML.
|
|
13244
|
+
* Serializes blocks into an HTML string. To better conform to HTML standards, children of blocks which aren't list
|
|
13245
|
+
* items are un-nested in the output HTML.
|
|
13246
|
+
* @param blocks An array of blocks that should be serialized into HTML.
|
|
13247
|
+
* @returns The blocks, serialized as an HTML string.
|
|
13253
13248
|
*/
|
|
13254
13249
|
async blocksToHTML(t) {
|
|
13255
13250
|
return Oa(t, this._tiptapEditor.schema);
|
|
13256
13251
|
}
|
|
13257
13252
|
/**
|
|
13258
|
-
*
|
|
13259
|
-
*
|
|
13253
|
+
* Parses blocks from an HTML string. Tries to create `Block` objects out of any HTML block-level elements, and
|
|
13254
|
+
* `InlineNode` objects from any HTML inline elements, though not all element types are recognized. If BlockNote
|
|
13255
|
+
* doesn't recognize an HTML element's tag, it will parse it as a paragraph or plain text.
|
|
13256
|
+
* @param html The HTML string to parse blocks from.
|
|
13257
|
+
* @returns The blocks parsed from the HTML string.
|
|
13260
13258
|
*/
|
|
13261
13259
|
async HTMLToBlocks(t) {
|
|
13262
13260
|
return ya(t, this._tiptapEditor.schema);
|
|
13263
13261
|
}
|
|
13264
13262
|
/**
|
|
13265
|
-
* Serializes
|
|
13266
|
-
*
|
|
13267
|
-
*
|
|
13268
|
-
* @
|
|
13263
|
+
* Serializes blocks into a Markdown string. The output is simplified as Markdown does not support all features of
|
|
13264
|
+
* BlockNote - children of blocks which aren't list items are un-nested and certain styles are removed.
|
|
13265
|
+
* @param blocks An array of blocks that should be serialized into Markdown.
|
|
13266
|
+
* @returns The blocks, serialized as a Markdown string.
|
|
13269
13267
|
*/
|
|
13270
13268
|
async blocksToMarkdown(t) {
|
|
13271
13269
|
return Vf(t, this._tiptapEditor.schema);
|
|
13272
13270
|
}
|
|
13273
13271
|
/**
|
|
13274
|
-
* Creates a list of blocks from a Markdown string.
|
|
13275
|
-
*
|
|
13272
|
+
* Creates a list of blocks from a Markdown string. Tries to create `Block` and `InlineNode` objects based on
|
|
13273
|
+
* Markdown syntax, though not all symbols are recognized. If BlockNote doesn't recognize a symbol, it will parse it
|
|
13274
|
+
* as text.
|
|
13275
|
+
* @param markdown The Markdown string to parse blocks from.
|
|
13276
|
+
* @returns The blocks parsed from the Markdown string.
|
|
13276
13277
|
*/
|
|
13277
13278
|
async markdownToBlocks(t) {
|
|
13278
13279
|
return Xf(t, this._tiptapEditor.schema);
|
|
13279
13280
|
}
|
|
13280
13281
|
}
|
|
13281
13282
|
export {
|
|
13282
|
-
|
|
13283
|
+
Ft as BaseSlashMenuItem,
|
|
13283
13284
|
M4 as BlockNoteEditor,
|
|
13284
13285
|
Yr as blockProps,
|
|
13285
13286
|
sc as defaultSlashMenuItems,
|