@milkdown/preset-gfm 7.14.0 → 7.15.0
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/lib/index.js +20 -18
- package/lib/index.js.map +1 -1
- package/lib/node/table/input.d.ts.map +1 -1
- package/lib/node/task-list-item.d.ts +1 -1
- package/lib/node/task-list-item.d.ts.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +8 -8
- package/src/node/table/input.ts +1 -0
- package/src/node/task-list-item.ts +7 -2
package/lib/index.js
CHANGED
|
@@ -123,8 +123,7 @@ const tableSchema = $nodeSchema("table", () => ({
|
|
|
123
123
|
toMarkdown: {
|
|
124
124
|
match: (node) => node.type.name === "table",
|
|
125
125
|
runner: (state, node) => {
|
|
126
|
-
|
|
127
|
-
const firstLine = (_a = node.content.firstChild) == null ? void 0 : _a.content;
|
|
126
|
+
const firstLine = node.content.firstChild?.content;
|
|
128
127
|
if (!firstLine) return;
|
|
129
128
|
const align = [];
|
|
130
129
|
firstLine.forEach((cell) => {
|
|
@@ -365,7 +364,7 @@ function addRowWithAlignment(ctx, tr, { map, tableStart, table }, row) {
|
|
|
365
364
|
}, tableStart);
|
|
366
365
|
const cells = Array(map.width).fill(0).map((_, col) => {
|
|
367
366
|
const headerCol = table.nodeAt(map.map[col]);
|
|
368
|
-
return tableCellSchema.type(ctx).createAndFill({ alignment: headerCol
|
|
367
|
+
return tableCellSchema.type(ctx).createAndFill({ alignment: headerCol?.attrs.alignment });
|
|
369
368
|
});
|
|
370
369
|
tr.insert(rowPos, tableRowSchema.type(ctx).create(null, cells));
|
|
371
370
|
return tr;
|
|
@@ -667,7 +666,7 @@ const exitTable = $command(
|
|
|
667
666
|
paragraphSchema.type(ctx).createAndFill()
|
|
668
667
|
);
|
|
669
668
|
tr.setSelection(Selection.near(tr.doc.resolve(to), 1)).scrollIntoView();
|
|
670
|
-
dispatch
|
|
669
|
+
dispatch?.(tr);
|
|
671
670
|
return true;
|
|
672
671
|
}
|
|
673
672
|
);
|
|
@@ -684,7 +683,7 @@ const insertTableCommand = $command(
|
|
|
684
683
|
const _tr = tr.replaceSelectionWith(table);
|
|
685
684
|
const sel = Selection.findFrom(_tr.doc.resolve(from), 1, true);
|
|
686
685
|
if (sel) _tr.setSelection(sel);
|
|
687
|
-
dispatch
|
|
686
|
+
dispatch?.(_tr);
|
|
688
687
|
return true;
|
|
689
688
|
}
|
|
690
689
|
);
|
|
@@ -696,7 +695,7 @@ const moveRowCommand = $command(
|
|
|
696
695
|
"MoveRow",
|
|
697
696
|
() => ({ from, to, pos } = {}) => (state, dispatch) => {
|
|
698
697
|
const { tr } = state;
|
|
699
|
-
const result = dispatch
|
|
698
|
+
const result = dispatch?.(
|
|
700
699
|
moveRow({ tr, origin: from ?? 0, target: to ?? 0, pos, select: true })
|
|
701
700
|
);
|
|
702
701
|
return Boolean(result);
|
|
@@ -710,7 +709,7 @@ const moveColCommand = $command(
|
|
|
710
709
|
"MoveCol",
|
|
711
710
|
() => ({ from, to, pos } = {}) => (state, dispatch) => {
|
|
712
711
|
const { tr } = state;
|
|
713
|
-
const result = dispatch
|
|
712
|
+
const result = dispatch?.(
|
|
714
713
|
moveCol({ tr, origin: from ?? 0, target: to ?? 0, pos, select: true })
|
|
715
714
|
);
|
|
716
715
|
return Boolean(result);
|
|
@@ -724,7 +723,7 @@ const selectRowCommand = $command(
|
|
|
724
723
|
"SelectRow",
|
|
725
724
|
() => (payload = { index: 0 }) => (state, dispatch) => {
|
|
726
725
|
const { tr } = state;
|
|
727
|
-
const result = dispatch
|
|
726
|
+
const result = dispatch?.(selectRow(payload.index, payload.pos)(tr));
|
|
728
727
|
return Boolean(result);
|
|
729
728
|
}
|
|
730
729
|
);
|
|
@@ -736,7 +735,7 @@ const selectColCommand = $command(
|
|
|
736
735
|
"SelectCol",
|
|
737
736
|
() => (payload = { index: 0 }) => (state, dispatch) => {
|
|
738
737
|
const { tr } = state;
|
|
739
|
-
const result = dispatch
|
|
738
|
+
const result = dispatch?.(selectCol(payload.index, payload.pos)(tr));
|
|
740
739
|
return Boolean(result);
|
|
741
740
|
}
|
|
742
741
|
);
|
|
@@ -748,7 +747,7 @@ const selectTableCommand = $command(
|
|
|
748
747
|
"SelectTable",
|
|
749
748
|
() => () => (state, dispatch) => {
|
|
750
749
|
const { tr } = state;
|
|
751
|
-
const result = dispatch
|
|
750
|
+
const result = dispatch?.(selectTable(tr));
|
|
752
751
|
return Boolean(result);
|
|
753
752
|
}
|
|
754
753
|
);
|
|
@@ -830,7 +829,6 @@ const insertTableInputRule = $inputRule(
|
|
|
830
829
|
(ctx) => new InputRule(
|
|
831
830
|
/^\|(?<col>\d+)[xX](?<row>\d+)\|\s$/,
|
|
832
831
|
(state, match, start, end) => {
|
|
833
|
-
var _a, _b;
|
|
834
832
|
const $start = state.doc.resolve(start);
|
|
835
833
|
if (!$start.node(-1).canReplaceWith(
|
|
836
834
|
$start.index(-1),
|
|
@@ -838,8 +836,8 @@ const insertTableInputRule = $inputRule(
|
|
|
838
836
|
tableSchema.type(ctx)
|
|
839
837
|
))
|
|
840
838
|
return null;
|
|
841
|
-
const row = Math.max(Number(
|
|
842
|
-
const tableNode = createTable(ctx, row, Number(
|
|
839
|
+
const row = Math.max(Number(match.groups?.row ?? 0), 2);
|
|
840
|
+
const tableNode = createTable(ctx, row, Number(match.groups?.col));
|
|
843
841
|
const tr = state.tr.replaceRangeWith(start, end, tableNode);
|
|
844
842
|
return tr.setSelection(TextSelection.create(tr.doc, start + 3)).scrollIntoView();
|
|
845
843
|
}
|
|
@@ -851,6 +849,7 @@ withMeta(insertTableInputRule, {
|
|
|
851
849
|
});
|
|
852
850
|
const tableKeymap = $useKeymap("tableKeymap", {
|
|
853
851
|
NextCell: {
|
|
852
|
+
priority: 100,
|
|
854
853
|
shortcuts: ["Mod-]", "Tab"],
|
|
855
854
|
command: (ctx) => {
|
|
856
855
|
const commands2 = ctx.get(commandsCtx);
|
|
@@ -1035,7 +1034,7 @@ const extendListItemSchemaForTask = listItemSchema.extendSchema(
|
|
|
1035
1034
|
};
|
|
1036
1035
|
}
|
|
1037
1036
|
},
|
|
1038
|
-
...
|
|
1037
|
+
...baseSchema?.parseDOM || []
|
|
1039
1038
|
],
|
|
1040
1039
|
toDOM: (node) => {
|
|
1041
1040
|
if (baseSchema.toDOM && node.attrs.checked == null)
|
|
@@ -1093,15 +1092,18 @@ const extendListItemSchemaForTask = listItemSchema.extendSchema(
|
|
|
1093
1092
|
};
|
|
1094
1093
|
}
|
|
1095
1094
|
);
|
|
1096
|
-
withMeta(extendListItemSchemaForTask, {
|
|
1097
|
-
displayName: "NodeSchema<
|
|
1095
|
+
withMeta(extendListItemSchemaForTask.node, {
|
|
1096
|
+
displayName: "NodeSchema<taskListItem>",
|
|
1097
|
+
group: "ListItem"
|
|
1098
|
+
});
|
|
1099
|
+
withMeta(extendListItemSchemaForTask.ctx, {
|
|
1100
|
+
displayName: "NodeSchemaCtx<taskListItem>",
|
|
1098
1101
|
group: "ListItem"
|
|
1099
1102
|
});
|
|
1100
1103
|
const wrapInTaskListInputRule = $inputRule(() => {
|
|
1101
1104
|
return new InputRule(
|
|
1102
1105
|
/^\[(?<checked>\s|x)\]\s$/,
|
|
1103
1106
|
(state, match, start, end) => {
|
|
1104
|
-
var _a;
|
|
1105
1107
|
const pos = state.doc.resolve(start);
|
|
1106
1108
|
let depth = 0;
|
|
1107
1109
|
let node = pos.node(depth);
|
|
@@ -1110,7 +1112,7 @@ const wrapInTaskListInputRule = $inputRule(() => {
|
|
|
1110
1112
|
node = pos.node(depth);
|
|
1111
1113
|
}
|
|
1112
1114
|
if (!node || node.attrs.checked != null) return null;
|
|
1113
|
-
const checked = Boolean(
|
|
1115
|
+
const checked = Boolean(match.groups?.checked === "x");
|
|
1114
1116
|
const finPos = pos.before(depth);
|
|
1115
1117
|
const tr = state.tr;
|
|
1116
1118
|
tr.deleteRange(start, end).setNodeMarkup(finPos, void 0, {
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../src/__internal__/with-meta.ts","../src/mark/strike-through.ts","../src/node/table/schema.ts","../src/node/table/utils.ts","../src/node/table/command.ts","../src/node/table/input.ts","../src/node/footnote/definition.ts","../src/node/footnote/reference.ts","../src/node/task-list-item.ts","../src/composed/keymap.ts","../src/composed/inputrules.ts","../src/plugin/auto-insert-span-plugin.ts","../src/plugin/column-resizing-plugin.ts","../src/plugin/table-editing-plugin.ts","../src/plugin/remark-gfm-plugin.ts","../src/plugin/keep-table-align-plugin.ts","../src/composed/plugins.ts","../src/composed/schema.ts","../src/composed/commands.ts","../src/index.ts"],"sourcesContent":["import type { Meta, MilkdownPlugin } from '@milkdown/ctx'\n\nexport function withMeta<T extends MilkdownPlugin>(\n plugin: T,\n meta: Partial<Meta> & Pick<Meta, 'displayName'>\n): T {\n Object.assign(plugin, {\n meta: {\n package: '@milkdown/preset-gfm',\n ...meta,\n },\n })\n\n return plugin\n}\n","import { commandsCtx } from '@milkdown/core'\nimport { markRule } from '@milkdown/prose'\nimport { toggleMark } from '@milkdown/prose/commands'\nimport {\n $command,\n $inputRule,\n $markAttr,\n $markSchema,\n $useKeymap,\n} from '@milkdown/utils'\n\nimport { withMeta } from '../__internal__'\n\n/// HTML attributes for the strikethrough mark.\nexport const strikethroughAttr = $markAttr('strike_through')\n\nwithMeta(strikethroughAttr, {\n displayName: 'Attr<strikethrough>',\n group: 'Strikethrough',\n})\n\n/// Strikethrough mark schema.\nexport const strikethroughSchema = $markSchema('strike_through', (ctx) => ({\n parseDOM: [\n { tag: 'del' },\n {\n style: 'text-decoration',\n getAttrs: (value) => (value === 'line-through') as false,\n },\n ],\n toDOM: (mark) => ['del', ctx.get(strikethroughAttr.key)(mark)],\n parseMarkdown: {\n match: (node) => node.type === 'delete',\n runner: (state, node, markType) => {\n state.openMark(markType)\n state.next(node.children)\n state.closeMark(markType)\n },\n },\n toMarkdown: {\n match: (mark) => mark.type.name === 'strike_through',\n runner: (state, mark) => {\n state.withMark(mark, 'delete')\n },\n },\n}))\n\nwithMeta(strikethroughSchema.mark, {\n displayName: 'MarkSchema<strikethrough>',\n group: 'Strikethrough',\n})\n\nwithMeta(strikethroughSchema.ctx, {\n displayName: 'MarkSchemaCtx<strikethrough>',\n group: 'Strikethrough',\n})\n\n/// A command to toggle the strikethrough mark.\nexport const toggleStrikethroughCommand = $command(\n 'ToggleStrikeThrough',\n (ctx) => () => {\n return toggleMark(strikethroughSchema.type(ctx))\n }\n)\n\nwithMeta(toggleStrikethroughCommand, {\n displayName: 'Command<ToggleStrikethrough>',\n group: 'Strikethrough',\n})\n\n/// Input rule to create the strikethrough mark.\nexport const strikethroughInputRule = $inputRule((ctx) => {\n return markRule(/~([^~]+)~$/, strikethroughSchema.type(ctx))\n})\n\nwithMeta(strikethroughInputRule, {\n displayName: 'InputRule<strikethrough>',\n group: 'Strikethrough',\n})\n\n/// Keymap for the strikethrough mark.\n/// - `Mod-Alt-x` - Toggle the strikethrough mark.\nexport const strikethroughKeymap = $useKeymap('strikeThroughKeymap', {\n ToggleStrikethrough: {\n shortcuts: 'Mod-Alt-x',\n command: (ctx) => {\n const commands = ctx.get(commandsCtx)\n return () => commands.call(toggleStrikethroughCommand.key)\n },\n },\n})\n\nwithMeta(strikethroughKeymap.ctx, {\n displayName: 'KeymapCtx<strikethrough>',\n group: 'Strikethrough',\n})\n\nwithMeta(strikethroughKeymap.shortcuts, {\n displayName: 'Keymap<strikethrough>',\n group: 'Strikethrough',\n})\n","import type { NodeType } from '@milkdown/prose/model'\nimport type { MarkdownNode } from '@milkdown/transformer'\n\nimport { tableNodes } from '@milkdown/prose/tables'\nimport { $nodeSchema } from '@milkdown/utils'\n\nimport { withMeta } from '../../__internal__'\n\nconst originalSchema = tableNodes({\n tableGroup: 'block',\n cellContent: 'paragraph',\n cellAttributes: {\n alignment: {\n default: 'left',\n getFromDOM: (dom) => dom.style.textAlign || 'left',\n setDOMAttr: (value, attrs) => {\n attrs.style = `text-align: ${value || 'left'}`\n },\n },\n },\n})\n\n/// Schema for table node.\nexport const tableSchema = $nodeSchema('table', () => ({\n ...originalSchema.table,\n content: 'table_header_row table_row+',\n disableDropCursor: true,\n parseMarkdown: {\n match: (node) => node.type === 'table',\n runner: (state, node, type) => {\n const align = node.align as (string | null)[]\n const children = (node.children as MarkdownNode[]).map((x, i) => ({\n ...x,\n align,\n isHeader: i === 0,\n }))\n state.openNode(type)\n state.next(children)\n state.closeNode()\n },\n },\n toMarkdown: {\n match: (node) => node.type.name === 'table',\n runner: (state, node) => {\n const firstLine = node.content.firstChild?.content\n if (!firstLine) return\n\n const align: (string | null)[] = []\n firstLine.forEach((cell) => {\n align.push(cell.attrs.alignment)\n })\n state.openNode('table', undefined, { align })\n state.next(node.content)\n state.closeNode()\n },\n },\n}))\n\nwithMeta(tableSchema.node, {\n displayName: 'NodeSchema<table>',\n group: 'Table',\n})\n\nwithMeta(tableSchema.ctx, {\n displayName: 'NodeSchemaCtx<table>',\n group: 'Table',\n})\n\n/// Schema for table header row node.\nexport const tableHeaderRowSchema = $nodeSchema('table_header_row', () => ({\n ...originalSchema.table_row,\n disableDropCursor: true,\n content: '(table_header)*',\n parseDOM: [{ tag: 'tr[data-is-header]' }],\n toDOM() {\n return ['tr', { 'data-is-header': true }, 0]\n },\n parseMarkdown: {\n match: (node) => Boolean(node.type === 'tableRow' && node.isHeader),\n runner: (state, node, type) => {\n const align = node.align as (string | null)[]\n const children = (node.children as MarkdownNode[]).map((x, i) => ({\n ...x,\n align: align[i],\n isHeader: node.isHeader,\n }))\n state.openNode(type)\n state.next(children)\n state.closeNode()\n },\n },\n toMarkdown: {\n match: (node) => node.type.name === 'table_header_row',\n runner: (state, node) => {\n state.openNode('tableRow', undefined, { isHeader: true })\n state.next(node.content)\n state.closeNode()\n },\n },\n}))\n\nwithMeta(tableHeaderRowSchema.node, {\n displayName: 'NodeSchema<tableHeaderRow>',\n group: 'Table',\n})\n\nwithMeta(tableHeaderRowSchema.ctx, {\n displayName: 'NodeSchemaCtx<tableHeaderRow>',\n group: 'Table',\n})\n\n/// Schema for table row node.\nexport const tableRowSchema = $nodeSchema('table_row', () => ({\n ...originalSchema.table_row,\n disableDropCursor: true,\n content: '(table_cell)*',\n parseMarkdown: {\n match: (node) => node.type === 'tableRow',\n runner: (state, node, type) => {\n const align = node.align as (string | null)[]\n const children = (node.children as MarkdownNode[]).map((x, i) => ({\n ...x,\n align: align[i],\n }))\n state.openNode(type)\n state.next(children)\n state.closeNode()\n },\n },\n toMarkdown: {\n match: (node) => node.type.name === 'table_row',\n runner: (state, node) => {\n // if the row is empty, we don't need to create a table row\n // prevent remark from crashing\n if (node.content.size === 0) {\n return\n }\n state.openNode('tableRow')\n state.next(node.content)\n state.closeNode()\n },\n },\n}))\n\nwithMeta(tableRowSchema.node, {\n displayName: 'NodeSchema<tableRow>',\n group: 'Table',\n})\n\nwithMeta(tableRowSchema.ctx, {\n displayName: 'NodeSchemaCtx<tableRow>',\n group: 'Table',\n})\n\n/// Schema for table cell node.\nexport const tableCellSchema = $nodeSchema('table_cell', () => ({\n ...originalSchema.table_cell,\n disableDropCursor: true,\n parseMarkdown: {\n match: (node) => node.type === 'tableCell' && !node.isHeader,\n runner: (state, node, type) => {\n const align = node.align as string\n state\n .openNode(type, { alignment: align })\n .openNode(state.schema.nodes.paragraph as NodeType)\n .next(node.children)\n .closeNode()\n .closeNode()\n },\n },\n toMarkdown: {\n match: (node) => node.type.name === 'table_cell',\n runner: (state, node) => {\n state.openNode('tableCell').next(node.content).closeNode()\n },\n },\n}))\n\nwithMeta(tableCellSchema.node, {\n displayName: 'NodeSchema<tableCell>',\n group: 'Table',\n})\n\nwithMeta(tableCellSchema.ctx, {\n displayName: 'NodeSchemaCtx<tableCell>',\n group: 'Table',\n})\n\n/// Schema for table header node.\nexport const tableHeaderSchema = $nodeSchema('table_header', () => ({\n ...originalSchema.table_header,\n disableDropCursor: true,\n parseMarkdown: {\n match: (node) => node.type === 'tableCell' && !!node.isHeader,\n runner: (state, node, type) => {\n const align = node.align as string\n state.openNode(type, { alignment: align })\n state.openNode(state.schema.nodes.paragraph as NodeType)\n state.next(node.children)\n state.closeNode()\n state.closeNode()\n },\n },\n toMarkdown: {\n match: (node) => node.type.name === 'table_header',\n runner: (state, node) => {\n state.openNode('tableCell')\n state.next(node.content)\n state.closeNode()\n },\n },\n}))\n\nwithMeta(tableHeaderSchema.node, {\n displayName: 'NodeSchema<tableHeader>',\n group: 'Table',\n})\n\nwithMeta(tableHeaderSchema.ctx, {\n displayName: 'NodeSchemaCtx<tableHeader>',\n group: 'Table',\n})\n","import type { Ctx } from '@milkdown/ctx'\nimport type { ContentNodeWithPos } from '@milkdown/prose'\nimport type { Node, ResolvedPos } from '@milkdown/prose/model'\nimport type { Selection, Transaction } from '@milkdown/prose/state'\nimport type { TableRect } from '@milkdown/prose/tables'\n\nimport { cloneTr, findParentNodeClosestToPos } from '@milkdown/prose'\nimport { CellSelection, TableMap } from '@milkdown/prose/tables'\n\nimport {\n tableCellSchema,\n tableHeaderRowSchema,\n tableHeaderSchema,\n tableRowSchema,\n tableSchema,\n} from './schema'\n\n/// @internal\nexport interface CellPos {\n pos: number\n start: number\n node: Node\n}\n\n/// @internal\nexport function createTable(ctx: Ctx, rowsCount = 3, colsCount = 3): Node {\n const cells = Array(colsCount)\n .fill(0)\n .map(() => tableCellSchema.type(ctx).createAndFill()!)\n\n const headerCells = Array(colsCount)\n .fill(0)\n .map(() => tableHeaderSchema.type(ctx).createAndFill()!)\n\n const rows = Array(rowsCount)\n .fill(0)\n .map((_, i) =>\n i === 0\n ? tableHeaderRowSchema.type(ctx).create(null, headerCells)\n : tableRowSchema.type(ctx).create(null, cells)\n )\n\n return tableSchema.type(ctx).create(null, rows)\n}\n\n/// Find the table node with position information for target pos.\nexport function findTable($pos: ResolvedPos) {\n return findParentNodeClosestToPos(\n (node) => node.type.spec.tableRole === 'table'\n )($pos)\n}\n\n/// Get cells in a column of a table.\nexport function getCellsInCol(\n columnIndex: number,\n selection: Selection\n): CellPos[] | undefined {\n const table = findTable(selection.$from)\n if (!table) return undefined\n const map = TableMap.get(table.node)\n if (columnIndex < 0 || columnIndex >= map.width) return undefined\n\n return map\n .cellsInRect({\n left: columnIndex,\n right: columnIndex + 1,\n top: 0,\n bottom: map.height,\n })\n .map((pos) => {\n const node = table.node.nodeAt(pos)\n if (!node) return undefined\n const start = pos + table.start\n return {\n pos: start,\n start: start + 1,\n node,\n }\n })\n .filter((x): x is CellPos => x != null)\n}\n\n/// Get cells in a row of a table.\nexport function getCellsInRow(\n rowIndex: number,\n selection: Selection\n): CellPos[] | undefined {\n const table = findTable(selection.$from)\n if (!table) return undefined\n const map = TableMap.get(table.node)\n if (rowIndex < 0 || rowIndex >= map.height) return undefined\n\n return map\n .cellsInRect({\n left: 0,\n right: map.width,\n top: rowIndex,\n bottom: rowIndex + 1,\n })\n .map((pos) => {\n const node = table.node.nodeAt(pos)\n if (!node) return undefined\n const start = pos + table.start\n return {\n pos: start,\n start: start + 1,\n node,\n }\n })\n .filter((x): x is CellPos => x != null)\n}\n\n/// Get all cells in a table.\nexport function getAllCellsInTable(selection: Selection) {\n const table = findTable(selection.$from)\n if (!table) return\n\n const map = TableMap.get(table.node)\n const cells = map.cellsInRect({\n left: 0,\n right: map.width,\n top: 0,\n bottom: map.height,\n })\n return cells.map((nodePos) => {\n const node = table.node.nodeAt(nodePos)\n const pos = nodePos + table.start\n return { pos, start: pos + 1, node }\n })\n}\n\n/// Select a possible table in current selection.\nexport function selectTable(tr: Transaction) {\n const cells = getAllCellsInTable(tr.selection)\n if (cells && cells[0]) {\n const $firstCell = tr.doc.resolve(cells[0].pos)\n const last = cells[cells.length - 1]\n if (last) {\n const $lastCell = tr.doc.resolve(last.pos)\n return cloneTr(tr.setSelection(new CellSelection($lastCell, $firstCell)))\n }\n }\n return tr\n}\n\n/// @internal\nexport function addRowWithAlignment(\n ctx: Ctx,\n tr: Transaction,\n { map, tableStart, table }: TableRect,\n row: number\n) {\n const rowPos = Array(row)\n .fill(0)\n .reduce((acc, _, i) => {\n return acc + table.child(i).nodeSize\n }, tableStart)\n\n const cells = Array(map.width)\n .fill(0)\n .map((_, col) => {\n const headerCol = table.nodeAt(map.map[col] as number)\n return tableCellSchema\n .type(ctx)\n .createAndFill({ alignment: headerCol?.attrs.alignment }) as Node\n })\n\n tr.insert(rowPos, tableRowSchema.type(ctx).create(null, cells))\n return tr\n}\n\n/// @internal\nexport function selectLine(type: 'row' | 'col') {\n return (index: number, pos?: number) => (tr: Transaction) => {\n pos = pos ?? tr.selection.from\n const $pos = tr.doc.resolve(pos)\n const $node = findParentNodeClosestToPos(\n (node) => node.type.name === 'table'\n )($pos)\n const table = $node\n ? {\n node: $node.node,\n from: $node.start,\n }\n : undefined\n\n const isRowSelection = type === 'row'\n if (table) {\n const map = TableMap.get(table.node)\n\n // Check if the index is valid\n if (index >= 0 && index < (isRowSelection ? map.height : map.width)) {\n const lastCell = map.positionAt(\n isRowSelection ? index : map.height - 1,\n isRowSelection ? map.width - 1 : index,\n table.node\n )\n const $lastCell = tr.doc.resolve(table.from + lastCell)\n\n const createCellSelection = isRowSelection\n ? CellSelection.rowSelection\n : CellSelection.colSelection\n\n const firstCell = map.positionAt(\n isRowSelection ? index : 0,\n isRowSelection ? 0 : index,\n table.node\n )\n const $firstCell = tr.doc.resolve(table.from + firstCell)\n return cloneTr(\n tr.setSelection(\n createCellSelection($lastCell, $firstCell) as unknown as Selection\n )\n )\n }\n }\n return tr\n }\n}\n\n/// If the selection is in a table,\n/// select the {index} row.\nexport const selectRow = selectLine('row')\n\n/// If the selection is in a table,\n/// select the {index} column.\nexport const selectCol = selectLine('col')\n\nfunction transpose<T>(array: T[][]) {\n return array[0]!.map((_, i) => {\n return array.map((column) => column[i])\n }) as T[][]\n}\n\nfunction convertArrayOfRowsToTableNode(\n tableNode: Node,\n arrayOfNodes: (Node | null)[][]\n) {\n const rowsPM = []\n const map = TableMap.get(tableNode)\n for (let rowIndex = 0; rowIndex < map.height; rowIndex++) {\n const row = tableNode.child(rowIndex)\n const rowCells = []\n\n for (let colIndex = 0; colIndex < map.width; colIndex++) {\n if (!arrayOfNodes[rowIndex]![colIndex]) continue\n\n const cellPos = map.map[rowIndex * map.width + colIndex]!\n\n const cell = arrayOfNodes[rowIndex]![colIndex]!\n const oldCell = tableNode.nodeAt(cellPos)!\n const newCell = oldCell.type.createChecked(\n Object.assign({}, cell.attrs),\n cell.content,\n cell.marks\n )\n rowCells.push(newCell)\n }\n\n rowsPM.push(row.type.createChecked(row.attrs, rowCells, row.marks))\n }\n\n const newTable = tableNode.type.createChecked(\n tableNode.attrs,\n rowsPM,\n tableNode.marks\n )\n\n return newTable\n}\n\nfunction convertTableNodeToArrayOfRows(tableNode: Node) {\n const map = TableMap.get(tableNode)\n const rows: (Node | null)[][] = []\n for (let rowIndex = 0; rowIndex < map.height; rowIndex++) {\n const rowCells: (Node | null)[] = []\n const seen: Record<number, boolean> = {}\n\n for (let colIndex = 0; colIndex < map.width; colIndex++) {\n const cellPos = map.map[rowIndex * map.width + colIndex]!\n const cell = tableNode.nodeAt(cellPos)\n const rect = map.findCell(cellPos)\n if (seen[cellPos] || rect.top !== rowIndex) {\n rowCells.push(null)\n continue\n }\n seen[cellPos] = true\n\n rowCells.push(cell)\n }\n\n rows.push(rowCells)\n }\n\n return rows\n}\n\nfunction moveRowInArrayOfRows(\n rows: (Node | null)[][],\n indexesOrigin: number[],\n indexesTarget: number[],\n directionOverride: -1 | 1 | 0\n) {\n const direction = indexesOrigin[0]! > indexesTarget[0]! ? -1 : 1\n\n const rowsExtracted = rows.splice(indexesOrigin[0]!, indexesOrigin.length)\n const positionOffset = rowsExtracted.length % 2 === 0 ? 1 : 0\n let target: number\n\n if (directionOverride === -1 && direction === 1) {\n target = indexesTarget[0]! - 1\n } else if (directionOverride === 1 && direction === -1) {\n target = indexesTarget[indexesTarget.length - 1]! - positionOffset + 1\n } else {\n target =\n direction === -1\n ? indexesTarget[0]!\n : indexesTarget[indexesTarget.length - 1]! - positionOffset\n }\n\n rows.splice(target, 0, ...rowsExtracted)\n return rows\n}\n\nfunction moveTableColumn(\n table: ContentNodeWithPos,\n indexesOrigin: number[],\n indexesTarget: number[],\n direction: -1 | 1 | 0\n) {\n let rows = transpose(convertTableNodeToArrayOfRows(table.node))\n\n rows = moveRowInArrayOfRows(rows, indexesOrigin, indexesTarget, direction)\n rows = transpose(rows)\n\n return convertArrayOfRowsToTableNode(table.node, rows)\n}\n\nfunction moveTableRow(\n table: ContentNodeWithPos,\n indexesOrigin: number[],\n indexesTarget: number[],\n direction: -1 | 1 | 0\n) {\n let rows = convertTableNodeToArrayOfRows(table.node)\n\n rows = moveRowInArrayOfRows(rows, indexesOrigin, indexesTarget, direction)\n\n return convertArrayOfRowsToTableNode(table.node, rows)\n}\n\nfunction getSelectionRangeInColumn(columnIndex: number, tr: Transaction) {\n let startIndex = columnIndex\n let endIndex = columnIndex\n\n // looking for selection start column (startIndex)\n for (let i = columnIndex; i >= 0; i--) {\n const cells = getCellsInCol(i, tr.selection)\n if (cells) {\n cells.forEach((cell) => {\n const maybeEndIndex = cell.node.attrs.colspan + i - 1\n if (maybeEndIndex >= startIndex) startIndex = i\n\n if (maybeEndIndex > endIndex) endIndex = maybeEndIndex\n })\n }\n }\n // looking for selection end column (endIndex)\n for (let i = columnIndex; i <= endIndex; i++) {\n const cells = getCellsInCol(i, tr.selection)\n if (cells) {\n cells.forEach((cell) => {\n const maybeEndIndex = cell.node.attrs.colspan + i - 1\n if (cell.node.attrs.colspan > 1 && maybeEndIndex > endIndex)\n endIndex = maybeEndIndex\n })\n }\n }\n\n // filter out columns without cells (where all rows have colspan > 1 in the same column)\n const indexes = []\n for (let i = startIndex; i <= endIndex; i++) {\n const maybeCells = getCellsInCol(i, tr.selection)\n if (maybeCells && maybeCells.length) indexes.push(i)\n }\n startIndex = indexes[0]!\n endIndex = indexes[indexes.length - 1]!\n\n const firstSelectedColumnCells = getCellsInCol(startIndex, tr.selection)!\n const firstRowCells = getCellsInRow(0, tr.selection)!\n const $anchor = tr.doc.resolve(\n firstSelectedColumnCells[firstSelectedColumnCells.length - 1]!.pos\n )\n\n let headCell: CellPos | undefined\n for (let i = endIndex; i >= startIndex; i--) {\n const columnCells = getCellsInCol(i, tr.selection)\n if (columnCells && columnCells.length) {\n for (let j = firstRowCells.length - 1; j >= 0; j--) {\n if (firstRowCells[j]!.pos === columnCells[0]!.pos) {\n headCell = columnCells[0]\n break\n }\n }\n if (headCell) break\n }\n }\n\n const $head = tr.doc.resolve(headCell!.pos)\n return { $anchor, $head, indexes }\n}\n\nfunction getSelectionRangeInRow(rowIndex: number, tr: Transaction) {\n let startIndex = rowIndex\n let endIndex = rowIndex\n // looking for selection start row (startIndex)\n for (let i = rowIndex; i >= 0; i--) {\n const cells = getCellsInRow(i, tr.selection)\n cells!.forEach((cell) => {\n const maybeEndIndex = cell.node.attrs.rowspan + i - 1\n if (maybeEndIndex >= startIndex) startIndex = i\n\n if (maybeEndIndex > endIndex) endIndex = maybeEndIndex\n })\n }\n // looking for selection end row (endIndex)\n for (let i = rowIndex; i <= endIndex; i++) {\n const cells = getCellsInRow(i, tr.selection)\n cells!.forEach((cell) => {\n const maybeEndIndex = cell.node.attrs.rowspan + i - 1\n if (cell.node.attrs.rowspan > 1 && maybeEndIndex > endIndex)\n endIndex = maybeEndIndex\n })\n }\n\n // filter out rows without cells (where all columns have rowspan > 1 in the same row)\n const indexes = []\n for (let i = startIndex; i <= endIndex; i++) {\n const maybeCells = getCellsInRow(i, tr.selection)\n if (maybeCells && maybeCells.length) indexes.push(i)\n }\n startIndex = indexes[0]!\n endIndex = indexes[indexes.length - 1]!\n\n const firstSelectedRowCells = getCellsInRow(startIndex, tr.selection)!\n const firstColumnCells = getCellsInCol(0, tr.selection)!\n const $anchor = tr.doc.resolve(\n firstSelectedRowCells[firstSelectedRowCells.length - 1]!.pos\n )\n\n let headCell: CellPos | undefined\n for (let i = endIndex; i >= startIndex; i--) {\n const rowCells = getCellsInRow(i, tr.selection)\n if (rowCells && rowCells.length) {\n for (let j = firstColumnCells.length - 1; j >= 0; j--) {\n if (firstColumnCells[j]!.pos === rowCells[0]!.pos) {\n headCell = rowCells[0]!\n break\n }\n }\n if (headCell) break\n }\n }\n\n const $head = tr.doc.resolve(headCell!.pos)\n return { $anchor, $head, indexes }\n}\n\nexport interface MoveColParams {\n tr: Transaction\n origin: number\n target: number\n select?: boolean\n pos?: number\n}\n\n/// If the selection is in a table,\n/// Move the columns at `origin` to `target` in current table.\n/// The `select` is true by default, which means the selection will be set to the moved column.\nexport function moveCol(moveColParams: MoveColParams) {\n const { tr, origin, target, select = true, pos } = moveColParams\n const $pos = pos != null ? tr.doc.resolve(pos) : tr.selection.$from\n const table = findTable($pos)\n if (!table) return tr\n\n const { indexes: indexesOriginColumn } = getSelectionRangeInColumn(origin, tr)\n const { indexes: indexesTargetColumn } = getSelectionRangeInColumn(target, tr)\n\n if (indexesOriginColumn.includes(target)) return tr\n\n const newTable = moveTableColumn(\n table,\n indexesOriginColumn,\n indexesTargetColumn,\n 0\n )\n\n const _tr = cloneTr(tr).replaceWith(\n table.pos,\n table.pos + table.node.nodeSize,\n newTable\n )\n\n if (!select) return _tr\n\n const map = TableMap.get(newTable)\n const start = table.start\n const index = target\n const lastCell = map.positionAt(map.height - 1, index, newTable)\n const $lastCell = _tr.doc.resolve(start + lastCell)\n\n const createCellSelection = CellSelection.colSelection\n\n const firstCell = map.positionAt(0, index, newTable)\n const $firstCell = _tr.doc.resolve(start + firstCell)\n\n return _tr.setSelection(createCellSelection($lastCell, $firstCell))\n}\n\nexport interface MoveRowParams {\n tr: Transaction\n origin: number\n target: number\n select?: boolean\n pos?: number\n}\n\n/// If the selection is in a table,\n/// Move the rows at `origin` and `target` in current table.\n/// The `select` is true by default, which means the selection will be set to the moved row.\nexport function moveRow(moveRowParams: MoveRowParams) {\n const { tr, origin, target, select = true, pos } = moveRowParams\n const $pos = pos != null ? tr.doc.resolve(pos) : tr.selection.$from\n const table = findTable($pos)\n if (!table) return tr\n\n const { indexes: indexesOriginRow } = getSelectionRangeInRow(origin, tr)\n const { indexes: indexesTargetRow } = getSelectionRangeInRow(target, tr)\n\n if (indexesOriginRow.includes(target)) return tr\n\n const newTable = moveTableRow(table, indexesOriginRow, indexesTargetRow, 0)\n\n const _tr = cloneTr(tr).replaceWith(\n table.pos,\n table.pos + table.node.nodeSize,\n newTable\n )\n\n if (!select) return _tr\n\n const map = TableMap.get(newTable)\n const start = table.start\n const index = target\n const lastCell = map.positionAt(index, map.width - 1, newTable)\n const $lastCell = _tr.doc.resolve(start + lastCell)\n\n const createCellSelection = CellSelection.rowSelection\n\n const firstCell = map.positionAt(index, 0, newTable)\n const $firstCell = _tr.doc.resolve(start + firstCell)\n\n return _tr.setSelection(createCellSelection($lastCell, $firstCell))\n}\n","import { paragraphSchema } from '@milkdown/preset-commonmark'\nimport { findParentNodeType } from '@milkdown/prose'\nimport { Selection } from '@milkdown/prose/state'\nimport {\n CellSelection,\n addColumnAfter,\n addColumnBefore,\n deleteColumn,\n deleteRow,\n deleteTable,\n goToNextCell,\n isInTable,\n selectedRect,\n setCellAttr,\n} from '@milkdown/prose/tables'\nimport { $command } from '@milkdown/utils'\n\nimport { withMeta } from '../../__internal__'\nimport { tableSchema } from './schema'\nimport {\n addRowWithAlignment,\n createTable,\n moveCol,\n moveRow,\n selectCol,\n selectRow,\n selectTable,\n} from './utils'\n\n/// A command for moving cursor to previous cell.\nexport const goToPrevTableCellCommand = $command(\n 'GoToPrevTableCell',\n () => () => goToNextCell(-1)\n)\n\nwithMeta(goToPrevTableCellCommand, {\n displayName: 'Command<goToPrevTableCellCommand>',\n group: 'Table',\n})\n\n/// A command for moving cursor to next cell.\nexport const goToNextTableCellCommand = $command(\n 'GoToNextTableCell',\n () => () => goToNextCell(1)\n)\n\nwithMeta(goToNextTableCellCommand, {\n displayName: 'Command<goToNextTableCellCommand>',\n group: 'Table',\n})\n\n/// A command for quitting current table and insert a new paragraph node.\nexport const exitTable = $command(\n 'ExitTable',\n (ctx) => () => (state, dispatch) => {\n if (!isInTable(state)) return false\n\n const { $head } = state.selection\n const table = findParentNodeType($head, tableSchema.type(ctx))\n if (!table) return false\n\n const { to } = table\n\n const tr = state.tr.replaceWith(\n to,\n to,\n paragraphSchema.type(ctx).createAndFill()!\n )\n\n tr.setSelection(Selection.near(tr.doc.resolve(to), 1)).scrollIntoView()\n dispatch?.(tr)\n return true\n }\n)\n\nwithMeta(exitTable, {\n displayName: 'Command<breakTableCommand>',\n group: 'Table',\n})\n\n/// A command for inserting a table.\n/// You can specify the number of rows and columns.\n/// By default, it will insert a 3x3 table.\nexport const insertTableCommand = $command(\n 'InsertTable',\n (ctx) =>\n ({ row, col }: { row?: number; col?: number } = {}) =>\n (state, dispatch) => {\n const { selection, tr } = state\n const { from } = selection\n const table = createTable(ctx, row, col)\n const _tr = tr.replaceSelectionWith(table)\n const sel = Selection.findFrom(_tr.doc.resolve(from), 1, true)\n if (sel) _tr.setSelection(sel)\n\n dispatch?.(_tr)\n\n return true\n }\n)\n\nwithMeta(insertTableCommand, {\n displayName: 'Command<insertTableCommand>',\n group: 'Table',\n})\n\n/// A command for moving a row in a table.\n/// You should specify the `from` and `to` index.\nexport const moveRowCommand = $command(\n 'MoveRow',\n () =>\n ({ from, to, pos }: { from?: number; to?: number; pos?: number } = {}) =>\n (state, dispatch) => {\n const { tr } = state\n const result = dispatch?.(\n moveRow({ tr, origin: from ?? 0, target: to ?? 0, pos, select: true })\n )\n\n return Boolean(result)\n }\n)\n\nwithMeta(moveRowCommand, {\n displayName: 'Command<moveRowCommand>',\n group: 'Table',\n})\n\n/// A command for moving a column in a table.\n/// You should specify the `from` and `to` index.\nexport const moveColCommand = $command(\n 'MoveCol',\n () =>\n ({ from, to, pos }: { from?: number; to?: number; pos?: number } = {}) =>\n (state, dispatch) => {\n const { tr } = state\n const result = dispatch?.(\n moveCol({ tr, origin: from ?? 0, target: to ?? 0, pos, select: true })\n )\n\n return Boolean(result)\n }\n)\n\nwithMeta(moveColCommand, {\n displayName: 'Command<moveColCommand>',\n group: 'Table',\n})\n\n/// A command for selecting a row.\nexport const selectRowCommand = $command<\n { index: number; pos?: number },\n 'SelectRow'\n>(\n 'SelectRow',\n () =>\n (payload: { index: number; pos?: number } = { index: 0 }) =>\n (state, dispatch) => {\n const { tr } = state\n const result = dispatch?.(selectRow(payload.index, payload.pos)(tr))\n\n return Boolean(result)\n }\n)\n\nwithMeta(selectRowCommand, {\n displayName: 'Command<selectRowCommand>',\n group: 'Table',\n})\n\n/// A command for selecting a column.\nexport const selectColCommand = $command<\n { index: number; pos?: number },\n 'SelectCol'\n>(\n 'SelectCol',\n () =>\n (payload: { index: number; pos?: number } = { index: 0 }) =>\n (state, dispatch) => {\n const { tr } = state\n const result = dispatch?.(selectCol(payload.index, payload.pos)(tr))\n\n return Boolean(result)\n }\n)\n\nwithMeta(selectColCommand, {\n displayName: 'Command<selectColCommand>',\n group: 'Table',\n})\n\n/// A command for selecting a table.\nexport const selectTableCommand = $command(\n 'SelectTable',\n () => () => (state, dispatch) => {\n const { tr } = state\n const result = dispatch?.(selectTable(tr))\n\n return Boolean(result)\n }\n)\n\nwithMeta(selectTableCommand, {\n displayName: 'Command<selectTableCommand>',\n group: 'Table',\n})\n\n/// A command for deleting selected cells.\n/// If the selection is a row or column, the row or column will be deleted.\n/// If all cells are selected, the table will be deleted.\nexport const deleteSelectedCellsCommand = $command(\n 'DeleteSelectedCells',\n () => () => (state, dispatch) => {\n const { selection } = state\n if (!(selection instanceof CellSelection)) return false\n\n const isRow = selection.isRowSelection()\n const isCol = selection.isColSelection()\n\n if (isRow && isCol) return deleteTable(state, dispatch)\n\n if (isCol) return deleteColumn(state, dispatch)\n else return deleteRow(state, dispatch)\n }\n)\n\nwithMeta(deleteSelectedCellsCommand, {\n displayName: 'Command<deleteSelectedCellsCommand>',\n group: 'Table',\n})\n\n/// A command for adding a column before the current column.\nexport const addColBeforeCommand = $command(\n 'AddColBefore',\n () => () => addColumnBefore\n)\n\nwithMeta(addColBeforeCommand, {\n displayName: 'Command<addColBeforeCommand>',\n group: 'Table',\n})\n\n/// A command for adding a column after the current column.\nexport const addColAfterCommand = $command(\n 'AddColAfter',\n () => () => addColumnAfter\n)\n\nwithMeta(addColAfterCommand, {\n displayName: 'Command<addColAfterCommand>',\n group: 'Table',\n})\n\n/// A command for adding a row before the current row.\nexport const addRowBeforeCommand = $command(\n 'AddRowBefore',\n (ctx) => () => (state, dispatch) => {\n if (!isInTable(state)) return false\n if (dispatch) {\n const rect = selectedRect(state)\n dispatch(addRowWithAlignment(ctx, state.tr, rect, rect.top))\n }\n return true\n }\n)\n\nwithMeta(addRowBeforeCommand, {\n displayName: 'Command<addRowBeforeCommand>',\n group: 'Table',\n})\n\n/// A command for adding a row after the current row.\nexport const addRowAfterCommand = $command(\n 'AddRowAfter',\n (ctx) => () => (state, dispatch) => {\n if (!isInTable(state)) return false\n if (dispatch) {\n const rect = selectedRect(state)\n dispatch(addRowWithAlignment(ctx, state.tr, rect, rect.bottom))\n }\n return true\n }\n)\n\nwithMeta(addRowAfterCommand, {\n displayName: 'Command<addRowAfterCommand>',\n group: 'Table',\n})\n\n/// A command for setting alignment property for selected cells.\n/// You can specify the alignment as `left`, `center`, or `right`.\n/// It's `left` by default.\nexport const setAlignCommand = $command<\n 'left' | 'center' | 'right',\n 'SetAlign'\n>(\n 'SetAlign',\n () =>\n (alignment = 'left') =>\n setCellAttr('alignment', alignment)\n)\n\nwithMeta(setAlignCommand, {\n displayName: 'Command<setAlignCommand>',\n group: 'Table',\n})\n","import { commandsCtx } from '@milkdown/core'\nimport { InputRule } from '@milkdown/prose/inputrules'\nimport { TextSelection } from '@milkdown/prose/state'\nimport { $inputRule, $useKeymap } from '@milkdown/utils'\n\nimport { withMeta } from '../../__internal__'\nimport {\n exitTable,\n goToNextTableCellCommand,\n goToPrevTableCellCommand,\n} from './command'\nimport { tableSchema } from './schema'\nimport { createTable } from './utils'\n\n/// A input rule for creating table.\n/// For example, `|2x2|` will create a 2x2 table.\nexport const insertTableInputRule = $inputRule(\n (ctx) =>\n new InputRule(\n /^\\|(?<col>\\d+)[xX](?<row>\\d+)\\|\\s$/,\n (state, match, start, end) => {\n const $start = state.doc.resolve(start)\n if (\n !$start\n .node(-1)\n .canReplaceWith(\n $start.index(-1),\n $start.indexAfter(-1),\n tableSchema.type(ctx)\n )\n )\n return null\n\n const row = Math.max(Number(match.groups?.row ?? 0), 2)\n\n const tableNode = createTable(ctx, row, Number(match.groups?.col))\n const tr = state.tr.replaceRangeWith(start, end, tableNode)\n return tr\n .setSelection(TextSelection.create(tr.doc, start + 3))\n .scrollIntoView()\n }\n )\n)\n\nwithMeta(insertTableInputRule, {\n displayName: 'InputRule<insertTableInputRule>',\n group: 'Table',\n})\n\n/// Keymap for table commands.\n/// - `<Mod-]>`/`<Tab>`: Move to the next cell.\n/// - `<Mod-[>`/`<Shift-Tab>`: Move to the previous cell.\n/// - `<Mod-Enter>`: Exit the table, and break it if possible.\nexport const tableKeymap = $useKeymap('tableKeymap', {\n NextCell: {\n shortcuts: ['Mod-]', 'Tab'],\n command: (ctx) => {\n const commands = ctx.get(commandsCtx)\n\n return () => commands.call(goToNextTableCellCommand.key)\n },\n },\n PrevCell: {\n shortcuts: ['Mod-[', 'Shift-Tab'],\n command: (ctx) => {\n const commands = ctx.get(commandsCtx)\n\n return () => commands.call(goToPrevTableCellCommand.key)\n },\n },\n ExitTable: {\n shortcuts: ['Mod-Enter', 'Enter'],\n command: (ctx) => {\n const commands = ctx.get(commandsCtx)\n\n return () => commands.call(exitTable.key)\n },\n },\n})\n\nwithMeta(tableKeymap.ctx, {\n displayName: 'KeymapCtx<table>',\n group: 'Table',\n})\n\nwithMeta(tableKeymap.shortcuts, {\n displayName: 'Keymap<table>',\n group: 'Table',\n})\n","import { expectDomTypeError } from '@milkdown/exception'\nimport { $nodeSchema } from '@milkdown/utils'\n\nimport { withMeta } from '../../__internal__'\n\nconst id = 'footnote_definition'\nconst markdownId = 'footnoteDefinition'\n\n/// Footnote definition node schema.\nexport const footnoteDefinitionSchema = $nodeSchema(\n 'footnote_definition',\n () => ({\n group: 'block',\n content: 'block+',\n defining: true,\n attrs: {\n label: {\n default: '',\n validate: 'string',\n },\n },\n parseDOM: [\n {\n tag: `dl[data-type=\"${id}\"]`,\n getAttrs: (dom) => {\n if (!(dom instanceof HTMLElement)) throw expectDomTypeError(dom)\n\n return {\n label: dom.dataset.label,\n }\n },\n contentElement: 'dd',\n },\n ],\n toDOM: (node) => {\n const label = node.attrs.label\n\n return [\n 'dl',\n {\n // TODO: add a prosemirror plugin to sync label on change\n 'data-label': label,\n 'data-type': id,\n },\n ['dt', label],\n ['dd', 0],\n ]\n },\n parseMarkdown: {\n match: ({ type }) => type === markdownId,\n runner: (state, node, type) => {\n state\n .openNode(type, {\n label: node.label as string,\n })\n .next(node.children)\n .closeNode()\n },\n },\n toMarkdown: {\n match: (node) => node.type.name === id,\n runner: (state, node) => {\n state\n .openNode(markdownId, undefined, {\n label: node.attrs.label,\n identifier: node.attrs.label,\n })\n .next(node.content)\n .closeNode()\n },\n },\n })\n)\n\nwithMeta(footnoteDefinitionSchema.ctx, {\n displayName: 'NodeSchemaCtx<footnodeDef>',\n group: 'footnote',\n})\n\nwithMeta(footnoteDefinitionSchema.node, {\n displayName: 'NodeSchema<footnodeDef>',\n group: 'footnote',\n})\n","import { expectDomTypeError } from '@milkdown/exception'\nimport { $nodeSchema } from '@milkdown/utils'\n\nimport { withMeta } from '../../__internal__'\n\nconst id = 'footnote_reference'\n\n/// Footnote reference node schema.\nexport const footnoteReferenceSchema = $nodeSchema(\n 'footnote_reference',\n () => ({\n group: 'inline',\n inline: true,\n atom: true,\n attrs: {\n label: {\n default: '',\n validate: 'string',\n },\n },\n parseDOM: [\n {\n tag: `sup[data-type=\"${id}\"]`,\n getAttrs: (dom) => {\n if (!(dom instanceof HTMLElement)) throw expectDomTypeError(dom)\n\n return {\n label: dom.dataset.label,\n }\n },\n },\n ],\n toDOM: (node) => {\n const label = node.attrs.label\n return [\n 'sup',\n {\n // TODO: add a prosemirror plugin to sync label on change\n 'data-label': label,\n 'data-type': id,\n },\n label,\n ]\n },\n parseMarkdown: {\n match: ({ type }) => type === 'footnoteReference',\n runner: (state, node, type) => {\n state.addNode(type, {\n label: node.label as string,\n })\n },\n },\n toMarkdown: {\n match: (node) => node.type.name === id,\n runner: (state, node) => {\n state.addNode('footnoteReference', undefined, undefined, {\n label: node.attrs.label,\n identifier: node.attrs.label,\n })\n },\n },\n })\n)\n\nwithMeta(footnoteReferenceSchema.ctx, {\n displayName: 'NodeSchemaCtx<footnodeRef>',\n group: 'footnote',\n})\n\nwithMeta(footnoteReferenceSchema.node, {\n displayName: 'NodeSchema<footnodeRef>',\n group: 'footnote',\n})\n","import { expectDomTypeError } from '@milkdown/exception'\nimport { listItemSchema } from '@milkdown/preset-commonmark'\nimport { InputRule } from '@milkdown/prose/inputrules'\nimport { $inputRule } from '@milkdown/utils'\n\nimport { withMeta } from '../__internal__'\n\n/// This schema extends the [list item](/preset-commonmark#list-item) schema and add task list support for it.\nexport const extendListItemSchemaForTask = listItemSchema.extendSchema(\n (prev) => {\n return (ctx) => {\n const baseSchema = prev(ctx)\n return {\n ...baseSchema,\n attrs: {\n ...baseSchema.attrs,\n checked: {\n default: null,\n validate: 'boolean|null',\n },\n },\n parseDOM: [\n {\n tag: 'li[data-item-type=\"task\"]',\n getAttrs: (dom) => {\n if (!(dom instanceof HTMLElement)) throw expectDomTypeError(dom)\n\n return {\n label: dom.dataset.label,\n listType: dom.dataset.listType,\n spread: dom.dataset.spread,\n checked: dom.dataset.checked\n ? dom.dataset.checked === 'true'\n : null,\n }\n },\n },\n ...(baseSchema?.parseDOM || []),\n ],\n toDOM: (node) => {\n if (baseSchema.toDOM && node.attrs.checked == null)\n return baseSchema.toDOM(node)\n\n return [\n 'li',\n {\n 'data-item-type': 'task',\n 'data-label': node.attrs.label,\n 'data-list-type': node.attrs.listType,\n 'data-spread': node.attrs.spread,\n 'data-checked': node.attrs.checked,\n },\n 0,\n ]\n },\n parseMarkdown: {\n match: ({ type }) => type === 'listItem',\n runner: (state, node, type) => {\n if (node.checked == null) {\n baseSchema.parseMarkdown.runner(state, node, type)\n return\n }\n\n const label = node.label != null ? `${node.label}.` : '•'\n const checked = node.checked != null ? Boolean(node.checked) : null\n const listType = node.label != null ? 'ordered' : 'bullet'\n const spread = node.spread != null ? `${node.spread}` : 'true'\n\n state.openNode(type, { label, listType, spread, checked })\n state.next(node.children)\n state.closeNode()\n },\n },\n toMarkdown: {\n match: (node) => node.type.name === 'list_item',\n runner: (state, node) => {\n if (node.attrs.checked == null) {\n baseSchema.toMarkdown.runner(state, node)\n return\n }\n\n const label = node.attrs.label\n const listType = node.attrs.listType\n const spread = node.attrs.spread === 'true'\n const checked = node.attrs.checked\n\n state.openNode('listItem', undefined, {\n label,\n listType,\n spread,\n checked,\n })\n state.next(node.content)\n state.closeNode()\n },\n },\n }\n }\n }\n)\n\nwithMeta(extendListItemSchemaForTask, {\n displayName: 'NodeSchema<listItem>',\n group: 'ListItem',\n})\n\n/// Input rule for wrapping a block in task list node.\n/// Users can type `[ ] ` or `[x] ` to wrap the block in task list node with checked status.\nexport const wrapInTaskListInputRule = $inputRule(() => {\n return new InputRule(\n /^\\[(?<checked>\\s|x)\\]\\s$/,\n (state, match, start, end) => {\n const pos = state.doc.resolve(start)\n let depth = 0\n let node = pos.node(depth)\n while (node && node.type.name !== 'list_item') {\n depth--\n node = pos.node(depth)\n }\n\n if (!node || node.attrs.checked != null) return null\n\n const checked = Boolean(match.groups?.checked === 'x')\n\n const finPos = pos.before(depth)\n const tr = state.tr\n\n tr.deleteRange(start, end).setNodeMarkup(finPos, undefined, {\n ...node.attrs,\n checked,\n })\n\n return tr\n }\n )\n})\n\nwithMeta(wrapInTaskListInputRule, {\n displayName: 'InputRule<wrapInTaskListInputRule>',\n group: 'ListItem',\n})\n","import type { MilkdownPlugin } from '@milkdown/ctx'\n\nimport { strikethroughKeymap } from '../mark'\nimport { tableKeymap } from '../node'\n\n/// @internal\nexport const keymap: MilkdownPlugin[] = [\n strikethroughKeymap,\n tableKeymap,\n].flat()\n","import type { MilkdownPlugin } from '@milkdown/ctx'\n\nimport { strikethroughInputRule } from '../mark'\nimport { insertTableInputRule, wrapInTaskListInputRule } from '../node'\n\n/// @internal\nexport const inputRules: MilkdownPlugin[] = [\n insertTableInputRule,\n wrapInTaskListInputRule,\n]\n\nexport const markInputRules: MilkdownPlugin[] = [strikethroughInputRule]\n","import { $prose } from '@milkdown/utils'\nimport { imeSpan } from 'prosemirror-safari-ime-span'\n\nimport { withMeta } from '../__internal__'\n\n/// This plugin is used to fix the bug of IME composing in table in Safari browser.\n/// original discussion in https://discuss.prosemirror.net/t/ime-composing-problems-on-td-or-th-element-in-safari-browser/4501\nexport const autoInsertSpanPlugin = $prose(() => imeSpan)\n\nwithMeta(autoInsertSpanPlugin, {\n displayName: 'Prose<autoInsertSpanPlugin>',\n group: 'Prose',\n})\n","import { columnResizing } from '@milkdown/prose/tables'\nimport { $prose } from '@milkdown/utils'\n\nimport { withMeta } from '../__internal__'\n\n/// This plugin is wrapping the `columnResizing` plugin from [prosemirror-tables](https://github.com/ProseMirror/prosemirror-tables).\nexport const columnResizingPlugin = $prose(() => columnResizing({}))\n\nwithMeta(columnResizingPlugin, {\n displayName: 'Prose<columnResizingPlugin>',\n group: 'Prose',\n})\n","import { tableEditing } from '@milkdown/prose/tables'\nimport { $prose } from '@milkdown/utils'\n\nimport { withMeta } from '../__internal__'\n\n/// This plugin is wrapping the `tableEditing` plugin from [prosemirror-tables](https://github.com/ProseMirror/prosemirror-tables).\nexport const tableEditingPlugin = $prose(() =>\n tableEditing({ allowTableNodeSelection: true })\n)\n\nwithMeta(tableEditingPlugin, {\n displayName: 'Prose<tableEditingPlugin>',\n group: 'Prose',\n})\n","import type { $Remark } from '@milkdown/utils'\nimport type { Options } from 'remark-gfm'\n\nimport { $remark } from '@milkdown/utils'\nimport remarkGFM from 'remark-gfm'\n\nimport { withMeta } from '../__internal__'\n\n/// This plugin is wrapping the [remark-gfm](https://github.com/remarkjs/remark-gfm).\nexport const remarkGFMPlugin: $Remark<'remarkGFM', Options | null | undefined> =\n $remark('remarkGFM', () => remarkGFM)\n\nwithMeta(remarkGFMPlugin.plugin, {\n displayName: 'Remark<remarkGFMPlugin>',\n group: 'Remark',\n})\n\nwithMeta(remarkGFMPlugin.options, {\n displayName: 'RemarkConfig<remarkGFMPlugin>',\n group: 'Remark',\n})\n","import type { Node } from '@milkdown/prose/model'\nimport type { Transaction } from '@milkdown/prose/state'\n\nimport { Plugin, PluginKey } from '@milkdown/prose/state'\nimport { $prose } from '@milkdown/utils'\n\nimport { withMeta } from '../__internal__'\n\nconst pluginKey = new PluginKey('MILKDOWN_KEEP_TABLE_ALIGN_PLUGIN')\n\nfunction getChildIndex(node: Node, parent: Node) {\n let index = 0\n parent.forEach((child, _offset, i) => {\n if (child === node) index = i\n })\n return index\n}\n\nexport const keepTableAlignPlugin = $prose(() => {\n return new Plugin({\n key: pluginKey,\n appendTransaction: (_tr, oldState, state) => {\n let tr: Transaction | undefined\n const check = (node: Node, pos: number) => {\n if (!tr) tr = state.tr\n\n if (node.type.name !== 'table_cell') return\n\n const $pos = state.doc.resolve(pos)\n const tableRow = $pos.node($pos.depth)\n const table = $pos.node($pos.depth - 1)\n const tableHeaderRow = table.firstChild\n // TODO: maybe consider add a header row\n if (!tableHeaderRow) return\n\n const index = getChildIndex(node, tableRow)\n const headerCell = tableHeaderRow.maybeChild(index)\n if (!headerCell) return\n const align = headerCell.attrs.alignment\n const currentAlign = node.attrs.alignment\n if (align === currentAlign) return\n\n tr.setNodeMarkup(pos, undefined, { ...node.attrs, alignment: align })\n }\n if (oldState.doc !== state.doc) state.doc.descendants(check)\n\n return tr\n },\n })\n})\n\nwithMeta(keepTableAlignPlugin, {\n displayName: 'Prose<keepTableAlignPlugin>',\n group: 'Prose',\n})\n","import type { MilkdownPlugin } from '@milkdown/ctx'\n\nimport {\n autoInsertSpanPlugin,\n keepTableAlignPlugin,\n remarkGFMPlugin,\n tableEditingPlugin,\n} from '../plugin'\n\n/// @internal\nexport const plugins: MilkdownPlugin[] = [\n keepTableAlignPlugin,\n autoInsertSpanPlugin,\n remarkGFMPlugin,\n tableEditingPlugin,\n].flat()\n","import type { MilkdownPlugin } from '@milkdown/ctx'\n\nimport { strikethroughAttr, strikethroughSchema } from '../mark'\nimport {\n extendListItemSchemaForTask,\n footnoteDefinitionSchema,\n footnoteReferenceSchema,\n tableCellSchema,\n tableHeaderRowSchema,\n tableHeaderSchema,\n tableRowSchema,\n tableSchema,\n} from '../node'\n\n/// @internal\nexport const schema: MilkdownPlugin[] = [\n extendListItemSchemaForTask,\n\n tableSchema,\n tableHeaderRowSchema,\n tableRowSchema,\n tableHeaderSchema,\n tableCellSchema,\n\n footnoteDefinitionSchema,\n footnoteReferenceSchema,\n\n strikethroughAttr,\n strikethroughSchema,\n].flat()\n","import { toggleStrikethroughCommand } from '../mark'\nimport {\n addColAfterCommand,\n addColBeforeCommand,\n addRowAfterCommand,\n addRowBeforeCommand,\n deleteSelectedCellsCommand,\n exitTable,\n goToNextTableCellCommand,\n goToPrevTableCellCommand,\n insertTableCommand,\n moveColCommand,\n moveRowCommand,\n selectColCommand,\n selectRowCommand,\n selectTableCommand,\n setAlignCommand,\n} from '../node'\n\n/// @internal\nexport const commands = [\n goToNextTableCellCommand,\n goToPrevTableCellCommand,\n exitTable,\n insertTableCommand,\n moveRowCommand,\n moveColCommand,\n selectRowCommand,\n selectColCommand,\n selectTableCommand,\n deleteSelectedCellsCommand,\n addRowBeforeCommand,\n addRowAfterCommand,\n addColBeforeCommand,\n addColAfterCommand,\n setAlignCommand,\n\n toggleStrikethroughCommand,\n]\n","import {\n commands,\n inputRules,\n keymap,\n markInputRules,\n plugins,\n schema,\n} from './composed'\n\nexport * from './node'\nexport * from './mark'\nexport * from './plugin'\nexport * from './composed'\n\n/// The GFM preset, includes all the plugins.\nexport const gfm = [\n schema,\n inputRules,\n markInputRules,\n keymap,\n commands,\n plugins,\n].flat()\n"],"names":["commands","id"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/__internal__/with-meta.ts","../src/mark/strike-through.ts","../src/node/table/schema.ts","../src/node/table/utils.ts","../src/node/table/command.ts","../src/node/table/input.ts","../src/node/footnote/definition.ts","../src/node/footnote/reference.ts","../src/node/task-list-item.ts","../src/composed/keymap.ts","../src/composed/inputrules.ts","../src/plugin/auto-insert-span-plugin.ts","../src/plugin/column-resizing-plugin.ts","../src/plugin/table-editing-plugin.ts","../src/plugin/remark-gfm-plugin.ts","../src/plugin/keep-table-align-plugin.ts","../src/composed/plugins.ts","../src/composed/schema.ts","../src/composed/commands.ts","../src/index.ts"],"sourcesContent":["import type { Meta, MilkdownPlugin } from '@milkdown/ctx'\n\nexport function withMeta<T extends MilkdownPlugin>(\n plugin: T,\n meta: Partial<Meta> & Pick<Meta, 'displayName'>\n): T {\n Object.assign(plugin, {\n meta: {\n package: '@milkdown/preset-gfm',\n ...meta,\n },\n })\n\n return plugin\n}\n","import { commandsCtx } from '@milkdown/core'\nimport { markRule } from '@milkdown/prose'\nimport { toggleMark } from '@milkdown/prose/commands'\nimport {\n $command,\n $inputRule,\n $markAttr,\n $markSchema,\n $useKeymap,\n} from '@milkdown/utils'\n\nimport { withMeta } from '../__internal__'\n\n/// HTML attributes for the strikethrough mark.\nexport const strikethroughAttr = $markAttr('strike_through')\n\nwithMeta(strikethroughAttr, {\n displayName: 'Attr<strikethrough>',\n group: 'Strikethrough',\n})\n\n/// Strikethrough mark schema.\nexport const strikethroughSchema = $markSchema('strike_through', (ctx) => ({\n parseDOM: [\n { tag: 'del' },\n {\n style: 'text-decoration',\n getAttrs: (value) => (value === 'line-through') as false,\n },\n ],\n toDOM: (mark) => ['del', ctx.get(strikethroughAttr.key)(mark)],\n parseMarkdown: {\n match: (node) => node.type === 'delete',\n runner: (state, node, markType) => {\n state.openMark(markType)\n state.next(node.children)\n state.closeMark(markType)\n },\n },\n toMarkdown: {\n match: (mark) => mark.type.name === 'strike_through',\n runner: (state, mark) => {\n state.withMark(mark, 'delete')\n },\n },\n}))\n\nwithMeta(strikethroughSchema.mark, {\n displayName: 'MarkSchema<strikethrough>',\n group: 'Strikethrough',\n})\n\nwithMeta(strikethroughSchema.ctx, {\n displayName: 'MarkSchemaCtx<strikethrough>',\n group: 'Strikethrough',\n})\n\n/// A command to toggle the strikethrough mark.\nexport const toggleStrikethroughCommand = $command(\n 'ToggleStrikeThrough',\n (ctx) => () => {\n return toggleMark(strikethroughSchema.type(ctx))\n }\n)\n\nwithMeta(toggleStrikethroughCommand, {\n displayName: 'Command<ToggleStrikethrough>',\n group: 'Strikethrough',\n})\n\n/// Input rule to create the strikethrough mark.\nexport const strikethroughInputRule = $inputRule((ctx) => {\n return markRule(/~([^~]+)~$/, strikethroughSchema.type(ctx))\n})\n\nwithMeta(strikethroughInputRule, {\n displayName: 'InputRule<strikethrough>',\n group: 'Strikethrough',\n})\n\n/// Keymap for the strikethrough mark.\n/// - `Mod-Alt-x` - Toggle the strikethrough mark.\nexport const strikethroughKeymap = $useKeymap('strikeThroughKeymap', {\n ToggleStrikethrough: {\n shortcuts: 'Mod-Alt-x',\n command: (ctx) => {\n const commands = ctx.get(commandsCtx)\n return () => commands.call(toggleStrikethroughCommand.key)\n },\n },\n})\n\nwithMeta(strikethroughKeymap.ctx, {\n displayName: 'KeymapCtx<strikethrough>',\n group: 'Strikethrough',\n})\n\nwithMeta(strikethroughKeymap.shortcuts, {\n displayName: 'Keymap<strikethrough>',\n group: 'Strikethrough',\n})\n","import type { NodeType } from '@milkdown/prose/model'\nimport type { MarkdownNode } from '@milkdown/transformer'\n\nimport { tableNodes } from '@milkdown/prose/tables'\nimport { $nodeSchema } from '@milkdown/utils'\n\nimport { withMeta } from '../../__internal__'\n\nconst originalSchema = tableNodes({\n tableGroup: 'block',\n cellContent: 'paragraph',\n cellAttributes: {\n alignment: {\n default: 'left',\n getFromDOM: (dom) => dom.style.textAlign || 'left',\n setDOMAttr: (value, attrs) => {\n attrs.style = `text-align: ${value || 'left'}`\n },\n },\n },\n})\n\n/// Schema for table node.\nexport const tableSchema = $nodeSchema('table', () => ({\n ...originalSchema.table,\n content: 'table_header_row table_row+',\n disableDropCursor: true,\n parseMarkdown: {\n match: (node) => node.type === 'table',\n runner: (state, node, type) => {\n const align = node.align as (string | null)[]\n const children = (node.children as MarkdownNode[]).map((x, i) => ({\n ...x,\n align,\n isHeader: i === 0,\n }))\n state.openNode(type)\n state.next(children)\n state.closeNode()\n },\n },\n toMarkdown: {\n match: (node) => node.type.name === 'table',\n runner: (state, node) => {\n const firstLine = node.content.firstChild?.content\n if (!firstLine) return\n\n const align: (string | null)[] = []\n firstLine.forEach((cell) => {\n align.push(cell.attrs.alignment)\n })\n state.openNode('table', undefined, { align })\n state.next(node.content)\n state.closeNode()\n },\n },\n}))\n\nwithMeta(tableSchema.node, {\n displayName: 'NodeSchema<table>',\n group: 'Table',\n})\n\nwithMeta(tableSchema.ctx, {\n displayName: 'NodeSchemaCtx<table>',\n group: 'Table',\n})\n\n/// Schema for table header row node.\nexport const tableHeaderRowSchema = $nodeSchema('table_header_row', () => ({\n ...originalSchema.table_row,\n disableDropCursor: true,\n content: '(table_header)*',\n parseDOM: [{ tag: 'tr[data-is-header]' }],\n toDOM() {\n return ['tr', { 'data-is-header': true }, 0]\n },\n parseMarkdown: {\n match: (node) => Boolean(node.type === 'tableRow' && node.isHeader),\n runner: (state, node, type) => {\n const align = node.align as (string | null)[]\n const children = (node.children as MarkdownNode[]).map((x, i) => ({\n ...x,\n align: align[i],\n isHeader: node.isHeader,\n }))\n state.openNode(type)\n state.next(children)\n state.closeNode()\n },\n },\n toMarkdown: {\n match: (node) => node.type.name === 'table_header_row',\n runner: (state, node) => {\n state.openNode('tableRow', undefined, { isHeader: true })\n state.next(node.content)\n state.closeNode()\n },\n },\n}))\n\nwithMeta(tableHeaderRowSchema.node, {\n displayName: 'NodeSchema<tableHeaderRow>',\n group: 'Table',\n})\n\nwithMeta(tableHeaderRowSchema.ctx, {\n displayName: 'NodeSchemaCtx<tableHeaderRow>',\n group: 'Table',\n})\n\n/// Schema for table row node.\nexport const tableRowSchema = $nodeSchema('table_row', () => ({\n ...originalSchema.table_row,\n disableDropCursor: true,\n content: '(table_cell)*',\n parseMarkdown: {\n match: (node) => node.type === 'tableRow',\n runner: (state, node, type) => {\n const align = node.align as (string | null)[]\n const children = (node.children as MarkdownNode[]).map((x, i) => ({\n ...x,\n align: align[i],\n }))\n state.openNode(type)\n state.next(children)\n state.closeNode()\n },\n },\n toMarkdown: {\n match: (node) => node.type.name === 'table_row',\n runner: (state, node) => {\n // if the row is empty, we don't need to create a table row\n // prevent remark from crashing\n if (node.content.size === 0) {\n return\n }\n state.openNode('tableRow')\n state.next(node.content)\n state.closeNode()\n },\n },\n}))\n\nwithMeta(tableRowSchema.node, {\n displayName: 'NodeSchema<tableRow>',\n group: 'Table',\n})\n\nwithMeta(tableRowSchema.ctx, {\n displayName: 'NodeSchemaCtx<tableRow>',\n group: 'Table',\n})\n\n/// Schema for table cell node.\nexport const tableCellSchema = $nodeSchema('table_cell', () => ({\n ...originalSchema.table_cell,\n disableDropCursor: true,\n parseMarkdown: {\n match: (node) => node.type === 'tableCell' && !node.isHeader,\n runner: (state, node, type) => {\n const align = node.align as string\n state\n .openNode(type, { alignment: align })\n .openNode(state.schema.nodes.paragraph as NodeType)\n .next(node.children)\n .closeNode()\n .closeNode()\n },\n },\n toMarkdown: {\n match: (node) => node.type.name === 'table_cell',\n runner: (state, node) => {\n state.openNode('tableCell').next(node.content).closeNode()\n },\n },\n}))\n\nwithMeta(tableCellSchema.node, {\n displayName: 'NodeSchema<tableCell>',\n group: 'Table',\n})\n\nwithMeta(tableCellSchema.ctx, {\n displayName: 'NodeSchemaCtx<tableCell>',\n group: 'Table',\n})\n\n/// Schema for table header node.\nexport const tableHeaderSchema = $nodeSchema('table_header', () => ({\n ...originalSchema.table_header,\n disableDropCursor: true,\n parseMarkdown: {\n match: (node) => node.type === 'tableCell' && !!node.isHeader,\n runner: (state, node, type) => {\n const align = node.align as string\n state.openNode(type, { alignment: align })\n state.openNode(state.schema.nodes.paragraph as NodeType)\n state.next(node.children)\n state.closeNode()\n state.closeNode()\n },\n },\n toMarkdown: {\n match: (node) => node.type.name === 'table_header',\n runner: (state, node) => {\n state.openNode('tableCell')\n state.next(node.content)\n state.closeNode()\n },\n },\n}))\n\nwithMeta(tableHeaderSchema.node, {\n displayName: 'NodeSchema<tableHeader>',\n group: 'Table',\n})\n\nwithMeta(tableHeaderSchema.ctx, {\n displayName: 'NodeSchemaCtx<tableHeader>',\n group: 'Table',\n})\n","import type { Ctx } from '@milkdown/ctx'\nimport type { ContentNodeWithPos } from '@milkdown/prose'\nimport type { Node, ResolvedPos } from '@milkdown/prose/model'\nimport type { Selection, Transaction } from '@milkdown/prose/state'\nimport type { TableRect } from '@milkdown/prose/tables'\n\nimport { cloneTr, findParentNodeClosestToPos } from '@milkdown/prose'\nimport { CellSelection, TableMap } from '@milkdown/prose/tables'\n\nimport {\n tableCellSchema,\n tableHeaderRowSchema,\n tableHeaderSchema,\n tableRowSchema,\n tableSchema,\n} from './schema'\n\n/// @internal\nexport interface CellPos {\n pos: number\n start: number\n node: Node\n}\n\n/// @internal\nexport function createTable(ctx: Ctx, rowsCount = 3, colsCount = 3): Node {\n const cells = Array(colsCount)\n .fill(0)\n .map(() => tableCellSchema.type(ctx).createAndFill()!)\n\n const headerCells = Array(colsCount)\n .fill(0)\n .map(() => tableHeaderSchema.type(ctx).createAndFill()!)\n\n const rows = Array(rowsCount)\n .fill(0)\n .map((_, i) =>\n i === 0\n ? tableHeaderRowSchema.type(ctx).create(null, headerCells)\n : tableRowSchema.type(ctx).create(null, cells)\n )\n\n return tableSchema.type(ctx).create(null, rows)\n}\n\n/// Find the table node with position information for target pos.\nexport function findTable($pos: ResolvedPos) {\n return findParentNodeClosestToPos(\n (node) => node.type.spec.tableRole === 'table'\n )($pos)\n}\n\n/// Get cells in a column of a table.\nexport function getCellsInCol(\n columnIndex: number,\n selection: Selection\n): CellPos[] | undefined {\n const table = findTable(selection.$from)\n if (!table) return undefined\n const map = TableMap.get(table.node)\n if (columnIndex < 0 || columnIndex >= map.width) return undefined\n\n return map\n .cellsInRect({\n left: columnIndex,\n right: columnIndex + 1,\n top: 0,\n bottom: map.height,\n })\n .map((pos) => {\n const node = table.node.nodeAt(pos)\n if (!node) return undefined\n const start = pos + table.start\n return {\n pos: start,\n start: start + 1,\n node,\n }\n })\n .filter((x): x is CellPos => x != null)\n}\n\n/// Get cells in a row of a table.\nexport function getCellsInRow(\n rowIndex: number,\n selection: Selection\n): CellPos[] | undefined {\n const table = findTable(selection.$from)\n if (!table) return undefined\n const map = TableMap.get(table.node)\n if (rowIndex < 0 || rowIndex >= map.height) return undefined\n\n return map\n .cellsInRect({\n left: 0,\n right: map.width,\n top: rowIndex,\n bottom: rowIndex + 1,\n })\n .map((pos) => {\n const node = table.node.nodeAt(pos)\n if (!node) return undefined\n const start = pos + table.start\n return {\n pos: start,\n start: start + 1,\n node,\n }\n })\n .filter((x): x is CellPos => x != null)\n}\n\n/// Get all cells in a table.\nexport function getAllCellsInTable(selection: Selection) {\n const table = findTable(selection.$from)\n if (!table) return\n\n const map = TableMap.get(table.node)\n const cells = map.cellsInRect({\n left: 0,\n right: map.width,\n top: 0,\n bottom: map.height,\n })\n return cells.map((nodePos) => {\n const node = table.node.nodeAt(nodePos)\n const pos = nodePos + table.start\n return { pos, start: pos + 1, node }\n })\n}\n\n/// Select a possible table in current selection.\nexport function selectTable(tr: Transaction) {\n const cells = getAllCellsInTable(tr.selection)\n if (cells && cells[0]) {\n const $firstCell = tr.doc.resolve(cells[0].pos)\n const last = cells[cells.length - 1]\n if (last) {\n const $lastCell = tr.doc.resolve(last.pos)\n return cloneTr(tr.setSelection(new CellSelection($lastCell, $firstCell)))\n }\n }\n return tr\n}\n\n/// @internal\nexport function addRowWithAlignment(\n ctx: Ctx,\n tr: Transaction,\n { map, tableStart, table }: TableRect,\n row: number\n) {\n const rowPos = Array(row)\n .fill(0)\n .reduce((acc, _, i) => {\n return acc + table.child(i).nodeSize\n }, tableStart)\n\n const cells = Array(map.width)\n .fill(0)\n .map((_, col) => {\n const headerCol = table.nodeAt(map.map[col] as number)\n return tableCellSchema\n .type(ctx)\n .createAndFill({ alignment: headerCol?.attrs.alignment }) as Node\n })\n\n tr.insert(rowPos, tableRowSchema.type(ctx).create(null, cells))\n return tr\n}\n\n/// @internal\nexport function selectLine(type: 'row' | 'col') {\n return (index: number, pos?: number) => (tr: Transaction) => {\n pos = pos ?? tr.selection.from\n const $pos = tr.doc.resolve(pos)\n const $node = findParentNodeClosestToPos(\n (node) => node.type.name === 'table'\n )($pos)\n const table = $node\n ? {\n node: $node.node,\n from: $node.start,\n }\n : undefined\n\n const isRowSelection = type === 'row'\n if (table) {\n const map = TableMap.get(table.node)\n\n // Check if the index is valid\n if (index >= 0 && index < (isRowSelection ? map.height : map.width)) {\n const lastCell = map.positionAt(\n isRowSelection ? index : map.height - 1,\n isRowSelection ? map.width - 1 : index,\n table.node\n )\n const $lastCell = tr.doc.resolve(table.from + lastCell)\n\n const createCellSelection = isRowSelection\n ? CellSelection.rowSelection\n : CellSelection.colSelection\n\n const firstCell = map.positionAt(\n isRowSelection ? index : 0,\n isRowSelection ? 0 : index,\n table.node\n )\n const $firstCell = tr.doc.resolve(table.from + firstCell)\n return cloneTr(\n tr.setSelection(\n createCellSelection($lastCell, $firstCell) as unknown as Selection\n )\n )\n }\n }\n return tr\n }\n}\n\n/// If the selection is in a table,\n/// select the {index} row.\nexport const selectRow = selectLine('row')\n\n/// If the selection is in a table,\n/// select the {index} column.\nexport const selectCol = selectLine('col')\n\nfunction transpose<T>(array: T[][]) {\n return array[0]!.map((_, i) => {\n return array.map((column) => column[i])\n }) as T[][]\n}\n\nfunction convertArrayOfRowsToTableNode(\n tableNode: Node,\n arrayOfNodes: (Node | null)[][]\n) {\n const rowsPM = []\n const map = TableMap.get(tableNode)\n for (let rowIndex = 0; rowIndex < map.height; rowIndex++) {\n const row = tableNode.child(rowIndex)\n const rowCells = []\n\n for (let colIndex = 0; colIndex < map.width; colIndex++) {\n if (!arrayOfNodes[rowIndex]![colIndex]) continue\n\n const cellPos = map.map[rowIndex * map.width + colIndex]!\n\n const cell = arrayOfNodes[rowIndex]![colIndex]!\n const oldCell = tableNode.nodeAt(cellPos)!\n const newCell = oldCell.type.createChecked(\n Object.assign({}, cell.attrs),\n cell.content,\n cell.marks\n )\n rowCells.push(newCell)\n }\n\n rowsPM.push(row.type.createChecked(row.attrs, rowCells, row.marks))\n }\n\n const newTable = tableNode.type.createChecked(\n tableNode.attrs,\n rowsPM,\n tableNode.marks\n )\n\n return newTable\n}\n\nfunction convertTableNodeToArrayOfRows(tableNode: Node) {\n const map = TableMap.get(tableNode)\n const rows: (Node | null)[][] = []\n for (let rowIndex = 0; rowIndex < map.height; rowIndex++) {\n const rowCells: (Node | null)[] = []\n const seen: Record<number, boolean> = {}\n\n for (let colIndex = 0; colIndex < map.width; colIndex++) {\n const cellPos = map.map[rowIndex * map.width + colIndex]!\n const cell = tableNode.nodeAt(cellPos)\n const rect = map.findCell(cellPos)\n if (seen[cellPos] || rect.top !== rowIndex) {\n rowCells.push(null)\n continue\n }\n seen[cellPos] = true\n\n rowCells.push(cell)\n }\n\n rows.push(rowCells)\n }\n\n return rows\n}\n\nfunction moveRowInArrayOfRows(\n rows: (Node | null)[][],\n indexesOrigin: number[],\n indexesTarget: number[],\n directionOverride: -1 | 1 | 0\n) {\n const direction = indexesOrigin[0]! > indexesTarget[0]! ? -1 : 1\n\n const rowsExtracted = rows.splice(indexesOrigin[0]!, indexesOrigin.length)\n const positionOffset = rowsExtracted.length % 2 === 0 ? 1 : 0\n let target: number\n\n if (directionOverride === -1 && direction === 1) {\n target = indexesTarget[0]! - 1\n } else if (directionOverride === 1 && direction === -1) {\n target = indexesTarget[indexesTarget.length - 1]! - positionOffset + 1\n } else {\n target =\n direction === -1\n ? indexesTarget[0]!\n : indexesTarget[indexesTarget.length - 1]! - positionOffset\n }\n\n rows.splice(target, 0, ...rowsExtracted)\n return rows\n}\n\nfunction moveTableColumn(\n table: ContentNodeWithPos,\n indexesOrigin: number[],\n indexesTarget: number[],\n direction: -1 | 1 | 0\n) {\n let rows = transpose(convertTableNodeToArrayOfRows(table.node))\n\n rows = moveRowInArrayOfRows(rows, indexesOrigin, indexesTarget, direction)\n rows = transpose(rows)\n\n return convertArrayOfRowsToTableNode(table.node, rows)\n}\n\nfunction moveTableRow(\n table: ContentNodeWithPos,\n indexesOrigin: number[],\n indexesTarget: number[],\n direction: -1 | 1 | 0\n) {\n let rows = convertTableNodeToArrayOfRows(table.node)\n\n rows = moveRowInArrayOfRows(rows, indexesOrigin, indexesTarget, direction)\n\n return convertArrayOfRowsToTableNode(table.node, rows)\n}\n\nfunction getSelectionRangeInColumn(columnIndex: number, tr: Transaction) {\n let startIndex = columnIndex\n let endIndex = columnIndex\n\n // looking for selection start column (startIndex)\n for (let i = columnIndex; i >= 0; i--) {\n const cells = getCellsInCol(i, tr.selection)\n if (cells) {\n cells.forEach((cell) => {\n const maybeEndIndex = cell.node.attrs.colspan + i - 1\n if (maybeEndIndex >= startIndex) startIndex = i\n\n if (maybeEndIndex > endIndex) endIndex = maybeEndIndex\n })\n }\n }\n // looking for selection end column (endIndex)\n for (let i = columnIndex; i <= endIndex; i++) {\n const cells = getCellsInCol(i, tr.selection)\n if (cells) {\n cells.forEach((cell) => {\n const maybeEndIndex = cell.node.attrs.colspan + i - 1\n if (cell.node.attrs.colspan > 1 && maybeEndIndex > endIndex)\n endIndex = maybeEndIndex\n })\n }\n }\n\n // filter out columns without cells (where all rows have colspan > 1 in the same column)\n const indexes = []\n for (let i = startIndex; i <= endIndex; i++) {\n const maybeCells = getCellsInCol(i, tr.selection)\n if (maybeCells && maybeCells.length) indexes.push(i)\n }\n startIndex = indexes[0]!\n endIndex = indexes[indexes.length - 1]!\n\n const firstSelectedColumnCells = getCellsInCol(startIndex, tr.selection)!\n const firstRowCells = getCellsInRow(0, tr.selection)!\n const $anchor = tr.doc.resolve(\n firstSelectedColumnCells[firstSelectedColumnCells.length - 1]!.pos\n )\n\n let headCell: CellPos | undefined\n for (let i = endIndex; i >= startIndex; i--) {\n const columnCells = getCellsInCol(i, tr.selection)\n if (columnCells && columnCells.length) {\n for (let j = firstRowCells.length - 1; j >= 0; j--) {\n if (firstRowCells[j]!.pos === columnCells[0]!.pos) {\n headCell = columnCells[0]\n break\n }\n }\n if (headCell) break\n }\n }\n\n const $head = tr.doc.resolve(headCell!.pos)\n return { $anchor, $head, indexes }\n}\n\nfunction getSelectionRangeInRow(rowIndex: number, tr: Transaction) {\n let startIndex = rowIndex\n let endIndex = rowIndex\n // looking for selection start row (startIndex)\n for (let i = rowIndex; i >= 0; i--) {\n const cells = getCellsInRow(i, tr.selection)\n cells!.forEach((cell) => {\n const maybeEndIndex = cell.node.attrs.rowspan + i - 1\n if (maybeEndIndex >= startIndex) startIndex = i\n\n if (maybeEndIndex > endIndex) endIndex = maybeEndIndex\n })\n }\n // looking for selection end row (endIndex)\n for (let i = rowIndex; i <= endIndex; i++) {\n const cells = getCellsInRow(i, tr.selection)\n cells!.forEach((cell) => {\n const maybeEndIndex = cell.node.attrs.rowspan + i - 1\n if (cell.node.attrs.rowspan > 1 && maybeEndIndex > endIndex)\n endIndex = maybeEndIndex\n })\n }\n\n // filter out rows without cells (where all columns have rowspan > 1 in the same row)\n const indexes = []\n for (let i = startIndex; i <= endIndex; i++) {\n const maybeCells = getCellsInRow(i, tr.selection)\n if (maybeCells && maybeCells.length) indexes.push(i)\n }\n startIndex = indexes[0]!\n endIndex = indexes[indexes.length - 1]!\n\n const firstSelectedRowCells = getCellsInRow(startIndex, tr.selection)!\n const firstColumnCells = getCellsInCol(0, tr.selection)!\n const $anchor = tr.doc.resolve(\n firstSelectedRowCells[firstSelectedRowCells.length - 1]!.pos\n )\n\n let headCell: CellPos | undefined\n for (let i = endIndex; i >= startIndex; i--) {\n const rowCells = getCellsInRow(i, tr.selection)\n if (rowCells && rowCells.length) {\n for (let j = firstColumnCells.length - 1; j >= 0; j--) {\n if (firstColumnCells[j]!.pos === rowCells[0]!.pos) {\n headCell = rowCells[0]!\n break\n }\n }\n if (headCell) break\n }\n }\n\n const $head = tr.doc.resolve(headCell!.pos)\n return { $anchor, $head, indexes }\n}\n\nexport interface MoveColParams {\n tr: Transaction\n origin: number\n target: number\n select?: boolean\n pos?: number\n}\n\n/// If the selection is in a table,\n/// Move the columns at `origin` to `target` in current table.\n/// The `select` is true by default, which means the selection will be set to the moved column.\nexport function moveCol(moveColParams: MoveColParams) {\n const { tr, origin, target, select = true, pos } = moveColParams\n const $pos = pos != null ? tr.doc.resolve(pos) : tr.selection.$from\n const table = findTable($pos)\n if (!table) return tr\n\n const { indexes: indexesOriginColumn } = getSelectionRangeInColumn(origin, tr)\n const { indexes: indexesTargetColumn } = getSelectionRangeInColumn(target, tr)\n\n if (indexesOriginColumn.includes(target)) return tr\n\n const newTable = moveTableColumn(\n table,\n indexesOriginColumn,\n indexesTargetColumn,\n 0\n )\n\n const _tr = cloneTr(tr).replaceWith(\n table.pos,\n table.pos + table.node.nodeSize,\n newTable\n )\n\n if (!select) return _tr\n\n const map = TableMap.get(newTable)\n const start = table.start\n const index = target\n const lastCell = map.positionAt(map.height - 1, index, newTable)\n const $lastCell = _tr.doc.resolve(start + lastCell)\n\n const createCellSelection = CellSelection.colSelection\n\n const firstCell = map.positionAt(0, index, newTable)\n const $firstCell = _tr.doc.resolve(start + firstCell)\n\n return _tr.setSelection(createCellSelection($lastCell, $firstCell))\n}\n\nexport interface MoveRowParams {\n tr: Transaction\n origin: number\n target: number\n select?: boolean\n pos?: number\n}\n\n/// If the selection is in a table,\n/// Move the rows at `origin` and `target` in current table.\n/// The `select` is true by default, which means the selection will be set to the moved row.\nexport function moveRow(moveRowParams: MoveRowParams) {\n const { tr, origin, target, select = true, pos } = moveRowParams\n const $pos = pos != null ? tr.doc.resolve(pos) : tr.selection.$from\n const table = findTable($pos)\n if (!table) return tr\n\n const { indexes: indexesOriginRow } = getSelectionRangeInRow(origin, tr)\n const { indexes: indexesTargetRow } = getSelectionRangeInRow(target, tr)\n\n if (indexesOriginRow.includes(target)) return tr\n\n const newTable = moveTableRow(table, indexesOriginRow, indexesTargetRow, 0)\n\n const _tr = cloneTr(tr).replaceWith(\n table.pos,\n table.pos + table.node.nodeSize,\n newTable\n )\n\n if (!select) return _tr\n\n const map = TableMap.get(newTable)\n const start = table.start\n const index = target\n const lastCell = map.positionAt(index, map.width - 1, newTable)\n const $lastCell = _tr.doc.resolve(start + lastCell)\n\n const createCellSelection = CellSelection.rowSelection\n\n const firstCell = map.positionAt(index, 0, newTable)\n const $firstCell = _tr.doc.resolve(start + firstCell)\n\n return _tr.setSelection(createCellSelection($lastCell, $firstCell))\n}\n","import { paragraphSchema } from '@milkdown/preset-commonmark'\nimport { findParentNodeType } from '@milkdown/prose'\nimport { Selection } from '@milkdown/prose/state'\nimport {\n CellSelection,\n addColumnAfter,\n addColumnBefore,\n deleteColumn,\n deleteRow,\n deleteTable,\n goToNextCell,\n isInTable,\n selectedRect,\n setCellAttr,\n} from '@milkdown/prose/tables'\nimport { $command } from '@milkdown/utils'\n\nimport { withMeta } from '../../__internal__'\nimport { tableSchema } from './schema'\nimport {\n addRowWithAlignment,\n createTable,\n moveCol,\n moveRow,\n selectCol,\n selectRow,\n selectTable,\n} from './utils'\n\n/// A command for moving cursor to previous cell.\nexport const goToPrevTableCellCommand = $command(\n 'GoToPrevTableCell',\n () => () => goToNextCell(-1)\n)\n\nwithMeta(goToPrevTableCellCommand, {\n displayName: 'Command<goToPrevTableCellCommand>',\n group: 'Table',\n})\n\n/// A command for moving cursor to next cell.\nexport const goToNextTableCellCommand = $command(\n 'GoToNextTableCell',\n () => () => goToNextCell(1)\n)\n\nwithMeta(goToNextTableCellCommand, {\n displayName: 'Command<goToNextTableCellCommand>',\n group: 'Table',\n})\n\n/// A command for quitting current table and insert a new paragraph node.\nexport const exitTable = $command(\n 'ExitTable',\n (ctx) => () => (state, dispatch) => {\n if (!isInTable(state)) return false\n\n const { $head } = state.selection\n const table = findParentNodeType($head, tableSchema.type(ctx))\n if (!table) return false\n\n const { to } = table\n\n const tr = state.tr.replaceWith(\n to,\n to,\n paragraphSchema.type(ctx).createAndFill()!\n )\n\n tr.setSelection(Selection.near(tr.doc.resolve(to), 1)).scrollIntoView()\n dispatch?.(tr)\n return true\n }\n)\n\nwithMeta(exitTable, {\n displayName: 'Command<breakTableCommand>',\n group: 'Table',\n})\n\n/// A command for inserting a table.\n/// You can specify the number of rows and columns.\n/// By default, it will insert a 3x3 table.\nexport const insertTableCommand = $command(\n 'InsertTable',\n (ctx) =>\n ({ row, col }: { row?: number; col?: number } = {}) =>\n (state, dispatch) => {\n const { selection, tr } = state\n const { from } = selection\n const table = createTable(ctx, row, col)\n const _tr = tr.replaceSelectionWith(table)\n const sel = Selection.findFrom(_tr.doc.resolve(from), 1, true)\n if (sel) _tr.setSelection(sel)\n\n dispatch?.(_tr)\n\n return true\n }\n)\n\nwithMeta(insertTableCommand, {\n displayName: 'Command<insertTableCommand>',\n group: 'Table',\n})\n\n/// A command for moving a row in a table.\n/// You should specify the `from` and `to` index.\nexport const moveRowCommand = $command(\n 'MoveRow',\n () =>\n ({ from, to, pos }: { from?: number; to?: number; pos?: number } = {}) =>\n (state, dispatch) => {\n const { tr } = state\n const result = dispatch?.(\n moveRow({ tr, origin: from ?? 0, target: to ?? 0, pos, select: true })\n )\n\n return Boolean(result)\n }\n)\n\nwithMeta(moveRowCommand, {\n displayName: 'Command<moveRowCommand>',\n group: 'Table',\n})\n\n/// A command for moving a column in a table.\n/// You should specify the `from` and `to` index.\nexport const moveColCommand = $command(\n 'MoveCol',\n () =>\n ({ from, to, pos }: { from?: number; to?: number; pos?: number } = {}) =>\n (state, dispatch) => {\n const { tr } = state\n const result = dispatch?.(\n moveCol({ tr, origin: from ?? 0, target: to ?? 0, pos, select: true })\n )\n\n return Boolean(result)\n }\n)\n\nwithMeta(moveColCommand, {\n displayName: 'Command<moveColCommand>',\n group: 'Table',\n})\n\n/// A command for selecting a row.\nexport const selectRowCommand = $command<\n { index: number; pos?: number },\n 'SelectRow'\n>(\n 'SelectRow',\n () =>\n (payload: { index: number; pos?: number } = { index: 0 }) =>\n (state, dispatch) => {\n const { tr } = state\n const result = dispatch?.(selectRow(payload.index, payload.pos)(tr))\n\n return Boolean(result)\n }\n)\n\nwithMeta(selectRowCommand, {\n displayName: 'Command<selectRowCommand>',\n group: 'Table',\n})\n\n/// A command for selecting a column.\nexport const selectColCommand = $command<\n { index: number; pos?: number },\n 'SelectCol'\n>(\n 'SelectCol',\n () =>\n (payload: { index: number; pos?: number } = { index: 0 }) =>\n (state, dispatch) => {\n const { tr } = state\n const result = dispatch?.(selectCol(payload.index, payload.pos)(tr))\n\n return Boolean(result)\n }\n)\n\nwithMeta(selectColCommand, {\n displayName: 'Command<selectColCommand>',\n group: 'Table',\n})\n\n/// A command for selecting a table.\nexport const selectTableCommand = $command(\n 'SelectTable',\n () => () => (state, dispatch) => {\n const { tr } = state\n const result = dispatch?.(selectTable(tr))\n\n return Boolean(result)\n }\n)\n\nwithMeta(selectTableCommand, {\n displayName: 'Command<selectTableCommand>',\n group: 'Table',\n})\n\n/// A command for deleting selected cells.\n/// If the selection is a row or column, the row or column will be deleted.\n/// If all cells are selected, the table will be deleted.\nexport const deleteSelectedCellsCommand = $command(\n 'DeleteSelectedCells',\n () => () => (state, dispatch) => {\n const { selection } = state\n if (!(selection instanceof CellSelection)) return false\n\n const isRow = selection.isRowSelection()\n const isCol = selection.isColSelection()\n\n if (isRow && isCol) return deleteTable(state, dispatch)\n\n if (isCol) return deleteColumn(state, dispatch)\n else return deleteRow(state, dispatch)\n }\n)\n\nwithMeta(deleteSelectedCellsCommand, {\n displayName: 'Command<deleteSelectedCellsCommand>',\n group: 'Table',\n})\n\n/// A command for adding a column before the current column.\nexport const addColBeforeCommand = $command(\n 'AddColBefore',\n () => () => addColumnBefore\n)\n\nwithMeta(addColBeforeCommand, {\n displayName: 'Command<addColBeforeCommand>',\n group: 'Table',\n})\n\n/// A command for adding a column after the current column.\nexport const addColAfterCommand = $command(\n 'AddColAfter',\n () => () => addColumnAfter\n)\n\nwithMeta(addColAfterCommand, {\n displayName: 'Command<addColAfterCommand>',\n group: 'Table',\n})\n\n/// A command for adding a row before the current row.\nexport const addRowBeforeCommand = $command(\n 'AddRowBefore',\n (ctx) => () => (state, dispatch) => {\n if (!isInTable(state)) return false\n if (dispatch) {\n const rect = selectedRect(state)\n dispatch(addRowWithAlignment(ctx, state.tr, rect, rect.top))\n }\n return true\n }\n)\n\nwithMeta(addRowBeforeCommand, {\n displayName: 'Command<addRowBeforeCommand>',\n group: 'Table',\n})\n\n/// A command for adding a row after the current row.\nexport const addRowAfterCommand = $command(\n 'AddRowAfter',\n (ctx) => () => (state, dispatch) => {\n if (!isInTable(state)) return false\n if (dispatch) {\n const rect = selectedRect(state)\n dispatch(addRowWithAlignment(ctx, state.tr, rect, rect.bottom))\n }\n return true\n }\n)\n\nwithMeta(addRowAfterCommand, {\n displayName: 'Command<addRowAfterCommand>',\n group: 'Table',\n})\n\n/// A command for setting alignment property for selected cells.\n/// You can specify the alignment as `left`, `center`, or `right`.\n/// It's `left` by default.\nexport const setAlignCommand = $command<\n 'left' | 'center' | 'right',\n 'SetAlign'\n>(\n 'SetAlign',\n () =>\n (alignment = 'left') =>\n setCellAttr('alignment', alignment)\n)\n\nwithMeta(setAlignCommand, {\n displayName: 'Command<setAlignCommand>',\n group: 'Table',\n})\n","import { commandsCtx } from '@milkdown/core'\nimport { InputRule } from '@milkdown/prose/inputrules'\nimport { TextSelection } from '@milkdown/prose/state'\nimport { $inputRule, $useKeymap } from '@milkdown/utils'\n\nimport { withMeta } from '../../__internal__'\nimport {\n exitTable,\n goToNextTableCellCommand,\n goToPrevTableCellCommand,\n} from './command'\nimport { tableSchema } from './schema'\nimport { createTable } from './utils'\n\n/// A input rule for creating table.\n/// For example, `|2x2|` will create a 2x2 table.\nexport const insertTableInputRule = $inputRule(\n (ctx) =>\n new InputRule(\n /^\\|(?<col>\\d+)[xX](?<row>\\d+)\\|\\s$/,\n (state, match, start, end) => {\n const $start = state.doc.resolve(start)\n if (\n !$start\n .node(-1)\n .canReplaceWith(\n $start.index(-1),\n $start.indexAfter(-1),\n tableSchema.type(ctx)\n )\n )\n return null\n\n const row = Math.max(Number(match.groups?.row ?? 0), 2)\n\n const tableNode = createTable(ctx, row, Number(match.groups?.col))\n const tr = state.tr.replaceRangeWith(start, end, tableNode)\n return tr\n .setSelection(TextSelection.create(tr.doc, start + 3))\n .scrollIntoView()\n }\n )\n)\n\nwithMeta(insertTableInputRule, {\n displayName: 'InputRule<insertTableInputRule>',\n group: 'Table',\n})\n\n/// Keymap for table commands.\n/// - `<Mod-]>`/`<Tab>`: Move to the next cell.\n/// - `<Mod-[>`/`<Shift-Tab>`: Move to the previous cell.\n/// - `<Mod-Enter>`: Exit the table, and break it if possible.\nexport const tableKeymap = $useKeymap('tableKeymap', {\n NextCell: {\n priority: 100,\n shortcuts: ['Mod-]', 'Tab'],\n command: (ctx) => {\n const commands = ctx.get(commandsCtx)\n\n return () => commands.call(goToNextTableCellCommand.key)\n },\n },\n PrevCell: {\n shortcuts: ['Mod-[', 'Shift-Tab'],\n command: (ctx) => {\n const commands = ctx.get(commandsCtx)\n\n return () => commands.call(goToPrevTableCellCommand.key)\n },\n },\n ExitTable: {\n shortcuts: ['Mod-Enter', 'Enter'],\n command: (ctx) => {\n const commands = ctx.get(commandsCtx)\n\n return () => commands.call(exitTable.key)\n },\n },\n})\n\nwithMeta(tableKeymap.ctx, {\n displayName: 'KeymapCtx<table>',\n group: 'Table',\n})\n\nwithMeta(tableKeymap.shortcuts, {\n displayName: 'Keymap<table>',\n group: 'Table',\n})\n","import { expectDomTypeError } from '@milkdown/exception'\nimport { $nodeSchema } from '@milkdown/utils'\n\nimport { withMeta } from '../../__internal__'\n\nconst id = 'footnote_definition'\nconst markdownId = 'footnoteDefinition'\n\n/// Footnote definition node schema.\nexport const footnoteDefinitionSchema = $nodeSchema(\n 'footnote_definition',\n () => ({\n group: 'block',\n content: 'block+',\n defining: true,\n attrs: {\n label: {\n default: '',\n validate: 'string',\n },\n },\n parseDOM: [\n {\n tag: `dl[data-type=\"${id}\"]`,\n getAttrs: (dom) => {\n if (!(dom instanceof HTMLElement)) throw expectDomTypeError(dom)\n\n return {\n label: dom.dataset.label,\n }\n },\n contentElement: 'dd',\n },\n ],\n toDOM: (node) => {\n const label = node.attrs.label\n\n return [\n 'dl',\n {\n // TODO: add a prosemirror plugin to sync label on change\n 'data-label': label,\n 'data-type': id,\n },\n ['dt', label],\n ['dd', 0],\n ]\n },\n parseMarkdown: {\n match: ({ type }) => type === markdownId,\n runner: (state, node, type) => {\n state\n .openNode(type, {\n label: node.label as string,\n })\n .next(node.children)\n .closeNode()\n },\n },\n toMarkdown: {\n match: (node) => node.type.name === id,\n runner: (state, node) => {\n state\n .openNode(markdownId, undefined, {\n label: node.attrs.label,\n identifier: node.attrs.label,\n })\n .next(node.content)\n .closeNode()\n },\n },\n })\n)\n\nwithMeta(footnoteDefinitionSchema.ctx, {\n displayName: 'NodeSchemaCtx<footnodeDef>',\n group: 'footnote',\n})\n\nwithMeta(footnoteDefinitionSchema.node, {\n displayName: 'NodeSchema<footnodeDef>',\n group: 'footnote',\n})\n","import { expectDomTypeError } from '@milkdown/exception'\nimport { $nodeSchema } from '@milkdown/utils'\n\nimport { withMeta } from '../../__internal__'\n\nconst id = 'footnote_reference'\n\n/// Footnote reference node schema.\nexport const footnoteReferenceSchema = $nodeSchema(\n 'footnote_reference',\n () => ({\n group: 'inline',\n inline: true,\n atom: true,\n attrs: {\n label: {\n default: '',\n validate: 'string',\n },\n },\n parseDOM: [\n {\n tag: `sup[data-type=\"${id}\"]`,\n getAttrs: (dom) => {\n if (!(dom instanceof HTMLElement)) throw expectDomTypeError(dom)\n\n return {\n label: dom.dataset.label,\n }\n },\n },\n ],\n toDOM: (node) => {\n const label = node.attrs.label\n return [\n 'sup',\n {\n // TODO: add a prosemirror plugin to sync label on change\n 'data-label': label,\n 'data-type': id,\n },\n label,\n ]\n },\n parseMarkdown: {\n match: ({ type }) => type === 'footnoteReference',\n runner: (state, node, type) => {\n state.addNode(type, {\n label: node.label as string,\n })\n },\n },\n toMarkdown: {\n match: (node) => node.type.name === id,\n runner: (state, node) => {\n state.addNode('footnoteReference', undefined, undefined, {\n label: node.attrs.label,\n identifier: node.attrs.label,\n })\n },\n },\n })\n)\n\nwithMeta(footnoteReferenceSchema.ctx, {\n displayName: 'NodeSchemaCtx<footnodeRef>',\n group: 'footnote',\n})\n\nwithMeta(footnoteReferenceSchema.node, {\n displayName: 'NodeSchema<footnodeRef>',\n group: 'footnote',\n})\n","import { expectDomTypeError } from '@milkdown/exception'\nimport { listItemSchema } from '@milkdown/preset-commonmark'\nimport { InputRule } from '@milkdown/prose/inputrules'\nimport { $inputRule } from '@milkdown/utils'\n\nimport { withMeta } from '../__internal__'\n\n/// This schema extends the [list item](/preset-commonmark#list-item) schema and add task list support for it.\nexport const extendListItemSchemaForTask = listItemSchema.extendSchema(\n (prev) => {\n return (ctx) => {\n const baseSchema = prev(ctx)\n return {\n ...baseSchema,\n attrs: {\n ...baseSchema.attrs,\n checked: {\n default: null,\n validate: 'boolean|null',\n },\n },\n parseDOM: [\n {\n tag: 'li[data-item-type=\"task\"]',\n getAttrs: (dom) => {\n if (!(dom instanceof HTMLElement)) throw expectDomTypeError(dom)\n\n return {\n label: dom.dataset.label,\n listType: dom.dataset.listType,\n spread: dom.dataset.spread,\n checked: dom.dataset.checked\n ? dom.dataset.checked === 'true'\n : null,\n }\n },\n },\n ...(baseSchema?.parseDOM || []),\n ],\n toDOM: (node) => {\n if (baseSchema.toDOM && node.attrs.checked == null)\n return baseSchema.toDOM(node)\n\n return [\n 'li',\n {\n 'data-item-type': 'task',\n 'data-label': node.attrs.label,\n 'data-list-type': node.attrs.listType,\n 'data-spread': node.attrs.spread,\n 'data-checked': node.attrs.checked,\n },\n 0,\n ]\n },\n parseMarkdown: {\n match: ({ type }) => type === 'listItem',\n runner: (state, node, type) => {\n if (node.checked == null) {\n baseSchema.parseMarkdown.runner(state, node, type)\n return\n }\n\n const label = node.label != null ? `${node.label}.` : '•'\n const checked = node.checked != null ? Boolean(node.checked) : null\n const listType = node.label != null ? 'ordered' : 'bullet'\n const spread = node.spread != null ? `${node.spread}` : 'true'\n\n state.openNode(type, { label, listType, spread, checked })\n state.next(node.children)\n state.closeNode()\n },\n },\n toMarkdown: {\n match: (node) => node.type.name === 'list_item',\n runner: (state, node) => {\n if (node.attrs.checked == null) {\n baseSchema.toMarkdown.runner(state, node)\n return\n }\n\n const label = node.attrs.label\n const listType = node.attrs.listType\n const spread = node.attrs.spread === 'true'\n const checked = node.attrs.checked\n\n state.openNode('listItem', undefined, {\n label,\n listType,\n spread,\n checked,\n })\n state.next(node.content)\n state.closeNode()\n },\n },\n }\n }\n }\n)\n\nwithMeta(extendListItemSchemaForTask.node, {\n displayName: 'NodeSchema<taskListItem>',\n group: 'ListItem',\n})\n\nwithMeta(extendListItemSchemaForTask.ctx, {\n displayName: 'NodeSchemaCtx<taskListItem>',\n group: 'ListItem',\n})\n\n/// Input rule for wrapping a block in task list node.\n/// Users can type `[ ] ` or `[x] ` to wrap the block in task list node with checked status.\nexport const wrapInTaskListInputRule = $inputRule(() => {\n return new InputRule(\n /^\\[(?<checked>\\s|x)\\]\\s$/,\n (state, match, start, end) => {\n const pos = state.doc.resolve(start)\n let depth = 0\n let node = pos.node(depth)\n while (node && node.type.name !== 'list_item') {\n depth--\n node = pos.node(depth)\n }\n\n if (!node || node.attrs.checked != null) return null\n\n const checked = Boolean(match.groups?.checked === 'x')\n\n const finPos = pos.before(depth)\n const tr = state.tr\n\n tr.deleteRange(start, end).setNodeMarkup(finPos, undefined, {\n ...node.attrs,\n checked,\n })\n\n return tr\n }\n )\n})\n\nwithMeta(wrapInTaskListInputRule, {\n displayName: 'InputRule<wrapInTaskListInputRule>',\n group: 'ListItem',\n})\n","import type { MilkdownPlugin } from '@milkdown/ctx'\n\nimport { strikethroughKeymap } from '../mark'\nimport { tableKeymap } from '../node'\n\n/// @internal\nexport const keymap: MilkdownPlugin[] = [\n strikethroughKeymap,\n tableKeymap,\n].flat()\n","import type { MilkdownPlugin } from '@milkdown/ctx'\n\nimport { strikethroughInputRule } from '../mark'\nimport { insertTableInputRule, wrapInTaskListInputRule } from '../node'\n\n/// @internal\nexport const inputRules: MilkdownPlugin[] = [\n insertTableInputRule,\n wrapInTaskListInputRule,\n]\n\nexport const markInputRules: MilkdownPlugin[] = [strikethroughInputRule]\n","import { $prose } from '@milkdown/utils'\nimport { imeSpan } from 'prosemirror-safari-ime-span'\n\nimport { withMeta } from '../__internal__'\n\n/// This plugin is used to fix the bug of IME composing in table in Safari browser.\n/// original discussion in https://discuss.prosemirror.net/t/ime-composing-problems-on-td-or-th-element-in-safari-browser/4501\nexport const autoInsertSpanPlugin = $prose(() => imeSpan)\n\nwithMeta(autoInsertSpanPlugin, {\n displayName: 'Prose<autoInsertSpanPlugin>',\n group: 'Prose',\n})\n","import { columnResizing } from '@milkdown/prose/tables'\nimport { $prose } from '@milkdown/utils'\n\nimport { withMeta } from '../__internal__'\n\n/// This plugin is wrapping the `columnResizing` plugin from [prosemirror-tables](https://github.com/ProseMirror/prosemirror-tables).\nexport const columnResizingPlugin = $prose(() => columnResizing({}))\n\nwithMeta(columnResizingPlugin, {\n displayName: 'Prose<columnResizingPlugin>',\n group: 'Prose',\n})\n","import { tableEditing } from '@milkdown/prose/tables'\nimport { $prose } from '@milkdown/utils'\n\nimport { withMeta } from '../__internal__'\n\n/// This plugin is wrapping the `tableEditing` plugin from [prosemirror-tables](https://github.com/ProseMirror/prosemirror-tables).\nexport const tableEditingPlugin = $prose(() =>\n tableEditing({ allowTableNodeSelection: true })\n)\n\nwithMeta(tableEditingPlugin, {\n displayName: 'Prose<tableEditingPlugin>',\n group: 'Prose',\n})\n","import type { $Remark } from '@milkdown/utils'\nimport type { Options } from 'remark-gfm'\n\nimport { $remark } from '@milkdown/utils'\nimport remarkGFM from 'remark-gfm'\n\nimport { withMeta } from '../__internal__'\n\n/// This plugin is wrapping the [remark-gfm](https://github.com/remarkjs/remark-gfm).\nexport const remarkGFMPlugin: $Remark<'remarkGFM', Options | null | undefined> =\n $remark('remarkGFM', () => remarkGFM)\n\nwithMeta(remarkGFMPlugin.plugin, {\n displayName: 'Remark<remarkGFMPlugin>',\n group: 'Remark',\n})\n\nwithMeta(remarkGFMPlugin.options, {\n displayName: 'RemarkConfig<remarkGFMPlugin>',\n group: 'Remark',\n})\n","import type { Node } from '@milkdown/prose/model'\nimport type { Transaction } from '@milkdown/prose/state'\n\nimport { Plugin, PluginKey } from '@milkdown/prose/state'\nimport { $prose } from '@milkdown/utils'\n\nimport { withMeta } from '../__internal__'\n\nconst pluginKey = new PluginKey('MILKDOWN_KEEP_TABLE_ALIGN_PLUGIN')\n\nfunction getChildIndex(node: Node, parent: Node) {\n let index = 0\n parent.forEach((child, _offset, i) => {\n if (child === node) index = i\n })\n return index\n}\n\nexport const keepTableAlignPlugin = $prose(() => {\n return new Plugin({\n key: pluginKey,\n appendTransaction: (_tr, oldState, state) => {\n let tr: Transaction | undefined\n const check = (node: Node, pos: number) => {\n if (!tr) tr = state.tr\n\n if (node.type.name !== 'table_cell') return\n\n const $pos = state.doc.resolve(pos)\n const tableRow = $pos.node($pos.depth)\n const table = $pos.node($pos.depth - 1)\n const tableHeaderRow = table.firstChild\n // TODO: maybe consider add a header row\n if (!tableHeaderRow) return\n\n const index = getChildIndex(node, tableRow)\n const headerCell = tableHeaderRow.maybeChild(index)\n if (!headerCell) return\n const align = headerCell.attrs.alignment\n const currentAlign = node.attrs.alignment\n if (align === currentAlign) return\n\n tr.setNodeMarkup(pos, undefined, { ...node.attrs, alignment: align })\n }\n if (oldState.doc !== state.doc) state.doc.descendants(check)\n\n return tr\n },\n })\n})\n\nwithMeta(keepTableAlignPlugin, {\n displayName: 'Prose<keepTableAlignPlugin>',\n group: 'Prose',\n})\n","import type { MilkdownPlugin } from '@milkdown/ctx'\n\nimport {\n autoInsertSpanPlugin,\n keepTableAlignPlugin,\n remarkGFMPlugin,\n tableEditingPlugin,\n} from '../plugin'\n\n/// @internal\nexport const plugins: MilkdownPlugin[] = [\n keepTableAlignPlugin,\n autoInsertSpanPlugin,\n remarkGFMPlugin,\n tableEditingPlugin,\n].flat()\n","import type { MilkdownPlugin } from '@milkdown/ctx'\n\nimport { strikethroughAttr, strikethroughSchema } from '../mark'\nimport {\n extendListItemSchemaForTask,\n footnoteDefinitionSchema,\n footnoteReferenceSchema,\n tableCellSchema,\n tableHeaderRowSchema,\n tableHeaderSchema,\n tableRowSchema,\n tableSchema,\n} from '../node'\n\n/// @internal\nexport const schema: MilkdownPlugin[] = [\n extendListItemSchemaForTask,\n\n tableSchema,\n tableHeaderRowSchema,\n tableRowSchema,\n tableHeaderSchema,\n tableCellSchema,\n\n footnoteDefinitionSchema,\n footnoteReferenceSchema,\n\n strikethroughAttr,\n strikethroughSchema,\n].flat()\n","import { toggleStrikethroughCommand } from '../mark'\nimport {\n addColAfterCommand,\n addColBeforeCommand,\n addRowAfterCommand,\n addRowBeforeCommand,\n deleteSelectedCellsCommand,\n exitTable,\n goToNextTableCellCommand,\n goToPrevTableCellCommand,\n insertTableCommand,\n moveColCommand,\n moveRowCommand,\n selectColCommand,\n selectRowCommand,\n selectTableCommand,\n setAlignCommand,\n} from '../node'\n\n/// @internal\nexport const commands = [\n goToNextTableCellCommand,\n goToPrevTableCellCommand,\n exitTable,\n insertTableCommand,\n moveRowCommand,\n moveColCommand,\n selectRowCommand,\n selectColCommand,\n selectTableCommand,\n deleteSelectedCellsCommand,\n addRowBeforeCommand,\n addRowAfterCommand,\n addColBeforeCommand,\n addColAfterCommand,\n setAlignCommand,\n\n toggleStrikethroughCommand,\n]\n","import {\n commands,\n inputRules,\n keymap,\n markInputRules,\n plugins,\n schema,\n} from './composed'\n\nexport * from './node'\nexport * from './mark'\nexport * from './plugin'\nexport * from './composed'\n\n/// The GFM preset, includes all the plugins.\nexport const gfm = [\n schema,\n inputRules,\n markInputRules,\n keymap,\n commands,\n plugins,\n].flat()\n"],"names":["commands","id"],"mappings":";;;;;;;;;;;AAEO,SAAS,SACd,QACA,MACG;AACH,SAAO,OAAO,QAAQ;AAAA,IACpB,MAAM;AAAA,MACJ,SAAS;AAAA,MACT,GAAG;AAAA,IAAA;AAAA,EACL,CACD;AAED,SAAO;AACT;ACAO,MAAM,oBAAoB,UAAU,gBAAgB;AAE3D,SAAS,mBAAmB;AAAA,EAC1B,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAGM,MAAM,sBAAsB,YAAY,kBAAkB,CAAC,SAAS;AAAA,EACzE,UAAU;AAAA,IACR,EAAE,KAAK,MAAA;AAAA,IACP;AAAA,MACE,OAAO;AAAA,MACP,UAAU,CAAC,UAAW,UAAU;AAAA,IAAA;AAAA,EAClC;AAAA,EAEF,OAAO,CAAC,SAAS,CAAC,OAAO,IAAI,IAAI,kBAAkB,GAAG,EAAE,IAAI,CAAC;AAAA,EAC7D,eAAe;AAAA,IACb,OAAO,CAAC,SAAS,KAAK,SAAS;AAAA,IAC/B,QAAQ,CAAC,OAAO,MAAM,aAAa;AACjC,YAAM,SAAS,QAAQ;AACvB,YAAM,KAAK,KAAK,QAAQ;AACxB,YAAM,UAAU,QAAQ;AAAA,IAAA;AAAA,EAC1B;AAAA,EAEF,YAAY;AAAA,IACV,OAAO,CAAC,SAAS,KAAK,KAAK,SAAS;AAAA,IACpC,QAAQ,CAAC,OAAO,SAAS;AACvB,YAAM,SAAS,MAAM,QAAQ;AAAA,IAAA;AAAA,EAC/B;AAEJ,EAAE;AAEF,SAAS,oBAAoB,MAAM;AAAA,EACjC,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAED,SAAS,oBAAoB,KAAK;AAAA,EAChC,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAGM,MAAM,6BAA6B;AAAA,EACxC;AAAA,EACA,CAAC,QAAQ,MAAM;AACb,WAAO,WAAW,oBAAoB,KAAK,GAAG,CAAC;AAAA,EAAA;AAEnD;AAEA,SAAS,4BAA4B;AAAA,EACnC,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAGM,MAAM,yBAAyB,WAAW,CAAC,QAAQ;AACxD,SAAO,SAAS,cAAc,oBAAoB,KAAK,GAAG,CAAC;AAC7D,CAAC;AAED,SAAS,wBAAwB;AAAA,EAC/B,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAIM,MAAM,sBAAsB,WAAW,uBAAuB;AAAA,EACnE,qBAAqB;AAAA,IACnB,WAAW;AAAA,IACX,SAAS,CAAC,QAAQ;AAChB,YAAMA,YAAW,IAAI,IAAI,WAAW;AACpC,aAAO,MAAMA,UAAS,KAAK,2BAA2B,GAAG;AAAA,IAAA;AAAA,EAC3D;AAEJ,CAAC;AAED,SAAS,oBAAoB,KAAK;AAAA,EAChC,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAED,SAAS,oBAAoB,WAAW;AAAA,EACtC,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AC5FD,MAAM,iBAAiB,WAAW;AAAA,EAChC,YAAY;AAAA,EACZ,aAAa;AAAA,EACb,gBAAgB;AAAA,IACd,WAAW;AAAA,MACT,SAAS;AAAA,MACT,YAAY,CAAC,QAAQ,IAAI,MAAM,aAAa;AAAA,MAC5C,YAAY,CAAC,OAAO,UAAU;AAC5B,cAAM,QAAQ,eAAe,SAAS,MAAM;AAAA,MAAA;AAAA,IAC9C;AAAA,EACF;AAEJ,CAAC;AAGM,MAAM,cAAc,YAAY,SAAS,OAAO;AAAA,EACrD,GAAG,eAAe;AAAA,EAClB,SAAS;AAAA,EACT,mBAAmB;AAAA,EACnB,eAAe;AAAA,IACb,OAAO,CAAC,SAAS,KAAK,SAAS;AAAA,IAC/B,QAAQ,CAAC,OAAO,MAAM,SAAS;AAC7B,YAAM,QAAQ,KAAK;AACnB,YAAM,WAAY,KAAK,SAA4B,IAAI,CAAC,GAAG,OAAO;AAAA,QAChE,GAAG;AAAA,QACH;AAAA,QACA,UAAU,MAAM;AAAA,MAAA,EAChB;AACF,YAAM,SAAS,IAAI;AACnB,YAAM,KAAK,QAAQ;AACnB,YAAM,UAAA;AAAA,IAAU;AAAA,EAClB;AAAA,EAEF,YAAY;AAAA,IACV,OAAO,CAAC,SAAS,KAAK,KAAK,SAAS;AAAA,IACpC,QAAQ,CAAC,OAAO,SAAS;AACvB,YAAM,YAAY,KAAK,QAAQ,YAAY;AAC3C,UAAI,CAAC,UAAW;AAEhB,YAAM,QAA2B,CAAA;AACjC,gBAAU,QAAQ,CAAC,SAAS;AAC1B,cAAM,KAAK,KAAK,MAAM,SAAS;AAAA,MAAA,CAChC;AACD,YAAM,SAAS,SAAS,QAAW,EAAE,OAAO;AAC5C,YAAM,KAAK,KAAK,OAAO;AACvB,YAAM,UAAA;AAAA,IAAU;AAAA,EAClB;AAEJ,EAAE;AAEF,SAAS,YAAY,MAAM;AAAA,EACzB,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAED,SAAS,YAAY,KAAK;AAAA,EACxB,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAGM,MAAM,uBAAuB,YAAY,oBAAoB,OAAO;AAAA,EACzE,GAAG,eAAe;AAAA,EAClB,mBAAmB;AAAA,EACnB,SAAS;AAAA,EACT,UAAU,CAAC,EAAE,KAAK,sBAAsB;AAAA,EACxC,QAAQ;AACN,WAAO,CAAC,MAAM,EAAE,kBAAkB,KAAA,GAAQ,CAAC;AAAA,EAAA;AAAA,EAE7C,eAAe;AAAA,IACb,OAAO,CAAC,SAAS,QAAQ,KAAK,SAAS,cAAc,KAAK,QAAQ;AAAA,IAClE,QAAQ,CAAC,OAAO,MAAM,SAAS;AAC7B,YAAM,QAAQ,KAAK;AACnB,YAAM,WAAY,KAAK,SAA4B,IAAI,CAAC,GAAG,OAAO;AAAA,QAChE,GAAG;AAAA,QACH,OAAO,MAAM,CAAC;AAAA,QACd,UAAU,KAAK;AAAA,MAAA,EACf;AACF,YAAM,SAAS,IAAI;AACnB,YAAM,KAAK,QAAQ;AACnB,YAAM,UAAA;AAAA,IAAU;AAAA,EAClB;AAAA,EAEF,YAAY;AAAA,IACV,OAAO,CAAC,SAAS,KAAK,KAAK,SAAS;AAAA,IACpC,QAAQ,CAAC,OAAO,SAAS;AACvB,YAAM,SAAS,YAAY,QAAW,EAAE,UAAU,MAAM;AACxD,YAAM,KAAK,KAAK,OAAO;AACvB,YAAM,UAAA;AAAA,IAAU;AAAA,EAClB;AAEJ,EAAE;AAEF,SAAS,qBAAqB,MAAM;AAAA,EAClC,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAED,SAAS,qBAAqB,KAAK;AAAA,EACjC,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAGM,MAAM,iBAAiB,YAAY,aAAa,OAAO;AAAA,EAC5D,GAAG,eAAe;AAAA,EAClB,mBAAmB;AAAA,EACnB,SAAS;AAAA,EACT,eAAe;AAAA,IACb,OAAO,CAAC,SAAS,KAAK,SAAS;AAAA,IAC/B,QAAQ,CAAC,OAAO,MAAM,SAAS;AAC7B,YAAM,QAAQ,KAAK;AACnB,YAAM,WAAY,KAAK,SAA4B,IAAI,CAAC,GAAG,OAAO;AAAA,QAChE,GAAG;AAAA,QACH,OAAO,MAAM,CAAC;AAAA,MAAA,EACd;AACF,YAAM,SAAS,IAAI;AACnB,YAAM,KAAK,QAAQ;AACnB,YAAM,UAAA;AAAA,IAAU;AAAA,EAClB;AAAA,EAEF,YAAY;AAAA,IACV,OAAO,CAAC,SAAS,KAAK,KAAK,SAAS;AAAA,IACpC,QAAQ,CAAC,OAAO,SAAS;AAGvB,UAAI,KAAK,QAAQ,SAAS,GAAG;AAC3B;AAAA,MAAA;AAEF,YAAM,SAAS,UAAU;AACzB,YAAM,KAAK,KAAK,OAAO;AACvB,YAAM,UAAA;AAAA,IAAU;AAAA,EAClB;AAEJ,EAAE;AAEF,SAAS,eAAe,MAAM;AAAA,EAC5B,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAED,SAAS,eAAe,KAAK;AAAA,EAC3B,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAGM,MAAM,kBAAkB,YAAY,cAAc,OAAO;AAAA,EAC9D,GAAG,eAAe;AAAA,EAClB,mBAAmB;AAAA,EACnB,eAAe;AAAA,IACb,OAAO,CAAC,SAAS,KAAK,SAAS,eAAe,CAAC,KAAK;AAAA,IACpD,QAAQ,CAAC,OAAO,MAAM,SAAS;AAC7B,YAAM,QAAQ,KAAK;AACnB,YACG,SAAS,MAAM,EAAE,WAAW,MAAA,CAAO,EACnC,SAAS,MAAM,OAAO,MAAM,SAAqB,EACjD,KAAK,KAAK,QAAQ,EAClB,UAAA,EACA,UAAA;AAAA,IAAU;AAAA,EACf;AAAA,EAEF,YAAY;AAAA,IACV,OAAO,CAAC,SAAS,KAAK,KAAK,SAAS;AAAA,IACpC,QAAQ,CAAC,OAAO,SAAS;AACvB,YAAM,SAAS,WAAW,EAAE,KAAK,KAAK,OAAO,EAAE,UAAA;AAAA,IAAU;AAAA,EAC3D;AAEJ,EAAE;AAEF,SAAS,gBAAgB,MAAM;AAAA,EAC7B,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAED,SAAS,gBAAgB,KAAK;AAAA,EAC5B,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAGM,MAAM,oBAAoB,YAAY,gBAAgB,OAAO;AAAA,EAClE,GAAG,eAAe;AAAA,EAClB,mBAAmB;AAAA,EACnB,eAAe;AAAA,IACb,OAAO,CAAC,SAAS,KAAK,SAAS,eAAe,CAAC,CAAC,KAAK;AAAA,IACrD,QAAQ,CAAC,OAAO,MAAM,SAAS;AAC7B,YAAM,QAAQ,KAAK;AACnB,YAAM,SAAS,MAAM,EAAE,WAAW,OAAO;AACzC,YAAM,SAAS,MAAM,OAAO,MAAM,SAAqB;AACvD,YAAM,KAAK,KAAK,QAAQ;AACxB,YAAM,UAAA;AACN,YAAM,UAAA;AAAA,IAAU;AAAA,EAClB;AAAA,EAEF,YAAY;AAAA,IACV,OAAO,CAAC,SAAS,KAAK,KAAK,SAAS;AAAA,IACpC,QAAQ,CAAC,OAAO,SAAS;AACvB,YAAM,SAAS,WAAW;AAC1B,YAAM,KAAK,KAAK,OAAO;AACvB,YAAM,UAAA;AAAA,IAAU;AAAA,EAClB;AAEJ,EAAE;AAEF,SAAS,kBAAkB,MAAM;AAAA,EAC/B,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAED,SAAS,kBAAkB,KAAK;AAAA,EAC9B,aAAa;AAAA,EACb,OAAO;AACT,CAAC;ACpMM,SAAS,YAAY,KAAU,YAAY,GAAG,YAAY,GAAS;AACxE,QAAM,QAAQ,MAAM,SAAS,EAC1B,KAAK,CAAC,EACN,IAAI,MAAM,gBAAgB,KAAK,GAAG,EAAE,eAAgB;AAEvD,QAAM,cAAc,MAAM,SAAS,EAChC,KAAK,CAAC,EACN,IAAI,MAAM,kBAAkB,KAAK,GAAG,EAAE,eAAgB;AAEzD,QAAM,OAAO,MAAM,SAAS,EACzB,KAAK,CAAC,EACN;AAAA,IAAI,CAAC,GAAG,MACP,MAAM,IACF,qBAAqB,KAAK,GAAG,EAAE,OAAO,MAAM,WAAW,IACvD,eAAe,KAAK,GAAG,EAAE,OAAO,MAAM,KAAK;AAAA,EAAA;AAGnD,SAAO,YAAY,KAAK,GAAG,EAAE,OAAO,MAAM,IAAI;AAChD;AAGO,SAAS,UAAU,MAAmB;AAC3C,SAAO;AAAA,IACL,CAAC,SAAS,KAAK,KAAK,KAAK,cAAc;AAAA,EAAA,EACvC,IAAI;AACR;AAGO,SAAS,cACd,aACA,WACuB;AACvB,QAAM,QAAQ,UAAU,UAAU,KAAK;AACvC,MAAI,CAAC,MAAO,QAAO;AACnB,QAAM,MAAM,SAAS,IAAI,MAAM,IAAI;AACnC,MAAI,cAAc,KAAK,eAAe,IAAI,MAAO,QAAO;AAExD,SAAO,IACJ,YAAY;AAAA,IACX,MAAM;AAAA,IACN,OAAO,cAAc;AAAA,IACrB,KAAK;AAAA,IACL,QAAQ,IAAI;AAAA,EAAA,CACb,EACA,IAAI,CAAC,QAAQ;AACZ,UAAM,OAAO,MAAM,KAAK,OAAO,GAAG;AAClC,QAAI,CAAC,KAAM,QAAO;AAClB,UAAM,QAAQ,MAAM,MAAM;AAC1B,WAAO;AAAA,MACL,KAAK;AAAA,MACL,OAAO,QAAQ;AAAA,MACf;AAAA,IAAA;AAAA,EACF,CACD,EACA,OAAO,CAAC,MAAoB,KAAK,IAAI;AAC1C;AAGO,SAAS,cACd,UACA,WACuB;AACvB,QAAM,QAAQ,UAAU,UAAU,KAAK;AACvC,MAAI,CAAC,MAAO,QAAO;AACnB,QAAM,MAAM,SAAS,IAAI,MAAM,IAAI;AACnC,MAAI,WAAW,KAAK,YAAY,IAAI,OAAQ,QAAO;AAEnD,SAAO,IACJ,YAAY;AAAA,IACX,MAAM;AAAA,IACN,OAAO,IAAI;AAAA,IACX,KAAK;AAAA,IACL,QAAQ,WAAW;AAAA,EAAA,CACpB,EACA,IAAI,CAAC,QAAQ;AACZ,UAAM,OAAO,MAAM,KAAK,OAAO,GAAG;AAClC,QAAI,CAAC,KAAM,QAAO;AAClB,UAAM,QAAQ,MAAM,MAAM;AAC1B,WAAO;AAAA,MACL,KAAK;AAAA,MACL,OAAO,QAAQ;AAAA,MACf;AAAA,IAAA;AAAA,EACF,CACD,EACA,OAAO,CAAC,MAAoB,KAAK,IAAI;AAC1C;AAGO,SAAS,mBAAmB,WAAsB;AACvD,QAAM,QAAQ,UAAU,UAAU,KAAK;AACvC,MAAI,CAAC,MAAO;AAEZ,QAAM,MAAM,SAAS,IAAI,MAAM,IAAI;AACnC,QAAM,QAAQ,IAAI,YAAY;AAAA,IAC5B,MAAM;AAAA,IACN,OAAO,IAAI;AAAA,IACX,KAAK;AAAA,IACL,QAAQ,IAAI;AAAA,EAAA,CACb;AACD,SAAO,MAAM,IAAI,CAAC,YAAY;AAC5B,UAAM,OAAO,MAAM,KAAK,OAAO,OAAO;AACtC,UAAM,MAAM,UAAU,MAAM;AAC5B,WAAO,EAAE,KAAK,OAAO,MAAM,GAAG,KAAA;AAAA,EAAK,CACpC;AACH;AAGO,SAAS,YAAY,IAAiB;AAC3C,QAAM,QAAQ,mBAAmB,GAAG,SAAS;AAC7C,MAAI,SAAS,MAAM,CAAC,GAAG;AACrB,UAAM,aAAa,GAAG,IAAI,QAAQ,MAAM,CAAC,EAAE,GAAG;AAC9C,UAAM,OAAO,MAAM,MAAM,SAAS,CAAC;AACnC,QAAI,MAAM;AACR,YAAM,YAAY,GAAG,IAAI,QAAQ,KAAK,GAAG;AACzC,aAAO,QAAQ,GAAG,aAAa,IAAI,cAAc,WAAW,UAAU,CAAC,CAAC;AAAA,IAAA;AAAA,EAC1E;AAEF,SAAO;AACT;AAGO,SAAS,oBACd,KACA,IACA,EAAE,KAAK,YAAY,MAAA,GACnB,KACA;AACA,QAAM,SAAS,MAAM,GAAG,EACrB,KAAK,CAAC,EACN,OAAO,CAAC,KAAK,GAAG,MAAM;AACrB,WAAO,MAAM,MAAM,MAAM,CAAC,EAAE;AAAA,EAAA,GAC3B,UAAU;AAEf,QAAM,QAAQ,MAAM,IAAI,KAAK,EAC1B,KAAK,CAAC,EACN,IAAI,CAAC,GAAG,QAAQ;AACf,UAAM,YAAY,MAAM,OAAO,IAAI,IAAI,GAAG,CAAW;AACrD,WAAO,gBACJ,KAAK,GAAG,EACR,cAAc,EAAE,WAAW,WAAW,MAAM,WAAW;AAAA,EAAA,CAC3D;AAEH,KAAG,OAAO,QAAQ,eAAe,KAAK,GAAG,EAAE,OAAO,MAAM,KAAK,CAAC;AAC9D,SAAO;AACT;AAGO,SAAS,WAAW,MAAqB;AAC9C,SAAO,CAAC,OAAe,QAAiB,CAAC,OAAoB;AAC3D,UAAM,OAAO,GAAG,UAAU;AAC1B,UAAM,OAAO,GAAG,IAAI,QAAQ,GAAG;AAC/B,UAAM,QAAQ;AAAA,MACZ,CAAC,SAAS,KAAK,KAAK,SAAS;AAAA,IAAA,EAC7B,IAAI;AACN,UAAM,QAAQ,QACV;AAAA,MACE,MAAM,MAAM;AAAA,MACZ,MAAM,MAAM;AAAA,IAAA,IAEd;AAEJ,UAAM,iBAAiB,SAAS;AAChC,QAAI,OAAO;AACT,YAAM,MAAM,SAAS,IAAI,MAAM,IAAI;AAGnC,UAAI,SAAS,KAAK,SAAS,iBAAiB,IAAI,SAAS,IAAI,QAAQ;AACnE,cAAM,WAAW,IAAI;AAAA,UACnB,iBAAiB,QAAQ,IAAI,SAAS;AAAA,UACtC,iBAAiB,IAAI,QAAQ,IAAI;AAAA,UACjC,MAAM;AAAA,QAAA;AAER,cAAM,YAAY,GAAG,IAAI,QAAQ,MAAM,OAAO,QAAQ;AAEtD,cAAM,sBAAsB,iBACxB,cAAc,eACd,cAAc;AAElB,cAAM,YAAY,IAAI;AAAA,UACpB,iBAAiB,QAAQ;AAAA,UACzB,iBAAiB,IAAI;AAAA,UACrB,MAAM;AAAA,QAAA;AAER,cAAM,aAAa,GAAG,IAAI,QAAQ,MAAM,OAAO,SAAS;AACxD,eAAO;AAAA,UACL,GAAG;AAAA,YACD,oBAAoB,WAAW,UAAU;AAAA,UAAA;AAAA,QAC3C;AAAA,MACF;AAAA,IACF;AAEF,WAAO;AAAA,EAAA;AAEX;AAIO,MAAM,YAAY,WAAW,KAAK;AAIlC,MAAM,YAAY,WAAW,KAAK;AAEzC,SAAS,UAAa,OAAc;AAClC,SAAO,MAAM,CAAC,EAAG,IAAI,CAAC,GAAG,MAAM;AAC7B,WAAO,MAAM,IAAI,CAAC,WAAW,OAAO,CAAC,CAAC;AAAA,EAAA,CACvC;AACH;AAEA,SAAS,8BACP,WACA,cACA;AACA,QAAM,SAAS,CAAA;AACf,QAAM,MAAM,SAAS,IAAI,SAAS;AAClC,WAAS,WAAW,GAAG,WAAW,IAAI,QAAQ,YAAY;AACxD,UAAM,MAAM,UAAU,MAAM,QAAQ;AACpC,UAAM,WAAW,CAAA;AAEjB,aAAS,WAAW,GAAG,WAAW,IAAI,OAAO,YAAY;AACvD,UAAI,CAAC,aAAa,QAAQ,EAAG,QAAQ,EAAG;AAExC,YAAM,UAAU,IAAI,IAAI,WAAW,IAAI,QAAQ,QAAQ;AAEvD,YAAM,OAAO,aAAa,QAAQ,EAAG,QAAQ;AAC7C,YAAM,UAAU,UAAU,OAAO,OAAO;AACxC,YAAM,UAAU,QAAQ,KAAK;AAAA,QAC3B,OAAO,OAAO,IAAI,KAAK,KAAK;AAAA,QAC5B,KAAK;AAAA,QACL,KAAK;AAAA,MAAA;AAEP,eAAS,KAAK,OAAO;AAAA,IAAA;AAGvB,WAAO,KAAK,IAAI,KAAK,cAAc,IAAI,OAAO,UAAU,IAAI,KAAK,CAAC;AAAA,EAAA;AAGpE,QAAM,WAAW,UAAU,KAAK;AAAA,IAC9B,UAAU;AAAA,IACV;AAAA,IACA,UAAU;AAAA,EAAA;AAGZ,SAAO;AACT;AAEA,SAAS,8BAA8B,WAAiB;AACtD,QAAM,MAAM,SAAS,IAAI,SAAS;AAClC,QAAM,OAA0B,CAAA;AAChC,WAAS,WAAW,GAAG,WAAW,IAAI,QAAQ,YAAY;AACxD,UAAM,WAA4B,CAAA;AAClC,UAAM,OAAgC,CAAA;AAEtC,aAAS,WAAW,GAAG,WAAW,IAAI,OAAO,YAAY;AACvD,YAAM,UAAU,IAAI,IAAI,WAAW,IAAI,QAAQ,QAAQ;AACvD,YAAM,OAAO,UAAU,OAAO,OAAO;AACrC,YAAM,OAAO,IAAI,SAAS,OAAO;AACjC,UAAI,KAAK,OAAO,KAAK,KAAK,QAAQ,UAAU;AAC1C,iBAAS,KAAK,IAAI;AAClB;AAAA,MAAA;AAEF,WAAK,OAAO,IAAI;AAEhB,eAAS,KAAK,IAAI;AAAA,IAAA;AAGpB,SAAK,KAAK,QAAQ;AAAA,EAAA;AAGpB,SAAO;AACT;AAEA,SAAS,qBACP,MACA,eACA,eACA,mBACA;AACA,QAAM,YAAY,cAAc,CAAC,IAAK,cAAc,CAAC,IAAK,KAAK;AAE/D,QAAM,gBAAgB,KAAK,OAAO,cAAc,CAAC,GAAI,cAAc,MAAM;AACzE,QAAM,iBAAiB,cAAc,SAAS,MAAM,IAAI,IAAI;AAC5D,MAAI;AAMG;AACL,aACE,cAAc,KACV,cAAc,CAAC,IACf,cAAc,cAAc,SAAS,CAAC,IAAK;AAAA,EAAA;AAGnD,OAAK,OAAO,QAAQ,GAAG,GAAG,aAAa;AACvC,SAAO;AACT;AAEA,SAAS,gBACP,OACA,eACA,eACA,WACA;AACA,MAAI,OAAO,UAAU,8BAA8B,MAAM,IAAI,CAAC;AAE9D,SAAO,qBAAqB,MAAM,eAAe,aAAwB;AACzE,SAAO,UAAU,IAAI;AAErB,SAAO,8BAA8B,MAAM,MAAM,IAAI;AACvD;AAEA,SAAS,aACP,OACA,eACA,eACA,WACA;AACA,MAAI,OAAO,8BAA8B,MAAM,IAAI;AAEnD,SAAO,qBAAqB,MAAM,eAAe,aAAwB;AAEzE,SAAO,8BAA8B,MAAM,MAAM,IAAI;AACvD;AAEA,SAAS,0BAA0B,aAAqB,IAAiB;AACvE,MAAI,aAAa;AACjB,MAAI,WAAW;AAGf,WAAS,IAAI,aAAa,KAAK,GAAG,KAAK;AACrC,UAAM,QAAQ,cAAc,GAAG,GAAG,SAAS;AAC3C,QAAI,OAAO;AACT,YAAM,QAAQ,CAAC,SAAS;AACtB,cAAM,gBAAgB,KAAK,KAAK,MAAM,UAAU,IAAI;AACpD,YAAI,iBAAiB,WAAY,cAAa;AAE9C,YAAI,gBAAgB,SAAU,YAAW;AAAA,MAAA,CAC1C;AAAA,IAAA;AAAA,EACH;AAGF,WAAS,IAAI,aAAa,KAAK,UAAU,KAAK;AAC5C,UAAM,QAAQ,cAAc,GAAG,GAAG,SAAS;AAC3C,QAAI,OAAO;AACT,YAAM,QAAQ,CAAC,SAAS;AACtB,cAAM,gBAAgB,KAAK,KAAK,MAAM,UAAU,IAAI;AACpD,YAAI,KAAK,KAAK,MAAM,UAAU,KAAK,gBAAgB;AACjD,qBAAW;AAAA,MAAA,CACd;AAAA,IAAA;AAAA,EACH;AAIF,QAAM,UAAU,CAAA;AAChB,WAAS,IAAI,YAAY,KAAK,UAAU,KAAK;AAC3C,UAAM,aAAa,cAAc,GAAG,GAAG,SAAS;AAChD,QAAI,cAAc,WAAW,OAAQ,SAAQ,KAAK,CAAC;AAAA,EAAA;AAErD,eAAa,QAAQ,CAAC;AACtB,aAAW,QAAQ,QAAQ,SAAS,CAAC;AAErC,QAAM,2BAA2B,cAAc,YAAY,GAAG,SAAS;AACvE,QAAM,gBAAgB,cAAc,GAAG,GAAG,SAAS;AACnD,QAAM,UAAU,GAAG,IAAI;AAAA,IACrB,yBAAyB,yBAAyB,SAAS,CAAC,EAAG;AAAA,EAAA;AAGjE,MAAI;AACJ,WAAS,IAAI,UAAU,KAAK,YAAY,KAAK;AAC3C,UAAM,cAAc,cAAc,GAAG,GAAG,SAAS;AACjD,QAAI,eAAe,YAAY,QAAQ;AACrC,eAAS,IAAI,cAAc,SAAS,GAAG,KAAK,GAAG,KAAK;AAClD,YAAI,cAAc,CAAC,EAAG,QAAQ,YAAY,CAAC,EAAG,KAAK;AACjD,qBAAW,YAAY,CAAC;AACxB;AAAA,QAAA;AAAA,MACF;AAEF,UAAI,SAAU;AAAA,IAAA;AAAA,EAChB;AAGF,QAAM,QAAQ,GAAG,IAAI,QAAQ,SAAU,GAAG;AAC1C,SAAO,EAAE,SAAS,OAAO,QAAA;AAC3B;AAEA,SAAS,uBAAuB,UAAkB,IAAiB;AACjE,MAAI,aAAa;AACjB,MAAI,WAAW;AAEf,WAAS,IAAI,UAAU,KAAK,GAAG,KAAK;AAClC,UAAM,QAAQ,cAAc,GAAG,GAAG,SAAS;AAC3C,UAAO,QAAQ,CAAC,SAAS;AACvB,YAAM,gBAAgB,KAAK,KAAK,MAAM,UAAU,IAAI;AACpD,UAAI,iBAAiB,WAAY,cAAa;AAE9C,UAAI,gBAAgB,SAAU,YAAW;AAAA,IAAA,CAC1C;AAAA,EAAA;AAGH,WAAS,IAAI,UAAU,KAAK,UAAU,KAAK;AACzC,UAAM,QAAQ,cAAc,GAAG,GAAG,SAAS;AAC3C,UAAO,QAAQ,CAAC,SAAS;AACvB,YAAM,gBAAgB,KAAK,KAAK,MAAM,UAAU,IAAI;AACpD,UAAI,KAAK,KAAK,MAAM,UAAU,KAAK,gBAAgB;AACjD,mBAAW;AAAA,IAAA,CACd;AAAA,EAAA;AAIH,QAAM,UAAU,CAAA;AAChB,WAAS,IAAI,YAAY,KAAK,UAAU,KAAK;AAC3C,UAAM,aAAa,cAAc,GAAG,GAAG,SAAS;AAChD,QAAI,cAAc,WAAW,OAAQ,SAAQ,KAAK,CAAC;AAAA,EAAA;AAErD,eAAa,QAAQ,CAAC;AACtB,aAAW,QAAQ,QAAQ,SAAS,CAAC;AAErC,QAAM,wBAAwB,cAAc,YAAY,GAAG,SAAS;AACpE,QAAM,mBAAmB,cAAc,GAAG,GAAG,SAAS;AACtD,QAAM,UAAU,GAAG,IAAI;AAAA,IACrB,sBAAsB,sBAAsB,SAAS,CAAC,EAAG;AAAA,EAAA;AAG3D,MAAI;AACJ,WAAS,IAAI,UAAU,KAAK,YAAY,KAAK;AAC3C,UAAM,WAAW,cAAc,GAAG,GAAG,SAAS;AAC9C,QAAI,YAAY,SAAS,QAAQ;AAC/B,eAAS,IAAI,iBAAiB,SAAS,GAAG,KAAK,GAAG,KAAK;AACrD,YAAI,iBAAiB,CAAC,EAAG,QAAQ,SAAS,CAAC,EAAG,KAAK;AACjD,qBAAW,SAAS,CAAC;AACrB;AAAA,QAAA;AAAA,MACF;AAEF,UAAI,SAAU;AAAA,IAAA;AAAA,EAChB;AAGF,QAAM,QAAQ,GAAG,IAAI,QAAQ,SAAU,GAAG;AAC1C,SAAO,EAAE,SAAS,OAAO,QAAA;AAC3B;AAaO,SAAS,QAAQ,eAA8B;AACpD,QAAM,EAAE,IAAI,QAAQ,QAAQ,SAAS,MAAM,QAAQ;AACnD,QAAM,OAAO,OAAO,OAAO,GAAG,IAAI,QAAQ,GAAG,IAAI,GAAG,UAAU;AAC9D,QAAM,QAAQ,UAAU,IAAI;AAC5B,MAAI,CAAC,MAAO,QAAO;AAEnB,QAAM,EAAE,SAAS,oBAAA,IAAwB,0BAA0B,QAAQ,EAAE;AAC7E,QAAM,EAAE,SAAS,oBAAA,IAAwB,0BAA0B,QAAQ,EAAE;AAE7E,MAAI,oBAAoB,SAAS,MAAM,EAAG,QAAO;AAEjD,QAAM,WAAW;AAAA,IACf;AAAA,IACA;AAAA,IACA;AAAA,EAEF;AAEA,QAAM,MAAM,QAAQ,EAAE,EAAE;AAAA,IACtB,MAAM;AAAA,IACN,MAAM,MAAM,MAAM,KAAK;AAAA,IACvB;AAAA,EAAA;AAGF,MAAI,CAAC,OAAQ,QAAO;AAEpB,QAAM,MAAM,SAAS,IAAI,QAAQ;AACjC,QAAM,QAAQ,MAAM;AACpB,QAAM,QAAQ;AACd,QAAM,WAAW,IAAI,WAAW,IAAI,SAAS,GAAG,OAAO,QAAQ;AAC/D,QAAM,YAAY,IAAI,IAAI,QAAQ,QAAQ,QAAQ;AAElD,QAAM,sBAAsB,cAAc;AAE1C,QAAM,YAAY,IAAI,WAAW,GAAG,OAAO,QAAQ;AACnD,QAAM,aAAa,IAAI,IAAI,QAAQ,QAAQ,SAAS;AAEpD,SAAO,IAAI,aAAa,oBAAoB,WAAW,UAAU,CAAC;AACpE;AAaO,SAAS,QAAQ,eAA8B;AACpD,QAAM,EAAE,IAAI,QAAQ,QAAQ,SAAS,MAAM,QAAQ;AACnD,QAAM,OAAO,OAAO,OAAO,GAAG,IAAI,QAAQ,GAAG,IAAI,GAAG,UAAU;AAC9D,QAAM,QAAQ,UAAU,IAAI;AAC5B,MAAI,CAAC,MAAO,QAAO;AAEnB,QAAM,EAAE,SAAS,iBAAA,IAAqB,uBAAuB,QAAQ,EAAE;AACvE,QAAM,EAAE,SAAS,iBAAA,IAAqB,uBAAuB,QAAQ,EAAE;AAEvE,MAAI,iBAAiB,SAAS,MAAM,EAAG,QAAO;AAE9C,QAAM,WAAW,aAAa,OAAO,kBAAkB,gBAAmB;AAE1E,QAAM,MAAM,QAAQ,EAAE,EAAE;AAAA,IACtB,MAAM;AAAA,IACN,MAAM,MAAM,MAAM,KAAK;AAAA,IACvB;AAAA,EAAA;AAGF,MAAI,CAAC,OAAQ,QAAO;AAEpB,QAAM,MAAM,SAAS,IAAI,QAAQ;AACjC,QAAM,QAAQ,MAAM;AACpB,QAAM,QAAQ;AACd,QAAM,WAAW,IAAI,WAAW,OAAO,IAAI,QAAQ,GAAG,QAAQ;AAC9D,QAAM,YAAY,IAAI,IAAI,QAAQ,QAAQ,QAAQ;AAElD,QAAM,sBAAsB,cAAc;AAE1C,QAAM,YAAY,IAAI,WAAW,OAAO,GAAG,QAAQ;AACnD,QAAM,aAAa,IAAI,IAAI,QAAQ,QAAQ,SAAS;AAEpD,SAAO,IAAI,aAAa,oBAAoB,WAAW,UAAU,CAAC;AACpE;ACrhBO,MAAM,2BAA2B;AAAA,EACtC;AAAA,EACA,MAAM,MAAM,aAAa,EAAE;AAC7B;AAEA,SAAS,0BAA0B;AAAA,EACjC,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAGM,MAAM,2BAA2B;AAAA,EACtC;AAAA,EACA,MAAM,MAAM,aAAa,CAAC;AAC5B;AAEA,SAAS,0BAA0B;AAAA,EACjC,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAGM,MAAM,YAAY;AAAA,EACvB;AAAA,EACA,CAAC,QAAQ,MAAM,CAAC,OAAO,aAAa;AAClC,QAAI,CAAC,UAAU,KAAK,EAAG,QAAO;AAE9B,UAAM,EAAE,UAAU,MAAM;AACxB,UAAM,QAAQ,mBAAmB,OAAO,YAAY,KAAK,GAAG,CAAC;AAC7D,QAAI,CAAC,MAAO,QAAO;AAEnB,UAAM,EAAE,OAAO;AAEf,UAAM,KAAK,MAAM,GAAG;AAAA,MAClB;AAAA,MACA;AAAA,MACA,gBAAgB,KAAK,GAAG,EAAE,cAAA;AAAA,IAAc;AAG1C,OAAG,aAAa,UAAU,KAAK,GAAG,IAAI,QAAQ,EAAE,GAAG,CAAC,CAAC,EAAE,eAAA;AACvD,eAAW,EAAE;AACb,WAAO;AAAA,EAAA;AAEX;AAEA,SAAS,WAAW;AAAA,EAClB,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAKM,MAAM,qBAAqB;AAAA,EAChC;AAAA,EACA,CAAC,QACC,CAAC,EAAE,KAAK,IAAA,IAAwC,OAChD,CAAC,OAAO,aAAa;AACnB,UAAM,EAAE,WAAW,GAAA,IAAO;AAC1B,UAAM,EAAE,SAAS;AACjB,UAAM,QAAQ,YAAY,KAAK,KAAK,GAAG;AACvC,UAAM,MAAM,GAAG,qBAAqB,KAAK;AACzC,UAAM,MAAM,UAAU,SAAS,IAAI,IAAI,QAAQ,IAAI,GAAG,GAAG,IAAI;AAC7D,QAAI,IAAK,KAAI,aAAa,GAAG;AAE7B,eAAW,GAAG;AAEd,WAAO;AAAA,EAAA;AAEb;AAEA,SAAS,oBAAoB;AAAA,EAC3B,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAIM,MAAM,iBAAiB;AAAA,EAC5B;AAAA,EACA,MACE,CAAC,EAAE,MAAM,IAAI,IAAA,IAAsD,OACnE,CAAC,OAAO,aAAa;AACnB,UAAM,EAAE,OAAO;AACf,UAAM,SAAS;AAAA,MACb,QAAQ,EAAE,IAAI,QAAQ,QAAQ,GAAG,QAAQ,MAAM,GAAG,KAAK,QAAQ,KAAA,CAAM;AAAA,IAAA;AAGvE,WAAO,QAAQ,MAAM;AAAA,EAAA;AAE3B;AAEA,SAAS,gBAAgB;AAAA,EACvB,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAIM,MAAM,iBAAiB;AAAA,EAC5B;AAAA,EACA,MACE,CAAC,EAAE,MAAM,IAAI,IAAA,IAAsD,OACnE,CAAC,OAAO,aAAa;AACnB,UAAM,EAAE,OAAO;AACf,UAAM,SAAS;AAAA,MACb,QAAQ,EAAE,IAAI,QAAQ,QAAQ,GAAG,QAAQ,MAAM,GAAG,KAAK,QAAQ,KAAA,CAAM;AAAA,IAAA;AAGvE,WAAO,QAAQ,MAAM;AAAA,EAAA;AAE3B;AAEA,SAAS,gBAAgB;AAAA,EACvB,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAGM,MAAM,mBAAmB;AAAA,EAI9B;AAAA,EACA,MACE,CAAC,UAA2C,EAAE,OAAO,EAAA,MACrD,CAAC,OAAO,aAAa;AACnB,UAAM,EAAE,OAAO;AACf,UAAM,SAAS,WAAW,UAAU,QAAQ,OAAO,QAAQ,GAAG,EAAE,EAAE,CAAC;AAEnE,WAAO,QAAQ,MAAM;AAAA,EAAA;AAE3B;AAEA,SAAS,kBAAkB;AAAA,EACzB,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAGM,MAAM,mBAAmB;AAAA,EAI9B;AAAA,EACA,MACE,CAAC,UAA2C,EAAE,OAAO,EAAA,MACrD,CAAC,OAAO,aAAa;AACnB,UAAM,EAAE,OAAO;AACf,UAAM,SAAS,WAAW,UAAU,QAAQ,OAAO,QAAQ,GAAG,EAAE,EAAE,CAAC;AAEnE,WAAO,QAAQ,MAAM;AAAA,EAAA;AAE3B;AAEA,SAAS,kBAAkB;AAAA,EACzB,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAGM,MAAM,qBAAqB;AAAA,EAChC;AAAA,EACA,MAAM,MAAM,CAAC,OAAO,aAAa;AAC/B,UAAM,EAAE,OAAO;AACf,UAAM,SAAS,WAAW,YAAY,EAAE,CAAC;AAEzC,WAAO,QAAQ,MAAM;AAAA,EAAA;AAEzB;AAEA,SAAS,oBAAoB;AAAA,EAC3B,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAKM,MAAM,6BAA6B;AAAA,EACxC;AAAA,EACA,MAAM,MAAM,CAAC,OAAO,aAAa;AAC/B,UAAM,EAAE,cAAc;AACtB,QAAI,EAAE,qBAAqB,eAAgB,QAAO;AAElD,UAAM,QAAQ,UAAU,eAAA;AACxB,UAAM,QAAQ,UAAU,eAAA;AAExB,QAAI,SAAS,MAAO,QAAO,YAAY,OAAO,QAAQ;AAEtD,QAAI,MAAO,QAAO,aAAa,OAAO,QAAQ;AAAA,QACzC,QAAO,UAAU,OAAO,QAAQ;AAAA,EAAA;AAEzC;AAEA,SAAS,4BAA4B;AAAA,EACnC,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAGM,MAAM,sBAAsB;AAAA,EACjC;AAAA,EACA,MAAM,MAAM;AACd;AAEA,SAAS,qBAAqB;AAAA,EAC5B,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAGM,MAAM,qBAAqB;AAAA,EAChC;AAAA,EACA,MAAM,MAAM;AACd;AAEA,SAAS,oBAAoB;AAAA,EAC3B,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAGM,MAAM,sBAAsB;AAAA,EACjC;AAAA,EACA,CAAC,QAAQ,MAAM,CAAC,OAAO,aAAa;AAClC,QAAI,CAAC,UAAU,KAAK,EAAG,QAAO;AAC9B,QAAI,UAAU;AACZ,YAAM,OAAO,aAAa,KAAK;AAC/B,eAAS,oBAAoB,KAAK,MAAM,IAAI,MAAM,KAAK,GAAG,CAAC;AAAA,IAAA;AAE7D,WAAO;AAAA,EAAA;AAEX;AAEA,SAAS,qBAAqB;AAAA,EAC5B,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAGM,MAAM,qBAAqB;AAAA,EAChC;AAAA,EACA,CAAC,QAAQ,MAAM,CAAC,OAAO,aAAa;AAClC,QAAI,CAAC,UAAU,KAAK,EAAG,QAAO;AAC9B,QAAI,UAAU;AACZ,YAAM,OAAO,aAAa,KAAK;AAC/B,eAAS,oBAAoB,KAAK,MAAM,IAAI,MAAM,KAAK,MAAM,CAAC;AAAA,IAAA;AAEhE,WAAO;AAAA,EAAA;AAEX;AAEA,SAAS,oBAAoB;AAAA,EAC3B,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAKM,MAAM,kBAAkB;AAAA,EAI7B;AAAA,EACA,MACE,CAAC,YAAY,WACX,YAAY,aAAa,SAAS;AACxC;AAEA,SAAS,iBAAiB;AAAA,EACxB,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AChSM,MAAM,uBAAuB;AAAA,EAClC,CAAC,QACC,IAAI;AAAA,IACF;AAAA,IACA,CAAC,OAAO,OAAO,OAAO,QAAQ;AAC5B,YAAM,SAAS,MAAM,IAAI,QAAQ,KAAK;AACtC,UACE,CAAC,OACE,KAAK,EAAE,EACP;AAAA,QACC,OAAO,MAAM,EAAE;AAAA,QACf,OAAO,WAAW,EAAE;AAAA,QACpB,YAAY,KAAK,GAAG;AAAA,MAAA;AAGxB,eAAO;AAET,YAAM,MAAM,KAAK,IAAI,OAAO,MAAM,QAAQ,OAAO,CAAC,GAAG,CAAC;AAEtD,YAAM,YAAY,YAAY,KAAK,KAAK,OAAO,MAAM,QAAQ,GAAG,CAAC;AACjE,YAAM,KAAK,MAAM,GAAG,iBAAiB,OAAO,KAAK,SAAS;AAC1D,aAAO,GACJ,aAAa,cAAc,OAAO,GAAG,KAAK,QAAQ,CAAC,CAAC,EACpD,eAAA;AAAA,IAAe;AAAA,EACpB;AAEN;AAEA,SAAS,sBAAsB;AAAA,EAC7B,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAMM,MAAM,cAAc,WAAW,eAAe;AAAA,EACnD,UAAU;AAAA,IACR,UAAU;AAAA,IACV,WAAW,CAAC,SAAS,KAAK;AAAA,IAC1B,SAAS,CAAC,QAAQ;AAChB,YAAMA,YAAW,IAAI,IAAI,WAAW;AAEpC,aAAO,MAAMA,UAAS,KAAK,yBAAyB,GAAG;AAAA,IAAA;AAAA,EACzD;AAAA,EAEF,UAAU;AAAA,IACR,WAAW,CAAC,SAAS,WAAW;AAAA,IAChC,SAAS,CAAC,QAAQ;AAChB,YAAMA,YAAW,IAAI,IAAI,WAAW;AAEpC,aAAO,MAAMA,UAAS,KAAK,yBAAyB,GAAG;AAAA,IAAA;AAAA,EACzD;AAAA,EAEF,WAAW;AAAA,IACT,WAAW,CAAC,aAAa,OAAO;AAAA,IAChC,SAAS,CAAC,QAAQ;AAChB,YAAMA,YAAW,IAAI,IAAI,WAAW;AAEpC,aAAO,MAAMA,UAAS,KAAK,UAAU,GAAG;AAAA,IAAA;AAAA,EAC1C;AAEJ,CAAC;AAED,SAAS,YAAY,KAAK;AAAA,EACxB,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAED,SAAS,YAAY,WAAW;AAAA,EAC9B,aAAa;AAAA,EACb,OAAO;AACT,CAAC;ACpFD,MAAMC,OAAK;AACX,MAAM,aAAa;AAGZ,MAAM,2BAA2B;AAAA,EACtC;AAAA,EACA,OAAO;AAAA,IACL,OAAO;AAAA,IACP,SAAS;AAAA,IACT,UAAU;AAAA,IACV,OAAO;AAAA,MACL,OAAO;AAAA,QACL,SAAS;AAAA,QACT,UAAU;AAAA,MAAA;AAAA,IACZ;AAAA,IAEF,UAAU;AAAA,MACR;AAAA,QACE,KAAK,iBAAiBA,IAAE;AAAA,QACxB,UAAU,CAAC,QAAQ;AACjB,cAAI,EAAE,eAAe,aAAc,OAAM,mBAAmB,GAAG;AAE/D,iBAAO;AAAA,YACL,OAAO,IAAI,QAAQ;AAAA,UAAA;AAAA,QACrB;AAAA,QAEF,gBAAgB;AAAA,MAAA;AAAA,IAClB;AAAA,IAEF,OAAO,CAAC,SAAS;AACf,YAAM,QAAQ,KAAK,MAAM;AAEzB,aAAO;AAAA,QACL;AAAA,QACA;AAAA;AAAA,UAEE,cAAc;AAAA,UACd,aAAaA;AAAAA,QAAA;AAAA,QAEf,CAAC,MAAM,KAAK;AAAA,QACZ,CAAC,MAAM,CAAC;AAAA,MAAA;AAAA,IACV;AAAA,IAEF,eAAe;AAAA,MACb,OAAO,CAAC,EAAE,KAAA,MAAW,SAAS;AAAA,MAC9B,QAAQ,CAAC,OAAO,MAAM,SAAS;AAC7B,cACG,SAAS,MAAM;AAAA,UACd,OAAO,KAAK;AAAA,QAAA,CACb,EACA,KAAK,KAAK,QAAQ,EAClB,UAAA;AAAA,MAAU;AAAA,IACf;AAAA,IAEF,YAAY;AAAA,MACV,OAAO,CAAC,SAAS,KAAK,KAAK,SAASA;AAAAA,MACpC,QAAQ,CAAC,OAAO,SAAS;AACvB,cACG,SAAS,YAAY,QAAW;AAAA,UAC/B,OAAO,KAAK,MAAM;AAAA,UAClB,YAAY,KAAK,MAAM;AAAA,QAAA,CACxB,EACA,KAAK,KAAK,OAAO,EACjB,UAAA;AAAA,MAAU;AAAA,IACf;AAAA,EACF;AAEJ;AAEA,SAAS,yBAAyB,KAAK;AAAA,EACrC,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAED,SAAS,yBAAyB,MAAM;AAAA,EACtC,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AC7ED,MAAM,KAAK;AAGJ,MAAM,0BAA0B;AAAA,EACrC;AAAA,EACA,OAAO;AAAA,IACL,OAAO;AAAA,IACP,QAAQ;AAAA,IACR,MAAM;AAAA,IACN,OAAO;AAAA,MACL,OAAO;AAAA,QACL,SAAS;AAAA,QACT,UAAU;AAAA,MAAA;AAAA,IACZ;AAAA,IAEF,UAAU;AAAA,MACR;AAAA,QACE,KAAK,kBAAkB,EAAE;AAAA,QACzB,UAAU,CAAC,QAAQ;AACjB,cAAI,EAAE,eAAe,aAAc,OAAM,mBAAmB,GAAG;AAE/D,iBAAO;AAAA,YACL,OAAO,IAAI,QAAQ;AAAA,UAAA;AAAA,QACrB;AAAA,MACF;AAAA,IACF;AAAA,IAEF,OAAO,CAAC,SAAS;AACf,YAAM,QAAQ,KAAK,MAAM;AACzB,aAAO;AAAA,QACL;AAAA,QACA;AAAA;AAAA,UAEE,cAAc;AAAA,UACd,aAAa;AAAA,QAAA;AAAA,QAEf;AAAA,MAAA;AAAA,IACF;AAAA,IAEF,eAAe;AAAA,MACb,OAAO,CAAC,EAAE,KAAA,MAAW,SAAS;AAAA,MAC9B,QAAQ,CAAC,OAAO,MAAM,SAAS;AAC7B,cAAM,QAAQ,MAAM;AAAA,UAClB,OAAO,KAAK;AAAA,QAAA,CACb;AAAA,MAAA;AAAA,IACH;AAAA,IAEF,YAAY;AAAA,MACV,OAAO,CAAC,SAAS,KAAK,KAAK,SAAS;AAAA,MACpC,QAAQ,CAAC,OAAO,SAAS;AACvB,cAAM,QAAQ,qBAAqB,QAAW,QAAW;AAAA,UACvD,OAAO,KAAK,MAAM;AAAA,UAClB,YAAY,KAAK,MAAM;AAAA,QAAA,CACxB;AAAA,MAAA;AAAA,IACH;AAAA,EACF;AAEJ;AAEA,SAAS,wBAAwB,KAAK;AAAA,EACpC,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAED,SAAS,wBAAwB,MAAM;AAAA,EACrC,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AChEM,MAAM,8BAA8B,eAAe;AAAA,EACxD,CAAC,SAAS;AACR,WAAO,CAAC,QAAQ;AACd,YAAM,aAAa,KAAK,GAAG;AAC3B,aAAO;AAAA,QACL,GAAG;AAAA,QACH,OAAO;AAAA,UACL,GAAG,WAAW;AAAA,UACd,SAAS;AAAA,YACP,SAAS;AAAA,YACT,UAAU;AAAA,UAAA;AAAA,QACZ;AAAA,QAEF,UAAU;AAAA,UACR;AAAA,YACE,KAAK;AAAA,YACL,UAAU,CAAC,QAAQ;AACjB,kBAAI,EAAE,eAAe,aAAc,OAAM,mBAAmB,GAAG;AAE/D,qBAAO;AAAA,gBACL,OAAO,IAAI,QAAQ;AAAA,gBACnB,UAAU,IAAI,QAAQ;AAAA,gBACtB,QAAQ,IAAI,QAAQ;AAAA,gBACpB,SAAS,IAAI,QAAQ,UACjB,IAAI,QAAQ,YAAY,SACxB;AAAA,cAAA;AAAA,YACN;AAAA,UACF;AAAA,UAEF,GAAI,YAAY,YAAY,CAAA;AAAA,QAAC;AAAA,QAE/B,OAAO,CAAC,SAAS;AACf,cAAI,WAAW,SAAS,KAAK,MAAM,WAAW;AAC5C,mBAAO,WAAW,MAAM,IAAI;AAE9B,iBAAO;AAAA,YACL;AAAA,YACA;AAAA,cACE,kBAAkB;AAAA,cAClB,cAAc,KAAK,MAAM;AAAA,cACzB,kBAAkB,KAAK,MAAM;AAAA,cAC7B,eAAe,KAAK,MAAM;AAAA,cAC1B,gBAAgB,KAAK,MAAM;AAAA,YAAA;AAAA,YAE7B;AAAA,UAAA;AAAA,QACF;AAAA,QAEF,eAAe;AAAA,UACb,OAAO,CAAC,EAAE,KAAA,MAAW,SAAS;AAAA,UAC9B,QAAQ,CAAC,OAAO,MAAM,SAAS;AAC7B,gBAAI,KAAK,WAAW,MAAM;AACxB,yBAAW,cAAc,OAAO,OAAO,MAAM,IAAI;AACjD;AAAA,YAAA;AAGF,kBAAM,QAAQ,KAAK,SAAS,OAAO,GAAG,KAAK,KAAK,MAAM;AACtD,kBAAM,UAAU,KAAK,WAAW,OAAO,QAAQ,KAAK,OAAO,IAAI;AAC/D,kBAAM,WAAW,KAAK,SAAS,OAAO,YAAY;AAClD,kBAAM,SAAS,KAAK,UAAU,OAAO,GAAG,KAAK,MAAM,KAAK;AAExD,kBAAM,SAAS,MAAM,EAAE,OAAO,UAAU,QAAQ,SAAS;AACzD,kBAAM,KAAK,KAAK,QAAQ;AACxB,kBAAM,UAAA;AAAA,UAAU;AAAA,QAClB;AAAA,QAEF,YAAY;AAAA,UACV,OAAO,CAAC,SAAS,KAAK,KAAK,SAAS;AAAA,UACpC,QAAQ,CAAC,OAAO,SAAS;AACvB,gBAAI,KAAK,MAAM,WAAW,MAAM;AAC9B,yBAAW,WAAW,OAAO,OAAO,IAAI;AACxC;AAAA,YAAA;AAGF,kBAAM,QAAQ,KAAK,MAAM;AACzB,kBAAM,WAAW,KAAK,MAAM;AAC5B,kBAAM,SAAS,KAAK,MAAM,WAAW;AACrC,kBAAM,UAAU,KAAK,MAAM;AAE3B,kBAAM,SAAS,YAAY,QAAW;AAAA,cACpC;AAAA,cACA;AAAA,cACA;AAAA,cACA;AAAA,YAAA,CACD;AACD,kBAAM,KAAK,KAAK,OAAO;AACvB,kBAAM,UAAA;AAAA,UAAU;AAAA,QAClB;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAEJ;AAEA,SAAS,4BAA4B,MAAM;AAAA,EACzC,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAED,SAAS,4BAA4B,KAAK;AAAA,EACxC,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAIM,MAAM,0BAA0B,WAAW,MAAM;AACtD,SAAO,IAAI;AAAA,IACT;AAAA,IACA,CAAC,OAAO,OAAO,OAAO,QAAQ;AAC5B,YAAM,MAAM,MAAM,IAAI,QAAQ,KAAK;AACnC,UAAI,QAAQ;AACZ,UAAI,OAAO,IAAI,KAAK,KAAK;AACzB,aAAO,QAAQ,KAAK,KAAK,SAAS,aAAa;AAC7C;AACA,eAAO,IAAI,KAAK,KAAK;AAAA,MAAA;AAGvB,UAAI,CAAC,QAAQ,KAAK,MAAM,WAAW,KAAM,QAAO;AAEhD,YAAM,UAAU,QAAQ,MAAM,QAAQ,YAAY,GAAG;AAErD,YAAM,SAAS,IAAI,OAAO,KAAK;AAC/B,YAAM,KAAK,MAAM;AAEjB,SAAG,YAAY,OAAO,GAAG,EAAE,cAAc,QAAQ,QAAW;AAAA,QAC1D,GAAG,KAAK;AAAA,QACR;AAAA,MAAA,CACD;AAED,aAAO;AAAA,IAAA;AAAA,EACT;AAEJ,CAAC;AAED,SAAS,yBAAyB;AAAA,EAChC,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AC3IM,MAAM,SAA2B;AAAA,EACtC;AAAA,EACA;AACF,EAAE,KAAA;ACHK,MAAM,aAA+B;AAAA,EAC1C;AAAA,EACA;AACF;AAEO,MAAM,iBAAmC,CAAC,sBAAsB;ACJhE,MAAM,uBAAuB,OAAO,MAAM,OAAO;AAExD,SAAS,sBAAsB;AAAA,EAC7B,aAAa;AAAA,EACb,OAAO;AACT,CAAC;ACNM,MAAM,uBAAuB,OAAO,MAAM,eAAe,EAAE,CAAC;AAEnE,SAAS,sBAAsB;AAAA,EAC7B,aAAa;AAAA,EACb,OAAO;AACT,CAAC;ACLM,MAAM,qBAAqB;AAAA,EAAO,MACvC,aAAa,EAAE,yBAAyB,MAAM;AAChD;AAEA,SAAS,oBAAoB;AAAA,EAC3B,aAAa;AAAA,EACb,OAAO;AACT,CAAC;ACJM,MAAM,kBACX,QAAQ,aAAa,MAAM,SAAS;AAEtC,SAAS,gBAAgB,QAAQ;AAAA,EAC/B,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AAED,SAAS,gBAAgB,SAAS;AAAA,EAChC,aAAa;AAAA,EACb,OAAO;AACT,CAAC;ACZD,MAAM,YAAY,IAAI,UAAU,kCAAkC;AAElE,SAAS,cAAc,MAAY,QAAc;AAC/C,MAAI,QAAQ;AACZ,SAAO,QAAQ,CAAC,OAAO,SAAS,MAAM;AACpC,QAAI,UAAU,KAAM,SAAQ;AAAA,EAAA,CAC7B;AACD,SAAO;AACT;AAEO,MAAM,uBAAuB,OAAO,MAAM;AAC/C,SAAO,IAAI,OAAO;AAAA,IAChB,KAAK;AAAA,IACL,mBAAmB,CAAC,KAAK,UAAU,UAAU;AAC3C,UAAI;AACJ,YAAM,QAAQ,CAAC,MAAY,QAAgB;AACzC,YAAI,CAAC,GAAI,MAAK,MAAM;AAEpB,YAAI,KAAK,KAAK,SAAS,aAAc;AAErC,cAAM,OAAO,MAAM,IAAI,QAAQ,GAAG;AAClC,cAAM,WAAW,KAAK,KAAK,KAAK,KAAK;AACrC,cAAM,QAAQ,KAAK,KAAK,KAAK,QAAQ,CAAC;AACtC,cAAM,iBAAiB,MAAM;AAE7B,YAAI,CAAC,eAAgB;AAErB,cAAM,QAAQ,cAAc,MAAM,QAAQ;AAC1C,cAAM,aAAa,eAAe,WAAW,KAAK;AAClD,YAAI,CAAC,WAAY;AACjB,cAAM,QAAQ,WAAW,MAAM;AAC/B,cAAM,eAAe,KAAK,MAAM;AAChC,YAAI,UAAU,aAAc;AAE5B,WAAG,cAAc,KAAK,QAAW,EAAE,GAAG,KAAK,OAAO,WAAW,OAAO;AAAA,MAAA;AAEtE,UAAI,SAAS,QAAQ,MAAM,IAAK,OAAM,IAAI,YAAY,KAAK;AAE3D,aAAO;AAAA,IAAA;AAAA,EACT,CACD;AACH,CAAC;AAED,SAAS,sBAAsB;AAAA,EAC7B,aAAa;AAAA,EACb,OAAO;AACT,CAAC;AC5CM,MAAM,UAA4B;AAAA,EACvC;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF,EAAE,KAAA;ACAK,MAAM,SAA2B;AAAA,EACtC;AAAA,EAEA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EAEA;AAAA,EACA;AAAA,EAEA;AAAA,EACA;AACF,EAAE,KAAA;ACTK,MAAM,WAAW;AAAA,EACtB;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EAEA;AACF;ACvBO,MAAM,MAAM;AAAA,EACjB;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF,EAAE,KAAA;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../src/node/table/input.ts"],"names":[],"mappings":"AAgBA,eAAO,MAAM,oBAAoB,sCA0BhC,CAAA;AAWD,eAAO,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../src/node/table/input.ts"],"names":[],"mappings":"AAgBA,eAAO,MAAM,oBAAoB,sCA0BhC,CAAA;AAWD,eAAO,MAAM,WAAW,6FA0BtB,CAAA"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export declare const extendListItemSchemaForTask: import("@milkdown/
|
|
1
|
+
export declare const extendListItemSchemaForTask: import("@milkdown/utils").$NodeSchema<"list_item">;
|
|
2
2
|
export declare const wrapInTaskListInputRule: import("@milkdown/utils").$InputRule;
|
|
3
3
|
//# sourceMappingURL=task-list-item.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"task-list-item.d.ts","sourceRoot":"","sources":["../../src/node/task-list-item.ts"],"names":[],"mappings":"AAQA,eAAO,MAAM,2BAA2B,
|
|
1
|
+
{"version":3,"file":"task-list-item.d.ts","sourceRoot":"","sources":["../../src/node/task-list-item.ts"],"names":[],"mappings":"AAQA,eAAO,MAAM,2BAA2B,oDA2FvC,CAAA;AAcD,eAAO,MAAM,uBAAuB,sCA2BlC,CAAA"}
|
package/lib/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.d.ts","../../../../node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/modules/index.d.ts","../../../ctx/lib/context/slice.d.ts","../../../ctx/lib/context/container.d.ts","../../../ctx/lib/context/index.d.ts","../../../ctx/lib/inspector/meta.d.ts","../../../ctx/lib/timer/timer.d.ts","../../../ctx/lib/timer/clock.d.ts","../../../ctx/lib/timer/index.d.ts","../../../ctx/lib/inspector/inspector.d.ts","../../../ctx/lib/inspector/index.d.ts","../../../ctx/lib/plugin/ctx.d.ts","../../../ctx/lib/plugin/types.d.ts","../../../ctx/lib/plugin/index.d.ts","../../../ctx/lib/index.d.ts","../../../../node_modules/.pnpm/orderedmap@2.1.1/node_modules/orderedmap/dist/index.d.ts","../../../../node_modules/.pnpm/prosemirror-model@1.25.1/node_modules/prosemirror-model/dist/index.d.ts","../../../../node_modules/.pnpm/prosemirror-transform@1.10.4/node_modules/prosemirror-transform/dist/index.d.ts","../../../../node_modules/.pnpm/prosemirror-view@1.40.0/node_modules/prosemirror-view/dist/index.d.ts","../../../../node_modules/.pnpm/prosemirror-state@1.4.3/node_modules/prosemirror-state/dist/index.d.ts","../../../../node_modules/.pnpm/prosemirror-inputrules@1.5.0/node_modules/prosemirror-inputrules/dist/index.d.ts","../../../prose/lib/inputrules.d.ts","../../../prose/lib/state.d.ts","../../../prose/lib/view.d.ts","../../../prose/lib/model.d.ts","../../../../node_modules/.pnpm/@types+unist@3.0.3/node_modules/@types/unist/index.d.ts","../../../../node_modules/.pnpm/@types+mdast@4.0.4/node_modules/@types/mdast/index.d.ts","../../../../node_modules/.pnpm/micromark-util-types@2.0.2/node_modules/micromark-util-types/index.d.ts","../../../../node_modules/.pnpm/mdast-util-from-markdown@2.0.2/node_modules/mdast-util-from-markdown/lib/types.d.ts","../../../../node_modules/.pnpm/mdast-util-from-markdown@2.0.2/node_modules/mdast-util-from-markdown/lib/index.d.ts","../../../../node_modules/.pnpm/mdast-util-from-markdown@2.0.2/node_modules/mdast-util-from-markdown/index.d.ts","../../../../node_modules/.pnpm/vfile-message@4.0.2/node_modules/vfile-message/lib/index.d.ts","../../../../node_modules/.pnpm/vfile-message@4.0.2/node_modules/vfile-message/index.d.ts","../../../../node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/index.d.ts","../../../../node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/index.d.ts","../../../../node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/callable-instance.d.ts","../../../../node_modules/.pnpm/trough@2.2.0/node_modules/trough/lib/index.d.ts","../../../../node_modules/.pnpm/trough@2.2.0/node_modules/trough/index.d.ts","../../../../node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/index.d.ts","../../../../node_modules/.pnpm/unified@11.0.5/node_modules/unified/index.d.ts","../../../../node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/lib/index.d.ts","../../../../node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/index.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/types.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/index.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/blockquote.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/break.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/code.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/definition.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/emphasis.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/heading.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/html.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image-reference.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/inline-code.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link-reference.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list-item.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/paragraph.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/root.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/strong.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/text.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/index.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/index.d.ts","../../../../node_modules/.pnpm/remark-stringify@11.0.0/node_modules/remark-stringify/lib/index.d.ts","../../../../node_modules/.pnpm/remark-stringify@11.0.0/node_modules/remark-stringify/index.d.ts","../../../../node_modules/.pnpm/remark@15.0.1/node_modules/remark/index.d.ts","../../../transformer/lib/utility/stack.d.ts","../../../transformer/lib/utility/index.d.ts","../../../transformer/lib/serializer/stack-element.d.ts","../../../transformer/lib/serializer/state.d.ts","../../../transformer/lib/serializer/types.d.ts","../../../transformer/lib/utility/types.d.ts","../../../transformer/lib/parser/stack-element.d.ts","../../../transformer/lib/parser/state.d.ts","../../../transformer/lib/parser/types.d.ts","../../../transformer/lib/parser/index.d.ts","../../../transformer/lib/serializer/index.d.ts","../../../transformer/lib/index.d.ts","../../../core/lib/internal-plugin/atoms.d.ts","../../../core/lib/internal-plugin/commands.d.ts","../../../core/lib/internal-plugin/config.d.ts","../../../core/lib/internal-plugin/editor-state.d.ts","../../../core/lib/internal-plugin/editor-view.d.ts","../../../core/lib/internal-plugin/init.d.ts","../../../core/lib/internal-plugin/parser.d.ts","../../../core/lib/internal-plugin/schema.d.ts","../../../core/lib/internal-plugin/serializer.d.ts","../../../core/lib/internal-plugin/index.d.ts","../../../core/lib/editor/editor.d.ts","../../../core/lib/editor/index.d.ts","../../../core/lib/index.d.ts","../../../prose/lib/toolkit/browser.d.ts","../../../prose/lib/toolkit/input-rules/custom-input-rules.d.ts","../../../prose/lib/toolkit/input-rules/common.d.ts","../../../prose/lib/toolkit/input-rules/mark-rule.d.ts","../../../prose/lib/toolkit/input-rules/node-rule.d.ts","../../../prose/lib/toolkit/input-rules/index.d.ts","../../../prose/lib/toolkit/position/index.d.ts","../../../prose/lib/toolkit/prose/helper.d.ts","../../../prose/lib/toolkit/prose/types.d.ts","../../../prose/lib/toolkit/prose/node.d.ts","../../../prose/lib/toolkit/prose/schema.d.ts","../../../prose/lib/toolkit/prose/selection.d.ts","../../../prose/lib/toolkit/prose/index.d.ts","../../../prose/lib/toolkit/index.d.ts","../../../prose/lib/index.d.ts","../../../../node_modules/.pnpm/prosemirror-commands@1.7.1/node_modules/prosemirror-commands/dist/index.d.ts","../../../prose/lib/commands.d.ts","../../../utils/lib/composable/utils.d.ts","../../../utils/lib/composable/$command.d.ts","../../../utils/lib/composable/$input-rule.d.ts","../../../utils/lib/composable/$mark.d.ts","../../../utils/lib/composable/$node.d.ts","../../../utils/lib/composable/$prose.d.ts","../../../utils/lib/composable/$shortcut.d.ts","../../../utils/lib/composable/$view.d.ts","../../../utils/lib/composable/$ctx.d.ts","../../../utils/lib/composable/composed/$node-schema.d.ts","../../../utils/lib/composable/composed/$mark-schema.d.ts","../../../utils/lib/composable/composed/$user-keymap.d.ts","../../../utils/lib/composable/composed/$attr.d.ts","../../../utils/lib/composable/composed/$remark.d.ts","../../../utils/lib/composable/composed/index.d.ts","../../../utils/lib/composable/index.d.ts","../../../utils/lib/macro/call-command.d.ts","../../../utils/lib/macro/force-update.d.ts","../../../utils/lib/macro/get-html.d.ts","../../../utils/lib/macro/get-markdown.d.ts","../../../utils/lib/macro/insert.d.ts","../../../utils/lib/macro/outline.d.ts","../../../utils/lib/macro/replace-all.d.ts","../../../utils/lib/macro/set-attr.d.ts","../../../utils/lib/macro/insert-pos.d.ts","../../../utils/lib/macro/replace-range.d.ts","../../../utils/lib/macro/markdown-to-slice.d.ts","../../../utils/lib/macro/index.d.ts","../../../utils/lib/pipe.d.ts","../../../utils/lib/index.d.ts","../src/__internal__/with-meta.ts","../src/__internal__/index.ts","../src/mark/strike-through.ts","../src/mark/index.ts","../../../../node_modules/.pnpm/prosemirror-tables@1.7.1/node_modules/prosemirror-tables/dist/index.d.ts","../../../prose/lib/tables.d.ts","../src/node/table/schema.ts","../../preset-commonmark/lib/node/doc.d.ts","../../preset-commonmark/lib/node/heading.d.ts","../../preset-commonmark/lib/node/blockquote.d.ts","../../preset-commonmark/lib/node/code-block.d.ts","../../preset-commonmark/lib/node/image.d.ts","../../preset-commonmark/lib/node/hardbreak.d.ts","../../preset-commonmark/lib/node/hr.d.ts","../../preset-commonmark/lib/node/bullet-list.d.ts","../../preset-commonmark/lib/node/ordered-list.d.ts","../../preset-commonmark/lib/node/list-item.d.ts","../../preset-commonmark/lib/node/paragraph.d.ts","../../preset-commonmark/lib/node/text.d.ts","../../preset-commonmark/lib/node/html.d.ts","../../preset-commonmark/lib/node/index.d.ts","../../preset-commonmark/lib/mark/emphasis.d.ts","../../preset-commonmark/lib/mark/strong.d.ts","../../preset-commonmark/lib/mark/inline-code.d.ts","../../preset-commonmark/lib/mark/link.d.ts","../../preset-commonmark/lib/mark/index.d.ts","../../preset-commonmark/lib/plugin/remark-add-order-in-list-plugin.d.ts","../../preset-commonmark/lib/plugin/remark-line-break.d.ts","../../preset-commonmark/lib/plugin/remark-inline-link-plugin.d.ts","../../preset-commonmark/lib/plugin/remark-html-transformer.d.ts","../../preset-commonmark/lib/plugin/remark-marker-plugin.d.ts","../../preset-commonmark/lib/plugin/remark-preserve-empty-line.d.ts","../../preset-commonmark/lib/plugin/inline-nodes-cursor-plugin.d.ts","../../preset-commonmark/lib/plugin/hardbreak-clear-mark-plugin.d.ts","../../preset-commonmark/lib/plugin/hardbreak-filter-plugin.d.ts","../../preset-commonmark/lib/plugin/sync-heading-id-plugin.d.ts","../../preset-commonmark/lib/plugin/sync-list-order-plugin.d.ts","../../preset-commonmark/lib/plugin/index.d.ts","../../preset-commonmark/lib/composed/schema.d.ts","../../preset-commonmark/lib/composed/inputrules.d.ts","../../preset-commonmark/lib/composed/commands.d.ts","../../preset-commonmark/lib/composed/keymap.d.ts","../../preset-commonmark/lib/composed/plugins.d.ts","../../preset-commonmark/lib/composed/index.d.ts","../../preset-commonmark/lib/commands/index.d.ts","../../preset-commonmark/lib/index.d.ts","../src/node/table/utils.ts","../src/node/table/command.ts","../src/node/table/input.ts","../src/node/table/index.ts","../../../exception/lib/code.d.ts","../../../exception/lib/error.d.ts","../../../exception/lib/index.d.ts","../src/node/footnote/definition.ts","../src/node/footnote/reference.ts","../src/node/footnote/index.ts","../src/node/task-list-item.ts","../src/node/index.ts","../src/composed/keymap.ts","../src/composed/inputrules.ts","../../../../node_modules/.pnpm/prosemirror-safari-ime-span@1.0.2/node_modules/prosemirror-safari-ime-span/dist/index.d.ts","../src/plugin/auto-insert-span-plugin.ts","../src/plugin/column-resizing-plugin.ts","../src/plugin/table-editing-plugin.ts","../../../../node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/lib/html.d.ts","../../../../node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/lib/syntax.d.ts","../../../../node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/index.d.ts","../../../../node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/lib/html.d.ts","../../../../node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/lib/syntax.d.ts","../../../../node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/index.d.ts","../../../../node_modules/.pnpm/micromark-extension-gfm@3.0.0/node_modules/micromark-extension-gfm/index.d.ts","../../../../node_modules/.pnpm/mdast-util-gfm-footnote@2.1.0/node_modules/mdast-util-gfm-footnote/lib/index.d.ts","../../../../node_modules/.pnpm/mdast-util-gfm-footnote@2.1.0/node_modules/mdast-util-gfm-footnote/index.d.ts","../../../../node_modules/.pnpm/markdown-table@3.0.4/node_modules/markdown-table/index.d.ts","../../../../node_modules/.pnpm/mdast-util-gfm-table@2.0.0/node_modules/mdast-util-gfm-table/lib/index.d.ts","../../../../node_modules/.pnpm/mdast-util-gfm-table@2.0.0/node_modules/mdast-util-gfm-table/index.d.ts","../../../../node_modules/.pnpm/mdast-util-gfm@3.1.0/node_modules/mdast-util-gfm/lib/index.d.ts","../../../../node_modules/.pnpm/mdast-util-gfm@3.1.0/node_modules/mdast-util-gfm/index.d.ts","../../../../node_modules/.pnpm/remark-gfm@4.0.1/node_modules/remark-gfm/lib/index.d.ts","../../../../node_modules/.pnpm/remark-gfm@4.0.1/node_modules/remark-gfm/index.d.ts","../src/plugin/remark-gfm-plugin.ts","../src/plugin/keep-table-align-plugin.ts","../src/plugin/index.ts","../src/composed/plugins.ts","../src/composed/schema.ts","../src/composed/commands.ts","../src/composed/index.ts","../src/index.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/compatibility/disposable.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/compatibility/indexable.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/compatibility/iterators.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/compatibility/index.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/globals.typedarray.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/buffer.buffer.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/globals.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/assert.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/buffer.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/child_process.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/cluster.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/console.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/constants.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/crypto.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/dgram.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/dns.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/domain.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/dom-events.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/events.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/fs.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/http.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/http2.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/https.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/inspector.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/module.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/net.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/os.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/path.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/process.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/punycode.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/querystring.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/readline.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/repl.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/sea.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/sqlite.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/stream.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/stream/web.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/test.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/timers.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/tls.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/trace_events.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/tty.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/url.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/util.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/v8.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/vm.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/wasi.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/zlib.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.31/node_modules/@types/node/index.d.ts","../../../../node_modules/.pnpm/@types+estree@1.0.7/node_modules/@types/estree/index.d.ts","../../../../node_modules/.pnpm/rollup@4.43.0/node_modules/rollup/dist/rollup.d.ts","../../../../node_modules/.pnpm/@types+rollup-plugin-auto-external@2.0.5/node_modules/@types/rollup-plugin-auto-external/index.d.ts"],"fileIdsList":[[292,334],[84,292,334],[292,331,334],[292,333,334],[334],[292,334,339,369],[292,334,335,340,346,347,354,366,377],[292,334,335,336,346,354],[287,288,289,292,334],[292,334,337,378],[292,334,338,339,347,355],[292,334,339,366,374],[292,334,340,342,346,354],[292,333,334,341],[292,334,342,343],[292,334,344,346],[292,333,334,346],[292,334,346,347,348,366,377],[292,334,346,347,348,361,366,369],[292,329,334],[292,329,334,342,346,349,354,366,377],[292,334,346,347,349,350,354,366,374,377],[292,334,349,351,366,374,377],[290,291,292,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383],[292,334,346,352],[292,334,353,377],[292,334,342,346,354,366],[292,334,355],[292,334,356],[292,333,334,357],[292,331,332,333,334,335,336,337,338,339,340,341,342,343,344,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383],[292,334,359],[292,334,360],[292,334,346,361,362],[292,334,361,363,378,380],[292,334,346,366,367,369],[292,334,368,369],[292,334,366,367],[292,334,369],[292,334,370],[292,331,334,366],[292,334,346,372,373],[292,334,372,373],[292,334,339,354,366,374],[292,334,375],[292,334,354,376],[292,334,349,360,377],[292,334,339,378],[292,334,366,379],[292,334,353,380],[292,334,381],[292,334,346,348,357,366,369,377,380,382],[292,334,366,383],[292,334,386],[86,87,88,89,265,268,292,334],[85,86,87,89,265,268,292,334],[85,86,89,265,268,292,334],[123,270,274,292,334],[89,123,271,274,292,334],[89,123,271,273,292,334],[85,89,123,271,272,274,292,334],[271,274,275,292,334],[89,123,271,274,276,292,334],[101,102,122,292,334],[85,123,271,274,292,334],[85,292,334],[103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,292,334],[84,85,292,334],[86,89,263,264,268,292,334],[86,89,265,268,292,334],[86,89,265,266,267,292,334],[75,78,292,334],[74,292,334],[78,292,334],[75,76,77,292,334],[75,76,77,78,292,334],[75,292,334],[75,76,78,292,334],[269,276,277,292,334],[278,292,334],[85,86,89,98,99,100,125,265,268,274,292,334],[85,89,93,98,100,125,274,292,334],[85,98,100,123,124,125,271,274,292,334],[85,93,98,100,123,125,271,274,292,334],[85,98,100,125,292,334],[292,334,385,386],[95,292,334],[59,292,334],[292,301,305,334,377],[292,301,334,366,377],[292,296,334],[292,298,301,334,374,377],[292,334,354,374],[292,334,384],[292,296,334,384],[292,298,301,334,354,377],[292,293,294,297,300,334,346,366,377],[292,301,308,334],[292,293,299,334],[292,301,322,323,334],[292,297,301,334,369,377,384],[292,322,334,384],[292,295,296,334,384],[292,301,334],[292,295,296,297,298,299,300,301,302,303,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,323,324,325,326,327,328,334],[292,301,316,334],[292,301,308,309,334],[292,299,301,309,310,334],[292,300,334],[292,293,296,301,334],[292,301,305,309,310,334],[292,305,334],[292,299,301,304,334,377],[292,293,298,301,308,334],[292,334,366],[292,296,301,322,334,382,384],[93,97,292,334],[84,93,94,96,98,100,125,292,334],[90,292,334],[91,92,292,334],[84,91,93,292,334],[73,148,292,334],[149,292,334],[148,150,292,334],[73,80,81,82,125,138,150,292,334],[73,81,292,334],[73,292,334],[73,81,83,138,292,334],[73,82,292,334],[139,140,141,142,143,144,145,146,147,292,334],[73,150,292,334],[73,138,292,334],[73,83,138,292,334],[61,292,334],[61,62,292,334],[62,292,334],[63,67,69,72,292,334],[64,68,292,334],[63,64,67,292,334],[63,67,69,73,292,334],[70,71,292,334],[69,70,292,334],[65,292,334],[65,66,292,334],[66,292,334],[249,292,334],[250,292,334],[83,198,292,334],[237,238,239,240,241,292,334],[73,219,224,236,242,243,292,334],[198,292,334],[220,221,222,223,292,334],[206,207,208,209,210,211,212,213,214,215,216,217,218,292,334],[225,226,227,228,229,230,231,232,233,234,235,292,334],[60,199,292,334],[60,73,292,334],[60,202,256,292,334],[60,257,258,282,283,284,292,334],[60,73,202,256,292,334],[60,73,281,292,334],[60,202,256,281,285,292,334],[60,201,292,334],[60,151,166,168,198,200,292,334],[60,198,200,251,292,334],[60,252,253,292,334],[60,248,254,255,292,334],[60,81,166,198,200,204,205,244,245,292,334],[60,205,245,246,247,292,334],[60,80,81,151,198,200,205,245,246,292,334],[60,83,138,198,200,204,292,334],[60,73,81,83,166,204,205,292,334],[60,80,198,200,244,251,292,334],[60,198,200,259,292,334],[60,198,200,204,292,334],[60,260,261,262,279,280,292,334],[60,81,83,198,200,292,334],[60,198,200,278,292,334],[167,292,334],[165,292,334],[79,292,334],[203,292,334],[152,157,158,164,292,334],[81,83,292,334],[80,81,292,334],[153,154,155,156,292,334],[80,83,154,292,334],[82,292,334],[159,161,162,163,292,334],[83,160,292,334],[83,292,334],[81,83,160,292,334],[77,292,334],[128,136,137,292,334],[134,135,292,334],[83,128,292,334],[83,128,133,135,292,334],[83,132,134,292,334],[130,131,292,334],[128,138,292,334],[83,128,129,131,292,334],[83,130,292,334],[127,132,292,334],[83,98,100,125,126,131,135,292,334],[73,151,169,292,334],[73,80,169,292,334],[73,83,138,169,292,334],[73,81,169,292,334],[73,82,169,184,292,334],[83,177,292,334],[73,138,172,177,292,334],[73,138,173,177,292,334],[73,138,177,292,334],[73,81,175,177,292,334],[178,179,180,181,182,292,334],[169,170,171,172,173,174,175,176,177,183,292,334],[184,196,197,292,334],[73,151,292,334],[185,186,187,188,189,190,191,192,193,194,195,292,334],[73,83,292,334]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"b8f34dd1757f68e03262b1ca3ddfa668a855b872f8bdd5224d6f993a7b37dc2c","impliedFormat":99},"73cc073d7a102374d6b9bcdbde8072f3aa3c8f86767f562086b6a7a7df5f22c0","e66deb230968faf1a8f37ea6f217f319dd0dad7a39ead1bf5d4f54e2eb5ce4bd","13ee17bbdd42459d6450899cea1999aab64c723328e773c0be5e8a13b51b6259","f79062b892847b4e33d0b730bf9dcf66ac24fc3fe9df7bba4d0997c6bdf6cbde","20f3a5481b2c009533e9e6b864cbd4ae3c09ccfca0577918b3587cda295e7071","2797c77cc0da0836a37c8c1fe64942a999c73f811f5481d827ac7d8cb9ddedd3","5a40849c3a5d5a8c2aa754fc964830ea344c94bfeddd4b442bdeae899e2f5339","848836f528d4ac80a5b3212c719225a3ba09406d44fea755cb642299a68d7056","fae981646738728f2b882c14625b99c23c430400a21c081dc6888d9703bd6c68","45c8a077eb724bae4e1fc0d15f76618650e32e55c4582dc1f27153ecdeb66ca6","302c082712d8fe41be387cd34af45b163b5314c04ddeefe53b1cb57fe46d3221","0c1a84d7b974db1961c6e9ab71d5257dfa38d99fb6300f22de55750526c9daef","69bc40bb169ea922cab72dc2142f37e75b44095cf1e79ca1b2809164c284de57",{"version":"264f935450101e4b000eb351cf75c9d799ca20a278b260a9e5770303b5f2b6a3","impliedFormat":99},{"version":"a3ffe0da859afda5b09afdcc10a4e85196a81877e4ef1447604ce9a9dfb74a58","impliedFormat":99},{"version":"b0585389e0dcd131241ff48a6b4e8bebdf97813850183ccfa2a60118532938dd","impliedFormat":99},{"version":"8db2708d71d93131112a8db84847a1245fb170f78fdc7db916ad955dc6c42be1","affectsGlobalScope":true,"impliedFormat":99},{"version":"e29c3246bccba476f4285c89ea0c026b6bfdf9e3d15b6edf2d50e7ea1a59ecfb","impliedFormat":99},{"version":"2a04530c2579ddcf996e1cf017caaba573e0ebf8a5b9e45d3bc25ba4489fb5a3","impliedFormat":99},"f41d91b2db1112fcc673a6862fe68cadcbdd0a66ed16b47ac74a0a6da8932bb4","e689cc8cd8a102d31c9d3a7b0db0028594202093c4aca25982b425e8ae744556","1b4ed9deaba72d4bc8495bf46db690dbf91040da0cb2401db10bad162732c0e2","478e59ac0830a0f6360236632d0d589fb0211183aa1ab82292fbca529c0cce35",{"version":"89121c1bf2990f5219bfd802a3e7fc557de447c62058d6af68d6b6348d64499a","impliedFormat":1},{"version":"d4a22007b481fe2a2e6bfd3a42c00cd62d41edb36d30fc4697df2692e9891fc8","impliedFormat":1},{"version":"a5dbd4c9941b614526619bad31047ddd5f504ec4cdad88d6117b549faef34dd3","impliedFormat":99},{"version":"011423c04bfafb915ceb4faec12ea882d60acbe482780a667fa5095796c320f8","impliedFormat":99},{"version":"f8eb2909590ec619643841ead2fc4b4b183fbd859848ef051295d35fef9d8469","impliedFormat":99},{"version":"fe784567dd721417e2c4c7c1d7306f4b8611a4f232f5b7ce734382cf34b417d2","impliedFormat":99},{"version":"5c5d901a999dfe64746ef4244618ae0628ac8afdb07975e3d5ed66e33c767ed0","impliedFormat":99},{"version":"85d08536e6cd9787f82261674e7d566421a84d286679db1503432a6ccf9e9625","impliedFormat":99},{"version":"5702b3c2f5d248290ed99419d77ca1cc3e6c29db5847172377659c50e6303768","impliedFormat":99},{"version":"9764b2eb5b4fc0b8951468fb3dbd6cd922d7752343ef5fbf1a7cd3dfcd54a75e","impliedFormat":99},{"version":"1fc2d3fe8f31c52c802c4dee6c0157c5a1d1f6be44ece83c49174e316cf931ad","impliedFormat":99},{"version":"dc4aae103a0c812121d9db1f7a5ea98231801ed405bf577d1c9c46a893177e36","impliedFormat":99},{"version":"106d3f40907ba68d2ad8ce143a68358bad476e1cc4a5c710c11c7dbaac878308","impliedFormat":99},{"version":"42ad582d92b058b88570d5be95393cf0a6c09a29ba9aa44609465b41d39d2534","impliedFormat":99},{"version":"36e051a1e0d2f2a808dbb164d846be09b5d98e8b782b37922a3b75f57ee66698","impliedFormat":99},{"version":"4f7e6730a707b0d4971d96de3b562819ce304af770723707a58a578dd55a5e52","impliedFormat":99},{"version":"d1c1213e9176398b4d1d9aa543691181fd5ae23ae5415e80ede41f1ec1ccf72a","impliedFormat":99},{"version":"45d1e8fb4fd3e265b15f5a77866a8e21870eae4c69c473c33289a4b971e93704","impliedFormat":99},{"version":"cd40919f70c875ca07ecc5431cc740e366c008bcbe08ba14b8c78353fb4680df","impliedFormat":99},{"version":"ddfd9196f1f83997873bbe958ce99123f11b062f8309fc09d9c9667b2c284391","impliedFormat":99},{"version":"2999ba314a310f6a333199848166d008d088c6e36d090cbdcc69db67d8ae3154","impliedFormat":99},{"version":"62c1e573cd595d3204dfc02b96eba623020b181d2aa3ce6a33e030bc83bebb41","impliedFormat":99},{"version":"ca1616999d6ded0160fea978088a57df492b6c3f8c457a5879837a7e68d69033","impliedFormat":99},{"version":"835e3d95251bbc48918bb874768c13b8986b87ea60471ad8eceb6e38ddd8845e","impliedFormat":99},{"version":"de54e18f04dbcc892a4b4241b9e4c233cfce9be02ac5f43a631bbc25f479cd84","impliedFormat":99},{"version":"453fb9934e71eb8b52347e581b36c01d7751121a75a5cd1a96e3237e3fd9fc7e","impliedFormat":99},{"version":"bc1a1d0eba489e3eb5c2a4aa8cd986c700692b07a76a60b73a3c31e52c7ef983","impliedFormat":99},{"version":"4098e612efd242b5e203c5c0b9afbf7473209905ab2830598be5c7b3942643d0","impliedFormat":99},{"version":"28410cfb9a798bd7d0327fbf0afd4c4038799b1d6a3f86116dc972e31156b6d2","impliedFormat":99},{"version":"514ae9be6724e2164eb38f2a903ef56cf1d0e6ddb62d0d40f155f32d1317c116","impliedFormat":99},{"version":"970e5e94a9071fd5b5c41e2710c0ef7d73e7f7732911681592669e3f7bd06308","impliedFormat":99},{"version":"491fb8b0e0aef777cec1339cb8f5a1a599ed4973ee22a2f02812dd0f48bd78c1","impliedFormat":99},{"version":"6acf0b3018881977d2cfe4382ac3e3db7e103904c4b634be908f1ade06eb302d","impliedFormat":99},{"version":"2dbb2e03b4b7f6524ad5683e7b5aa2e6aef9c83cab1678afd8467fde6d5a3a92","impliedFormat":99},{"version":"135b12824cd5e495ea0a8f7e29aba52e1adb4581bb1e279fb179304ba60c0a44","impliedFormat":99},{"version":"e4c784392051f4bbb80304d3a909da18c98bc58b093456a09b3e3a1b7b10937f","impliedFormat":99},{"version":"2e87c3480512f057f2e7f44f6498b7e3677196e84e0884618fc9e8b6d6228bed","impliedFormat":99},{"version":"66984309d771b6b085e3369227077da237b40e798570f0a2ddbfea383db39812","impliedFormat":99},{"version":"e41be8943835ad083a4f8a558bd2a89b7fe39619ed99f1880187c75e231d033e","impliedFormat":99},{"version":"260558fff7344e4985cfc78472ae58cbc2487e406d23c1ddaf4d484618ce4cfd","impliedFormat":99},{"version":"e6274d956641c1cbd5a01a221a85a6671fd85104ed6b530f8d34ad3086804133","impliedFormat":99},{"version":"77516308358982bb05209e8c0ed6f321860e03393587d89f61055941e5bbcdd2","impliedFormat":99},{"version":"dc8652855a95ef9b9c12be8d2f5e6fc37b96aa2144f6c6f195cd1d2e07f721ee","impliedFormat":99},"e2cb25ca55e10ba874410188a53331a6b0b2bc13c0ee4d538bde50460a4e1b77","041afde4e1ac27e6fabdc2ca87882a3a766443fcfe1a1cfc3ed78bcc1c25b28a","c2049793874bbeafd60402bab915f3d285f4057e718dfdefe8a54ccc80c991dd","cd6b4aa554bc554c4eb5ef7fbb1d4e79882f2a58b5088d57b50b39eb9d203f9b","1841f713f3fed17712486dc25fa2548de11e041be80425d1901579d9a1af7fec","77629e2fdec5a9d0eaaf9f8bfe827aebe56205dd328943f6f96a6cad61d5601c","3cff9818411332b44ee20f6ecf17da9dc7d881767e06bc91017243af0d0cdf8f","4dd40b7a82bead904083845a703f8f7fac237354319bdfcd8fe49a2cc189034b","c701a34a532aa1c950d67177e303441556f7ed36ac415ed49b4eac122c2da084","8cd4c86b90f9a96ba804585a4b6a998f484a860af3dfd12641ecb9eca109274b","8cd4c86b90f9a96ba804585a4b6a998f484a860af3dfd12641ecb9eca109274b","1b92de1f5b74cf4bda283aa7688c80781e9c7273f44a4ef2db084747a94be933","650d0be7c19349ccb4c64d4b596f0f5e5adf020b8f25af5833526ddbc795a12c","52940aaf4a4d0bc045dc959ac2db1e4840c57b3a1a49286ef193534b093e4bcf","f973eff08fa4c0e8eacef74a0879a51ee36edbc9ce791a72bfdee3280a46308c","bfa8cc766520464f4a52189e6fb04b9f4eb2cde8985d1a21411661c0ec3dca3c","0011ea4409069c099d1e78da44ff6f674e8f290c8ed7f781db4520fe9527c00d","06ad6054d63c8096c20aae2af99b2144a6917340442abe12291d55a99388a154","7366f9cf857985f15e3bcfb514975a88edf7e93e3f95f601f313569534bc4796","58b7b2c5f659600b91e58f4dd35e9a144284264b6e44e89558b7785d113bfd89","dc20e16856c89c3e53554047983b040e6ea363658815cebbdccc52808ca8658c","a1f1658ab594d2c0950810d94ddc07d22daa18d3f6ce3598bab831813eb8ef8e","aee934524cd133552da7339b5c326d85dc8f058dec67c3c4f4e3d0f7239b74bf","3b8dd8f967501f6193f2d31f8a124e05186264f37f1b73d073cf39c6e123fe50","bc699cb86e1528d370a29ae99fe8f89e3a838bb620ad4071a4c9999a390c8361","d9fc24b35b002a548f4414e49fe3793d9a5b35ee52005272caf4318f2e4f8365","38815495490dbe68097e68af671c9f38d7b7becdc86046701caf27b3aefc1238","4f5fa1f41df5934999037079798a183a672f6a51bf00fecd8a58a40bf8a6ab4b","9228f51f27ecf7b4ea783d9a8ad6fa0b04aedd65f15765ef2e2b4fa993230c71","a4a6eecc3b94a291ecd8001af8bc77860553c1cd0539b7df753db546b90957f1","531aa8b58051f4a06c342c0e058080be43e46ec8caeb686e988f01506dd86e8b","830ef6b30732865e6c28f3a1a5ab6b2d912705dde825638ac06b125ec43d21d0","36a26b110dcea31cd8bab601c2b73930f04e8b5417f9749d9f5fb1eab2a763b6","4c5e77be4579c26825232a95edbf67c1fe38ef7af273b3829831e95cbeb86bb1","fe92ca191d247c305b79d52f46a30ba4d7c93dd1c3e92d7c6c613d330b3da187","89854e488820d88a1b94cf1fd4f156c48859af845d09130f81d516c1aa5db130","0b91eff2dfe722ddce2e4541b66db7b80b83c9912ddd338906bff6e0d1b992c9","7c746be7d0a5cd1a23a4b9f9290669f7c49ca4b315e19c103b1c8ede5037b984","40bcee342fdfb92c1e899d6eb5dfe6e4b1d7c22ec66ddefaec6e287a182e2d9b","717d62319839b9544128ebd5d5d414a2ef6aca2068d40045336d838e2872bdc9",{"version":"c60e1b30f06db4bb8955ee847c28592af992e45f2b8db300c1b0edfc3329b9cb","impliedFormat":99},"61a03f64adcb31f88db8ab9dceb0ce4fa239e8e725edd308d6f2ca94e1de82cc","0d88d0126ce83f2be3301ef21efcabb2eddc9dbdc0efa86fd7e9dea633aecf4f","f8e90bc5bbca2abdfafde152d3b6e1431cbd2036a89d8481eef351cf976ef3b1","cff368b57afda38d3a4842eba23263eed5ed0b8aa2f3779e049933eadca9c5ad","6df690f0ce028bef563bff3e0b679649bf38012eb4f79842979ab05ad86ee508","c2df2558f0a72c9024073737b0113c8eb87abad25b8d72cbc97ace5fa3c54eda","146d46efad38c63ae16569351d69ac1ed50b15c6814bce86f0506594e5da02af","76cf4a928236c3b202ae02a7b44265fcf9165e2cbd47d072b8cdac5e387cecdf","1f9e5882fd72f35a2c8e66f4d1e84a829a8a76054738b5f5130dc76ab5a4f147","ea4f1dab950db7938a946e8991e03c822a54439e16cf33c85ae7f5f10a0dd0de","065a2f29ed7a6e5007a243d300090c35724166d81221b536354e16f41373c5c3","07f425fe74f45bc0f9c7b994132cd50268ee00c34f5ad4a694b54bb31a1eed34","bc5b33c7c7494dc09a2e6a709b8040f2feeff395f043367c5460fec516cc3493","abd2262bb4ae4a67c1e094d2a04343fca4ef5f2928641ca72508cc37a649a257","5cb123c55dd3bdca31138015e06dc86bcd9c34886d6a87ab03b8a5a027d4beab","181e07c7edd50fa051e12f1025fd2b1af6d77ad16c72ad04f4065de7e1442664","3c751e29f7a7222bccc4e99cc10cb91892888a4cd9a17346502203ce6767d10f","fa5fb2553bdeb655a17283d09d9d9da716910a4efb1ab4c4fd100c1b6172d822","508a4ef8e22c663ed7fb811d0dbecd74186cf409a6546f151974b31391076c4b","790be052e6953f564e476d85ea08f079fad0fa5cf2de3b724a339788b0b6e795","260e103111c466db6af769f26d7c9306c06b08112f8058dc7d024d9f4c4755d1","615bf800a06a30a7434efc5bfbd1f6909f8d6b1a93f74276d25166f6c26a283f","f477f25c0e87b695bc3037ef4474d502673241e75018a2d910e2cc5579bfb236","05d86f27e8e942876bbe9dd71e21fa84dd56e63ee1cfc49d66b48410e491cd5d","3d107bdab3280468cbc54ffffe6f7d1d75dd33ceabb236d3383eac38a3d969e7","ff0a3251e245c6e4420505fc22330c270fe87fc390d6e232556129aafc5e5d33","6f5ee5ba1915f1e604b8cb2f302d6041c8ad52d557106842a057dd39d8f8a5eb","58e118242e8ea06b12520bba9164f27ce84892cbd8d1a08b7d0c2f7443b75cfe","bfa14541c2b697d5a73041bfa7a318b47db2301e2045856c7ab9db7bb3f4d21b","caee8e88a02710517f1d1849b48fa8793878f4ab0c51cde5c025ba6f21b946df","bbf57449e9341dc4b6f56e7ce74d0edee6cd7c4ca55b52664469de0c7d384445",{"version":"f8ce0d0d5e972abf3ce627f735f1595fc4721449ba19c283aa2c7e74bf1bf1d1","signature":"0cb80a1e82df72e7776496d59f35c657af69549a9de620d4d23b1a5d7302aa14"},{"version":"301513b5c98430d02fab46247b7a68ac3d0578fab7a403d9db09f3fa5761a9e3","signature":"69d17fda3a59adc0a1d6a768c2573cae24915c2fc745eb51301681bced4c3f55"},{"version":"fbc896f99968f8337a506a3f254a6afe37523e1093ab7fa20c79384a9819912c","signature":"d10d08d2b4c1edfb95b6be02b72466204985a4d12d527e810b34baec0f7c4b94"},{"version":"d87a1a80c72cd7179a3d39ff7d91624391c1afa2a07b9f8179fe42590d33b7e2","signature":"9e00aa566225b879614b941815798a83b114acfa060ff58d240891de9256b904"},{"version":"afd78086e8bb0854ffe9986c2f557d41ca32ae2b8b752134a54391f5c24c646c","impliedFormat":99},"cedbe9237d7fd9bf04a39837057c73f8645cf3ad70ff81666175cdc5862b6e2d",{"version":"c6fa05375b7835deeade3f9d921e9c1f36dbf7e4039bb42fcea8809ce19ef9ee","signature":"832674f0afac735aab3add8129cfb44d65601cbdce5c0cbc3c9e27014a42e6c4"},"bfac87a472c7b91245bee653a214311feb3bebacd2bf0733d9c123f197703fb1","e8a44c709658d90afbacff88eed438a1867b2397e621968a42ca2d736d182116","12c26dc1109f60713a3a271a3e58ded6be25a4623df8b41170bc31edc90d14bf","a5fb4a8d4b20584dfaa408f3d7c38a29b2308b3259258827d72b7b016849d8e8","209bc2480735b4445bdb7be8f92d1e0c967897e75bd50a4c3b8e9017e95ced6a","f73e814b1d179a0000ee8741b4383f35b41159f946b3b2e497c9240fda044887","e7798b04698745da299d1b1dc830ad7fc6ba44b0bbeb0afe6d594b4e458c4b32","ce52f5ba28530c4d223f88ddd989818a45c3399ecb2097455c482e33cd015b96","9a53a08950d64a395f62b92ace4c3deb1799796a88b966dbe397a6cb453e6cee","7d1b4a32cb3dd900aad3f0a50efc3f85a865e73c5ceb28b2cea47ea917355c31","9fe1bfb4e145086f053f61e63078ca2576099e3526375a39fc2a912f9f5c573d","59d4ea2fe02dc0a2a7b07637dd8b1e42b034ad75de72b0ab6de882ac9135d7ae","509b551d488239a113acecc0044b77436fd522bb4d5c7930c241fbb0bcdcf36b","a543006e964be4d0ccdb461982284550df07f1eda31832b4135cfdc8175fdeee","117dbc9b72e77b7f6136455283f82f5db757d89c4c952b854d200fa2836b4bbe","b31fdef5483aaf0315f359b5ea6bb9ceaa923b4f1afb9075a829a9e2f80c3567","bbbc689459850faf5870a6c6a6552df85d9aab13a4696b415bdcac49a56ca9b9","ddadbb657a5b6b8eb5aea7b35c57e737d416af806312c4a6dfa1e5fd46a9a616","7ffdcaa818c40b8be30334584c19053ad84c2022370aa6c9df1b8854f6c6baa0","10439a89e58640449e1ff1b339187681abd0d144b7a826afa69857e6f61070ef","b371f9b37120e8b84ac940a83975ce6c712f32738c9615a6cf96f136204d2288","42e4ac2577eee3f881c083117b183a06a2ffa7a4a5bc64fbeb0eb3e38ab854d5","87446d88c33a29a7a7fd7a434a677587d562f59c5f27295b912b64b7ffedb4ec","0d749fc11f8cf43c1d10d386b617e47ff3a7cac8fe20035393e714358615c416","b8b142fdcd1f167f5253726cbb9ba752fbfeea64e9dc58008cfb1432ddca205c","df9e076124de629557803da35505dfc86ff902b3852cd2c5adaeca9b232a9589","e479d4ebc79ab5b4a0acd17a9eac9fb57fd56dae2b8d6627ef77f7784f8637d8","193e064058fea04e1909fec1cd2a02328681cc569606118262ec557b541569d4","335cee5ec15c31c879e8a4aaf1919490cf96db34ee37d93ad8bc0807e351aad4","c03c3b8f4e224a420f57a1cbeb7e65fff7cb11a9fa69bffe1b0db57e94ed9f2d","649472403bc1a043974fab70049176a36cde3d3e21df5bf16ab0a7c84f80ee05","fecba704b35acb562a1828c9ffdd9d2b5100abb5c9299722f534ee7db453f827","8feec5a1e04cf07d77ca0fc68219795fea0a6e9f97ac5ace6507f7d820b99cdf","4658dcf9701f6a01f7aa2dc8670a5bb7333f48eee7465d0825b34b480c6c3e61","12e5f0fbaedf72604dab1520fb008cf686354e2a0ac1542ecaca4033de81a52b","8ca7cc629586884d9877bf0b5221fb2d10a59d3c37cc94ba5bc844f2839df869","d3c5f4cbd12ed79040460d4e03bb4d2cdb577699603c486fd9f33182eea5b65d","6b65649efdad95c3f9d1970e543c4ed48c1804f2b8b89c91dbd2af9656c97a0f","f96c0e46fcb7e90b9ceb248aa293aa5c080d2eb86bdd452b0b97ce6d248498b7",{"version":"43a246e7bcf86393f44181bbabf4f197f35b4f5396d7678fa5e1e08a8a1d57c2","signature":"4f3b0c1c2521e95b939ecb1e29c6146fe39acd25b2197f0a27dd2a21162b8215"},{"version":"204d7bead6a27d4979484ba12f62bbd72d1e277b5ae6255327ed63bbf3c5bf2c","signature":"f40077f403d9755ae43b73f936414b7f9e87c4fab9aca33b97b92d8d73565a41"},{"version":"8601e04510c7df2c6cc2a8bc00eb9ad903c10fc8e506537f838393eff4be9b4f","signature":"a016135b24f80c0290a7a81eb9baf9ce18a85d6deb320dde2b61bbff82eba3dc"},{"version":"5ddc493434a78735287f8a65127337380a324c2b8d0988edbcc8e05547b065d1","signature":"323bf8b0577c9da7e3d506bc14a79a006a620adf04e245001069592bb6f7663e"},"16976e5481a0abbe56fa82010ecd47c152e76d9c7ecb5977d68a1b2c4a785c91","749f3bd08d4fc5cc1c95e3c3b07dede327898a51cf6fa7f156456c0d46aae680","7797184093e9b9f6203d001829de6f91d142497913c67a8d0c2a5b25de005a68",{"version":"0c8e1a3e53808bee8bf71794d82d03370e14f4ad32180a6e6a8012a33bd06b23","signature":"3154e1d541636021f8615218b0ca8f72647d11aa17b6a3f6711d000667ff6b0d"},{"version":"9381818f6d814761d72f050dff7f0746959ea6ff00f06c56dab0e2d68aee99d4","signature":"3b21dfdaf1c441ef8be57f5920388bf6ac2fd7a4d3d496e6ef2332487b6404cd"},{"version":"7bc1eede38104d8e46949e21c3cc8b261d1cf349d6b6c0a6c572cae560f6c0ba","signature":"8b6ae8face26b8cf95f138b1b6d6ef364177b5d043cc3893f6af8efe27f8758c"},{"version":"3bf1f7bae9762aaf7bedc8e5f6c922246dca0d1c82308b6fa55e9fb194437b52","signature":"9235ffa49d1c141de6e279be74612cd68a3fecf236755073477abd7491c5fbba"},{"version":"b6b3a80bbde21229008cf0c46b9b04ede1e6c75bdf05cca8250b1af4a613ecf4","signature":"fce9bc3a3ad5e21dd185e96ffe6935bdc9c21e2a8361b88cb778507e0c228955"},{"version":"edce1de360403d25168ff8612d058ae111192e0d304e5e1b64326d2389957bb6","signature":"12e5f0fbaedf72604dab1520fb008cf686354e2a0ac1542ecaca4033de81a52b"},{"version":"e455cbef53ec15c78ee00f436e06da99fc3b4d1255d165f2722c6accebc2158d","signature":"8feec5a1e04cf07d77ca0fc68219795fea0a6e9f97ac5ace6507f7d820b99cdf"},{"version":"88b58702c0ac39372f8e94431814002a6b59cec34e1b6b67ebd73daa5b4bdb68","impliedFormat":99},{"version":"71bf5a785fb84079178707c2675d034d757c8469ec6535b2915286f232267b62","signature":"bc67d769e58a119088ada20678198c9d60d052f2b59642137e884a2031b08222"},{"version":"206d0bdf0f963e89f3ebe74c914e0a36d1d076c6b4af130ee5957cf9b9da06a9","signature":"a2588ebc6396c75a5d7087a98bce817269772652b53ea5a983ea8a68ff905f90"},{"version":"4378aa40f97e30c4166f5b6dec95a3cdecc213a1459dffd2e0a86c277e1202c6","signature":"de4db12b39857009bb96a0c86d005039e036a0c3e90a3a05d6a609e4d2ef056c"},{"version":"e87873f06fa094e76ac439c7756b264f3c76a41deb8bc7d39c1d30e0f03ef547","impliedFormat":99},{"version":"488861dc4f870c77c2f2f72c1f27a63fa2e81106f308e3fc345581938928f925","impliedFormat":99},{"version":"eff73acfacda1d3e62bb3cb5bc7200bb0257ea0c8857ce45b3fee5bfec38ad12","impliedFormat":99},{"version":"aff4ac6e11917a051b91edbb9a18735fe56bcfd8b1802ea9dbfb394ad8f6ce8e","impliedFormat":99},{"version":"1f68aed2648740ac69c6634c112fcaae4252fbae11379d6eabee09c0fbf00286","impliedFormat":99},{"version":"5e7c2eff249b4a86fb31e6b15e4353c3ddd5c8aefc253f4c3e4d9caeb4a739d4","impliedFormat":99},{"version":"14c8d1819e24a0ccb0aa64f85c61a6436c403eaf44c0e733cdaf1780fed5ec9f","impliedFormat":99},{"version":"413d50bc66826f899c842524e5f50f42d45c8cb3b26fd478a62f26ac8da3d90e","impliedFormat":99},{"version":"d9083e10a491b6f8291c7265555ba0e9d599d1f76282812c399ab7639019f365","impliedFormat":99},{"version":"09de774ebab62974edad71cb3c7c6fa786a3fda2644e6473392bd4b600a9c79c","impliedFormat":99},{"version":"e8bcc823792be321f581fcdd8d0f2639d417894e67604d884c38b699284a1a2a","impliedFormat":99},{"version":"7c99839c518dcf5ab8a741a97c190f0703c0a71e30c6d44f0b7921b0deec9f67","impliedFormat":99},{"version":"44c14e4da99cd71f9fe4e415756585cec74b9e7dc47478a837d5bedfb7db1e04","impliedFormat":99},{"version":"1f46ee2b76d9ae1159deb43d14279d04bcebcb9b75de4012b14b1f7486e36f82","impliedFormat":99},{"version":"2838028b54b421306639f4419606306b940a5c5fcc5bc485954cbb0ab84d90f4","impliedFormat":99},{"version":"7116e0399952e03afe9749a77ceaca29b0e1950989375066a9ddc9cb0b7dd252","impliedFormat":99},{"version":"45b2b5969e8ab24464c5162981b20be81538de2f8d800bc9f10c7b9344f8738c","signature":"0a10fcd3d03e65e883a249a3884aa2213335fb3895d3714ea0ee093156d47a01"},{"version":"633c845ba3f251eb540050213e96ec260626f1ae945a7ac0c0690bb1557d0be6","signature":"e9c85b6970a65f80ce59ba9948612358b403107a845703f264e9abc30fce0196"},{"version":"63b6b9e9f65cabdcad0747bfa0ef077d1c81cc011752fc804c23f765656e562b","signature":"784dae497eda71ce919de0738b99c70c7aed06a49a5c08aaf6ba9cb87f9e3a24"},{"version":"0e9a2de05415698d7a7c64addf4d471b35e1a58b927692d9143151a47b1c444c","signature":"8ca7cc629586884d9877bf0b5221fb2d10a59d3c37cc94ba5bc844f2839df869"},{"version":"94b7dc89b5a726ad5c2fdf9fb036ba0a398d5192851da5e893314482baa5482c","signature":"fecba704b35acb562a1828c9ffdd9d2b5100abb5c9299722f534ee7db453f827"},{"version":"d40a734e370d9535ab4395c7bd220534c85e911bce30775d6c353d2261adefee","signature":"853f06d2453208b7068804160be241f18f1b637166d8b2d767757917aaff5dbd"},{"version":"f9aabae9704e03b2fa67c6a59a42056749165e558e56510c8001d8a9654eb8b3","signature":"1e682ce81bfc8f7e9b04fade70dbec72ded282ded6e1f1da5946693b8e3c89b2"},{"version":"f3ee255e9f3c78d4de961e4130f24b03c0864e04e61f43d77d928dd07c402e14","signature":"fa5c0f99cbd679f80db406a2766d72d288cd7b7388c3023313379a3ed14c6141"},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"a12d953aa755b14ac1d28ecdc1e184f3285b01d6d1e58abc11bf1826bc9d80e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"a38efe83ff77c34e0f418a806a01ca3910c02ee7d64212a59d59bca6c2c38fa1","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"3fe4022ba1e738034e38ad9afacbf0f1f16b458ed516326f5bf9e4a31e9be1dc","impliedFormat":1},{"version":"a957197054b074bcdf5555d26286e8461680c7c878040d0f4e2d5509a7524944","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"e9b97d69510658d2f4199b7d384326b7c4053b9e6645f5c19e1c2a54ede427fc","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"f478f6f5902dc144c0d6d7bdc919c5177cac4d17a8ca8653c2daf6d7dc94317f","affectsGlobalScope":true,"impliedFormat":1},{"version":"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","impliedFormat":1},{"version":"e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"88bc59b32d0d5b4e5d9632ac38edea23454057e643684c3c0b94511296f2998c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a0a1dda070290b92da5a50113b73ecc4dd6bcbffad66e3c86503d483eafbadcf","impliedFormat":1},{"version":"59dcad36c4549175a25998f6a8b33c1df8e18df9c12ebad1dfb25af13fd4b1ce","impliedFormat":1},{"version":"206a70e72af3e24688397b81304358526ce70d020e4c2606c4acfd1fa1e81fb2","impliedFormat":1},{"version":"017caf5d2a8ef581cf94f678af6ce7415e06956317946315560f1487b9a56167","impliedFormat":1},{"version":"528b62e4272e3ddfb50e8eed9e359dedea0a4d171c3eb8f337f4892aac37b24b","impliedFormat":1},{"version":"d71535813e39c23baa113bc4a29a0e187b87d1105ccc8c5a6ebaca38d9a9bff2","impliedFormat":1},{"version":"4c3148420835de895b9218b2cea321a4607008ba5cefa57b2a57e1c1ef85d22f","affectsGlobalScope":true,"impliedFormat":1},{"version":"f72bc8fe16da67e4e3268599295797b202b95e54bd215a03f97e925dd1502a36","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"915e18c559321c0afaa8d34674d3eb77e1ded12c3e85bf2a9891ec48b07a1ca5","affectsGlobalScope":true,"impliedFormat":1},{"version":"636302a00dfd1f9fe6e8e91e4e9350c6518dcc8d51a474e4fc3a9ba07135100b","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"e1ce1d622f1e561f6cdf246372ead3bbc07ce0342024d0e9c7caf3136f712698","impliedFormat":1},{"version":"199c8269497136f3a0f4da1d1d90ab033f899f070e0dd801946f2a241c8abba2","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"27e4532aaaa1665d0dd19023321e4dc12a35a741d6b8e1ca3517fcc2544e0efe","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"6266d94fb9165d42716e45f3a537ca9f59c07b1dfa8394a659acf139134807db","affectsGlobalScope":true,"impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"98ffdf93dfdd206516971d28e3e473f417a5cfd41172e46b4ce45008f640588e","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true,"impliedFormat":1},{"version":"a7692a54334fd08960cd0c610ff509c2caa93998e0dcefa54021489bcc67c22d","affectsGlobalScope":true,"impliedFormat":1},{"version":"74736930d108365d7bbe740c7154706ccfb1b2a3855a897963ab3e5c07ecbf19","impliedFormat":1},{"version":"3a051941721a7f905544732b0eb819c8d88333a96576b13af08b82c4f17581e4","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"1e25f8d0a8573cafd5b5a16af22d26ab872068a693b9dbccd3f72846ab373655","affectsGlobalScope":true,"impliedFormat":1},{"version":"3797dd6f4ea3dc15f356f8cdd3128bfa18122213b38a80d6c1f05d8e13cbdad8","impliedFormat":1},{"version":"ad90122e1cb599b3bc06a11710eb5489101be678f2920f2322b0ac3e195af78d","impliedFormat":1},{"version":"e2b48abff5a8adc6bb1cd13a702b9ef05e6045a98e7cfa95a8779b53b6d0e69d","impliedFormat":1},{"version":"ffb518fc55181aefd066c690dbc0f8fa6a1533c8ddac595469c8c5f7fda2d756","affectsGlobalScope":true,"impliedFormat":1},{"version":"88491d1b46e3e5262d862b5fe94f673185762d827669ed484345a8a2e82a3535","impliedFormat":1}],"root":[[199,202],205,[245,248],[252,258],[260,262],[279,286]],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"importHelpers":true,"module":99,"noEmitOnError":true,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":false,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":5,"tsBuildInfoFile":"./tsconfig.tsbuildinfo","useUnknownInCatchVariables":true,"verbatimModuleSyntax":true},"referencedMap":[[385,1],[85,2],[331,3],[332,3],[333,4],[292,5],[334,6],[335,7],[336,8],[287,1],[290,9],[288,1],[289,1],[337,10],[338,11],[339,12],[340,13],[341,14],[342,15],[343,15],[345,1],[344,16],[346,17],[347,18],[348,19],[330,20],[291,1],[349,21],[350,22],[351,23],[384,24],[352,25],[353,26],[354,27],[355,28],[356,29],[357,30],[358,31],[359,32],[360,33],[361,34],[362,34],[363,35],[364,1],[365,1],[366,36],[368,37],[367,38],[369,39],[370,40],[371,41],[372,42],[373,43],[374,44],[375,45],[376,46],[377,47],[378,48],[379,49],[380,50],[381,51],[382,52],[383,53],[387,54],[84,1],[272,1],[89,55],[88,56],[87,57],[271,58],[270,59],[274,60],[273,61],[276,62],[275,63],[123,64],[103,65],[104,65],[105,65],[106,65],[107,65],[108,65],[109,66],[111,65],[110,65],[122,67],[112,65],[114,65],[113,65],[116,65],[115,65],[117,65],[118,65],[119,65],[120,65],[121,65],[102,65],[101,68],[265,69],[263,70],[264,70],[268,71],[266,70],[267,70],[269,70],[86,1],[74,1],[167,72],[79,72],[75,73],[259,74],[78,75],[203,76],[76,77],[77,78],[278,79],[277,80],[100,81],[99,82],[125,83],[124,84],[126,85],[386,86],[96,87],[95,1],[60,88],[59,1],[57,1],[58,1],[10,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[21,1],[22,1],[4,1],[23,1],[27,1],[24,1],[25,1],[26,1],[28,1],[29,1],[30,1],[5,1],[31,1],[32,1],[33,1],[34,1],[6,1],[38,1],[35,1],[36,1],[37,1],[39,1],[7,1],[40,1],[45,1],[46,1],[41,1],[42,1],[43,1],[44,1],[8,1],[50,1],[47,1],[48,1],[49,1],[51,1],[9,1],[52,1],[53,1],[54,1],[56,1],[55,1],[1,1],[308,89],[318,90],[307,89],[328,91],[299,92],[298,93],[327,94],[321,95],[326,96],[301,97],[315,98],[300,99],[324,100],[296,101],[295,94],[325,102],[297,103],[302,104],[303,1],[306,104],[293,1],[329,105],[319,106],[310,107],[311,108],[313,109],[309,110],[312,111],[322,94],[304,112],[305,113],[314,114],[294,115],[317,106],[316,104],[320,1],[323,116],[98,117],[94,1],[97,118],[91,119],[90,2],[93,120],[92,121],[149,122],[150,123],[151,124],[139,125],[140,126],[141,127],[142,128],[143,129],[148,130],[144,131],[145,132],[146,133],[147,132],[62,134],[63,135],[61,136],[73,137],[69,138],[68,139],[64,1],[70,140],[72,141],[71,142],[66,143],[67,144],[65,145],[249,1],[250,146],[251,147],[243,148],[239,127],[242,149],[238,127],[240,127],[241,127],[237,127],[244,150],[220,151],[224,152],[222,151],[223,151],[221,151],[208,151],[213,151],[209,151],[206,151],[211,151],[207,148],[212,151],[218,151],[210,151],[219,153],[215,151],[214,151],[216,151],[217,151],[232,151],[233,151],[236,154],[231,151],[225,151],[228,151],[227,151],[226,151],[229,151],[230,151],[234,151],[235,151],[200,155],[199,156],[284,157],[285,158],[258,159],[257,159],[282,160],[283,159],[286,161],[202,162],[201,163],[252,164],[254,165],[253,164],[256,166],[246,167],[248,168],[247,169],[205,170],[245,171],[255,172],[260,173],[261,174],[281,175],[280,176],[279,177],[262,174],[168,178],[166,179],[80,180],[83,77],[81,74],[204,181],[152,1],[165,182],[154,183],[153,184],[157,185],[155,186],[156,186],[158,187],[159,183],[164,188],[161,189],[162,190],[163,191],[160,190],[82,192],[138,193],[136,194],[133,195],[134,196],[135,197],[137,198],[129,199],[130,200],[131,201],[128,202],[127,1],[132,203],[170,204],[177,127],[171,205],[172,206],[173,206],[174,207],[175,207],[176,208],[181,209],[179,210],[178,211],[182,212],[180,213],[183,214],[184,215],[169,127],[198,216],[185,217],[186,127],[187,127],[188,127],[196,218],[193,127],[189,127],[195,127],[190,127],[191,127],[194,127],[192,219],[197,1]],"latestChangedDtsFile":"./index.d.ts","version":"5.8.3"}
|
|
1
|
+
{"fileNames":["../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.d.ts","../../../../node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/modules/index.d.ts","../../../ctx/lib/context/slice.d.ts","../../../ctx/lib/context/container.d.ts","../../../ctx/lib/context/index.d.ts","../../../ctx/lib/inspector/meta.d.ts","../../../ctx/lib/timer/timer.d.ts","../../../ctx/lib/timer/clock.d.ts","../../../ctx/lib/timer/index.d.ts","../../../ctx/lib/inspector/inspector.d.ts","../../../ctx/lib/inspector/index.d.ts","../../../ctx/lib/plugin/ctx.d.ts","../../../ctx/lib/plugin/types.d.ts","../../../ctx/lib/plugin/index.d.ts","../../../ctx/lib/index.d.ts","../../../../node_modules/.pnpm/orderedmap@2.1.1/node_modules/orderedmap/dist/index.d.ts","../../../../node_modules/.pnpm/prosemirror-model@1.25.1/node_modules/prosemirror-model/dist/index.d.ts","../../../../node_modules/.pnpm/prosemirror-transform@1.10.4/node_modules/prosemirror-transform/dist/index.d.ts","../../../../node_modules/.pnpm/prosemirror-view@1.40.0/node_modules/prosemirror-view/dist/index.d.ts","../../../../node_modules/.pnpm/prosemirror-state@1.4.3/node_modules/prosemirror-state/dist/index.d.ts","../../../../node_modules/.pnpm/prosemirror-inputrules@1.5.0/node_modules/prosemirror-inputrules/dist/index.d.ts","../../../prose/lib/inputrules.d.ts","../../../prose/lib/state.d.ts","../../../prose/lib/view.d.ts","../../../prose/lib/model.d.ts","../../../../node_modules/.pnpm/@types+unist@3.0.3/node_modules/@types/unist/index.d.ts","../../../../node_modules/.pnpm/@types+mdast@4.0.4/node_modules/@types/mdast/index.d.ts","../../../../node_modules/.pnpm/micromark-util-types@2.0.2/node_modules/micromark-util-types/index.d.ts","../../../../node_modules/.pnpm/mdast-util-from-markdown@2.0.2/node_modules/mdast-util-from-markdown/lib/types.d.ts","../../../../node_modules/.pnpm/mdast-util-from-markdown@2.0.2/node_modules/mdast-util-from-markdown/lib/index.d.ts","../../../../node_modules/.pnpm/mdast-util-from-markdown@2.0.2/node_modules/mdast-util-from-markdown/index.d.ts","../../../../node_modules/.pnpm/vfile-message@4.0.2/node_modules/vfile-message/lib/index.d.ts","../../../../node_modules/.pnpm/vfile-message@4.0.2/node_modules/vfile-message/index.d.ts","../../../../node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/index.d.ts","../../../../node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/index.d.ts","../../../../node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/callable-instance.d.ts","../../../../node_modules/.pnpm/trough@2.2.0/node_modules/trough/lib/index.d.ts","../../../../node_modules/.pnpm/trough@2.2.0/node_modules/trough/index.d.ts","../../../../node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/index.d.ts","../../../../node_modules/.pnpm/unified@11.0.5/node_modules/unified/index.d.ts","../../../../node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/lib/index.d.ts","../../../../node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/index.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/types.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/index.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/blockquote.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/break.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/code.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/definition.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/emphasis.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/heading.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/html.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image-reference.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/inline-code.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link-reference.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list-item.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/paragraph.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/root.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/strong.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/text.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/index.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/index.d.ts","../../../../node_modules/.pnpm/remark-stringify@11.0.0/node_modules/remark-stringify/lib/index.d.ts","../../../../node_modules/.pnpm/remark-stringify@11.0.0/node_modules/remark-stringify/index.d.ts","../../../../node_modules/.pnpm/remark@15.0.1/node_modules/remark/index.d.ts","../../../transformer/lib/utility/stack.d.ts","../../../transformer/lib/utility/index.d.ts","../../../transformer/lib/serializer/stack-element.d.ts","../../../transformer/lib/serializer/state.d.ts","../../../transformer/lib/serializer/types.d.ts","../../../transformer/lib/utility/types.d.ts","../../../transformer/lib/parser/stack-element.d.ts","../../../transformer/lib/parser/state.d.ts","../../../transformer/lib/parser/types.d.ts","../../../transformer/lib/parser/index.d.ts","../../../transformer/lib/serializer/index.d.ts","../../../transformer/lib/index.d.ts","../../../core/lib/internal-plugin/atoms.d.ts","../../../core/lib/internal-plugin/commands.d.ts","../../../core/lib/internal-plugin/config.d.ts","../../../core/lib/internal-plugin/editor-state.d.ts","../../../core/lib/internal-plugin/editor-view.d.ts","../../../core/lib/internal-plugin/init.d.ts","../../../core/lib/internal-plugin/parser.d.ts","../../../core/lib/internal-plugin/schema.d.ts","../../../core/lib/internal-plugin/serializer.d.ts","../../../core/lib/internal-plugin/keymap.d.ts","../../../core/lib/internal-plugin/index.d.ts","../../../core/lib/editor/editor.d.ts","../../../core/lib/editor/index.d.ts","../../../core/lib/index.d.ts","../../../prose/lib/toolkit/browser.d.ts","../../../prose/lib/toolkit/input-rules/custom-input-rules.d.ts","../../../prose/lib/toolkit/input-rules/common.d.ts","../../../prose/lib/toolkit/input-rules/mark-rule.d.ts","../../../prose/lib/toolkit/input-rules/node-rule.d.ts","../../../prose/lib/toolkit/input-rules/index.d.ts","../../../prose/lib/toolkit/position/index.d.ts","../../../prose/lib/toolkit/prose/helper.d.ts","../../../prose/lib/toolkit/prose/types.d.ts","../../../prose/lib/toolkit/prose/node.d.ts","../../../prose/lib/toolkit/prose/schema.d.ts","../../../prose/lib/toolkit/prose/selection.d.ts","../../../prose/lib/toolkit/prose/index.d.ts","../../../prose/lib/toolkit/index.d.ts","../../../prose/lib/index.d.ts","../../../../node_modules/.pnpm/prosemirror-commands@1.7.1/node_modules/prosemirror-commands/dist/index.d.ts","../../../prose/lib/commands.d.ts","../../../utils/lib/composable/utils.d.ts","../../../utils/lib/composable/$command.d.ts","../../../utils/lib/composable/$input-rule.d.ts","../../../utils/lib/composable/$mark.d.ts","../../../utils/lib/composable/$node.d.ts","../../../utils/lib/composable/$prose.d.ts","../../../utils/lib/composable/$shortcut.d.ts","../../../utils/lib/composable/$view.d.ts","../../../utils/lib/composable/$ctx.d.ts","../../../utils/lib/composable/composed/$node-schema.d.ts","../../../utils/lib/composable/composed/$mark-schema.d.ts","../../../utils/lib/composable/composed/$use-keymap.d.ts","../../../utils/lib/composable/composed/$attr.d.ts","../../../utils/lib/composable/composed/$remark.d.ts","../../../utils/lib/composable/composed/index.d.ts","../../../utils/lib/composable/index.d.ts","../../../utils/lib/macro/call-command.d.ts","../../../utils/lib/macro/force-update.d.ts","../../../utils/lib/macro/get-html.d.ts","../../../utils/lib/macro/get-markdown.d.ts","../../../utils/lib/macro/insert.d.ts","../../../utils/lib/macro/outline.d.ts","../../../utils/lib/macro/replace-all.d.ts","../../../utils/lib/macro/set-attr.d.ts","../../../utils/lib/macro/insert-pos.d.ts","../../../utils/lib/macro/replace-range.d.ts","../../../utils/lib/macro/markdown-to-slice.d.ts","../../../utils/lib/macro/index.d.ts","../../../utils/lib/pipe.d.ts","../../../utils/lib/index.d.ts","../src/__internal__/with-meta.ts","../src/__internal__/index.ts","../src/mark/strike-through.ts","../src/mark/index.ts","../../../../node_modules/.pnpm/prosemirror-tables@1.7.1/node_modules/prosemirror-tables/dist/index.d.ts","../../../prose/lib/tables.d.ts","../src/node/table/schema.ts","../../preset-commonmark/lib/node/doc.d.ts","../../preset-commonmark/lib/node/heading.d.ts","../../preset-commonmark/lib/node/blockquote.d.ts","../../preset-commonmark/lib/node/code-block.d.ts","../../preset-commonmark/lib/node/image.d.ts","../../preset-commonmark/lib/node/hardbreak.d.ts","../../preset-commonmark/lib/node/hr.d.ts","../../preset-commonmark/lib/node/bullet-list.d.ts","../../preset-commonmark/lib/node/ordered-list.d.ts","../../preset-commonmark/lib/node/list-item.d.ts","../../preset-commonmark/lib/node/paragraph.d.ts","../../preset-commonmark/lib/node/text.d.ts","../../preset-commonmark/lib/node/html.d.ts","../../preset-commonmark/lib/node/index.d.ts","../../preset-commonmark/lib/mark/emphasis.d.ts","../../preset-commonmark/lib/mark/strong.d.ts","../../preset-commonmark/lib/mark/inline-code.d.ts","../../preset-commonmark/lib/mark/link.d.ts","../../preset-commonmark/lib/mark/index.d.ts","../../preset-commonmark/lib/plugin/remark-add-order-in-list-plugin.d.ts","../../preset-commonmark/lib/plugin/remark-line-break.d.ts","../../preset-commonmark/lib/plugin/remark-inline-link-plugin.d.ts","../../preset-commonmark/lib/plugin/remark-html-transformer.d.ts","../../preset-commonmark/lib/plugin/remark-marker-plugin.d.ts","../../preset-commonmark/lib/plugin/remark-preserve-empty-line.d.ts","../../preset-commonmark/lib/plugin/inline-nodes-cursor-plugin.d.ts","../../preset-commonmark/lib/plugin/hardbreak-clear-mark-plugin.d.ts","../../preset-commonmark/lib/plugin/hardbreak-filter-plugin.d.ts","../../preset-commonmark/lib/plugin/sync-heading-id-plugin.d.ts","../../preset-commonmark/lib/plugin/sync-list-order-plugin.d.ts","../../preset-commonmark/lib/plugin/index.d.ts","../../preset-commonmark/lib/composed/schema.d.ts","../../preset-commonmark/lib/composed/inputrules.d.ts","../../preset-commonmark/lib/composed/commands.d.ts","../../preset-commonmark/lib/composed/keymap.d.ts","../../preset-commonmark/lib/composed/plugins.d.ts","../../preset-commonmark/lib/composed/index.d.ts","../../preset-commonmark/lib/commands/index.d.ts","../../preset-commonmark/lib/index.d.ts","../src/node/table/utils.ts","../src/node/table/command.ts","../src/node/table/input.ts","../src/node/table/index.ts","../../../exception/lib/code.d.ts","../../../exception/lib/error.d.ts","../../../exception/lib/index.d.ts","../src/node/footnote/definition.ts","../src/node/footnote/reference.ts","../src/node/footnote/index.ts","../src/node/task-list-item.ts","../src/node/index.ts","../src/composed/keymap.ts","../src/composed/inputrules.ts","../../../../node_modules/.pnpm/prosemirror-safari-ime-span@1.0.2/node_modules/prosemirror-safari-ime-span/dist/index.d.ts","../src/plugin/auto-insert-span-plugin.ts","../src/plugin/column-resizing-plugin.ts","../src/plugin/table-editing-plugin.ts","../../../../node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/lib/html.d.ts","../../../../node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/lib/syntax.d.ts","../../../../node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/index.d.ts","../../../../node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/lib/html.d.ts","../../../../node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/lib/syntax.d.ts","../../../../node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/index.d.ts","../../../../node_modules/.pnpm/micromark-extension-gfm@3.0.0/node_modules/micromark-extension-gfm/index.d.ts","../../../../node_modules/.pnpm/mdast-util-gfm-footnote@2.1.0/node_modules/mdast-util-gfm-footnote/lib/index.d.ts","../../../../node_modules/.pnpm/mdast-util-gfm-footnote@2.1.0/node_modules/mdast-util-gfm-footnote/index.d.ts","../../../../node_modules/.pnpm/markdown-table@3.0.4/node_modules/markdown-table/index.d.ts","../../../../node_modules/.pnpm/mdast-util-gfm-table@2.0.0/node_modules/mdast-util-gfm-table/lib/index.d.ts","../../../../node_modules/.pnpm/mdast-util-gfm-table@2.0.0/node_modules/mdast-util-gfm-table/index.d.ts","../../../../node_modules/.pnpm/mdast-util-gfm@3.1.0/node_modules/mdast-util-gfm/lib/index.d.ts","../../../../node_modules/.pnpm/mdast-util-gfm@3.1.0/node_modules/mdast-util-gfm/index.d.ts","../../../../node_modules/.pnpm/remark-gfm@4.0.1/node_modules/remark-gfm/lib/index.d.ts","../../../../node_modules/.pnpm/remark-gfm@4.0.1/node_modules/remark-gfm/index.d.ts","../src/plugin/remark-gfm-plugin.ts","../src/plugin/keep-table-align-plugin.ts","../src/plugin/index.ts","../src/composed/plugins.ts","../src/composed/schema.ts","../src/composed/commands.ts","../src/composed/index.ts","../src/index.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/compatibility/disposable.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/compatibility/indexable.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/compatibility/iterators.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/compatibility/index.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/globals.typedarray.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/buffer.buffer.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/globals.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/assert.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/buffer.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/child_process.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/cluster.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/console.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/constants.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/crypto.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/dgram.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/dns.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/domain.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/dom-events.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/events.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/fs.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/http.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/http2.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/https.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/inspector.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/module.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/net.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/os.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/path.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/process.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/punycode.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/querystring.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/readline.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/repl.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/sea.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/sqlite.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/stream.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/stream/web.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/test.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/timers.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/tls.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/trace_events.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/tty.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/url.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/util.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/v8.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/vm.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/wasi.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/zlib.d.ts","../../../../node_modules/.pnpm/@types+node@22.15.32/node_modules/@types/node/index.d.ts","../../../../node_modules/.pnpm/@types+estree@1.0.8/node_modules/@types/estree/index.d.ts","../../../../node_modules/.pnpm/rollup@4.44.0/node_modules/rollup/dist/rollup.d.ts","../../../../node_modules/.pnpm/@types+rollup-plugin-auto-external@2.0.5/node_modules/@types/rollup-plugin-auto-external/index.d.ts"],"fileIdsList":[[293,335],[84,293,335],[293,332,335],[293,334,335],[335],[293,335,340,370],[293,335,336,341,347,348,355,367,378],[293,335,336,337,347,355],[288,289,290,293,335],[293,335,338,379],[293,335,339,340,348,356],[293,335,340,367,375],[293,335,341,343,347,355],[293,334,335,342],[293,335,343,344],[293,335,345,347],[293,334,335,347],[293,335,347,348,349,367,378],[293,335,347,348,349,362,367,370],[293,330,335],[293,330,335,343,347,350,355,367,378],[293,335,347,348,350,351,355,367,375,378],[293,335,350,352,367,375,378],[291,292,293,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384],[293,335,347,353],[293,335,354,378],[293,335,343,347,355,367],[293,335,356],[293,335,357],[293,334,335,358],[293,332,333,334,335,336,337,338,339,340,341,342,343,344,345,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384],[293,335,360],[293,335,361],[293,335,347,362,363],[293,335,362,364,379,381],[293,335,347,367,368,370],[293,335,369,370],[293,335,367,368],[293,335,370],[293,335,371],[293,332,335,367],[293,335,347,373,374],[293,335,373,374],[293,335,340,355,367,375],[293,335,376],[293,335,355,377],[293,335,350,361,378],[293,335,340,379],[293,335,367,380],[293,335,354,381],[293,335,382],[293,335,347,349,358,367,370,378,381,383],[293,335,367,384],[293,335,387],[86,87,88,89,266,269,293,335],[85,86,87,89,266,269,293,335],[85,86,89,266,269,293,335],[123,271,275,293,335],[89,123,272,275,293,335],[89,123,272,274,293,335],[85,89,123,272,273,275,293,335],[272,275,276,293,335],[89,123,272,275,277,293,335],[101,102,122,293,335],[85,123,272,275,293,335],[85,293,335],[103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,293,335],[84,85,293,335],[86,89,264,265,269,293,335],[86,89,266,269,293,335],[86,89,266,267,268,293,335],[75,78,293,335],[74,293,335],[78,293,335],[75,76,77,293,335],[75,76,77,78,293,335],[75,293,335],[75,76,78,293,335],[270,277,278,293,335],[279,293,335],[85,86,89,98,99,100,125,266,269,275,293,335],[85,89,93,98,100,125,275,293,335],[85,98,100,123,124,125,272,275,293,335],[85,93,98,100,123,125,272,275,293,335],[85,98,100,125,293,335],[293,335,386,387],[95,293,335],[59,293,335],[293,302,306,335,378],[293,302,335,367,378],[293,297,335],[293,299,302,335,375,378],[293,335,355,375],[293,335,385],[293,297,335,385],[293,299,302,335,355,378],[293,294,295,298,301,335,347,367,378],[293,302,309,335],[293,294,300,335],[293,302,323,324,335],[293,298,302,335,370,378,385],[293,323,335,385],[293,296,297,335,385],[293,302,335],[293,296,297,298,299,300,301,302,303,304,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,324,325,326,327,328,329,335],[293,302,317,335],[293,302,309,310,335],[293,300,302,310,311,335],[293,301,335],[293,294,297,302,335],[293,302,306,310,311,335],[293,306,335],[293,300,302,305,335,378],[293,294,299,302,309,335],[293,335,367],[293,297,302,323,335,383,385],[93,97,293,335],[84,93,94,96,98,100,125,293,335],[90,293,335],[91,92,293,335],[84,91,93,293,335],[73,149,293,335],[150,293,335],[149,151,293,335],[73,80,81,82,125,138,151,293,335],[73,81,293,335],[73,293,335],[73,81,83,138,293,335],[73,82,293,335],[139,140,141,142,143,144,145,146,147,148,293,335],[73,151,293,335],[73,138,293,335],[73,83,138,293,335],[61,293,335],[61,62,293,335],[62,293,335],[63,67,69,72,293,335],[64,68,293,335],[63,64,67,293,335],[63,67,69,73,293,335],[70,71,293,335],[69,70,293,335],[65,293,335],[65,66,293,335],[66,293,335],[250,293,335],[251,293,335],[83,199,293,335],[238,239,240,241,242,293,335],[73,220,225,237,243,244,293,335],[199,293,335],[221,222,223,224,293,335],[207,208,209,210,211,212,213,214,215,216,217,218,219,293,335],[226,227,228,229,230,231,232,233,234,235,236,293,335],[60,200,293,335],[60,73,293,335],[60,203,257,293,335],[60,258,259,283,284,285,293,335],[60,73,203,257,293,335],[60,73,282,293,335],[60,203,257,282,286,293,335],[60,202,293,335],[60,152,167,169,199,201,293,335],[60,199,201,252,293,335],[60,253,254,293,335],[60,249,255,256,293,335],[60,81,167,199,201,205,206,245,246,293,335],[60,206,246,247,248,293,335],[60,80,81,152,199,201,206,246,247,293,335],[60,83,138,199,201,205,293,335],[60,73,81,83,167,205,206,293,335],[60,80,199,201,245,252,293,335],[60,199,201,260,293,335],[60,199,201,205,293,335],[60,261,262,263,280,281,293,335],[60,81,83,199,201,293,335],[60,199,201,279,293,335],[168,293,335],[166,293,335],[79,293,335],[204,293,335],[153,158,159,165,293,335],[81,83,293,335],[80,81,293,335],[154,155,156,157,293,335],[80,83,155,293,335],[82,293,335],[160,162,163,164,293,335],[83,161,293,335],[83,293,335],[81,83,161,293,335],[77,293,335],[128,136,137,293,335],[134,135,293,335],[83,128,293,335],[83,128,133,135,293,335],[83,132,134,293,335],[130,131,293,335],[128,138,293,335],[83,128,129,131,293,335],[83,130,293,335],[127,132,293,335],[83,98,100,125,126,131,135,293,335],[73,152,170,293,335],[73,80,170,293,335],[73,83,138,170,293,335],[73,81,170,293,335],[73,81,152,170,293,335],[73,82,170,185,293,335],[83,178,293,335],[73,138,173,178,293,335],[73,138,174,178,293,335],[73,138,178,293,335],[73,81,176,178,293,335],[179,180,181,182,183,293,335],[170,171,172,173,174,175,176,177,178,184,293,335],[185,197,198,293,335],[73,152,293,335],[186,187,188,189,190,191,192,193,194,195,196,293,335],[73,83,293,335]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"b8f34dd1757f68e03262b1ca3ddfa668a855b872f8bdd5224d6f993a7b37dc2c","impliedFormat":99},"73cc073d7a102374d6b9bcdbde8072f3aa3c8f86767f562086b6a7a7df5f22c0","e66deb230968faf1a8f37ea6f217f319dd0dad7a39ead1bf5d4f54e2eb5ce4bd","13ee17bbdd42459d6450899cea1999aab64c723328e773c0be5e8a13b51b6259","f79062b892847b4e33d0b730bf9dcf66ac24fc3fe9df7bba4d0997c6bdf6cbde","20f3a5481b2c009533e9e6b864cbd4ae3c09ccfca0577918b3587cda295e7071","2797c77cc0da0836a37c8c1fe64942a999c73f811f5481d827ac7d8cb9ddedd3","5a40849c3a5d5a8c2aa754fc964830ea344c94bfeddd4b442bdeae899e2f5339","848836f528d4ac80a5b3212c719225a3ba09406d44fea755cb642299a68d7056","fae981646738728f2b882c14625b99c23c430400a21c081dc6888d9703bd6c68","45c8a077eb724bae4e1fc0d15f76618650e32e55c4582dc1f27153ecdeb66ca6","302c082712d8fe41be387cd34af45b163b5314c04ddeefe53b1cb57fe46d3221","0c1a84d7b974db1961c6e9ab71d5257dfa38d99fb6300f22de55750526c9daef","69bc40bb169ea922cab72dc2142f37e75b44095cf1e79ca1b2809164c284de57",{"version":"264f935450101e4b000eb351cf75c9d799ca20a278b260a9e5770303b5f2b6a3","impliedFormat":99},{"version":"a3ffe0da859afda5b09afdcc10a4e85196a81877e4ef1447604ce9a9dfb74a58","impliedFormat":99},{"version":"b0585389e0dcd131241ff48a6b4e8bebdf97813850183ccfa2a60118532938dd","impliedFormat":99},{"version":"8db2708d71d93131112a8db84847a1245fb170f78fdc7db916ad955dc6c42be1","affectsGlobalScope":true,"impliedFormat":99},{"version":"e29c3246bccba476f4285c89ea0c026b6bfdf9e3d15b6edf2d50e7ea1a59ecfb","impliedFormat":99},{"version":"2a04530c2579ddcf996e1cf017caaba573e0ebf8a5b9e45d3bc25ba4489fb5a3","impliedFormat":99},"f41d91b2db1112fcc673a6862fe68cadcbdd0a66ed16b47ac74a0a6da8932bb4","e689cc8cd8a102d31c9d3a7b0db0028594202093c4aca25982b425e8ae744556","1b4ed9deaba72d4bc8495bf46db690dbf91040da0cb2401db10bad162732c0e2","478e59ac0830a0f6360236632d0d589fb0211183aa1ab82292fbca529c0cce35",{"version":"89121c1bf2990f5219bfd802a3e7fc557de447c62058d6af68d6b6348d64499a","impliedFormat":1},{"version":"d4a22007b481fe2a2e6bfd3a42c00cd62d41edb36d30fc4697df2692e9891fc8","impliedFormat":1},{"version":"a5dbd4c9941b614526619bad31047ddd5f504ec4cdad88d6117b549faef34dd3","impliedFormat":99},{"version":"011423c04bfafb915ceb4faec12ea882d60acbe482780a667fa5095796c320f8","impliedFormat":99},{"version":"f8eb2909590ec619643841ead2fc4b4b183fbd859848ef051295d35fef9d8469","impliedFormat":99},{"version":"fe784567dd721417e2c4c7c1d7306f4b8611a4f232f5b7ce734382cf34b417d2","impliedFormat":99},{"version":"5c5d901a999dfe64746ef4244618ae0628ac8afdb07975e3d5ed66e33c767ed0","impliedFormat":99},{"version":"85d08536e6cd9787f82261674e7d566421a84d286679db1503432a6ccf9e9625","impliedFormat":99},{"version":"5702b3c2f5d248290ed99419d77ca1cc3e6c29db5847172377659c50e6303768","impliedFormat":99},{"version":"9764b2eb5b4fc0b8951468fb3dbd6cd922d7752343ef5fbf1a7cd3dfcd54a75e","impliedFormat":99},{"version":"1fc2d3fe8f31c52c802c4dee6c0157c5a1d1f6be44ece83c49174e316cf931ad","impliedFormat":99},{"version":"dc4aae103a0c812121d9db1f7a5ea98231801ed405bf577d1c9c46a893177e36","impliedFormat":99},{"version":"106d3f40907ba68d2ad8ce143a68358bad476e1cc4a5c710c11c7dbaac878308","impliedFormat":99},{"version":"42ad582d92b058b88570d5be95393cf0a6c09a29ba9aa44609465b41d39d2534","impliedFormat":99},{"version":"36e051a1e0d2f2a808dbb164d846be09b5d98e8b782b37922a3b75f57ee66698","impliedFormat":99},{"version":"4f7e6730a707b0d4971d96de3b562819ce304af770723707a58a578dd55a5e52","impliedFormat":99},{"version":"d1c1213e9176398b4d1d9aa543691181fd5ae23ae5415e80ede41f1ec1ccf72a","impliedFormat":99},{"version":"45d1e8fb4fd3e265b15f5a77866a8e21870eae4c69c473c33289a4b971e93704","impliedFormat":99},{"version":"cd40919f70c875ca07ecc5431cc740e366c008bcbe08ba14b8c78353fb4680df","impliedFormat":99},{"version":"ddfd9196f1f83997873bbe958ce99123f11b062f8309fc09d9c9667b2c284391","impliedFormat":99},{"version":"2999ba314a310f6a333199848166d008d088c6e36d090cbdcc69db67d8ae3154","impliedFormat":99},{"version":"62c1e573cd595d3204dfc02b96eba623020b181d2aa3ce6a33e030bc83bebb41","impliedFormat":99},{"version":"ca1616999d6ded0160fea978088a57df492b6c3f8c457a5879837a7e68d69033","impliedFormat":99},{"version":"835e3d95251bbc48918bb874768c13b8986b87ea60471ad8eceb6e38ddd8845e","impliedFormat":99},{"version":"de54e18f04dbcc892a4b4241b9e4c233cfce9be02ac5f43a631bbc25f479cd84","impliedFormat":99},{"version":"453fb9934e71eb8b52347e581b36c01d7751121a75a5cd1a96e3237e3fd9fc7e","impliedFormat":99},{"version":"bc1a1d0eba489e3eb5c2a4aa8cd986c700692b07a76a60b73a3c31e52c7ef983","impliedFormat":99},{"version":"4098e612efd242b5e203c5c0b9afbf7473209905ab2830598be5c7b3942643d0","impliedFormat":99},{"version":"28410cfb9a798bd7d0327fbf0afd4c4038799b1d6a3f86116dc972e31156b6d2","impliedFormat":99},{"version":"514ae9be6724e2164eb38f2a903ef56cf1d0e6ddb62d0d40f155f32d1317c116","impliedFormat":99},{"version":"970e5e94a9071fd5b5c41e2710c0ef7d73e7f7732911681592669e3f7bd06308","impliedFormat":99},{"version":"491fb8b0e0aef777cec1339cb8f5a1a599ed4973ee22a2f02812dd0f48bd78c1","impliedFormat":99},{"version":"6acf0b3018881977d2cfe4382ac3e3db7e103904c4b634be908f1ade06eb302d","impliedFormat":99},{"version":"2dbb2e03b4b7f6524ad5683e7b5aa2e6aef9c83cab1678afd8467fde6d5a3a92","impliedFormat":99},{"version":"135b12824cd5e495ea0a8f7e29aba52e1adb4581bb1e279fb179304ba60c0a44","impliedFormat":99},{"version":"e4c784392051f4bbb80304d3a909da18c98bc58b093456a09b3e3a1b7b10937f","impliedFormat":99},{"version":"2e87c3480512f057f2e7f44f6498b7e3677196e84e0884618fc9e8b6d6228bed","impliedFormat":99},{"version":"66984309d771b6b085e3369227077da237b40e798570f0a2ddbfea383db39812","impliedFormat":99},{"version":"e41be8943835ad083a4f8a558bd2a89b7fe39619ed99f1880187c75e231d033e","impliedFormat":99},{"version":"260558fff7344e4985cfc78472ae58cbc2487e406d23c1ddaf4d484618ce4cfd","impliedFormat":99},{"version":"e6274d956641c1cbd5a01a221a85a6671fd85104ed6b530f8d34ad3086804133","impliedFormat":99},{"version":"77516308358982bb05209e8c0ed6f321860e03393587d89f61055941e5bbcdd2","impliedFormat":99},{"version":"dc8652855a95ef9b9c12be8d2f5e6fc37b96aa2144f6c6f195cd1d2e07f721ee","impliedFormat":99},"e2cb25ca55e10ba874410188a53331a6b0b2bc13c0ee4d538bde50460a4e1b77","041afde4e1ac27e6fabdc2ca87882a3a766443fcfe1a1cfc3ed78bcc1c25b28a","c2049793874bbeafd60402bab915f3d285f4057e718dfdefe8a54ccc80c991dd","cd6b4aa554bc554c4eb5ef7fbb1d4e79882f2a58b5088d57b50b39eb9d203f9b","1841f713f3fed17712486dc25fa2548de11e041be80425d1901579d9a1af7fec","77629e2fdec5a9d0eaaf9f8bfe827aebe56205dd328943f6f96a6cad61d5601c","3cff9818411332b44ee20f6ecf17da9dc7d881767e06bc91017243af0d0cdf8f","4dd40b7a82bead904083845a703f8f7fac237354319bdfcd8fe49a2cc189034b","c701a34a532aa1c950d67177e303441556f7ed36ac415ed49b4eac122c2da084","8cd4c86b90f9a96ba804585a4b6a998f484a860af3dfd12641ecb9eca109274b","8cd4c86b90f9a96ba804585a4b6a998f484a860af3dfd12641ecb9eca109274b","1b92de1f5b74cf4bda283aa7688c80781e9c7273f44a4ef2db084747a94be933","650d0be7c19349ccb4c64d4b596f0f5e5adf020b8f25af5833526ddbc795a12c","52940aaf4a4d0bc045dc959ac2db1e4840c57b3a1a49286ef193534b093e4bcf","f973eff08fa4c0e8eacef74a0879a51ee36edbc9ce791a72bfdee3280a46308c","bfa8cc766520464f4a52189e6fb04b9f4eb2cde8985d1a21411661c0ec3dca3c","0011ea4409069c099d1e78da44ff6f674e8f290c8ed7f781db4520fe9527c00d","06ad6054d63c8096c20aae2af99b2144a6917340442abe12291d55a99388a154","7366f9cf857985f15e3bcfb514975a88edf7e93e3f95f601f313569534bc4796","58b7b2c5f659600b91e58f4dd35e9a144284264b6e44e89558b7785d113bfd89","dc20e16856c89c3e53554047983b040e6ea363658815cebbdccc52808ca8658c","e384f34c53375060fcd591e594d6d2f1fe20fb225e23b4dd7f292cac017901f3","095a9b0d4051ec3be9b5c538323c14d35c47b39b60ea24a5889abc889fab27b1","aee934524cd133552da7339b5c326d85dc8f058dec67c3c4f4e3d0f7239b74bf","3b8dd8f967501f6193f2d31f8a124e05186264f37f1b73d073cf39c6e123fe50","bc699cb86e1528d370a29ae99fe8f89e3a838bb620ad4071a4c9999a390c8361","d9fc24b35b002a548f4414e49fe3793d9a5b35ee52005272caf4318f2e4f8365","38815495490dbe68097e68af671c9f38d7b7becdc86046701caf27b3aefc1238","4f5fa1f41df5934999037079798a183a672f6a51bf00fecd8a58a40bf8a6ab4b","9228f51f27ecf7b4ea783d9a8ad6fa0b04aedd65f15765ef2e2b4fa993230c71","a4a6eecc3b94a291ecd8001af8bc77860553c1cd0539b7df753db546b90957f1","531aa8b58051f4a06c342c0e058080be43e46ec8caeb686e988f01506dd86e8b","830ef6b30732865e6c28f3a1a5ab6b2d912705dde825638ac06b125ec43d21d0","36a26b110dcea31cd8bab601c2b73930f04e8b5417f9749d9f5fb1eab2a763b6","4c5e77be4579c26825232a95edbf67c1fe38ef7af273b3829831e95cbeb86bb1","fe92ca191d247c305b79d52f46a30ba4d7c93dd1c3e92d7c6c613d330b3da187","89854e488820d88a1b94cf1fd4f156c48859af845d09130f81d516c1aa5db130","0b91eff2dfe722ddce2e4541b66db7b80b83c9912ddd338906bff6e0d1b992c9","7c746be7d0a5cd1a23a4b9f9290669f7c49ca4b315e19c103b1c8ede5037b984","40bcee342fdfb92c1e899d6eb5dfe6e4b1d7c22ec66ddefaec6e287a182e2d9b","717d62319839b9544128ebd5d5d414a2ef6aca2068d40045336d838e2872bdc9",{"version":"c60e1b30f06db4bb8955ee847c28592af992e45f2b8db300c1b0edfc3329b9cb","impliedFormat":99},"61a03f64adcb31f88db8ab9dceb0ce4fa239e8e725edd308d6f2ca94e1de82cc","0d88d0126ce83f2be3301ef21efcabb2eddc9dbdc0efa86fd7e9dea633aecf4f","f8e90bc5bbca2abdfafde152d3b6e1431cbd2036a89d8481eef351cf976ef3b1","cff368b57afda38d3a4842eba23263eed5ed0b8aa2f3779e049933eadca9c5ad","6df690f0ce028bef563bff3e0b679649bf38012eb4f79842979ab05ad86ee508","c2df2558f0a72c9024073737b0113c8eb87abad25b8d72cbc97ace5fa3c54eda","146d46efad38c63ae16569351d69ac1ed50b15c6814bce86f0506594e5da02af","56369eb2da63bb154177b9fc237787754292d88ac26f2cf98534ad870cbb086a","1f9e5882fd72f35a2c8e66f4d1e84a829a8a76054738b5f5130dc76ab5a4f147","ea4f1dab950db7938a946e8991e03c822a54439e16cf33c85ae7f5f10a0dd0de","cb32232cc4a86d8473ad1acbc1912799f4434dceb2da6060678d753bd23f8132","4ef3f794e8e7f86c5154fbbb4768603a394a4f224cf12f1d3b90810fe61d98d2","32d740e689063257c216075566cd3a27ded851de399bd658c476153510c5598a","abd2262bb4ae4a67c1e094d2a04343fca4ef5f2928641ca72508cc37a649a257","5cb123c55dd3bdca31138015e06dc86bcd9c34886d6a87ab03b8a5a027d4beab","77b54b2bf7d6e4a05b79d286903ad9f71141f91409729c5deb8bfa417d7f0960","3c751e29f7a7222bccc4e99cc10cb91892888a4cd9a17346502203ce6767d10f","fa5fb2553bdeb655a17283d09d9d9da716910a4efb1ab4c4fd100c1b6172d822","508a4ef8e22c663ed7fb811d0dbecd74186cf409a6546f151974b31391076c4b","790be052e6953f564e476d85ea08f079fad0fa5cf2de3b724a339788b0b6e795","260e103111c466db6af769f26d7c9306c06b08112f8058dc7d024d9f4c4755d1","615bf800a06a30a7434efc5bfbd1f6909f8d6b1a93f74276d25166f6c26a283f","f477f25c0e87b695bc3037ef4474d502673241e75018a2d910e2cc5579bfb236","05d86f27e8e942876bbe9dd71e21fa84dd56e63ee1cfc49d66b48410e491cd5d","3d107bdab3280468cbc54ffffe6f7d1d75dd33ceabb236d3383eac38a3d969e7","ff0a3251e245c6e4420505fc22330c270fe87fc390d6e232556129aafc5e5d33","6f5ee5ba1915f1e604b8cb2f302d6041c8ad52d557106842a057dd39d8f8a5eb","58e118242e8ea06b12520bba9164f27ce84892cbd8d1a08b7d0c2f7443b75cfe","bfa14541c2b697d5a73041bfa7a318b47db2301e2045856c7ab9db7bb3f4d21b","caee8e88a02710517f1d1849b48fa8793878f4ab0c51cde5c025ba6f21b946df","bbf57449e9341dc4b6f56e7ce74d0edee6cd7c4ca55b52664469de0c7d384445",{"version":"f8ce0d0d5e972abf3ce627f735f1595fc4721449ba19c283aa2c7e74bf1bf1d1","signature":"0cb80a1e82df72e7776496d59f35c657af69549a9de620d4d23b1a5d7302aa14"},{"version":"301513b5c98430d02fab46247b7a68ac3d0578fab7a403d9db09f3fa5761a9e3","signature":"69d17fda3a59adc0a1d6a768c2573cae24915c2fc745eb51301681bced4c3f55"},{"version":"fbc896f99968f8337a506a3f254a6afe37523e1093ab7fa20c79384a9819912c","signature":"d10d08d2b4c1edfb95b6be02b72466204985a4d12d527e810b34baec0f7c4b94"},{"version":"d87a1a80c72cd7179a3d39ff7d91624391c1afa2a07b9f8179fe42590d33b7e2","signature":"9e00aa566225b879614b941815798a83b114acfa060ff58d240891de9256b904"},{"version":"afd78086e8bb0854ffe9986c2f557d41ca32ae2b8b752134a54391f5c24c646c","impliedFormat":99},"cedbe9237d7fd9bf04a39837057c73f8645cf3ad70ff81666175cdc5862b6e2d",{"version":"c6fa05375b7835deeade3f9d921e9c1f36dbf7e4039bb42fcea8809ce19ef9ee","signature":"832674f0afac735aab3add8129cfb44d65601cbdce5c0cbc3c9e27014a42e6c4"},"bfac87a472c7b91245bee653a214311feb3bebacd2bf0733d9c123f197703fb1","e8a44c709658d90afbacff88eed438a1867b2397e621968a42ca2d736d182116","12c26dc1109f60713a3a271a3e58ded6be25a4623df8b41170bc31edc90d14bf","a5fb4a8d4b20584dfaa408f3d7c38a29b2308b3259258827d72b7b016849d8e8","209bc2480735b4445bdb7be8f92d1e0c967897e75bd50a4c3b8e9017e95ced6a","f73e814b1d179a0000ee8741b4383f35b41159f946b3b2e497c9240fda044887","e7798b04698745da299d1b1dc830ad7fc6ba44b0bbeb0afe6d594b4e458c4b32","ce52f5ba28530c4d223f88ddd989818a45c3399ecb2097455c482e33cd015b96","9a53a08950d64a395f62b92ace4c3deb1799796a88b966dbe397a6cb453e6cee","7d1b4a32cb3dd900aad3f0a50efc3f85a865e73c5ceb28b2cea47ea917355c31","9fe1bfb4e145086f053f61e63078ca2576099e3526375a39fc2a912f9f5c573d","59d4ea2fe02dc0a2a7b07637dd8b1e42b034ad75de72b0ab6de882ac9135d7ae","509b551d488239a113acecc0044b77436fd522bb4d5c7930c241fbb0bcdcf36b","a543006e964be4d0ccdb461982284550df07f1eda31832b4135cfdc8175fdeee","117dbc9b72e77b7f6136455283f82f5db757d89c4c952b854d200fa2836b4bbe","b31fdef5483aaf0315f359b5ea6bb9ceaa923b4f1afb9075a829a9e2f80c3567","bbbc689459850faf5870a6c6a6552df85d9aab13a4696b415bdcac49a56ca9b9","ddadbb657a5b6b8eb5aea7b35c57e737d416af806312c4a6dfa1e5fd46a9a616","7ffdcaa818c40b8be30334584c19053ad84c2022370aa6c9df1b8854f6c6baa0","10439a89e58640449e1ff1b339187681abd0d144b7a826afa69857e6f61070ef","b371f9b37120e8b84ac940a83975ce6c712f32738c9615a6cf96f136204d2288","42e4ac2577eee3f881c083117b183a06a2ffa7a4a5bc64fbeb0eb3e38ab854d5","87446d88c33a29a7a7fd7a434a677587d562f59c5f27295b912b64b7ffedb4ec","0d749fc11f8cf43c1d10d386b617e47ff3a7cac8fe20035393e714358615c416","b8b142fdcd1f167f5253726cbb9ba752fbfeea64e9dc58008cfb1432ddca205c","df9e076124de629557803da35505dfc86ff902b3852cd2c5adaeca9b232a9589","e479d4ebc79ab5b4a0acd17a9eac9fb57fd56dae2b8d6627ef77f7784f8637d8","193e064058fea04e1909fec1cd2a02328681cc569606118262ec557b541569d4","335cee5ec15c31c879e8a4aaf1919490cf96db34ee37d93ad8bc0807e351aad4","c03c3b8f4e224a420f57a1cbeb7e65fff7cb11a9fa69bffe1b0db57e94ed9f2d","649472403bc1a043974fab70049176a36cde3d3e21df5bf16ab0a7c84f80ee05","fecba704b35acb562a1828c9ffdd9d2b5100abb5c9299722f534ee7db453f827","8feec5a1e04cf07d77ca0fc68219795fea0a6e9f97ac5ace6507f7d820b99cdf","4658dcf9701f6a01f7aa2dc8670a5bb7333f48eee7465d0825b34b480c6c3e61","12e5f0fbaedf72604dab1520fb008cf686354e2a0ac1542ecaca4033de81a52b","8ca7cc629586884d9877bf0b5221fb2d10a59d3c37cc94ba5bc844f2839df869","d3c5f4cbd12ed79040460d4e03bb4d2cdb577699603c486fd9f33182eea5b65d","6b65649efdad95c3f9d1970e543c4ed48c1804f2b8b89c91dbd2af9656c97a0f","f96c0e46fcb7e90b9ceb248aa293aa5c080d2eb86bdd452b0b97ce6d248498b7",{"version":"43a246e7bcf86393f44181bbabf4f197f35b4f5396d7678fa5e1e08a8a1d57c2","signature":"4f3b0c1c2521e95b939ecb1e29c6146fe39acd25b2197f0a27dd2a21162b8215"},{"version":"204d7bead6a27d4979484ba12f62bbd72d1e277b5ae6255327ed63bbf3c5bf2c","signature":"f40077f403d9755ae43b73f936414b7f9e87c4fab9aca33b97b92d8d73565a41"},{"version":"c678b3c8ab0aef040078b6dcaca68f9c5e0fae3b7455c0ba6c0717dfe03aff90","signature":"a016135b24f80c0290a7a81eb9baf9ce18a85d6deb320dde2b61bbff82eba3dc"},{"version":"5ddc493434a78735287f8a65127337380a324c2b8d0988edbcc8e05547b065d1","signature":"323bf8b0577c9da7e3d506bc14a79a006a620adf04e245001069592bb6f7663e"},"16976e5481a0abbe56fa82010ecd47c152e76d9c7ecb5977d68a1b2c4a785c91","749f3bd08d4fc5cc1c95e3c3b07dede327898a51cf6fa7f156456c0d46aae680","7797184093e9b9f6203d001829de6f91d142497913c67a8d0c2a5b25de005a68",{"version":"0c8e1a3e53808bee8bf71794d82d03370e14f4ad32180a6e6a8012a33bd06b23","signature":"3154e1d541636021f8615218b0ca8f72647d11aa17b6a3f6711d000667ff6b0d"},{"version":"9381818f6d814761d72f050dff7f0746959ea6ff00f06c56dab0e2d68aee99d4","signature":"3b21dfdaf1c441ef8be57f5920388bf6ac2fd7a4d3d496e6ef2332487b6404cd"},{"version":"7bc1eede38104d8e46949e21c3cc8b261d1cf349d6b6c0a6c572cae560f6c0ba","signature":"8b6ae8face26b8cf95f138b1b6d6ef364177b5d043cc3893f6af8efe27f8758c"},{"version":"f578967713d680f2492cf453714463f402db4a80ca4bf6bbc0dc690f6cc4e0bb","signature":"2f69a261874e51fa2d5f7ff3b362dad51d15fd9fca39d89f36549f402993dfe5"},{"version":"b6b3a80bbde21229008cf0c46b9b04ede1e6c75bdf05cca8250b1af4a613ecf4","signature":"fce9bc3a3ad5e21dd185e96ffe6935bdc9c21e2a8361b88cb778507e0c228955"},{"version":"edce1de360403d25168ff8612d058ae111192e0d304e5e1b64326d2389957bb6","signature":"12e5f0fbaedf72604dab1520fb008cf686354e2a0ac1542ecaca4033de81a52b"},{"version":"e455cbef53ec15c78ee00f436e06da99fc3b4d1255d165f2722c6accebc2158d","signature":"8feec5a1e04cf07d77ca0fc68219795fea0a6e9f97ac5ace6507f7d820b99cdf"},{"version":"88b58702c0ac39372f8e94431814002a6b59cec34e1b6b67ebd73daa5b4bdb68","impliedFormat":99},{"version":"71bf5a785fb84079178707c2675d034d757c8469ec6535b2915286f232267b62","signature":"bc67d769e58a119088ada20678198c9d60d052f2b59642137e884a2031b08222"},{"version":"206d0bdf0f963e89f3ebe74c914e0a36d1d076c6b4af130ee5957cf9b9da06a9","signature":"a2588ebc6396c75a5d7087a98bce817269772652b53ea5a983ea8a68ff905f90"},{"version":"4378aa40f97e30c4166f5b6dec95a3cdecc213a1459dffd2e0a86c277e1202c6","signature":"de4db12b39857009bb96a0c86d005039e036a0c3e90a3a05d6a609e4d2ef056c"},{"version":"e87873f06fa094e76ac439c7756b264f3c76a41deb8bc7d39c1d30e0f03ef547","impliedFormat":99},{"version":"488861dc4f870c77c2f2f72c1f27a63fa2e81106f308e3fc345581938928f925","impliedFormat":99},{"version":"eff73acfacda1d3e62bb3cb5bc7200bb0257ea0c8857ce45b3fee5bfec38ad12","impliedFormat":99},{"version":"aff4ac6e11917a051b91edbb9a18735fe56bcfd8b1802ea9dbfb394ad8f6ce8e","impliedFormat":99},{"version":"1f68aed2648740ac69c6634c112fcaae4252fbae11379d6eabee09c0fbf00286","impliedFormat":99},{"version":"5e7c2eff249b4a86fb31e6b15e4353c3ddd5c8aefc253f4c3e4d9caeb4a739d4","impliedFormat":99},{"version":"14c8d1819e24a0ccb0aa64f85c61a6436c403eaf44c0e733cdaf1780fed5ec9f","impliedFormat":99},{"version":"413d50bc66826f899c842524e5f50f42d45c8cb3b26fd478a62f26ac8da3d90e","impliedFormat":99},{"version":"d9083e10a491b6f8291c7265555ba0e9d599d1f76282812c399ab7639019f365","impliedFormat":99},{"version":"09de774ebab62974edad71cb3c7c6fa786a3fda2644e6473392bd4b600a9c79c","impliedFormat":99},{"version":"e8bcc823792be321f581fcdd8d0f2639d417894e67604d884c38b699284a1a2a","impliedFormat":99},{"version":"7c99839c518dcf5ab8a741a97c190f0703c0a71e30c6d44f0b7921b0deec9f67","impliedFormat":99},{"version":"44c14e4da99cd71f9fe4e415756585cec74b9e7dc47478a837d5bedfb7db1e04","impliedFormat":99},{"version":"1f46ee2b76d9ae1159deb43d14279d04bcebcb9b75de4012b14b1f7486e36f82","impliedFormat":99},{"version":"2838028b54b421306639f4419606306b940a5c5fcc5bc485954cbb0ab84d90f4","impliedFormat":99},{"version":"7116e0399952e03afe9749a77ceaca29b0e1950989375066a9ddc9cb0b7dd252","impliedFormat":99},{"version":"45b2b5969e8ab24464c5162981b20be81538de2f8d800bc9f10c7b9344f8738c","signature":"0a10fcd3d03e65e883a249a3884aa2213335fb3895d3714ea0ee093156d47a01"},{"version":"633c845ba3f251eb540050213e96ec260626f1ae945a7ac0c0690bb1557d0be6","signature":"e9c85b6970a65f80ce59ba9948612358b403107a845703f264e9abc30fce0196"},{"version":"63b6b9e9f65cabdcad0747bfa0ef077d1c81cc011752fc804c23f765656e562b","signature":"784dae497eda71ce919de0738b99c70c7aed06a49a5c08aaf6ba9cb87f9e3a24"},{"version":"0e9a2de05415698d7a7c64addf4d471b35e1a58b927692d9143151a47b1c444c","signature":"8ca7cc629586884d9877bf0b5221fb2d10a59d3c37cc94ba5bc844f2839df869"},{"version":"94b7dc89b5a726ad5c2fdf9fb036ba0a398d5192851da5e893314482baa5482c","signature":"fecba704b35acb562a1828c9ffdd9d2b5100abb5c9299722f534ee7db453f827"},{"version":"d40a734e370d9535ab4395c7bd220534c85e911bce30775d6c353d2261adefee","signature":"853f06d2453208b7068804160be241f18f1b637166d8b2d767757917aaff5dbd"},{"version":"f9aabae9704e03b2fa67c6a59a42056749165e558e56510c8001d8a9654eb8b3","signature":"1e682ce81bfc8f7e9b04fade70dbec72ded282ded6e1f1da5946693b8e3c89b2"},{"version":"f3ee255e9f3c78d4de961e4130f24b03c0864e04e61f43d77d928dd07c402e14","signature":"fa5c0f99cbd679f80db406a2766d72d288cd7b7388c3023313379a3ed14c6141"},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"a12d953aa755b14ac1d28ecdc1e184f3285b01d6d1e58abc11bf1826bc9d80e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"a38efe83ff77c34e0f418a806a01ca3910c02ee7d64212a59d59bca6c2c38fa1","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"3fe4022ba1e738034e38ad9afacbf0f1f16b458ed516326f5bf9e4a31e9be1dc","impliedFormat":1},{"version":"a957197054b074bcdf5555d26286e8461680c7c878040d0f4e2d5509a7524944","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"e9b97d69510658d2f4199b7d384326b7c4053b9e6645f5c19e1c2a54ede427fc","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"f478f6f5902dc144c0d6d7bdc919c5177cac4d17a8ca8653c2daf6d7dc94317f","affectsGlobalScope":true,"impliedFormat":1},{"version":"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","impliedFormat":1},{"version":"e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"88bc59b32d0d5b4e5d9632ac38edea23454057e643684c3c0b94511296f2998c","affectsGlobalScope":true,"impliedFormat":1},{"version":"25d130083f833251b5b4c2794890831b1b8ce2ead24089f724181576cf9d7279","impliedFormat":1},{"version":"ffe66ee5c9c47017aca2136e95d51235c10e6790753215608bff1e712ff54ec6","impliedFormat":1},{"version":"206a70e72af3e24688397b81304358526ce70d020e4c2606c4acfd1fa1e81fb2","impliedFormat":1},{"version":"017caf5d2a8ef581cf94f678af6ce7415e06956317946315560f1487b9a56167","impliedFormat":1},{"version":"528b62e4272e3ddfb50e8eed9e359dedea0a4d171c3eb8f337f4892aac37b24b","impliedFormat":1},{"version":"d71535813e39c23baa113bc4a29a0e187b87d1105ccc8c5a6ebaca38d9a9bff2","impliedFormat":1},{"version":"4c3148420835de895b9218b2cea321a4607008ba5cefa57b2a57e1c1ef85d22f","affectsGlobalScope":true,"impliedFormat":1},{"version":"f72bc8fe16da67e4e3268599295797b202b95e54bd215a03f97e925dd1502a36","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"915e18c559321c0afaa8d34674d3eb77e1ded12c3e85bf2a9891ec48b07a1ca5","affectsGlobalScope":true,"impliedFormat":1},{"version":"636302a00dfd1f9fe6e8e91e4e9350c6518dcc8d51a474e4fc3a9ba07135100b","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"e1ce1d622f1e561f6cdf246372ead3bbc07ce0342024d0e9c7caf3136f712698","impliedFormat":1},{"version":"199c8269497136f3a0f4da1d1d90ab033f899f070e0dd801946f2a241c8abba2","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"27e4532aaaa1665d0dd19023321e4dc12a35a741d6b8e1ca3517fcc2544e0efe","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"6266d94fb9165d42716e45f3a537ca9f59c07b1dfa8394a659acf139134807db","affectsGlobalScope":true,"impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"98ffdf93dfdd206516971d28e3e473f417a5cfd41172e46b4ce45008f640588e","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true,"impliedFormat":1},{"version":"a7692a54334fd08960cd0c610ff509c2caa93998e0dcefa54021489bcc67c22d","affectsGlobalScope":true,"impliedFormat":1},{"version":"74736930d108365d7bbe740c7154706ccfb1b2a3855a897963ab3e5c07ecbf19","impliedFormat":1},{"version":"3a051941721a7f905544732b0eb819c8d88333a96576b13af08b82c4f17581e4","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"1e25f8d0a8573cafd5b5a16af22d26ab872068a693b9dbccd3f72846ab373655","affectsGlobalScope":true,"impliedFormat":1},{"version":"3797dd6f4ea3dc15f356f8cdd3128bfa18122213b38a80d6c1f05d8e13cbdad8","impliedFormat":1},{"version":"ad90122e1cb599b3bc06a11710eb5489101be678f2920f2322b0ac3e195af78d","impliedFormat":1},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"ffb518fc55181aefd066c690dbc0f8fa6a1533c8ddac595469c8c5f7fda2d756","affectsGlobalScope":true,"impliedFormat":1},{"version":"88491d1b46e3e5262d862b5fe94f673185762d827669ed484345a8a2e82a3535","impliedFormat":1}],"root":[[200,203],206,[246,249],[253,259],[261,263],[280,287]],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"importHelpers":true,"module":99,"noEmitOnError":true,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":false,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":5,"tsBuildInfoFile":"./tsconfig.tsbuildinfo","useUnknownInCatchVariables":true,"verbatimModuleSyntax":true},"referencedMap":[[386,1],[85,2],[332,3],[333,3],[334,4],[293,5],[335,6],[336,7],[337,8],[288,1],[291,9],[289,1],[290,1],[338,10],[339,11],[340,12],[341,13],[342,14],[343,15],[344,15],[346,1],[345,16],[347,17],[348,18],[349,19],[331,20],[292,1],[350,21],[351,22],[352,23],[385,24],[353,25],[354,26],[355,27],[356,28],[357,29],[358,30],[359,31],[360,32],[361,33],[362,34],[363,34],[364,35],[365,1],[366,1],[367,36],[369,37],[368,38],[370,39],[371,40],[372,41],[373,42],[374,43],[375,44],[376,45],[377,46],[378,47],[379,48],[380,49],[381,50],[382,51],[383,52],[384,53],[388,54],[84,1],[273,1],[89,55],[88,56],[87,57],[272,58],[271,59],[275,60],[274,61],[277,62],[276,63],[123,64],[103,65],[104,65],[105,65],[106,65],[107,65],[108,65],[109,66],[111,65],[110,65],[122,67],[112,65],[114,65],[113,65],[116,65],[115,65],[117,65],[118,65],[119,65],[120,65],[121,65],[102,65],[101,68],[266,69],[264,70],[265,70],[269,71],[267,70],[268,70],[270,70],[86,1],[74,1],[168,72],[79,72],[75,73],[260,74],[78,75],[204,76],[76,77],[77,78],[279,79],[278,80],[100,81],[99,82],[125,83],[124,84],[126,85],[387,86],[96,87],[95,1],[60,88],[59,1],[57,1],[58,1],[10,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[21,1],[22,1],[4,1],[23,1],[27,1],[24,1],[25,1],[26,1],[28,1],[29,1],[30,1],[5,1],[31,1],[32,1],[33,1],[34,1],[6,1],[38,1],[35,1],[36,1],[37,1],[39,1],[7,1],[40,1],[45,1],[46,1],[41,1],[42,1],[43,1],[44,1],[8,1],[50,1],[47,1],[48,1],[49,1],[51,1],[9,1],[52,1],[53,1],[54,1],[56,1],[55,1],[1,1],[309,89],[319,90],[308,89],[329,91],[300,92],[299,93],[328,94],[322,95],[327,96],[302,97],[316,98],[301,99],[325,100],[297,101],[296,94],[326,102],[298,103],[303,104],[304,1],[307,104],[294,1],[330,105],[320,106],[311,107],[312,108],[314,109],[310,110],[313,111],[323,94],[305,112],[306,113],[315,114],[295,115],[318,106],[317,104],[321,1],[324,116],[98,117],[94,1],[97,118],[91,119],[90,2],[93,120],[92,121],[150,122],[151,123],[152,124],[139,125],[140,126],[141,127],[142,128],[143,129],[149,130],[144,131],[148,126],[145,132],[146,133],[147,132],[62,134],[63,135],[61,136],[73,137],[69,138],[68,139],[64,1],[70,140],[72,141],[71,142],[66,143],[67,144],[65,145],[250,1],[251,146],[252,147],[244,148],[240,127],[243,149],[239,127],[241,127],[242,127],[238,127],[245,150],[221,151],[225,152],[223,151],[224,151],[222,151],[209,151],[214,151],[210,151],[207,151],[212,151],[208,148],[213,151],[219,151],[211,151],[220,153],[216,151],[215,151],[217,151],[218,151],[233,151],[234,151],[237,154],[232,151],[226,151],[229,151],[228,151],[227,151],[230,151],[231,151],[235,151],[236,151],[201,155],[200,156],[285,157],[286,158],[259,159],[258,159],[283,160],[284,159],[287,161],[203,162],[202,163],[253,164],[255,165],[254,164],[257,166],[247,167],[249,168],[248,169],[206,170],[246,171],[256,172],[261,173],[262,174],[282,175],[281,176],[280,177],[263,174],[169,178],[167,179],[80,180],[83,77],[81,74],[205,181],[153,1],[166,182],[155,183],[154,184],[158,185],[156,186],[157,186],[159,187],[160,183],[165,188],[162,189],[163,190],[164,191],[161,190],[82,192],[138,193],[136,194],[133,195],[134,196],[135,197],[137,198],[129,199],[130,200],[131,201],[128,202],[127,1],[132,203],[171,204],[178,127],[172,205],[173,206],[174,206],[175,207],[176,208],[177,209],[182,210],[180,211],[179,212],[183,213],[181,214],[184,215],[185,216],[170,127],[199,217],[186,218],[187,127],[188,127],[189,127],[197,219],[194,127],[190,127],[196,127],[191,127],[192,127],[195,127],[193,220],[198,1]],"latestChangedDtsFile":"./index.d.ts","version":"5.8.3"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@milkdown/preset-gfm",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.15.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"prosemirror-safari-ime-span": "^1.0.1",
|
|
31
31
|
"remark-gfm": "^4.0.1",
|
|
32
32
|
"tslib": "^2.8.1",
|
|
33
|
-
"@milkdown/core": "7.
|
|
34
|
-
"@milkdown/
|
|
35
|
-
"@milkdown/
|
|
36
|
-
"@milkdown/
|
|
37
|
-
"@milkdown/
|
|
38
|
-
"@milkdown/
|
|
39
|
-
"@milkdown/
|
|
33
|
+
"@milkdown/core": "7.15.0",
|
|
34
|
+
"@milkdown/transformer": "7.15.0",
|
|
35
|
+
"@milkdown/prose": "7.15.0",
|
|
36
|
+
"@milkdown/preset-commonmark": "7.15.0",
|
|
37
|
+
"@milkdown/exception": "7.15.0",
|
|
38
|
+
"@milkdown/utils": "7.15.0",
|
|
39
|
+
"@milkdown/ctx": "7.15.0"
|
|
40
40
|
},
|
|
41
41
|
"scripts": {
|
|
42
42
|
"build": "vite build"
|
package/src/node/table/input.ts
CHANGED
|
@@ -53,6 +53,7 @@ withMeta(insertTableInputRule, {
|
|
|
53
53
|
/// - `<Mod-Enter>`: Exit the table, and break it if possible.
|
|
54
54
|
export const tableKeymap = $useKeymap('tableKeymap', {
|
|
55
55
|
NextCell: {
|
|
56
|
+
priority: 100,
|
|
56
57
|
shortcuts: ['Mod-]', 'Tab'],
|
|
57
58
|
command: (ctx) => {
|
|
58
59
|
const commands = ctx.get(commandsCtx)
|
|
@@ -99,8 +99,13 @@ export const extendListItemSchemaForTask = listItemSchema.extendSchema(
|
|
|
99
99
|
}
|
|
100
100
|
)
|
|
101
101
|
|
|
102
|
-
withMeta(extendListItemSchemaForTask, {
|
|
103
|
-
displayName: 'NodeSchema<
|
|
102
|
+
withMeta(extendListItemSchemaForTask.node, {
|
|
103
|
+
displayName: 'NodeSchema<taskListItem>',
|
|
104
|
+
group: 'ListItem',
|
|
105
|
+
})
|
|
106
|
+
|
|
107
|
+
withMeta(extendListItemSchemaForTask.ctx, {
|
|
108
|
+
displayName: 'NodeSchemaCtx<taskListItem>',
|
|
104
109
|
group: 'ListItem',
|
|
105
110
|
})
|
|
106
111
|
|