@milkdown/preset-gfm 7.16.0 → 7.17.1

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.
@@ -1,5 +1,6 @@
1
1
  export * from './keymap';
2
2
  export * from './inputrules';
3
+ export * from './pasterules';
3
4
  export * from './plugins';
4
5
  export * from './schema';
5
6
  export * from './commands';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/composed/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AACxB,cAAc,cAAc,CAAA;AAC5B,cAAc,WAAW,CAAA;AACzB,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/composed/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AACxB,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,WAAW,CAAA;AACzB,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA"}
@@ -0,0 +1,3 @@
1
+ import type { MilkdownPlugin } from '@milkdown/ctx';
2
+ export declare const pasteRules: MilkdownPlugin[];
3
+ //# sourceMappingURL=pasterules.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pasterules.d.ts","sourceRoot":"","sources":["../../src/composed/pasterules.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,eAAe,CAAA;AAKnD,eAAO,MAAM,UAAU,EAAE,cAAc,EAAqB,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AASA,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA;AACtB,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA;AAG1B,eAAO,MAAM,GAAG,0CAOR,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAUA,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA;AACtB,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA;AAG1B,eAAO,MAAM,GAAG,0CAQR,CAAA"}
package/lib/index.js CHANGED
@@ -1,11 +1,12 @@
1
1
  import { expectDomTypeError } from "@milkdown/exception";
2
2
  import { paragraphSchema, listItemSchema } from "@milkdown/preset-commonmark";
3
3
  import { InputRule } from "@milkdown/prose/inputrules";
4
- import { $markAttr, $markSchema, $inputRule, $useKeymap, $command, $nodeSchema, $prose, $remark } from "@milkdown/utils";
4
+ import { $markAttr, $markSchema, $inputRule, $useKeymap, $command, $nodeSchema, $pasteRule, $prose, $remark } from "@milkdown/utils";
5
5
  import { tableNodes, findTable, TableMap, CellSelection, goToNextCell, isInTable, moveTableRow, moveTableColumn, deleteTable, deleteColumn, deleteRow, selectedRect, addColumnBefore, addColumnAfter, setCellAttr, columnResizing, tableEditing } from "@milkdown/prose/tables";
6
6
  import { commandsCtx } from "@milkdown/core";
7
7
  import { markRule, findParentNodeClosestToPos, cloneTr, findParentNodeType } from "@milkdown/prose";
8
8
  import { toggleMark } from "@milkdown/prose/commands";
9
+ import { Slice, Fragment } from "@milkdown/prose/model";
9
10
  import { Selection, TextSelection, Plugin, PluginKey } from "@milkdown/prose/state";
10
11
  import { imeSpan } from "prosemirror-safari-ime-span";
11
12
  import remarkGFM from "remark-gfm";
@@ -612,6 +613,47 @@ withMeta(insertTableInputRule, {
612
613
  displayName: "InputRule<insertTableInputRule>",
613
614
  group: "Table"
614
615
  });
