@handlewithcare/react-prosemirror 2.2.4 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -0
- package/dist/cjs/components/CustomNodeView.js +68 -29
- package/dist/cjs/components/ReactNodeView.js +5 -2
- package/dist/cjs/contexts/IgnoreMutationContext.js +12 -0
- package/dist/cjs/hooks/useClientOnly.js +6 -5
- package/dist/cjs/hooks/useEditor.js +1 -1
- package/dist/cjs/hooks/useEditorEventCallback.js +6 -4
- package/dist/cjs/hooks/useIgnoreMutation.js +24 -0
- package/dist/cjs/hooks/useNodeViewDescriptor.js +7 -2
- package/dist/cjs/index.js +4 -0
- package/dist/cjs/viewdesc.js +6 -6
- package/dist/esm/components/CustomNodeView.js +68 -29
- package/dist/esm/components/ReactNodeView.js +5 -2
- package/dist/esm/contexts/IgnoreMutationContext.js +2 -0
- package/dist/esm/hooks/useClientOnly.js +7 -6
- package/dist/esm/hooks/useEditor.js +1 -1
- package/dist/esm/hooks/useEditorEventCallback.js +6 -4
- package/dist/esm/hooks/useIgnoreMutation.js +14 -0
- package/dist/esm/hooks/useNodeViewDescriptor.js +7 -2
- package/dist/esm/index.js +1 -0
- package/dist/esm/viewdesc.js +6 -6
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/contexts/IgnoreMutationContext.d.ts +4 -0
- package/dist/types/hooks/useEditorEventCallback.d.ts +1 -1
- package/dist/types/hooks/useIgnoreMutation.d.ts +2 -0
- package/dist/types/hooks/useNodeViewDescriptor.d.ts +2 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/viewdesc.d.ts +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -59,6 +59,7 @@ yarn add @handlewithcare/react-prosemirror prosemirror-view@1.37.1 prosemirror-s
|
|
|
59
59
|
- [`useEditorEffect`](#useeditoreffect-1)
|
|
60
60
|
- [`NodeViewComponentProps`](#nodeviewcomponentprops)
|
|
61
61
|
- [`useStopEvent`](#usestopevent)
|
|
62
|
+
- [`useIgnoreMutation`](#useignoremutation)
|
|
62
63
|
- [`useSelectNode`](#useselectnode)
|
|
63
64
|
- [`useIsNodeSelected`](#useisnodeselected)
|
|
64
65
|
- [`widget`](#widget)
|
|
@@ -685,6 +686,16 @@ This hook can be used within a node view component to register a
|
|
|
685
686
|
[stopEvent handler](https://prosemirror.net/docs/ref/#view.NodeView.stopEvent).
|
|
686
687
|
Events for which this returns true are not handled by the editor.
|
|
687
688
|
|
|
689
|
+
### `useIgnoreMutation`
|
|
690
|
+
|
|
691
|
+
```tsx
|
|
692
|
+
type useIgnoreMutation = (stopEvent: (view: EditorView, mutation: ViewMutationRecord) => boolean): void
|
|
693
|
+
```
|
|
694
|
+
|
|
695
|
+
This hook can be used within a node view component to register an
|
|
696
|
+
[ignoreMutation handler](https://prosemirror.net/docs/ref/#view.NodeView.ignoreMutation).
|
|
697
|
+
Mutations for which this returns true are not handled by the editor.
|
|
698
|
+
|
|
688
699
|
### `useSelectNode`
|
|
689
700
|
|
|
690
701
|
```tsx
|
|
@@ -8,6 +8,7 @@ Object.defineProperty(exports, "CustomNodeView", {
|
|
|
8
8
|
return CustomNodeView;
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
|
+
const _prosemirrorstate = require("prosemirror-state");
|
|
11
12
|
const _react = /*#__PURE__*/ _interop_require_wildcard(require("react"));
|
|
12
13
|
const _reactdom = require("react-dom");
|
|
13
14
|
const _ChildDescriptorsContext = require("../contexts/ChildDescriptorsContext.js");
|
|
@@ -64,41 +65,72 @@ const CustomNodeView = /*#__PURE__*/ (0, _react.memo)(function CustomNodeView(pa
|
|
|
64
65
|
const nodeDomRef = (0, _react.useRef)(null);
|
|
65
66
|
const contentDomRef = (0, _react.useRef)(null);
|
|
66
67
|
const getPosFunc = (0, _react.useRef)(()=>getPos.current()).current;
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
const
|
|
70
|
-
|
|
68
|
+
const nodeRef = (0, _react.useRef)(node);
|
|
69
|
+
nodeRef.current = node;
|
|
70
|
+
const outerDecoRef = (0, _react.useRef)(outerDeco);
|
|
71
|
+
outerDecoRef.current = outerDeco;
|
|
72
|
+
const innerDecoRef = (0, _react.useRef)(innerDeco);
|
|
73
|
+
innerDecoRef.current = innerDeco;
|
|
71
74
|
const customNodeViewRootRef = (0, _react.useRef)(null);
|
|
72
75
|
const customNodeViewRef = (0, _react.useRef)(null);
|
|
73
76
|
const shouldRender = (0, _useClientOnly.useClientOnly)();
|
|
77
|
+
// In Strict/Concurrent mode, layout effects can be destroyed/re-run
|
|
78
|
+
// independently of renders. We need to ensure that if the
|
|
79
|
+
// destructor that destroys the node view is called, we then recreate
|
|
80
|
+
// the node view when the layout effect is re-run.
|
|
74
81
|
(0, _useClientLayoutEffect.useClientLayoutEffect)(()=>{
|
|
75
|
-
if (!customNodeViewRef.current || !
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
82
|
+
if (!customNodeViewRef.current || !shouldRender) {
|
|
83
|
+
customNodeViewRef.current = customNodeView(nodeRef.current, // customNodeView will only be set if view is set, and we can only reach
|
|
84
|
+
// this line if customNodeView is set
|
|
85
|
+
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
86
|
+
view, getPosFunc, outerDecoRef.current, innerDecoRef.current);
|
|
87
|
+
if (customNodeViewRef.current.stopEvent) {
|
|
88
|
+
setStopEvent(customNodeViewRef.current.stopEvent.bind(customNodeViewRef.current));
|
|
89
|
+
}
|
|
90
|
+
if (customNodeViewRef.current.selectNode) {
|
|
91
|
+
setSelectNode(customNodeViewRef.current.selectNode.bind(customNodeViewRef.current), customNodeViewRef.current.deselectNode?.bind(customNodeViewRef.current) ?? (()=>{}));
|
|
92
|
+
}
|
|
93
|
+
if (customNodeViewRef.current.ignoreMutation) {
|
|
94
|
+
setIgnoreMutation(customNodeViewRef.current.ignoreMutation.bind(customNodeViewRef.current));
|
|
95
|
+
}
|
|
96
|
+
if (!customNodeViewRootRef.current) return;
|
|
97
|
+
const { dom } = customNodeViewRef.current;
|
|
98
|
+
nodeDomRef.current = customNodeViewRootRef.current;
|
|
99
|
+
customNodeViewRootRef.current.appendChild(dom);
|
|
100
|
+
// Layout effects can run multiple times — if this effect
|
|
101
|
+
// destroyed and recreated this node view, then we need to
|
|
102
|
+
// resync the selectNode state
|
|
103
|
+
if (view?.state.selection instanceof _prosemirrorstate.NodeSelection && view.state.selection.node === nodeRef.current) {
|
|
104
|
+
customNodeViewRef.current.selectNode?.();
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
const nodeView = customNodeViewRef.current;
|
|
79
108
|
return ()=>{
|
|
80
|
-
|
|
109
|
+
nodeView.destroy?.();
|
|
110
|
+
customNodeViewRef.current = null;
|
|
81
111
|
};
|
|
112
|
+
// setStopEvent, setSelectNodee, and setIgnoreMutation are all stable
|
|
113
|
+
// functions and don't need to be added to the dependencies. They also
|
|
114
|
+
// can't be, because they come from useNodeViewDescriptor, which
|
|
115
|
+
// _has_ to be called after this hook, so that the effects run
|
|
116
|
+
// in the correct order
|
|
117
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
82
118
|
}, [
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
shouldRender
|
|
119
|
+
customNodeView,
|
|
120
|
+
getPosFunc,
|
|
121
|
+
view
|
|
87
122
|
]);
|
|
88
123
|
(0, _useClientLayoutEffect.useClientLayoutEffect)(()=>{
|
|
89
|
-
if (!customNodeView || !customNodeViewRef.current
|
|
124
|
+
if (!customNodeView || !customNodeViewRef.current) return;
|
|
90
125
|
const { destroy, update } = customNodeViewRef.current;
|
|
91
126
|
const updated = update?.call(customNodeViewRef.current, node, outerDeco, innerDeco) ?? true;
|
|
92
127
|
if (updated) return;
|
|
93
128
|
destroy?.call(customNodeViewRef.current);
|
|
94
129
|
if (!customNodeViewRootRef.current) return;
|
|
95
|
-
|
|
96
|
-
initialOuterDeco.current = outerDeco;
|
|
97
|
-
initialInnerDeco.current = innerDeco;
|
|
98
|
-
customNodeViewRef.current = customNodeView(initialNode.current, // customNodeView will only be set if view is set, and we can only reach
|
|
130
|
+
customNodeViewRef.current = customNodeView(nodeRef.current, // customNodeView will only be set if view is set, and we can only reach
|
|
99
131
|
// this line if customNodeView is set
|
|
100
132
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
101
|
-
view, getPosFunc,
|
|
133
|
+
view, getPosFunc, outerDecoRef.current, innerDecoRef.current);
|
|
102
134
|
const { dom } = customNodeViewRef.current;
|
|
103
135
|
nodeDomRef.current = customNodeViewRootRef.current;
|
|
104
136
|
customNodeViewRootRef.current.appendChild(dom);
|
|
@@ -109,16 +141,9 @@ const CustomNodeView = /*#__PURE__*/ (0, _react.memo)(function CustomNodeView(pa
|
|
|
109
141
|
node,
|
|
110
142
|
outerDeco,
|
|
111
143
|
getPos,
|
|
112
|
-
customNodeViewRef,
|
|
113
|
-
customNodeViewRootRef,
|
|
114
|
-
initialNode,
|
|
115
|
-
initialOuterDeco,
|
|
116
|
-
initialInnerDeco,
|
|
117
|
-
nodeDomRef,
|
|
118
|
-
shouldRender,
|
|
119
144
|
getPosFunc
|
|
120
145
|
]);
|
|
121
|
-
const { childDescriptors, nodeViewDescRef } = (0, _useNodeViewDescriptor.useNodeViewDescriptor)(node,
|
|
146
|
+
const { childDescriptors, nodeViewDescRef, setStopEvent, setSelectNode, setIgnoreMutation } = (0, _useNodeViewDescriptor.useNodeViewDescriptor)(node, getPosFunc, domRef, nodeDomRef, innerDeco, outerDeco, undefined, contentDomRef);
|
|
122
147
|
const childContextValue = (0, _react.useMemo)(()=>({
|
|
123
148
|
parentRef: nodeViewDescRef,
|
|
124
149
|
siblingsRef: childDescriptors
|
|
@@ -127,11 +152,25 @@ const CustomNodeView = /*#__PURE__*/ (0, _react.memo)(function CustomNodeView(pa
|
|
|
127
152
|
nodeViewDescRef
|
|
128
153
|
]);
|
|
129
154
|
if (!shouldRender) return null;
|
|
155
|
+
// In order to render the correct element with the correct
|
|
156
|
+
// props below, we have to call the customNodeView in the
|
|
157
|
+
// render function here. We only do this once, and the
|
|
158
|
+
// results are stored in a ref but not actually appended
|
|
159
|
+
// to the DOM until a client effect
|
|
130
160
|
if (!customNodeViewRef.current) {
|
|
131
|
-
customNodeViewRef.current = customNodeView(
|
|
161
|
+
customNodeViewRef.current = customNodeView(nodeRef.current, // customNodeView will only be set if view is set, and we can only reach
|
|
132
162
|
// this line if customNodeView is set
|
|
133
163
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
134
|
-
view, ()=>getPos.current(),
|
|
164
|
+
view, ()=>getPos.current(), outerDecoRef.current, innerDecoRef.current);
|
|
165
|
+
if (customNodeViewRef.current.stopEvent) {
|
|
166
|
+
setStopEvent(customNodeViewRef.current.stopEvent.bind(customNodeViewRef.current));
|
|
167
|
+
}
|
|
168
|
+
if (customNodeViewRef.current.selectNode) {
|
|
169
|
+
setSelectNode(customNodeViewRef.current.selectNode.bind(customNodeViewRef.current), customNodeViewRef.current.deselectNode?.bind(customNodeViewRef.current) ?? (()=>{}));
|
|
170
|
+
}
|
|
171
|
+
if (customNodeViewRef.current.ignoreMutation) {
|
|
172
|
+
setIgnoreMutation(customNodeViewRef.current.ignoreMutation.bind(customNodeViewRef.current));
|
|
173
|
+
}
|
|
135
174
|
}
|
|
136
175
|
const { contentDOM } = customNodeViewRef.current;
|
|
137
176
|
contentDomRef.current = contentDOM ?? null;
|
|
@@ -10,6 +10,7 @@ Object.defineProperty(exports, "ReactNodeView", {
|
|
|
10
10
|
});
|
|
11
11
|
const _react = /*#__PURE__*/ _interop_require_wildcard(require("react"));
|
|
12
12
|
const _ChildDescriptorsContext = require("../contexts/ChildDescriptorsContext.js");
|
|
13
|
+
const _IgnoreMutationContext = require("../contexts/IgnoreMutationContext.js");
|
|
13
14
|
const _NodeViewContext = require("../contexts/NodeViewContext.js");
|
|
14
15
|
const _SelectNodeContext = require("../contexts/SelectNodeContext.js");
|
|
15
16
|
const _StopEventContext = require("../contexts/StopEventContext.js");
|
|
@@ -69,7 +70,7 @@ const ReactNodeView = /*#__PURE__*/ (0, _react.memo)(function ReactNodeView(para
|
|
|
69
70
|
const outputSpec = (0, _react.useMemo)(()=>node.type.spec.toDOM?.(node), [
|
|
70
71
|
node
|
|
71
72
|
]);
|
|
72
|
-
const { hasContentDOM, childDescriptors, setStopEvent, setSelectNode, nodeViewDescRef } = (0, _useNodeViewDescriptor.useNodeViewDescriptor)(node, ()=>getPos.current(), domRef, nodeDomRef, innerDeco, outerDeco, undefined, contentDomRef);
|
|
73
|
+
const { hasContentDOM, childDescriptors, setStopEvent, setSelectNode, setIgnoreMutation, nodeViewDescRef } = (0, _useNodeViewDescriptor.useNodeViewDescriptor)(node, ()=>getPos.current(), domRef, nodeDomRef, innerDeco, outerDeco, undefined, contentDomRef);
|
|
73
74
|
const finalProps = {
|
|
74
75
|
...props,
|
|
75
76
|
...!hasContentDOM && {
|
|
@@ -130,7 +131,9 @@ const ReactNodeView = /*#__PURE__*/ (0, _react.memo)(function ReactNodeView(para
|
|
|
130
131
|
value: setSelectNode
|
|
131
132
|
}, /*#__PURE__*/ _react.default.createElement(_StopEventContext.StopEventContext.Provider, {
|
|
132
133
|
value: setStopEvent
|
|
134
|
+
}, /*#__PURE__*/ _react.default.createElement(_IgnoreMutationContext.IgnoreMutationContext.Provider, {
|
|
135
|
+
value: setIgnoreMutation
|
|
133
136
|
}, /*#__PURE__*/ _react.default.createElement(_ChildDescriptorsContext.ChildDescriptorsContext.Provider, {
|
|
134
137
|
value: childContextValue
|
|
135
|
-
}, decoratedElement)));
|
|
138
|
+
}, decoratedElement))));
|
|
136
139
|
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "IgnoreMutationContext", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return IgnoreMutationContext;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const _react = require("react");
|
|
12
|
+
const IgnoreMutationContext = (0, _react.createContext)(null);
|
|
@@ -9,10 +9,11 @@ Object.defineProperty(exports, "useClientOnly", {
|
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
11
|
const _react = require("react");
|
|
12
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
13
|
+
function unsubscribe() {}
|
|
14
|
+
function subscribe() {
|
|
15
|
+
return unsubscribe;
|
|
16
|
+
}
|
|
12
17
|
function useClientOnly() {
|
|
13
|
-
|
|
14
|
-
(0, _react.useEffect)(()=>{
|
|
15
|
-
setRender(true);
|
|
16
|
-
}, []);
|
|
17
|
-
return render;
|
|
18
|
+
return (0, _react.useSyncExternalStore)(subscribe, ()=>true, ()=>false);
|
|
18
19
|
}
|
|
@@ -229,7 +229,7 @@ function useEditor(mount, options) {
|
|
|
229
229
|
cleanup();
|
|
230
230
|
const docViewDescRef = (0, _react.useRef)(new _viewdesc.NodeViewDesc(undefined, [], ()=>-1, state.doc, [], _prosemirrorview.DecorationSet.empty, tempDom, null, tempDom, ()=>false, ()=>{
|
|
231
231
|
/* The doc node can't have a node selection*/ }, ()=>{
|
|
232
|
-
/* The doc node can't have a node selection*/ }));
|
|
232
|
+
/* The doc node can't have a node selection*/ }, ()=>false));
|
|
233
233
|
const directEditorProps = {
|
|
234
234
|
...options,
|
|
235
235
|
state,
|
|
@@ -23,10 +23,12 @@ function useEditorEventCallback(callback) {
|
|
|
23
23
|
for(var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++){
|
|
24
24
|
args[_key] = arguments[_key];
|
|
25
25
|
}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
26
|
+
// It's not actually possible for an event handler to run
|
|
27
|
+
// while view is null, since view is only ever set to
|
|
28
|
+
// null in a layout effect that then immediately triggers
|
|
29
|
+
// a re-render which sets view to a new EditorView
|
|
30
|
+
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
31
|
+
return ref.current(view, ...args);
|
|
30
32
|
}, [
|
|
31
33
|
view
|
|
32
34
|
]);
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "useIgnoreMutation", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return useIgnoreMutation;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const _react = require("react");
|
|
12
|
+
const _IgnoreMutationContext = require("../contexts/IgnoreMutationContext.js");
|
|
13
|
+
const _useEditorEffect = require("./useEditorEffect.js");
|
|
14
|
+
const _useEditorEventCallback = require("./useEditorEventCallback.js");
|
|
15
|
+
function useIgnoreMutation(ignoreMutation) {
|
|
16
|
+
const register = (0, _react.useContext)(_IgnoreMutationContext.IgnoreMutationContext);
|
|
17
|
+
const ignoreMutationMemo = (0, _useEditorEventCallback.useEditorEventCallback)(ignoreMutation);
|
|
18
|
+
(0, _useEditorEffect.useEditorEffect)(()=>{
|
|
19
|
+
register(ignoreMutationMemo);
|
|
20
|
+
}, [
|
|
21
|
+
register,
|
|
22
|
+
ignoreMutationMemo
|
|
23
|
+
]);
|
|
24
|
+
}
|
|
@@ -21,6 +21,10 @@ function useNodeViewDescriptor(node, getPos, domRef, nodeDomRef, innerDecoration
|
|
|
21
21
|
const setStopEvent = (0, _react.useCallback)((newStopEvent)=>{
|
|
22
22
|
stopEvent.current = newStopEvent;
|
|
23
23
|
}, []);
|
|
24
|
+
const ignoreMutation = (0, _react.useRef)(()=>false);
|
|
25
|
+
const setIgnoreMutation = (0, _react.useCallback)((newIgnoreMutation)=>{
|
|
26
|
+
ignoreMutation.current = newIgnoreMutation;
|
|
27
|
+
}, []);
|
|
24
28
|
const selectNode = (0, _react.useRef)(()=>{
|
|
25
29
|
if (!nodeDomRef.current || !node) return;
|
|
26
30
|
if (nodeDomRef.current.nodeType == 1) nodeDomRef.current.classList.add("ProseMirror-selectednode");
|
|
@@ -56,7 +60,7 @@ function useNodeViewDescriptor(node, getPos, domRef, nodeDomRef, innerDecoration
|
|
|
56
60
|
if (!node || !nodeDomRef.current) return;
|
|
57
61
|
const firstChildDesc = childDescriptors.current[0];
|
|
58
62
|
if (!nodeViewDescRef.current) {
|
|
59
|
-
nodeViewDescRef.current = new _viewdesc.NodeViewDesc(parentRef.current, childDescriptors.current, getPos, node, outerDecorations, innerDecorations, domRef?.current ?? nodeDomRef.current, firstChildDesc?.dom.parentElement ?? null, nodeDomRef.current, (event)=>!!stopEvent.current(event), ()=>selectNode.current(), ()=>deselectNode.current());
|
|
63
|
+
nodeViewDescRef.current = new _viewdesc.NodeViewDesc(parentRef.current, childDescriptors.current, getPos, node, outerDecorations, innerDecorations, domRef?.current ?? nodeDomRef.current, firstChildDesc?.dom.parentElement ?? null, nodeDomRef.current, (event)=>!!stopEvent.current(event), ()=>selectNode.current(), ()=>deselectNode.current(), (mutation)=>ignoreMutation.current(mutation));
|
|
60
64
|
} else {
|
|
61
65
|
nodeViewDescRef.current.parent = parentRef.current;
|
|
62
66
|
nodeViewDescRef.current.children = childDescriptors.current;
|
|
@@ -111,6 +115,7 @@ function useNodeViewDescriptor(node, getPos, domRef, nodeDomRef, innerDecoration
|
|
|
111
115
|
childDescriptors,
|
|
112
116
|
nodeViewDescRef,
|
|
113
117
|
setStopEvent,
|
|
114
|
-
setSelectNode
|
|
118
|
+
setSelectNode,
|
|
119
|
+
setIgnoreMutation
|
|
115
120
|
};
|
|
116
121
|
}
|
package/dist/cjs/index.js
CHANGED
|
@@ -31,6 +31,9 @@ _export(exports, {
|
|
|
31
31
|
useEditorState: function() {
|
|
32
32
|
return _useEditorState.useEditorState;
|
|
33
33
|
},
|
|
34
|
+
useIgnoreMutation: function() {
|
|
35
|
+
return _useIgnoreMutation.useIgnoreMutation;
|
|
36
|
+
},
|
|
34
37
|
useIsNodeSelected: function() {
|
|
35
38
|
return _useIsNodeSelected.useIsNodeSelected;
|
|
36
39
|
},
|
|
@@ -52,6 +55,7 @@ const _useEditorEventListener = require("./hooks/useEditorEventListener.js");
|
|
|
52
55
|
const _useEditorState = require("./hooks/useEditorState.js");
|
|
53
56
|
const _useStopEvent = require("./hooks/useStopEvent.js");
|
|
54
57
|
const _useSelectNode = require("./hooks/useSelectNode.js");
|
|
58
|
+
const _useIgnoreMutation = require("./hooks/useIgnoreMutation.js");
|
|
55
59
|
const _useIsNodeSelected = require("./hooks/useIsNodeSelected.js");
|
|
56
60
|
const _reactKeys = require("./plugins/reactKeys.js");
|
|
57
61
|
const _ReactWidgetType = require("./decorations/ReactWidgetType.js");
|
package/dist/cjs/viewdesc.js
CHANGED
|
@@ -551,8 +551,9 @@ let NodeViewDesc = class NodeViewDesc extends ViewDesc {
|
|
|
551
551
|
stopEvent;
|
|
552
552
|
selectNode;
|
|
553
553
|
deselectNode;
|
|
554
|
-
|
|
555
|
-
|
|
554
|
+
ignoreMutation;
|
|
555
|
+
constructor(parent, children, getPos, node, outerDeco, innerDeco, dom, contentDOM, nodeDOM, stopEvent, selectNode, deselectNode, ignoreMutation){
|
|
556
|
+
super(parent, children, getPos, dom, contentDOM), this.node = node, this.outerDeco = outerDeco, this.innerDeco = innerDeco, this.nodeDOM = nodeDOM, this.stopEvent = stopEvent, this.selectNode = selectNode, this.deselectNode = deselectNode, this.ignoreMutation = ignoreMutation;
|
|
556
557
|
}
|
|
557
558
|
updateOuterDeco() {
|
|
558
559
|
// pass
|
|
@@ -612,7 +613,9 @@ let TextViewDesc = class TextViewDesc extends NodeViewDesc {
|
|
|
612
613
|
constructor(parent, children, getPos, node, outerDeco, innerDeco, dom, nodeDOM){
|
|
613
614
|
super(parent, children, getPos, node, outerDeco, innerDeco, dom, null, nodeDOM, ()=>false, ()=>{
|
|
614
615
|
/* Text nodes can't have node selections */ }, ()=>{
|
|
615
|
-
/* Text nodes can't have node selections */ })
|
|
616
|
+
/* Text nodes can't have node selections */ }, (mutation)=>{
|
|
617
|
+
return mutation.type != "characterData" && mutation.type != "selection";
|
|
618
|
+
});
|
|
616
619
|
}
|
|
617
620
|
parseRule() {
|
|
618
621
|
let skip = this.nodeDOM.parentNode;
|
|
@@ -639,9 +642,6 @@ let TextViewDesc = class TextViewDesc extends NodeViewDesc {
|
|
|
639
642
|
if (dom == this.nodeDOM) return this.posAtStart + Math.min(offset, this.node.text.length);
|
|
640
643
|
return super.localPosFromDOM(dom, offset, bias);
|
|
641
644
|
}
|
|
642
|
-
ignoreMutation(mutation) {
|
|
643
|
-
return mutation.type != "characterData" && mutation.type != "selection";
|
|
644
|
-
}
|
|
645
645
|
markDirty(from, to) {
|
|
646
646
|
super.markDirty(from, to);
|
|
647
647
|
if (this.dom != this.nodeDOM && (from == 0 || to == this.nodeDOM.nodeValue.length)) this.dirty = NODE_DIRTY;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { NodeSelection } from "prosemirror-state";
|
|
1
2
|
import React, { cloneElement, createElement, memo, useContext, useMemo, useRef } from "react";
|
|
2
3
|
import { createPortal } from "react-dom";
|
|
3
4
|
import { ChildDescriptorsContext } from "../contexts/ChildDescriptorsContext.js";
|
|
@@ -13,41 +14,72 @@ export const CustomNodeView = /*#__PURE__*/ memo(function CustomNodeView(param)
|
|
|
13
14
|
const nodeDomRef = useRef(null);
|
|
14
15
|
const contentDomRef = useRef(null);
|
|
15
16
|
const getPosFunc = useRef(()=>getPos.current()).current;
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
const
|
|
19
|
-
|
|
17
|
+
const nodeRef = useRef(node);
|
|
18
|
+
nodeRef.current = node;
|
|
19
|
+
const outerDecoRef = useRef(outerDeco);
|
|
20
|
+
outerDecoRef.current = outerDeco;
|
|
21
|
+
const innerDecoRef = useRef(innerDeco);
|
|
22
|
+
innerDecoRef.current = innerDeco;
|
|
20
23
|
const customNodeViewRootRef = useRef(null);
|
|
21
24
|
const customNodeViewRef = useRef(null);
|
|
22
25
|
const shouldRender = useClientOnly();
|
|
26
|
+
// In Strict/Concurrent mode, layout effects can be destroyed/re-run
|
|
27
|
+
// independently of renders. We need to ensure that if the
|
|
28
|
+
// destructor that destroys the node view is called, we then recreate
|
|
29
|
+
// the node view when the layout effect is re-run.
|
|
23
30
|
useClientLayoutEffect(()=>{
|
|
24
|
-
if (!customNodeViewRef.current || !
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
31
|
+
if (!customNodeViewRef.current || !shouldRender) {
|
|
32
|
+
customNodeViewRef.current = customNodeView(nodeRef.current, // customNodeView will only be set if view is set, and we can only reach
|
|
33
|
+
// this line if customNodeView is set
|
|
34
|
+
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
35
|
+
view, getPosFunc, outerDecoRef.current, innerDecoRef.current);
|
|
36
|
+
if (customNodeViewRef.current.stopEvent) {
|
|
37
|
+
setStopEvent(customNodeViewRef.current.stopEvent.bind(customNodeViewRef.current));
|
|
38
|
+
}
|
|
39
|
+
if (customNodeViewRef.current.selectNode) {
|
|
40
|
+
setSelectNode(customNodeViewRef.current.selectNode.bind(customNodeViewRef.current), customNodeViewRef.current.deselectNode?.bind(customNodeViewRef.current) ?? (()=>{}));
|
|
41
|
+
}
|
|
42
|
+
if (customNodeViewRef.current.ignoreMutation) {
|
|
43
|
+
setIgnoreMutation(customNodeViewRef.current.ignoreMutation.bind(customNodeViewRef.current));
|
|
44
|
+
}
|
|
45
|
+
if (!customNodeViewRootRef.current) return;
|
|
46
|
+
const { dom } = customNodeViewRef.current;
|
|
47
|
+
nodeDomRef.current = customNodeViewRootRef.current;
|
|
48
|
+
customNodeViewRootRef.current.appendChild(dom);
|
|
49
|
+
// Layout effects can run multiple times — if this effect
|
|
50
|
+
// destroyed and recreated this node view, then we need to
|
|
51
|
+
// resync the selectNode state
|
|
52
|
+
if (view?.state.selection instanceof NodeSelection && view.state.selection.node === nodeRef.current) {
|
|
53
|
+
customNodeViewRef.current.selectNode?.();
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
const nodeView = customNodeViewRef.current;
|
|
28
57
|
return ()=>{
|
|
29
|
-
|
|
58
|
+
nodeView.destroy?.();
|
|
59
|
+
customNodeViewRef.current = null;
|
|
30
60
|
};
|
|
61
|
+
// setStopEvent, setSelectNodee, and setIgnoreMutation are all stable
|
|
62
|
+
// functions and don't need to be added to the dependencies. They also
|
|
63
|
+
// can't be, because they come from useNodeViewDescriptor, which
|
|
64
|
+
// _has_ to be called after this hook, so that the effects run
|
|
65
|
+
// in the correct order
|
|
66
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
31
67
|
}, [
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
shouldRender
|
|
68
|
+
customNodeView,
|
|
69
|
+
getPosFunc,
|
|
70
|
+
view
|
|
36
71
|
]);
|
|
37
72
|
useClientLayoutEffect(()=>{
|
|
38
|
-
if (!customNodeView || !customNodeViewRef.current
|
|
73
|
+
if (!customNodeView || !customNodeViewRef.current) return;
|
|
39
74
|
const { destroy, update } = customNodeViewRef.current;
|
|
40
75
|
const updated = update?.call(customNodeViewRef.current, node, outerDeco, innerDeco) ?? true;
|
|
41
76
|
if (updated) return;
|
|
42
77
|
destroy?.call(customNodeViewRef.current);
|
|
43
78
|
if (!customNodeViewRootRef.current) return;
|
|
44
|
-
|
|
45
|
-
initialOuterDeco.current = outerDeco;
|
|
46
|
-
initialInnerDeco.current = innerDeco;
|
|
47
|
-
customNodeViewRef.current = customNodeView(initialNode.current, // customNodeView will only be set if view is set, and we can only reach
|
|
79
|
+
customNodeViewRef.current = customNodeView(nodeRef.current, // customNodeView will only be set if view is set, and we can only reach
|
|
48
80
|
// this line if customNodeView is set
|
|
49
81
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
50
|
-
view, getPosFunc,
|
|
82
|
+
view, getPosFunc, outerDecoRef.current, innerDecoRef.current);
|
|
51
83
|
const { dom } = customNodeViewRef.current;
|
|
52
84
|
nodeDomRef.current = customNodeViewRootRef.current;
|
|
53
85
|
customNodeViewRootRef.current.appendChild(dom);
|
|
@@ -58,16 +90,9 @@ export const CustomNodeView = /*#__PURE__*/ memo(function CustomNodeView(param)
|
|
|
58
90
|
node,
|
|
59
91
|
outerDeco,
|
|
60
92
|
getPos,
|
|
61
|
-
customNodeViewRef,
|
|
62
|
-
customNodeViewRootRef,
|
|
63
|
-
initialNode,
|
|
64
|
-
initialOuterDeco,
|
|
65
|
-
initialInnerDeco,
|
|
66
|
-
nodeDomRef,
|
|
67
|
-
shouldRender,
|
|
68
93
|
getPosFunc
|
|
69
94
|
]);
|
|
70
|
-
const { childDescriptors, nodeViewDescRef } = useNodeViewDescriptor(node,
|
|
95
|
+
const { childDescriptors, nodeViewDescRef, setStopEvent, setSelectNode, setIgnoreMutation } = useNodeViewDescriptor(node, getPosFunc, domRef, nodeDomRef, innerDeco, outerDeco, undefined, contentDomRef);
|
|
71
96
|
const childContextValue = useMemo(()=>({
|
|
72
97
|
parentRef: nodeViewDescRef,
|
|
73
98
|
siblingsRef: childDescriptors
|
|
@@ -76,11 +101,25 @@ export const CustomNodeView = /*#__PURE__*/ memo(function CustomNodeView(param)
|
|
|
76
101
|
nodeViewDescRef
|
|
77
102
|
]);
|
|
78
103
|
if (!shouldRender) return null;
|
|
104
|
+
// In order to render the correct element with the correct
|
|
105
|
+
// props below, we have to call the customNodeView in the
|
|
106
|
+
// render function here. We only do this once, and the
|
|
107
|
+
// results are stored in a ref but not actually appended
|
|
108
|
+
// to the DOM until a client effect
|
|
79
109
|
if (!customNodeViewRef.current) {
|
|
80
|
-
customNodeViewRef.current = customNodeView(
|
|
110
|
+
customNodeViewRef.current = customNodeView(nodeRef.current, // customNodeView will only be set if view is set, and we can only reach
|
|
81
111
|
// this line if customNodeView is set
|
|
82
112
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
83
|
-
view, ()=>getPos.current(),
|
|
113
|
+
view, ()=>getPos.current(), outerDecoRef.current, innerDecoRef.current);
|
|
114
|
+
if (customNodeViewRef.current.stopEvent) {
|
|
115
|
+
setStopEvent(customNodeViewRef.current.stopEvent.bind(customNodeViewRef.current));
|
|
116
|
+
}
|
|
117
|
+
if (customNodeViewRef.current.selectNode) {
|
|
118
|
+
setSelectNode(customNodeViewRef.current.selectNode.bind(customNodeViewRef.current), customNodeViewRef.current.deselectNode?.bind(customNodeViewRef.current) ?? (()=>{}));
|
|
119
|
+
}
|
|
120
|
+
if (customNodeViewRef.current.ignoreMutation) {
|
|
121
|
+
setIgnoreMutation(customNodeViewRef.current.ignoreMutation.bind(customNodeViewRef.current));
|
|
122
|
+
}
|
|
84
123
|
}
|
|
85
124
|
const { contentDOM } = customNodeViewRef.current;
|
|
86
125
|
contentDomRef.current = contentDOM ?? null;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import React, { cloneElement, memo, useContext, useMemo, useRef } from "react";
|
|
2
2
|
import { ChildDescriptorsContext } from "../contexts/ChildDescriptorsContext.js";
|
|
3
|
+
import { IgnoreMutationContext } from "../contexts/IgnoreMutationContext.js";
|
|
3
4
|
import { NodeViewContext } from "../contexts/NodeViewContext.js";
|
|
4
5
|
import { SelectNodeContext } from "../contexts/SelectNodeContext.js";
|
|
5
6
|
import { StopEventContext } from "../contexts/StopEventContext.js";
|
|
@@ -18,7 +19,7 @@ export const ReactNodeView = /*#__PURE__*/ memo(function ReactNodeView(param) {
|
|
|
18
19
|
const outputSpec = useMemo(()=>node.type.spec.toDOM?.(node), [
|
|
19
20
|
node
|
|
20
21
|
]);
|
|
21
|
-
const { hasContentDOM, childDescriptors, setStopEvent, setSelectNode, nodeViewDescRef } = useNodeViewDescriptor(node, ()=>getPos.current(), domRef, nodeDomRef, innerDeco, outerDeco, undefined, contentDomRef);
|
|
22
|
+
const { hasContentDOM, childDescriptors, setStopEvent, setSelectNode, setIgnoreMutation, nodeViewDescRef } = useNodeViewDescriptor(node, ()=>getPos.current(), domRef, nodeDomRef, innerDeco, outerDeco, undefined, contentDomRef);
|
|
22
23
|
const finalProps = {
|
|
23
24
|
...props,
|
|
24
25
|
...!hasContentDOM && {
|
|
@@ -79,7 +80,9 @@ export const ReactNodeView = /*#__PURE__*/ memo(function ReactNodeView(param) {
|
|
|
79
80
|
value: setSelectNode
|
|
80
81
|
}, /*#__PURE__*/ React.createElement(StopEventContext.Provider, {
|
|
81
82
|
value: setStopEvent
|
|
83
|
+
}, /*#__PURE__*/ React.createElement(IgnoreMutationContext.Provider, {
|
|
84
|
+
value: setIgnoreMutation
|
|
82
85
|
}, /*#__PURE__*/ React.createElement(ChildDescriptorsContext.Provider, {
|
|
83
86
|
value: childContextValue
|
|
84
|
-
}, decoratedElement)));
|
|
87
|
+
}, decoratedElement))));
|
|
85
88
|
});
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { useSyncExternalStore } from "react";
|
|
2
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
3
|
+
function unsubscribe() {}
|
|
4
|
+
function subscribe() {
|
|
5
|
+
return unsubscribe;
|
|
6
|
+
}
|
|
2
7
|
export function useClientOnly() {
|
|
3
|
-
|
|
4
|
-
useEffect(()=>{
|
|
5
|
-
setRender(true);
|
|
6
|
-
}, []);
|
|
7
|
-
return render;
|
|
8
|
+
return useSyncExternalStore(subscribe, ()=>true, ()=>false);
|
|
8
9
|
}
|
|
@@ -220,7 +220,7 @@ let didWarnValueDefaultValue = false;
|
|
|
220
220
|
cleanup();
|
|
221
221
|
const docViewDescRef = useRef(new NodeViewDesc(undefined, [], ()=>-1, state.doc, [], DecorationSet.empty, tempDom, null, tempDom, ()=>false, ()=>{
|
|
222
222
|
/* The doc node can't have a node selection*/ }, ()=>{
|
|
223
|
-
/* The doc node can't have a node selection*/ }));
|
|
223
|
+
/* The doc node can't have a node selection*/ }, ()=>false));
|
|
224
224
|
const directEditorProps = {
|
|
225
225
|
...options,
|
|
226
226
|
state,
|
|
@@ -25,10 +25,12 @@ import { useEditorEffect } from "./useEditorEffect.js";
|
|
|
25
25
|
for(var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++){
|
|
26
26
|
args[_key] = arguments[_key];
|
|
27
27
|
}
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
28
|
+
// It's not actually possible for an event handler to run
|
|
29
|
+
// while view is null, since view is only ever set to
|
|
30
|
+
// null in a layout effect that then immediately triggers
|
|
31
|
+
// a re-render which sets view to a new EditorView
|
|
32
|
+
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
33
|
+
return ref.current(view, ...args);
|
|
32
34
|
}, [
|
|
33
35
|
view
|
|
34
36
|
]);
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { useContext } from "react";
|
|
2
|
+
import { IgnoreMutationContext } from "../contexts/IgnoreMutationContext.js";
|
|
3
|
+
import { useEditorEffect } from "./useEditorEffect.js";
|
|
4
|
+
import { useEditorEventCallback } from "./useEditorEventCallback.js";
|
|
5
|
+
export function useIgnoreMutation(ignoreMutation) {
|
|
6
|
+
const register = useContext(IgnoreMutationContext);
|
|
7
|
+
const ignoreMutationMemo = useEditorEventCallback(ignoreMutation);
|
|
8
|
+
useEditorEffect(()=>{
|
|
9
|
+
register(ignoreMutationMemo);
|
|
10
|
+
}, [
|
|
11
|
+
register,
|
|
12
|
+
ignoreMutationMemo
|
|
13
|
+
]);
|
|
14
|
+
}
|
|
@@ -11,6 +11,10 @@ export function useNodeViewDescriptor(node, getPos, domRef, nodeDomRef, innerDec
|
|
|
11
11
|
const setStopEvent = useCallback((newStopEvent)=>{
|
|
12
12
|
stopEvent.current = newStopEvent;
|
|
13
13
|
}, []);
|
|
14
|
+
const ignoreMutation = useRef(()=>false);
|
|
15
|
+
const setIgnoreMutation = useCallback((newIgnoreMutation)=>{
|
|
16
|
+
ignoreMutation.current = newIgnoreMutation;
|
|
17
|
+
}, []);
|
|
14
18
|
const selectNode = useRef(()=>{
|
|
15
19
|
if (!nodeDomRef.current || !node) return;
|
|
16
20
|
if (nodeDomRef.current.nodeType == 1) nodeDomRef.current.classList.add("ProseMirror-selectednode");
|
|
@@ -46,7 +50,7 @@ export function useNodeViewDescriptor(node, getPos, domRef, nodeDomRef, innerDec
|
|
|
46
50
|
if (!node || !nodeDomRef.current) return;
|
|
47
51
|
const firstChildDesc = childDescriptors.current[0];
|
|
48
52
|
if (!nodeViewDescRef.current) {
|
|
49
|
-
nodeViewDescRef.current = new NodeViewDesc(parentRef.current, childDescriptors.current, getPos, node, outerDecorations, innerDecorations, domRef?.current ?? nodeDomRef.current, firstChildDesc?.dom.parentElement ?? null, nodeDomRef.current, (event)=>!!stopEvent.current(event), ()=>selectNode.current(), ()=>deselectNode.current());
|
|
53
|
+
nodeViewDescRef.current = new NodeViewDesc(parentRef.current, childDescriptors.current, getPos, node, outerDecorations, innerDecorations, domRef?.current ?? nodeDomRef.current, firstChildDesc?.dom.parentElement ?? null, nodeDomRef.current, (event)=>!!stopEvent.current(event), ()=>selectNode.current(), ()=>deselectNode.current(), (mutation)=>ignoreMutation.current(mutation));
|
|
50
54
|
} else {
|
|
51
55
|
nodeViewDescRef.current.parent = parentRef.current;
|
|
52
56
|
nodeViewDescRef.current.children = childDescriptors.current;
|
|
@@ -101,6 +105,7 @@ export function useNodeViewDescriptor(node, getPos, domRef, nodeDomRef, innerDec
|
|
|
101
105
|
childDescriptors,
|
|
102
106
|
nodeViewDescRef,
|
|
103
107
|
setStopEvent,
|
|
104
|
-
setSelectNode
|
|
108
|
+
setSelectNode,
|
|
109
|
+
setIgnoreMutation
|
|
105
110
|
};
|
|
106
111
|
}
|
package/dist/esm/index.js
CHANGED
|
@@ -7,6 +7,7 @@ export { useEditorEventListener } from "./hooks/useEditorEventListener.js";
|
|
|
7
7
|
export { useEditorState } from "./hooks/useEditorState.js";
|
|
8
8
|
export { useStopEvent } from "./hooks/useStopEvent.js";
|
|
9
9
|
export { useSelectNode } from "./hooks/useSelectNode.js";
|
|
10
|
+
export { useIgnoreMutation } from "./hooks/useIgnoreMutation.js";
|
|
10
11
|
export { useIsNodeSelected } from "./hooks/useIsNodeSelected.js";
|
|
11
12
|
export { reactKeys } from "./plugins/reactKeys.js";
|
|
12
13
|
export { widget } from "./decorations/ReactWidgetType.js";
|
package/dist/esm/viewdesc.js
CHANGED
|
@@ -539,8 +539,9 @@ export class NodeViewDesc extends ViewDesc {
|
|
|
539
539
|
stopEvent;
|
|
540
540
|
selectNode;
|
|
541
541
|
deselectNode;
|
|
542
|
-
|
|
543
|
-
|
|
542
|
+
ignoreMutation;
|
|
543
|
+
constructor(parent, children, getPos, node, outerDeco, innerDeco, dom, contentDOM, nodeDOM, stopEvent, selectNode, deselectNode, ignoreMutation){
|
|
544
|
+
super(parent, children, getPos, dom, contentDOM), this.node = node, this.outerDeco = outerDeco, this.innerDeco = innerDeco, this.nodeDOM = nodeDOM, this.stopEvent = stopEvent, this.selectNode = selectNode, this.deselectNode = deselectNode, this.ignoreMutation = ignoreMutation;
|
|
544
545
|
}
|
|
545
546
|
updateOuterDeco() {
|
|
546
547
|
// pass
|
|
@@ -600,7 +601,9 @@ export class TextViewDesc extends NodeViewDesc {
|
|
|
600
601
|
constructor(parent, children, getPos, node, outerDeco, innerDeco, dom, nodeDOM){
|
|
601
602
|
super(parent, children, getPos, node, outerDeco, innerDeco, dom, null, nodeDOM, ()=>false, ()=>{
|
|
602
603
|
/* Text nodes can't have node selections */ }, ()=>{
|
|
603
|
-
/* Text nodes can't have node selections */ })
|
|
604
|
+
/* Text nodes can't have node selections */ }, (mutation)=>{
|
|
605
|
+
return mutation.type != "characterData" && mutation.type != "selection";
|
|
606
|
+
});
|
|
604
607
|
}
|
|
605
608
|
parseRule() {
|
|
606
609
|
let skip = this.nodeDOM.parentNode;
|
|
@@ -627,9 +630,6 @@ export class TextViewDesc extends NodeViewDesc {
|
|
|
627
630
|
if (dom == this.nodeDOM) return this.posAtStart + Math.min(offset, this.node.text.length);
|
|
628
631
|
return super.localPosFromDOM(dom, offset, bias);
|
|
629
632
|
}
|
|
630
|
-
ignoreMutation(mutation) {
|
|
631
|
-
return mutation.type != "characterData" && mutation.type != "selection";
|
|
632
|
-
}
|
|
633
633
|
markDirty(from, to) {
|
|
634
634
|
super.markDirty(from, to);
|
|
635
635
|
if (this.dom != this.nodeDOM && (from == 0 || to == this.nodeDOM.nodeValue.length)) this.dirty = NODE_DIRTY;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../src/browser.ts","../src/dom.ts","../node_modules/@types/react/global.d.ts","../node_modules/csstype/index.d.ts","../node_modules/@types/prop-types/index.d.ts","../node_modules/@types/scheduler/tracing.d.ts","../node_modules/@types/react/index.d.ts","../src/findDOMNode.ts","../node_modules/orderedmap/dist/index.d.ts","../node_modules/prosemirror-model/dist/index.d.ts","../node_modules/prosemirror-state/node_modules/prosemirror-transform/dist/index.d.ts","../node_modules/prosemirror-state/dist/index.d.ts","../node_modules/prosemirror-view/node_modules/prosemirror-transform/dist/index.d.ts","../node_modules/prosemirror-view/dist/index.d.ts","../node_modules/@types/react-dom/node_modules/@types/react/global.d.ts","../node_modules/@types/react-dom/node_modules/@types/react/index.d.ts","../node_modules/@types/react-dom/index.d.ts","../src/plugins/componentEventListeners.ts","../src/contexts/EditorContext.ts","../src/contexts/EditorStateContext.ts","../src/components/NodeViewComponentProps.tsx","../src/contexts/NodeViewContext.tsx","../src/decorations/computeDocDeco.ts","../node_modules/prosemirror-transform/dist/index.d.ts","../src/decorations/internalTypes.ts","../src/decorations/viewDecorations.tsx","../src/contexts/LayoutGroupContext.tsx","../src/hooks/useClientLayoutEffect.ts","../src/hooks/useLayoutGroupEffect.ts","../src/hooks/useEditorEffect.ts","../src/decorations/ReactWidgetType.ts","../src/components/WidgetViewComponentProps.ts","../src/components/CursorWrapper.tsx","../src/plugins/reactKeys.ts","../src/plugins/beforeInputPlugin.ts","../src/selection/hasFocusAndSelection.ts","../src/selection/selectionToDOM.ts","../src/viewdesc.ts","../src/selection/selectionFromDOM.ts","../src/selection/SelectionDOMObserver.ts","../src/ssr.ts","../src/hooks/useComponentEventListeners.tsx","../src/hooks/useForceUpdate.ts","../src/hooks/useEditor.ts","../src/components/LayoutGroup.tsx","../src/contexts/ChildDescriptorsContext.ts","../src/hooks/useNodeViewDescriptor.ts","../src/decorations/iterDeco.ts","../src/hooks/useReactKeys.ts","../node_modules/classnames/index.d.ts","../node_modules/@types/css-tree/index.d.ts","../src/props.ts","../src/components/OutputSpec.tsx","../src/components/MarkView.tsx","../src/components/NativeWidgetView.tsx","../src/hooks/useClientOnly.ts","../src/components/CustomNodeView.tsx","../src/contexts/SelectNodeContext.ts","../src/contexts/StopEventContext.ts","../src/components/ReactNodeView.tsx","../src/components/NodeView.tsx","../src/components/SeparatorHackView.tsx","../src/components/TextNodeView.tsx","../src/components/TrailingHackView.tsx","../src/components/WidgetView.tsx","../src/components/ChildNodeViews.tsx","../src/components/DocNodeView.tsx","../src/components/ProseMirrorDoc.tsx","../src/components/ProseMirror.tsx","../src/hooks/useEditorEventCallback.ts","../src/hooks/useEditorEventListener.ts","../src/hooks/useEditorState.ts","../src/hooks/useStopEvent.ts","../src/hooks/useSelectNode.ts","../src/hooks/useIsNodeSelected.ts","../src/index.ts","../node_modules/prosemirror-test-builder/dist/index.d.ts","../node_modules/@types/react-dom/client.d.ts","../node_modules/@types/aria-query/index.d.ts","../node_modules/@testing-library/dom/types/matches.d.ts","../node_modules/@testing-library/dom/types/wait-for.d.ts","../node_modules/@testing-library/dom/types/query-helpers.d.ts","../node_modules/@testing-library/dom/types/queries.d.ts","../node_modules/@testing-library/dom/types/get-queries-for-element.d.ts","../node_modules/@testing-library/dom/node_modules/pretty-format/build/types.d.ts","../node_modules/@testing-library/dom/node_modules/pretty-format/build/index.d.ts","../node_modules/@testing-library/dom/types/screen.d.ts","../node_modules/@testing-library/dom/types/wait-for-element-to-be-removed.d.ts","../node_modules/@testing-library/dom/types/get-node-text.d.ts","../node_modules/@testing-library/dom/types/events.d.ts","../node_modules/@testing-library/dom/types/pretty-dom.d.ts","../node_modules/@testing-library/dom/types/role-helpers.d.ts","../node_modules/@testing-library/dom/types/config.d.ts","../node_modules/@testing-library/dom/types/suggestions.d.ts","../node_modules/@testing-library/dom/types/index.d.ts","../node_modules/@types/react-dom/test-utils/index.d.ts","../node_modules/@testing-library/react/types/index.d.ts","../node_modules/expect/node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/pretty-format/node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-matcher-utils/node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../src/testing/editorViewTestHelpers.tsx","../src/components/__tests__/ProseMirror.composition.test.tsx","../node_modules/@wdio/types/build/Automation.d.ts","../node_modules/@wdio/types/build/Frameworks.d.ts","../node_modules/@wdio/types/build/Workers.d.ts","../node_modules/@wdio/types/build/Services.d.ts","../node_modules/@wdio/types/build/Reporters.d.ts","../node_modules/@wdio/types/build/Options.d.ts","../node_modules/@wdio/types/build/Capabilities.d.ts","../node_modules/@wdio/types/build/Network.d.ts","../node_modules/@wdio/types/build/index.d.ts","../node_modules/@wdio/protocols/build/types.d.ts","../node_modules/@wdio/protocols/build/commands/appium.d.ts","../node_modules/@wdio/protocols/build/commands/chromium.d.ts","../node_modules/@wdio/protocols/build/commands/gecko.d.ts","../node_modules/@wdio/protocols/build/commands/mjsonwp.d.ts","../node_modules/@wdio/protocols/build/commands/saucelabs.d.ts","../node_modules/@wdio/protocols/build/commands/selenium.d.ts","../node_modules/@wdio/protocols/build/commands/webdriver.d.ts","../node_modules/@wdio/protocols/build/protocols/webdriver.d.ts","../node_modules/@wdio/protocols/build/protocols/webdriverBidi.d.ts","../node_modules/@wdio/protocols/build/protocols/mjsonwp.d.ts","../node_modules/@wdio/protocols/build/protocols/appium.d.ts","../node_modules/@wdio/protocols/build/protocols/chromium.d.ts","../node_modules/@wdio/protocols/build/protocols/gecko.d.ts","../node_modules/@wdio/protocols/build/protocols/saucelabs.d.ts","../node_modules/@wdio/protocols/build/protocols/selenium.d.ts","../node_modules/@wdio/protocols/build/index.d.ts","../node_modules/webdriver/build/request/index.d.ts","../node_modules/webdriver/build/bidi/localTypes.d.ts","../node_modules/webdriver/build/bidi/remoteTypes.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/ws/index.d.ts","../node_modules/webdriver/build/bidi/core.d.ts","../node_modules/webdriver/build/bidi/handler.d.ts","../node_modules/webdriver/build/types.d.ts","../node_modules/webdriver/build/command.d.ts","../node_modules/webdriver/build/constants.d.ts","../node_modules/webdriver/build/utils.d.ts","../node_modules/webdriver/build/index.d.ts","../node_modules/webdriverio/build/utils/SevereServiceError.d.ts","../node_modules/webdriverio/build/dialog.d.ts","../node_modules/webdriverio/build/commands/browser/$$.d.ts","../node_modules/webdriverio/build/commands/browser/$.d.ts","../node_modules/webdriverio/build/utils/actions/base.d.ts","../node_modules/webdriverio/build/utils/actions/key.d.ts","../node_modules/webdriverio/build/utils/actions/pointer.d.ts","../node_modules/webdriverio/build/utils/actions/wheel.d.ts","../node_modules/webdriverio/build/utils/actions/index.d.ts","../node_modules/webdriverio/build/commands/browser/action.d.ts","../node_modules/webdriverio/build/commands/browser/actions.d.ts","../node_modules/webdriverio/build/commands/browser/addInitScript.d.ts","../node_modules/webdriverio/build/commands/browser/call.d.ts","../node_modules/webdriverio/build/commands/browser/custom$$.d.ts","../node_modules/webdriverio/build/commands/browser/custom$.d.ts","../node_modules/webdriverio/build/commands/browser/debug.d.ts","../node_modules/webdriverio/build/commands/browser/deleteCookies.d.ts","../node_modules/webdriverio/build/commands/browser/downloadFile.d.ts","../node_modules/@types/sinonjs__fake-timers/index.d.ts","../node_modules/webdriverio/build/clock.d.ts","../node_modules/webdriverio/build/deviceDescriptorsSource.d.ts","../node_modules/webdriverio/build/commands/browser/emulate.d.ts","../node_modules/webdriverio/build/commands/browser/execute.d.ts","../node_modules/webdriverio/build/commands/browser/executeAsync.d.ts","../node_modules/webdriverio/build/commands/browser/getCookies.d.ts","../node_modules/webdriverio/build/commands/browser/getPuppeteer.d.ts","../node_modules/webdriverio/build/commands/browser/getWindowSize.d.ts","../node_modules/webdriverio/build/commands/browser/keys.d.ts","../node_modules/webdriverio/build/utils/interception/types.d.ts","../node_modules/urlpattern-polyfill/dist/types.d.ts","../node_modules/urlpattern-polyfill/dist/index.d.ts","../node_modules/webdriverio/build/utils/interception/index.d.ts","../node_modules/webdriverio/build/commands/browser/mock.d.ts","../node_modules/webdriverio/build/commands/browser/mockClearAll.d.ts","../node_modules/webdriverio/build/commands/browser/mockRestoreAll.d.ts","../node_modules/webdriverio/build/commands/browser/newWindow.d.ts","../node_modules/webdriverio/build/commands/browser/pause.d.ts","../node_modules/webdriverio/build/commands/browser/react$$.d.ts","../node_modules/webdriverio/build/commands/browser/react$.d.ts","../node_modules/webdriverio/build/commands/browser/reloadSession.d.ts","../node_modules/webdriverio/build/commands/browser/restore.d.ts","../node_modules/webdriverio/build/commands/browser/savePDF.d.ts","../node_modules/webdriverio/build/commands/browser/saveRecordingScreen.d.ts","../node_modules/webdriverio/build/commands/browser/saveScreenshot.d.ts","../node_modules/webdriverio/build/commands/browser/scroll.d.ts","../node_modules/webdriverio/build/commands/browser/setCookies.d.ts","../node_modules/webdriverio/build/commands/browser/setTimeout.d.ts","../node_modules/webdriverio/build/commands/browser/setViewport.d.ts","../node_modules/webdriverio/build/commands/browser/setWindowSize.d.ts","../node_modules/webdriverio/build/commands/browser/switchWindow.d.ts","../node_modules/webdriverio/build/commands/browser/throttle.d.ts","../node_modules/webdriverio/build/commands/browser/throttleCPU.d.ts","../node_modules/webdriverio/build/commands/browser/throttleNetwork.d.ts","../node_modules/webdriverio/build/commands/browser/touchAction.d.ts","../node_modules/webdriverio/build/commands/browser/uploadFile.d.ts","../node_modules/webdriverio/build/commands/browser/url.d.ts","../node_modules/webdriverio/build/commands/browser/waitUntil.d.ts","../node_modules/webdriverio/build/commands/browser.d.ts","../node_modules/webdriverio/build/commands/element/$$.d.ts","../node_modules/webdriverio/build/commands/element/$.d.ts","../node_modules/webdriverio/build/commands/element/addValue.d.ts","../node_modules/webdriverio/build/commands/element/clearValue.d.ts","../node_modules/webdriverio/build/commands/element/click.d.ts","../node_modules/webdriverio/build/commands/element/custom$$.d.ts","../node_modules/webdriverio/build/commands/element/custom$.d.ts","../node_modules/webdriverio/build/commands/element/doubleClick.d.ts","../node_modules/webdriverio/build/commands/element/dragAndDrop.d.ts","../node_modules/webdriverio/build/commands/element/execute.d.ts","../node_modules/webdriverio/build/commands/element/executeAsync.d.ts","../node_modules/webdriverio/build/commands/element/getAttribute.d.ts","../node_modules/webdriverio/build/commands/element/getCSSProperty.d.ts","../node_modules/webdriverio/build/commands/element/getComputedRole.d.ts","../node_modules/webdriverio/build/commands/element/getComputedLabel.d.ts","../node_modules/webdriverio/build/commands/element/getElement.d.ts","../node_modules/webdriverio/build/commands/element/getHTML.d.ts","../node_modules/webdriverio/build/commands/element/getLocation.d.ts","../node_modules/webdriverio/build/commands/element/getProperty.d.ts","../node_modules/webdriverio/build/commands/element/getSize.d.ts","../node_modules/webdriverio/build/commands/element/getTagName.d.ts","../node_modules/webdriverio/build/commands/element/getText.d.ts","../node_modules/webdriverio/build/commands/element/getValue.d.ts","../node_modules/webdriverio/build/commands/element/isClickable.d.ts","../node_modules/webdriverio/build/commands/element/isDisplayed.d.ts","../node_modules/webdriverio/build/commands/element/isEnabled.d.ts","../node_modules/webdriverio/build/commands/element/isEqual.d.ts","../node_modules/webdriverio/build/commands/element/isExisting.d.ts","../node_modules/webdriverio/build/commands/element/isFocused.d.ts","../node_modules/webdriverio/build/commands/element/isSelected.d.ts","../node_modules/webdriverio/build/commands/element/isStable.d.ts","../node_modules/webdriverio/build/commands/element/moveTo.d.ts","../node_modules/webdriverio/build/commands/element/nextElement.d.ts","../node_modules/webdriverio/build/commands/element/parentElement.d.ts","../node_modules/webdriverio/build/commands/element/previousElement.d.ts","../node_modules/webdriverio/build/commands/element/react$$.d.ts","../node_modules/webdriverio/build/commands/element/react$.d.ts","../node_modules/webdriverio/build/commands/element/saveScreenshot.d.ts","../node_modules/webdriverio/build/commands/element/scrollIntoView.d.ts","../node_modules/webdriverio/build/commands/element/selectByAttribute.d.ts","../node_modules/webdriverio/build/commands/element/selectByIndex.d.ts","../node_modules/webdriverio/build/commands/element/selectByVisibleText.d.ts","../node_modules/webdriverio/build/commands/element/setValue.d.ts","../node_modules/webdriverio/build/commands/element/shadow$$.d.ts","../node_modules/webdriverio/build/commands/element/shadow$.d.ts","../node_modules/webdriverio/build/commands/element/touchAction.d.ts","../node_modules/webdriverio/build/commands/element/waitForClickable.d.ts","../node_modules/webdriverio/build/commands/element/waitForDisplayed.d.ts","../node_modules/webdriverio/build/commands/element/waitForEnabled.d.ts","../node_modules/webdriverio/build/commands/element/waitForExist.d.ts","../node_modules/webdriverio/build/commands/element/waitForStable.d.ts","../node_modules/webdriverio/build/commands/element/waitUntil.d.ts","../node_modules/webdriverio/build/commands/element.d.ts","../node_modules/webdriverio/build/types.d.ts","../node_modules/webdriverio/build/index.d.ts","../src/components/__tests__/ProseMirror.domchange.test.tsx","../src/components/__tests__/ProseMirror.draw-decoration.test.tsx","../src/components/__tests__/ProseMirror.draw.test.tsx","../src/components/__tests__/ProseMirror.node-view.test.tsx","../src/components/__tests__/ProseMirror.selection.test.tsx","../src/components/__tests__/ProseMirror.test.tsx","../src/contexts/__tests__/DeferredLayoutEffects.test.tsx","../src/hooks/__tests__/useEditorViewLayoutEffect.test.tsx","../src/plugins/componentEventListenersPlugin.ts","../src/plugins/__tests__/reactKeys.test.ts","../src/testing/setupProseMirrorView.ts","../node_modules/@vitest/pretty-format/dist/index.d.ts","../node_modules/@vitest/snapshot/dist/environment-Ddx0EDtY.d.ts","../node_modules/@vitest/snapshot/dist/index-Y6kQUiCB.d.ts","../node_modules/@vitest/snapshot/dist/index.d.ts","../node_modules/expect-webdriverio/types/expect-webdriverio.d.ts","../node_modules/expect-webdriverio/types/standalone.d.ts","../node_modules/@wdio/globals/types.d.ts","../node_modules/@types/mocha/index.d.ts","../node_modules/@wdio/mocha-framework/build/types.d.ts","../node_modules/@wdio/mocha-framework/build/index.d.ts","../node_modules/@types/jest/node_modules/jest-diff/build/cleanupSemantic.d.ts","../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../node_modules/@types/jest/node_modules/jest-diff/build/types.d.ts","../node_modules/@types/jest/node_modules/jest-diff/build/diffLines.d.ts","../node_modules/@types/jest/node_modules/jest-diff/build/printDiffs.d.ts","../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts","../node_modules/@types/jest/node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},{"version":"5b5c3e9bcbdad9256a14bd8f74844449cba0bf947f46f6d829c86e049f0a2052","signature":"aebbc63575486ad034a7c43fae3d5a2668cc3593c8934e0a0d6a9e72d0500be8"},{"version":"af48c893c768f3209eaa2d72a9dcad8fa76e08dfa096946e945c391e47cbb3b7","signature":"2751c3a8dfaaf555fb19127ae178d221bb67bdf93bf36e060e95d52dd7e83698"},{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"1c29793071152b207c01ea1954e343be9a44d85234447b2b236acae9e709a383","6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"7fb6faf1006c3503d44e4922c8c65772ddc98e92bad7c2ae2d5db123f3e297b3","affectsGlobalScope":true},{"version":"0824e6d6054b9f2acc195686e795bfbbb9e36e00c2c7c73b51de3076e35f512f","signature":"c62bda58b1b8aefb2ca3aa89551ad00188504316db56927defc3087fa32d52f2"},"3c616cbdf6f11c71a1cadba225121b0733b1c3da2a4855d7247a22bc64ee28cd","5d397401fd58e55fa1a75cf509591e160bd4a3b58a891f6866002951a340791e","1ef7565ffec4456d8a50e72f1cc254f46f2d35e0f34692f9096b11266fdfc6b9","e29c3246bccba476f4285c89ea0c026b6bfdf9e3d15b6edf2d50e7ea1a59ecfb","1ef7565ffec4456d8a50e72f1cc254f46f2d35e0f34692f9096b11266fdfc6b9",{"version":"6c13e210da67cb606e600fc90d5c702bcd62adb2e91f32c4e2673cd84d48855b","affectsGlobalScope":true},{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},{"version":"d11a5d3967290ea6be7e6d7667c4673a7626cfaa32cfc68101000d2b218606ab","affectsGlobalScope":true},"e4dd91dd4789a109aab51d8a0569a282369fcda9ba6f2b2297bc61bacfb1a042",{"version":"2b5e29f922cdecb2d320130d7d4d593f5e95ada764ec2c4d23dd5f59a6179af9","signature":"b3dc9f1efc355e2871fad138ba7368337463b23c7f497534beb03056e4af4b32"},{"version":"f9e44c6491db67282e4238120ce0e9353023536ac37096031adb7c74951f8943","signature":"6b5014a8a48fd1652355e234fff8123c2801a3efd751cb988d7bfa44e0c86711"},{"version":"b212f0238994bdd57de7a425006b0df90aa722d4b02710042fa9a1d23bec4af8","signature":"b44bb8a9294a2f46998581bb765b4eab9cb0b6a658a8ca8437ccbe71503d111c"},{"version":"d2a6a41df7a4ceb038f5c9ba76fe54d7b7553462a9aa8aecd4d45f152e79548b","signature":"83b2cca43af0e12bc72bc65b5288e554b502b92cf496581a299983f550e70d6d"},{"version":"9ed6c2ec2109c03351224547936c83bf265c6b5c268570f115f1dbe061631ccd","signature":"ad4fec76299a49e89432ab06de31eae7a2e71d62518273efdecb8fc2e968240a"},{"version":"ca61d0ae658693bf65c825554648a12adab47e16941cfdc5a162e499ad2d1355","signature":"f671df38e8ccc0826e2bac98a22076f14689293d7bca4fbc6f06a94c91585497"},"b05d32c486bb23840ec5623f9604e7cb1a97be6fe512f33fce8561c20e1c68c0",{"version":"50dea74987fa6c6b20a5f9f5fd1f8036063fda0a9bde8bbc0da978de0371fef2","signature":"1e9bad8619d085f60c6c836bfcce4d0ca002030dad769d7844a2dac0cec57336"},{"version":"9e664ef9f93adfbd1d5d585136b5240fe251bcee6576287b23c4b5869fbd022b","signature":"fe2612a0281d70e958c5522f0d15756c1c345f6c90d008781ceac5708f9fd3fd"},{"version":"060a724a40aaa56ea3a81ee5035902b549701852d6ca69e47c7fea728d50bf68","signature":"8dd028de430fa7b2c35b74b5b5c24d43b09542fce7fe4e461b291222cdc46171"},{"version":"e153aeef56452e25612ff905212269c51ef2ebd57e621eee2ea11c82d5abc1b0","signature":"d08086b1742b7b2bf5dfb5c2ac7cefbc89ea117a336f23f260cb0024c823d31a"},{"version":"b3fd0429a9407b8f8671c171dac7e700afd1c4aecb968373c06bd5b3a8fcdf35","signature":"01c1afb666ad23e839d19d712c451ecd053bee665a96bb352bb78df49884149a"},{"version":"47e7a21a1ab6f5453f0f400a94984b0f2eae0c967fb1970febe46b41b0eaae48","signature":"4de268d814cdf44767d1e48058071a2fbe94c2849a4f5746520a8e9eb98fbee5"},{"version":"ba080ea03f9691efdb0eeb58520e619ff0bb292287277e0b7fe338344af50fbd","signature":"4e94f55183fa720ca5616b7d67c84b54d0ee9f712dd9d9520beae30bd97c12fa"},{"version":"782b111cb2bc62a0f7f42f15773621ac731e4781cfd272010d57608b33dc2bd4","signature":"892d7aa74fbdea8ca3fb795575165f6b10347d1b99ae752ae85a16a5adbde957"},{"version":"285ced29c9ea33c1fa938c9326345e88f17cae4d3bef4fe3a281bf42d9e0280b","signature":"172d66a7e47b56fbeaea7503b6997a7336c6dcb7e2882306f0c4f07f83d84b67"},{"version":"dc73c97b117e5d1e8b2f054c718ca1176692b5b9d02d97fa20c63565e1abcc41","signature":"795057e39cf21e76c5e393ca04d6457002c3f6250588682d48c5404b24454c7f"},{"version":"39354abee942c5dcdd5f3454021e21ce871916ea17b426d3b6d557673fe4f5e8","signature":"d03764288f8f0f1ab2c1a3673444c1ebb16c4a2cd2870b648ae16b23ba7cc6a3"},{"version":"85ead12d3a84427868cedd8283c7f19a892efc18f52872dd550cc4b59e00c340","signature":"83078aca6f4e00a583d9f1b0f210e77ae151908164b929942ffc2d9877d91622"},{"version":"1773f1d96f1dce24a61f891e040547c331597aa8c0ac817d4ba1a5695cdbca7d","signature":"58528afde29d23c1685bd6695842bd1e3cfa21ec865b0b6eef38967194db928f"},{"version":"1a8ff68930b5cbc9138940c1c92015098088228a728887cb52dd14043cc2a1ab","signature":"c350786b6f0c2ad8c6de57762f556f412a8dc5ee3e03f7472761a6286372c6e9"},{"version":"002536ecc1d4c8e1812111c8c2a477543d7d6bcbbe4b2be2b930f6c6be7947ef","signature":"2143bcca33532154509650778ad1cdd203c7bbde83c3e7672fce28536ed929f4"},{"version":"e0e2248e656976666e2ffe5272d68b51670b8e4f87a8a9d2566d2b4e7ef79d05","signature":"2c75f4e38fbceeda74934cd4eeceaa605744c12cc038cef1c95028ec682f17ef"},{"version":"0c500066aed34aff5f2da1377a965cd284e957fc0d3ef33f7a334905261dedfb","signature":"0df19e52e95e0937f7ea426375695c504d8e36a6801606370ad45ab91085dd5a"},{"version":"4b8266da546b01e93045053b24c97ca2428c662bcb949b9f624bd5f7d26a141b","signature":"842cf9d01140ef2336d7de002ac27430b1ec1d3c1c9436779018ef076b29e86f"},{"version":"31d062dbd297cd09158715b99ad5accbc0f51a4fc9482a58b4cf0a9c85d4614e","signature":"d58f6e441744852cafb67094b531599849187ed18fe2afebc31f57d568275caa"},{"version":"618b79bee412c0fde46462848485629c4510c2ffa3d692b5dd0ee80cf122b563","signature":"98d4f33416a8d6bf99625b7a20861e2b4b51edec97b4a95ba094b90309342c7c"},{"version":"7c24628919ba03f839832f603e496c351db9f304628a0c1259c744bdcc345829","signature":"60ddf25ad3e766a1ac14fc6cb1929515e3ba5b2a0b4d8fa3a896d31df1f5e755"},{"version":"89d288533f67fb6ca3c3205b560857a1434cbe46268ba883d028f2e6af3d6b69","signature":"4b3fd343fda39c552d8eafbc177b656b3e9858c666650d0b0ea4f00bc05742d9"},{"version":"ae7feaf54662982672b5afc24c2e3d90731628e7850447fec5798a7cc4593131","signature":"b027e799acfdefee8b178fc4dc92ab47acd74de9535b980a30f6e4a99d0a7d38"},{"version":"417008fe97aadd6ecca73ba7c54b2de4022cdcd8baf64f530086e3c2744186ae","signature":"80a1748b01a95df654272e3068e37836032ed348f16bbdb14cbaafa024431fa4"},{"version":"676ba1ac83311f91ae05d5ef0a783ca50fa3a9291559873995a26f52fb79bd76","signature":"cdfba960793689c099c32e06a5926d4778b012403128db36ca50a48c39615ad0"},"2bcb1acd536e696b5e4405ab92e847eb7b7eaa121c8e80c96394c130f141919f","a45866275c5505fe10b7cf3541cff75bc7df47ef1d8126d1f071682a770a2856",{"version":"fa36c9e605ebcdc54c7b906ff408c151853518b249804bab790882b171a736ad","signature":"64592f497b2363a7dfe8914bed655e84c563198a776340385e5c29132c7a871d"},{"version":"7f737f7b958385c8ad3e6067d74d168327c3da4b780acdc71d02efb197a89405","signature":"cc755e0048a57667baf31a119d8c9fd427a1d82abd31b90aafaabdb18f912cd5"},{"version":"2fb5d88d4b207b88220c163e6467e59d43a14cc1a2d84973ee97ccdc26f2053e","signature":"68dd3503c1f29a0548b3c9876b82fb0525487f52caf2ba37767a8b2865197e58"},{"version":"e835930ce653b4c57b136e4583bdd294a4165834f1669626a68a51200e00b168","signature":"89d6765b9d573bcff261e277f461f49584d63e7a9d653c63b9f1bf5012c909bf"},{"version":"04cb814ab08623ba6c2aa6bf57f031a469d9af841e8eb9bbddb0436ce37c41a6","signature":"f18f755e57f25bcb20131873db4c9cc10ffc6c7a5268779b79fa882a2b2a494a"},{"version":"b494efde41bf60d1c3bbdfdead731a3e3d88516a3f50f6f69c448623d8261b61","signature":"2d05dc67a943dca1db06e423a16b6520b7d6cf4721932880de6484cd25c397db"},{"version":"aaf4a4e1c4954fbb051d413a29348be526931f2b3f12876d159831cccc992e75","signature":"ef30aa54204fb5af30e1bffb46d00b3c958b60e835743a5d1960459e30c18ce6"},{"version":"b6a3778c3bd4622e3b872ff419da9c7d6320600c3e602e600a9832ff8a727772","signature":"5d3b66dc001352732caf728ac1f720cc69c929fd92a57062a66d07ad53d9521e"},{"version":"5f160c8a94149e1b79f8d4f018d33e90d28c880aaed76fba5a339a042497e888","signature":"2c1b5f292f1550d287b640722132b8d26604fc2b691375aaa60aded6b572862b"},{"version":"56ed00c3795af52a5d8a55267eae5ee9e96794abefd8a8ddaadf309c89d5d8a6","signature":"f04980e8cac976e04fd0f2f29e5eccba5c12f490c006bd7b9cb24c831a6c0631"},{"version":"8941032a7f0d1725a2282a1d2bcf4d0b5bb845b48d67a05a8fce095ddd0ea81c","signature":"e0dddccdae3a53e537174aeabff85042a53c1f97e2ae230a71bed373a5235447"},{"version":"08b6c83a7e1c070d2afb9ebed01083ad216a140e670a253de978c634b0cb0e5a","signature":"2509ee619f10dee9c5154aefbc3ef4b7ab58a6e840170dab120b66f395f44e99"},{"version":"8985dd0981fc2942c2c2ed923932a59278d4114ef8f837cbda0d61d9b484a292","signature":"d559b5f087996e5bb69710d07c61ad03646fd8ed5ca6caf5ec401f5332614bf5"},{"version":"6771a069d28fe56c44165674a67fbe1c727195faa49298924ef10f27527b7a93","signature":"9d03270300fd5bebef3a83b29ec154b975295be1a4db0163e637c313ca904493"},{"version":"827da338f3d1a48d7bf7a8e8e383a84ebff3ae3818f530cf7379eed9e48d912e","signature":"73eb92b801117259b9f276ba9ff83522a84ccbe64f5bd826ced928c4c9816dde"},{"version":"fe6286033739a7d90a08c3dc468e4e6801c12c130ecc908921a2965acf25d845","signature":"c23803dfca8d4f541ade54c535a4604142c99a68027e21c27ec47c16cfb2ad3c"},{"version":"ca82ab2dd22a6fc83ce078366c987e56728a45992fad8c9b9f7ac4ad9c29adee","signature":"6f92b5ac2f6eaa636e3762e1bf8ac4c47720bc5f167bb633dfc2722adfda9d64"},{"version":"c3ae360f8365e54857b2cada2a83b4179531168cced0ff4e5c5661cb1ef5ea2b","signature":"26ad24babf2028fe663038de50853e71531972269fdf064e2179a60b54514309"},{"version":"085a508c25f2c949341dc24d19975bade7bddd0d2b683b921410345237f3db20","signature":"14f179d5d86b3a6f2f14549b260bd8d9542cdb3473c01375addd3d99a444accf"},{"version":"76efe933aa846d7854207e79390d5d7fce7bbc1f784a7eeca954707b69e8cf0b","signature":"3aa1e62307fdcfd8918596172c7f7b6b532743b6cff15f3c920c0ea84f24e759"},{"version":"c24350ced31c457b4f80e49f6649425515a65fcb8d78d58bfd09b5ec2c8cb394","signature":"548e3ac785541b27e0eb1daa941c1510f61ae9db077a5b48b887ab0e804d93f8"},{"version":"da97e4870bac9e83e936b0043cdc3c7f042bc1db189842e00887bf362e86a891","signature":"b1d46e2a56509afbbc354a1a226dc833c4ed3fc7d21bf530f40663cfa57a2c6a"},{"version":"61661fa16db70e44a64052c2617ad23891b7375b81eae845bcaa878987eb5238","signature":"8fbe162e2d41fc2874ba317765d416522eb6fae9f2fb1319b9764cbd9bdc5eb9"},{"version":"6ee094817e7b2675b430351eefc3624d15b889d5ec7f2e4bf82964a83f34023c","signature":"59892dbc59a9f835886cebb5b9865a1eac626b6a31c59c14bcc5fcfb33040a37"},{"version":"6ef855ad3fbd97466630486137d8ba863c07d9c1632278efb82e8da4f9266096","signature":"e587a63e694cbcc9a50ea1257177cfdbf9a47e08d9154c87b7dc0ca20890e4c7"},"18d1bd2540f1feea5c97f9078da29aa96fd080b141272ecce0d091aae3d373e5","83e27bbd7304ea67f9afa1535f1d4fdb15866089f0d893c784cbb5b1c6fb3386","21522c0f405e58c8dd89cd97eb3d1aa9865ba017fde102d01f86ab50b44e5610","3cfb7c0c642b19fb75132154040bb7cd840f0002f9955b14154e69611b9b3f81","8387ec1601cf6b8948672537cf8d430431ba0d87b1f9537b4597c1ab8d3ade5b","d16f1c460b1ca9158e030fdf3641e1de11135e0c7169d3e8cf17cc4cc35d5e64","a934063af84f8117b8ce51851c1af2b76efe960aa4c7b48d0343a1b15c01aedf","e3c5ad476eb2fca8505aee5bdfdf9bf11760df5d0f9545db23f12a5c4d72a718","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","d0570ce419fb38287e7b39c910b468becb5b2278cf33b1000a3d3e82a46ecae2","3aca7f4260dad9dcc0a0333654cb3cde6664d34a553ec06c953bce11151764d7","a0a6f0095f25f08a7129bc4d7cb8438039ec422dc341218d274e1e5131115988","b58f396fe4cfe5a0e4d594996bc8c1bfe25496fbc66cf169d41ac3c139418c77","45785e608b3d380c79e21957a6d1467e1206ac0281644e43e8ed6498808ace72","bece27602416508ba946868ad34d09997911016dbd6893fb884633017f74e2c5","2a90177ebaef25de89351de964c2c601ab54d6e3a157cba60d9cd3eaf5a5ee1a","82200e963d3c767976a5a9f41ecf8c65eca14a6b33dcbe00214fcbe959698c46","b4966c503c08bbd9e834037a8ab60e5f53c5fd1092e8873c4a1c344806acdab2","d1c08287c9c6a9c60c53142c122e9c1909f5a159301b9b06b0eaf12ab547920b","2a440f32bf83a8ef4bac939a6a3b8b59e8b14a060032444c9bb3ba7605a4c403","cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec",{"version":"0a91552c60552ca235929b4b61f0b9121a28179f9271e3cfed66f2c67bc76dcd","signature":"e1bb82b694aed888d65fe15910b80c0b0d4a90f25d07c5c0b5b2844529bf0972"},{"version":"607cabb4db3766d5474d07afafc2e65e9cce134c29617bfb195738ec951177c2","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"736c14342c95cdf46bec3c40322a160d7f0bceba7a7eb1a32f5a5934ad9439c3","deab484053e0ffc3e81f612f28291d054f26db2a44e9e83ba2d37755f789b232","2ffd5793d20504e56283413ca9eb9b0e8d871c57c5cb39e5e0df4d685a14317b","88912298e9014ddc36061054b0a14076a02aa576072ec1626f60e0f6bac9116f","29ff006e9162a63aafca305a6d26ed01ee3148f6c704918fd8dfaa1a2406da29","ada1b7cb7b88c059ac5818af61c7da17c1c699def51afa4d597c121552e34211",{"version":"a2f274e1d29e4c0b66637fe965e30745ede683b4643a24b82a59d734eae399fb","affectsGlobalScope":true},"63daeca7642998df05f51ac891557e11323f273085258d1c866acb7bbc6b17c1",{"version":"4a04f8d2eaa94917389d4763c64731a485f6054bd578cf21a60a4a4cc246145e","affectsGlobalScope":true},"8f66b6c9aed8958a562a913aa37f1c4c4feab5bd8d4bf693b909d6f598dfff03","584d6d9e44560dd474d1da093e81f87295456c7db0acb4a5021056af1318b213","055658d153e441e8e1c32ad4f9163d4cd0db9050ced4081dccd3af22a7356e53","6495b2dff79813b07677f30da318bc9d7e567983d5662725ca08857f5912829f","99e43dd48dbe17d3ea455ee5b9b61c04133156ce8564fc5f7c13264e621251fe","da780b391d2bffaa7b40cff38ee5815dec7ef4604fa43c782191cc33bc32ffff","8fcdc1b508dce5264483bd3664112e353bc7ce8d0c5b7b48fb099dabab3cea9c","adb3a40db2048227ee4ebe4ea66da876542f2e3bdac5353582600e20ba93125f","d27cf84de2c103c8cff521c139cc6edd946182bffbc47d21d95a0ee9d3baa6d8","c889aac0319d4f720f0f2422342a6c7e41fc53aa66830d49cc7340f8c5979594","7cd4800e0e14d4863f157b7c58689f30fd176afb3ee4d71d0c115fe8dba320f0","537d0632e5a963e5592c7782542bfd8e9eb46e7764b7b8e98a62ed9bb0db7eb8","a9a3ef276dafbee91e79da7c773f58ff38bb6334b765fa0957145f05d243dd7e","e093e246587c564e58a709a4218b91216832cbb73ab84ccf7f53093da8958a7d","b1eb2133c35da51a65acd4113f768e8c7f449303cdd8dab0b0ffca454acfeaf2","37660d7ca9a44aae06920704fb48dbda2cf27fbea47fcbc63b014024e2d89a9b","61d4877dd902176fa85d87da19b561fd21f1caa9ea1c311600cf89222ecc2c57","8cb39f70ec69a01a60479dbc16842e707fcc4804bd5f90c79e370ce2781571ee","854a9b46a5f263bb77392578ded028ef0476cd79363bdc2e311656add637a9f0","e3e93bfa9b97d15bc0bcf68ae28c5d738bec491fa124c0fc5df7a3603d394c3f","7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"bb65c6267c5d6676be61acbf6604cf0a4555ac4b505df58ac15c831fcbff4e3e","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","dab86d9604fe40854ef3c0a6f9e8948873dc3509213418e5e457f410fd11200f","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"d076fede3cb042e7b13fc29442aaa03a57806bc51e2b26a67a01fbc66a7c0c12","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","223c37f62ce09a3d99e77498acdee7b2705a4ae14552fbdb4093600cd9164f3f",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"4c50342e1b65d3bee2ed4ab18f84842d5724ad11083bd666d8705dc7a6079d80","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"8dbe725f8d237e70310977afcfa011629804d101ebaa0266cafda6b61ad72236","9a2eaab4e54953c6b2ba21f7ac4c2593859da03917011c10a2acd8864e38e7b2","9076b1bdb9973b32aeba348ccd76ca33e2a55b5dd1b60168879e134fbf7ae4d0","3d9235d46b7be56163dc2a30ed53fed476d6734df973b8250c25b844ed0f6869","ad55743b325a084f366043b636de98563811d40edfbf6a0c04f4e0e3bd48d6df","027420c0b6ef9f2dce7e15401eb7df19db6a364a45af000942dee84e95116d6d","8e06d1b753b7b76bfa99e9db95ff93db8132d88742f9c58db1407f591d496703","1843c781e7d4eb2ba2421f93ced2251a1ad2ec1252c4529be7fd3219c477e284","a5e048c705437fea926307bb370661502ae1813f9dff9efa6858a87575aac8d0","61e8d97d995fc12d08b0db14799e91c0a849da510a3f488bbf2ab4ec463ee08e","1fb26be9109c83d34ea36c5acfd376012b0348842f201d5c32b53be4e3f1ef39","2212ea1fc1af917bbc8c7fe6963ce2fb5b54c3ad7df6cd6d5cacf70489ef8b1d","551d6ea124a8ce4a11b8c619363ed8d9db1dee681cb6f0853c66b56d3f98f6e1","3a074d4e6fd4cae678d749dad7a0242fa1bbdaaa7287f27a7506d20723aaa8d1","cc55be68e82167f4103dd4f42849327495793a8775b727c925ee9943d1087c08","3d40f5b15a927f911c1919ed8396f19e431f36412ba38b4af4dcd8abb69439a9","2098691825f5a139440990b374632ab5d5e4df0b06f7a38e6bc62af8afb4f6f0","478c8e7d8206bdf5392f3d459ca95af1b2b0648d61bbb37cb03b77ef8d1bbf3c","2c4f3dc8ac4e5e1d064ac0492dcef017de6207c39ed3cbe49103319d4c87b92b","ee945dca25076506bc4759830980719893a46e9d13aa6b4d44a2f5211e4321b1","aeddcad4a86c626f6ea06a0eb0b2c5b2c5cdba9180e23aae4f701f07b3ad96d5","3ca3f546f0bae658a7ecec0d228161284e207a0dbe2fcb33b67448e97bd7aa71","75586523002e24122788900b04255268ad1eed9bd3e4d97175a88076213ec835","f5b6ddf9710f3d99ab87075aa2d4ae08a86dd50d3f8aa38729a56976a7a78e3c","64f76320a3f54460bd7365f6d72080b398a74a469fde8907d1a3256b3eb35316","91c456b34eb50cdfb74a49776dc2221575b6eecc692265458f3fa638beffd3bc","cab1efe27467e8186479c7ebdb189f198b372394eaa8a827af4b773502d73408","7d2a0ba1297be385a89b5515b88cd31b4a1eeef5236f710166dc1b36b1741e1b",{"version":"20f895cbad339ce2a4cadad33443a6a77e1e82f50a7dffa0c8146f130b8e0c18","affectsGlobalScope":true},"a9fe3e46584350db7e958217addbfee684d99b144afa977d7815c3f0ed31d06e","1cc9877c91ddf56672ca1913afa1249a7bca193dc28b1abc1c499b1f8fcb0269","fb209266413113ffdada072e40c1476466f19e28b81dc46235944b9b2246e0f0","b28ca76a1d7c28bf8cc74145963a5e729213b44d30073567ff8a2a72dc5a911e","091f2e62d3933d5a1ca1978f94ce9f77dd2bd597a252a7c24ac0202144fb0cbe","f16409db6af984258ec916eca20eb67c55c1a66a0a16d3024ce29e2361b6885d","2e2d70810b96fc1b6bc93419458e8b613b2c742d99a222b92ec72de91bb643c3","94fd071c8b6dc94c5acd45ad1520147963792339b0f2a5241dbbd27486a91274","33dc8a7a2cb9b0d7a7424206d7e449c33a10941462e27fbe21c61526c021618c","6f86608fc7780f98895bb87ced7248a78d6564c507543580ac28312fb398d3b7",{"version":"08285e19d4027575064de0b9158afb91b457808e2f158ddd48f92018ea1ddb2e","affectsGlobalScope":true},"02050fd18f29365b2b11936af46de1d3659d39e6bac1c462f8c605a6d075e244","fb3feb0d05a342d3e56846b432c06bd8a315536ef21ee2fa26073db89db2281a","971fc1b434c33c0462ff6b6e0c7755a3fa60310cfe3015369c7f3b5cb150e4ac","03e72d13ef295bc46632b3057e065427fc6284392cdb46d4911112c095899913","a23a2df8704b33829f18d8a203959dc8b6425d13bea9f26c492a11c0869c1f2c","04d1d25b589fb6038eec3457761f8a54d183fb8936bdc30a412cf58e350a6898","1cd1d23361f852c0d55bc83fb91e891bb5781b2f7861441edd148d5e48065112","8f8df5e2dd49215a98017778de466eb879dfcc14853566efe60384fbec22a3be","5e788d1a14a9d5746affbca5fab6fa24239b775912ac8250940180e984f131d8","4ce46463b2009136a9ae86f428ffa75714d2d22d5b77569e35a3cd63c313b2cd","b6d2ddbb8240a795cd3593a06c762cea36dd91760b5b4a0be653c321d64d26e5","d3f9b1fca0388f5fc6323921b4537bc6663669c336199498b1b0bcd9c1795565","22a72f2282b69ef00bc7d6d755af01f04827e702da836983ab58b01078350878","b1ed006070e75bcd8000628405c24e4c22a90efa569720a250e106ac801cb675","c2dc385ed08b401d862fbe0a74975441d2fdb0944696d33c4ccf0b95dedb0fb0","ebbced2909f510df415bb5521f87262856d31c92cceba6d75adaa3c32e46a3cc","7c89007a3368f659d735304f7063d99372a34189d665bc5c19ea269209f60f2c","63819ae69945a979d4de73c85c655c1ee6fd771ac1be474d80d08a4a049e1c20","cf23e6ab563055cf4bb4ecf2336795b9627bf1cf90b3b527421e82862c0d4337","780f8ec3f1267ac08d8aaca0f36f97008948473499dd5a14df024c84008c44a2","eb5afe3d04295bc4ce6f2a3c6f63301a8ee21c8fd80f957b5eaafeaa03577577","ce61014a8b6496be8965bfdd371aee34ca6b1e45f9c34a743015049ce4728ce2","c1f263481be7a415e5e46ed5811795799b7c4201e835f2895477a1191d9add2c","a385060cd665bad7dd16cfd035f27a923723b345b57087de3d80664e9bdc5919","f93f8a5655444dbf4bb32b252b6594be4701a38d23b9ba3d5214a02c15df181b","dedd0f2e91f2dd25aafef5c75fd270a3bb8f6546d6877c9609957730fc262394","a47675b315365616bff3d2e3ad4d5eb4f45941aafed015ee10acbd37037f1ba0","aafeda6b6cd763afbfdf051700853091e276a71b9ac9f4ece448570f38e14015","7ccb53d9c8c6cb660fc24eef6629bf86b9f360f7b5933b123ff985fba25b6339","5213f16f0b65ecc2993d3ed483507c589d69bf727f22cd5d12d0e47d68b9e56a","63590056e51c8e24a7394c86324eec939dd895a8662ecbab24954d5471924da6","86e6b18f53b22391ebb1c86297f461478b570493bf973975b7295b8f7a684310","5de47e429ed189b068d204cb96be99b59c3f17d16a6e198496305a71f105c077","06c690a59357b39b6e22b6436321b9aea57d18f6979b732414aab4c7f7ecb918","5add7978d40f4be1ece62ebd32e4cf799687d8eb200c76ca4e1cf1847d82db97","5788d3cfeac5e77c3162bdae82b21f9d6dbce860dfcacf8ea85366195873b8cf","42e62b272597eaa3b7b7822c4c4ab96fb9897f16dcd0fdab846bd20812be7366","e0c3c1be52a3f99d053b0ec4661fb6df372cbfcfeff1628a6d95f2281ecd0f4d","f0b15b0a6132c40c951b2b91926b393a6477bc0836b439699e04a8131418c488","8be35ecef5d47b31f8c1de92ffe3cc5cd4d02f65ba6ad0d376352f589119a403","de39920c0772fb9805aa4739550f4b81b0b5efc86db81cbd9171a51d9348f46e","e5e34dac998589bd210f9e20704ded4b9b5e5f082ea36feb33d9cabd0adb5b2a","84c1be5aa9f5b821b955ab6b370522d023f82ef8ad11f0cc58f54d24fcdcaed0","2c138146755c5890ae2209bf9cf950be9d40288b5eb9d36a7c81b524be8aa5a6","89ba4fcac6e8a026bc77d11affa96378eda1f3fd99a7117de6bc34483019444b","00b194b550eb6c9d0b1a28362e0fea439db0d1a0e82c695a4aca63f01568d7f2","8a135c6d6ae079937afbc51048f0a268f0637c2776f6dd2219382d140ccf2fd2","ba875e33c11816dce55040d05b86580f6b58b00cca6f4c41282deef16a55e005","3c90bdf3685eb6725c6a6f7ea47af4bb41e7f7056462f29e4465fd8711f1826d","37b83c56f1027e58521409107bd3e0b6fa9790cbf7d5391a40c230a77a77fc7f","a50cb11f885b9b9c46db7014308f0c2cbd489061de58490d821eb00801b2117f","666db7ccd9500a4a6b845cfa30d63801a5ca37fc502a9e85b7f224381bfdfdb5","f8e75a851f779d87ae96ebac89409925df7bbaf1aa3bd3f56258b98a2c8f0af8","736a3775067c232b24446c86cf25ae3b248e10309d66fbb2e19afaa8ba785bfe","d416b77ec4d0f8cbfd517d8a59ca136bc57735450271a23c14a38a8f9db721a2","f4c9cfa0db2efeac963f5330207272d1aba30ed6a751ce80d0219507c9779749","87072f1e3a57191545e94311d5b5f3f743bd76de41e79e8ae17e0b2214f16243","812754b148ba99a547ee11145b68c35052cc9d5ca827288719d6fb57f009b8aa","89f4c4dd4fd3a1e3c0f77beac796aed80bb9718a9ae25263c7661f21a7311723","6d8ac440eb0bbf214fd29c3a48850e57e63c1cbc31abc9357bba3c882467566c","d058c9af57e5de80321e1c92a55fc2d5f70012a817c8916bd2ac8c44e18c1436","10ee4b41b1b97a5667e64cfde6d2b3b6d15ae17793aa67e2cfa86881f7fe9c71","20ff70ed2dc0cc6717a76264809bfbc1daf4c191e7d5c8d15b3ab489fa653c53","09269729f1952708f5b0d688839ec140628d1f539750a6d9a026330c65b1d231","5813f1ac1f61bf1b81bd41baf959360dd20310fa97322aaf4429434ee89ecc7e","8c1888cd02bc1f3c34bdbfe053c08a2f8d5ca5147be292f099148bfa95a195af","8407a0d9ada016e6c8dc317dd0c72dbb894c950ac3573787d9bd3986e6c51bd7","54366974e39593fdea03c3bf895e611a19b8ede534c5139df2c47daf4304837e","adee9f9a7594c93efdf2fcee7a10ca63a7ffca096c205148b72c9fc3bdd9b19a","616338e71bac435feb9b4c606e53d4fd9e5911aca773c37edfa5663fb57002ad","aef20777734d4bc23a58c26f68c42bcd3e56b82ddd231f993f0567531c752e0f","cc52c40b782d451ceca219cc62c3aacfc91e08ccea2a4bb839f4cbc538a8caff","31df0ed3b1fe57e17dea70384eea62bd607a7dc69b29ce6c4df6e5c456d87387","e3a6aaefbfde2999fd38ee76b43c82215f59b52f3e3f2accee1ef0f5c4ffa9cc","7f44474d11122bcb3ee5feaca842b84499c13a5fd97469cabcb2dc942c4bf043","bc9ddaee0c1385e0b7f00c6fce65b4c2de959ef52c59c5b91d1de3234a3f8a01","84473706d793d798fdfc39957ac33fe8648c061b4b7f0f7efb400ce35d6e5ca7","c8be5bb9c2285ac7507b21c426985afe72f2633ede6e9ad27bb66288aecfeb92","bff46197eaf1c08125258f3152bd3e4a9e13289f0bbc88f1e9ef7e175ca1f8c5","7204921408eaed62e573211f904c6e0c461721134959d5a002320f73ed4f84c2",{"version":"eab2c8a2cb84c2940c93111b98ff13d88e314d48c0f6fc0ed8943e573ec59431","affectsGlobalScope":true},"0f1978d39f8f326e675c9d12e3c528edc8b99bb751c71f32d9b283c53e0ee5dd",{"version":"2c6c2fe3b290d4e83434b474e15d6cdfdd9147102ae3d50c5e7dc8acf97cd486","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"7bd65924096cb6a5b31761ebdfd4d2cdad68d78fc8c4d495ea49c96ad792dc28","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"dd92fc2aebe575431769b9b2c4ea79c2506f52aefd4141920f23cbf2ad8bcbc6","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"6028a4164704ae1e62392eeeb2548b68fb759b9db431a594c87a60f715774d98","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"40a97b3b274c4b2885b135e5ccaaf289aa07dd26f3d2f616cc30984c4d939aba","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"cc88d87ab48a8b04bc217612ea91c8c77e02633e53aca6b1d4ef12bb2ec7e9d7","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"2546b5750d6d9930d4e93424a6690bdb1b2a4102749f99ec4043c3699b937ff8","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"8b45c882cf56abf0f8e49a62b6c6be444d4848c10eb0b043fceefd598bd0e039","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"55309036c60909cf6a9b8713e31d5e61cdc6ac3aa49dcc302cad25a5f88cd01c","signature":"d8b6612ffd8100484208679301bd0742c4e34b5a579f28f28cfcbff582c167c0"},{"version":"7e5974860627a3d219b0624952633002bb0601d7984c2b5a6b33fc7a9bc2d7a0","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"1feb6aa451b86b0cc4e10ee73b3b32429285fe19a47e9687280387f33d88ad3a","signature":"2929d8318c9e3e8bcbebddee4bbd55f377d2b18fcb058f51965cb85be0f24b12"},"d2e64a6f25013b099e83bfadb2c388d7bef3e8f3fdb25528225bbc841e7e7e3a","e01ea380015ed698c3c0e2ccd0db72f3fc3ef1abc4519f122aa1c1a8d419a505","9e2534be8a9338e750d24acc6076680d49b1643ae993c74510776a92af0c1604","c266ab6ddc3c29b4dd77a6f0d0eb4df7dab76d066e385171d88cb97c1120e747",{"version":"adfef42f90e895874d5d01ae1c765ab3fb893ed71226960d8f669dbc391554e8","affectsGlobalScope":true},{"version":"2e4beadc98cf82611bc639cb48784883493648b25e097a56a8390edf1fe01548","affectsGlobalScope":true},{"version":"0e9864c8c9393c22cba58ad144b7f2a190db89f649d0c064f22604fb9ddbaea0","affectsGlobalScope":true},{"version":"c67a7b7eec0175ea53343429d32897fcad406c663ba4b775eab8be8164bff91c","affectsGlobalScope":true},"64518924a9b6453b89e3adb27e5605a4a5ea302112172b49d32a4eb468fc02fb",{"version":"639e82ad014ff342469c80e3814d0a33fa98911296fa7941474c81bcc0f9b9ac","affectsGlobalScope":true},"d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"ccfd8774cd9b929f63ff7dcf657977eb0652e3547f1fcac1b3a1dc5db22d4d58","affectsGlobalScope":true}],"options":{"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":2,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./types","rootDir":"../src","skipLibCheck":true,"strict":true,"target":2},"fileIdsList":[[237],[139,237],[137,237],[134,135,136,137,138,141,142,143,144,145,146,147,148,237],[133,237],[140,237],[134,135,136,237],[134,135,237],[137,138,140,237],[135,237],[61,132,149,150,237],[140,237,393],[237,387,389],[237,387,389,390,391],[153,237,392],[191,237],[194,237],[195,200,228,237],[196,207,208,215,225,236,237],[196,197,207,215,237],[198,237],[199,200,208,216,237],[200,225,233,237],[201,203,207,215,237],[202,237],[203,204,237],[207,237],[205,207,237],[207,208,209,225,236,237],[207,208,209,222,225,228,237],[237,241],[203,210,215,225,236,237],[207,208,210,211,215,225,233,236,237],[210,212,225,233,236,237],[191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243],[207,213,237],[214,236,237],[203,207,215,225,237],[216,237],[217,237],[194,218,237],[219,235,237,241],[220,237],[221,237],[207,222,223,237],[222,224,237,239],[195,207,225,226,227,228,237],[195,225,227,237],[225,226,237],[228,237],[229,237],[207,231,232,237],[231,232,237],[200,215,225,233,237],[234,237],[215,235,237],[195,210,221,236,237],[200,237],[225,237,238],[237,239],[237,240],[195,200,207,209,218,225,236,237,239,241],[225,237,242],[70,237],[58,59,60,69,237],[70,150,237],[57,58,59,60,237],[207,210,212,225,233,236,237,242,244],[237,377,378],[237,377,378,379],[237,381],[170,207,237,385],[237,384],[171,237],[171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,237],[167,237],[165,166,237],[168,207,208,237],[163,164,167,168,237],[167,207,237],[162,163,164,165,166,167,168,169,237],[170,237,380],[159,160,237,365,381],[152,158,237],[153,157,237],[156,237],[155,237],[154,237],[63,237],[64,65,68,237],[64,237],[63,64,237],[64,65,66,237],[237,282],[189,190,237,245],[189,190,237,246],[187,188,237,248],[170,237,248],[170,189,190,237,247,248,249,250,251],[170,207,236,237],[170,187,189,207,237,247],[170,188,207,237,248],[237,271],[237,255,256,262,263,264,265,266,267,268,269,270,274,275,276,277,278,279,280,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309],[187,237,364],[237,364],[237,261],[237,252],[237,271,272,273],[187,237,252],[237,281,284],[187,237],[237,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362],[237,255],[237,256],[237,309],[170,237,252,253,364],[170,187,207,237,252,254,259,261,264,281,284,310,363],[237,257,258,259,260],[237,257],[187,237,257,364],[237,257,364],[170,237,252,281,283,364],[61,64,68,73,79,85,100,102,103,106,108,109,115,116,117,118,119,237],[56,61,84,86,237],[61,64,68,71,73,82,100,101,110,120,237],[61,64,68,92,100,101,120,237],[61,81,82,97,237],[61,64,82,92,100,107,237],[61,68,82,84,92,100,237],[61,64,68,73,111,114,237],[61,64,68,237],[61,64,106,237],[61,68,73,74,75,76,77,80,98,99,122,237],[61,92,100,121,237],[61,64,68,75,76,100,101,107,112,113,120,237],[55,61,82,92,100,237],[61,62,64,68,92,120,237],[61,82,92,100,237],[61,82,85,92,100,237],[61,85,237],[68,131,160,237],[66,78,131,151,160,237,365],[61,64,66,68,75,84,85,86,131,160,237],[61,64,66,75,131,160,237],[61,66,68,75,126,127,131,151,160,237],[64,66,68,131,151,160,237],[61,64,66,68,75,84,88,122,123,127,131,151,160,237],[61,92,237],[61,68,72,237],[61,66,237],[61,237],[61,75,237],[61,83,99,151,237],[56,61,64,68,78,86,237],[68,237],[64,68,78,237],[64,68,79,85,237],[64,68,78,79,237],[61,66,68,73,74,84,99,151,237],[61,64,66,68,71,82,89,92,94,95,96,97,237],[61,68,73,83,237],[61,68,73,84,237],[61,66,68,72,73,84,237],[61,66,74,237],[61,128,237],[61,81,82,237],[61,64,68,73,82,92,100,237],[61,73,88,237],[61,84,112,124,237],[61,68,84,113,124,237],[75,84,85,86,88,122,123,124,125,126,127,128,129,237],[64,66,88,237],[64,66,68,85,87,88,237],[66,68,71,237],[64,66,237],[61,104,105,237],[55,56,66,68,90,91,93,237],[56,64,66,68,92,237],[55,56,66,68,92,237],[56,61,64,66,68,84,88,122,123,131,151,159,160,237],[55,56,64,68,79,91,237],[61,64,68],[61,85],[61,64,68,92],[61],[61,64],[61,68],[61,68,75,98],[61,121],[61,92],[61,68,72],[61,66],[61,75],[56,61,64,68,78,86],[68],[64,68,78],[64,68],[66,68,72],[61,66,68,72,92],[68,72],[66],[64],[75,84,85,86,88,122,123,124,125,126,127,128,129],[66,68],[64,66],[58,61],[56,68],[64,66,68],[56,64,68,123,131,159,160],[56,64,68]],"referencedMap":[[154,1],[140,2],[139,1],[147,1],[144,1],[143,1],[138,3],[149,4],[134,5],[145,6],[137,7],[136,8],[146,1],[141,9],[148,1],[142,10],[135,1],[151,11],[133,1],[105,1],[394,12],[387,1],[390,13],[392,14],[391,13],[389,6],[393,15],[388,2],[384,1],[191,16],[192,16],[194,17],[195,18],[196,19],[197,20],[198,21],[199,22],[200,23],[201,24],[202,25],[203,26],[204,26],[206,27],[205,28],[207,27],[208,29],[209,30],[193,31],[243,1],[210,32],[211,33],[212,34],[244,35],[213,36],[214,37],[215,38],[216,39],[217,40],[218,41],[219,42],[220,43],[221,44],[222,45],[223,45],[224,46],[225,47],[227,48],[226,49],[228,50],[229,51],[230,1],[231,52],[232,53],[233,54],[234,55],[235,56],[236,57],[237,58],[238,59],[239,60],[240,61],[241,62],[242,63],[59,1],[132,64],[71,64],[69,1],[70,65],[150,66],[57,1],[61,67],[60,1],[271,1],[245,68],[377,1],[378,1],[379,69],[380,70],[383,71],[386,72],[385,73],[172,74],[173,74],[174,1],[175,1],[176,74],[177,74],[178,74],[187,75],[182,1],[183,1],[184,1],[181,1],[185,1],[186,1],[179,1],[180,1],[171,1],[162,1],[168,76],[163,1],[169,1],[167,77],[166,78],[165,79],[164,80],[170,81],[153,1],[104,1],[58,1],[381,82],[382,83],[159,84],[152,1],[158,85],[157,86],[63,1],[156,87],[155,88],[64,89],[66,90],[65,91],[131,92],[78,91],[68,93],[67,91],[10,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[4,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[35,1],[32,1],[33,1],[34,1],[36,1],[7,1],[37,1],[42,1],[43,1],[38,1],[39,1],[40,1],[41,1],[8,1],[47,1],[44,1],[45,1],[46,1],[48,1],[9,1],[49,1],[50,1],[51,1],[52,1],[53,1],[1,1],[54,1],[283,94],[282,1],[246,95],[247,96],[189,1],[190,1],[249,97],[250,98],[252,99],[188,100],[248,101],[251,102],[272,103],[310,104],[255,105],[256,106],[262,107],[263,107],[264,1],[265,1],[266,1],[267,1],[268,1],[269,108],[270,1],[274,109],[275,1],[276,1],[277,110],[278,1],[279,1],[280,1],[285,111],[286,1],[287,1],[288,106],[289,1],[290,106],[291,106],[292,1],[293,106],[294,1],[295,1],[296,1],[297,1],[298,112],[299,112],[300,1],[301,1],[302,1],[303,106],[304,1],[305,106],[306,106],[307,1],[308,1],[309,106],[363,113],[311,114],[312,115],[313,1],[314,1],[315,106],[316,1],[317,1],[318,1],[319,106],[320,1],[321,1],[322,1],[323,106],[325,1],[324,1],[326,106],[327,1],[328,112],[329,1],[330,112],[331,1],[332,1],[333,1],[334,1],[335,1],[336,1],[337,1],[338,1],[339,1],[340,1],[341,1],[342,106],[343,106],[344,106],[345,106],[346,106],[347,106],[348,1],[349,1],[350,1],[351,1],[352,1],[353,1],[354,106],[355,106],[356,106],[357,106],[358,106],[359,106],[360,106],[361,106],[362,116],[273,1],[254,108],[365,117],[364,118],[253,1],[257,1],[261,119],[258,120],[259,121],[260,122],[284,123],[281,110],[55,1],[120,124],[87,125],[111,126],[121,127],[99,128],[108,129],[109,130],[115,131],[75,132],[107,133],[123,134],[122,135],[114,136],[116,137],[117,138],[118,139],[119,140],[86,141],[161,142],[366,143],[367,144],[368,145],[369,146],[370,147],[371,148],[100,149],[73,150],[74,151],[81,152],[76,153],[112,152],[113,152],[372,154],[85,155],[77,156],[79,157],[102,158],[80,159],[56,1],[62,152],[373,160],[82,152],[110,152],[96,150],[98,161],[84,162],[124,163],[125,164],[126,165],[97,152],[129,166],[83,167],[101,168],[103,169],[128,170],[127,171],[130,172],[375,173],[89,174],[72,175],[374,175],[88,176],[106,177],[94,178],[90,156],[93,179],[91,180],[95,1],[160,181],[376,1],[92,182]],"exportedModulesMap":[[154,1],[140,2],[139,1],[147,1],[144,1],[143,1],[138,3],[149,4],[134,5],[145,6],[137,7],[136,8],[146,1],[141,9],[148,1],[142,10],[135,1],[151,11],[133,1],[105,1],[394,12],[387,1],[390,13],[392,14],[391,13],[389,6],[393,15],[388,2],[384,1],[191,16],[192,16],[194,17],[195,18],[196,19],[197,20],[198,21],[199,22],[200,23],[201,24],[202,25],[203,26],[204,26],[206,27],[205,28],[207,27],[208,29],[209,30],[193,31],[243,1],[210,32],[211,33],[212,34],[244,35],[213,36],[214,37],[215,38],[216,39],[217,40],[218,41],[219,42],[220,43],[221,44],[222,45],[223,45],[224,46],[225,47],[227,48],[226,49],[228,50],[229,51],[230,1],[231,52],[232,53],[233,54],[234,55],[235,56],[236,57],[237,58],[238,59],[239,60],[240,61],[241,62],[242,63],[59,1],[132,64],[71,64],[69,1],[70,65],[150,66],[57,1],[61,67],[60,1],[271,1],[245,68],[377,1],[378,1],[379,69],[380,70],[383,71],[386,72],[385,73],[172,74],[173,74],[174,1],[175,1],[176,74],[177,74],[178,74],[187,75],[182,1],[183,1],[184,1],[181,1],[185,1],[186,1],[179,1],[180,1],[171,1],[162,1],[168,76],[163,1],[169,1],[167,77],[166,78],[165,79],[164,80],[170,81],[153,1],[104,1],[58,1],[381,82],[382,83],[159,84],[152,1],[158,85],[157,86],[63,1],[156,87],[155,88],[64,89],[66,90],[65,91],[131,92],[78,91],[68,93],[67,91],[10,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[4,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[35,1],[32,1],[33,1],[34,1],[36,1],[7,1],[37,1],[42,1],[43,1],[38,1],[39,1],[40,1],[41,1],[8,1],[47,1],[44,1],[45,1],[46,1],[48,1],[9,1],[49,1],[50,1],[51,1],[52,1],[53,1],[1,1],[54,1],[283,94],[282,1],[246,95],[247,96],[189,1],[190,1],[249,97],[250,98],[252,99],[188,100],[248,101],[251,102],[272,103],[310,104],[255,105],[256,106],[262,107],[263,107],[264,1],[265,1],[266,1],[267,1],[268,1],[269,108],[270,1],[274,109],[275,1],[276,1],[277,110],[278,1],[279,1],[280,1],[285,111],[286,1],[287,1],[288,106],[289,1],[290,106],[291,106],[292,1],[293,106],[294,1],[295,1],[296,1],[297,1],[298,112],[299,112],[300,1],[301,1],[302,1],[303,106],[304,1],[305,106],[306,106],[307,1],[308,1],[309,106],[363,113],[311,114],[312,115],[313,1],[314,1],[315,106],[316,1],[317,1],[318,1],[319,106],[320,1],[321,1],[322,1],[323,106],[325,1],[324,1],[326,106],[327,1],[328,112],[329,1],[330,112],[331,1],[332,1],[333,1],[334,1],[335,1],[336,1],[337,1],[338,1],[339,1],[340,1],[341,1],[342,106],[343,106],[344,106],[345,106],[346,106],[347,106],[348,1],[349,1],[350,1],[351,1],[352,1],[353,1],[354,106],[355,106],[356,106],[357,106],[358,106],[359,106],[360,106],[361,106],[362,116],[273,1],[254,108],[365,117],[364,118],[253,1],[257,1],[261,119],[258,120],[259,121],[260,122],[284,123],[281,110],[120,183],[87,184],[111,183],[121,185],[99,186],[108,187],[109,188],[115,183],[75,183],[107,187],[123,189],[122,190],[114,183],[116,186],[117,185],[118,186],[119,184],[86,184],[100,191],[73,192],[74,193],[81,186],[76,194],[112,186],[113,186],[85,195],[77,196],[79,197],[102,198],[80,196],[62,186],[82,186],[96,199],[98,200],[84,188],[124,196],[125,201],[126,202],[83,186],[101,185],[103,203],[127,196],[130,204],[89,205],[72,205],[374,205],[88,206],[106,207],[94,208],[90,196],[93,209],[91,205],[160,210],[92,211]],"semanticDiagnosticsPerFile":[154,140,139,147,144,143,138,149,134,145,137,136,146,141,148,142,135,151,133,105,394,387,390,392,391,389,393,388,384,191,192,194,195,196,197,198,199,200,201,202,203,204,206,205,207,208,209,193,243,210,211,212,244,213,214,215,216,217,218,219,220,221,222,223,224,225,227,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,59,132,71,69,70,150,57,61,60,271,245,377,378,379,380,383,386,385,172,173,174,175,176,177,178,187,182,183,184,181,185,186,179,180,171,162,168,163,169,167,166,165,164,170,153,104,58,381,382,159,152,158,157,63,156,155,64,66,65,131,78,68,67,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,8,47,44,45,46,48,9,49,50,51,52,53,1,54,283,282,246,247,189,190,249,250,252,188,248,251,272,310,255,256,262,263,264,265,266,267,268,269,270,274,275,276,277,278,279,280,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,363,311,312,313,314,315,316,317,318,319,320,321,322,323,325,324,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,273,254,365,364,253,257,261,258,259,260,284,281,55,120,87,111,121,99,108,109,115,75,107,123,122,114,116,117,118,119,86,161,366,367,368,369,370,371,100,73,74,81,76,112,113,372,85,77,79,102,80,56,62,373,82,110,96,98,84,124,125,126,97,129,83,101,103,128,127,130,375,89,72,374,88,106,94,90,93,91,95,160,376,92]},"version":"4.9.5"}
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../src/browser.ts","../src/dom.ts","../node_modules/@types/react/global.d.ts","../node_modules/csstype/index.d.ts","../node_modules/@types/prop-types/index.d.ts","../node_modules/@types/scheduler/tracing.d.ts","../node_modules/@types/react/index.d.ts","../src/findDOMNode.ts","../node_modules/orderedmap/dist/index.d.ts","../node_modules/prosemirror-model/dist/index.d.ts","../node_modules/prosemirror-state/node_modules/prosemirror-transform/dist/index.d.ts","../node_modules/prosemirror-state/dist/index.d.ts","../node_modules/prosemirror-view/node_modules/prosemirror-transform/dist/index.d.ts","../node_modules/prosemirror-view/dist/index.d.ts","../node_modules/@types/react-dom/node_modules/@types/react/global.d.ts","../node_modules/@types/react-dom/node_modules/@types/react/index.d.ts","../node_modules/@types/react-dom/index.d.ts","../src/plugins/componentEventListeners.ts","../src/contexts/EditorContext.ts","../src/contexts/EditorStateContext.ts","../src/components/NodeViewComponentProps.tsx","../src/contexts/NodeViewContext.tsx","../src/decorations/computeDocDeco.ts","../node_modules/prosemirror-transform/dist/index.d.ts","../src/decorations/internalTypes.ts","../src/decorations/viewDecorations.tsx","../src/contexts/LayoutGroupContext.tsx","../src/hooks/useClientLayoutEffect.ts","../src/hooks/useLayoutGroupEffect.ts","../src/hooks/useEditorEffect.ts","../src/decorations/ReactWidgetType.ts","../src/components/WidgetViewComponentProps.ts","../src/components/CursorWrapper.tsx","../src/plugins/reactKeys.ts","../src/plugins/beforeInputPlugin.ts","../src/selection/hasFocusAndSelection.ts","../src/selection/selectionToDOM.ts","../src/viewdesc.ts","../src/selection/selectionFromDOM.ts","../src/selection/SelectionDOMObserver.ts","../src/ssr.ts","../src/hooks/useComponentEventListeners.tsx","../src/hooks/useForceUpdate.ts","../src/hooks/useEditor.ts","../src/components/LayoutGroup.tsx","../src/contexts/ChildDescriptorsContext.ts","../src/hooks/useNodeViewDescriptor.ts","../src/decorations/iterDeco.ts","../src/hooks/useReactKeys.ts","../node_modules/classnames/index.d.ts","../node_modules/@types/css-tree/index.d.ts","../src/props.ts","../src/components/OutputSpec.tsx","../src/components/MarkView.tsx","../src/components/NativeWidgetView.tsx","../src/hooks/useClientOnly.ts","../src/components/CustomNodeView.tsx","../src/contexts/IgnoreMutationContext.ts","../src/contexts/SelectNodeContext.ts","../src/contexts/StopEventContext.ts","../src/components/ReactNodeView.tsx","../src/components/NodeView.tsx","../src/components/SeparatorHackView.tsx","../src/components/TextNodeView.tsx","../src/components/TrailingHackView.tsx","../src/components/WidgetView.tsx","../src/components/ChildNodeViews.tsx","../src/components/DocNodeView.tsx","../src/components/ProseMirrorDoc.tsx","../src/components/ProseMirror.tsx","../src/hooks/useEditorEventCallback.ts","../src/hooks/useEditorEventListener.ts","../src/hooks/useEditorState.ts","../src/hooks/useStopEvent.ts","../src/hooks/useSelectNode.ts","../src/hooks/useIgnoreMutation.ts","../src/hooks/useIsNodeSelected.ts","../src/index.ts","../node_modules/prosemirror-test-builder/dist/index.d.ts","../node_modules/@types/react-dom/client.d.ts","../node_modules/@types/aria-query/index.d.ts","../node_modules/@testing-library/dom/types/matches.d.ts","../node_modules/@testing-library/dom/types/wait-for.d.ts","../node_modules/@testing-library/dom/types/query-helpers.d.ts","../node_modules/@testing-library/dom/types/queries.d.ts","../node_modules/@testing-library/dom/types/get-queries-for-element.d.ts","../node_modules/@testing-library/dom/node_modules/pretty-format/build/types.d.ts","../node_modules/@testing-library/dom/node_modules/pretty-format/build/index.d.ts","../node_modules/@testing-library/dom/types/screen.d.ts","../node_modules/@testing-library/dom/types/wait-for-element-to-be-removed.d.ts","../node_modules/@testing-library/dom/types/get-node-text.d.ts","../node_modules/@testing-library/dom/types/events.d.ts","../node_modules/@testing-library/dom/types/pretty-dom.d.ts","../node_modules/@testing-library/dom/types/role-helpers.d.ts","../node_modules/@testing-library/dom/types/config.d.ts","../node_modules/@testing-library/dom/types/suggestions.d.ts","../node_modules/@testing-library/dom/types/index.d.ts","../node_modules/@types/react-dom/test-utils/index.d.ts","../node_modules/@testing-library/react/types/index.d.ts","../node_modules/expect/node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/pretty-format/node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-matcher-utils/node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../src/testing/editorViewTestHelpers.tsx","../src/components/__tests__/ProseMirror.composition.test.tsx","../node_modules/@wdio/types/build/Automation.d.ts","../node_modules/@wdio/types/build/Frameworks.d.ts","../node_modules/@wdio/types/build/Workers.d.ts","../node_modules/@wdio/types/build/Services.d.ts","../node_modules/@wdio/types/build/Reporters.d.ts","../node_modules/@wdio/types/build/Options.d.ts","../node_modules/@wdio/types/build/Capabilities.d.ts","../node_modules/@wdio/types/build/Network.d.ts","../node_modules/@wdio/types/build/index.d.ts","../node_modules/@wdio/protocols/build/types.d.ts","../node_modules/@wdio/protocols/build/commands/appium.d.ts","../node_modules/@wdio/protocols/build/commands/chromium.d.ts","../node_modules/@wdio/protocols/build/commands/gecko.d.ts","../node_modules/@wdio/protocols/build/commands/mjsonwp.d.ts","../node_modules/@wdio/protocols/build/commands/saucelabs.d.ts","../node_modules/@wdio/protocols/build/commands/selenium.d.ts","../node_modules/@wdio/protocols/build/commands/webdriver.d.ts","../node_modules/@wdio/protocols/build/protocols/webdriver.d.ts","../node_modules/@wdio/protocols/build/protocols/webdriverBidi.d.ts","../node_modules/@wdio/protocols/build/protocols/mjsonwp.d.ts","../node_modules/@wdio/protocols/build/protocols/appium.d.ts","../node_modules/@wdio/protocols/build/protocols/chromium.d.ts","../node_modules/@wdio/protocols/build/protocols/gecko.d.ts","../node_modules/@wdio/protocols/build/protocols/saucelabs.d.ts","../node_modules/@wdio/protocols/build/protocols/selenium.d.ts","../node_modules/@wdio/protocols/build/index.d.ts","../node_modules/webdriver/build/request/index.d.ts","../node_modules/webdriver/build/bidi/localTypes.d.ts","../node_modules/webdriver/build/bidi/remoteTypes.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/ws/index.d.ts","../node_modules/webdriver/build/bidi/core.d.ts","../node_modules/webdriver/build/bidi/handler.d.ts","../node_modules/webdriver/build/types.d.ts","../node_modules/webdriver/build/command.d.ts","../node_modules/webdriver/build/constants.d.ts","../node_modules/webdriver/build/utils.d.ts","../node_modules/webdriver/build/index.d.ts","../node_modules/webdriverio/build/utils/SevereServiceError.d.ts","../node_modules/webdriverio/build/dialog.d.ts","../node_modules/webdriverio/build/commands/browser/$$.d.ts","../node_modules/webdriverio/build/commands/browser/$.d.ts","../node_modules/webdriverio/build/utils/actions/base.d.ts","../node_modules/webdriverio/build/utils/actions/key.d.ts","../node_modules/webdriverio/build/utils/actions/pointer.d.ts","../node_modules/webdriverio/build/utils/actions/wheel.d.ts","../node_modules/webdriverio/build/utils/actions/index.d.ts","../node_modules/webdriverio/build/commands/browser/action.d.ts","../node_modules/webdriverio/build/commands/browser/actions.d.ts","../node_modules/webdriverio/build/commands/browser/addInitScript.d.ts","../node_modules/webdriverio/build/commands/browser/call.d.ts","../node_modules/webdriverio/build/commands/browser/custom$$.d.ts","../node_modules/webdriverio/build/commands/browser/custom$.d.ts","../node_modules/webdriverio/build/commands/browser/debug.d.ts","../node_modules/webdriverio/build/commands/browser/deleteCookies.d.ts","../node_modules/webdriverio/build/commands/browser/downloadFile.d.ts","../node_modules/@types/sinonjs__fake-timers/index.d.ts","../node_modules/webdriverio/build/clock.d.ts","../node_modules/webdriverio/build/deviceDescriptorsSource.d.ts","../node_modules/webdriverio/build/commands/browser/emulate.d.ts","../node_modules/webdriverio/build/commands/browser/execute.d.ts","../node_modules/webdriverio/build/commands/browser/executeAsync.d.ts","../node_modules/webdriverio/build/commands/browser/getCookies.d.ts","../node_modules/webdriverio/build/commands/browser/getPuppeteer.d.ts","../node_modules/webdriverio/build/commands/browser/getWindowSize.d.ts","../node_modules/webdriverio/build/commands/browser/keys.d.ts","../node_modules/webdriverio/build/utils/interception/types.d.ts","../node_modules/urlpattern-polyfill/dist/types.d.ts","../node_modules/urlpattern-polyfill/dist/index.d.ts","../node_modules/webdriverio/build/utils/interception/index.d.ts","../node_modules/webdriverio/build/commands/browser/mock.d.ts","../node_modules/webdriverio/build/commands/browser/mockClearAll.d.ts","../node_modules/webdriverio/build/commands/browser/mockRestoreAll.d.ts","../node_modules/webdriverio/build/commands/browser/newWindow.d.ts","../node_modules/webdriverio/build/commands/browser/pause.d.ts","../node_modules/webdriverio/build/commands/browser/react$$.d.ts","../node_modules/webdriverio/build/commands/browser/react$.d.ts","../node_modules/webdriverio/build/commands/browser/reloadSession.d.ts","../node_modules/webdriverio/build/commands/browser/restore.d.ts","../node_modules/webdriverio/build/commands/browser/savePDF.d.ts","../node_modules/webdriverio/build/commands/browser/saveRecordingScreen.d.ts","../node_modules/webdriverio/build/commands/browser/saveScreenshot.d.ts","../node_modules/webdriverio/build/commands/browser/scroll.d.ts","../node_modules/webdriverio/build/commands/browser/setCookies.d.ts","../node_modules/webdriverio/build/commands/browser/setTimeout.d.ts","../node_modules/webdriverio/build/commands/browser/setViewport.d.ts","../node_modules/webdriverio/build/commands/browser/setWindowSize.d.ts","../node_modules/webdriverio/build/commands/browser/switchWindow.d.ts","../node_modules/webdriverio/build/commands/browser/throttle.d.ts","../node_modules/webdriverio/build/commands/browser/throttleCPU.d.ts","../node_modules/webdriverio/build/commands/browser/throttleNetwork.d.ts","../node_modules/webdriverio/build/commands/browser/touchAction.d.ts","../node_modules/webdriverio/build/commands/browser/uploadFile.d.ts","../node_modules/webdriverio/build/commands/browser/url.d.ts","../node_modules/webdriverio/build/commands/browser/waitUntil.d.ts","../node_modules/webdriverio/build/commands/browser.d.ts","../node_modules/webdriverio/build/commands/element/$$.d.ts","../node_modules/webdriverio/build/commands/element/$.d.ts","../node_modules/webdriverio/build/commands/element/addValue.d.ts","../node_modules/webdriverio/build/commands/element/clearValue.d.ts","../node_modules/webdriverio/build/commands/element/click.d.ts","../node_modules/webdriverio/build/commands/element/custom$$.d.ts","../node_modules/webdriverio/build/commands/element/custom$.d.ts","../node_modules/webdriverio/build/commands/element/doubleClick.d.ts","../node_modules/webdriverio/build/commands/element/dragAndDrop.d.ts","../node_modules/webdriverio/build/commands/element/execute.d.ts","../node_modules/webdriverio/build/commands/element/executeAsync.d.ts","../node_modules/webdriverio/build/commands/element/getAttribute.d.ts","../node_modules/webdriverio/build/commands/element/getCSSProperty.d.ts","../node_modules/webdriverio/build/commands/element/getComputedRole.d.ts","../node_modules/webdriverio/build/commands/element/getComputedLabel.d.ts","../node_modules/webdriverio/build/commands/element/getElement.d.ts","../node_modules/webdriverio/build/commands/element/getHTML.d.ts","../node_modules/webdriverio/build/commands/element/getLocation.d.ts","../node_modules/webdriverio/build/commands/element/getProperty.d.ts","../node_modules/webdriverio/build/commands/element/getSize.d.ts","../node_modules/webdriverio/build/commands/element/getTagName.d.ts","../node_modules/webdriverio/build/commands/element/getText.d.ts","../node_modules/webdriverio/build/commands/element/getValue.d.ts","../node_modules/webdriverio/build/commands/element/isClickable.d.ts","../node_modules/webdriverio/build/commands/element/isDisplayed.d.ts","../node_modules/webdriverio/build/commands/element/isEnabled.d.ts","../node_modules/webdriverio/build/commands/element/isEqual.d.ts","../node_modules/webdriverio/build/commands/element/isExisting.d.ts","../node_modules/webdriverio/build/commands/element/isFocused.d.ts","../node_modules/webdriverio/build/commands/element/isSelected.d.ts","../node_modules/webdriverio/build/commands/element/isStable.d.ts","../node_modules/webdriverio/build/commands/element/moveTo.d.ts","../node_modules/webdriverio/build/commands/element/nextElement.d.ts","../node_modules/webdriverio/build/commands/element/parentElement.d.ts","../node_modules/webdriverio/build/commands/element/previousElement.d.ts","../node_modules/webdriverio/build/commands/element/react$$.d.ts","../node_modules/webdriverio/build/commands/element/react$.d.ts","../node_modules/webdriverio/build/commands/element/saveScreenshot.d.ts","../node_modules/webdriverio/build/commands/element/scrollIntoView.d.ts","../node_modules/webdriverio/build/commands/element/selectByAttribute.d.ts","../node_modules/webdriverio/build/commands/element/selectByIndex.d.ts","../node_modules/webdriverio/build/commands/element/selectByVisibleText.d.ts","../node_modules/webdriverio/build/commands/element/setValue.d.ts","../node_modules/webdriverio/build/commands/element/shadow$$.d.ts","../node_modules/webdriverio/build/commands/element/shadow$.d.ts","../node_modules/webdriverio/build/commands/element/touchAction.d.ts","../node_modules/webdriverio/build/commands/element/waitForClickable.d.ts","../node_modules/webdriverio/build/commands/element/waitForDisplayed.d.ts","../node_modules/webdriverio/build/commands/element/waitForEnabled.d.ts","../node_modules/webdriverio/build/commands/element/waitForExist.d.ts","../node_modules/webdriverio/build/commands/element/waitForStable.d.ts","../node_modules/webdriverio/build/commands/element/waitUntil.d.ts","../node_modules/webdriverio/build/commands/element.d.ts","../node_modules/webdriverio/build/types.d.ts","../node_modules/webdriverio/build/index.d.ts","../src/components/__tests__/ProseMirror.domchange.test.tsx","../src/components/__tests__/ProseMirror.draw-decoration.test.tsx","../src/components/__tests__/ProseMirror.draw.test.tsx","../src/components/__tests__/ProseMirror.node-view.test.tsx","../src/components/__tests__/ProseMirror.selection.test.tsx","../src/components/__tests__/ProseMirror.test.tsx","../src/contexts/__tests__/DeferredLayoutEffects.test.tsx","../src/hooks/__tests__/useEditorViewLayoutEffect.test.tsx","../src/plugins/componentEventListenersPlugin.ts","../src/plugins/__tests__/reactKeys.test.ts","../src/testing/setupProseMirrorView.ts","../node_modules/@vitest/pretty-format/dist/index.d.ts","../node_modules/@vitest/snapshot/dist/environment-Ddx0EDtY.d.ts","../node_modules/@vitest/snapshot/dist/index-Y6kQUiCB.d.ts","../node_modules/@vitest/snapshot/dist/index.d.ts","../node_modules/expect-webdriverio/types/expect-webdriverio.d.ts","../node_modules/expect-webdriverio/types/standalone.d.ts","../node_modules/@wdio/globals/types.d.ts","../node_modules/@types/mocha/index.d.ts","../node_modules/@wdio/mocha-framework/build/types.d.ts","../node_modules/@wdio/mocha-framework/build/index.d.ts","../node_modules/@types/jest/node_modules/jest-diff/build/cleanupSemantic.d.ts","../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../node_modules/@types/jest/node_modules/jest-diff/build/types.d.ts","../node_modules/@types/jest/node_modules/jest-diff/build/diffLines.d.ts","../node_modules/@types/jest/node_modules/jest-diff/build/printDiffs.d.ts","../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts","../node_modules/@types/jest/node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},{"version":"5b5c3e9bcbdad9256a14bd8f74844449cba0bf947f46f6d829c86e049f0a2052","signature":"aebbc63575486ad034a7c43fae3d5a2668cc3593c8934e0a0d6a9e72d0500be8"},{"version":"af48c893c768f3209eaa2d72a9dcad8fa76e08dfa096946e945c391e47cbb3b7","signature":"2751c3a8dfaaf555fb19127ae178d221bb67bdf93bf36e060e95d52dd7e83698"},{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"1c29793071152b207c01ea1954e343be9a44d85234447b2b236acae9e709a383","6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"7fb6faf1006c3503d44e4922c8c65772ddc98e92bad7c2ae2d5db123f3e297b3","affectsGlobalScope":true},{"version":"0824e6d6054b9f2acc195686e795bfbbb9e36e00c2c7c73b51de3076e35f512f","signature":"c62bda58b1b8aefb2ca3aa89551ad00188504316db56927defc3087fa32d52f2"},"3c616cbdf6f11c71a1cadba225121b0733b1c3da2a4855d7247a22bc64ee28cd","5d397401fd58e55fa1a75cf509591e160bd4a3b58a891f6866002951a340791e","1ef7565ffec4456d8a50e72f1cc254f46f2d35e0f34692f9096b11266fdfc6b9","e29c3246bccba476f4285c89ea0c026b6bfdf9e3d15b6edf2d50e7ea1a59ecfb","1ef7565ffec4456d8a50e72f1cc254f46f2d35e0f34692f9096b11266fdfc6b9",{"version":"6c13e210da67cb606e600fc90d5c702bcd62adb2e91f32c4e2673cd84d48855b","affectsGlobalScope":true},{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},{"version":"d11a5d3967290ea6be7e6d7667c4673a7626cfaa32cfc68101000d2b218606ab","affectsGlobalScope":true},"e4dd91dd4789a109aab51d8a0569a282369fcda9ba6f2b2297bc61bacfb1a042",{"version":"2b5e29f922cdecb2d320130d7d4d593f5e95ada764ec2c4d23dd5f59a6179af9","signature":"b3dc9f1efc355e2871fad138ba7368337463b23c7f497534beb03056e4af4b32"},{"version":"f9e44c6491db67282e4238120ce0e9353023536ac37096031adb7c74951f8943","signature":"6b5014a8a48fd1652355e234fff8123c2801a3efd751cb988d7bfa44e0c86711"},{"version":"b212f0238994bdd57de7a425006b0df90aa722d4b02710042fa9a1d23bec4af8","signature":"b44bb8a9294a2f46998581bb765b4eab9cb0b6a658a8ca8437ccbe71503d111c"},{"version":"d2a6a41df7a4ceb038f5c9ba76fe54d7b7553462a9aa8aecd4d45f152e79548b","signature":"83b2cca43af0e12bc72bc65b5288e554b502b92cf496581a299983f550e70d6d"},{"version":"9ed6c2ec2109c03351224547936c83bf265c6b5c268570f115f1dbe061631ccd","signature":"ad4fec76299a49e89432ab06de31eae7a2e71d62518273efdecb8fc2e968240a"},{"version":"ca61d0ae658693bf65c825554648a12adab47e16941cfdc5a162e499ad2d1355","signature":"f671df38e8ccc0826e2bac98a22076f14689293d7bca4fbc6f06a94c91585497"},"b05d32c486bb23840ec5623f9604e7cb1a97be6fe512f33fce8561c20e1c68c0",{"version":"50dea74987fa6c6b20a5f9f5fd1f8036063fda0a9bde8bbc0da978de0371fef2","signature":"1e9bad8619d085f60c6c836bfcce4d0ca002030dad769d7844a2dac0cec57336"},{"version":"9e664ef9f93adfbd1d5d585136b5240fe251bcee6576287b23c4b5869fbd022b","signature":"fe2612a0281d70e958c5522f0d15756c1c345f6c90d008781ceac5708f9fd3fd"},{"version":"060a724a40aaa56ea3a81ee5035902b549701852d6ca69e47c7fea728d50bf68","signature":"8dd028de430fa7b2c35b74b5b5c24d43b09542fce7fe4e461b291222cdc46171"},{"version":"e153aeef56452e25612ff905212269c51ef2ebd57e621eee2ea11c82d5abc1b0","signature":"d08086b1742b7b2bf5dfb5c2ac7cefbc89ea117a336f23f260cb0024c823d31a"},{"version":"b3fd0429a9407b8f8671c171dac7e700afd1c4aecb968373c06bd5b3a8fcdf35","signature":"01c1afb666ad23e839d19d712c451ecd053bee665a96bb352bb78df49884149a"},{"version":"47e7a21a1ab6f5453f0f400a94984b0f2eae0c967fb1970febe46b41b0eaae48","signature":"4de268d814cdf44767d1e48058071a2fbe94c2849a4f5746520a8e9eb98fbee5"},{"version":"ba080ea03f9691efdb0eeb58520e619ff0bb292287277e0b7fe338344af50fbd","signature":"4e94f55183fa720ca5616b7d67c84b54d0ee9f712dd9d9520beae30bd97c12fa"},{"version":"782b111cb2bc62a0f7f42f15773621ac731e4781cfd272010d57608b33dc2bd4","signature":"892d7aa74fbdea8ca3fb795575165f6b10347d1b99ae752ae85a16a5adbde957"},{"version":"285ced29c9ea33c1fa938c9326345e88f17cae4d3bef4fe3a281bf42d9e0280b","signature":"172d66a7e47b56fbeaea7503b6997a7336c6dcb7e2882306f0c4f07f83d84b67"},{"version":"dc73c97b117e5d1e8b2f054c718ca1176692b5b9d02d97fa20c63565e1abcc41","signature":"795057e39cf21e76c5e393ca04d6457002c3f6250588682d48c5404b24454c7f"},{"version":"39354abee942c5dcdd5f3454021e21ce871916ea17b426d3b6d557673fe4f5e8","signature":"d03764288f8f0f1ab2c1a3673444c1ebb16c4a2cd2870b648ae16b23ba7cc6a3"},{"version":"85ead12d3a84427868cedd8283c7f19a892efc18f52872dd550cc4b59e00c340","signature":"83078aca6f4e00a583d9f1b0f210e77ae151908164b929942ffc2d9877d91622"},{"version":"1773f1d96f1dce24a61f891e040547c331597aa8c0ac817d4ba1a5695cdbca7d","signature":"58528afde29d23c1685bd6695842bd1e3cfa21ec865b0b6eef38967194db928f"},{"version":"c4ee03e8fedd9f625bf8a76f2c87f96f3032b23ea1e19ea38e5a0e9130618562","signature":"09c638c6fac47feef64c18f572c4adbd117a7ff7e11af272b5752ec2dfdfe53f"},{"version":"002536ecc1d4c8e1812111c8c2a477543d7d6bcbbe4b2be2b930f6c6be7947ef","signature":"2143bcca33532154509650778ad1cdd203c7bbde83c3e7672fce28536ed929f4"},{"version":"e0e2248e656976666e2ffe5272d68b51670b8e4f87a8a9d2566d2b4e7ef79d05","signature":"2c75f4e38fbceeda74934cd4eeceaa605744c12cc038cef1c95028ec682f17ef"},{"version":"0c500066aed34aff5f2da1377a965cd284e957fc0d3ef33f7a334905261dedfb","signature":"0df19e52e95e0937f7ea426375695c504d8e36a6801606370ad45ab91085dd5a"},{"version":"4b8266da546b01e93045053b24c97ca2428c662bcb949b9f624bd5f7d26a141b","signature":"842cf9d01140ef2336d7de002ac27430b1ec1d3c1c9436779018ef076b29e86f"},{"version":"31d062dbd297cd09158715b99ad5accbc0f51a4fc9482a58b4cf0a9c85d4614e","signature":"d58f6e441744852cafb67094b531599849187ed18fe2afebc31f57d568275caa"},{"version":"16d3c035551c079627dab9936ab3288836c7bf90521470781d0e4efc7b2bd783","signature":"98d4f33416a8d6bf99625b7a20861e2b4b51edec97b4a95ba094b90309342c7c"},{"version":"7c24628919ba03f839832f603e496c351db9f304628a0c1259c744bdcc345829","signature":"60ddf25ad3e766a1ac14fc6cb1929515e3ba5b2a0b4d8fa3a896d31df1f5e755"},{"version":"89d288533f67fb6ca3c3205b560857a1434cbe46268ba883d028f2e6af3d6b69","signature":"4b3fd343fda39c552d8eafbc177b656b3e9858c666650d0b0ea4f00bc05742d9"},{"version":"7f886f2814d01f4893a08842acdd777c95762ba15f9add632a20bae8edc7b738","signature":"a4758a0ec41a0622e000a221ea155d0b828982e3775ff973ab7c50fd4c2c8d9c"},{"version":"417008fe97aadd6ecca73ba7c54b2de4022cdcd8baf64f530086e3c2744186ae","signature":"80a1748b01a95df654272e3068e37836032ed348f16bbdb14cbaafa024431fa4"},{"version":"676ba1ac83311f91ae05d5ef0a783ca50fa3a9291559873995a26f52fb79bd76","signature":"cdfba960793689c099c32e06a5926d4778b012403128db36ca50a48c39615ad0"},"2bcb1acd536e696b5e4405ab92e847eb7b7eaa121c8e80c96394c130f141919f","a45866275c5505fe10b7cf3541cff75bc7df47ef1d8126d1f071682a770a2856",{"version":"fa36c9e605ebcdc54c7b906ff408c151853518b249804bab790882b171a736ad","signature":"163ff71678629a16c8c96bdaf1856dd26aa2f52e78c1577bfb44200aa7223bfe"},{"version":"7f737f7b958385c8ad3e6067d74d168327c3da4b780acdc71d02efb197a89405","signature":"cc755e0048a57667baf31a119d8c9fd427a1d82abd31b90aafaabdb18f912cd5"},{"version":"2fb5d88d4b207b88220c163e6467e59d43a14cc1a2d84973ee97ccdc26f2053e","signature":"68dd3503c1f29a0548b3c9876b82fb0525487f52caf2ba37767a8b2865197e58"},{"version":"e835930ce653b4c57b136e4583bdd294a4165834f1669626a68a51200e00b168","signature":"89d6765b9d573bcff261e277f461f49584d63e7a9d653c63b9f1bf5012c909bf"},{"version":"4e571141418b4a720e2d9e7c4001c35487d6a348c59e3425990a391781b04ca9","signature":"f18f755e57f25bcb20131873db4c9cc10ffc6c7a5268779b79fa882a2b2a494a"},{"version":"3d67cb1f148a54d26e11deba8559450e33428a107471340f5a0918393ae1c962","signature":"2d05dc67a943dca1db06e423a16b6520b7d6cf4721932880de6484cd25c397db"},{"version":"041d830ffb8c85e45b9813cf4af0d110a0e2088c8b83331a98670badc9f2619c","signature":"73175b5d95d7ebf8443974acc8c83af52e02a11349260a89b32f12d50f19efc3"},{"version":"aaf4a4e1c4954fbb051d413a29348be526931f2b3f12876d159831cccc992e75","signature":"ef30aa54204fb5af30e1bffb46d00b3c958b60e835743a5d1960459e30c18ce6"},{"version":"b6a3778c3bd4622e3b872ff419da9c7d6320600c3e602e600a9832ff8a727772","signature":"5d3b66dc001352732caf728ac1f720cc69c929fd92a57062a66d07ad53d9521e"},{"version":"4272828ed26ad27c370437f70b0f53512284a3224d7c5c02537211f5f9d3bcd9","signature":"2c1b5f292f1550d287b640722132b8d26604fc2b691375aaa60aded6b572862b"},{"version":"56ed00c3795af52a5d8a55267eae5ee9e96794abefd8a8ddaadf309c89d5d8a6","signature":"f04980e8cac976e04fd0f2f29e5eccba5c12f490c006bd7b9cb24c831a6c0631"},{"version":"8941032a7f0d1725a2282a1d2bcf4d0b5bb845b48d67a05a8fce095ddd0ea81c","signature":"e0dddccdae3a53e537174aeabff85042a53c1f97e2ae230a71bed373a5235447"},{"version":"08b6c83a7e1c070d2afb9ebed01083ad216a140e670a253de978c634b0cb0e5a","signature":"2509ee619f10dee9c5154aefbc3ef4b7ab58a6e840170dab120b66f395f44e99"},{"version":"8985dd0981fc2942c2c2ed923932a59278d4114ef8f837cbda0d61d9b484a292","signature":"d559b5f087996e5bb69710d07c61ad03646fd8ed5ca6caf5ec401f5332614bf5"},{"version":"6771a069d28fe56c44165674a67fbe1c727195faa49298924ef10f27527b7a93","signature":"9d03270300fd5bebef3a83b29ec154b975295be1a4db0163e637c313ca904493"},{"version":"827da338f3d1a48d7bf7a8e8e383a84ebff3ae3818f530cf7379eed9e48d912e","signature":"73eb92b801117259b9f276ba9ff83522a84ccbe64f5bd826ced928c4c9816dde"},{"version":"fe6286033739a7d90a08c3dc468e4e6801c12c130ecc908921a2965acf25d845","signature":"c23803dfca8d4f541ade54c535a4604142c99a68027e21c27ec47c16cfb2ad3c"},{"version":"ca82ab2dd22a6fc83ce078366c987e56728a45992fad8c9b9f7ac4ad9c29adee","signature":"6f92b5ac2f6eaa636e3762e1bf8ac4c47720bc5f167bb633dfc2722adfda9d64"},{"version":"c3ae360f8365e54857b2cada2a83b4179531168cced0ff4e5c5661cb1ef5ea2b","signature":"26ad24babf2028fe663038de50853e71531972269fdf064e2179a60b54514309"},{"version":"0df562dade657358145dc196e5daf0525b4ba65f09d5cb25a768901f70968994","signature":"9723bfb94a587848bc60688b0d27eca5c9f9821e39c0e1e4add387935d1d3404"},{"version":"76efe933aa846d7854207e79390d5d7fce7bbc1f784a7eeca954707b69e8cf0b","signature":"3aa1e62307fdcfd8918596172c7f7b6b532743b6cff15f3c920c0ea84f24e759"},{"version":"c24350ced31c457b4f80e49f6649425515a65fcb8d78d58bfd09b5ec2c8cb394","signature":"548e3ac785541b27e0eb1daa941c1510f61ae9db077a5b48b887ab0e804d93f8"},{"version":"da97e4870bac9e83e936b0043cdc3c7f042bc1db189842e00887bf362e86a891","signature":"b1d46e2a56509afbbc354a1a226dc833c4ed3fc7d21bf530f40663cfa57a2c6a"},{"version":"61661fa16db70e44a64052c2617ad23891b7375b81eae845bcaa878987eb5238","signature":"8fbe162e2d41fc2874ba317765d416522eb6fae9f2fb1319b9764cbd9bdc5eb9"},{"version":"ab42cb2df388681dc04ccd072822dd18abd2f6cc0060ec0f66e4ff67aa136beb","signature":"ceecb14840e3f179f84a961c9e840569fab394afb845bc8727cbb8111aa2d4b3"},{"version":"6ee094817e7b2675b430351eefc3624d15b889d5ec7f2e4bf82964a83f34023c","signature":"59892dbc59a9f835886cebb5b9865a1eac626b6a31c59c14bcc5fcfb33040a37"},{"version":"75de424bb187bf5afdc6a671a70bc96e8d732b11d8ea3fbfe0b337da7776fa2d","signature":"18a65d43a38717d68d79d6b90c16148e5b2b5e8ddf50278e84098d1cc7466e2b"},"18d1bd2540f1feea5c97f9078da29aa96fd080b141272ecce0d091aae3d373e5","83e27bbd7304ea67f9afa1535f1d4fdb15866089f0d893c784cbb5b1c6fb3386","21522c0f405e58c8dd89cd97eb3d1aa9865ba017fde102d01f86ab50b44e5610","3cfb7c0c642b19fb75132154040bb7cd840f0002f9955b14154e69611b9b3f81","8387ec1601cf6b8948672537cf8d430431ba0d87b1f9537b4597c1ab8d3ade5b","d16f1c460b1ca9158e030fdf3641e1de11135e0c7169d3e8cf17cc4cc35d5e64","a934063af84f8117b8ce51851c1af2b76efe960aa4c7b48d0343a1b15c01aedf","e3c5ad476eb2fca8505aee5bdfdf9bf11760df5d0f9545db23f12a5c4d72a718","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","d0570ce419fb38287e7b39c910b468becb5b2278cf33b1000a3d3e82a46ecae2","3aca7f4260dad9dcc0a0333654cb3cde6664d34a553ec06c953bce11151764d7","a0a6f0095f25f08a7129bc4d7cb8438039ec422dc341218d274e1e5131115988","b58f396fe4cfe5a0e4d594996bc8c1bfe25496fbc66cf169d41ac3c139418c77","45785e608b3d380c79e21957a6d1467e1206ac0281644e43e8ed6498808ace72","bece27602416508ba946868ad34d09997911016dbd6893fb884633017f74e2c5","2a90177ebaef25de89351de964c2c601ab54d6e3a157cba60d9cd3eaf5a5ee1a","82200e963d3c767976a5a9f41ecf8c65eca14a6b33dcbe00214fcbe959698c46","b4966c503c08bbd9e834037a8ab60e5f53c5fd1092e8873c4a1c344806acdab2","d1c08287c9c6a9c60c53142c122e9c1909f5a159301b9b06b0eaf12ab547920b","2a440f32bf83a8ef4bac939a6a3b8b59e8b14a060032444c9bb3ba7605a4c403","cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec",{"version":"0a91552c60552ca235929b4b61f0b9121a28179f9271e3cfed66f2c67bc76dcd","signature":"e1bb82b694aed888d65fe15910b80c0b0d4a90f25d07c5c0b5b2844529bf0972"},{"version":"607cabb4db3766d5474d07afafc2e65e9cce134c29617bfb195738ec951177c2","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"736c14342c95cdf46bec3c40322a160d7f0bceba7a7eb1a32f5a5934ad9439c3","deab484053e0ffc3e81f612f28291d054f26db2a44e9e83ba2d37755f789b232","2ffd5793d20504e56283413ca9eb9b0e8d871c57c5cb39e5e0df4d685a14317b","88912298e9014ddc36061054b0a14076a02aa576072ec1626f60e0f6bac9116f","29ff006e9162a63aafca305a6d26ed01ee3148f6c704918fd8dfaa1a2406da29","ada1b7cb7b88c059ac5818af61c7da17c1c699def51afa4d597c121552e34211",{"version":"a2f274e1d29e4c0b66637fe965e30745ede683b4643a24b82a59d734eae399fb","affectsGlobalScope":true},"63daeca7642998df05f51ac891557e11323f273085258d1c866acb7bbc6b17c1",{"version":"4a04f8d2eaa94917389d4763c64731a485f6054bd578cf21a60a4a4cc246145e","affectsGlobalScope":true},"8f66b6c9aed8958a562a913aa37f1c4c4feab5bd8d4bf693b909d6f598dfff03","584d6d9e44560dd474d1da093e81f87295456c7db0acb4a5021056af1318b213","055658d153e441e8e1c32ad4f9163d4cd0db9050ced4081dccd3af22a7356e53","6495b2dff79813b07677f30da318bc9d7e567983d5662725ca08857f5912829f","99e43dd48dbe17d3ea455ee5b9b61c04133156ce8564fc5f7c13264e621251fe","da780b391d2bffaa7b40cff38ee5815dec7ef4604fa43c782191cc33bc32ffff","8fcdc1b508dce5264483bd3664112e353bc7ce8d0c5b7b48fb099dabab3cea9c","adb3a40db2048227ee4ebe4ea66da876542f2e3bdac5353582600e20ba93125f","d27cf84de2c103c8cff521c139cc6edd946182bffbc47d21d95a0ee9d3baa6d8","c889aac0319d4f720f0f2422342a6c7e41fc53aa66830d49cc7340f8c5979594","7cd4800e0e14d4863f157b7c58689f30fd176afb3ee4d71d0c115fe8dba320f0","537d0632e5a963e5592c7782542bfd8e9eb46e7764b7b8e98a62ed9bb0db7eb8","a9a3ef276dafbee91e79da7c773f58ff38bb6334b765fa0957145f05d243dd7e","e093e246587c564e58a709a4218b91216832cbb73ab84ccf7f53093da8958a7d","b1eb2133c35da51a65acd4113f768e8c7f449303cdd8dab0b0ffca454acfeaf2","37660d7ca9a44aae06920704fb48dbda2cf27fbea47fcbc63b014024e2d89a9b","61d4877dd902176fa85d87da19b561fd21f1caa9ea1c311600cf89222ecc2c57","8cb39f70ec69a01a60479dbc16842e707fcc4804bd5f90c79e370ce2781571ee","854a9b46a5f263bb77392578ded028ef0476cd79363bdc2e311656add637a9f0","e3e93bfa9b97d15bc0bcf68ae28c5d738bec491fa124c0fc5df7a3603d394c3f","7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"bb65c6267c5d6676be61acbf6604cf0a4555ac4b505df58ac15c831fcbff4e3e","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","dab86d9604fe40854ef3c0a6f9e8948873dc3509213418e5e457f410fd11200f","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"d076fede3cb042e7b13fc29442aaa03a57806bc51e2b26a67a01fbc66a7c0c12","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","223c37f62ce09a3d99e77498acdee7b2705a4ae14552fbdb4093600cd9164f3f",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"4c50342e1b65d3bee2ed4ab18f84842d5724ad11083bd666d8705dc7a6079d80","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"8dbe725f8d237e70310977afcfa011629804d101ebaa0266cafda6b61ad72236","9a2eaab4e54953c6b2ba21f7ac4c2593859da03917011c10a2acd8864e38e7b2","9076b1bdb9973b32aeba348ccd76ca33e2a55b5dd1b60168879e134fbf7ae4d0","3d9235d46b7be56163dc2a30ed53fed476d6734df973b8250c25b844ed0f6869","ad55743b325a084f366043b636de98563811d40edfbf6a0c04f4e0e3bd48d6df","027420c0b6ef9f2dce7e15401eb7df19db6a364a45af000942dee84e95116d6d","8e06d1b753b7b76bfa99e9db95ff93db8132d88742f9c58db1407f591d496703","1843c781e7d4eb2ba2421f93ced2251a1ad2ec1252c4529be7fd3219c477e284","a5e048c705437fea926307bb370661502ae1813f9dff9efa6858a87575aac8d0","61e8d97d995fc12d08b0db14799e91c0a849da510a3f488bbf2ab4ec463ee08e","1fb26be9109c83d34ea36c5acfd376012b0348842f201d5c32b53be4e3f1ef39","2212ea1fc1af917bbc8c7fe6963ce2fb5b54c3ad7df6cd6d5cacf70489ef8b1d","551d6ea124a8ce4a11b8c619363ed8d9db1dee681cb6f0853c66b56d3f98f6e1","3a074d4e6fd4cae678d749dad7a0242fa1bbdaaa7287f27a7506d20723aaa8d1","cc55be68e82167f4103dd4f42849327495793a8775b727c925ee9943d1087c08","3d40f5b15a927f911c1919ed8396f19e431f36412ba38b4af4dcd8abb69439a9","2098691825f5a139440990b374632ab5d5e4df0b06f7a38e6bc62af8afb4f6f0","478c8e7d8206bdf5392f3d459ca95af1b2b0648d61bbb37cb03b77ef8d1bbf3c","2c4f3dc8ac4e5e1d064ac0492dcef017de6207c39ed3cbe49103319d4c87b92b","ee945dca25076506bc4759830980719893a46e9d13aa6b4d44a2f5211e4321b1","aeddcad4a86c626f6ea06a0eb0b2c5b2c5cdba9180e23aae4f701f07b3ad96d5","3ca3f546f0bae658a7ecec0d228161284e207a0dbe2fcb33b67448e97bd7aa71","75586523002e24122788900b04255268ad1eed9bd3e4d97175a88076213ec835","f5b6ddf9710f3d99ab87075aa2d4ae08a86dd50d3f8aa38729a56976a7a78e3c","64f76320a3f54460bd7365f6d72080b398a74a469fde8907d1a3256b3eb35316","91c456b34eb50cdfb74a49776dc2221575b6eecc692265458f3fa638beffd3bc","cab1efe27467e8186479c7ebdb189f198b372394eaa8a827af4b773502d73408","7d2a0ba1297be385a89b5515b88cd31b4a1eeef5236f710166dc1b36b1741e1b",{"version":"20f895cbad339ce2a4cadad33443a6a77e1e82f50a7dffa0c8146f130b8e0c18","affectsGlobalScope":true},"a9fe3e46584350db7e958217addbfee684d99b144afa977d7815c3f0ed31d06e","1cc9877c91ddf56672ca1913afa1249a7bca193dc28b1abc1c499b1f8fcb0269","fb209266413113ffdada072e40c1476466f19e28b81dc46235944b9b2246e0f0","b28ca76a1d7c28bf8cc74145963a5e729213b44d30073567ff8a2a72dc5a911e","091f2e62d3933d5a1ca1978f94ce9f77dd2bd597a252a7c24ac0202144fb0cbe","f16409db6af984258ec916eca20eb67c55c1a66a0a16d3024ce29e2361b6885d","2e2d70810b96fc1b6bc93419458e8b613b2c742d99a222b92ec72de91bb643c3","94fd071c8b6dc94c5acd45ad1520147963792339b0f2a5241dbbd27486a91274","33dc8a7a2cb9b0d7a7424206d7e449c33a10941462e27fbe21c61526c021618c","6f86608fc7780f98895bb87ced7248a78d6564c507543580ac28312fb398d3b7",{"version":"08285e19d4027575064de0b9158afb91b457808e2f158ddd48f92018ea1ddb2e","affectsGlobalScope":true},"02050fd18f29365b2b11936af46de1d3659d39e6bac1c462f8c605a6d075e244","fb3feb0d05a342d3e56846b432c06bd8a315536ef21ee2fa26073db89db2281a","971fc1b434c33c0462ff6b6e0c7755a3fa60310cfe3015369c7f3b5cb150e4ac","03e72d13ef295bc46632b3057e065427fc6284392cdb46d4911112c095899913","a23a2df8704b33829f18d8a203959dc8b6425d13bea9f26c492a11c0869c1f2c","04d1d25b589fb6038eec3457761f8a54d183fb8936bdc30a412cf58e350a6898","1cd1d23361f852c0d55bc83fb91e891bb5781b2f7861441edd148d5e48065112","8f8df5e2dd49215a98017778de466eb879dfcc14853566efe60384fbec22a3be","5e788d1a14a9d5746affbca5fab6fa24239b775912ac8250940180e984f131d8","4ce46463b2009136a9ae86f428ffa75714d2d22d5b77569e35a3cd63c313b2cd","b6d2ddbb8240a795cd3593a06c762cea36dd91760b5b4a0be653c321d64d26e5","d3f9b1fca0388f5fc6323921b4537bc6663669c336199498b1b0bcd9c1795565","22a72f2282b69ef00bc7d6d755af01f04827e702da836983ab58b01078350878","b1ed006070e75bcd8000628405c24e4c22a90efa569720a250e106ac801cb675","c2dc385ed08b401d862fbe0a74975441d2fdb0944696d33c4ccf0b95dedb0fb0","ebbced2909f510df415bb5521f87262856d31c92cceba6d75adaa3c32e46a3cc","7c89007a3368f659d735304f7063d99372a34189d665bc5c19ea269209f60f2c","63819ae69945a979d4de73c85c655c1ee6fd771ac1be474d80d08a4a049e1c20","cf23e6ab563055cf4bb4ecf2336795b9627bf1cf90b3b527421e82862c0d4337","780f8ec3f1267ac08d8aaca0f36f97008948473499dd5a14df024c84008c44a2","eb5afe3d04295bc4ce6f2a3c6f63301a8ee21c8fd80f957b5eaafeaa03577577","ce61014a8b6496be8965bfdd371aee34ca6b1e45f9c34a743015049ce4728ce2","c1f263481be7a415e5e46ed5811795799b7c4201e835f2895477a1191d9add2c","a385060cd665bad7dd16cfd035f27a923723b345b57087de3d80664e9bdc5919","f93f8a5655444dbf4bb32b252b6594be4701a38d23b9ba3d5214a02c15df181b","dedd0f2e91f2dd25aafef5c75fd270a3bb8f6546d6877c9609957730fc262394","a47675b315365616bff3d2e3ad4d5eb4f45941aafed015ee10acbd37037f1ba0","aafeda6b6cd763afbfdf051700853091e276a71b9ac9f4ece448570f38e14015","7ccb53d9c8c6cb660fc24eef6629bf86b9f360f7b5933b123ff985fba25b6339","5213f16f0b65ecc2993d3ed483507c589d69bf727f22cd5d12d0e47d68b9e56a","63590056e51c8e24a7394c86324eec939dd895a8662ecbab24954d5471924da6","86e6b18f53b22391ebb1c86297f461478b570493bf973975b7295b8f7a684310","5de47e429ed189b068d204cb96be99b59c3f17d16a6e198496305a71f105c077","06c690a59357b39b6e22b6436321b9aea57d18f6979b732414aab4c7f7ecb918","5add7978d40f4be1ece62ebd32e4cf799687d8eb200c76ca4e1cf1847d82db97","5788d3cfeac5e77c3162bdae82b21f9d6dbce860dfcacf8ea85366195873b8cf","42e62b272597eaa3b7b7822c4c4ab96fb9897f16dcd0fdab846bd20812be7366","e0c3c1be52a3f99d053b0ec4661fb6df372cbfcfeff1628a6d95f2281ecd0f4d","f0b15b0a6132c40c951b2b91926b393a6477bc0836b439699e04a8131418c488","8be35ecef5d47b31f8c1de92ffe3cc5cd4d02f65ba6ad0d376352f589119a403","de39920c0772fb9805aa4739550f4b81b0b5efc86db81cbd9171a51d9348f46e","e5e34dac998589bd210f9e20704ded4b9b5e5f082ea36feb33d9cabd0adb5b2a","84c1be5aa9f5b821b955ab6b370522d023f82ef8ad11f0cc58f54d24fcdcaed0","2c138146755c5890ae2209bf9cf950be9d40288b5eb9d36a7c81b524be8aa5a6","89ba4fcac6e8a026bc77d11affa96378eda1f3fd99a7117de6bc34483019444b","00b194b550eb6c9d0b1a28362e0fea439db0d1a0e82c695a4aca63f01568d7f2","8a135c6d6ae079937afbc51048f0a268f0637c2776f6dd2219382d140ccf2fd2","ba875e33c11816dce55040d05b86580f6b58b00cca6f4c41282deef16a55e005","3c90bdf3685eb6725c6a6f7ea47af4bb41e7f7056462f29e4465fd8711f1826d","37b83c56f1027e58521409107bd3e0b6fa9790cbf7d5391a40c230a77a77fc7f","a50cb11f885b9b9c46db7014308f0c2cbd489061de58490d821eb00801b2117f","666db7ccd9500a4a6b845cfa30d63801a5ca37fc502a9e85b7f224381bfdfdb5","f8e75a851f779d87ae96ebac89409925df7bbaf1aa3bd3f56258b98a2c8f0af8","736a3775067c232b24446c86cf25ae3b248e10309d66fbb2e19afaa8ba785bfe","d416b77ec4d0f8cbfd517d8a59ca136bc57735450271a23c14a38a8f9db721a2","f4c9cfa0db2efeac963f5330207272d1aba30ed6a751ce80d0219507c9779749","87072f1e3a57191545e94311d5b5f3f743bd76de41e79e8ae17e0b2214f16243","812754b148ba99a547ee11145b68c35052cc9d5ca827288719d6fb57f009b8aa","89f4c4dd4fd3a1e3c0f77beac796aed80bb9718a9ae25263c7661f21a7311723","6d8ac440eb0bbf214fd29c3a48850e57e63c1cbc31abc9357bba3c882467566c","d058c9af57e5de80321e1c92a55fc2d5f70012a817c8916bd2ac8c44e18c1436","10ee4b41b1b97a5667e64cfde6d2b3b6d15ae17793aa67e2cfa86881f7fe9c71","20ff70ed2dc0cc6717a76264809bfbc1daf4c191e7d5c8d15b3ab489fa653c53","09269729f1952708f5b0d688839ec140628d1f539750a6d9a026330c65b1d231","5813f1ac1f61bf1b81bd41baf959360dd20310fa97322aaf4429434ee89ecc7e","8c1888cd02bc1f3c34bdbfe053c08a2f8d5ca5147be292f099148bfa95a195af","8407a0d9ada016e6c8dc317dd0c72dbb894c950ac3573787d9bd3986e6c51bd7","54366974e39593fdea03c3bf895e611a19b8ede534c5139df2c47daf4304837e","adee9f9a7594c93efdf2fcee7a10ca63a7ffca096c205148b72c9fc3bdd9b19a","616338e71bac435feb9b4c606e53d4fd9e5911aca773c37edfa5663fb57002ad","aef20777734d4bc23a58c26f68c42bcd3e56b82ddd231f993f0567531c752e0f","cc52c40b782d451ceca219cc62c3aacfc91e08ccea2a4bb839f4cbc538a8caff","31df0ed3b1fe57e17dea70384eea62bd607a7dc69b29ce6c4df6e5c456d87387","e3a6aaefbfde2999fd38ee76b43c82215f59b52f3e3f2accee1ef0f5c4ffa9cc","7f44474d11122bcb3ee5feaca842b84499c13a5fd97469cabcb2dc942c4bf043","bc9ddaee0c1385e0b7f00c6fce65b4c2de959ef52c59c5b91d1de3234a3f8a01","84473706d793d798fdfc39957ac33fe8648c061b4b7f0f7efb400ce35d6e5ca7","c8be5bb9c2285ac7507b21c426985afe72f2633ede6e9ad27bb66288aecfeb92","bff46197eaf1c08125258f3152bd3e4a9e13289f0bbc88f1e9ef7e175ca1f8c5","7204921408eaed62e573211f904c6e0c461721134959d5a002320f73ed4f84c2",{"version":"eab2c8a2cb84c2940c93111b98ff13d88e314d48c0f6fc0ed8943e573ec59431","affectsGlobalScope":true},"0f1978d39f8f326e675c9d12e3c528edc8b99bb751c71f32d9b283c53e0ee5dd",{"version":"2c6c2fe3b290d4e83434b474e15d6cdfdd9147102ae3d50c5e7dc8acf97cd486","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"7bd65924096cb6a5b31761ebdfd4d2cdad68d78fc8c4d495ea49c96ad792dc28","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"dd92fc2aebe575431769b9b2c4ea79c2506f52aefd4141920f23cbf2ad8bcbc6","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"6028a4164704ae1e62392eeeb2548b68fb759b9db431a594c87a60f715774d98","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"40a97b3b274c4b2885b135e5ccaaf289aa07dd26f3d2f616cc30984c4d939aba","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"cc88d87ab48a8b04bc217612ea91c8c77e02633e53aca6b1d4ef12bb2ec7e9d7","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"2546b5750d6d9930d4e93424a6690bdb1b2a4102749f99ec4043c3699b937ff8","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"8b45c882cf56abf0f8e49a62b6c6be444d4848c10eb0b043fceefd598bd0e039","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"55309036c60909cf6a9b8713e31d5e61cdc6ac3aa49dcc302cad25a5f88cd01c","signature":"d8b6612ffd8100484208679301bd0742c4e34b5a579f28f28cfcbff582c167c0"},{"version":"7e5974860627a3d219b0624952633002bb0601d7984c2b5a6b33fc7a9bc2d7a0","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"1feb6aa451b86b0cc4e10ee73b3b32429285fe19a47e9687280387f33d88ad3a","signature":"2929d8318c9e3e8bcbebddee4bbd55f377d2b18fcb058f51965cb85be0f24b12"},"d2e64a6f25013b099e83bfadb2c388d7bef3e8f3fdb25528225bbc841e7e7e3a","e01ea380015ed698c3c0e2ccd0db72f3fc3ef1abc4519f122aa1c1a8d419a505","9e2534be8a9338e750d24acc6076680d49b1643ae993c74510776a92af0c1604","c266ab6ddc3c29b4dd77a6f0d0eb4df7dab76d066e385171d88cb97c1120e747",{"version":"adfef42f90e895874d5d01ae1c765ab3fb893ed71226960d8f669dbc391554e8","affectsGlobalScope":true},{"version":"2e4beadc98cf82611bc639cb48784883493648b25e097a56a8390edf1fe01548","affectsGlobalScope":true},{"version":"0e9864c8c9393c22cba58ad144b7f2a190db89f649d0c064f22604fb9ddbaea0","affectsGlobalScope":true},{"version":"c67a7b7eec0175ea53343429d32897fcad406c663ba4b775eab8be8164bff91c","affectsGlobalScope":true},"64518924a9b6453b89e3adb27e5605a4a5ea302112172b49d32a4eb468fc02fb",{"version":"639e82ad014ff342469c80e3814d0a33fa98911296fa7941474c81bcc0f9b9ac","affectsGlobalScope":true},"d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"ccfd8774cd9b929f63ff7dcf657977eb0652e3547f1fcac1b3a1dc5db22d4d58","affectsGlobalScope":true}],"options":{"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":2,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./types","rootDir":"../src","skipLibCheck":true,"strict":true,"target":2},"fileIdsList":[[239],[141,239],[139,239],[136,137,138,139,140,143,144,145,146,147,148,149,150,239],[135,239],[142,239],[136,137,138,239],[136,137,239],[139,140,142,239],[137,239],[61,134,151,152,239],[142,239,395],[239,389,391],[239,389,391,392,393],[155,239,394],[193,239],[196,239],[197,202,230,239],[198,209,210,217,227,238,239],[198,199,209,217,239],[200,239],[201,202,210,218,239],[202,227,235,239],[203,205,209,217,239],[204,239],[205,206,239],[209,239],[207,209,239],[209,210,211,227,238,239],[209,210,211,224,227,230,239],[239,243],[205,212,217,227,238,239],[209,210,212,213,217,227,235,238,239],[212,214,227,235,238,239],[193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245],[209,215,239],[216,238,239],[205,209,217,227,239],[218,239],[219,239],[196,220,239],[221,237,239,243],[222,239],[223,239],[209,224,225,239],[224,226,239,241],[197,209,227,228,229,230,239],[197,227,229,239],[227,228,239],[230,239],[231,239],[209,233,234,239],[233,234,239],[202,217,227,235,239],[236,239],[217,237,239],[197,212,223,238,239],[202,239],[227,239,240],[239,241],[239,242],[197,202,209,211,220,227,238,239,241,243],[227,239,244],[70,239],[58,59,60,69,239],[70,152,239],[57,58,59,60,239],[209,212,214,227,235,238,239,244,246],[239,379,380],[239,379,380,381],[239,383],[172,209,239,387],[239,386],[173,239],[173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,239],[169,239],[167,168,239],[170,209,210,239],[165,166,169,170,239],[169,209,239],[164,165,166,167,168,169,170,171,239],[172,239,382],[161,162,239,367,383],[154,160,239],[155,159,239],[158,239],[157,239],[156,239],[63,239],[64,65,68,239],[64,239],[63,64,239],[64,65,66,239],[239,284],[191,192,239,247],[191,192,239,248],[189,190,239,250],[172,239,250],[172,191,192,239,249,250,251,252,253],[172,209,238,239],[172,189,191,209,239,249],[172,190,209,239,250],[239,273],[239,257,258,264,265,266,267,268,269,270,271,272,276,277,278,279,280,281,282,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311],[189,239,366],[239,366],[239,263],[239,254],[239,273,274,275],[189,239,254],[239,283,286],[189,239],[239,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364],[239,257],[239,258],[239,311],[172,239,254,255,366],[172,189,209,239,254,256,261,263,266,283,286,312,365],[239,259,260,261,262],[239,259],[189,239,259,366],[239,259,366],[172,239,254,283,285,366],[61,64,68,73,79,85,100,102,103,106,108,109,116,117,118,119,120,239],[56,61,84,86,239],[61,64,66,68,71,73,82,100,101,110,121,239],[61,64,68,92,100,101,121,239],[61,81,82,97,239],[61,64,82,92,100,107,239],[61,68,82,84,92,100,239],[61,64,68,73,111,115,239],[61,64,68,239],[61,64,106,239],[61,68,73,74,75,76,77,80,98,99,123,239],[61,92,100,122,239],[61,64,68,75,76,100,101,107,112,113,114,121,239],[55,61,82,92,100,239],[61,62,64,68,92,121,239],[61,82,92,100,239],[61,82,85,92,100,239],[61,85,239],[68,133,162,239],[66,78,133,153,162,239,367],[61,64,66,68,75,84,85,86,133,162,239],[61,64,66,75,133,162,239],[61,66,68,75,127,128,133,153,162,239],[64,66,68,133,153,162,239],[61,64,66,68,75,84,88,123,124,128,133,153,162,239],[61,92,239],[61,68,72,239],[61,66,239],[61,68,239],[61,239],[61,75,239],[61,83,99,153,239],[56,61,64,68,78,86,239],[68,239],[64,68,78,239],[64,68,79,85,239],[64,68,78,79,239],[61,66,68,73,74,84,99,153,239],[61,64,66,68,71,82,89,92,94,95,96,97,239],[61,68,73,83,239],[61,68,73,84,239],[61,66,68,72,73,84,239],[61,66,74,239],[61,68,84,112,125,239],[61,129,239],[61,81,82,239],[61,64,68,73,82,92,100,239],[61,73,88,239],[61,84,113,125,239],[61,68,84,114,125,239],[75,84,85,86,88,123,124,125,126,127,128,129,130,131,239],[64,66,88,239],[64,66,68,85,87,88,239],[66,68,71,239],[64,66,239],[61,104,105,239],[55,56,66,68,90,91,93,239],[56,64,66,68,92,239],[55,56,66,68,92,239],[56,61,64,66,68,84,88,123,124,133,153,161,162,239],[55,56,64,68,79,91,239],[61,64,68],[61,85],[61,64,68,92],[61],[61,64],[61,68],[61,68,75,98],[61,122],[61,92],[61,68,72],[61,66],[61,75],[56,61,64,68,78,86],[68],[64,68,78],[64,68],[66,68,72],[61,66,68,72,92],[68,72],[66],[64],[75,84,85,86,88,123,124,125,126,127,128,129,130,131],[66,68],[64,66],[58,61],[56,68],[64,66,68],[56,64,68,124,133,161,162],[56,64,68]],"referencedMap":[[156,1],[142,2],[141,1],[149,1],[146,1],[145,1],[140,3],[151,4],[136,5],[147,6],[139,7],[138,8],[148,1],[143,9],[150,1],[144,10],[137,1],[153,11],[135,1],[105,1],[396,12],[389,1],[392,13],[394,14],[393,13],[391,6],[395,15],[390,2],[386,1],[193,16],[194,16],[196,17],[197,18],[198,19],[199,20],[200,21],[201,22],[202,23],[203,24],[204,25],[205,26],[206,26],[208,27],[207,28],[209,27],[210,29],[211,30],[195,31],[245,1],[212,32],[213,33],[214,34],[246,35],[215,36],[216,37],[217,38],[218,39],[219,40],[220,41],[221,42],[222,43],[223,44],[224,45],[225,45],[226,46],[227,47],[229,48],[228,49],[230,50],[231,51],[232,1],[233,52],[234,53],[235,54],[236,55],[237,56],[238,57],[239,58],[240,59],[241,60],[242,61],[243,62],[244,63],[59,1],[134,64],[71,64],[69,1],[70,65],[152,66],[57,1],[61,67],[60,1],[273,1],[247,68],[379,1],[380,1],[381,69],[382,70],[385,71],[388,72],[387,73],[174,74],[175,74],[176,1],[177,1],[178,74],[179,74],[180,74],[189,75],[184,1],[185,1],[186,1],[183,1],[187,1],[188,1],[181,1],[182,1],[173,1],[164,1],[170,76],[165,1],[171,1],[169,77],[168,78],[167,79],[166,80],[172,81],[155,1],[104,1],[58,1],[383,82],[384,83],[161,84],[154,1],[160,85],[159,86],[63,1],[158,87],[157,88],[64,89],[66,90],[65,91],[133,92],[78,91],[68,93],[67,91],[10,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[4,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[35,1],[32,1],[33,1],[34,1],[36,1],[7,1],[37,1],[42,1],[43,1],[38,1],[39,1],[40,1],[41,1],[8,1],[47,1],[44,1],[45,1],[46,1],[48,1],[9,1],[49,1],[50,1],[51,1],[52,1],[53,1],[1,1],[54,1],[285,94],[284,1],[248,95],[249,96],[191,1],[192,1],[251,97],[252,98],[254,99],[190,100],[250,101],[253,102],[274,103],[312,104],[257,105],[258,106],[264,107],[265,107],[266,1],[267,1],[268,1],[269,1],[270,1],[271,108],[272,1],[276,109],[277,1],[278,1],[279,110],[280,1],[281,1],[282,1],[287,111],[288,1],[289,1],[290,106],[291,1],[292,106],[293,106],[294,1],[295,106],[296,1],[297,1],[298,1],[299,1],[300,112],[301,112],[302,1],[303,1],[304,1],[305,106],[306,1],[307,106],[308,106],[309,1],[310,1],[311,106],[365,113],[313,114],[314,115],[315,1],[316,1],[317,106],[318,1],[319,1],[320,1],[321,106],[322,1],[323,1],[324,1],[325,106],[327,1],[326,1],[328,106],[329,1],[330,112],[331,1],[332,112],[333,1],[334,1],[335,1],[336,1],[337,1],[338,1],[339,1],[340,1],[341,1],[342,1],[343,1],[344,106],[345,106],[346,106],[347,106],[348,106],[349,106],[350,1],[351,1],[352,1],[353,1],[354,1],[355,1],[356,106],[357,106],[358,106],[359,106],[360,106],[361,106],[362,106],[363,106],[364,116],[275,1],[256,108],[367,117],[366,118],[255,1],[259,1],[263,119],[260,120],[261,121],[262,122],[286,123],[283,110],[55,1],[121,124],[87,125],[111,126],[122,127],[99,128],[108,129],[109,130],[116,131],[75,132],[107,133],[124,134],[123,135],[115,136],[117,137],[118,138],[119,139],[120,140],[86,141],[163,142],[368,143],[369,144],[370,145],[371,146],[372,147],[373,148],[100,149],[73,150],[74,151],[112,152],[81,153],[76,154],[113,153],[114,153],[374,155],[85,156],[77,157],[79,158],[102,159],[80,160],[56,1],[62,153],[375,161],[82,153],[110,153],[96,150],[98,162],[84,163],[125,164],[126,165],[127,166],[97,153],[130,167],[131,168],[83,169],[101,170],[103,171],[129,172],[128,173],[132,174],[377,175],[89,176],[72,177],[376,177],[88,178],[106,179],[94,180],[90,157],[93,181],[91,182],[95,1],[162,183],[378,1],[92,184]],"exportedModulesMap":[[156,1],[142,2],[141,1],[149,1],[146,1],[145,1],[140,3],[151,4],[136,5],[147,6],[139,7],[138,8],[148,1],[143,9],[150,1],[144,10],[137,1],[153,11],[135,1],[105,1],[396,12],[389,1],[392,13],[394,14],[393,13],[391,6],[395,15],[390,2],[386,1],[193,16],[194,16],[196,17],[197,18],[198,19],[199,20],[200,21],[201,22],[202,23],[203,24],[204,25],[205,26],[206,26],[208,27],[207,28],[209,27],[210,29],[211,30],[195,31],[245,1],[212,32],[213,33],[214,34],[246,35],[215,36],[216,37],[217,38],[218,39],[219,40],[220,41],[221,42],[222,43],[223,44],[224,45],[225,45],[226,46],[227,47],[229,48],[228,49],[230,50],[231,51],[232,1],[233,52],[234,53],[235,54],[236,55],[237,56],[238,57],[239,58],[240,59],[241,60],[242,61],[243,62],[244,63],[59,1],[134,64],[71,64],[69,1],[70,65],[152,66],[57,1],[61,67],[60,1],[273,1],[247,68],[379,1],[380,1],[381,69],[382,70],[385,71],[388,72],[387,73],[174,74],[175,74],[176,1],[177,1],[178,74],[179,74],[180,74],[189,75],[184,1],[185,1],[186,1],[183,1],[187,1],[188,1],[181,1],[182,1],[173,1],[164,1],[170,76],[165,1],[171,1],[169,77],[168,78],[167,79],[166,80],[172,81],[155,1],[104,1],[58,1],[383,82],[384,83],[161,84],[154,1],[160,85],[159,86],[63,1],[158,87],[157,88],[64,89],[66,90],[65,91],[133,92],[78,91],[68,93],[67,91],[10,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[4,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[35,1],[32,1],[33,1],[34,1],[36,1],[7,1],[37,1],[42,1],[43,1],[38,1],[39,1],[40,1],[41,1],[8,1],[47,1],[44,1],[45,1],[46,1],[48,1],[9,1],[49,1],[50,1],[51,1],[52,1],[53,1],[1,1],[54,1],[285,94],[284,1],[248,95],[249,96],[191,1],[192,1],[251,97],[252,98],[254,99],[190,100],[250,101],[253,102],[274,103],[312,104],[257,105],[258,106],[264,107],[265,107],[266,1],[267,1],[268,1],[269,1],[270,1],[271,108],[272,1],[276,109],[277,1],[278,1],[279,110],[280,1],[281,1],[282,1],[287,111],[288,1],[289,1],[290,106],[291,1],[292,106],[293,106],[294,1],[295,106],[296,1],[297,1],[298,1],[299,1],[300,112],[301,112],[302,1],[303,1],[304,1],[305,106],[306,1],[307,106],[308,106],[309,1],[310,1],[311,106],[365,113],[313,114],[314,115],[315,1],[316,1],[317,106],[318,1],[319,1],[320,1],[321,106],[322,1],[323,1],[324,1],[325,106],[327,1],[326,1],[328,106],[329,1],[330,112],[331,1],[332,112],[333,1],[334,1],[335,1],[336,1],[337,1],[338,1],[339,1],[340,1],[341,1],[342,1],[343,1],[344,106],[345,106],[346,106],[347,106],[348,106],[349,106],[350,1],[351,1],[352,1],[353,1],[354,1],[355,1],[356,106],[357,106],[358,106],[359,106],[360,106],[361,106],[362,106],[363,106],[364,116],[275,1],[256,108],[367,117],[366,118],[255,1],[259,1],[263,119],[260,120],[261,121],[262,122],[286,123],[283,110],[121,185],[87,186],[111,185],[122,187],[99,188],[108,189],[109,190],[116,185],[75,185],[107,189],[124,191],[123,192],[115,185],[117,188],[118,187],[119,188],[120,186],[86,186],[100,193],[73,194],[74,195],[112,190],[81,188],[76,196],[113,188],[114,188],[85,197],[77,198],[79,199],[102,200],[80,198],[62,188],[82,188],[96,201],[98,202],[84,190],[125,198],[126,203],[127,204],[130,198],[83,188],[101,187],[103,205],[128,198],[132,206],[89,207],[72,207],[376,207],[88,208],[106,209],[94,210],[90,198],[93,211],[91,207],[162,212],[92,213]],"semanticDiagnosticsPerFile":[156,142,141,149,146,145,140,151,136,147,139,138,148,143,150,144,137,153,135,105,396,389,392,394,393,391,395,390,386,193,194,196,197,198,199,200,201,202,203,204,205,206,208,207,209,210,211,195,245,212,213,214,246,215,216,217,218,219,220,221,222,223,224,225,226,227,229,228,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,59,134,71,69,70,152,57,61,60,273,247,379,380,381,382,385,388,387,174,175,176,177,178,179,180,189,184,185,186,183,187,188,181,182,173,164,170,165,171,169,168,167,166,172,155,104,58,383,384,161,154,160,159,63,158,157,64,66,65,133,78,68,67,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,8,47,44,45,46,48,9,49,50,51,52,53,1,54,285,284,248,249,191,192,251,252,254,190,250,253,274,312,257,258,264,265,266,267,268,269,270,271,272,276,277,278,279,280,281,282,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,365,313,314,315,316,317,318,319,320,321,322,323,324,325,327,326,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,275,256,367,366,255,259,263,260,261,262,286,283,55,121,87,111,122,99,108,109,116,75,107,124,123,115,117,118,119,120,86,163,368,369,370,371,372,373,100,73,74,112,81,76,113,114,374,85,77,79,102,80,56,62,375,82,110,96,98,84,125,126,127,97,130,131,83,101,103,129,128,132,377,89,72,376,88,106,94,90,93,91,95,162,378,92]},"version":"4.9.5"}
|
|
@@ -12,4 +12,4 @@ import type { EditorView } from "prosemirror-view";
|
|
|
12
12
|
* component that is mounted as a child of both of these
|
|
13
13
|
* providers.
|
|
14
14
|
*/
|
|
15
|
-
export declare function useEditorEventCallback<T extends unknown[], R>(callback: (view: EditorView, ...args: T) => R): (...args: T) => R
|
|
15
|
+
export declare function useEditorEventCallback<T extends unknown[], R>(callback: (view: EditorView, ...args: T) => R): (...args: T) => R;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Node } from "prosemirror-model";
|
|
2
|
-
import { Decoration, DecorationSource } from "prosemirror-view";
|
|
2
|
+
import { Decoration, DecorationSource, ViewMutationRecord } from "prosemirror-view";
|
|
3
3
|
import { MutableRefObject } from "react";
|
|
4
4
|
import { NodeViewDesc, ViewDesc } from "../viewdesc.js";
|
|
5
5
|
export declare function useNodeViewDescriptor(node: Node | undefined, getPos: () => number, domRef: undefined | MutableRefObject<HTMLElement | null>, nodeDomRef: MutableRefObject<HTMLElement | null>, innerDecorations: DecorationSource, outerDecorations: readonly Decoration[], viewDesc?: NodeViewDesc, contentDOMRef?: MutableRefObject<HTMLElement | null>): {
|
|
@@ -8,4 +8,5 @@ export declare function useNodeViewDescriptor(node: Node | undefined, getPos: ()
|
|
|
8
8
|
nodeViewDescRef: MutableRefObject<NodeViewDesc | undefined>;
|
|
9
9
|
setStopEvent: (newStopEvent: (event: Event) => boolean | undefined) => void;
|
|
10
10
|
setSelectNode: (newSelectNode: () => void, newDeselectNode: () => void) => void;
|
|
11
|
+
setIgnoreMutation: (newIgnoreMutation: (mutation: ViewMutationRecord) => boolean) => void;
|
|
11
12
|
};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export { useEditorEventListener } from "./hooks/useEditorEventListener.js";
|
|
|
6
6
|
export { useEditorState } from "./hooks/useEditorState.js";
|
|
7
7
|
export { useStopEvent } from "./hooks/useStopEvent.js";
|
|
8
8
|
export { useSelectNode } from "./hooks/useSelectNode.js";
|
|
9
|
+
export { useIgnoreMutation } from "./hooks/useIgnoreMutation.js";
|
|
9
10
|
export { useIsNodeSelected } from "./hooks/useIsNodeSelected.js";
|
|
10
11
|
export { reactKeys } from "./plugins/reactKeys.js";
|
|
11
12
|
export { widget } from "./decorations/ReactWidgetType.js";
|
package/dist/types/viewdesc.d.ts
CHANGED
|
@@ -109,7 +109,8 @@ export declare class NodeViewDesc extends ViewDesc {
|
|
|
109
109
|
stopEvent: (event: Event) => boolean;
|
|
110
110
|
selectNode: () => void;
|
|
111
111
|
deselectNode: () => void;
|
|
112
|
-
|
|
112
|
+
ignoreMutation: (mutation: ViewMutationRecord) => boolean;
|
|
113
|
+
constructor(parent: ViewDesc | undefined, children: ViewDesc[], getPos: () => number, node: Node, outerDeco: readonly Decoration[], innerDeco: DecorationSource, dom: DOMNode, contentDOM: HTMLElement | null, nodeDOM: DOMNode, stopEvent: (event: Event) => boolean, selectNode: () => void, deselectNode: () => void, ignoreMutation: (mutation: ViewMutationRecord) => boolean);
|
|
113
114
|
updateOuterDeco(): void;
|
|
114
115
|
parseRule(): Omit<TagParseRule, "tag"> | null;
|
|
115
116
|
matchesNode(node: Node, outerDeco: readonly Decoration[], innerDeco: DecorationSource): boolean;
|
|
@@ -130,7 +131,6 @@ export declare class TextViewDesc extends NodeViewDesc {
|
|
|
130
131
|
offset: number;
|
|
131
132
|
};
|
|
132
133
|
localPosFromDOM(dom: DOMNode, offset: number, bias: number): number;
|
|
133
|
-
ignoreMutation(mutation: ViewMutationRecord): boolean;
|
|
134
134
|
markDirty(from: number, to: number): void;
|
|
135
135
|
get domAtom(): boolean;
|
|
136
136
|
}
|