616
+ const tablePasteRule = $pasteRule((ctx) => ({
617
+ run: (slice, _view, isPlainText) => {
618
+ if (isPlainText) {
619
+ return slice;
620
+ }
621
+ let fragment = slice.content;
622
+ slice.content.forEach((node, _offset, index) => {
623
+ if (node?.type !== tableSchema.type(ctx)) {
624
+ return;
625
+ }
626
+ const rowsCount = node.childCount;
627
+ const colsCount = node.lastChild?.childCount ?? 0;
628
+ if (rowsCount === 0 || colsCount === 0) {
629
+ fragment = fragment.replaceChild(
630
+ index,
631
+ paragraphSchema.type(ctx).create()
632
+ );
633
+ return;
634
+ }
635
+ const headerRow = node.firstChild;
636
+ const needToFixHeaderRow = colsCount > 0 && headerRow && headerRow.childCount === 0;
637
+ if (!needToFixHeaderRow) {
638
+ return;
639
+ }
640
+ const headerCells = Array(colsCount).fill(0).map(() => tableHeaderSchema.type(ctx).createAndFill());
641
+ const tableCells = new Slice(Fragment.from(headerCells), 0, 0);
642
+ const newHeaderRow = headerRow.replace(0, 0, tableCells);
643
+ const newTable = node.replace(
644
+ 0,
645
+ headerRow.nodeSize,
646
+ new Slice(Fragment.from(newHeaderRow), 0, 0)
647
+ );
648
+ fragment = fragment.replaceChild(index, newTable);
649
+ });
650
+ return new Slice(Fragment.from(fragment), slice.openStart, slice.openEnd);
651
+ }
652
+ }));
653
+ withMeta(tablePasteRule, {
654
+ displayName: "PasteRule<table>",
655
+ group: "Table"
656
+ });
615
657
  const tableKeymap = $useKeymap("tableKeymap", {
616
658
  NextCell: {
617
659
  priority: 100,
@@ -901,6 +943,7 @@ const inputRules = [
901
943
  wrapInTaskListInputRule
902
944
  ];
903
945
  const markInputRules = [strikethroughInputRule];
946
+ const pasteRules = [tablePasteRule];
904
947
  const autoInsertSpanPlugin = $prose(() => imeSpan);
905
948
  withMeta(autoInsertSpanPlugin, {
906
949
  displayName: "Prose<autoInsertSpanPlugin>",
@@ -1004,6 +1047,7 @@ const commands = [
1004
1047
  const gfm = [
1005
1048
  schema,
1006
1049
  inputRules,
1050
+ pasteRules,
1007
1051
  markInputRules,
1008
1052
  keymap,
1009
1053
  commands,
@@ -1038,6 +1082,7 @@ export {
1038
1082
  markInputRules,
1039
1083
  moveColCommand,
1040
1084
  moveRowCommand,
1085
+ pasteRules,
1041
1086
  plugins,
1042
1087
  remarkGFMPlugin,
1043
1088
  schema,
@@ -1058,6 +1103,7 @@ export {
1058
1103
  tableHeaderRowSchema,
1059
1104
  tableHeaderSchema,
1060
1105
  tableKeymap,
1106
+ tablePasteRule,
1061
1107
  tableRowSchema,
1062
1108
  tableSchema,
1063
1109
  toggleStrikethroughCommand,
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/create-table.ts","../src/node/table/utils/get-cells-in-col.ts","../src/node/table/utils/get-cells-in-row.ts","../src/node/table/utils/select-line.ts","../src/node/table/utils/add-row-with-alignment.ts","../src/node/table/utils/get-all-cells-in-table.ts","../src/node/table/utils/select-table.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(\n /(?<![\\w:/])(~{1,2})(.+?)\\1(?!\\w|\\/)/,\n strikethroughSchema.type(ctx)\n )\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 { Node } from '@milkdown/prose/model'\n\nimport {\n tableCellSchema,\n tableHeaderRowSchema,\n tableHeaderSchema,\n tableRowSchema,\n tableSchema,\n} from '../schema'\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","import type { Selection } from '@milkdown/prose/state'\n\nimport { findTable, TableMap } from '@milkdown/prose/tables'\n\nimport type { CellPos } from './types'\n\n/// Get cells in a column of a table.\nexport function getCellsInCol(\n columnIndexes: number | number[],\n selection: Selection\n): CellPos[] | undefined {\n const table = findTable(selection.$from)\n if (!table) return undefined\n\n const map = TableMap.get(table.node)\n const indexes = Array.isArray(columnIndexes) ? columnIndexes : [columnIndexes]\n\n return indexes\n .filter((index) => index >= 0 && index <= map.width - 1)\n .flatMap((index) => {\n const cells = map.cellsInRect({\n left: index,\n right: index + 1,\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, depth: table.depth + 2 }\n })\n })\n}\n","import type { Selection } from '@milkdown/prose/state'\n\nimport { findTable, TableMap } from '@milkdown/prose/tables'\n\nimport type { CellPos } from './types'\n\n/// Get cells in a row of a table.\nexport function getCellsInRow(\n rowIndex: number | number[],\n selection: Selection\n): CellPos[] | undefined {\n const table = findTable(selection.$from)\n if (!table) {\n return\n }\n\n const map = TableMap.get(table.node)\n const indexes = Array.isArray(rowIndex) ? rowIndex : [rowIndex]\n\n return indexes\n .filter((index) => index >= 0 && index <= map.height - 1)\n .flatMap((index) => {\n const cells = map.cellsInRect({\n left: 0,\n right: map.width,\n top: index,\n bottom: index + 1,\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, depth: table.depth + 2 }\n })\n })\n}\n","import type { Selection, Transaction } from '@milkdown/prose/state'\n\nimport { cloneTr, findParentNodeClosestToPos } from '@milkdown/prose'\nimport { CellSelection, TableMap } from '@milkdown/prose/tables'\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","import type { Ctx } from '@milkdown/ctx'\nimport type { Node } from '@milkdown/prose/model'\nimport type { Transaction } from '@milkdown/prose/state'\nimport type { TableRect } from '@milkdown/prose/tables'\n\nimport { tableCellSchema, tableRowSchema } from '../schema'\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","import type { Selection } from '@milkdown/prose/state'\n\nimport { findTable, TableMap } from '@milkdown/prose/tables'\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","import type { Transaction } from '@milkdown/prose/state'\n\nimport { cloneTr } from '@milkdown/prose'\nimport { CellSelection } from '@milkdown/prose/tables'\n\nimport { getAllCellsInTable } from './get-all-cells-in-table'\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","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 moveTableRow,\n moveTableColumn,\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 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 moveTableRow({\n from: from ?? 0,\n to: to ?? 0,\n pos,\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 moveTableColumn({\n from: from ?? 0,\n to: to ?? 0,\n pos,\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":"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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/create-table.ts","../src/node/table/utils/get-cells-in-col.ts","../src/node/table/utils/get-cells-in-row.ts","../src/node/table/utils/select-line.ts","../src/node/table/utils/add-row-with-alignment.ts","../src/node/table/utils/get-all-cells-in-table.ts","../src/node/table/utils/select-table.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/composed/pasterules.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(\n /(?<![\\w:/])(~{1,2})(.+?)\\1(?!\\w|\\/)/,\n strikethroughSchema.type(ctx)\n )\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 { Node } from '@milkdown/prose/model'\n\nimport {\n tableCellSchema,\n tableHeaderRowSchema,\n tableHeaderSchema,\n tableRowSchema,\n tableSchema,\n} from '../schema'\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","import type { Selection } from '@milkdown/prose/state'\n\nimport { findTable, TableMap } from '@milkdown/prose/tables'\n\nimport type { CellPos } from './types'\n\n/// Get cells in a column of a table.\nexport function getCellsInCol(\n columnIndexes: number | number[],\n selection: Selection\n): CellPos[] | undefined {\n const table = findTable(selection.$from)\n if (!table) return undefined\n\n const map = TableMap.get(table.node)\n const indexes = Array.isArray(columnIndexes) ? columnIndexes : [columnIndexes]\n\n return indexes\n .filter((index) => index >= 0 && index <= map.width - 1)\n .flatMap((index) => {\n const cells = map.cellsInRect({\n left: index,\n right: index + 1,\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, depth: table.depth + 2 }\n })\n })\n}\n","import type { Selection } from '@milkdown/prose/state'\n\nimport { findTable, TableMap } from '@milkdown/prose/tables'\n\nimport type { CellPos } from './types'\n\n/// Get cells in a row of a table.\nexport function getCellsInRow(\n rowIndex: number | number[],\n selection: Selection\n): CellPos[] | undefined {\n const table = findTable(selection.$from)\n if (!table) {\n return\n }\n\n const map = TableMap.get(table.node)\n const indexes = Array.isArray(rowIndex) ? rowIndex : [rowIndex]\n\n return indexes\n .filter((index) => index >= 0 && index <= map.height - 1)\n .flatMap((index) => {\n const cells = map.cellsInRect({\n left: 0,\n right: map.width,\n top: index,\n bottom: index + 1,\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, depth: table.depth + 2 }\n })\n })\n}\n","import type { Selection, Transaction } from '@milkdown/prose/state'\n\nimport { cloneTr, findParentNodeClosestToPos } from '@milkdown/prose'\nimport { CellSelection, TableMap } from '@milkdown/prose/tables'\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","import type { Ctx } from '@milkdown/ctx'\nimport type { Node } from '@milkdown/prose/model'\nimport type { Transaction } from '@milkdown/prose/state'\nimport type { TableRect } from '@milkdown/prose/tables'\n\nimport { tableCellSchema, tableRowSchema } from '../schema'\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","import type { Selection } from '@milkdown/prose/state'\n\nimport { findTable, TableMap } from '@milkdown/prose/tables'\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","import type { Transaction } from '@milkdown/prose/state'\n\nimport { cloneTr } from '@milkdown/prose'\nimport { CellSelection } from '@milkdown/prose/tables'\n\nimport { getAllCellsInTable } from './get-all-cells-in-table'\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","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 moveTableRow,\n moveTableColumn,\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 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 moveTableRow({\n from: from ?? 0,\n to: to ?? 0,\n pos,\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 moveTableColumn({\n from: from ?? 0,\n to: to ?? 0,\n pos,\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 { paragraphSchema } from '@milkdown/preset-commonmark'\nimport { InputRule } from '@milkdown/prose/inputrules'\nimport { Fragment, Slice } from '@milkdown/prose/model'\nimport { TextSelection } from '@milkdown/prose/state'\nimport { $inputRule, $pasteRule, $useKeymap } from '@milkdown/utils'\n\nimport { withMeta } from '../../__internal__'\nimport {\n exitTable,\n goToNextTableCellCommand,\n goToPrevTableCellCommand,\n} from './command'\nimport { tableHeaderSchema, 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/// A paste rule for fixing tables without header cells.\n/// This is a workaround for some editors (e.g. Google Docs) which allow creating tables without header cells,\n/// which is not supported by Markdown schema.\n/// This paste rule will add header cells to the first row if it's missing.\nexport const tablePasteRule = $pasteRule((ctx) => ({\n run: (slice, _view, isPlainText) => {\n if (isPlainText) {\n return slice\n }\n let fragment = slice.content\n\n slice.content.forEach((node, _offset, index) => {\n if (node?.type !== tableSchema.type(ctx)) {\n return\n }\n const rowsCount = node.childCount\n const colsCount = node.lastChild?.childCount ?? 0\n if (rowsCount === 0 || colsCount === 0) {\n fragment = fragment.replaceChild(\n index,\n paragraphSchema.type(ctx).create()\n )\n return\n }\n\n const headerRow = node.firstChild\n const needToFixHeaderRow =\n colsCount > 0 && headerRow && headerRow.childCount === 0\n if (!needToFixHeaderRow) {\n return\n }\n // Fix for tables with rows but no cells in the first row\n const headerCells = Array(colsCount)\n .fill(0)\n .map(() => tableHeaderSchema.type(ctx).createAndFill()!)\n\n const tableCells = new Slice(Fragment.from(headerCells), 0, 0)\n\n const newHeaderRow = headerRow.replace(0, 0, tableCells)\n const newTable = node.replace(\n 0,\n headerRow.nodeSize,\n new Slice(Fragment.from(newHeaderRow), 0, 0)\n )\n fragment = fragment.replaceChild(index, newTable)\n })\n\n return new Slice(Fragment.from(fragment), slice.openStart, slice.openEnd)\n },\n}))\n\nwithMeta(tablePasteRule, {\n displayName: 'PasteRule<table>',\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 type { MilkdownPlugin } from '@milkdown/ctx'\n\nimport { tablePasteRule } from '../node'\n\n/// @internal\nexport const pasteRules: MilkdownPlugin[] = [tablePasteRule]\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 pasteRules,\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 pasteRules,\n markInputRules,\n keymap,\n commands,\n plugins,\n].flat()\n"],"names":["commands","id"],"mappings":"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"}
@@ -1,3 +1,4 @@
1
1
  export declare const insertTableInputRule: import("@milkdown/utils").$InputRule;
2
+ export declare const tablePasteRule: import("@milkdown/utils").$PasteRule;
2
3
  export declare const tableKeymap: import("@milkdown/utils").$UserKeymap<"tableKeymap", "ExitTable" | "NextCell" | "PrevCell">;
3
4
  //# sourceMappingURL=input.d.ts.map
@@ -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,6FA0BtB,CAAA"}
1
+ {"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../src/node/table/input.ts"],"names":[],"mappings":"AAkBA,eAAO,MAAM,oBAAoB,sCA0BhC,CAAA;AAWD,eAAO,MAAM,cAAc,sCA6CxB,CAAA;AAWH,eAAO,MAAM,WAAW,6FA0BtB,CAAA"}
@@ -1 +1 @@
1
- {"fileNames":["../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.decorators.legacy.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.3/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.41.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.3/node_modules/vfile-message/lib/index.d.ts","../../../../node_modules/.pnpm/vfile-message@4.0.3/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.8.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/create-table.ts","../src/node/table/utils/types.ts","../src/node/table/utils/get-cells-in-col.ts","../src/node/table/utils/get-cells-in-row.ts","../src/node/table/utils/select-line.ts","../src/node/table/utils/add-row-with-alignment.ts","../src/node/table/utils/get-all-cells-in-table.ts","../src/node/table/utils/select-table.ts","../src/node/table/utils/index.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.18.3/node_modules/@types/node/compatibility/disposable.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/compatibility/indexable.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/compatibility/iterators.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/compatibility/index.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/globals.typedarray.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/buffer.buffer.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/globals.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/web-globals/domexception.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/web-globals/events.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.18.3/node_modules/@types/node/web-globals/fetch.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/web-globals/navigator.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/web-globals/storage.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/assert.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/buffer.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/child_process.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/cluster.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/console.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/constants.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/crypto.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/dgram.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/dns.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/domain.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/events.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/fs.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/http.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/http2.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/https.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/inspector.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/module.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/net.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/os.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/path.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/process.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/punycode.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/querystring.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/readline.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/repl.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/sea.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/sqlite.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/stream.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/stream/web.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/test.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/timers.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/tls.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/trace_events.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/tty.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/url.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/util.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/v8.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/vm.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/wasi.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/zlib.d.ts","../../../../node_modules/.pnpm/@types+node@22.18.3/node_modules/@types/node/index.d.ts"],"fileIdsList":[[82,299,347],[299,344,347],[299,346,347],[347],[299,347,352,381],[299,347,348,353,358,366,378,389],[299,347,348,349,358,366],[299,347],[294,295,296,299,347],[299,347,350,390],[299,347,351,352,359,367],[299,347,352,378,386],[299,347,353,355,358,366],[299,346,347,354],[299,347,355,356],[299,347,357,358],[299,346,347,358],[299,347,358,359,360,378,389],[299,347,358,359,360,373,378,381],[299,340,347,355,358,361,366,378,389],[299,347,358,359,361,362,366,378,386,389],[299,347,361,363,378,386,389],[297,298,299,300,301,302,303,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,385,386,387,388,389,390,391,392,393,394,395],[299,347,358,364],[299,347,365,389],[299,347,355,358,366,378],[299,347,367],[299,347,368],[299,346,347,369],[299,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,385,386,387,388,389,390,391,392,393,394,395],[299,347,371],[299,347,372],[299,347,358,373,374],[299,347,373,375,390,392],[299,347,358,378,379,381],[299,347,380,381],[299,347,378,379],[299,347,381],[299,347,382],[299,344,347,378,383],[299,347,358,384,385],[299,347,384,385],[299,347,352,366,378,386],[299,347,387],[299,347,366,388],[299,347,361,372,389],[299,347,352,390],[299,347,378,391],[299,347,365,392],[299,347,393],[299,340,347],[299,347,358,360,369,378,381,389,391,392,394],[299,347,378,395],[84,85,86,87,272,275,299,347],[83,84,85,87,272,275,299,347],[83,84,87,272,275,299,347],[121,277,281,299,347],[87,121,278,281,299,347],[87,121,278,280,299,347],[83,87,121,278,279,281,299,347],[278,281,282,299,347],[87,121,278,281,283,299,347],[99,100,120,299,347],[83,121,278,281,299,347],[83,299,347],[101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,299,347],[82,83,299,347],[84,87,270,271,275,299,347],[84,87,272,275,299,347],[84,87,272,273,274,299,347],[73,76,299,347],[72,299,347],[76,299,347],[73,74,75,299,347],[73,74,75,76,299,347],[73,299,347],[73,74,76,299,347],[276,283,284,299,347],[285,299,347],[83,84,87,96,97,98,123,272,275,281,299,347],[83,87,91,96,98,123,281,299,347],[83,96,98,121,122,123,278,281,299,347],[83,91,96,98,121,123,278,281,299,347],[83,96,98,123,299,347],[93,299,347],[299,312,316,347,389],[299,312,347,378,389],[299,307,347],[299,309,312,347,386,389],[299,347,366,386],[299,347,396],[299,307,347,396],[299,309,312,347,366,389],[299,304,305,308,311,347,358,378,389],[299,312,319,347],[299,304,310,347],[299,312,333,334,347],[299,308,312,347,381,389,396],[299,333,347,396],[299,306,307,347,396],[299,312,347],[299,306,307,308,309,310,311,312,313,314,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,334,335,336,337,338,339,347],[299,312,327,347],[299,312,319,320,347],[299,310,312,320,321,347],[299,311,347],[299,304,307,312,347],[299,312,316,320,321,347],[299,316,347],[299,310,312,315,347,389],[299,304,309,312,319,347],[299,347,378],[299,307,312,333,347,394,396],[91,95,299,347],[82,91,92,94,96,98,123,299,347],[88,299,347],[89,90,299,347],[82,89,91,299,347],[71,147,299,347],[148,299,347],[147,149,299,347],[71,78,79,80,123,136,149,299,347],[71,79,299,347],[71,299,347],[71,79,81,136,299,347],[71,80,299,347],[137,138,139,140,141,142,143,144,145,146,299,347],[71,149,299,347],[71,136,299,347],[71,81,136,299,347],[59,299,347],[59,60,299,347],[60,299,347],[61,65,67,70,299,347],[62,66,299,347],[61,62,65,299,347],[61,65,67,71,299,347],[68,69,299,347],[67,68,299,347],[63,299,347],[63,64,299,347],[64,299,347],[256,299,347],[257,299,347],[81,197,299,347],[236,237,238,239,240,299,347],[71,218,223,235,241,242,299,347],[197,299,347],[219,220,221,222,299,347],[205,206,207,208,209,210,211,212,213,214,215,216,217,299,347],[224,225,226,227,228,229,230,231,232,233,234,299,347],[198,299,347],[201,263,299,347],[264,265,289,290,291,299,347],[71,201,263,299,347],[71,288,299,347],[201,263,288,292,299,347],[200,299,347],[150,165,167,197,199,299,347],[197,199,258,299,347],[259,260,299,347],[255,261,262,299,347],[79,165,197,199,203,204,243,252,299,347],[204,252,253,254,299,347],[78,79,150,197,199,204,252,253,299,347],[81,136,197,199,203,299,347],[71,79,81,203,204,299,347],[71,81,204,299,347],[79,203,299,347],[79,203,245,299,347],[244,245,246,247,248,249,250,251,299,347],[79,165,203,299,347],[79,165,203,250,299,347],[81,299,347],[78,197,199,243,258,299,347],[197,199,266,299,347],[197,199,203,299,347],[267,268,269,286,287,299,347],[79,81,197,199,299,347],[197,199,285,299,347],[166,299,347],[164,299,347],[77,299,347],[202,299,347],[151,156,157,163,299,347],[79,81,299,347],[78,79,299,347],[152,153,154,155,299,347],[78,81,153,299,347],[80,299,347],[158,160,161,162,299,347],[81,159,299,347],[79,81,159,299,347],[75,299,347],[126,134,135,299,347],[132,133,299,347],[81,126,299,347],[81,126,131,133,299,347],[81,130,132,299,347],[128,129,299,347],[126,136,299,347],[81,126,127,129,299,347],[81,128,299,347],[125,130,299,347],[81,96,98,123,124,129,133,299,347],[71,150,168,299,347],[71,78,168,299,347],[71,81,136,168,299,347],[71,79,168,299,347],[71,79,150,168,299,347],[71,80,168,183,299,347],[81,176,299,347],[71,136,171,176,299,347],[71,136,172,176,299,347],[71,136,176,299,347],[71,79,174,176,299,347],[177,178,179,180,181,299,347],[168,169,170,171,172,173,174,175,176,182,299,347],[183,195,196,299,347],[71,150,299,347],[184,185,186,187,188,189,190,191,192,193,194,299,347],[71,81,299,347]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","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":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","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":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","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":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","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":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","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},"73cc073d7a102374d6b9bcdbde8072f3aa3c8f86767f562086b6a7a7df5f22c0","e66deb230968faf1a8f37ea6f217f319dd0dad7a39ead1bf5d4f54e2eb5ce4bd","13ee17bbdd42459d6450899cea1999aab64c723328e773c0be5e8a13b51b6259","f79062b892847b4e33d0b730bf9dcf66ac24fc3fe9df7bba4d0997c6bdf6cbde","20f3a5481b2c009533e9e6b864cbd4ae3c09ccfca0577918b3587cda295e7071","2797c77cc0da0836a37c8c1fe64942a999c73f811f5481d827ac7d8cb9ddedd3","5a40849c3a5d5a8c2aa754fc964830ea344c94bfeddd4b442bdeae899e2f5339","848836f528d4ac80a5b3212c719225a3ba09406d44fea755cb642299a68d7056","fae981646738728f2b882c14625b99c23c430400a21c081dc6888d9703bd6c68","45c8a077eb724bae4e1fc0d15f76618650e32e55c4582dc1f27153ecdeb66ca6","302c082712d8fe41be387cd34af45b163b5314c04ddeefe53b1cb57fe46d3221","0c1a84d7b974db1961c6e9ab71d5257dfa38d99fb6300f22de55750526c9daef","69bc40bb169ea922cab72dc2142f37e75b44095cf1e79ca1b2809164c284de57",{"version":"264f935450101e4b000eb351cf75c9d799ca20a278b260a9e5770303b5f2b6a3","impliedFormat":99},{"version":"2f628fda32195e39bca4d49f030b16aa81a53e0e10714356c1496ede4d6fc0fe","impliedFormat":99},{"version":"b0585389e0dcd131241ff48a6b4e8bebdf97813850183ccfa2a60118532938dd","impliedFormat":99},{"version":"b11acc27c280988d7256bbd8ffe9f1cb5a0e5ed17cddf5335289ee0e81500369","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":"2b37ba54ec067598bf912d56fcb81f6d8ad86a045c757e79440bdef97b52fe1b","impliedFormat":99},{"version":"1bc9dd465634109668661f998485a32da369755d9f32b5a55ed64a525566c94b","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","83dc9baec54faf6489ac79d6e61068d3b2d5a0ec6051e30b79e20724947bf3d2","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":"857d4f978e0bc4334f466db6e46ac590fc3ceb30c05cf1eb0fc50429dcdd80c2","signature":"d10d08d2b4c1edfb95b6be02b72466204985a4d12d527e810b34baec0f7c4b94"},{"version":"d87a1a80c72cd7179a3d39ff7d91624391c1afa2a07b9f8179fe42590d33b7e2","signature":"9e00aa566225b879614b941815798a83b114acfa060ff58d240891de9256b904"},{"version":"25da5fe351e957272bc2f788b77be752febfc6a0b7bc36d30f267b110689baee","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":"70e37026ad63b215a6a49919ff5661e08546eaba8a45e68fbe76eb85466323e4","signature":"0ead8cfdd83c163a2a4c7208cd854df8553e7b2efd249d32b6b9f1fd7e5854db"},{"version":"12c1fe36c5af34fa33480e11f787821d7c80a91b5662c5935549bd167941efba","signature":"4da00ac0831da0a09ba191dc50edf2c6333e307c0f6725a4dc061e82ae9df776"},{"version":"2e5e2157924dfb63cafd03e9c764e68cc933e3793d27874d4301d37dd8060d09","signature":"e70eed5ac23e0313392476de6303cff12723e88b4fa605f8877201ab7de2a740"},{"version":"8390bc4fdd3ef4da14c08387afad1a3994526e4e5e93af1e999cdd26749b2696","signature":"ff22fb1c2f13e264c3727c83f3bef92f9b534810707e4e1aa187d809da779559"},{"version":"fccbeb39029332ac8d6ddf43b59ae779368e4e7d3bb52271912ec73bb20570d9","signature":"ae74cc85a531bdbcce5898d9b56942d132592e35f3322910cce9d74494d86fdb"},{"version":"8c2d19143dc5e2182bbb2b2d0b0b5149839bda7ad5927aa729f7cc67c6d21659","signature":"1d468692c2f3aeea145d4ce7524c79fa7754e020807dd38318e544fa7fafe0fc"},{"version":"cd69cb392c3ecd9623bc20aae018c8f07f698ad891a37f3ad529f35905a32ee4","signature":"79ac4e4a5b10118be1e09077a43fccba6895dc6541f4b72c4b8047ac26686556"},{"version":"97ccd098559bf9ce8bae2005e0bc2891fbc717c29595a79c679c879457001ddb","signature":"48ea8972df3493f39411367ae0a8b6cb1816c10bb007223f081af9b8501a5357"},{"version":"cac7243f7cdb0db0a75d09eb455a467ed5bc15209f98d7e73688849e1b85af77","signature":"4e0502628a7b4eb42fc38a2eda8eb613a50d10409f5250d98d4d8e88530d708d"},{"version":"8ab415d31ca45c5ff9a7a0f5f17646b2a76d64ef27c0182f80f8a3b797c126b5","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":"17bb4105d0ea2ab2bfcb4f77ff8585691d5569c90ae15f4fa8d5ff9fb42b910b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"456fa0c0ab68731564917642b977c71c3b7682240685b118652fb9253c9a6429","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":"2cbe0621042e2a68c7cbce5dfed3906a1862a16a7d496010636cdbdb91341c0f","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"a38efe83ff77c34e0f418a806a01ca3910c02ee7d64212a59d59bca6c2c38fa1","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"7b988bc259155186e6b09dd8b32856d9e45c8d261e63c19abaf590bb6550f922","affectsGlobalScope":true,"impliedFormat":1},{"version":"fe7b52f993f9336b595190f3c1fcc259bb2cf6dcb4ac8fdb1e0454cc5df7301e","impliedFormat":1},{"version":"e9b97d69510658d2f4199b7d384326b7c4053b9e6645f5c19e1c2a54ede427fc","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"81711af669f63d43ccb4c08e15beda796656dd46673d0def001c7055db53852d","affectsGlobalScope":true,"impliedFormat":1},{"version":"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"bdba81959361810be44bcfdd283f4d601e406ab5ad1d2bdff0ed480cf983c9d7","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"b326f4813b90d230ec3950f66bd5b5ce3971aac5fac67cfafc54aa07b39fd07f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c8420c7c2b778b334587a4c0311833b5212ff2f684ea37b2f0e2b117f1d7210d","impliedFormat":1},{"version":"b6b08215821c9833b0e8e30ea1ed178009f2f3ff5d7fae3865ee42f97cc87784","impliedFormat":1},{"version":"9757d0daeeb72efec2c546ddcf6a237a821e57eb61c72e5bc8e6c22e968de63c","impliedFormat":1},{"version":"73cf6cc19f16c0191e4e9d497ab0c11c7b38f1ca3f01ad0f09a3a5a971aac4b8","impliedFormat":1},{"version":"528b62e4272e3ddfb50e8eed9e359dedea0a4d171c3eb8f337f4892aac37b24b","impliedFormat":1},{"version":"ed58b9974bb3114f39806c9c2c6258c4ffa6a255921976a7c53dfa94bf178f42","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"f72bc8fe16da67e4e3268599295797b202b95e54bd215a03f97e925dd1502a36","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"915e18c559321c0afaa8d34674d3eb77e1ded12c3e85bf2a9891ec48b07a1ca5","affectsGlobalScope":true,"impliedFormat":1},{"version":"e9727a118ce60808e62457c89762fe5a4e2be8e9fd0112d12432d1bafdba942f","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"70b57b5529051497e9f6482b76d91c0dcbb103d9ead8a0549f5bab8f65e5d031","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"3a90b9beac4c2bfdf6517faae0940a042b81652badf747df0a7c7593456f6ebe","impliedFormat":1},{"version":"8302157cd431b3943eed09ad439b4441826c673d9f870dcb0e1f48e891a4211e","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"dba28a419aec76ed864ef43e5f577a5c99a010c32e5949fe4e17a4d57c58dd11","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"a5890565ed564c7b29eb1b1038d4e10c03a3f5231b0a8d48fea4b41ab19f4f46","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":"cee74f5970ffc01041e5bffc3f324c20450534af4054d2c043cb49dbbd4ec8f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a654e0d950353614ba4637a8de4f9d367903a0692b748e11fccf8c880c99735","affectsGlobalScope":true,"impliedFormat":1},{"version":"42da246c46ca3fd421b6fd88bb4466cda7137cf33e87ba5ceeded30219c428bd","impliedFormat":1},{"version":"3a051941721a7f905544732b0eb819c8d88333a96576b13af08b82c4f17581e4","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"3006130eae582d9bc732ab302ac25bbd86777dbac3a9eece81a2c77570f65e9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"db3d77167a7da6c5ba0c51c5b654820e3464093f21724ccd774c0b9bc3f81bc0","impliedFormat":1},{"version":"d9b6fd8640f6ad3f13ce9ce47d91061a698cf7763fed7f668e4f89709989aae5","impliedFormat":1}],"root":[[198,201],204,[244,255],[259,265],[267,269],[286,293]],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":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":[[83,1],[344,2],[345,2],[346,3],[299,4],[347,5],[348,6],[349,7],[294,8],[297,9],[295,8],[296,8],[350,10],[351,11],[352,12],[353,13],[354,14],[355,15],[356,15],[357,16],[358,17],[359,18],[360,19],[300,8],[298,8],[361,20],[362,21],[363,22],[396,23],[364,24],[365,25],[366,26],[367,27],[368,28],[369,29],[370,30],[371,31],[372,32],[373,33],[374,33],[375,34],[376,8],[377,8],[378,35],[380,36],[379,37],[381,38],[382,39],[383,40],[384,41],[385,42],[386,43],[387,44],[388,45],[389,46],[390,47],[391,48],[392,49],[393,50],[301,8],[302,8],[303,8],[341,51],[342,8],[343,8],[394,52],[395,53],[82,8],[279,8],[87,54],[86,55],[85,56],[278,57],[277,58],[281,59],[280,60],[283,61],[282,62],[121,63],[101,64],[102,64],[103,64],[104,64],[105,64],[106,64],[107,65],[109,64],[108,64],[120,66],[110,64],[112,64],[111,64],[114,64],[113,64],[115,64],[116,64],[117,64],[118,64],[119,64],[100,64],[99,67],[272,68],[270,69],[271,69],[275,70],[273,69],[274,69],[276,69],[84,8],[72,8],[166,71],[77,71],[73,72],[266,73],[76,74],[202,75],[74,76],[75,77],[285,78],[284,79],[98,80],[97,81],[123,82],[122,83],[124,84],[94,85],[93,8],[57,8],[58,8],[10,8],[12,8],[11,8],[2,8],[13,8],[14,8],[15,8],[16,8],[17,8],[18,8],[19,8],[20,8],[3,8],[21,8],[22,8],[4,8],[23,8],[27,8],[24,8],[25,8],[26,8],[28,8],[29,8],[30,8],[5,8],[31,8],[32,8],[33,8],[34,8],[6,8],[38,8],[35,8],[36,8],[37,8],[39,8],[7,8],[40,8],[45,8],[46,8],[41,8],[42,8],[43,8],[44,8],[8,8],[50,8],[47,8],[48,8],[49,8],[51,8],[9,8],[52,8],[53,8],[54,8],[56,8],[55,8],[1,8],[319,86],[329,87],[318,86],[339,88],[310,89],[309,90],[338,91],[332,92],[337,93],[312,94],[326,95],[311,96],[335,97],[307,98],[306,91],[336,99],[308,100],[313,101],[314,8],[317,101],[304,8],[340,102],[330,103],[321,104],[322,105],[324,106],[320,107],[323,108],[333,91],[315,109],[316,110],[325,111],[305,112],[328,103],[327,101],[331,8],[334,113],[96,114],[92,8],[95,115],[89,116],[88,1],[91,117],[90,118],[148,119],[149,120],[150,121],[137,122],[138,123],[139,124],[140,125],[141,126],[147,127],[142,128],[146,123],[143,129],[144,130],[145,129],[60,131],[61,132],[59,133],[71,134],[67,135],[66,136],[62,8],[68,137],[70,138],[69,139],[64,140],[65,141],[63,142],[256,8],[257,143],[258,144],[242,145],[238,124],[241,146],[237,124],[239,124],[240,124],[236,124],[243,147],[219,148],[223,149],[221,148],[222,148],[220,148],[207,148],[212,148],[208,148],[205,148],[210,148],[206,145],[211,148],[217,148],[209,148],[218,150],[214,148],[213,148],[215,148],[216,148],[231,148],[232,148],[235,151],[230,148],[224,148],[227,148],[226,148],[225,148],[228,148],[229,148],[233,148],[234,148],[199,152],[198,124],[291,153],[292,154],[265,155],[264,155],[289,156],[290,155],[293,157],[201,158],[200,159],[259,160],[261,161],[260,160],[263,162],[253,163],[255,164],[254,165],[204,166],[249,167],[244,168],[250,169],[246,170],[247,170],[252,171],[248,172],[251,173],[245,174],[262,175],[267,176],[268,177],[288,178],[287,179],[286,180],[269,177],[167,181],[165,182],[78,183],[81,76],[79,73],[203,184],[151,8],[164,185],[153,186],[152,187],[156,188],[154,189],[155,189],[157,190],[158,186],[163,191],[160,192],[161,174],[162,193],[159,174],[80,194],[136,195],[134,196],[131,197],[132,198],[133,199],[135,200],[127,201],[128,202],[129,203],[126,204],[125,8],[130,205],[169,206],[176,124],[170,207],[171,208],[172,208],[173,209],[174,210],[175,211],[180,212],[178,213],[177,214],[181,215],[179,216],[182,217],[183,218],[168,124],[197,219],[184,220],[185,124],[186,124],[187,124],[195,221],[192,124],[188,124],[194,124],[189,124],[190,124],[193,124],[191,222],[196,8]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.2"}
1
+ {"fileNames":["../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.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.3/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.41.2/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.3/node_modules/vfile-message/lib/index.d.ts","../../../../node_modules/.pnpm/vfile-message@4.0.3/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/paste-rule.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/$paste-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.8.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/create-table.ts","../src/node/table/utils/types.ts","../src/node/table/utils/get-cells-in-col.ts","../src/node/table/utils/get-cells-in-row.ts","../src/node/table/utils/select-line.ts","../src/node/table/utils/add-row-with-alignment.ts","../src/node/table/utils/get-all-cells-in-table.ts","../src/node/table/utils/select-table.ts","../src/node/table/utils/index.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","../src/composed/pasterules.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@24.7.1/node_modules/@types/node/compatibility/iterators.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/globals.typedarray.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/buffer.buffer.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/globals.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/web-globals/crypto.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/web-globals/domexception.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/web-globals/events.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/utility.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/header.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/readable.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/fetch.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/formdata.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/connector.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/client-stats.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/client.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/errors.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/dispatcher.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/global-dispatcher.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/global-origin.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/pool-stats.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/pool.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/handlers.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/balanced-pool.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/h2c-client.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/agent.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/mock-interceptor.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/mock-call-history.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/mock-agent.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/mock-client.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/mock-pool.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/snapshot-agent.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/mock-errors.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/proxy-agent.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/retry-handler.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/retry-agent.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/api.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/cache-interceptor.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/interceptors.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/util.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/cookies.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/patch.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/websocket.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/eventsource.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/content-type.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/cache.d.ts","../../../../node_modules/.pnpm/undici-types@7.14.0/node_modules/undici-types/index.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/web-globals/fetch.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/web-globals/navigator.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/web-globals/storage.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/web-globals/streams.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/assert.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/buffer.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/child_process.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/cluster.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/console.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/constants.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/crypto.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/dgram.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/dns.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/domain.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/events.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/fs.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/http.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/http2.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/https.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/inspector.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/inspector.generated.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/module.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/net.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/os.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/path.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/process.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/punycode.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/querystring.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/readline.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/repl.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/sea.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/sqlite.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/stream.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/stream/web.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/test.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/timers.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/tls.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/trace_events.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/tty.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/url.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/util.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/v8.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/vm.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/wasi.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/zlib.d.ts","../../../../node_modules/.pnpm/@types+node@24.7.1/node_modules/@types/node/index.d.ts"],"fileIdsList":[[84,301,355,372,373],[301,352,353,355,372,373],[301,354,355,372,373],[355,372,373],[301,355,360,372,373,390],[301,355,356,361,366,372,373,375,387,398],[301,355,356,357,366,372,373,375],[301,355,372,373],[301,355,358,372,373,399],[301,355,359,360,367,372,373,376],[301,355,360,372,373,387,395],[301,355,361,363,366,372,373,375],[301,354,355,362,372,373],[301,355,363,364,372,373],[301,355,365,366,372,373],[301,354,355,366,372,373],[301,355,366,367,368,372,373,387,398],[301,355,366,367,368,372,373,382,387,390],[301,347,355,363,366,369,372,373,375,387,398],[301,355,366,367,369,370,372,373,375,387,395,398],[301,355,369,371,372,373,387,395,398],[299,300,301,302,303,304,305,306,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,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404],[301,355,366,372,373],[301,355,372,373,374,398],[301,355,363,366,372,373,375,387],[301,355,372,373,376],[301,355,372,373,377],[301,354,355,372,373,378],[301,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,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404],[301,355,372,373,380],[301,355,372,373,381],[301,355,366,372,373,382,383],[301,355,372,373,382,384,399,401],[301,355,366,372,373,387,388,390],[301,355,372,373,389,390],[301,355,372,373,387,388],[301,355,372,373,390],[301,355,372,373,391],[301,352,355,372,373,387,392],[301,355,366,372,373,393,394],[301,355,372,373,393,394],[301,355,360,372,373,375,387,395],[301,355,372,373,396],[301,355,372,373,375,397],[301,355,369,372,373,381,398],[301,355,360,372,373,399],[301,355,372,373,387,400],[301,355,372,373,374,401],[301,355,372,373,402],[301,355,360,372,373],[301,347,355,372,373],[301,355,372,373,403],[301,347,355,366,368,372,373,378,387,390,398,400,401,403],[301,355,372,373,387,404],[86,87,88,89,277,280,301,355,372,373],[85,86,87,89,277,280,301,355,372,373],[85,86,89,277,280,301,355,372,373],[123,282,286,301,355,372,373],[89,123,283,286,301,355,372,373],[89,123,283,285,301,355,372,373],[85,89,123,283,284,286,301,355,372,373],[283,286,287,301,355,372,373],[89,123,283,286,288,301,355,372,373],[101,102,122,301,355,372,373],[85,123,283,286,301,355,372,373],[85,301,355,372,373],[103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,301,355,372,373],[84,85,301,355,372,373],[86,89,275,276,280,301,355,372,373],[86,89,277,280,301,355,372,373],[86,89,277,278,279,301,355,372,373],[75,78,301,355,372,373],[74,301,355,372,373],[78,301,355,372,373],[75,76,77,301,355,372,373],[75,76,77,78,301,355,372,373],[75,301,355,372,373],[75,76,78,301,355,372,373],[281,288,289,301,355,372,373],[290,301,355,372,373],[85,86,89,98,99,100,125,277,280,286,301,355,372,373],[85,89,93,98,100,125,286,301,355,372,373],[85,98,100,123,124,125,283,286,301,355,372,373],[85,93,98,100,123,125,283,286,301,355,372,373],[85,98,100,125,301,355,372,373],[95,301,355,372,373],[301,313,316,319,320,355,372,373,398],[301,316,355,372,373,387,398],[301,316,320,355,372,373,398],[301,355,372,373,387],[301,310,355,372,373],[301,314,355,372,373],[301,312,313,316,355,372,373,398],[301,355,372,373,375,395],[301,355,372,373,405],[301,310,355,372,373,405],[301,312,316,355,372,373,375,398],[301,307,308,309,311,315,355,366,372,373,387,398],[301,316,324,332,355,372,373],[301,308,314,355,372,373],[301,316,341,342,355,372,373],[301,308,311,316,355,372,373,390,398,405],[301,316,355,372,373],[301,312,316,355,372,373,398],[301,307,355,372,373],[301,310,311,312,314,315,316,317,318,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,342,343,344,345,346,355,372,373],[301,316,334,337,355,363,372,373],[301,316,324,325,326,355,372,373],[301,314,316,325,327,355,372,373],[301,315,355,372,373],[301,308,310,316,355,372,373],[301,316,320,325,327,355,372,373],[301,320,355,372,373],[301,314,316,319,355,372,373,398],[301,308,312,316,324,355,372,373],[301,316,334,355,372,373],[301,327,355,372,373],[301,310,316,341,355,372,373,390,403,405],[93,97,301,355,372,373],[84,93,94,96,98,100,125,301,355,372,373],[90,301,355,372,373],[91,92,301,355,372,373],[84,91,93,301,355,372,373],[73,150,301,355,372,373],[151,301,355,372,373],[150,152,301,355,372,373],[73,80,81,82,125,138,152,301,355,372,373],[73,81,301,355,372,373],[73,301,355,372,373],[73,81,83,138,301,355,372,373],[73,82,301,355,372,373],[139,140,141,142,143,144,145,146,147,148,149,301,355,372,373],[73,152,301,355,372,373],[73,138,301,355,372,373],[73,82,83,301,355,372,373],[73,83,138,301,355,372,373],[61,301,355,372,373],[61,62,301,355,372,373],[62,301,355,372,373],[63,67,69,72,301,355,372,373],[64,68,301,355,372,373],[63,64,67,301,355,372,373],[63,67,69,73,301,355,372,373],[70,71,301,355,372,373],[69,70,301,355,372,373],[65,301,355,372,373],[65,66,301,355,372,373],[66,301,355,372,373],[260,301,355,372,373],[261,301,355,372,373],[83,201,301,355,372,373],[240,241,242,243,244,301,355,372,373],[73,222,227,239,245,246,301,355,372,373],[201,301,355,372,373],[223,224,225,226,301,355,372,373],[209,210,211,212,213,214,215,216,217,218,219,220,221,301,355,372,373],[228,229,230,231,232,233,234,235,236,237,238,301,355,372,373],[202,301,355,372,373],[205,267,301,355,372,373],[268,269,270,294,295,296,301,355,372,373],[73,205,267,301,355,372,373],[73,267,301,355,372,373],[73,293,301,355,372,373],[205,267,293,297,301,355,372,373],[204,301,355,372,373],[153,168,170,201,203,301,355,372,373],[201,203,262,301,355,372,373],[263,264,301,355,372,373],[259,265,266,301,355,372,373],[81,168,201,203,207,208,247,256,301,355,372,373],[208,256,257,258,301,355,372,373],[80,81,83,153,201,203,208,247,256,257,301,355,372,373],[83,138,201,203,207,301,355,372,373],[73,81,83,207,208,301,355,372,373],[73,83,208,301,355,372,373],[81,207,301,355,372,373],[81,207,249,301,355,372,373],[248,249,250,251,252,253,254,255,301,355,372,373],[81,168,207,301,355,372,373],[81,168,207,254,301,355,372,373],[83,301,355,372,373],[80,201,203,247,262,301,355,372,373],[201,203,271,301,355,372,373],[201,203,207,301,355,372,373],[272,273,274,291,292,301,355,372,373],[81,83,201,203,301,355,372,373],[201,203,290,301,355,372,373],[169,301,355,372,373],[167,301,355,372,373],[79,301,355,372,373],[206,301,355,372,373],[154,159,160,166,301,355,372,373],[81,83,301,355,372,373],[80,81,301,355,372,373],[155,156,157,158,301,355,372,373],[80,83,156,301,355,372,373],[82,301,355,372,373],[161,163,164,165,301,355,372,373],[83,162,301,355,372,373],[81,83,162,301,355,372,373],[77,301,355,372,373],[128,136,137,301,355,372,373],[134,135,301,355,372,373],[83,128,301,355,372,373],[83,128,133,135,301,355,372,373],[83,132,134,301,355,372,373],[130,131,301,355,372,373],[128,138,301,355,372,373],[83,128,129,131,301,355,372,373],[83,130,301,355,372,373],[127,132,301,355,372,373],[83,98,100,125,126,131,135,301,355,372,373],[73,153,171,301,355,372,373],[73,80,171,301,355,372,373],[73,83,138,171,301,355,372,373],[73,81,171,301,355,372,373],[73,81,153,171,301,355,372,373],[73,82,171,187,301,355,372,373],[83,180,301,355,372,373],[73,138,175,180,301,355,372,373],[73,138,176,180,301,355,372,373],[73,138,180,301,355,372,373],[73,81,178,180,301,355,372,373],[181,182,183,184,185,301,355,372,373],[171,172,173,174,175,176,177,178,179,180,186,301,355,372,373],[187,199,200,301,355,372,373],[73,153,301,355,372,373],[188,189,190,191,192,193,194,195,196,197,198,301,355,372,373],[73,83,301,355,372,373]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","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":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","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":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","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":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","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":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},"73cc073d7a102374d6b9bcdbde8072f3aa3c8f86767f562086b6a7a7df5f22c0","e66deb230968faf1a8f37ea6f217f319dd0dad7a39ead1bf5d4f54e2eb5ce4bd","13ee17bbdd42459d6450899cea1999aab64c723328e773c0be5e8a13b51b6259","f79062b892847b4e33d0b730bf9dcf66ac24fc3fe9df7bba4d0997c6bdf6cbde","20f3a5481b2c009533e9e6b864cbd4ae3c09ccfca0577918b3587cda295e7071","2797c77cc0da0836a37c8c1fe64942a999c73f811f5481d827ac7d8cb9ddedd3","5a40849c3a5d5a8c2aa754fc964830ea344c94bfeddd4b442bdeae899e2f5339","848836f528d4ac80a5b3212c719225a3ba09406d44fea755cb642299a68d7056","fae981646738728f2b882c14625b99c23c430400a21c081dc6888d9703bd6c68","45c8a077eb724bae4e1fc0d15f76618650e32e55c4582dc1f27153ecdeb66ca6","302c082712d8fe41be387cd34af45b163b5314c04ddeefe53b1cb57fe46d3221","0c1a84d7b974db1961c6e9ab71d5257dfa38d99fb6300f22de55750526c9daef","69bc40bb169ea922cab72dc2142f37e75b44095cf1e79ca1b2809164c284de57",{"version":"264f935450101e4b000eb351cf75c9d799ca20a278b260a9e5770303b5f2b6a3","impliedFormat":99},{"version":"2f628fda32195e39bca4d49f030b16aa81a53e0e10714356c1496ede4d6fc0fe","impliedFormat":99},{"version":"b0585389e0dcd131241ff48a6b4e8bebdf97813850183ccfa2a60118532938dd","impliedFormat":99},{"version":"b11acc27c280988d7256bbd8ffe9f1cb5a0e5ed17cddf5335289ee0e81500369","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":"2b37ba54ec067598bf912d56fcb81f6d8ad86a045c757e79440bdef97b52fe1b","impliedFormat":99},{"version":"1bc9dd465634109668661f998485a32da369755d9f32b5a55ed64a525566c94b","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","83dc9baec54faf6489ac79d6e61068d3b2d5a0ec6051e30b79e20724947bf3d2","c701a34a532aa1c950d67177e303441556f7ed36ac415ed49b4eac122c2da084","8cd4c86b90f9a96ba804585a4b6a998f484a860af3dfd12641ecb9eca109274b","8cd4c86b90f9a96ba804585a4b6a998f484a860af3dfd12641ecb9eca109274b","1b92de1f5b74cf4bda283aa7688c80781e9c7273f44a4ef2db084747a94be933","650d0be7c19349ccb4c64d4b596f0f5e5adf020b8f25af5833526ddbc795a12c","52940aaf4a4d0bc045dc959ac2db1e4840c57b3a1a49286ef193534b093e4bcf","f973eff08fa4c0e8eacef74a0879a51ee36edbc9ce791a72bfdee3280a46308c","bfa8cc766520464f4a52189e6fb04b9f4eb2cde8985d1a21411661c0ec3dca3c","0011ea4409069c099d1e78da44ff6f674e8f290c8ed7f781db4520fe9527c00d","06ad6054d63c8096c20aae2af99b2144a6917340442abe12291d55a99388a154","7366f9cf857985f15e3bcfb514975a88edf7e93e3f95f601f313569534bc4796","58b7b2c5f659600b91e58f4dd35e9a144284264b6e44e89558b7785d113bfd89","dc20e16856c89c3e53554047983b040e6ea363658815cebbdccc52808ca8658c","e384f34c53375060fcd591e594d6d2f1fe20fb225e23b4dd7f292cac017901f3","ab2b31e6452982f60adc590e7ac9c6ef780fc8c00aa451ed39ccf79d9a074e7b","50e52950b1b92455f40c3fba61ee9a43e74bf9bdf6a25e01ad2e3a2226bbb2ec","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","fce4214d24cfbfdffbbdb8920b7d775f2d3882b216e96a4a8aa91c1e201d3a13","6df690f0ce028bef563bff3e0b679649bf38012eb4f79842979ab05ad86ee508","c2df2558f0a72c9024073737b0113c8eb87abad25b8d72cbc97ace5fa3c54eda","146d46efad38c63ae16569351d69ac1ed50b15c6814bce86f0506594e5da02af","56369eb2da63bb154177b9fc237787754292d88ac26f2cf98534ad870cbb086a","1f9e5882fd72f35a2c8e66f4d1e84a829a8a76054738b5f5130dc76ab5a4f147","ea4f1dab950db7938a946e8991e03c822a54439e16cf33c85ae7f5f10a0dd0de","cb32232cc4a86d8473ad1acbc1912799f4434dceb2da6060678d753bd23f8132","4ef3f794e8e7f86c5154fbbb4768603a394a4f224cf12f1d3b90810fe61d98d2","32d740e689063257c216075566cd3a27ded851de399bd658c476153510c5598a","abd2262bb4ae4a67c1e094d2a04343fca4ef5f2928641ca72508cc37a649a257","5cb123c55dd3bdca31138015e06dc86bcd9c34886d6a87ab03b8a5a027d4beab","77b54b2bf7d6e4a05b79d286903ad9f71141f91409729c5deb8bfa417d7f0960","573f356148118ea54c7b9a2eff374329022b1e38d5a1070cae53c97d7b0ef355","fa5fb2553bdeb655a17283d09d9d9da716910a4efb1ab4c4fd100c1b6172d822","508a4ef8e22c663ed7fb811d0dbecd74186cf409a6546f151974b31391076c4b","790be052e6953f564e476d85ea08f079fad0fa5cf2de3b724a339788b0b6e795","260e103111c466db6af769f26d7c9306c06b08112f8058dc7d024d9f4c4755d1","615bf800a06a30a7434efc5bfbd1f6909f8d6b1a93f74276d25166f6c26a283f","f477f25c0e87b695bc3037ef4474d502673241e75018a2d910e2cc5579bfb236","05d86f27e8e942876bbe9dd71e21fa84dd56e63ee1cfc49d66b48410e491cd5d","3d107bdab3280468cbc54ffffe6f7d1d75dd33ceabb236d3383eac38a3d969e7","ff0a3251e245c6e4420505fc22330c270fe87fc390d6e232556129aafc5e5d33","6f5ee5ba1915f1e604b8cb2f302d6041c8ad52d557106842a057dd39d8f8a5eb","58e118242e8ea06b12520bba9164f27ce84892cbd8d1a08b7d0c2f7443b75cfe","bfa14541c2b697d5a73041bfa7a318b47db2301e2045856c7ab9db7bb3f4d21b","caee8e88a02710517f1d1849b48fa8793878f4ab0c51cde5c025ba6f21b946df","bbf57449e9341dc4b6f56e7ce74d0edee6cd7c4ca55b52664469de0c7d384445",{"version":"f8ce0d0d5e972abf3ce627f735f1595fc4721449ba19c283aa2c7e74bf1bf1d1","signature":"0cb80a1e82df72e7776496d59f35c657af69549a9de620d4d23b1a5d7302aa14"},{"version":"301513b5c98430d02fab46247b7a68ac3d0578fab7a403d9db09f3fa5761a9e3","signature":"69d17fda3a59adc0a1d6a768c2573cae24915c2fc745eb51301681bced4c3f55"},{"version":"857d4f978e0bc4334f466db6e46ac590fc3ceb30c05cf1eb0fc50429dcdd80c2","signature":"d10d08d2b4c1edfb95b6be02b72466204985a4d12d527e810b34baec0f7c4b94"},{"version":"d87a1a80c72cd7179a3d39ff7d91624391c1afa2a07b9f8179fe42590d33b7e2","signature":"9e00aa566225b879614b941815798a83b114acfa060ff58d240891de9256b904"},{"version":"25da5fe351e957272bc2f788b77be752febfc6a0b7bc36d30f267b110689baee","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":"70e37026ad63b215a6a49919ff5661e08546eaba8a45e68fbe76eb85466323e4","signature":"0ead8cfdd83c163a2a4c7208cd854df8553e7b2efd249d32b6b9f1fd7e5854db"},{"version":"12c1fe36c5af34fa33480e11f787821d7c80a91b5662c5935549bd167941efba","signature":"4da00ac0831da0a09ba191dc50edf2c6333e307c0f6725a4dc061e82ae9df776"},{"version":"2e5e2157924dfb63cafd03e9c764e68cc933e3793d27874d4301d37dd8060d09","signature":"e70eed5ac23e0313392476de6303cff12723e88b4fa605f8877201ab7de2a740"},{"version":"8390bc4fdd3ef4da14c08387afad1a3994526e4e5e93af1e999cdd26749b2696","signature":"ff22fb1c2f13e264c3727c83f3bef92f9b534810707e4e1aa187d809da779559"},{"version":"fccbeb39029332ac8d6ddf43b59ae779368e4e7d3bb52271912ec73bb20570d9","signature":"ae74cc85a531bdbcce5898d9b56942d132592e35f3322910cce9d74494d86fdb"},{"version":"8c2d19143dc5e2182bbb2b2d0b0b5149839bda7ad5927aa729f7cc67c6d21659","signature":"1d468692c2f3aeea145d4ce7524c79fa7754e020807dd38318e544fa7fafe0fc"},{"version":"cd69cb392c3ecd9623bc20aae018c8f07f698ad891a37f3ad529f35905a32ee4","signature":"79ac4e4a5b10118be1e09077a43fccba6895dc6541f4b72c4b8047ac26686556"},{"version":"97ccd098559bf9ce8bae2005e0bc2891fbc717c29595a79c679c879457001ddb","signature":"48ea8972df3493f39411367ae0a8b6cb1816c10bb007223f081af9b8501a5357"},{"version":"cac7243f7cdb0db0a75d09eb455a467ed5bc15209f98d7e73688849e1b85af77","signature":"4e0502628a7b4eb42fc38a2eda8eb613a50d10409f5250d98d4d8e88530d708d"},{"version":"8ab415d31ca45c5ff9a7a0f5f17646b2a76d64ef27c0182f80f8a3b797c126b5","signature":"f40077f403d9755ae43b73f936414b7f9e87c4fab9aca33b97b92d8d73565a41"},{"version":"060257b8fa490f17318b5a9b3221f06c8d526ad0e08e1b515fc23b129cc2750e","signature":"1a163f0189428cbc9642d29967b3d74e642bdc3bd831952a3839571c5a3db609"},{"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":"4d2890a7a8bb1131579199987a099f85891585f91d293469c25deda246386df6","signature":"fc974bc2c3924abd45ead4ca77572ea74cacad429e79eb01136661717f75b796"},{"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":"c768a897cc9a671253e58d7b21afa1c87fc7657e722bfff30cf7206185b5d4ce","signature":"193d9b86e294bd96787dd728e36f11471a4eb315ea9c2c0dce20754fd6e4d7f5"},{"version":"539e22ad0160ee664d3d38c27e72f66693246c79ecd3180b1ed1d465b55aabbe","signature":"fa5c0f99cbd679f80db406a2766d72d288cd7b7388c3023313379a3ed14c6141"},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0671b50bb99cc7ad46e9c68fa0e7f15ba4bc898b59c31a17ea4611fab5095da","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"impliedFormat":1},{"version":"1b2dd1cbeb0cc6ae20795958ba5950395ebb2849b7c8326853dd15530c77ab0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"387a023d363f755eb63450a66c28b14cdd7bc30a104565e2dbf0a8988bb4a56c","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"3a80bc85f38526ca3b08007ee80712e7bb0601df178b23fbf0bf87036fce40ce","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"2931540c47ee0ff8a62860e61782eb17b155615db61e36986e54645ec67f67c2","impliedFormat":1},{"version":"3c8e93af4d6ce21eb4c8d005ad6dc02e7b5e6781f429d52a35290210f495a674","impliedFormat":1},{"version":"f6faf5f74e4c4cc309a6c6a6c4da02dbb840be5d3e92905a23dcd7b2b0bd1986","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"3bacf516d686d08682751a3bd2519ea3b8041a164bfb4f1d35728993e70a2426","impliedFormat":1},{"version":"00b21ef538da5a2bbe419e2144f3be50661768e1e039ef2b57bb89f96aff9b18","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"e843e840f484f7e59b2ef9488501a301e3300a8e3e56aa84a02ddf915c7ce07d","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"78b29846349d4dfdd88bd6650cc5d2baaa67f2e89dc8a80c8e26ef7995386583","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"48cc3ec153b50985fb95153258a710782b25975b10dd4ac8a4f3920632d10790","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"18f8cfbb14ba9405e67d30968ae67b8d19133867d13ebc49c8ed37ec64ce9bdb","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"866078923a56d026e39243b4392e282c1c63159723996fa89243140e1388a98d","impliedFormat":1},{"version":"830171b27c5fdf9bcbe4cf7d428fcf3ae2c67780fb7fbdccdf70d1623d938bc4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d97fb21da858fb18b8ae72c314e9743fd52f73ebe2764e12af1db32fc03f853f","affectsGlobalScope":true,"impliedFormat":1},{"version":"f68328826a275104d92bd576c796c570f66365f25ea8bbaaa208727bce132d5f","impliedFormat":1},{"version":"7cf69dd5502c41644c9e5106210b5da7144800670cbe861f66726fa209e231c4","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"18334defc3d0a0e1966f5f3c23c7c83b62c77811e51045c5a7ff3883b446f81f","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b17fcd63aa13734bf1d01419f4d6031b1c6a5fb2cbdb45e9839fb1762bdf0df","impliedFormat":1},{"version":"c4e8e8031808b158cfb5ac5c4b38d4a26659aec4b57b6a7e2ba0a141439c208c","impliedFormat":1},{"version":"2c91d8366ff2506296191c26fd97cc1990bab3ee22576275d28b654a21261a44","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"beb77fcd86c8cee62c32b2fb82753f5bc0e171d938e20af3cb0b8925db78d60b","impliedFormat":1},{"version":"289e9894a4668c61b5ffed09e196c1f0c2f87ca81efcaebdf6357cfb198dac14","impliedFormat":1},{"version":"25a1105595236f09f5bce42398be9f9ededc8d538c258579ab662d509aa3b98e","impliedFormat":1},{"version":"aa9224557befad144262c85b463c0a7ba8a3a0ad2a7c907349f8bb8bc3fe4abc","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"8d86c8d8c43e04cc3dde9953e571656812c8964a3651203af7b3a1df832a34df","affectsGlobalScope":true,"impliedFormat":1},{"version":"0121911fcc364eb821d058cf4c3b9339f197eccbe298098a4c6be0396b607d90","impliedFormat":1},{"version":"c6176c7b9f3769ba7f076c7a791588562c653cc0ba08fb2184f87bf78db2a87c","impliedFormat":1},{"version":"d70840e8a184618f24132f455e16aad5d0b2e0253b96cbf88953e3913ae179f1","impliedFormat":1},{"version":"4f766affd1281935fe5f7fd5d7af693a7c26d81adef7c1aefb84b9cd573a9cbb","impliedFormat":1},{"version":"165a0c1f95bc939c72f18a280fc707fba6f2f349539246b050cfc09eb1d9f446","impliedFormat":1},{"version":"bbf42f98a5819f4f06e18c8b669a994afe9a17fe520ae3454a195e6eabf7700d","impliedFormat":1},{"version":"c0bb1b65757c72bbf8ddf7eaa532223bacf58041ff16c883e76f45506596e925","impliedFormat":1},{"version":"c8b85f7aed29f8f52b813f800611406b0bfe5cf3224d20a4bdda7c7f73ce368e","affectsGlobalScope":true,"impliedFormat":1},{"version":"7baae9bf5b50e572e7742c886c73c6f8fa50b34190bc5f0fd20dd7e706fda832","impliedFormat":1},{"version":"e99b0e71f07128fc32583e88ccd509a1aaa9524c290efb2f48c22f9bf8ba83b1","impliedFormat":1},{"version":"76957a6d92b94b9e2852cf527fea32ad2dc0ef50f67fe2b14bd027c9ceef2d86","impliedFormat":1},{"version":"5e9f8c1e042b0f598a9be018fc8c3cb670fe579e9f2e18e3388b63327544fe16","affectsGlobalScope":true,"impliedFormat":1},{"version":"a8a99a5e6ed33c4a951b67cc1fd5b64fd6ad719f5747845c165ca12f6c21ba16","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"70b57b5529051497e9f6482b76d91c0dcbb103d9ead8a0549f5bab8f65e5d031","impliedFormat":1},{"version":"8c81fd4a110490c43d7c578e8c6f69b3af01717189196899a6a44f93daa57a3a","impliedFormat":1},{"version":"1013eb2e2547ad8c100aca52ef9df8c3f209edee32bb387121bb3227f7c00088","impliedFormat":1},{"version":"b827f8800f42858f0a751a605c003b7ab571ff7af184436f36cef9bdfebae808","impliedFormat":1},{"version":"363eedb495912790e867da6ff96e81bf792c8cfe386321e8163b71823a35719a","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"6b306cd4282bbb54d4a6bb23cfb7a271160983dfc38c67b5a132504cfcc34896","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea713aa14a670b1ea0fbaaca4fd204e645f71ca7653a834a8ec07ee889c45de6","impliedFormat":1},{"version":"450172a56b944c2d83f45cc11c9a388ea967cd301a21202aa0a23c34c7506a18","impliedFormat":1},{"version":"9705cd157ffbb91c5cab48bdd2de5a437a372e63f870f8a8472e72ff634d47c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"3af7d02e5d6ecbf363e61fb842ee55d3518a140fd226bdfb24a3bca6768c58df","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"7dfa742c23851808a77ec27062fbbd381c8c36bb3cfdff46cb8af6c6c233bfc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb078cfcd14dc0b1700a48272958f803f30f13f99111c5978c75c3a0aa07e40e","affectsGlobalScope":true,"impliedFormat":1},{"version":"784490137935e1e38c49b9289110e74a1622baf8a8907888dcbe9e476d7c5e44","impliedFormat":1},{"version":"420fdd37c51263be9db3fcac35ffd836216c71e6000e6a9740bb950fb0540654","impliedFormat":1},{"version":"73b0bff83ee76e3a9320e93c7fc15596e858b33c687c39a57567e75c43f2a324","impliedFormat":1},{"version":"3c947600f6f5664cca690c07fcf8567ca58d029872b52c31c2f51d06fbdb581b","affectsGlobalScope":true,"impliedFormat":1},{"version":"493c64d062139b1849b0e9c4c3a6465e1227d2b42be9e26ec577ca728984c041","impliedFormat":1},{"version":"d7e9ab1b0996639047c61c1e62f85c620e4382206b3abb430d9a21fb7bc23c77","impliedFormat":1}],"root":[[202,205],208,[248,259],[263,270],[272,274],[291,298]],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":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":[[85,1],[352,2],[353,2],[354,3],[301,4],[355,5],[356,6],[357,7],[299,8],[358,9],[359,10],[360,11],[361,12],[362,13],[363,14],[364,14],[365,15],[366,16],[367,17],[368,18],[302,8],[300,8],[369,19],[370,20],[371,21],[405,22],[372,23],[373,8],[374,24],[375,25],[376,26],[377,27],[378,28],[379,29],[380,30],[381,31],[382,32],[383,32],[384,33],[385,8],[386,8],[387,34],[389,35],[388,36],[390,37],[391,38],[392,39],[393,40],[394,41],[395,42],[396,43],[397,44],[398,45],[399,46],[400,47],[401,48],[402,49],[303,8],[304,50],[305,8],[306,8],[348,51],[349,52],[350,8],[351,37],[403,53],[404,54],[84,8],[284,8],[89,55],[88,56],[87,57],[283,58],[282,59],[286,60],[285,61],[288,62],[287,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],[277,69],[275,70],[276,70],[280,71],[278,70],[279,70],[281,70],[86,8],[74,8],[169,72],[79,72],[75,73],[271,74],[78,75],[206,76],[76,77],[77,78],[290,79],[289,80],[100,81],[99,82],[125,83],[124,84],[126,85],[96,86],[95,8],[59,8],[60,8],[10,8],[12,8],[11,8],[2,8],[13,8],[14,8],[15,8],[16,8],[17,8],[18,8],[19,8],[20,8],[3,8],[21,8],[22,8],[4,8],[23,8],[27,8],[24,8],[25,8],[26,8],[28,8],[29,8],[30,8],[5,8],[31,8],[32,8],[33,8],[34,8],[6,8],[38,8],[35,8],[36,8],[37,8],[39,8],[7,8],[40,8],[45,8],[46,8],[41,8],[42,8],[43,8],[44,8],[8,8],[50,8],[47,8],[48,8],[49,8],[51,8],[9,8],[52,8],[53,8],[54,8],[56,8],[55,8],[1,8],[57,8],[58,8],[324,87],[336,88],[322,89],[337,90],[346,91],[313,92],[314,93],[312,94],[345,95],[340,96],[344,97],[316,98],[333,99],[315,100],[343,101],[310,102],[311,96],[317,103],[318,8],[323,104],[321,103],[308,105],[347,106],[338,107],[327,108],[326,103],[328,109],[331,110],[325,111],[329,112],[341,95],[319,113],[320,114],[332,115],[309,90],[335,116],[334,103],[330,117],[339,8],[307,8],[342,118],[98,119],[94,8],[97,120],[91,121],[90,1],[93,122],[92,123],[151,124],[152,125],[153,126],[139,127],[140,128],[141,129],[142,130],[143,131],[150,132],[144,133],[148,128],[145,134],[149,135],[146,136],[147,134],[62,137],[63,138],[61,139],[73,140],[69,141],[68,142],[64,8],[70,143],[72,144],[71,145],[66,146],[67,147],[65,148],[260,8],[261,149],[262,150],[246,151],[242,129],[245,152],[241,129],[243,129],[244,129],[240,129],[247,153],[223,154],[227,155],[225,154],[226,154],[224,154],[211,154],[216,154],[212,154],[209,154],[214,154],[210,151],[215,154],[221,154],[213,154],[222,156],[218,154],[217,154],[219,154],[220,154],[235,154],[236,154],[239,157],[234,154],[228,154],[231,154],[230,154],[229,154],[232,154],[233,154],[237,154],[238,154],[203,158],[202,129],[296,159],[297,160],[269,161],[268,161],[270,162],[294,163],[295,161],[298,164],[205,165],[204,166],[263,167],[265,168],[264,167],[267,169],[257,170],[259,171],[258,172],[208,173],[253,174],[248,175],[254,176],[250,177],[251,177],[256,178],[252,179],[255,180],[249,181],[266,182],[272,183],[273,184],[293,185],[292,186],[291,187],[274,184],[170,188],[168,189],[80,190],[83,77],[81,74],[207,191],[154,8],[167,192],[156,193],[155,194],[159,195],[157,196],[158,196],[160,197],[161,193],[166,198],[163,199],[164,181],[165,200],[162,181],[82,201],[138,202],[136,203],[133,204],[134,205],[135,206],[137,207],[129,208],[130,209],[131,210],[128,211],[127,8],[132,212],[172,213],[180,129],[173,214],[175,215],[176,215],[174,213],[177,216],[178,217],[179,218],[184,219],[182,220],[181,221],[185,222],[183,223],[186,224],[187,225],[171,129],[201,226],[188,227],[189,129],[190,129],[191,129],[199,228],[196,129],[192,129],[198,129],[193,129],[194,129],[197,129],[195,229],[200,8]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@milkdown/preset-gfm",
3
3
  "type": "module",
4
- "version": "7.16.0",
4
+ "version": "7.17.1",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -29,13 +29,13 @@
29
29
  "dependencies": {
30
30
  "prosemirror-safari-ime-span": "^1.0.1",
31
31
  "remark-gfm": "^4.0.1",
32
- "@milkdown/ctx": "7.16.0",
33
- "@milkdown/preset-commonmark": "7.16.0",
34
- "@milkdown/prose": "7.16.0",
35
- "@milkdown/exception": "7.16.0",
36
- "@milkdown/transformer": "7.16.0",
37
- "@milkdown/utils": "7.16.0",
38
- "@milkdown/core": "7.16.0"
32
+ "@milkdown/core": "7.17.1",
33
+ "@milkdown/ctx": "7.17.1",
34
+ "@milkdown/prose": "7.17.1",
35
+ "@milkdown/preset-commonmark": "7.17.1",
36
+ "@milkdown/transformer": "7.17.1",
37
+ "@milkdown/exception": "7.17.1",
38
+ "@milkdown/utils": "7.17.1"
39
39
  },
40
40
  "scripts": {
41
41
  "build": "vite build"
@@ -1,5 +1,6 @@
1
1
  export * from './keymap'
2
2
  export * from './inputrules'
3
+ export * from './pasterules'
3
4
  export * from './plugins'
4
5
  export * from './schema'
5
6
  export * from './commands'
@@ -0,0 +1,6 @@
1
+ import type { MilkdownPlugin } from '@milkdown/ctx'
2
+
3
+ import { tablePasteRule } from '../node'
4
+
5
+ /// @internal
6
+ export const pasteRules: MilkdownPlugin[] = [tablePasteRule]
package/src/index.ts CHANGED
@@ -3,6 +3,7 @@ import {
3
3
  inputRules,
4
4
  keymap,
5
5
  markInputRules,
6
+ pasteRules,
6
7
  plugins,
7
8
  schema,
8
9
  } from './composed'
@@ -16,6 +17,7 @@ export * from './composed'
16
17
  export const gfm = [
17
18
  schema,
18
19
  inputRules,
20
+ pasteRules,
19
21
  markInputRules,
20
22
  keymap,
21
23
  commands,
@@ -1,7 +1,9 @@
1
1
  import { commandsCtx } from '@milkdown/core'
2
+ import { paragraphSchema } from '@milkdown/preset-commonmark'
2
3
  import { InputRule } from '@milkdown/prose/inputrules'
4
+ import { Fragment, Slice } from '@milkdown/prose/model'
3
5
  import { TextSelection } from '@milkdown/prose/state'
4
- import { $inputRule, $useKeymap } from '@milkdown/utils'
6
+ import { $inputRule, $pasteRule, $useKeymap } from '@milkdown/utils'
5
7
 
6
8
  import { withMeta } from '../../__internal__'
7
9
  import {
@@ -9,7 +11,7 @@ import {
9
11
  goToNextTableCellCommand,
10
12
  goToPrevTableCellCommand,
11
13
  } from './command'
12
- import { tableSchema } from './schema'
14
+ import { tableHeaderSchema, tableSchema } from './schema'
13
15
  import { createTable } from './utils'
14
16
 
15
17
  /// A input rule for creating table.
@@ -47,6 +49,62 @@ withMeta(insertTableInputRule, {
47
49
  group: 'Table',
48
50
  })
49
51
 
52
+ /// A paste rule for fixing tables without header cells.
53
+ /// This is a workaround for some editors (e.g. Google Docs) which allow creating tables without header cells,
54
+ /// which is not supported by Markdown schema.
55
+ /// This paste rule will add header cells to the first row if it's missing.
56
+ export const tablePasteRule = $pasteRule((ctx) => ({
57
+ run: (slice, _view, isPlainText) => {
58
+ if (isPlainText) {
59
+ return slice
60
+ }
61
+ let fragment = slice.content
62
+
63
+ slice.content.forEach((node, _offset, index) => {
64
+ if (node?.type !== tableSchema.type(ctx)) {
65
+ return
66
+ }
67
+ const rowsCount = node.childCount
68
+ const colsCount = node.lastChild?.childCount ?? 0
69
+ if (rowsCount === 0 || colsCount === 0) {
70
+ fragment = fragment.replaceChild(
71
+ index,
72
+ paragraphSchema.type(ctx).create()
73
+ )
74
+ return
75
+ }
76
+
77
+ const headerRow = node.firstChild
78
+ const needToFixHeaderRow =
79
+ colsCount > 0 && headerRow && headerRow.childCount === 0
80
+ if (!needToFixHeaderRow) {
81
+ return
82
+ }
83
+ // Fix for tables with rows but no cells in the first row
84
+ const headerCells = Array(colsCount)
85
+ .fill(0)
86
+ .map(() => tableHeaderSchema.type(ctx).createAndFill()!)
87
+
88
+ const tableCells = new Slice(Fragment.from(headerCells), 0, 0)
89
+
90
+ const newHeaderRow = headerRow.replace(0, 0, tableCells)
91
+ const newTable = node.replace(
92
+ 0,
93
+ headerRow.nodeSize,
94
+ new Slice(Fragment.from(newHeaderRow), 0, 0)
95
+ )
96
+ fragment = fragment.replaceChild(index, newTable)
97
+ })
98
+
99
+ return new Slice(Fragment.from(fragment), slice.openStart, slice.openEnd)
100
+ },
101
+ }))
102
+
103
+ withMeta(tablePasteRule, {
104
+ displayName: 'PasteRule<table>',
105
+ group: 'Table',
106
+ })
107
+
50
108
  /// Keymap for table commands.
51
109
  /// - `<Mod-]>`/`<Tab>`: Move to the next cell.
52
110
  /// - `<Mod-[>`/`<Shift-Tab>`: Move to the previous cell.