easy-email-pro-editor 1.42.1 → 1.42.3
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.
|
@@ -9,7 +9,7 @@ var zi = (e, u, a) => u in e ? iE(e, u, { enumerable: !0, configurable: !0, writ
|
|
|
9
9
|
for (var a of on(u))
|
|
10
10
|
Xc.call(u, a) && zi(e, a, u[a]);
|
|
11
11
|
return e;
|
|
12
|
-
},
|
|
12
|
+
}, W = (e, u) => sE(e, oE(u));
|
|
13
13
|
var Jr = (e, u) => {
|
|
14
14
|
var a = {};
|
|
15
15
|
for (var s in e)
|
|
@@ -53,11 +53,11 @@ const LE = () => {
|
|
|
53
53
|
return N ? z.isHTMLNodeElement(T) && ["img"].includes(T.data.tagName) ? !0 : !!N.inlineElement : L(T);
|
|
54
54
|
}, e.isElementReadOnly = (T) => De.getBlockByType(T.type) && z.isHTMLNodeElement(T) && ["img"].includes(T.data.tagName) ? !0 : B(T), e.isSelectable = (T) => De.getBlockByType(T.type) && z.isHTMLNodeElement(T) && ["img"].includes(T.data.tagName) ? !1 : y(T), e.isVoid = (T) => {
|
|
55
55
|
const N = De.getBlockByType(T.type), F = [Cr.IMAGE].some(
|
|
56
|
-
(
|
|
57
|
-
),
|
|
56
|
+
(G) => N.category.includes(G)
|
|
57
|
+
), Q = [
|
|
58
58
|
de.LINE_BREAK
|
|
59
59
|
].includes(T.type);
|
|
60
|
-
return F ||
|
|
60
|
+
return F || Q ? !0 : g(T);
|
|
61
61
|
}, e.getSelectionRect = () => {
|
|
62
62
|
const T = Ve.getWindow(e).getSelection();
|
|
63
63
|
if (!T)
|
|
@@ -89,17 +89,17 @@ const LE = () => {
|
|
|
89
89
|
const F = e.above({
|
|
90
90
|
match: z.isVoidBlockElement,
|
|
91
91
|
mode: "lowest"
|
|
92
|
-
}),
|
|
92
|
+
}), Q = e.above({
|
|
93
93
|
match: z.isElement,
|
|
94
94
|
mode: "lowest"
|
|
95
95
|
});
|
|
96
|
-
if (F &&
|
|
96
|
+
if (F && Q && !he.string(e, Q[1])) {
|
|
97
97
|
I({
|
|
98
98
|
type: "insert_text",
|
|
99
99
|
text: T,
|
|
100
100
|
path: N.anchor.path,
|
|
101
101
|
offset: 0
|
|
102
|
-
}), e.select(
|
|
102
|
+
}), e.select(Q[1]), setTimeout(() => {
|
|
103
103
|
e.insertText(T);
|
|
104
104
|
}, 0);
|
|
105
105
|
return;
|
|
@@ -115,8 +115,8 @@ const LE = () => {
|
|
|
115
115
|
let N = null;
|
|
116
116
|
if (T != null && T.path && (N = _t.get(e, T.path)), !N) {
|
|
117
117
|
const F = he.above(e, {
|
|
118
|
-
match(
|
|
119
|
-
return z.isElement(
|
|
118
|
+
match(Q, G) {
|
|
119
|
+
return z.isElement(Q);
|
|
120
120
|
},
|
|
121
121
|
mode: "lowest",
|
|
122
122
|
at: T == null ? void 0 : T.path
|
|
@@ -163,27 +163,27 @@ const LE = () => {
|
|
|
163
163
|
).length > 1 || ae(T);
|
|
164
164
|
}, e.insertNewRow = (T) => {
|
|
165
165
|
const N = he.above(e, {
|
|
166
|
-
match(
|
|
167
|
-
return z.isSectionElement(
|
|
166
|
+
match(G, j) {
|
|
167
|
+
return z.isSectionElement(G);
|
|
168
168
|
},
|
|
169
169
|
mode: "lowest",
|
|
170
170
|
at: T == null ? void 0 : T.path
|
|
171
171
|
});
|
|
172
172
|
if (!(N == null ? void 0 : N[0]))
|
|
173
173
|
return;
|
|
174
|
-
let
|
|
175
|
-
if (!
|
|
176
|
-
const
|
|
174
|
+
let Q = N == null ? void 0 : N[1];
|
|
175
|
+
if (!Q) {
|
|
176
|
+
const G = he.above(e, {
|
|
177
177
|
match(j) {
|
|
178
178
|
return z.isBlockElement(j) && z.isSectionElement(j);
|
|
179
179
|
}
|
|
180
180
|
});
|
|
181
|
-
|
|
181
|
+
G && (Q = G[1]);
|
|
182
182
|
}
|
|
183
|
-
if (
|
|
184
|
-
|
|
183
|
+
if (Q) {
|
|
184
|
+
Q = $e.next(Q), I({
|
|
185
185
|
type: "insert_node",
|
|
186
|
-
path:
|
|
186
|
+
path: Q,
|
|
187
187
|
node: {
|
|
188
188
|
type: Tr.STANDARD_SECTION,
|
|
189
189
|
attributes: {},
|
|
@@ -205,28 +205,21 @@ const LE = () => {
|
|
|
205
205
|
]
|
|
206
206
|
}
|
|
207
207
|
});
|
|
208
|
-
const
|
|
208
|
+
const G = he.end(e, Q);
|
|
209
209
|
setTimeout(() => {
|
|
210
|
-
ye.select(e,
|
|
210
|
+
ye.select(e, G);
|
|
211
211
|
}, 200);
|
|
212
212
|
}
|
|
213
213
|
}, e.insertBreak = () => {
|
|
214
|
-
var F;
|
|
215
214
|
const T = he.above(e, {
|
|
216
|
-
match(
|
|
217
|
-
return z.isBlockElement(
|
|
215
|
+
match(N, F) {
|
|
216
|
+
return z.isBlockElement(N);
|
|
218
217
|
},
|
|
219
218
|
mode: "lowest"
|
|
220
219
|
});
|
|
221
|
-
if ((F = T == null ? void 0 : T[0]) == null ? void 0 : F.children.find(
|
|
222
|
-
(W) => z.isMergetagElement(W)
|
|
223
|
-
)) {
|
|
224
|
-
l();
|
|
225
|
-
return;
|
|
226
|
-
}
|
|
227
220
|
if (u.newLineWithBr && T && (z.isTextElement(T[0]) || z.isTable2Element(T[0])) && !he.above(e, {
|
|
228
|
-
match(
|
|
229
|
-
return z.isHTMLBlockNodeElement(
|
|
221
|
+
match(F, Q) {
|
|
222
|
+
return z.isHTMLBlockNodeElement(F);
|
|
230
223
|
},
|
|
231
224
|
mode: "lowest"
|
|
232
225
|
})) {
|
|
@@ -241,9 +234,10 @@ const LE = () => {
|
|
|
241
234
|
attributes: {}
|
|
242
235
|
},
|
|
243
236
|
{
|
|
244
|
-
match: (Q) => !z.isBlockElement(Q) && !z.isHTMLBlockNodeElement(Q),
|
|
245
237
|
at: T[1],
|
|
246
|
-
|
|
238
|
+
match(F, Q) {
|
|
239
|
+
return !z.isBlockElement(F) && !z.isHTMLBlockNodeElement(F);
|
|
240
|
+
}
|
|
247
241
|
}
|
|
248
242
|
), l();
|
|
249
243
|
return;
|
|
@@ -256,13 +250,13 @@ const LE = () => {
|
|
|
256
250
|
}), F = N[0];
|
|
257
251
|
if (!z.isElement(F))
|
|
258
252
|
return;
|
|
259
|
-
const
|
|
253
|
+
const G = he.parent(e, N[1])[0].children.filter(
|
|
260
254
|
($) => z.isElement($) && $.type !== "raw"
|
|
261
255
|
);
|
|
262
|
-
if (
|
|
256
|
+
if (G.length >= 2) {
|
|
263
257
|
const $ = he.end(
|
|
264
258
|
e,
|
|
265
|
-
Ve.findPath(e,
|
|
259
|
+
Ve.findPath(e, G[G.length - 1])
|
|
266
260
|
);
|
|
267
261
|
ye.setSelection(e, {
|
|
268
262
|
anchor: $,
|
|
@@ -283,11 +277,11 @@ const LE = () => {
|
|
|
283
277
|
at: he.end(e, oe),
|
|
284
278
|
match: z.isSectionElement
|
|
285
279
|
});
|
|
286
|
-
const w = `${
|
|
280
|
+
const w = `${G.length / 2 * 100}%`;
|
|
287
281
|
ye.setNodes(
|
|
288
282
|
e,
|
|
289
283
|
{
|
|
290
|
-
attributes:
|
|
284
|
+
attributes: W(p({}, F.attributes), { width: w })
|
|
291
285
|
},
|
|
292
286
|
{
|
|
293
287
|
match: z.isColumnElement
|
|
@@ -297,7 +291,7 @@ const LE = () => {
|
|
|
297
291
|
{
|
|
298
292
|
type: Tr.STANDARD_COLUMN,
|
|
299
293
|
data: {},
|
|
300
|
-
attributes:
|
|
294
|
+
attributes: W(p({}, F.attributes), { width: w }),
|
|
301
295
|
children: [
|
|
302
296
|
{
|
|
303
297
|
type: Tr.STANDARD_PARAGRAPH,
|
|
@@ -320,33 +314,33 @@ const LE = () => {
|
|
|
320
314
|
targetCategoryType: N,
|
|
321
315
|
insertElement: F
|
|
322
316
|
}) => {
|
|
323
|
-
let
|
|
324
|
-
for (; _t.get(e,
|
|
325
|
-
|
|
326
|
-
const _e = _t.get(e,
|
|
327
|
-
if (
|
|
328
|
-
children:
|
|
317
|
+
let Q = T, G = null;
|
|
318
|
+
for (; _t.get(e, Q); ) {
|
|
319
|
+
Q = $e.parent(Q);
|
|
320
|
+
const _e = _t.get(e, Q);
|
|
321
|
+
if (G = W(p({}, _e), {
|
|
322
|
+
children: G ? [G] : []
|
|
329
323
|
}), De.getBlockByType(_e.type).category === N)
|
|
330
324
|
break;
|
|
331
325
|
}
|
|
332
|
-
if (!
|
|
326
|
+
if (!G)
|
|
333
327
|
return;
|
|
334
|
-
const j = T[T.length - 1], oe = Nr(
|
|
335
|
-
let w = Nr(
|
|
336
|
-
const $ = Nr(
|
|
328
|
+
const j = T[T.length - 1], oe = Nr(G);
|
|
329
|
+
let w = Nr(G);
|
|
330
|
+
const $ = Nr(G), te = _t.get(e, $e.parent(T)), Z = T.length - Q.length, ne = new Array(Z).fill(!0).map(() => "children").join("[0].");
|
|
337
331
|
for (let _e = 0; _e < te.children.length; _e++) {
|
|
338
332
|
const re = te.children[_e];
|
|
339
333
|
_e < j ? b(oe, ne).push(re) : _e === j ? F ? w = F : b(w, ne).push(re) : b($, ne).push(re);
|
|
340
334
|
}
|
|
341
335
|
const Ce = j === 0 ? [w, $] : [oe, w, $];
|
|
342
336
|
e.withoutNormalizing(() => {
|
|
343
|
-
e.delete({ at:
|
|
344
|
-
at:
|
|
337
|
+
e.delete({ at: Q }), e.insertNodes(Ce, {
|
|
338
|
+
at: Q
|
|
345
339
|
});
|
|
346
340
|
});
|
|
347
341
|
}, e.insertData = (T) => {
|
|
348
342
|
he.withoutNormalizing(e, () => {
|
|
349
|
-
var
|
|
343
|
+
var G;
|
|
350
344
|
const N = T.getData("application/x-slate-fragment"), F = he.above(e, {
|
|
351
345
|
match: z.isVoidBlockElement
|
|
352
346
|
});
|
|
@@ -363,7 +357,7 @@ const LE = () => {
|
|
|
363
357
|
match: z.isContentElement
|
|
364
358
|
});
|
|
365
359
|
if (te && !!(e.selection && he.string(e, e.selection) === he.string(e, te[1]))) {
|
|
366
|
-
const ne = (
|
|
360
|
+
const ne = (G = e.selection) == null ? void 0 : G.anchor.path;
|
|
367
361
|
e.selection && he.string(e, e.selection) !== "" && e.delete(), e.insertNodes($, {
|
|
368
362
|
mode: "lowest",
|
|
369
363
|
at: ne
|
|
@@ -399,7 +393,7 @@ const LE = () => {
|
|
|
399
393
|
if (!N) {
|
|
400
394
|
if (Array.from(
|
|
401
395
|
he.nodes(e, {
|
|
402
|
-
match: (
|
|
396
|
+
match: (Q) => z.isContentElement(Q),
|
|
403
397
|
mode: "lowest"
|
|
404
398
|
})
|
|
405
399
|
).length > 1)
|
|
@@ -427,8 +421,8 @@ const LE = () => {
|
|
|
427
421
|
m(T);
|
|
428
422
|
return;
|
|
429
423
|
}
|
|
430
|
-
const
|
|
431
|
-
if (
|
|
424
|
+
const Q = De.getBlockByType(N.type);
|
|
425
|
+
if (Q.void) {
|
|
432
426
|
m(T);
|
|
433
427
|
return;
|
|
434
428
|
}
|
|
@@ -452,7 +446,7 @@ const LE = () => {
|
|
|
452
446
|
data: { tagName: "div" }
|
|
453
447
|
}), e.replaceNode({
|
|
454
448
|
path: F,
|
|
455
|
-
node:
|
|
449
|
+
node: W(p({}, N), {
|
|
456
450
|
children: w
|
|
457
451
|
})
|
|
458
452
|
});
|
|
@@ -465,7 +459,7 @@ const LE = () => {
|
|
|
465
459
|
), $ = De.getBlockByType(
|
|
466
460
|
de.STANDARD_COLUMN
|
|
467
461
|
);
|
|
468
|
-
|
|
462
|
+
Q.category === Cr.PAGE ? ye.insertNodes(
|
|
469
463
|
e,
|
|
470
464
|
w.create({
|
|
471
465
|
children: [$.create({})]
|
|
@@ -492,7 +486,7 @@ const LE = () => {
|
|
|
492
486
|
ye.removeNodes(e, { at: F });
|
|
493
487
|
return;
|
|
494
488
|
}
|
|
495
|
-
const j =
|
|
489
|
+
const j = Q.category.includes(Cr.SECTION), oe = Q.category.includes(Cr.GROUP);
|
|
496
490
|
if ((j || oe) && !(N.children.length === 1)) {
|
|
497
491
|
const $ = N.children.filter(
|
|
498
492
|
(Z) => !Z.attributes.width
|
|
@@ -555,11 +549,11 @@ const LE = () => {
|
|
|
555
549
|
path: N,
|
|
556
550
|
node: F
|
|
557
551
|
});
|
|
558
|
-
const
|
|
552
|
+
const Q = he.end(e, N);
|
|
559
553
|
he.above(e, {
|
|
560
|
-
at:
|
|
554
|
+
at: Q,
|
|
561
555
|
match: z.isUnsetElement
|
|
562
|
-
}) ? ye.deselect(e) : ye.setSelection(e, { anchor:
|
|
556
|
+
}) ? ye.deselect(e) : ye.setSelection(e, { anchor: Q, focus: Q });
|
|
563
557
|
});
|
|
564
558
|
}, e.removeNode = (T) => {
|
|
565
559
|
const N = T.path;
|
|
@@ -583,11 +577,11 @@ const LE = () => {
|
|
|
583
577
|
if (De.getBlockByType(F.type).category === T.category)
|
|
584
578
|
return [F, Ve.findPath(e, F)];
|
|
585
579
|
{
|
|
586
|
-
const
|
|
580
|
+
const G = he.above(e, {
|
|
587
581
|
at: Ve.findPath(e, F),
|
|
588
582
|
match: (j) => z.isElement(j) ? De.getBlockByType(j.type).category === T.category : !1
|
|
589
583
|
});
|
|
590
|
-
return
|
|
584
|
+
return G ? [G[0], G[1]] : null;
|
|
591
585
|
}
|
|
592
586
|
} catch (N) {
|
|
593
587
|
return null;
|
|
@@ -602,7 +596,7 @@ const LE = () => {
|
|
|
602
596
|
{
|
|
603
597
|
const F = he.above(e, {
|
|
604
598
|
at: Ve.findPath(e, N),
|
|
605
|
-
match: (
|
|
599
|
+
match: (Q) => z.isElement(Q) ? Q.type === T.type : !1
|
|
606
600
|
});
|
|
607
601
|
return F ? [F[0], F[1]] : null;
|
|
608
602
|
}
|
|
@@ -619,7 +613,7 @@ const LE = () => {
|
|
|
619
613
|
{
|
|
620
614
|
const F = he.above(e, {
|
|
621
615
|
at: Ve.findPath(e, N),
|
|
622
|
-
match: (
|
|
616
|
+
match: (Q, G) => T.match(Q, G)
|
|
623
617
|
});
|
|
624
618
|
return F ? [F[0], F[1]] : null;
|
|
625
619
|
}
|
|
@@ -627,11 +621,11 @@ const LE = () => {
|
|
|
627
621
|
return null;
|
|
628
622
|
}
|
|
629
623
|
}, e.writeHistory = (T, N) => {
|
|
630
|
-
var F,
|
|
624
|
+
var F, Q, G, j, oe, w, $, te, Z, ne, Ce, _e, re, ge;
|
|
631
625
|
if (T === "undos") {
|
|
632
626
|
const ke = es;
|
|
633
627
|
if (((F = N == null ? void 0 : N.operations) == null ? void 0 : F[0].type) === "set_node" && (es = !0, LE()), ke) {
|
|
634
|
-
const Ne = e.history[T].slice(-1)[0], nt = (
|
|
628
|
+
const Ne = e.history[T].slice(-1)[0], nt = (G = (Q = Ne == null ? void 0 : Ne.operations) == null ? void 0 : Q[0]) == null ? void 0 : G.path;
|
|
635
629
|
if (((j = N == null ? void 0 : N.operations) == null ? void 0 : j[0].type) === "set_node" && ((oe = Ne == null ? void 0 : Ne.operations) == null ? void 0 : oe[0].type) === "set_node" && (N == null ? void 0 : N.operations.length) === 1) {
|
|
636
630
|
const Ft = ($ = (w = N == null ? void 0 : N.operations) == null ? void 0 : w[0]) == null ? void 0 : $.path;
|
|
637
631
|
$e.equals(nt, Ft) && e.history[T].pop();
|
|
@@ -639,9 +633,9 @@ const LE = () => {
|
|
|
639
633
|
(Ce = (ne = Ne == null ? void 0 : Ne.operations) == null ? void 0 : ne[0]) == null ? void 0 : Ce.newProperties,
|
|
640
634
|
(re = (_e = N == null ? void 0 : N.operations) == null ? void 0 : _e[0]) == null ? void 0 : re.newProperties
|
|
641
635
|
);
|
|
642
|
-
e.history[T].push(
|
|
636
|
+
e.history[T].push(W(p({}, N), {
|
|
643
637
|
operations: [
|
|
644
|
-
|
|
638
|
+
W(p({}, (ge = N == null ? void 0 : N.operations) == null ? void 0 : ge[0]), {
|
|
645
639
|
properties: Ae,
|
|
646
640
|
newProperties: Pe
|
|
647
641
|
})
|
|
@@ -653,29 +647,29 @@ const LE = () => {
|
|
|
653
647
|
}
|
|
654
648
|
e.history[T].push(N);
|
|
655
649
|
}, e.apply = (T) => {
|
|
656
|
-
var N, F,
|
|
650
|
+
var N, F, Q;
|
|
657
651
|
if (!(T.type === "set_node" && fa(T.newProperties, T.properties))) {
|
|
658
652
|
if (T.type === "move_node") {
|
|
659
|
-
const
|
|
660
|
-
if (z.isElement(
|
|
653
|
+
const G = _t.get(e, T.path), j = _t.get(e, $e.parent(T.newPath));
|
|
654
|
+
if (z.isElement(G) && z.isElement(j) && !z.isParentCategoryType(G.type, j.type))
|
|
661
655
|
return;
|
|
662
656
|
}
|
|
663
657
|
if (T.type === "remove_text") {
|
|
664
|
-
const [
|
|
658
|
+
const [G] = he.nodes(e, {
|
|
665
659
|
match: (j) => z.isElement(j) && j.type === de.MERGETAG,
|
|
666
660
|
at: T.path
|
|
667
661
|
});
|
|
668
|
-
if (
|
|
669
|
-
ye.removeNodes(e, { at:
|
|
662
|
+
if (G) {
|
|
663
|
+
ye.removeNodes(e, { at: G[1] });
|
|
670
664
|
return;
|
|
671
665
|
}
|
|
672
666
|
}
|
|
673
667
|
if (T.type === "remove_node" || T.type === "merge_node") {
|
|
674
|
-
const
|
|
668
|
+
const G = he.above(e, {
|
|
675
669
|
at: T.path,
|
|
676
670
|
match: z.isBlockElement
|
|
677
671
|
});
|
|
678
|
-
if (
|
|
672
|
+
if (G && z.isVoidBlockElement(G[0]))
|
|
679
673
|
return;
|
|
680
674
|
}
|
|
681
675
|
if (T.type === "set_selection")
|
|
@@ -683,15 +677,15 @@ const LE = () => {
|
|
|
683
677
|
if (T.newProperties && An.isRange(T.newProperties) && An.isCollapsed(T.newProperties) && !he.isEnd(
|
|
684
678
|
e,
|
|
685
679
|
(N = T.newProperties) == null ? void 0 : N.anchor,
|
|
686
|
-
(
|
|
680
|
+
(Q = (F = T.newProperties) == null ? void 0 : F.anchor) == null ? void 0 : Q.path
|
|
687
681
|
)) {
|
|
688
|
-
const
|
|
682
|
+
const G = he.above(e, {
|
|
689
683
|
match: (j) => z.isBlockElement(j),
|
|
690
684
|
at: T.newProperties.anchor.path,
|
|
691
685
|
mode: "lowest"
|
|
692
686
|
});
|
|
693
|
-
if (
|
|
694
|
-
const j =
|
|
687
|
+
if (G) {
|
|
688
|
+
const j = G[0], oe = j.children.findIndex(
|
|
695
689
|
($) => z.isElement($) && $.type === de.MERGETAG
|
|
696
690
|
), w = j.children[j.children.length - 1];
|
|
697
691
|
oe === j.children.length - 2 && z.isTextNode(w) && w.text === "" && ye.insertNodes(
|
|
@@ -699,14 +693,14 @@ const LE = () => {
|
|
|
699
693
|
{ text: " " },
|
|
700
694
|
{
|
|
701
695
|
at: $e.next([
|
|
702
|
-
...
|
|
696
|
+
...G[1],
|
|
703
697
|
j.children.length - 1
|
|
704
698
|
])
|
|
705
699
|
}
|
|
706
700
|
);
|
|
707
701
|
}
|
|
708
702
|
}
|
|
709
|
-
} catch (
|
|
703
|
+
} catch (G) {
|
|
710
704
|
}
|
|
711
705
|
return I(T);
|
|
712
706
|
}
|
|
@@ -730,7 +724,7 @@ const vl = ds({}), SE = ({ children: e }) => {
|
|
|
730
724
|
), [L, P] = f.useState(null), [B, y] = f.useState(null), [O, J] = f.useState(null), [ae, T] = f.useState(
|
|
731
725
|
"DESKTOP"
|
|
732
726
|
/* DESKTOP */
|
|
733
|
-
), [N, F] = f.useState(null), [
|
|
727
|
+
), [N, F] = f.useState(null), [Q, G] = f.useState(
|
|
734
728
|
null
|
|
735
729
|
), j = el((te) => {
|
|
736
730
|
try {
|
|
@@ -789,8 +783,8 @@ const vl = ds({}), SE = ({ children: e }) => {
|
|
|
789
783
|
selectedNodePath: g,
|
|
790
784
|
hoverNodePath: O,
|
|
791
785
|
dragNodePath: N,
|
|
792
|
-
dragoverNodePath:
|
|
793
|
-
setDragoverNodePath:
|
|
786
|
+
dragoverNodePath: Q,
|
|
787
|
+
setDragoverNodePath: G,
|
|
794
788
|
setSelectedNodePath: j,
|
|
795
789
|
setHoverNodePath: oe,
|
|
796
790
|
setDragNodePath: F,
|
|
@@ -806,7 +800,7 @@ const vl = ds({}), SE = ({ children: e }) => {
|
|
|
806
800
|
g,
|
|
807
801
|
O,
|
|
808
802
|
N,
|
|
809
|
-
|
|
803
|
+
Q,
|
|
810
804
|
j,
|
|
811
805
|
oe,
|
|
812
806
|
ae,
|
|
@@ -882,8 +876,8 @@ const _u = () => Tn(Ll), mD = () => {
|
|
|
882
876
|
content: e.initialValues.content,
|
|
883
877
|
universalElements: e.universalElementSetting.elements
|
|
884
878
|
}));
|
|
885
|
-
const
|
|
886
|
-
return P.children =
|
|
879
|
+
const Q = [F];
|
|
880
|
+
return P.children = Q, L.current = Q, Q;
|
|
887
881
|
}, [P, e.initialValues.content, e.universalElementSetting]);
|
|
888
882
|
wt(() => {
|
|
889
883
|
Ju.auth(e.clientId).then(() => {
|
|
@@ -892,8 +886,8 @@ const _u = () => Tn(Ll), mD = () => {
|
|
|
892
886
|
if (b(F, "response.status") === 401)
|
|
893
887
|
g(!0);
|
|
894
888
|
else {
|
|
895
|
-
const
|
|
896
|
-
j.innerHTML =
|
|
889
|
+
const G = tl, j = document.createElement("div");
|
|
890
|
+
j.innerHTML = G, document.body.appendChild(j);
|
|
897
891
|
}
|
|
898
892
|
});
|
|
899
893
|
}, [e.clientId]), wt(() => {
|
|
@@ -905,8 +899,8 @@ const _u = () => Tn(Ll), mD = () => {
|
|
|
905
899
|
}, [s, e.mergetags]);
|
|
906
900
|
const y = e.children, O = e.footer, J = e.onPageChange, ae = Re(
|
|
907
901
|
(F) => {
|
|
908
|
-
const
|
|
909
|
-
J == null || J(
|
|
902
|
+
const Q = F[0];
|
|
903
|
+
J == null || J(Q, P);
|
|
910
904
|
},
|
|
911
905
|
[J, P]
|
|
912
906
|
), T = e.EnhanceProvider, N = q(() => ({
|
|
@@ -996,7 +990,7 @@ const As = (e) => {
|
|
|
996
990
|
}
|
|
997
991
|
}), /* @__PURE__ */ f.createElement(
|
|
998
992
|
"span",
|
|
999
|
-
|
|
993
|
+
W(p({
|
|
1000
994
|
contentEditable: e.contentUneditable ? !1 : void 0,
|
|
1001
995
|
"data-placeholder": Mu("Type '/' for commands")
|
|
1002
996
|
}, e.attributes), {
|
|
@@ -1031,7 +1025,7 @@ const ME = (l) => {
|
|
|
1031
1025
|
};
|
|
1032
1026
|
return /* @__PURE__ */ f.createElement(
|
|
1033
1027
|
"iframe",
|
|
1034
|
-
|
|
1028
|
+
W(p({
|
|
1035
1029
|
frameBorder: 0,
|
|
1036
1030
|
title: u,
|
|
1037
1031
|
srcDoc: '<!doctype html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office"> <head></head> <body> </body> </html>'
|
|
@@ -1104,8 +1098,8 @@ const ME = (l) => {
|
|
|
1104
1098
|
ElementSelected: T,
|
|
1105
1099
|
ElementPlaceholder: N,
|
|
1106
1100
|
ElementDragover: F,
|
|
1107
|
-
attributesVariables:
|
|
1108
|
-
enabledResponsive:
|
|
1101
|
+
attributesVariables: Q,
|
|
1102
|
+
enabledResponsive: G = !0
|
|
1109
1103
|
} = _u();
|
|
1110
1104
|
let j = Ve.findPath(l, u.element);
|
|
1111
1105
|
$e.equals(j, m.current) ? j = m.current : m.current = j;
|
|
@@ -1135,11 +1129,11 @@ const ME = (l) => {
|
|
|
1135
1129
|
I(null);
|
|
1136
1130
|
}, [l, a, u.element, J]), q(() => /* @__PURE__ */ f.createElement(
|
|
1137
1131
|
e,
|
|
1138
|
-
|
|
1132
|
+
W(p({}, u), {
|
|
1139
1133
|
attributes: _e,
|
|
1140
1134
|
activeTab: J,
|
|
1141
|
-
attributesVariables:
|
|
1142
|
-
enabledResponsive:
|
|
1135
|
+
attributesVariables: Q,
|
|
1136
|
+
enabledResponsive: G,
|
|
1143
1137
|
placeholder: /* @__PURE__ */ f.createElement(f.Fragment, null, N && g && /* @__PURE__ */ f.createElement(
|
|
1144
1138
|
N,
|
|
1145
1139
|
{
|
|
@@ -1176,8 +1170,8 @@ const ME = (l) => {
|
|
|
1176
1170
|
})
|
|
1177
1171
|
), [
|
|
1178
1172
|
u,
|
|
1179
|
-
W,
|
|
1180
1173
|
Q,
|
|
1174
|
+
G,
|
|
1181
1175
|
_e,
|
|
1182
1176
|
N,
|
|
1183
1177
|
g,
|
|
@@ -1427,12 +1421,12 @@ const sg = (e, u) => Dn(
|
|
|
1427
1421
|
const m = ig(u[l]);
|
|
1428
1422
|
if (m) {
|
|
1429
1423
|
const g = new m(s);
|
|
1430
|
-
return
|
|
1424
|
+
return W(p({}, a), {
|
|
1431
1425
|
[l]: g.getValue()
|
|
1432
1426
|
});
|
|
1433
1427
|
}
|
|
1434
1428
|
}
|
|
1435
|
-
return
|
|
1429
|
+
return W(p({}, a), {
|
|
1436
1430
|
[l]: s
|
|
1437
1431
|
});
|
|
1438
1432
|
},
|
|
@@ -1465,7 +1459,7 @@ mn.exports;
|
|
|
1465
1459
|
// http://html5sec.org/#133.
|
|
1466
1460
|
"`": "`"
|
|
1467
1461
|
}, J = /&#(?:[xX][^a-fA-F0-9]|[^0-9xX])/, ae = /[\0-\x08\x0B\x0E-\x1F\x7F-\x9F\uFDD0-\uFDEF\uFFFE\uFFFF]|[\uD83F\uD87F\uD8BF\uD8FF\uD93F\uD97F\uD9BF\uD9FF\uDA3F\uDA7F\uDABF\uDAFF\uDB3F\uDB7F\uDBBF\uDBFF][\uDFFE\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/, T = /&(CounterClockwiseContourIntegral|DoubleLongLeftRightArrow|ClockwiseContourIntegral|NotNestedGreaterGreater|NotSquareSupersetEqual|DiacriticalDoubleAcute|NotRightTriangleEqual|NotSucceedsSlantEqual|NotPrecedesSlantEqual|CloseCurlyDoubleQuote|NegativeVeryThinSpace|DoubleContourIntegral|FilledVerySmallSquare|CapitalDifferentialD|OpenCurlyDoubleQuote|EmptyVerySmallSquare|NestedGreaterGreater|DoubleLongRightArrow|NotLeftTriangleEqual|NotGreaterSlantEqual|ReverseUpEquilibrium|DoubleLeftRightArrow|NotSquareSubsetEqual|NotDoubleVerticalBar|RightArrowLeftArrow|NotGreaterFullEqual|NotRightTriangleBar|SquareSupersetEqual|DownLeftRightVector|DoubleLongLeftArrow|leftrightsquigarrow|LeftArrowRightArrow|NegativeMediumSpace|blacktriangleright|RightDownVectorBar|PrecedesSlantEqual|RightDoubleBracket|SucceedsSlantEqual|NotLeftTriangleBar|RightTriangleEqual|SquareIntersection|RightDownTeeVector|ReverseEquilibrium|NegativeThickSpace|longleftrightarrow|Longleftrightarrow|LongLeftRightArrow|DownRightTeeVector|DownRightVectorBar|GreaterSlantEqual|SquareSubsetEqual|LeftDownVectorBar|LeftDoubleBracket|VerticalSeparator|rightleftharpoons|NotGreaterGreater|NotSquareSuperset|blacktriangleleft|blacktriangledown|NegativeThinSpace|LeftDownTeeVector|NotLessSlantEqual|leftrightharpoons|DoubleUpDownArrow|DoubleVerticalBar|LeftTriangleEqual|FilledSmallSquare|twoheadrightarrow|NotNestedLessLess|DownLeftTeeVector|DownLeftVectorBar|RightAngleBracket|NotTildeFullEqual|NotReverseElement|RightUpDownVector|DiacriticalTilde|NotSucceedsTilde|circlearrowright|NotPrecedesEqual|rightharpoondown|DoubleRightArrow|NotSucceedsEqual|NonBreakingSpace|NotRightTriangle|LessEqualGreater|RightUpTeeVector|LeftAngleBracket|GreaterFullEqual|DownArrowUpArrow|RightUpVectorBar|twoheadleftarrow|GreaterEqualLess|downharpoonright|RightTriangleBar|ntrianglerighteq|NotSupersetEqual|LeftUpDownVector|DiacriticalAcute|rightrightarrows|vartriangleright|UpArrowDownArrow|DiacriticalGrave|UnderParenthesis|EmptySmallSquare|LeftUpVectorBar|leftrightarrows|DownRightVector|downharpoonleft|trianglerighteq|ShortRightArrow|OverParenthesis|DoubleLeftArrow|DoubleDownArrow|NotSquareSubset|bigtriangledown|ntrianglelefteq|UpperRightArrow|curvearrowright|vartriangleleft|NotLeftTriangle|nleftrightarrow|LowerRightArrow|NotHumpDownHump|NotGreaterTilde|rightthreetimes|LeftUpTeeVector|NotGreaterEqual|straightepsilon|LeftTriangleBar|rightsquigarrow|ContourIntegral|rightleftarrows|CloseCurlyQuote|RightDownVector|LeftRightVector|nLeftrightarrow|leftharpoondown|circlearrowleft|SquareSuperset|OpenCurlyQuote|hookrightarrow|HorizontalLine|DiacriticalDot|NotLessGreater|ntriangleright|DoubleRightTee|InvisibleComma|InvisibleTimes|LowerLeftArrow|DownLeftVector|NotSubsetEqual|curvearrowleft|trianglelefteq|NotVerticalBar|TildeFullEqual|downdownarrows|NotGreaterLess|RightTeeVector|ZeroWidthSpace|looparrowright|LongRightArrow|doublebarwedge|ShortLeftArrow|ShortDownArrow|RightVectorBar|GreaterGreater|ReverseElement|rightharpoonup|LessSlantEqual|leftthreetimes|upharpoonright|rightarrowtail|LeftDownVector|Longrightarrow|NestedLessLess|UpperLeftArrow|nshortparallel|leftleftarrows|leftrightarrow|Leftrightarrow|LeftRightArrow|longrightarrow|upharpoonleft|RightArrowBar|ApplyFunction|LeftTeeVector|leftarrowtail|NotEqualTilde|varsubsetneqq|varsupsetneqq|RightTeeArrow|SucceedsEqual|SucceedsTilde|LeftVectorBar|SupersetEqual|hookleftarrow|DifferentialD|VerticalTilde|VeryThinSpace|blacktriangle|bigtriangleup|LessFullEqual|divideontimes|leftharpoonup|UpEquilibrium|ntriangleleft|RightTriangle|measuredangle|shortparallel|longleftarrow|Longleftarrow|LongLeftArrow|DoubleLeftTee|Poincareplane|PrecedesEqual|triangleright|DoubleUpArrow|RightUpVector|fallingdotseq|looparrowleft|PrecedesTilde|NotTildeEqual|NotTildeTilde|smallsetminus|Proportional|triangleleft|triangledown|UnderBracket|NotHumpEqual|exponentiale|ExponentialE|NotLessTilde|HilbertSpace|RightCeiling|blacklozenge|varsupsetneq|HumpDownHump|GreaterEqual|VerticalLine|LeftTeeArrow|NotLessEqual|DownTeeArrow|LeftTriangle|varsubsetneq|Intersection|NotCongruent|DownArrowBar|LeftUpVector|LeftArrowBar|risingdotseq|GreaterTilde|RoundImplies|SquareSubset|ShortUpArrow|NotSuperset|quaternions|precnapprox|backepsilon|preccurlyeq|OverBracket|blacksquare|MediumSpace|VerticalBar|circledcirc|circleddash|CircleMinus|CircleTimes|LessGreater|curlyeqprec|curlyeqsucc|diamondsuit|UpDownArrow|Updownarrow|RuleDelayed|Rrightarrow|updownarrow|RightVector|nRightarrow|nrightarrow|eqslantless|LeftCeiling|Equilibrium|SmallCircle|expectation|NotSucceeds|thickapprox|GreaterLess|SquareUnion|NotPrecedes|NotLessLess|straightphi|succnapprox|succcurlyeq|SubsetEqual|sqsupseteq|Proportion|Laplacetrf|ImaginaryI|supsetneqq|NotGreater|gtreqqless|NotElement|ThickSpace|TildeEqual|TildeTilde|Fouriertrf|rmoustache|EqualTilde|eqslantgtr|UnderBrace|LeftVector|UpArrowBar|nLeftarrow|nsubseteqq|subsetneqq|nsupseteqq|nleftarrow|succapprox|lessapprox|UpTeeArrow|upuparrows|curlywedge|lesseqqgtr|varepsilon|varnothing|RightFloor|complement|CirclePlus|sqsubseteq|Lleftarrow|circledast|RightArrow|Rightarrow|rightarrow|lmoustache|Bernoullis|precapprox|mapstoleft|mapstodown|longmapsto|dotsquare|downarrow|DoubleDot|nsubseteq|supsetneq|leftarrow|nsupseteq|subsetneq|ThinSpace|ngeqslant|subseteqq|HumpEqual|NotSubset|triangleq|NotCupCap|lesseqgtr|heartsuit|TripleDot|Leftarrow|Coproduct|Congruent|varpropto|complexes|gvertneqq|LeftArrow|LessTilde|supseteqq|MinusPlus|CircleDot|nleqslant|NotExists|gtreqless|nparallel|UnionPlus|LeftFloor|checkmark|CenterDot|centerdot|Mellintrf|gtrapprox|bigotimes|OverBrace|spadesuit|therefore|pitchfork|rationals|PlusMinus|Backslash|Therefore|DownBreve|backsimeq|backprime|DownArrow|nshortmid|Downarrow|lvertneqq|eqvparsl|imagline|imagpart|infintie|integers|Integral|intercal|LessLess|Uarrocir|intlarhk|sqsupset|angmsdaf|sqsubset|llcorner|vartheta|cupbrcap|lnapprox|Superset|SuchThat|succnsim|succneqq|angmsdag|biguplus|curlyvee|trpezium|Succeeds|NotTilde|bigwedge|angmsdah|angrtvbd|triminus|cwconint|fpartint|lrcorner|smeparsl|subseteq|urcorner|lurdshar|laemptyv|DDotrahd|approxeq|ldrushar|awconint|mapstoup|backcong|shortmid|triangle|geqslant|gesdotol|timesbar|circledR|circledS|setminus|multimap|naturals|scpolint|ncongdot|RightTee|boxminus|gnapprox|boxtimes|andslope|thicksim|angmsdaa|varsigma|cirfnint|rtriltri|angmsdab|rppolint|angmsdac|barwedge|drbkarow|clubsuit|thetasym|bsolhsub|capbrcup|dzigrarr|doteqdot|DotEqual|dotminus|UnderBar|NotEqual|realpart|otimesas|ulcorner|hksearow|hkswarow|parallel|PartialD|elinters|emptyset|plusacir|bbrktbrk|angmsdad|pointint|bigoplus|angmsdae|Precedes|bigsqcup|varkappa|notindot|supseteq|precneqq|precnsim|profalar|profline|profsurf|leqslant|lesdotor|raemptyv|subplus|notnivb|notnivc|subrarr|zigrarr|vzigzag|submult|subedot|Element|between|cirscir|larrbfs|larrsim|lotimes|lbrksld|lbrkslu|lozenge|ldrdhar|dbkarow|bigcirc|epsilon|simrarr|simplus|ltquest|Epsilon|luruhar|gtquest|maltese|npolint|eqcolon|npreceq|bigodot|ddagger|gtrless|bnequiv|harrcir|ddotseq|equivDD|backsim|demptyv|nsqsube|nsqsupe|Upsilon|nsubset|upsilon|minusdu|nsucceq|swarrow|nsupset|coloneq|searrow|boxplus|napprox|natural|asympeq|alefsym|congdot|nearrow|bigstar|diamond|supplus|tritime|LeftTee|nvinfin|triplus|NewLine|nvltrie|nvrtrie|nwarrow|nexists|Diamond|ruluhar|Implies|supmult|angzarr|suplarr|suphsub|questeq|because|digamma|Because|olcross|bemptyv|omicron|Omicron|rotimes|NoBreak|intprod|angrtvb|orderof|uwangle|suphsol|lesdoto|orslope|DownTee|realine|cudarrl|rdldhar|OverBar|supedot|lessdot|supdsub|topfork|succsim|rbrkslu|rbrksld|pertenk|cudarrr|isindot|planckh|lessgtr|pluscir|gesdoto|plussim|plustwo|lesssim|cularrp|rarrsim|Cayleys|notinva|notinvb|notinvc|UpArrow|Uparrow|uparrow|NotLess|dwangle|precsim|Product|curarrm|Cconint|dotplus|rarrbfs|ccupssm|Cedilla|cemptyv|notniva|quatint|frac35|frac38|frac45|frac56|frac58|frac78|tridot|xoplus|gacute|gammad|Gammad|lfisht|lfloor|bigcup|sqsupe|gbreve|Gbreve|lharul|sqsube|sqcups|Gcedil|apacir|llhard|lmidot|Lmidot|lmoust|andand|sqcaps|approx|Abreve|spades|circeq|tprime|divide|topcir|Assign|topbot|gesdot|divonx|xuplus|timesd|gesles|atilde|solbar|SOFTcy|loplus|timesb|lowast|lowbar|dlcorn|dlcrop|softcy|dollar|lparlt|thksim|lrhard|Atilde|lsaquo|smashp|bigvee|thinsp|wreath|bkarow|lsquor|lstrok|Lstrok|lthree|ltimes|ltlarr|DotDot|simdot|ltrPar|weierp|xsqcup|angmsd|sigmav|sigmaf|zeetrf|Zcaron|zcaron|mapsto|vsupne|thetav|cirmid|marker|mcomma|Zacute|vsubnE|there4|gtlPar|vsubne|bottom|gtrarr|SHCHcy|shchcy|midast|midcir|middot|minusb|minusd|gtrdot|bowtie|sfrown|mnplus|models|colone|seswar|Colone|mstpos|searhk|gtrsim|nacute|Nacute|boxbox|telrec|hairsp|Tcedil|nbumpe|scnsim|ncaron|Ncaron|ncedil|Ncedil|hamilt|Scedil|nearhk|hardcy|HARDcy|tcedil|Tcaron|commat|nequiv|nesear|tcaron|target|hearts|nexist|varrho|scedil|Scaron|scaron|hellip|Sacute|sacute|hercon|swnwar|compfn|rtimes|rthree|rsquor|rsaquo|zacute|wedgeq|homtht|barvee|barwed|Barwed|rpargt|horbar|conint|swarhk|roplus|nltrie|hslash|hstrok|Hstrok|rmoust|Conint|bprime|hybull|hyphen|iacute|Iacute|supsup|supsub|supsim|varphi|coprod|brvbar|agrave|Supset|supset|igrave|Igrave|notinE|Agrave|iiiint|iinfin|copysr|wedbar|Verbar|vangrt|becaus|incare|verbar|inodot|bullet|drcorn|intcal|drcrop|cularr|vellip|Utilde|bumpeq|cupcap|dstrok|Dstrok|CupCap|cupcup|cupdot|eacute|Eacute|supdot|iquest|easter|ecaron|Ecaron|ecolon|isinsv|utilde|itilde|Itilde|curarr|succeq|Bumpeq|cacute|ulcrop|nparsl|Cacute|nprcue|egrave|Egrave|nrarrc|nrarrw|subsup|subsub|nrtrie|jsercy|nsccue|Jsercy|kappav|kcedil|Kcedil|subsim|ulcorn|nsimeq|egsdot|veebar|kgreen|capand|elsdot|Subset|subset|curren|aacute|lacute|Lacute|emptyv|ntilde|Ntilde|lagran|lambda|Lambda|capcap|Ugrave|langle|subdot|emsp13|numero|emsp14|nvdash|nvDash|nVdash|nVDash|ugrave|ufisht|nvHarr|larrfs|nvlArr|larrhk|larrlp|larrpl|nvrArr|Udblac|nwarhk|larrtl|nwnear|oacute|Oacute|latail|lAtail|sstarf|lbrace|odblac|Odblac|lbrack|udblac|odsold|eparsl|lcaron|Lcaron|ograve|Ograve|lcedil|Lcedil|Aacute|ssmile|ssetmn|squarf|ldquor|capcup|ominus|cylcty|rharul|eqcirc|dagger|rfloor|rfisht|Dagger|daleth|equals|origof|capdot|equest|dcaron|Dcaron|rdquor|oslash|Oslash|otilde|Otilde|otimes|Otimes|urcrop|Ubreve|ubreve|Yacute|Uacute|uacute|Rcedil|rcedil|urcorn|parsim|Rcaron|Vdashl|rcaron|Tstrok|percnt|period|permil|Exists|yacute|rbrack|rbrace|phmmat|ccaron|Ccaron|planck|ccedil|plankv|tstrok|female|plusdo|plusdu|ffilig|plusmn|ffllig|Ccedil|rAtail|dfisht|bernou|ratail|Rarrtl|rarrtl|angsph|rarrpl|rarrlp|rarrhk|xwedge|xotime|forall|ForAll|Vvdash|vsupnE|preceq|bigcap|frac12|frac13|frac14|primes|rarrfs|prnsim|frac15|Square|frac16|square|lesdot|frac18|frac23|propto|prurel|rarrap|rangle|puncsp|frac25|Racute|qprime|racute|lesges|frac34|abreve|AElig|eqsim|utdot|setmn|urtri|Equal|Uring|seArr|uring|searr|dashv|Dashv|mumap|nabla|iogon|Iogon|sdote|sdotb|scsim|napid|napos|equiv|natur|Acirc|dblac|erarr|nbump|iprod|erDot|ucirc|awint|esdot|angrt|ncong|isinE|scnap|Scirc|scirc|ndash|isins|Ubrcy|nearr|neArr|isinv|nedot|ubrcy|acute|Ycirc|iukcy|Iukcy|xutri|nesim|caret|jcirc|Jcirc|caron|twixt|ddarr|sccue|exist|jmath|sbquo|ngeqq|angst|ccaps|lceil|ngsim|UpTee|delta|Delta|rtrif|nharr|nhArr|nhpar|rtrie|jukcy|Jukcy|kappa|rsquo|Kappa|nlarr|nlArr|TSHcy|rrarr|aogon|Aogon|fflig|xrarr|tshcy|ccirc|nleqq|filig|upsih|nless|dharl|nlsim|fjlig|ropar|nltri|dharr|robrk|roarr|fllig|fltns|roang|rnmid|subnE|subne|lAarr|trisb|Ccirc|acirc|ccups|blank|VDash|forkv|Vdash|langd|cedil|blk12|blk14|laquo|strns|diams|notin|vDash|larrb|blk34|block|disin|uplus|vdash|vBarv|aelig|starf|Wedge|check|xrArr|lates|lbarr|lBarr|notni|lbbrk|bcong|frasl|lbrke|frown|vrtri|vprop|vnsup|gamma|Gamma|wedge|xodot|bdquo|srarr|doteq|ldquo|boxdl|boxdL|gcirc|Gcirc|boxDl|boxDL|boxdr|boxdR|boxDr|TRADE|trade|rlhar|boxDR|vnsub|npart|vltri|rlarr|boxhd|boxhD|nprec|gescc|nrarr|nrArr|boxHd|boxHD|boxhu|boxhU|nrtri|boxHu|clubs|boxHU|times|colon|Colon|gimel|xlArr|Tilde|nsime|tilde|nsmid|nspar|THORN|thorn|xlarr|nsube|nsubE|thkap|xhArr|comma|nsucc|boxul|boxuL|nsupe|nsupE|gneqq|gnsim|boxUl|boxUL|grave|boxur|boxuR|boxUr|boxUR|lescc|angle|bepsi|boxvh|varpi|boxvH|numsp|Theta|gsime|gsiml|theta|boxVh|boxVH|boxvl|gtcir|gtdot|boxvL|boxVl|boxVL|crarr|cross|Cross|nvsim|boxvr|nwarr|nwArr|sqsup|dtdot|Uogon|lhard|lharu|dtrif|ocirc|Ocirc|lhblk|duarr|odash|sqsub|Hacek|sqcup|llarr|duhar|oelig|OElig|ofcir|boxvR|uogon|lltri|boxVr|csube|uuarr|ohbar|csupe|ctdot|olarr|olcir|harrw|oline|sqcap|omacr|Omacr|omega|Omega|boxVR|aleph|lneqq|lnsim|loang|loarr|rharu|lobrk|hcirc|operp|oplus|rhard|Hcirc|orarr|Union|order|ecirc|Ecirc|cuepr|szlig|cuesc|breve|reals|eDDot|Breve|hoarr|lopar|utrif|rdquo|Umacr|umacr|efDot|swArr|ultri|alpha|rceil|ovbar|swarr|Wcirc|wcirc|smtes|smile|bsemi|lrarr|aring|parsl|lrhar|bsime|uhblk|lrtri|cupor|Aring|uharr|uharl|slarr|rbrke|bsolb|lsime|rbbrk|RBarr|lsimg|phone|rBarr|rbarr|icirc|lsquo|Icirc|emacr|Emacr|ratio|simne|plusb|simlE|simgE|simeq|pluse|ltcir|ltdot|empty|xharr|xdtri|iexcl|Alpha|ltrie|rarrw|pound|ltrif|xcirc|bumpe|prcue|bumpE|asymp|amacr|cuvee|Sigma|sigma|iiint|udhar|iiota|ijlig|IJlig|supnE|imacr|Imacr|prime|Prime|image|prnap|eogon|Eogon|rarrc|mdash|mDDot|cuwed|imath|supne|imped|Amacr|udarr|prsim|micro|rarrb|cwint|raquo|infin|eplus|range|rangd|Ucirc|radic|minus|amalg|veeeq|rAarr|epsiv|ycirc|quest|sharp|quot|zwnj|Qscr|race|qscr|Qopf|qopf|qint|rang|Rang|Zscr|zscr|Zopf|zopf|rarr|rArr|Rarr|Pscr|pscr|prop|prod|prnE|prec|ZHcy|zhcy|prap|Zeta|zeta|Popf|popf|Zdot|plus|zdot|Yuml|yuml|phiv|YUcy|yucy|Yscr|yscr|perp|Yopf|yopf|part|para|YIcy|Ouml|rcub|yicy|YAcy|rdca|ouml|osol|Oscr|rdsh|yacy|real|oscr|xvee|andd|rect|andv|Xscr|oror|ordm|ordf|xscr|ange|aopf|Aopf|rHar|Xopf|opar|Oopf|xopf|xnis|rhov|oopf|omid|xmap|oint|apid|apos|ogon|ascr|Ascr|odot|odiv|xcup|xcap|ocir|oast|nvlt|nvle|nvgt|nvge|nvap|Wscr|wscr|auml|ntlg|ntgl|nsup|nsub|nsim|Nscr|nscr|nsce|Wopf|ring|npre|wopf|npar|Auml|Barv|bbrk|Nopf|nopf|nmid|nLtv|beta|ropf|Ropf|Beta|beth|nles|rpar|nleq|bnot|bNot|nldr|NJcy|rscr|Rscr|Vscr|vscr|rsqb|njcy|bopf|nisd|Bopf|rtri|Vopf|nGtv|ngtr|vopf|boxh|boxH|boxv|nges|ngeq|boxV|bscr|scap|Bscr|bsim|Vert|vert|bsol|bull|bump|caps|cdot|ncup|scnE|ncap|nbsp|napE|Cdot|cent|sdot|Vbar|nang|vBar|chcy|Mscr|mscr|sect|semi|CHcy|Mopf|mopf|sext|circ|cire|mldr|mlcp|cirE|comp|shcy|SHcy|vArr|varr|cong|copf|Copf|copy|COPY|malt|male|macr|lvnE|cscr|ltri|sime|ltcc|simg|Cscr|siml|csub|Uuml|lsqb|lsim|uuml|csup|Lscr|lscr|utri|smid|lpar|cups|smte|lozf|darr|Lopf|Uscr|solb|lopf|sopf|Sopf|lneq|uscr|spar|dArr|lnap|Darr|dash|Sqrt|LJcy|ljcy|lHar|dHar|Upsi|upsi|diam|lesg|djcy|DJcy|leqq|dopf|Dopf|dscr|Dscr|dscy|ldsh|ldca|squf|DScy|sscr|Sscr|dsol|lcub|late|star|Star|Uopf|Larr|lArr|larr|uopf|dtri|dzcy|sube|subE|Lang|lang|Kscr|kscr|Kopf|kopf|KJcy|kjcy|KHcy|khcy|DZcy|ecir|edot|eDot|Jscr|jscr|succ|Jopf|jopf|Edot|uHar|emsp|ensp|Iuml|iuml|eopf|isin|Iscr|iscr|Eopf|epar|sung|epsi|escr|sup1|sup2|sup3|Iota|iota|supe|supE|Iopf|iopf|IOcy|iocy|Escr|esim|Esim|imof|Uarr|QUOT|uArr|uarr|euml|IEcy|iecy|Idot|Euml|euro|excl|Hscr|hscr|Hopf|hopf|TScy|tscy|Tscr|hbar|tscr|flat|tbrk|fnof|hArr|harr|half|fopf|Fopf|tdot|gvnE|fork|trie|gtcc|fscr|Fscr|gdot|gsim|Gscr|gscr|Gopf|gopf|gneq|Gdot|tosa|gnap|Topf|topf|geqq|toea|GJcy|gjcy|tint|gesl|mid|Sfr|ggg|top|ges|gla|glE|glj|geq|gne|gEl|gel|gnE|Gcy|gcy|gap|Tfr|tfr|Tcy|tcy|Hat|Tau|Ffr|tau|Tab|hfr|Hfr|ffr|Fcy|fcy|icy|Icy|iff|ETH|eth|ifr|Ifr|Eta|eta|int|Int|Sup|sup|ucy|Ucy|Sum|sum|jcy|ENG|ufr|Ufr|eng|Jcy|jfr|els|ell|egs|Efr|efr|Jfr|uml|kcy|Kcy|Ecy|ecy|kfr|Kfr|lap|Sub|sub|lat|lcy|Lcy|leg|Dot|dot|lEg|leq|les|squ|div|die|lfr|Lfr|lgE|Dfr|dfr|Del|deg|Dcy|dcy|lne|lnE|sol|loz|smt|Cup|lrm|cup|lsh|Lsh|sim|shy|map|Map|mcy|Mcy|mfr|Mfr|mho|gfr|Gfr|sfr|cir|Chi|chi|nap|Cfr|vcy|Vcy|cfr|Scy|scy|ncy|Ncy|vee|Vee|Cap|cap|nfr|scE|sce|Nfr|nge|ngE|nGg|vfr|Vfr|ngt|bot|nGt|nis|niv|Rsh|rsh|nle|nlE|bne|Bfr|bfr|nLl|nlt|nLt|Bcy|bcy|not|Not|rlm|wfr|Wfr|npr|nsc|num|ocy|ast|Ocy|ofr|xfr|Xfr|Ofr|ogt|ohm|apE|olt|Rho|ape|rho|Rfr|rfr|ord|REG|ang|reg|orv|And|and|AMP|Rcy|amp|Afr|ycy|Ycy|yen|yfr|Yfr|rcy|par|pcy|Pcy|pfr|Pfr|phi|Phi|afr|Acy|acy|zcy|Zcy|piv|acE|acd|zfr|Zfr|pre|prE|psi|Psi|qfr|Qfr|zwj|Or|ge|Gg|gt|gg|el|oS|lt|Lt|LT|Re|lg|gl|eg|ne|Im|it|le|DD|wp|wr|nu|Nu|dd|lE|Sc|sc|pi|Pi|ee|af|ll|Ll|rx|gE|xi|pm|Xi|ic|pr|Pr|in|ni|mp|mu|ac|Mu|or|ap|Gt|GT|ii);|&(Aacute|Agrave|Atilde|Ccedil|Eacute|Egrave|Iacute|Igrave|Ntilde|Oacute|Ograve|Oslash|Otilde|Uacute|Ugrave|Yacute|aacute|agrave|atilde|brvbar|ccedil|curren|divide|eacute|egrave|frac12|frac14|frac34|iacute|igrave|iquest|middot|ntilde|oacute|ograve|oslash|otilde|plusmn|uacute|ugrave|yacute|AElig|Acirc|Aring|Ecirc|Icirc|Ocirc|THORN|Ucirc|acirc|acute|aelig|aring|cedil|ecirc|icirc|iexcl|laquo|micro|ocirc|pound|raquo|szlig|thorn|times|ucirc|Auml|COPY|Euml|Iuml|Ouml|QUOT|Uuml|auml|cent|copy|euml|iuml|macr|nbsp|ordf|ordm|ouml|para|quot|sect|sup1|sup2|sup3|uuml|yuml|AMP|ETH|REG|amp|deg|eth|not|reg|shy|uml|yen|GT|LT|gt|lt)(?!;)([=a-zA-Z0-9]?)|&#([0-9]+)(;?)|&#[xX]([a-fA-F0-9]+)(;?)|&([0-9a-zA-Z]+)/g, N = { aacute: "á", Aacute: "Á", abreve: "ă", Abreve: "Ă", ac: "∾", acd: "∿", acE: "∾̳", acirc: "â", Acirc: "Â", acute: "´", acy: "а", Acy: "А", aelig: "æ", AElig: "Æ", af: "", afr: "𝔞", Afr: "𝔄", agrave: "à", Agrave: "À", alefsym: "ℵ", aleph: "ℵ", alpha: "α", Alpha: "Α", amacr: "ā", Amacr: "Ā", amalg: "⨿", amp: "&", AMP: "&", and: "∧", And: "⩓", andand: "⩕", andd: "⩜", andslope: "⩘", andv: "⩚", ang: "∠", ange: "⦤", angle: "∠", angmsd: "∡", angmsdaa: "⦨", angmsdab: "⦩", angmsdac: "⦪", angmsdad: "⦫", angmsdae: "⦬", angmsdaf: "⦭", angmsdag: "⦮", angmsdah: "⦯", angrt: "∟", angrtvb: "⊾", angrtvbd: "⦝", angsph: "∢", angst: "Å", angzarr: "⍼", aogon: "ą", Aogon: "Ą", aopf: "𝕒", Aopf: "𝔸", ap: "≈", apacir: "⩯", ape: "≊", apE: "⩰", apid: "≋", apos: "'", ApplyFunction: "", approx: "≈", approxeq: "≊", aring: "å", Aring: "Å", ascr: "𝒶", Ascr: "𝒜", Assign: "≔", ast: "*", asymp: "≈", asympeq: "≍", atilde: "ã", Atilde: "Ã", auml: "ä", Auml: "Ä", awconint: "∳", awint: "⨑", backcong: "≌", backepsilon: "϶", backprime: "‵", backsim: "∽", backsimeq: "⋍", Backslash: "∖", Barv: "⫧", barvee: "⊽", barwed: "⌅", Barwed: "⌆", barwedge: "⌅", bbrk: "⎵", bbrktbrk: "⎶", bcong: "≌", bcy: "б", Bcy: "Б", bdquo: "„", becaus: "∵", because: "∵", Because: "∵", bemptyv: "⦰", bepsi: "϶", bernou: "ℬ", Bernoullis: "ℬ", beta: "β", Beta: "Β", beth: "ℶ", between: "≬", bfr: "𝔟", Bfr: "𝔅", bigcap: "⋂", bigcirc: "◯", bigcup: "⋃", bigodot: "⨀", bigoplus: "⨁", bigotimes: "⨂", bigsqcup: "⨆", bigstar: "★", bigtriangledown: "▽", bigtriangleup: "△", biguplus: "⨄", bigvee: "⋁", bigwedge: "⋀", bkarow: "⤍", blacklozenge: "⧫", blacksquare: "▪", blacktriangle: "▴", blacktriangledown: "▾", blacktriangleleft: "◂", blacktriangleright: "▸", blank: "␣", blk12: "▒", blk14: "░", blk34: "▓", block: "█", bne: "=⃥", bnequiv: "≡⃥", bnot: "⌐", bNot: "⫭", bopf: "𝕓", Bopf: "𝔹", bot: "⊥", bottom: "⊥", bowtie: "⋈", boxbox: "⧉", boxdl: "┐", boxdL: "╕", boxDl: "╖", boxDL: "╗", boxdr: "┌", boxdR: "╒", boxDr: "╓", boxDR: "╔", boxh: "─", boxH: "═", boxhd: "┬", boxhD: "╥", boxHd: "╤", boxHD: "╦", boxhu: "┴", boxhU: "╨", boxHu: "╧", boxHU: "╩", boxminus: "⊟", boxplus: "⊞", boxtimes: "⊠", boxul: "┘", boxuL: "╛", boxUl: "╜", boxUL: "╝", boxur: "└", boxuR: "╘", boxUr: "╙", boxUR: "╚", boxv: "│", boxV: "║", boxvh: "┼", boxvH: "╪", boxVh: "╫", boxVH: "╬", boxvl: "┤", boxvL: "╡", boxVl: "╢", boxVL: "╣", boxvr: "├", boxvR: "╞", boxVr: "╟", boxVR: "╠", bprime: "‵", breve: "˘", Breve: "˘", brvbar: "¦", bscr: "𝒷", Bscr: "ℬ", bsemi: "⁏", bsim: "∽", bsime: "⋍", bsol: "\\", bsolb: "⧅", bsolhsub: "⟈", bull: "•", bullet: "•", bump: "≎", bumpe: "≏", bumpE: "⪮", bumpeq: "≏", Bumpeq: "≎", cacute: "ć", Cacute: "Ć", cap: "∩", Cap: "⋒", capand: "⩄", capbrcup: "⩉", capcap: "⩋", capcup: "⩇", capdot: "⩀", CapitalDifferentialD: "ⅅ", caps: "∩︀", caret: "⁁", caron: "ˇ", Cayleys: "ℭ", ccaps: "⩍", ccaron: "č", Ccaron: "Č", ccedil: "ç", Ccedil: "Ç", ccirc: "ĉ", Ccirc: "Ĉ", Cconint: "∰", ccups: "⩌", ccupssm: "⩐", cdot: "ċ", Cdot: "Ċ", cedil: "¸", Cedilla: "¸", cemptyv: "⦲", cent: "¢", centerdot: "·", CenterDot: "·", cfr: "𝔠", Cfr: "ℭ", chcy: "ч", CHcy: "Ч", check: "✓", checkmark: "✓", chi: "χ", Chi: "Χ", cir: "○", circ: "ˆ", circeq: "≗", circlearrowleft: "↺", circlearrowright: "↻", circledast: "⊛", circledcirc: "⊚", circleddash: "⊝", CircleDot: "⊙", circledR: "®", circledS: "Ⓢ", CircleMinus: "⊖", CirclePlus: "⊕", CircleTimes: "⊗", cire: "≗", cirE: "⧃", cirfnint: "⨐", cirmid: "⫯", cirscir: "⧂", ClockwiseContourIntegral: "∲", CloseCurlyDoubleQuote: "”", CloseCurlyQuote: "’", clubs: "♣", clubsuit: "♣", colon: ":", Colon: "∷", colone: "≔", Colone: "⩴", coloneq: "≔", comma: ",", commat: "@", comp: "∁", compfn: "∘", complement: "∁", complexes: "ℂ", cong: "≅", congdot: "⩭", Congruent: "≡", conint: "∮", Conint: "∯", ContourIntegral: "∮", copf: "𝕔", Copf: "ℂ", coprod: "∐", Coproduct: "∐", copy: "©", COPY: "©", copysr: "℗", CounterClockwiseContourIntegral: "∳", crarr: "↵", cross: "✗", Cross: "⨯", cscr: "𝒸", Cscr: "𝒞", csub: "⫏", csube: "⫑", csup: "⫐", csupe: "⫒", ctdot: "⋯", cudarrl: "⤸", cudarrr: "⤵", cuepr: "⋞", cuesc: "⋟", cularr: "↶", cularrp: "⤽", cup: "∪", Cup: "⋓", cupbrcap: "⩈", cupcap: "⩆", CupCap: "≍", cupcup: "⩊", cupdot: "⊍", cupor: "⩅", cups: "∪︀", curarr: "↷", curarrm: "⤼", curlyeqprec: "⋞", curlyeqsucc: "⋟", curlyvee: "⋎", curlywedge: "⋏", curren: "¤", curvearrowleft: "↶", curvearrowright: "↷", cuvee: "⋎", cuwed: "⋏", cwconint: "∲", cwint: "∱", cylcty: "⌭", dagger: "†", Dagger: "‡", daleth: "ℸ", darr: "↓", dArr: "⇓", Darr: "↡", dash: "‐", dashv: "⊣", Dashv: "⫤", dbkarow: "⤏", dblac: "˝", dcaron: "ď", Dcaron: "Ď", dcy: "д", Dcy: "Д", dd: "ⅆ", DD: "ⅅ", ddagger: "‡", ddarr: "⇊", DDotrahd: "⤑", ddotseq: "⩷", deg: "°", Del: "∇", delta: "δ", Delta: "Δ", demptyv: "⦱", dfisht: "⥿", dfr: "𝔡", Dfr: "𝔇", dHar: "⥥", dharl: "⇃", dharr: "⇂", DiacriticalAcute: "´", DiacriticalDot: "˙", DiacriticalDoubleAcute: "˝", DiacriticalGrave: "`", DiacriticalTilde: "˜", diam: "⋄", diamond: "⋄", Diamond: "⋄", diamondsuit: "♦", diams: "♦", die: "¨", DifferentialD: "ⅆ", digamma: "ϝ", disin: "⋲", div: "÷", divide: "÷", divideontimes: "⋇", divonx: "⋇", djcy: "ђ", DJcy: "Ђ", dlcorn: "⌞", dlcrop: "⌍", dollar: "$", dopf: "𝕕", Dopf: "𝔻", dot: "˙", Dot: "¨", DotDot: "⃜", doteq: "≐", doteqdot: "≑", DotEqual: "≐", dotminus: "∸", dotplus: "∔", dotsquare: "⊡", doublebarwedge: "⌆", DoubleContourIntegral: "∯", DoubleDot: "¨", DoubleDownArrow: "⇓", DoubleLeftArrow: "⇐", DoubleLeftRightArrow: "⇔", DoubleLeftTee: "⫤", DoubleLongLeftArrow: "⟸", DoubleLongLeftRightArrow: "⟺", DoubleLongRightArrow: "⟹", DoubleRightArrow: "⇒", DoubleRightTee: "⊨", DoubleUpArrow: "⇑", DoubleUpDownArrow: "⇕", DoubleVerticalBar: "∥", downarrow: "↓", Downarrow: "⇓", DownArrow: "↓", DownArrowBar: "⤓", DownArrowUpArrow: "⇵", DownBreve: "̑", downdownarrows: "⇊", downharpoonleft: "⇃", downharpoonright: "⇂", DownLeftRightVector: "⥐", DownLeftTeeVector: "⥞", DownLeftVector: "↽", DownLeftVectorBar: "⥖", DownRightTeeVector: "⥟", DownRightVector: "⇁", DownRightVectorBar: "⥗", DownTee: "⊤", DownTeeArrow: "↧", drbkarow: "⤐", drcorn: "⌟", drcrop: "⌌", dscr: "𝒹", Dscr: "𝒟", dscy: "ѕ", DScy: "Ѕ", dsol: "⧶", dstrok: "đ", Dstrok: "Đ", dtdot: "⋱", dtri: "▿", dtrif: "▾", duarr: "⇵", duhar: "⥯", dwangle: "⦦", dzcy: "џ", DZcy: "Џ", dzigrarr: "⟿", eacute: "é", Eacute: "É", easter: "⩮", ecaron: "ě", Ecaron: "Ě", ecir: "≖", ecirc: "ê", Ecirc: "Ê", ecolon: "≕", ecy: "э", Ecy: "Э", eDDot: "⩷", edot: "ė", eDot: "≑", Edot: "Ė", ee: "ⅇ", efDot: "≒", efr: "𝔢", Efr: "𝔈", eg: "⪚", egrave: "è", Egrave: "È", egs: "⪖", egsdot: "⪘", el: "⪙", Element: "∈", elinters: "⏧", ell: "ℓ", els: "⪕", elsdot: "⪗", emacr: "ē", Emacr: "Ē", empty: "∅", emptyset: "∅", EmptySmallSquare: "◻", emptyv: "∅", EmptyVerySmallSquare: "▫", emsp: " ", emsp13: " ", emsp14: " ", eng: "ŋ", ENG: "Ŋ", ensp: " ", eogon: "ę", Eogon: "Ę", eopf: "𝕖", Eopf: "𝔼", epar: "⋕", eparsl: "⧣", eplus: "⩱", epsi: "ε", epsilon: "ε", Epsilon: "Ε", epsiv: "ϵ", eqcirc: "≖", eqcolon: "≕", eqsim: "≂", eqslantgtr: "⪖", eqslantless: "⪕", Equal: "⩵", equals: "=", EqualTilde: "≂", equest: "≟", Equilibrium: "⇌", equiv: "≡", equivDD: "⩸", eqvparsl: "⧥", erarr: "⥱", erDot: "≓", escr: "ℯ", Escr: "ℰ", esdot: "≐", esim: "≂", Esim: "⩳", eta: "η", Eta: "Η", eth: "ð", ETH: "Ð", euml: "ë", Euml: "Ë", euro: "€", excl: "!", exist: "∃", Exists: "∃", expectation: "ℰ", exponentiale: "ⅇ", ExponentialE: "ⅇ", fallingdotseq: "≒", fcy: "ф", Fcy: "Ф", female: "♀", ffilig: "ffi", fflig: "ff", ffllig: "ffl", ffr: "𝔣", Ffr: "𝔉", filig: "fi", FilledSmallSquare: "◼", FilledVerySmallSquare: "▪", fjlig: "fj", flat: "♭", fllig: "fl", fltns: "▱", fnof: "ƒ", fopf: "𝕗", Fopf: "𝔽", forall: "∀", ForAll: "∀", fork: "⋔", forkv: "⫙", Fouriertrf: "ℱ", fpartint: "⨍", frac12: "½", frac13: "⅓", frac14: "¼", frac15: "⅕", frac16: "⅙", frac18: "⅛", frac23: "⅔", frac25: "⅖", frac34: "¾", frac35: "⅗", frac38: "⅜", frac45: "⅘", frac56: "⅚", frac58: "⅝", frac78: "⅞", frasl: "⁄", frown: "⌢", fscr: "𝒻", Fscr: "ℱ", gacute: "ǵ", gamma: "γ", Gamma: "Γ", gammad: "ϝ", Gammad: "Ϝ", gap: "⪆", gbreve: "ğ", Gbreve: "Ğ", Gcedil: "Ģ", gcirc: "ĝ", Gcirc: "Ĝ", gcy: "г", Gcy: "Г", gdot: "ġ", Gdot: "Ġ", ge: "≥", gE: "≧", gel: "⋛", gEl: "⪌", geq: "≥", geqq: "≧", geqslant: "⩾", ges: "⩾", gescc: "⪩", gesdot: "⪀", gesdoto: "⪂", gesdotol: "⪄", gesl: "⋛︀", gesles: "⪔", gfr: "𝔤", Gfr: "𝔊", gg: "≫", Gg: "⋙", ggg: "⋙", gimel: "ℷ", gjcy: "ѓ", GJcy: "Ѓ", gl: "≷", gla: "⪥", glE: "⪒", glj: "⪤", gnap: "⪊", gnapprox: "⪊", gne: "⪈", gnE: "≩", gneq: "⪈", gneqq: "≩", gnsim: "⋧", gopf: "𝕘", Gopf: "𝔾", grave: "`", GreaterEqual: "≥", GreaterEqualLess: "⋛", GreaterFullEqual: "≧", GreaterGreater: "⪢", GreaterLess: "≷", GreaterSlantEqual: "⩾", GreaterTilde: "≳", gscr: "ℊ", Gscr: "𝒢", gsim: "≳", gsime: "⪎", gsiml: "⪐", gt: ">", Gt: "≫", GT: ">", gtcc: "⪧", gtcir: "⩺", gtdot: "⋗", gtlPar: "⦕", gtquest: "⩼", gtrapprox: "⪆", gtrarr: "⥸", gtrdot: "⋗", gtreqless: "⋛", gtreqqless: "⪌", gtrless: "≷", gtrsim: "≳", gvertneqq: "≩︀", gvnE: "≩︀", Hacek: "ˇ", hairsp: " ", half: "½", hamilt: "ℋ", hardcy: "ъ", HARDcy: "Ъ", harr: "↔", hArr: "⇔", harrcir: "⥈", harrw: "↭", Hat: "^", hbar: "ℏ", hcirc: "ĥ", Hcirc: "Ĥ", hearts: "♥", heartsuit: "♥", hellip: "…", hercon: "⊹", hfr: "𝔥", Hfr: "ℌ", HilbertSpace: "ℋ", hksearow: "⤥", hkswarow: "⤦", hoarr: "⇿", homtht: "∻", hookleftarrow: "↩", hookrightarrow: "↪", hopf: "𝕙", Hopf: "ℍ", horbar: "―", HorizontalLine: "─", hscr: "𝒽", Hscr: "ℋ", hslash: "ℏ", hstrok: "ħ", Hstrok: "Ħ", HumpDownHump: "≎", HumpEqual: "≏", hybull: "⁃", hyphen: "‐", iacute: "í", Iacute: "Í", ic: "", icirc: "î", Icirc: "Î", icy: "и", Icy: "И", Idot: "İ", iecy: "е", IEcy: "Е", iexcl: "¡", iff: "⇔", ifr: "𝔦", Ifr: "ℑ", igrave: "ì", Igrave: "Ì", ii: "ⅈ", iiiint: "⨌", iiint: "∭", iinfin: "⧜", iiota: "℩", ijlig: "ij", IJlig: "IJ", Im: "ℑ", imacr: "ī", Imacr: "Ī", image: "ℑ", ImaginaryI: "ⅈ", imagline: "ℐ", imagpart: "ℑ", imath: "ı", imof: "⊷", imped: "Ƶ", Implies: "⇒", in: "∈", incare: "℅", infin: "∞", infintie: "⧝", inodot: "ı", int: "∫", Int: "∬", intcal: "⊺", integers: "ℤ", Integral: "∫", intercal: "⊺", Intersection: "⋂", intlarhk: "⨗", intprod: "⨼", InvisibleComma: "", InvisibleTimes: "", iocy: "ё", IOcy: "Ё", iogon: "į", Iogon: "Į", iopf: "𝕚", Iopf: "𝕀", iota: "ι", Iota: "Ι", iprod: "⨼", iquest: "¿", iscr: "𝒾", Iscr: "ℐ", isin: "∈", isindot: "⋵", isinE: "⋹", isins: "⋴", isinsv: "⋳", isinv: "∈", it: "", itilde: "ĩ", Itilde: "Ĩ", iukcy: "і", Iukcy: "І", iuml: "ï", Iuml: "Ï", jcirc: "ĵ", Jcirc: "Ĵ", jcy: "й", Jcy: "Й", jfr: "𝔧", Jfr: "𝔍", jmath: "ȷ", jopf: "𝕛", Jopf: "𝕁", jscr: "𝒿", Jscr: "𝒥", jsercy: "ј", Jsercy: "Ј", jukcy: "є", Jukcy: "Є", kappa: "κ", Kappa: "Κ", kappav: "ϰ", kcedil: "ķ", Kcedil: "Ķ", kcy: "к", Kcy: "К", kfr: "𝔨", Kfr: "𝔎", kgreen: "ĸ", khcy: "х", KHcy: "Х", kjcy: "ќ", KJcy: "Ќ", kopf: "𝕜", Kopf: "𝕂", kscr: "𝓀", Kscr: "𝒦", lAarr: "⇚", lacute: "ĺ", Lacute: "Ĺ", laemptyv: "⦴", lagran: "ℒ", lambda: "λ", Lambda: "Λ", lang: "⟨", Lang: "⟪", langd: "⦑", langle: "⟨", lap: "⪅", Laplacetrf: "ℒ", laquo: "«", larr: "←", lArr: "⇐", Larr: "↞", larrb: "⇤", larrbfs: "⤟", larrfs: "⤝", larrhk: "↩", larrlp: "↫", larrpl: "⤹", larrsim: "⥳", larrtl: "↢", lat: "⪫", latail: "⤙", lAtail: "⤛", late: "⪭", lates: "⪭︀", lbarr: "⤌", lBarr: "⤎", lbbrk: "❲", lbrace: "{", lbrack: "[", lbrke: "⦋", lbrksld: "⦏", lbrkslu: "⦍", lcaron: "ľ", Lcaron: "Ľ", lcedil: "ļ", Lcedil: "Ļ", lceil: "⌈", lcub: "{", lcy: "л", Lcy: "Л", ldca: "⤶", ldquo: "“", ldquor: "„", ldrdhar: "⥧", ldrushar: "⥋", ldsh: "↲", le: "≤", lE: "≦", LeftAngleBracket: "⟨", leftarrow: "←", Leftarrow: "⇐", LeftArrow: "←", LeftArrowBar: "⇤", LeftArrowRightArrow: "⇆", leftarrowtail: "↢", LeftCeiling: "⌈", LeftDoubleBracket: "⟦", LeftDownTeeVector: "⥡", LeftDownVector: "⇃", LeftDownVectorBar: "⥙", LeftFloor: "⌊", leftharpoondown: "↽", leftharpoonup: "↼", leftleftarrows: "⇇", leftrightarrow: "↔", Leftrightarrow: "⇔", LeftRightArrow: "↔", leftrightarrows: "⇆", leftrightharpoons: "⇋", leftrightsquigarrow: "↭", LeftRightVector: "⥎", LeftTee: "⊣", LeftTeeArrow: "↤", LeftTeeVector: "⥚", leftthreetimes: "⋋", LeftTriangle: "⊲", LeftTriangleBar: "⧏", LeftTriangleEqual: "⊴", LeftUpDownVector: "⥑", LeftUpTeeVector: "⥠", LeftUpVector: "↿", LeftUpVectorBar: "⥘", LeftVector: "↼", LeftVectorBar: "⥒", leg: "⋚", lEg: "⪋", leq: "≤", leqq: "≦", leqslant: "⩽", les: "⩽", lescc: "⪨", lesdot: "⩿", lesdoto: "⪁", lesdotor: "⪃", lesg: "⋚︀", lesges: "⪓", lessapprox: "⪅", lessdot: "⋖", lesseqgtr: "⋚", lesseqqgtr: "⪋", LessEqualGreater: "⋚", LessFullEqual: "≦", LessGreater: "≶", lessgtr: "≶", LessLess: "⪡", lesssim: "≲", LessSlantEqual: "⩽", LessTilde: "≲", lfisht: "⥼", lfloor: "⌊", lfr: "𝔩", Lfr: "𝔏", lg: "≶", lgE: "⪑", lHar: "⥢", lhard: "↽", lharu: "↼", lharul: "⥪", lhblk: "▄", ljcy: "љ", LJcy: "Љ", ll: "≪", Ll: "⋘", llarr: "⇇", llcorner: "⌞", Lleftarrow: "⇚", llhard: "⥫", lltri: "◺", lmidot: "ŀ", Lmidot: "Ŀ", lmoust: "⎰", lmoustache: "⎰", lnap: "⪉", lnapprox: "⪉", lne: "⪇", lnE: "≨", lneq: "⪇", lneqq: "≨", lnsim: "⋦", loang: "⟬", loarr: "⇽", lobrk: "⟦", longleftarrow: "⟵", Longleftarrow: "⟸", LongLeftArrow: "⟵", longleftrightarrow: "⟷", Longleftrightarrow: "⟺", LongLeftRightArrow: "⟷", longmapsto: "⟼", longrightarrow: "⟶", Longrightarrow: "⟹", LongRightArrow: "⟶", looparrowleft: "↫", looparrowright: "↬", lopar: "⦅", lopf: "𝕝", Lopf: "𝕃", loplus: "⨭", lotimes: "⨴", lowast: "∗", lowbar: "_", LowerLeftArrow: "↙", LowerRightArrow: "↘", loz: "◊", lozenge: "◊", lozf: "⧫", lpar: "(", lparlt: "⦓", lrarr: "⇆", lrcorner: "⌟", lrhar: "⇋", lrhard: "⥭", lrm: "", lrtri: "⊿", lsaquo: "‹", lscr: "𝓁", Lscr: "ℒ", lsh: "↰", Lsh: "↰", lsim: "≲", lsime: "⪍", lsimg: "⪏", lsqb: "[", lsquo: "‘", lsquor: "‚", lstrok: "ł", Lstrok: "Ł", lt: "<", Lt: "≪", LT: "<", ltcc: "⪦", ltcir: "⩹", ltdot: "⋖", lthree: "⋋", ltimes: "⋉", ltlarr: "⥶", ltquest: "⩻", ltri: "◃", ltrie: "⊴", ltrif: "◂", ltrPar: "⦖", lurdshar: "⥊", luruhar: "⥦", lvertneqq: "≨︀", lvnE: "≨︀", macr: "¯", male: "♂", malt: "✠", maltese: "✠", map: "↦", Map: "⤅", mapsto: "↦", mapstodown: "↧", mapstoleft: "↤", mapstoup: "↥", marker: "▮", mcomma: "⨩", mcy: "м", Mcy: "М", mdash: "—", mDDot: "∺", measuredangle: "∡", MediumSpace: " ", Mellintrf: "ℳ", mfr: "𝔪", Mfr: "𝔐", mho: "℧", micro: "µ", mid: "∣", midast: "*", midcir: "⫰", middot: "·", minus: "−", minusb: "⊟", minusd: "∸", minusdu: "⨪", MinusPlus: "∓", mlcp: "⫛", mldr: "…", mnplus: "∓", models: "⊧", mopf: "𝕞", Mopf: "𝕄", mp: "∓", mscr: "𝓂", Mscr: "ℳ", mstpos: "∾", mu: "μ", Mu: "Μ", multimap: "⊸", mumap: "⊸", nabla: "∇", nacute: "ń", Nacute: "Ń", nang: "∠⃒", nap: "≉", napE: "⩰̸", napid: "≋̸", napos: "ʼn", napprox: "≉", natur: "♮", natural: "♮", naturals: "ℕ", nbsp: " ", nbump: "≎̸", nbumpe: "≏̸", ncap: "⩃", ncaron: "ň", Ncaron: "Ň", ncedil: "ņ", Ncedil: "Ņ", ncong: "≇", ncongdot: "⩭̸", ncup: "⩂", ncy: "н", Ncy: "Н", ndash: "–", ne: "≠", nearhk: "⤤", nearr: "↗", neArr: "⇗", nearrow: "↗", nedot: "≐̸", NegativeMediumSpace: "", NegativeThickSpace: "", NegativeThinSpace: "", NegativeVeryThinSpace: "", nequiv: "≢", nesear: "⤨", nesim: "≂̸", NestedGreaterGreater: "≫", NestedLessLess: "≪", NewLine: `
|
|
1468
|
-
`, nexist: "∄", nexists: "∄", nfr: "𝔫", Nfr: "𝔑", nge: "≱", ngE: "≧̸", ngeq: "≱", ngeqq: "≧̸", ngeqslant: "⩾̸", nges: "⩾̸", nGg: "⋙̸", ngsim: "≵", ngt: "≯", nGt: "≫⃒", ngtr: "≯", nGtv: "≫̸", nharr: "↮", nhArr: "⇎", nhpar: "⫲", ni: "∋", nis: "⋼", nisd: "⋺", niv: "∋", njcy: "њ", NJcy: "Њ", nlarr: "↚", nlArr: "⇍", nldr: "‥", nle: "≰", nlE: "≦̸", nleftarrow: "↚", nLeftarrow: "⇍", nleftrightarrow: "↮", nLeftrightarrow: "⇎", nleq: "≰", nleqq: "≦̸", nleqslant: "⩽̸", nles: "⩽̸", nless: "≮", nLl: "⋘̸", nlsim: "≴", nlt: "≮", nLt: "≪⃒", nltri: "⋪", nltrie: "⋬", nLtv: "≪̸", nmid: "∤", NoBreak: "", NonBreakingSpace: " ", nopf: "𝕟", Nopf: "ℕ", not: "¬", Not: "⫬", NotCongruent: "≢", NotCupCap: "≭", NotDoubleVerticalBar: "∦", NotElement: "∉", NotEqual: "≠", NotEqualTilde: "≂̸", NotExists: "∄", NotGreater: "≯", NotGreaterEqual: "≱", NotGreaterFullEqual: "≧̸", NotGreaterGreater: "≫̸", NotGreaterLess: "≹", NotGreaterSlantEqual: "⩾̸", NotGreaterTilde: "≵", NotHumpDownHump: "≎̸", NotHumpEqual: "≏̸", notin: "∉", notindot: "⋵̸", notinE: "⋹̸", notinva: "∉", notinvb: "⋷", notinvc: "⋶", NotLeftTriangle: "⋪", NotLeftTriangleBar: "⧏̸", NotLeftTriangleEqual: "⋬", NotLess: "≮", NotLessEqual: "≰", NotLessGreater: "≸", NotLessLess: "≪̸", NotLessSlantEqual: "⩽̸", NotLessTilde: "≴", NotNestedGreaterGreater: "⪢̸", NotNestedLessLess: "⪡̸", notni: "∌", notniva: "∌", notnivb: "⋾", notnivc: "⋽", NotPrecedes: "⊀", NotPrecedesEqual: "⪯̸", NotPrecedesSlantEqual: "⋠", NotReverseElement: "∌", NotRightTriangle: "⋫", NotRightTriangleBar: "⧐̸", NotRightTriangleEqual: "⋭", NotSquareSubset: "⊏̸", NotSquareSubsetEqual: "⋢", NotSquareSuperset: "⊐̸", NotSquareSupersetEqual: "⋣", NotSubset: "⊂⃒", NotSubsetEqual: "⊈", NotSucceeds: "⊁", NotSucceedsEqual: "⪰̸", NotSucceedsSlantEqual: "⋡", NotSucceedsTilde: "≿̸", NotSuperset: "⊃⃒", NotSupersetEqual: "⊉", NotTilde: "≁", NotTildeEqual: "≄", NotTildeFullEqual: "≇", NotTildeTilde: "≉", NotVerticalBar: "∤", npar: "∦", nparallel: "∦", nparsl: "⫽⃥", npart: "∂̸", npolint: "⨔", npr: "⊀", nprcue: "⋠", npre: "⪯̸", nprec: "⊀", npreceq: "⪯̸", nrarr: "↛", nrArr: "⇏", nrarrc: "⤳̸", nrarrw: "↝̸", nrightarrow: "↛", nRightarrow: "⇏", nrtri: "⋫", nrtrie: "⋭", nsc: "⊁", nsccue: "⋡", nsce: "⪰̸", nscr: "𝓃", Nscr: "𝒩", nshortmid: "∤", nshortparallel: "∦", nsim: "≁", nsime: "≄", nsimeq: "≄", nsmid: "∤", nspar: "∦", nsqsube: "⋢", nsqsupe: "⋣", nsub: "⊄", nsube: "⊈", nsubE: "⫅̸", nsubset: "⊂⃒", nsubseteq: "⊈", nsubseteqq: "⫅̸", nsucc: "⊁", nsucceq: "⪰̸", nsup: "⊅", nsupe: "⊉", nsupE: "⫆̸", nsupset: "⊃⃒", nsupseteq: "⊉", nsupseteqq: "⫆̸", ntgl: "≹", ntilde: "ñ", Ntilde: "Ñ", ntlg: "≸", ntriangleleft: "⋪", ntrianglelefteq: "⋬", ntriangleright: "⋫", ntrianglerighteq: "⋭", nu: "ν", Nu: "Ν", num: "#", numero: "№", numsp: " ", nvap: "≍⃒", nvdash: "⊬", nvDash: "⊭", nVdash: "⊮", nVDash: "⊯", nvge: "≥⃒", nvgt: ">⃒", nvHarr: "⤄", nvinfin: "⧞", nvlArr: "⤂", nvle: "≤⃒", nvlt: "<⃒", nvltrie: "⊴⃒", nvrArr: "⤃", nvrtrie: "⊵⃒", nvsim: "∼⃒", nwarhk: "⤣", nwarr: "↖", nwArr: "⇖", nwarrow: "↖", nwnear: "⤧", oacute: "ó", Oacute: "Ó", oast: "⊛", ocir: "⊚", ocirc: "ô", Ocirc: "Ô", ocy: "о", Ocy: "О", odash: "⊝", odblac: "ő", Odblac: "Ő", odiv: "⨸", odot: "⊙", odsold: "⦼", oelig: "œ", OElig: "Œ", ofcir: "⦿", ofr: "𝔬", Ofr: "𝔒", ogon: "˛", ograve: "ò", Ograve: "Ò", ogt: "⧁", ohbar: "⦵", ohm: "Ω", oint: "∮", olarr: "↺", olcir: "⦾", olcross: "⦻", oline: "‾", olt: "⧀", omacr: "ō", Omacr: "Ō", omega: "ω", Omega: "Ω", omicron: "ο", Omicron: "Ο", omid: "⦶", ominus: "⊖", oopf: "𝕠", Oopf: "𝕆", opar: "⦷", OpenCurlyDoubleQuote: "“", OpenCurlyQuote: "‘", operp: "⦹", oplus: "⊕", or: "∨", Or: "⩔", orarr: "↻", ord: "⩝", order: "ℴ", orderof: "ℴ", ordf: "ª", ordm: "º", origof: "⊶", oror: "⩖", orslope: "⩗", orv: "⩛", oS: "Ⓢ", oscr: "ℴ", Oscr: "𝒪", oslash: "ø", Oslash: "Ø", osol: "⊘", otilde: "õ", Otilde: "Õ", otimes: "⊗", Otimes: "⨷", otimesas: "⨶", ouml: "ö", Ouml: "Ö", ovbar: "⌽", OverBar: "‾", OverBrace: "⏞", OverBracket: "⎴", OverParenthesis: "⏜", par: "∥", para: "¶", parallel: "∥", parsim: "⫳", parsl: "⫽", part: "∂", PartialD: "∂", pcy: "п", Pcy: "П", percnt: "%", period: ".", permil: "‰", perp: "⊥", pertenk: "‱", pfr: "𝔭", Pfr: "𝔓", phi: "φ", Phi: "Φ", phiv: "ϕ", phmmat: "ℳ", phone: "☎", pi: "π", Pi: "Π", pitchfork: "⋔", piv: "ϖ", planck: "ℏ", planckh: "ℎ", plankv: "ℏ", plus: "+", plusacir: "⨣", plusb: "⊞", pluscir: "⨢", plusdo: "∔", plusdu: "⨥", pluse: "⩲", PlusMinus: "±", plusmn: "±", plussim: "⨦", plustwo: "⨧", pm: "±", Poincareplane: "ℌ", pointint: "⨕", popf: "𝕡", Popf: "ℙ", pound: "£", pr: "≺", Pr: "⪻", prap: "⪷", prcue: "≼", pre: "⪯", prE: "⪳", prec: "≺", precapprox: "⪷", preccurlyeq: "≼", Precedes: "≺", PrecedesEqual: "⪯", PrecedesSlantEqual: "≼", PrecedesTilde: "≾", preceq: "⪯", precnapprox: "⪹", precneqq: "⪵", precnsim: "⋨", precsim: "≾", prime: "′", Prime: "″", primes: "ℙ", prnap: "⪹", prnE: "⪵", prnsim: "⋨", prod: "∏", Product: "∏", profalar: "⌮", profline: "⌒", profsurf: "⌓", prop: "∝", Proportion: "∷", Proportional: "∝", propto: "∝", prsim: "≾", prurel: "⊰", pscr: "𝓅", Pscr: "𝒫", psi: "ψ", Psi: "Ψ", puncsp: " ", qfr: "𝔮", Qfr: "𝔔", qint: "⨌", qopf: "𝕢", Qopf: "ℚ", qprime: "⁗", qscr: "𝓆", Qscr: "𝒬", quaternions: "ℍ", quatint: "⨖", quest: "?", questeq: "≟", quot: '"', QUOT: '"', rAarr: "⇛", race: "∽̱", racute: "ŕ", Racute: "Ŕ", radic: "√", raemptyv: "⦳", rang: "⟩", Rang: "⟫", rangd: "⦒", range: "⦥", rangle: "⟩", raquo: "»", rarr: "→", rArr: "⇒", Rarr: "↠", rarrap: "⥵", rarrb: "⇥", rarrbfs: "⤠", rarrc: "⤳", rarrfs: "⤞", rarrhk: "↪", rarrlp: "↬", rarrpl: "⥅", rarrsim: "⥴", rarrtl: "↣", Rarrtl: "⤖", rarrw: "↝", ratail: "⤚", rAtail: "⤜", ratio: "∶", rationals: "ℚ", rbarr: "⤍", rBarr: "⤏", RBarr: "⤐", rbbrk: "❳", rbrace: "}", rbrack: "]", rbrke: "⦌", rbrksld: "⦎", rbrkslu: "⦐", rcaron: "ř", Rcaron: "Ř", rcedil: "ŗ", Rcedil: "Ŗ", rceil: "⌉", rcub: "}", rcy: "р", Rcy: "Р", rdca: "⤷", rdldhar: "⥩", rdquo: "”", rdquor: "”", rdsh: "↳", Re: "ℜ", real: "ℜ", realine: "ℛ", realpart: "ℜ", reals: "ℝ", rect: "▭", reg: "®", REG: "®", ReverseElement: "∋", ReverseEquilibrium: "⇋", ReverseUpEquilibrium: "⥯", rfisht: "⥽", rfloor: "⌋", rfr: "𝔯", Rfr: "ℜ", rHar: "⥤", rhard: "⇁", rharu: "⇀", rharul: "⥬", rho: "ρ", Rho: "Ρ", rhov: "ϱ", RightAngleBracket: "⟩", rightarrow: "→", Rightarrow: "⇒", RightArrow: "→", RightArrowBar: "⇥", RightArrowLeftArrow: "⇄", rightarrowtail: "↣", RightCeiling: "⌉", RightDoubleBracket: "⟧", RightDownTeeVector: "⥝", RightDownVector: "⇂", RightDownVectorBar: "⥕", RightFloor: "⌋", rightharpoondown: "⇁", rightharpoonup: "⇀", rightleftarrows: "⇄", rightleftharpoons: "⇌", rightrightarrows: "⇉", rightsquigarrow: "↝", RightTee: "⊢", RightTeeArrow: "↦", RightTeeVector: "⥛", rightthreetimes: "⋌", RightTriangle: "⊳", RightTriangleBar: "⧐", RightTriangleEqual: "⊵", RightUpDownVector: "⥏", RightUpTeeVector: "⥜", RightUpVector: "↾", RightUpVectorBar: "⥔", RightVector: "⇀", RightVectorBar: "⥓", ring: "˚", risingdotseq: "≓", rlarr: "⇄", rlhar: "⇌", rlm: "", rmoust: "⎱", rmoustache: "⎱", rnmid: "⫮", roang: "⟭", roarr: "⇾", robrk: "⟧", ropar: "⦆", ropf: "𝕣", Ropf: "ℝ", roplus: "⨮", rotimes: "⨵", RoundImplies: "⥰", rpar: ")", rpargt: "⦔", rppolint: "⨒", rrarr: "⇉", Rrightarrow: "⇛", rsaquo: "›", rscr: "𝓇", Rscr: "ℛ", rsh: "↱", Rsh: "↱", rsqb: "]", rsquo: "’", rsquor: "’", rthree: "⋌", rtimes: "⋊", rtri: "▹", rtrie: "⊵", rtrif: "▸", rtriltri: "⧎", RuleDelayed: "⧴", ruluhar: "⥨", rx: "℞", sacute: "ś", Sacute: "Ś", sbquo: "‚", sc: "≻", Sc: "⪼", scap: "⪸", scaron: "š", Scaron: "Š", sccue: "≽", sce: "⪰", scE: "⪴", scedil: "ş", Scedil: "Ş", scirc: "ŝ", Scirc: "Ŝ", scnap: "⪺", scnE: "⪶", scnsim: "⋩", scpolint: "⨓", scsim: "≿", scy: "с", Scy: "С", sdot: "⋅", sdotb: "⊡", sdote: "⩦", searhk: "⤥", searr: "↘", seArr: "⇘", searrow: "↘", sect: "§", semi: ";", seswar: "⤩", setminus: "∖", setmn: "∖", sext: "✶", sfr: "𝔰", Sfr: "𝔖", sfrown: "⌢", sharp: "♯", shchcy: "щ", SHCHcy: "Щ", shcy: "ш", SHcy: "Ш", ShortDownArrow: "↓", ShortLeftArrow: "←", shortmid: "∣", shortparallel: "∥", ShortRightArrow: "→", ShortUpArrow: "↑", shy: "", sigma: "σ", Sigma: "Σ", sigmaf: "ς", sigmav: "ς", sim: "∼", simdot: "⩪", sime: "≃", simeq: "≃", simg: "⪞", simgE: "⪠", siml: "⪝", simlE: "⪟", simne: "≆", simplus: "⨤", simrarr: "⥲", slarr: "←", SmallCircle: "∘", smallsetminus: "∖", smashp: "⨳", smeparsl: "⧤", smid: "∣", smile: "⌣", smt: "⪪", smte: "⪬", smtes: "⪬︀", softcy: "ь", SOFTcy: "Ь", sol: "/", solb: "⧄", solbar: "⌿", sopf: "𝕤", Sopf: "𝕊", spades: "♠", spadesuit: "♠", spar: "∥", sqcap: "⊓", sqcaps: "⊓︀", sqcup: "⊔", sqcups: "⊔︀", Sqrt: "√", sqsub: "⊏", sqsube: "⊑", sqsubset: "⊏", sqsubseteq: "⊑", sqsup: "⊐", sqsupe: "⊒", sqsupset: "⊐", sqsupseteq: "⊒", squ: "□", square: "□", Square: "□", SquareIntersection: "⊓", SquareSubset: "⊏", SquareSubsetEqual: "⊑", SquareSuperset: "⊐", SquareSupersetEqual: "⊒", SquareUnion: "⊔", squarf: "▪", squf: "▪", srarr: "→", sscr: "𝓈", Sscr: "𝒮", ssetmn: "∖", ssmile: "⌣", sstarf: "⋆", star: "☆", Star: "⋆", starf: "★", straightepsilon: "ϵ", straightphi: "ϕ", strns: "¯", sub: "⊂", Sub: "⋐", subdot: "⪽", sube: "⊆", subE: "⫅", subedot: "⫃", submult: "⫁", subne: "⊊", subnE: "⫋", subplus: "⪿", subrarr: "⥹", subset: "⊂", Subset: "⋐", subseteq: "⊆", subseteqq: "⫅", SubsetEqual: "⊆", subsetneq: "⊊", subsetneqq: "⫋", subsim: "⫇", subsub: "⫕", subsup: "⫓", succ: "≻", succapprox: "⪸", succcurlyeq: "≽", Succeeds: "≻", SucceedsEqual: "⪰", SucceedsSlantEqual: "≽", SucceedsTilde: "≿", succeq: "⪰", succnapprox: "⪺", succneqq: "⪶", succnsim: "⋩", succsim: "≿", SuchThat: "∋", sum: "∑", Sum: "∑", sung: "♪", sup: "⊃", Sup: "⋑", sup1: "¹", sup2: "²", sup3: "³", supdot: "⪾", supdsub: "⫘", supe: "⊇", supE: "⫆", supedot: "⫄", Superset: "⊃", SupersetEqual: "⊇", suphsol: "⟉", suphsub: "⫗", suplarr: "⥻", supmult: "⫂", supne: "⊋", supnE: "⫌", supplus: "⫀", supset: "⊃", Supset: "⋑", supseteq: "⊇", supseteqq: "⫆", supsetneq: "⊋", supsetneqq: "⫌", supsim: "⫈", supsub: "⫔", supsup: "⫖", swarhk: "⤦", swarr: "↙", swArr: "⇙", swarrow: "↙", swnwar: "⤪", szlig: "ß", Tab: " ", target: "⌖", tau: "τ", Tau: "Τ", tbrk: "⎴", tcaron: "ť", Tcaron: "Ť", tcedil: "ţ", Tcedil: "Ţ", tcy: "т", Tcy: "Т", tdot: "⃛", telrec: "⌕", tfr: "𝔱", Tfr: "𝔗", there4: "∴", therefore: "∴", Therefore: "∴", theta: "θ", Theta: "Θ", thetasym: "ϑ", thetav: "ϑ", thickapprox: "≈", thicksim: "∼", ThickSpace: " ", thinsp: " ", ThinSpace: " ", thkap: "≈", thksim: "∼", thorn: "þ", THORN: "Þ", tilde: "˜", Tilde: "∼", TildeEqual: "≃", TildeFullEqual: "≅", TildeTilde: "≈", times: "×", timesb: "⊠", timesbar: "⨱", timesd: "⨰", tint: "∭", toea: "⤨", top: "⊤", topbot: "⌶", topcir: "⫱", topf: "𝕥", Topf: "𝕋", topfork: "⫚", tosa: "⤩", tprime: "‴", trade: "™", TRADE: "™", triangle: "▵", triangledown: "▿", triangleleft: "◃", trianglelefteq: "⊴", triangleq: "≜", triangleright: "▹", trianglerighteq: "⊵", tridot: "◬", trie: "≜", triminus: "⨺", TripleDot: "⃛", triplus: "⨹", trisb: "⧍", tritime: "⨻", trpezium: "⏢", tscr: "𝓉", Tscr: "𝒯", tscy: "ц", TScy: "Ц", tshcy: "ћ", TSHcy: "Ћ", tstrok: "ŧ", Tstrok: "Ŧ", twixt: "≬", twoheadleftarrow: "↞", twoheadrightarrow: "↠", uacute: "ú", Uacute: "Ú", uarr: "↑", uArr: "⇑", Uarr: "↟", Uarrocir: "⥉", ubrcy: "ў", Ubrcy: "Ў", ubreve: "ŭ", Ubreve: "Ŭ", ucirc: "û", Ucirc: "Û", ucy: "у", Ucy: "У", udarr: "⇅", udblac: "ű", Udblac: "Ű", udhar: "⥮", ufisht: "⥾", ufr: "𝔲", Ufr: "𝔘", ugrave: "ù", Ugrave: "Ù", uHar: "⥣", uharl: "↿", uharr: "↾", uhblk: "▀", ulcorn: "⌜", ulcorner: "⌜", ulcrop: "⌏", ultri: "◸", umacr: "ū", Umacr: "Ū", uml: "¨", UnderBar: "_", UnderBrace: "⏟", UnderBracket: "⎵", UnderParenthesis: "⏝", Union: "⋃", UnionPlus: "⊎", uogon: "ų", Uogon: "Ų", uopf: "𝕦", Uopf: "𝕌", uparrow: "↑", Uparrow: "⇑", UpArrow: "↑", UpArrowBar: "⤒", UpArrowDownArrow: "⇅", updownarrow: "↕", Updownarrow: "⇕", UpDownArrow: "↕", UpEquilibrium: "⥮", upharpoonleft: "↿", upharpoonright: "↾", uplus: "⊎", UpperLeftArrow: "↖", UpperRightArrow: "↗", upsi: "υ", Upsi: "ϒ", upsih: "ϒ", upsilon: "υ", Upsilon: "Υ", UpTee: "⊥", UpTeeArrow: "↥", upuparrows: "⇈", urcorn: "⌝", urcorner: "⌝", urcrop: "⌎", uring: "ů", Uring: "Ů", urtri: "◹", uscr: "𝓊", Uscr: "𝒰", utdot: "⋰", utilde: "ũ", Utilde: "Ũ", utri: "▵", utrif: "▴", uuarr: "⇈", uuml: "ü", Uuml: "Ü", uwangle: "⦧", vangrt: "⦜", varepsilon: "ϵ", varkappa: "ϰ", varnothing: "∅", varphi: "ϕ", varpi: "ϖ", varpropto: "∝", varr: "↕", vArr: "⇕", varrho: "ϱ", varsigma: "ς", varsubsetneq: "⊊︀", varsubsetneqq: "⫋︀", varsupsetneq: "⊋︀", varsupsetneqq: "⫌︀", vartheta: "ϑ", vartriangleleft: "⊲", vartriangleright: "⊳", vBar: "⫨", Vbar: "⫫", vBarv: "⫩", vcy: "в", Vcy: "В", vdash: "⊢", vDash: "⊨", Vdash: "⊩", VDash: "⊫", Vdashl: "⫦", vee: "∨", Vee: "⋁", veebar: "⊻", veeeq: "≚", vellip: "⋮", verbar: "|", Verbar: "‖", vert: "|", Vert: "‖", VerticalBar: "∣", VerticalLine: "|", VerticalSeparator: "❘", VerticalTilde: "≀", VeryThinSpace: " ", vfr: "𝔳", Vfr: "𝔙", vltri: "⊲", vnsub: "⊂⃒", vnsup: "⊃⃒", vopf: "𝕧", Vopf: "𝕍", vprop: "∝", vrtri: "⊳", vscr: "𝓋", Vscr: "𝒱", vsubne: "⊊︀", vsubnE: "⫋︀", vsupne: "⊋︀", vsupnE: "⫌︀", Vvdash: "⊪", vzigzag: "⦚", wcirc: "ŵ", Wcirc: "Ŵ", wedbar: "⩟", wedge: "∧", Wedge: "⋀", wedgeq: "≙", weierp: "℘", wfr: "𝔴", Wfr: "𝔚", wopf: "𝕨", Wopf: "𝕎", wp: "℘", wr: "≀", wreath: "≀", wscr: "𝓌", Wscr: "𝒲", xcap: "⋂", xcirc: "◯", xcup: "⋃", xdtri: "▽", xfr: "𝔵", Xfr: "𝔛", xharr: "⟷", xhArr: "⟺", xi: "ξ", Xi: "Ξ", xlarr: "⟵", xlArr: "⟸", xmap: "⟼", xnis: "⋻", xodot: "⨀", xopf: "𝕩", Xopf: "𝕏", xoplus: "⨁", xotime: "⨂", xrarr: "⟶", xrArr: "⟹", xscr: "𝓍", Xscr: "𝒳", xsqcup: "⨆", xuplus: "⨄", xutri: "△", xvee: "⋁", xwedge: "⋀", yacute: "ý", Yacute: "Ý", yacy: "я", YAcy: "Я", ycirc: "ŷ", Ycirc: "Ŷ", ycy: "ы", Ycy: "Ы", yen: "¥", yfr: "𝔶", Yfr: "𝔜", yicy: "ї", YIcy: "Ї", yopf: "𝕪", Yopf: "𝕐", yscr: "𝓎", Yscr: "𝒴", yucy: "ю", YUcy: "Ю", yuml: "ÿ", Yuml: "Ÿ", zacute: "ź", Zacute: "Ź", zcaron: "ž", Zcaron: "Ž", zcy: "з", Zcy: "З", zdot: "ż", Zdot: "Ż", zeetrf: "ℨ", ZeroWidthSpace: "", zeta: "ζ", Zeta: "Ζ", zfr: "𝔷", Zfr: "ℨ", zhcy: "ж", ZHcy: "Ж", zigrarr: "⇝", zopf: "𝕫", Zopf: "ℤ", zscr: "𝓏", Zscr: "𝒵", zwj: "", zwnj: "" }, F = { aacute: "á", Aacute: "Á", acirc: "â", Acirc: "Â", acute: "´", aelig: "æ", AElig: "Æ", agrave: "à", Agrave: "À", amp: "&", AMP: "&", aring: "å", Aring: "Å", atilde: "ã", Atilde: "Ã", auml: "ä", Auml: "Ä", brvbar: "¦", ccedil: "ç", Ccedil: "Ç", cedil: "¸", cent: "¢", copy: "©", COPY: "©", curren: "¤", deg: "°", divide: "÷", eacute: "é", Eacute: "É", ecirc: "ê", Ecirc: "Ê", egrave: "è", Egrave: "È", eth: "ð", ETH: "Ð", euml: "ë", Euml: "Ë", frac12: "½", frac14: "¼", frac34: "¾", gt: ">", GT: ">", iacute: "í", Iacute: "Í", icirc: "î", Icirc: "Î", iexcl: "¡", igrave: "ì", Igrave: "Ì", iquest: "¿", iuml: "ï", Iuml: "Ï", laquo: "«", lt: "<", LT: "<", macr: "¯", micro: "µ", middot: "·", nbsp: " ", not: "¬", ntilde: "ñ", Ntilde: "Ñ", oacute: "ó", Oacute: "Ó", ocirc: "ô", Ocirc: "Ô", ograve: "ò", Ograve: "Ò", ordf: "ª", ordm: "º", oslash: "ø", Oslash: "Ø", otilde: "õ", Otilde: "Õ", ouml: "ö", Ouml: "Ö", para: "¶", plusmn: "±", pound: "£", quot: '"', QUOT: '"', raquo: "»", reg: "®", REG: "®", sect: "§", shy: "", sup1: "¹", sup2: "²", sup3: "³", szlig: "ß", thorn: "þ", THORN: "Þ", times: "×", uacute: "ú", Uacute: "Ú", ucirc: "û", Ucirc: "Û", ugrave: "ù", Ugrave: "Ù", uml: "¨", uuml: "ü", Uuml: "Ü", yacute: "ý", Yacute: "Ý", yen: "¥", yuml: "ÿ" }, W = { 0: "�", 128: "€", 130: "‚", 131: "ƒ", 132: "„", 133: "…", 134: "†", 135: "‡", 136: "ˆ", 137: "‰", 138: "Š", 139: "‹", 140: "Œ", 142: "Ž", 145: "‘", 146: "’", 147: "“", 148: "”", 149: "•", 150: "–", 151: "—", 152: "˜", 153: "™", 154: "š", 155: "›", 156: "œ", 158: "ž", 159: "Ÿ" }, Q = [1, 2, 3, 4, 5, 6, 7, 8, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 64976, 64977, 64978, 64979, 64980, 64981, 64982, 64983, 64984, 64985, 64986, 64987, 64988, 64989, 64990, 64991, 64992, 64993, 64994, 64995, 64996, 64997, 64998, 64999, 65e3, 65001, 65002, 65003, 65004, 65005, 65006, 65007, 65534, 65535, 131070, 131071, 196606, 196607, 262142, 262143, 327678, 327679, 393214, 393215, 458750, 458751, 524286, 524287, 589822, 589823, 655358, 655359, 720894, 720895, 786430, 786431, 851966, 851967, 917502, 917503, 983038, 983039, 1048574, 1048575, 1114110, 1114111], j = String.fromCharCode, oe = {}, w = oe.hasOwnProperty, $ = function(Ae, Pe) {
|
|
1462
|
+
`, nexist: "∄", nexists: "∄", nfr: "𝔫", Nfr: "𝔑", nge: "≱", ngE: "≧̸", ngeq: "≱", ngeqq: "≧̸", ngeqslant: "⩾̸", nges: "⩾̸", nGg: "⋙̸", ngsim: "≵", ngt: "≯", nGt: "≫⃒", ngtr: "≯", nGtv: "≫̸", nharr: "↮", nhArr: "⇎", nhpar: "⫲", ni: "∋", nis: "⋼", nisd: "⋺", niv: "∋", njcy: "њ", NJcy: "Њ", nlarr: "↚", nlArr: "⇍", nldr: "‥", nle: "≰", nlE: "≦̸", nleftarrow: "↚", nLeftarrow: "⇍", nleftrightarrow: "↮", nLeftrightarrow: "⇎", nleq: "≰", nleqq: "≦̸", nleqslant: "⩽̸", nles: "⩽̸", nless: "≮", nLl: "⋘̸", nlsim: "≴", nlt: "≮", nLt: "≪⃒", nltri: "⋪", nltrie: "⋬", nLtv: "≪̸", nmid: "∤", NoBreak: "", NonBreakingSpace: " ", nopf: "𝕟", Nopf: "ℕ", not: "¬", Not: "⫬", NotCongruent: "≢", NotCupCap: "≭", NotDoubleVerticalBar: "∦", NotElement: "∉", NotEqual: "≠", NotEqualTilde: "≂̸", NotExists: "∄", NotGreater: "≯", NotGreaterEqual: "≱", NotGreaterFullEqual: "≧̸", NotGreaterGreater: "≫̸", NotGreaterLess: "≹", NotGreaterSlantEqual: "⩾̸", NotGreaterTilde: "≵", NotHumpDownHump: "≎̸", NotHumpEqual: "≏̸", notin: "∉", notindot: "⋵̸", notinE: "⋹̸", notinva: "∉", notinvb: "⋷", notinvc: "⋶", NotLeftTriangle: "⋪", NotLeftTriangleBar: "⧏̸", NotLeftTriangleEqual: "⋬", NotLess: "≮", NotLessEqual: "≰", NotLessGreater: "≸", NotLessLess: "≪̸", NotLessSlantEqual: "⩽̸", NotLessTilde: "≴", NotNestedGreaterGreater: "⪢̸", NotNestedLessLess: "⪡̸", notni: "∌", notniva: "∌", notnivb: "⋾", notnivc: "⋽", NotPrecedes: "⊀", NotPrecedesEqual: "⪯̸", NotPrecedesSlantEqual: "⋠", NotReverseElement: "∌", NotRightTriangle: "⋫", NotRightTriangleBar: "⧐̸", NotRightTriangleEqual: "⋭", NotSquareSubset: "⊏̸", NotSquareSubsetEqual: "⋢", NotSquareSuperset: "⊐̸", NotSquareSupersetEqual: "⋣", NotSubset: "⊂⃒", NotSubsetEqual: "⊈", NotSucceeds: "⊁", NotSucceedsEqual: "⪰̸", NotSucceedsSlantEqual: "⋡", NotSucceedsTilde: "≿̸", NotSuperset: "⊃⃒", NotSupersetEqual: "⊉", NotTilde: "≁", NotTildeEqual: "≄", NotTildeFullEqual: "≇", NotTildeTilde: "≉", NotVerticalBar: "∤", npar: "∦", nparallel: "∦", nparsl: "⫽⃥", npart: "∂̸", npolint: "⨔", npr: "⊀", nprcue: "⋠", npre: "⪯̸", nprec: "⊀", npreceq: "⪯̸", nrarr: "↛", nrArr: "⇏", nrarrc: "⤳̸", nrarrw: "↝̸", nrightarrow: "↛", nRightarrow: "⇏", nrtri: "⋫", nrtrie: "⋭", nsc: "⊁", nsccue: "⋡", nsce: "⪰̸", nscr: "𝓃", Nscr: "𝒩", nshortmid: "∤", nshortparallel: "∦", nsim: "≁", nsime: "≄", nsimeq: "≄", nsmid: "∤", nspar: "∦", nsqsube: "⋢", nsqsupe: "⋣", nsub: "⊄", nsube: "⊈", nsubE: "⫅̸", nsubset: "⊂⃒", nsubseteq: "⊈", nsubseteqq: "⫅̸", nsucc: "⊁", nsucceq: "⪰̸", nsup: "⊅", nsupe: "⊉", nsupE: "⫆̸", nsupset: "⊃⃒", nsupseteq: "⊉", nsupseteqq: "⫆̸", ntgl: "≹", ntilde: "ñ", Ntilde: "Ñ", ntlg: "≸", ntriangleleft: "⋪", ntrianglelefteq: "⋬", ntriangleright: "⋫", ntrianglerighteq: "⋭", nu: "ν", Nu: "Ν", num: "#", numero: "№", numsp: " ", nvap: "≍⃒", nvdash: "⊬", nvDash: "⊭", nVdash: "⊮", nVDash: "⊯", nvge: "≥⃒", nvgt: ">⃒", nvHarr: "⤄", nvinfin: "⧞", nvlArr: "⤂", nvle: "≤⃒", nvlt: "<⃒", nvltrie: "⊴⃒", nvrArr: "⤃", nvrtrie: "⊵⃒", nvsim: "∼⃒", nwarhk: "⤣", nwarr: "↖", nwArr: "⇖", nwarrow: "↖", nwnear: "⤧", oacute: "ó", Oacute: "Ó", oast: "⊛", ocir: "⊚", ocirc: "ô", Ocirc: "Ô", ocy: "о", Ocy: "О", odash: "⊝", odblac: "ő", Odblac: "Ő", odiv: "⨸", odot: "⊙", odsold: "⦼", oelig: "œ", OElig: "Œ", ofcir: "⦿", ofr: "𝔬", Ofr: "𝔒", ogon: "˛", ograve: "ò", Ograve: "Ò", ogt: "⧁", ohbar: "⦵", ohm: "Ω", oint: "∮", olarr: "↺", olcir: "⦾", olcross: "⦻", oline: "‾", olt: "⧀", omacr: "ō", Omacr: "Ō", omega: "ω", Omega: "Ω", omicron: "ο", Omicron: "Ο", omid: "⦶", ominus: "⊖", oopf: "𝕠", Oopf: "𝕆", opar: "⦷", OpenCurlyDoubleQuote: "“", OpenCurlyQuote: "‘", operp: "⦹", oplus: "⊕", or: "∨", Or: "⩔", orarr: "↻", ord: "⩝", order: "ℴ", orderof: "ℴ", ordf: "ª", ordm: "º", origof: "⊶", oror: "⩖", orslope: "⩗", orv: "⩛", oS: "Ⓢ", oscr: "ℴ", Oscr: "𝒪", oslash: "ø", Oslash: "Ø", osol: "⊘", otilde: "õ", Otilde: "Õ", otimes: "⊗", Otimes: "⨷", otimesas: "⨶", ouml: "ö", Ouml: "Ö", ovbar: "⌽", OverBar: "‾", OverBrace: "⏞", OverBracket: "⎴", OverParenthesis: "⏜", par: "∥", para: "¶", parallel: "∥", parsim: "⫳", parsl: "⫽", part: "∂", PartialD: "∂", pcy: "п", Pcy: "П", percnt: "%", period: ".", permil: "‰", perp: "⊥", pertenk: "‱", pfr: "𝔭", Pfr: "𝔓", phi: "φ", Phi: "Φ", phiv: "ϕ", phmmat: "ℳ", phone: "☎", pi: "π", Pi: "Π", pitchfork: "⋔", piv: "ϖ", planck: "ℏ", planckh: "ℎ", plankv: "ℏ", plus: "+", plusacir: "⨣", plusb: "⊞", pluscir: "⨢", plusdo: "∔", plusdu: "⨥", pluse: "⩲", PlusMinus: "±", plusmn: "±", plussim: "⨦", plustwo: "⨧", pm: "±", Poincareplane: "ℌ", pointint: "⨕", popf: "𝕡", Popf: "ℙ", pound: "£", pr: "≺", Pr: "⪻", prap: "⪷", prcue: "≼", pre: "⪯", prE: "⪳", prec: "≺", precapprox: "⪷", preccurlyeq: "≼", Precedes: "≺", PrecedesEqual: "⪯", PrecedesSlantEqual: "≼", PrecedesTilde: "≾", preceq: "⪯", precnapprox: "⪹", precneqq: "⪵", precnsim: "⋨", precsim: "≾", prime: "′", Prime: "″", primes: "ℙ", prnap: "⪹", prnE: "⪵", prnsim: "⋨", prod: "∏", Product: "∏", profalar: "⌮", profline: "⌒", profsurf: "⌓", prop: "∝", Proportion: "∷", Proportional: "∝", propto: "∝", prsim: "≾", prurel: "⊰", pscr: "𝓅", Pscr: "𝒫", psi: "ψ", Psi: "Ψ", puncsp: " ", qfr: "𝔮", Qfr: "𝔔", qint: "⨌", qopf: "𝕢", Qopf: "ℚ", qprime: "⁗", qscr: "𝓆", Qscr: "𝒬", quaternions: "ℍ", quatint: "⨖", quest: "?", questeq: "≟", quot: '"', QUOT: '"', rAarr: "⇛", race: "∽̱", racute: "ŕ", Racute: "Ŕ", radic: "√", raemptyv: "⦳", rang: "⟩", Rang: "⟫", rangd: "⦒", range: "⦥", rangle: "⟩", raquo: "»", rarr: "→", rArr: "⇒", Rarr: "↠", rarrap: "⥵", rarrb: "⇥", rarrbfs: "⤠", rarrc: "⤳", rarrfs: "⤞", rarrhk: "↪", rarrlp: "↬", rarrpl: "⥅", rarrsim: "⥴", rarrtl: "↣", Rarrtl: "⤖", rarrw: "↝", ratail: "⤚", rAtail: "⤜", ratio: "∶", rationals: "ℚ", rbarr: "⤍", rBarr: "⤏", RBarr: "⤐", rbbrk: "❳", rbrace: "}", rbrack: "]", rbrke: "⦌", rbrksld: "⦎", rbrkslu: "⦐", rcaron: "ř", Rcaron: "Ř", rcedil: "ŗ", Rcedil: "Ŗ", rceil: "⌉", rcub: "}", rcy: "р", Rcy: "Р", rdca: "⤷", rdldhar: "⥩", rdquo: "”", rdquor: "”", rdsh: "↳", Re: "ℜ", real: "ℜ", realine: "ℛ", realpart: "ℜ", reals: "ℝ", rect: "▭", reg: "®", REG: "®", ReverseElement: "∋", ReverseEquilibrium: "⇋", ReverseUpEquilibrium: "⥯", rfisht: "⥽", rfloor: "⌋", rfr: "𝔯", Rfr: "ℜ", rHar: "⥤", rhard: "⇁", rharu: "⇀", rharul: "⥬", rho: "ρ", Rho: "Ρ", rhov: "ϱ", RightAngleBracket: "⟩", rightarrow: "→", Rightarrow: "⇒", RightArrow: "→", RightArrowBar: "⇥", RightArrowLeftArrow: "⇄", rightarrowtail: "↣", RightCeiling: "⌉", RightDoubleBracket: "⟧", RightDownTeeVector: "⥝", RightDownVector: "⇂", RightDownVectorBar: "⥕", RightFloor: "⌋", rightharpoondown: "⇁", rightharpoonup: "⇀", rightleftarrows: "⇄", rightleftharpoons: "⇌", rightrightarrows: "⇉", rightsquigarrow: "↝", RightTee: "⊢", RightTeeArrow: "↦", RightTeeVector: "⥛", rightthreetimes: "⋌", RightTriangle: "⊳", RightTriangleBar: "⧐", RightTriangleEqual: "⊵", RightUpDownVector: "⥏", RightUpTeeVector: "⥜", RightUpVector: "↾", RightUpVectorBar: "⥔", RightVector: "⇀", RightVectorBar: "⥓", ring: "˚", risingdotseq: "≓", rlarr: "⇄", rlhar: "⇌", rlm: "", rmoust: "⎱", rmoustache: "⎱", rnmid: "⫮", roang: "⟭", roarr: "⇾", robrk: "⟧", ropar: "⦆", ropf: "𝕣", Ropf: "ℝ", roplus: "⨮", rotimes: "⨵", RoundImplies: "⥰", rpar: ")", rpargt: "⦔", rppolint: "⨒", rrarr: "⇉", Rrightarrow: "⇛", rsaquo: "›", rscr: "𝓇", Rscr: "ℛ", rsh: "↱", Rsh: "↱", rsqb: "]", rsquo: "’", rsquor: "’", rthree: "⋌", rtimes: "⋊", rtri: "▹", rtrie: "⊵", rtrif: "▸", rtriltri: "⧎", RuleDelayed: "⧴", ruluhar: "⥨", rx: "℞", sacute: "ś", Sacute: "Ś", sbquo: "‚", sc: "≻", Sc: "⪼", scap: "⪸", scaron: "š", Scaron: "Š", sccue: "≽", sce: "⪰", scE: "⪴", scedil: "ş", Scedil: "Ş", scirc: "ŝ", Scirc: "Ŝ", scnap: "⪺", scnE: "⪶", scnsim: "⋩", scpolint: "⨓", scsim: "≿", scy: "с", Scy: "С", sdot: "⋅", sdotb: "⊡", sdote: "⩦", searhk: "⤥", searr: "↘", seArr: "⇘", searrow: "↘", sect: "§", semi: ";", seswar: "⤩", setminus: "∖", setmn: "∖", sext: "✶", sfr: "𝔰", Sfr: "𝔖", sfrown: "⌢", sharp: "♯", shchcy: "щ", SHCHcy: "Щ", shcy: "ш", SHcy: "Ш", ShortDownArrow: "↓", ShortLeftArrow: "←", shortmid: "∣", shortparallel: "∥", ShortRightArrow: "→", ShortUpArrow: "↑", shy: "", sigma: "σ", Sigma: "Σ", sigmaf: "ς", sigmav: "ς", sim: "∼", simdot: "⩪", sime: "≃", simeq: "≃", simg: "⪞", simgE: "⪠", siml: "⪝", simlE: "⪟", simne: "≆", simplus: "⨤", simrarr: "⥲", slarr: "←", SmallCircle: "∘", smallsetminus: "∖", smashp: "⨳", smeparsl: "⧤", smid: "∣", smile: "⌣", smt: "⪪", smte: "⪬", smtes: "⪬︀", softcy: "ь", SOFTcy: "Ь", sol: "/", solb: "⧄", solbar: "⌿", sopf: "𝕤", Sopf: "𝕊", spades: "♠", spadesuit: "♠", spar: "∥", sqcap: "⊓", sqcaps: "⊓︀", sqcup: "⊔", sqcups: "⊔︀", Sqrt: "√", sqsub: "⊏", sqsube: "⊑", sqsubset: "⊏", sqsubseteq: "⊑", sqsup: "⊐", sqsupe: "⊒", sqsupset: "⊐", sqsupseteq: "⊒", squ: "□", square: "□", Square: "□", SquareIntersection: "⊓", SquareSubset: "⊏", SquareSubsetEqual: "⊑", SquareSuperset: "⊐", SquareSupersetEqual: "⊒", SquareUnion: "⊔", squarf: "▪", squf: "▪", srarr: "→", sscr: "𝓈", Sscr: "𝒮", ssetmn: "∖", ssmile: "⌣", sstarf: "⋆", star: "☆", Star: "⋆", starf: "★", straightepsilon: "ϵ", straightphi: "ϕ", strns: "¯", sub: "⊂", Sub: "⋐", subdot: "⪽", sube: "⊆", subE: "⫅", subedot: "⫃", submult: "⫁", subne: "⊊", subnE: "⫋", subplus: "⪿", subrarr: "⥹", subset: "⊂", Subset: "⋐", subseteq: "⊆", subseteqq: "⫅", SubsetEqual: "⊆", subsetneq: "⊊", subsetneqq: "⫋", subsim: "⫇", subsub: "⫕", subsup: "⫓", succ: "≻", succapprox: "⪸", succcurlyeq: "≽", Succeeds: "≻", SucceedsEqual: "⪰", SucceedsSlantEqual: "≽", SucceedsTilde: "≿", succeq: "⪰", succnapprox: "⪺", succneqq: "⪶", succnsim: "⋩", succsim: "≿", SuchThat: "∋", sum: "∑", Sum: "∑", sung: "♪", sup: "⊃", Sup: "⋑", sup1: "¹", sup2: "²", sup3: "³", supdot: "⪾", supdsub: "⫘", supe: "⊇", supE: "⫆", supedot: "⫄", Superset: "⊃", SupersetEqual: "⊇", suphsol: "⟉", suphsub: "⫗", suplarr: "⥻", supmult: "⫂", supne: "⊋", supnE: "⫌", supplus: "⫀", supset: "⊃", Supset: "⋑", supseteq: "⊇", supseteqq: "⫆", supsetneq: "⊋", supsetneqq: "⫌", supsim: "⫈", supsub: "⫔", supsup: "⫖", swarhk: "⤦", swarr: "↙", swArr: "⇙", swarrow: "↙", swnwar: "⤪", szlig: "ß", Tab: " ", target: "⌖", tau: "τ", Tau: "Τ", tbrk: "⎴", tcaron: "ť", Tcaron: "Ť", tcedil: "ţ", Tcedil: "Ţ", tcy: "т", Tcy: "Т", tdot: "⃛", telrec: "⌕", tfr: "𝔱", Tfr: "𝔗", there4: "∴", therefore: "∴", Therefore: "∴", theta: "θ", Theta: "Θ", thetasym: "ϑ", thetav: "ϑ", thickapprox: "≈", thicksim: "∼", ThickSpace: " ", thinsp: " ", ThinSpace: " ", thkap: "≈", thksim: "∼", thorn: "þ", THORN: "Þ", tilde: "˜", Tilde: "∼", TildeEqual: "≃", TildeFullEqual: "≅", TildeTilde: "≈", times: "×", timesb: "⊠", timesbar: "⨱", timesd: "⨰", tint: "∭", toea: "⤨", top: "⊤", topbot: "⌶", topcir: "⫱", topf: "𝕥", Topf: "𝕋", topfork: "⫚", tosa: "⤩", tprime: "‴", trade: "™", TRADE: "™", triangle: "▵", triangledown: "▿", triangleleft: "◃", trianglelefteq: "⊴", triangleq: "≜", triangleright: "▹", trianglerighteq: "⊵", tridot: "◬", trie: "≜", triminus: "⨺", TripleDot: "⃛", triplus: "⨹", trisb: "⧍", tritime: "⨻", trpezium: "⏢", tscr: "𝓉", Tscr: "𝒯", tscy: "ц", TScy: "Ц", tshcy: "ћ", TSHcy: "Ћ", tstrok: "ŧ", Tstrok: "Ŧ", twixt: "≬", twoheadleftarrow: "↞", twoheadrightarrow: "↠", uacute: "ú", Uacute: "Ú", uarr: "↑", uArr: "⇑", Uarr: "↟", Uarrocir: "⥉", ubrcy: "ў", Ubrcy: "Ў", ubreve: "ŭ", Ubreve: "Ŭ", ucirc: "û", Ucirc: "Û", ucy: "у", Ucy: "У", udarr: "⇅", udblac: "ű", Udblac: "Ű", udhar: "⥮", ufisht: "⥾", ufr: "𝔲", Ufr: "𝔘", ugrave: "ù", Ugrave: "Ù", uHar: "⥣", uharl: "↿", uharr: "↾", uhblk: "▀", ulcorn: "⌜", ulcorner: "⌜", ulcrop: "⌏", ultri: "◸", umacr: "ū", Umacr: "Ū", uml: "¨", UnderBar: "_", UnderBrace: "⏟", UnderBracket: "⎵", UnderParenthesis: "⏝", Union: "⋃", UnionPlus: "⊎", uogon: "ų", Uogon: "Ų", uopf: "𝕦", Uopf: "𝕌", uparrow: "↑", Uparrow: "⇑", UpArrow: "↑", UpArrowBar: "⤒", UpArrowDownArrow: "⇅", updownarrow: "↕", Updownarrow: "⇕", UpDownArrow: "↕", UpEquilibrium: "⥮", upharpoonleft: "↿", upharpoonright: "↾", uplus: "⊎", UpperLeftArrow: "↖", UpperRightArrow: "↗", upsi: "υ", Upsi: "ϒ", upsih: "ϒ", upsilon: "υ", Upsilon: "Υ", UpTee: "⊥", UpTeeArrow: "↥", upuparrows: "⇈", urcorn: "⌝", urcorner: "⌝", urcrop: "⌎", uring: "ů", Uring: "Ů", urtri: "◹", uscr: "𝓊", Uscr: "𝒰", utdot: "⋰", utilde: "ũ", Utilde: "Ũ", utri: "▵", utrif: "▴", uuarr: "⇈", uuml: "ü", Uuml: "Ü", uwangle: "⦧", vangrt: "⦜", varepsilon: "ϵ", varkappa: "ϰ", varnothing: "∅", varphi: "ϕ", varpi: "ϖ", varpropto: "∝", varr: "↕", vArr: "⇕", varrho: "ϱ", varsigma: "ς", varsubsetneq: "⊊︀", varsubsetneqq: "⫋︀", varsupsetneq: "⊋︀", varsupsetneqq: "⫌︀", vartheta: "ϑ", vartriangleleft: "⊲", vartriangleright: "⊳", vBar: "⫨", Vbar: "⫫", vBarv: "⫩", vcy: "в", Vcy: "В", vdash: "⊢", vDash: "⊨", Vdash: "⊩", VDash: "⊫", Vdashl: "⫦", vee: "∨", Vee: "⋁", veebar: "⊻", veeeq: "≚", vellip: "⋮", verbar: "|", Verbar: "‖", vert: "|", Vert: "‖", VerticalBar: "∣", VerticalLine: "|", VerticalSeparator: "❘", VerticalTilde: "≀", VeryThinSpace: " ", vfr: "𝔳", Vfr: "𝔙", vltri: "⊲", vnsub: "⊂⃒", vnsup: "⊃⃒", vopf: "𝕧", Vopf: "𝕍", vprop: "∝", vrtri: "⊳", vscr: "𝓋", Vscr: "𝒱", vsubne: "⊊︀", vsubnE: "⫋︀", vsupne: "⊋︀", vsupnE: "⫌︀", Vvdash: "⊪", vzigzag: "⦚", wcirc: "ŵ", Wcirc: "Ŵ", wedbar: "⩟", wedge: "∧", Wedge: "⋀", wedgeq: "≙", weierp: "℘", wfr: "𝔴", Wfr: "𝔚", wopf: "𝕨", Wopf: "𝕎", wp: "℘", wr: "≀", wreath: "≀", wscr: "𝓌", Wscr: "𝒲", xcap: "⋂", xcirc: "◯", xcup: "⋃", xdtri: "▽", xfr: "𝔵", Xfr: "𝔛", xharr: "⟷", xhArr: "⟺", xi: "ξ", Xi: "Ξ", xlarr: "⟵", xlArr: "⟸", xmap: "⟼", xnis: "⋻", xodot: "⨀", xopf: "𝕩", Xopf: "𝕏", xoplus: "⨁", xotime: "⨂", xrarr: "⟶", xrArr: "⟹", xscr: "𝓍", Xscr: "𝒳", xsqcup: "⨆", xuplus: "⨄", xutri: "△", xvee: "⋁", xwedge: "⋀", yacute: "ý", Yacute: "Ý", yacy: "я", YAcy: "Я", ycirc: "ŷ", Ycirc: "Ŷ", ycy: "ы", Ycy: "Ы", yen: "¥", yfr: "𝔶", Yfr: "𝔜", yicy: "ї", YIcy: "Ї", yopf: "𝕪", Yopf: "𝕐", yscr: "𝓎", Yscr: "𝒴", yucy: "ю", YUcy: "Ю", yuml: "ÿ", Yuml: "Ÿ", zacute: "ź", Zacute: "Ź", zcaron: "ž", Zcaron: "Ž", zcy: "з", Zcy: "З", zdot: "ż", Zdot: "Ż", zeetrf: "ℨ", ZeroWidthSpace: "", zeta: "ζ", Zeta: "Ζ", zfr: "𝔷", Zfr: "ℨ", zhcy: "ж", ZHcy: "Ж", zigrarr: "⇝", zopf: "𝕫", Zopf: "ℤ", zscr: "𝓏", Zscr: "𝒵", zwj: "", zwnj: "" }, F = { aacute: "á", Aacute: "Á", acirc: "â", Acirc: "Â", acute: "´", aelig: "æ", AElig: "Æ", agrave: "à", Agrave: "À", amp: "&", AMP: "&", aring: "å", Aring: "Å", atilde: "ã", Atilde: "Ã", auml: "ä", Auml: "Ä", brvbar: "¦", ccedil: "ç", Ccedil: "Ç", cedil: "¸", cent: "¢", copy: "©", COPY: "©", curren: "¤", deg: "°", divide: "÷", eacute: "é", Eacute: "É", ecirc: "ê", Ecirc: "Ê", egrave: "è", Egrave: "È", eth: "ð", ETH: "Ð", euml: "ë", Euml: "Ë", frac12: "½", frac14: "¼", frac34: "¾", gt: ">", GT: ">", iacute: "í", Iacute: "Í", icirc: "î", Icirc: "Î", iexcl: "¡", igrave: "ì", Igrave: "Ì", iquest: "¿", iuml: "ï", Iuml: "Ï", laquo: "«", lt: "<", LT: "<", macr: "¯", micro: "µ", middot: "·", nbsp: " ", not: "¬", ntilde: "ñ", Ntilde: "Ñ", oacute: "ó", Oacute: "Ó", ocirc: "ô", Ocirc: "Ô", ograve: "ò", Ograve: "Ò", ordf: "ª", ordm: "º", oslash: "ø", Oslash: "Ø", otilde: "õ", Otilde: "Õ", ouml: "ö", Ouml: "Ö", para: "¶", plusmn: "±", pound: "£", quot: '"', QUOT: '"', raquo: "»", reg: "®", REG: "®", sect: "§", shy: "", sup1: "¹", sup2: "²", sup3: "³", szlig: "ß", thorn: "þ", THORN: "Þ", times: "×", uacute: "ú", Uacute: "Ú", ucirc: "û", Ucirc: "Û", ugrave: "ù", Ugrave: "Ù", uml: "¨", uuml: "ü", Uuml: "Ü", yacute: "ý", Yacute: "Ý", yen: "¥", yuml: "ÿ" }, Q = { 0: "�", 128: "€", 130: "‚", 131: "ƒ", 132: "„", 133: "…", 134: "†", 135: "‡", 136: "ˆ", 137: "‰", 138: "Š", 139: "‹", 140: "Œ", 142: "Ž", 145: "‘", 146: "’", 147: "“", 148: "”", 149: "•", 150: "–", 151: "—", 152: "˜", 153: "™", 154: "š", 155: "›", 156: "œ", 158: "ž", 159: "Ÿ" }, G = [1, 2, 3, 4, 5, 6, 7, 8, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 64976, 64977, 64978, 64979, 64980, 64981, 64982, 64983, 64984, 64985, 64986, 64987, 64988, 64989, 64990, 64991, 64992, 64993, 64994, 64995, 64996, 64997, 64998, 64999, 65e3, 65001, 65002, 65003, 65004, 65005, 65006, 65007, 65534, 65535, 131070, 131071, 196606, 196607, 262142, 262143, 327678, 327679, 393214, 393215, 458750, 458751, 524286, 524287, 589822, 589823, 655358, 655359, 720894, 720895, 786430, 786431, 851966, 851967, 917502, 917503, 983038, 983039, 1048574, 1048575, 1114110, 1114111], j = String.fromCharCode, oe = {}, w = oe.hasOwnProperty, $ = function(Ae, Pe) {
|
|
1469
1463
|
return w.call(Ae, Pe);
|
|
1470
1464
|
}, te = function(Ae, Pe) {
|
|
1471
1465
|
for (var Ue = -1, We = Ae.length; ++Ue < We; )
|
|
@@ -1481,7 +1475,7 @@ mn.exports;
|
|
|
1481
1475
|
return Ue;
|
|
1482
1476
|
}, ne = function(Ae, Pe) {
|
|
1483
1477
|
var Ue = "";
|
|
1484
|
-
return Ae >= 55296 && Ae <= 57343 || Ae > 1114111 ? (Pe && re("character reference outside the permissible Unicode range"), "�") : $(
|
|
1478
|
+
return Ae >= 55296 && Ae <= 57343 || Ae > 1114111 ? (Pe && re("character reference outside the permissible Unicode range"), "�") : $(Q, Ae) ? (Pe && re("disallowed character reference"), Q[Ae]) : (Pe && te(G, Ae) && re("disallowed character reference"), Ae > 65535 && (Ae -= 65536, Ue += j(Ae >>> 10 & 1023 | 55296), Ae = 56320 | Ae & 1023), Ue += j(Ae), Ue);
|
|
1485
1479
|
}, Ce = function(Ae) {
|
|
1486
1480
|
return "&#x" + Ae.toString(16).toUpperCase() + ";";
|
|
1487
1481
|
}, _e = function(Ae) {
|
|
@@ -1573,13 +1567,13 @@ const cg = /* @__PURE__ */ og(rs), tt = (L) => {
|
|
|
1573
1567
|
]);
|
|
1574
1568
|
const B = e.type, y = u.data, O = u.data.variables, J = Sl(I.elementAttributes), ae = q(() => {
|
|
1575
1569
|
var $, te, Z, ne, Ce, _e, re;
|
|
1576
|
-
const
|
|
1570
|
+
const Q = IE(
|
|
1577
1571
|
($ = y == null ? void 0 : y.globalAttributes) == null ? void 0 : $["mj-class"],
|
|
1578
1572
|
(Z = (te = y == null ? void 0 : y.blockAttributes) == null ? void 0 : te[B]) == null ? void 0 : Z["mj-class"],
|
|
1579
1573
|
J["mj-class"]
|
|
1580
|
-
),
|
|
1574
|
+
), G = {};
|
|
1581
1575
|
Object.keys((y == null ? void 0 : y.classAttributes) || {}).forEach((ge) => {
|
|
1582
|
-
|
|
1576
|
+
Q.split(" ").map((Ne) => Ne.trim()).filter(Boolean).includes(ge) && Object.assign(G, b(y == null ? void 0 : y.classAttributes, ge));
|
|
1583
1577
|
});
|
|
1584
1578
|
const j = De.getBlockByType(B);
|
|
1585
1579
|
(ne = b(J, "padding", "")) != null && ne.trim() && (delete s["padding-top"], delete s["padding-bottom"], delete s["padding-left"], delete s["padding-right"]), (Ce = b(J, "inner-padding", "")) != null && Ce.trim() && (delete s["inner-padding-top"], delete s["inner-padding-bottom"], delete s["inner-padding-left"], delete s["inner-padding-right"]);
|
|
@@ -1589,7 +1583,7 @@ const cg = /* @__PURE__ */ og(rs), tt = (L) => {
|
|
|
1589
1583
|
y == null ? void 0 : y.globalAttributes,
|
|
1590
1584
|
(_e = y == null ? void 0 : y.categoryAttributes) == null ? void 0 : _e[j.category],
|
|
1591
1585
|
(re = y == null ? void 0 : y.blockAttributes) == null ? void 0 : re[e.type],
|
|
1592
|
-
|
|
1586
|
+
G,
|
|
1593
1587
|
J
|
|
1594
1588
|
), w = sg(oe, l);
|
|
1595
1589
|
if (a && Object.keys(a).length > 0 || O && Object.keys(O).length > 0) {
|
|
@@ -1613,28 +1607,28 @@ const cg = /* @__PURE__ */ og(rs), tt = (L) => {
|
|
|
1613
1607
|
y == null ? void 0 : y.globalAttributes,
|
|
1614
1608
|
O
|
|
1615
1609
|
]), T = Re(
|
|
1616
|
-
(
|
|
1617
|
-
let
|
|
1618
|
-
|
|
1610
|
+
(Q) => {
|
|
1611
|
+
let G;
|
|
1612
|
+
Q && (typeof Q == "string" ? G = b(
|
|
1619
1613
|
m ? m(ae) : {},
|
|
1620
|
-
|
|
1621
|
-
) :
|
|
1614
|
+
Q
|
|
1615
|
+
) : G = Q);
|
|
1622
1616
|
const j = {};
|
|
1623
|
-
for (const oe in
|
|
1624
|
-
|
|
1617
|
+
for (const oe in G)
|
|
1618
|
+
G[oe] && (j[wu(oe)] = ca(G[oe]) ? rs.decode(G[oe]) : G[oe]);
|
|
1625
1619
|
return j;
|
|
1626
1620
|
},
|
|
1627
1621
|
[ae, m]
|
|
1628
1622
|
), N = q(() => ({
|
|
1629
|
-
style: (
|
|
1623
|
+
style: (Q) => T(Q),
|
|
1630
1624
|
default: bE
|
|
1631
1625
|
}), [T]), F = Re(
|
|
1632
|
-
(
|
|
1633
|
-
pE(
|
|
1626
|
+
(Q) => Dn(
|
|
1627
|
+
pE(Q, Nl),
|
|
1634
1628
|
(j, oe, w) => {
|
|
1635
1629
|
const te = (w === "style" ? N.style : N.default)(oe);
|
|
1636
1630
|
let Z = w;
|
|
1637
|
-
return w === "class" && (Z = "className"), w.startsWith("cell") && (Z = wu(w.replace(/^cell(.*)$/, "cell_$1"))), Z = wu(Z), Z === "verticalAlign" && (Z = "verticalalign"), Z === "cellpadding" && (Z = "cellPadding"),
|
|
1631
|
+
return w === "class" && (Z = "className"), w.startsWith("cell") && (Z = wu(w.replace(/^cell(.*)$/, "cell_$1"))), Z = wu(Z), Z === "verticalAlign" && (Z = "verticalalign"), Z === "cellpadding" && (Z = "cellPadding"), W(p({}, j), {
|
|
1638
1632
|
[Z]: ca(te) ? rs.decode(te) : te
|
|
1639
1633
|
});
|
|
1640
1634
|
},
|
|
@@ -1712,12 +1706,12 @@ const lg = () => /* @__PURE__ */ f.createElement(
|
|
|
1712
1706
|
)
|
|
1713
1707
|
)
|
|
1714
1708
|
), dg = f.lazy(
|
|
1715
|
-
() => import("./index-
|
|
1709
|
+
() => import("./index-25b03497.js")
|
|
1716
1710
|
), fg = () => {
|
|
1717
1711
|
const e = _u();
|
|
1718
1712
|
return q(() => e.headerElement ? /* @__PURE__ */ f.createElement(dg, { element: e.headerElement }) : null, [e.headerElement]);
|
|
1719
1713
|
}, hg = f.lazy(
|
|
1720
|
-
() => import("./index-
|
|
1714
|
+
() => import("./index-25b03497.js")
|
|
1721
1715
|
), Ag = () => {
|
|
1722
1716
|
const e = _u();
|
|
1723
1717
|
return q(() => e.footerElement ? /* @__PURE__ */ f.createElement(hg, { element: e.footerElement }) : null, [e.footerElement]);
|
|
@@ -1821,7 +1815,7 @@ class gg extends qe {
|
|
|
1821
1815
|
Y(this, "defaultAttributes", p({}, Eg.defaultData.attributes));
|
|
1822
1816
|
}
|
|
1823
1817
|
renderElement() {
|
|
1824
|
-
return /* @__PURE__ */ f.createElement("div", null, /* @__PURE__ */ f.createElement(bg,
|
|
1818
|
+
return /* @__PURE__ */ f.createElement("div", null, /* @__PURE__ */ f.createElement(bg, W(p({}, this.props), { Com: this }), /* @__PURE__ */ f.createElement("div", null, this.renderChildrenWithPlaceholder())));
|
|
1825
1819
|
}
|
|
1826
1820
|
}
|
|
1827
1821
|
const bg = (e) => {
|
|
@@ -1829,7 +1823,7 @@ const bg = (e) => {
|
|
|
1829
1823
|
div: {
|
|
1830
1824
|
"background-color": g["background-color"]
|
|
1831
1825
|
}
|
|
1832
|
-
}), []), { attributes: a, getHtmlAttributes: s } = tt(
|
|
1826
|
+
}), []), { attributes: a, getHtmlAttributes: s } = tt(W(p({}, e), {
|
|
1833
1827
|
defaultAttributes: e.Com.defaultAttributes,
|
|
1834
1828
|
allowedAttributes: e.Com.allowedAttributes,
|
|
1835
1829
|
getDefaultStyles: u
|
|
@@ -1840,7 +1834,7 @@ const bg = (e) => {
|
|
|
1840
1834
|
const g = hs.getFeatureEnabled("REMOVE_BRAND");
|
|
1841
1835
|
return /* @__PURE__ */ f.createElement(f.Fragment, null, /* @__PURE__ */ f.createElement(mg, { elementData: e.element.data, attributes: a }), /* @__PURE__ */ f.createElement(
|
|
1842
1836
|
"div",
|
|
1843
|
-
|
|
1837
|
+
W(p({
|
|
1844
1838
|
className: "mjbody",
|
|
1845
1839
|
"data-slate-block": "page"
|
|
1846
1840
|
}, e.attributes), {
|
|
@@ -1925,7 +1919,7 @@ const bg = (e) => {
|
|
|
1925
1919
|
"word-break": "break-word"
|
|
1926
1920
|
}
|
|
1927
1921
|
}), [a, I]);
|
|
1928
|
-
return /* @__PURE__ */ f.createElement("tr",
|
|
1922
|
+
return /* @__PURE__ */ f.createElement("tr", W(p({}, e), { "data-slate-block": u }), /* @__PURE__ */ f.createElement("td", p({}, L), s));
|
|
1929
1923
|
}, pg = De.getBlockByType(de.TEXT);
|
|
1930
1924
|
let ms = class extends qe {
|
|
1931
1925
|
constructor() {
|
|
@@ -1938,7 +1932,7 @@ let ms = class extends qe {
|
|
|
1938
1932
|
renderElement() {
|
|
1939
1933
|
return /* @__PURE__ */ f.createElement(
|
|
1940
1934
|
Tg,
|
|
1941
|
-
|
|
1935
|
+
W(p({}, this.props), {
|
|
1942
1936
|
Com: this,
|
|
1943
1937
|
childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
|
|
1944
1938
|
})
|
|
@@ -1960,7 +1954,7 @@ const Tg = (e) => {
|
|
|
1960
1954
|
color: L.color,
|
|
1961
1955
|
height: L.height
|
|
1962
1956
|
}
|
|
1963
|
-
}), []), { attributes: s, getHtmlAttributes: l } = tt(
|
|
1957
|
+
}), []), { attributes: s, getHtmlAttributes: l } = tt(W(p({}, e), {
|
|
1964
1958
|
defaultAttributes: e.Com.defaultAttributes,
|
|
1965
1959
|
allowedAttributes: e.Com.allowedAttributes,
|
|
1966
1960
|
getDefaultStyles: a
|
|
@@ -1974,7 +1968,7 @@ const Tg = (e) => {
|
|
|
1974
1968
|
componentType: e.Com.componentType,
|
|
1975
1969
|
getHtmlAttributes: l
|
|
1976
1970
|
},
|
|
1977
|
-
/* @__PURE__ */ f.createElement("div",
|
|
1971
|
+
/* @__PURE__ */ f.createElement("div", W(p({}, m), { "data-text-align": g }), e.childrenWithPlaceholder)
|
|
1978
1972
|
), [
|
|
1979
1973
|
g,
|
|
1980
1974
|
m,
|
|
@@ -2059,7 +2053,7 @@ let yg = class extends qe {
|
|
|
2059
2053
|
renderElement() {
|
|
2060
2054
|
return /* @__PURE__ */ f.createElement(
|
|
2061
2055
|
Ig,
|
|
2062
|
-
|
|
2056
|
+
W(p({}, this.props), {
|
|
2063
2057
|
Com: this,
|
|
2064
2058
|
childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
|
|
2065
2059
|
})
|
|
@@ -2078,8 +2072,8 @@ const Ig = (e) => {
|
|
|
2078
2072
|
const { borders: F } = Nn({
|
|
2079
2073
|
attributes: y,
|
|
2080
2074
|
containerWidth: u
|
|
2081
|
-
}),
|
|
2082
|
-
return `${T -
|
|
2075
|
+
}), Q = Pt(y, "inner-padding", "left") + Pt(y, "inner-padding", "right");
|
|
2076
|
+
return `${T - Q - F}px`;
|
|
2083
2077
|
})(y.width || "");
|
|
2084
2078
|
return {
|
|
2085
2079
|
table: {
|
|
@@ -2122,7 +2116,7 @@ const Ig = (e) => {
|
|
|
2122
2116
|
};
|
|
2123
2117
|
},
|
|
2124
2118
|
[u]
|
|
2125
|
-
), { attributes: s, getHtmlAttributes: l } = tt(
|
|
2119
|
+
), { attributes: s, getHtmlAttributes: l } = tt(W(p({}, e), {
|
|
2126
2120
|
defaultAttributes: e.Com.defaultAttributes,
|
|
2127
2121
|
allowedAttributes: e.Com.allowedAttributes,
|
|
2128
2122
|
getDefaultStyles: a
|
|
@@ -2216,7 +2210,7 @@ let Rg = class extends qe {
|
|
|
2216
2210
|
renderElement() {
|
|
2217
2211
|
return /* @__PURE__ */ f.createElement(
|
|
2218
2212
|
vg,
|
|
2219
|
-
|
|
2213
|
+
W(p({}, this.props), {
|
|
2220
2214
|
Com: this,
|
|
2221
2215
|
childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
|
|
2222
2216
|
})
|
|
@@ -2236,7 +2230,7 @@ const vg = (e) => {
|
|
|
2236
2230
|
"padding-top"
|
|
2237
2231
|
].some((F) => b(N, F) != null), []), m = Re(
|
|
2238
2232
|
(N) => {
|
|
2239
|
-
const F = u.containerWidth,
|
|
2233
|
+
const F = u.containerWidth, Q = () => {
|
|
2240
2234
|
const { unit: oe, parsedWidth: w } = Zt(
|
|
2241
2235
|
En({
|
|
2242
2236
|
isToString: !0,
|
|
@@ -2248,7 +2242,7 @@ const vg = (e) => {
|
|
|
2248
2242
|
}
|
|
2249
2243
|
);
|
|
2250
2244
|
return oe === "%" ? `${parseFloat(F) * w / 100}px` : `${w}px`;
|
|
2251
|
-
},
|
|
2245
|
+
}, G = () => {
|
|
2252
2246
|
const oe = b(N, "width");
|
|
2253
2247
|
if (s)
|
|
2254
2248
|
return "100%";
|
|
@@ -2281,7 +2275,7 @@ const vg = (e) => {
|
|
|
2281
2275
|
direction: b(N, "direction"),
|
|
2282
2276
|
display: "inline-block",
|
|
2283
2277
|
"vertical-align": b(N, "vertical-align"),
|
|
2284
|
-
width:
|
|
2278
|
+
width: G()
|
|
2285
2279
|
},
|
|
2286
2280
|
table: p({}, l(N) ? {
|
|
2287
2281
|
"background-color": b(N, "inner-background-color"),
|
|
@@ -2294,9 +2288,9 @@ const vg = (e) => {
|
|
|
2294
2288
|
} : j),
|
|
2295
2289
|
tdOutlook: {
|
|
2296
2290
|
"vertical-align": b(N, "vertical-align"),
|
|
2297
|
-
width:
|
|
2291
|
+
width: Q()
|
|
2298
2292
|
},
|
|
2299
|
-
gutter:
|
|
2293
|
+
gutter: W(p({}, j), {
|
|
2300
2294
|
padding: b(N, "padding"),
|
|
2301
2295
|
"padding-top": b(N, "padding-top"),
|
|
2302
2296
|
"padding-right": b(N, "padding-right"),
|
|
@@ -2311,30 +2305,30 @@ const vg = (e) => {
|
|
|
2311
2305
|
a,
|
|
2312
2306
|
s
|
|
2313
2307
|
]
|
|
2314
|
-
), { attributes: g, getHtmlAttributes: I } = tt(
|
|
2308
|
+
), { attributes: g, getHtmlAttributes: I } = tt(W(p({}, e), {
|
|
2315
2309
|
defaultAttributes: e.Com.defaultAttributes,
|
|
2316
2310
|
allowedAttributes: e.Com.allowedAttributes,
|
|
2317
2311
|
getDefaultStyles: m
|
|
2318
2312
|
})), L = Re(() => {
|
|
2319
2313
|
let N = "";
|
|
2320
|
-
const { parsedWidth: F, unit:
|
|
2314
|
+
const { parsedWidth: F, unit: Q } = En({
|
|
2321
2315
|
isToString: !1,
|
|
2322
2316
|
nonRawSiblings: a,
|
|
2323
2317
|
attributes: g
|
|
2324
|
-
}),
|
|
2325
|
-
switch (
|
|
2318
|
+
}), G = F.toString().replace(".", "-");
|
|
2319
|
+
switch (Q) {
|
|
2326
2320
|
case "%":
|
|
2327
|
-
N = `mj-column-per-${
|
|
2321
|
+
N = `mj-column-per-${G}`;
|
|
2328
2322
|
break;
|
|
2329
2323
|
case "px":
|
|
2330
2324
|
default:
|
|
2331
|
-
N = `mj-column-px-${
|
|
2325
|
+
N = `mj-column-px-${G}`;
|
|
2332
2326
|
break;
|
|
2333
2327
|
}
|
|
2334
2328
|
return {
|
|
2335
2329
|
className: N,
|
|
2336
2330
|
parsedWidth: F,
|
|
2337
|
-
unit:
|
|
2331
|
+
unit: Q
|
|
2338
2332
|
};
|
|
2339
2333
|
}, [g, a]), P = Re(() => {
|
|
2340
2334
|
const N = L();
|
|
@@ -2342,7 +2336,7 @@ const vg = (e) => {
|
|
|
2342
2336
|
parsedWidth: N.parsedWidth,
|
|
2343
2337
|
unit: N.unit
|
|
2344
2338
|
})].reduce(
|
|
2345
|
-
(
|
|
2339
|
+
(Q, G) => (Object.assign(Q, G), Q),
|
|
2346
2340
|
{}
|
|
2347
2341
|
);
|
|
2348
2342
|
}, [L]), B = Re(() => Bg(
|
|
@@ -2370,10 +2364,10 @@ const vg = (e) => {
|
|
|
2370
2364
|
})),
|
|
2371
2365
|
/* @__PURE__ */ f.createElement("tbody", null, /* @__PURE__ */ f.createElement("tr", null, /* @__PURE__ */ f.createElement("td", p({}, I({ style: "gutter" })), y())))
|
|
2372
2366
|
), [I, y]), J = q(() => {
|
|
2373
|
-
const N = u.containerWidth, { borders: F, paddings:
|
|
2367
|
+
const N = u.containerWidth, { borders: F, paddings: Q } = Nn({
|
|
2374
2368
|
attributes: g,
|
|
2375
2369
|
containerWidth: u.containerWidth
|
|
2376
|
-
}),
|
|
2370
|
+
}), G = Pt(g, "inner-border", "left") + Pt(g, "inner-border", "right"), j = Q + F + G;
|
|
2377
2371
|
let oe = b(g, "width") || `${parseFloat(N) / a}px`;
|
|
2378
2372
|
const { unit: w, parsedWidth: $ } = Zt(oe, {
|
|
2379
2373
|
parseFloatToInt: !1
|
|
@@ -2383,7 +2377,7 @@ const vg = (e) => {
|
|
|
2383
2377
|
let N = `${L().className} mj-outlook-group-fix`;
|
|
2384
2378
|
return b(g, "css-class") && (N += ` ${b(g, "css-class")}`), /* @__PURE__ */ f.createElement(
|
|
2385
2379
|
"div",
|
|
2386
|
-
|
|
2380
|
+
W(p(p({}, e.attributes), I({
|
|
2387
2381
|
class: N,
|
|
2388
2382
|
style: "div"
|
|
2389
2383
|
})), {
|
|
@@ -2469,7 +2463,7 @@ gn.exports;
|
|
|
2469
2463
|
return ce;
|
|
2470
2464
|
}
|
|
2471
2465
|
function L(R, M) {
|
|
2472
|
-
return !!(R != null && R.length) &&
|
|
2466
|
+
return !!(R != null && R.length) && G(R, M, 0) > -1;
|
|
2473
2467
|
}
|
|
2474
2468
|
function P(R, M, c) {
|
|
2475
2469
|
for (var se = -1, pe = R == null ? 0 : R.length; ++se < pe; )
|
|
@@ -2518,14 +2512,14 @@ gn.exports;
|
|
|
2518
2512
|
return se = ce, !1;
|
|
2519
2513
|
}), se;
|
|
2520
2514
|
}
|
|
2521
|
-
function
|
|
2515
|
+
function Q(R, M, c, se) {
|
|
2522
2516
|
for (var pe = R.length, ce = c + (se ? 1 : -1); se ? ce-- : ++ce < pe; )
|
|
2523
2517
|
if (M(R[ce], ce, R))
|
|
2524
2518
|
return ce;
|
|
2525
2519
|
return -1;
|
|
2526
2520
|
}
|
|
2527
|
-
function
|
|
2528
|
-
return M === M ? ht(R, M, c) :
|
|
2521
|
+
function G(R, M, c) {
|
|
2522
|
+
return M === M ? ht(R, M, c) : Q(R, oe, c);
|
|
2529
2523
|
}
|
|
2530
2524
|
function j(R, M, c, se) {
|
|
2531
2525
|
for (var pe = c - 1, ce = R.length; ++pe < ce; )
|
|
@@ -2595,12 +2589,12 @@ gn.exports;
|
|
|
2595
2589
|
return R.has(M);
|
|
2596
2590
|
}
|
|
2597
2591
|
function Ft(R, M) {
|
|
2598
|
-
for (var c = -1, se = R.length; ++c < se &&
|
|
2592
|
+
for (var c = -1, se = R.length; ++c < se && G(M, R[c], 0) > -1; )
|
|
2599
2593
|
;
|
|
2600
2594
|
return c;
|
|
2601
2595
|
}
|
|
2602
2596
|
function Ae(R, M) {
|
|
2603
|
-
for (var c = R.length; c-- &&
|
|
2597
|
+
for (var c = R.length; c-- && G(M, R[c], 0) > -1; )
|
|
2604
2598
|
;
|
|
2605
2599
|
return c;
|
|
2606
2600
|
}
|
|
@@ -2922,14 +2916,14 @@ gn.exports;
|
|
|
2922
2916
|
return t;
|
|
2923
2917
|
}
|
|
2924
2918
|
function e2() {
|
|
2925
|
-
var t = this.__wrapped__.value(), r = this.__dir__, n = xe(t), o = r < 0, d = n ? t.length : 0, A = lf(0, d, this.__views__), _ = A.start, x = A.end, v = x - _,
|
|
2919
|
+
var t = this.__wrapped__.value(), r = this.__dir__, n = xe(t), o = r < 0, d = n ? t.length : 0, A = lf(0, d, this.__views__), _ = A.start, x = A.end, v = x - _, V = o ? x : _ - 1, H = this.__iteratees__, X = H.length, ie = 0, le = bt(v, this.__takeCount__);
|
|
2926
2920
|
if (!n || !o && d == v && le == v)
|
|
2927
2921
|
return No(t, this.__actions__);
|
|
2928
2922
|
var Ee = [];
|
|
2929
2923
|
e:
|
|
2930
2924
|
for (; v-- && ie < le; ) {
|
|
2931
|
-
|
|
2932
|
-
for (var Be = -1, be = t[
|
|
2925
|
+
V += r;
|
|
2926
|
+
for (var Be = -1, be = t[V]; ++Be < X; ) {
|
|
2933
2927
|
var Se = H[Be], Oe = Se.iteratee, Tt = Se.type, St = Oe(be);
|
|
2934
2928
|
if (Tt == P0)
|
|
2935
2929
|
be = St;
|
|
@@ -3061,8 +3055,8 @@ gn.exports;
|
|
|
3061
3055
|
}
|
|
3062
3056
|
function ro(t, r) {
|
|
3063
3057
|
var n = xe(t), o = !n && Xu(t), d = !n && !o && vu(t), A = !n && !o && !d && pr(t), _ = n || o || d || A, x = _ ? _e(t.length, pA) : [], v = x.length;
|
|
3064
|
-
for (var
|
|
3065
|
-
!r && !He.call(t,
|
|
3058
|
+
for (var V in t)
|
|
3059
|
+
!r && !He.call(t, V) || _ && (V == "length" || d && (V == "offset" || V == "parent") || A && (V == "buffer" || V == "byteLength" || V == "byteOffset") || pu(V, v)) || x.push(V);
|
|
3066
3060
|
return x;
|
|
3067
3061
|
}
|
|
3068
3062
|
function ao(t) {
|
|
@@ -3111,7 +3105,7 @@ gn.exports;
|
|
|
3111
3105
|
return t === t && (n !== D && (t = t <= n ? t : n), r !== D && (t = t >= r ? t : r)), t;
|
|
3112
3106
|
}
|
|
3113
3107
|
function Gt(t, r, n, o, d, A) {
|
|
3114
|
-
var _, x = r & Nu, v = r & Cs,
|
|
3108
|
+
var _, x = r & Nu, v = r & Cs, V = r & ur;
|
|
3115
3109
|
if (n && (_ = d ? n(t, o, d, A) : n(t)), _ !== D)
|
|
3116
3110
|
return _;
|
|
3117
3111
|
if (!je(t))
|
|
@@ -3142,7 +3136,7 @@ gn.exports;
|
|
|
3142
3136
|
}) : Uc(t) && t.forEach(function(be, Se) {
|
|
3143
3137
|
_.set(Se, Gt(be, r, n, Se, t, A));
|
|
3144
3138
|
});
|
|
3145
|
-
var Ee =
|
|
3139
|
+
var Ee = V ? v ? bi : gi : v ? Rt : lt, Be = H ? D : Ee(t);
|
|
3146
3140
|
return l(Be || t, function(be, Se) {
|
|
3147
3141
|
Be && (Se = be, be = t[Se]), Fr(_, Se, Gt(be, r, n, Se, t, A));
|
|
3148
3142
|
}), _;
|
|
@@ -3172,7 +3166,7 @@ gn.exports;
|
|
|
3172
3166
|
}, r);
|
|
3173
3167
|
}
|
|
3174
3168
|
function Mr(t, r, n, o) {
|
|
3175
|
-
var d = -1, A = L, _ = !0, x = t.length, v = [],
|
|
3169
|
+
var d = -1, A = L, _ = !0, x = t.length, v = [], V = r.length;
|
|
3176
3170
|
if (!x)
|
|
3177
3171
|
return v;
|
|
3178
3172
|
n && (r = B(r, ke(n))), o ? (A = P, _ = !1) : r.length >= Rn && (A = nt, _ = !1, r = new Qu(r));
|
|
@@ -3180,7 +3174,7 @@ gn.exports;
|
|
|
3180
3174
|
for (; ++d < x; ) {
|
|
3181
3175
|
var H = t[d], X = n == null ? H : n(H);
|
|
3182
3176
|
if (H = o || H !== 0 ? H : 0, _ && X === X) {
|
|
3183
|
-
for (var ie =
|
|
3177
|
+
for (var ie = V; ie--; )
|
|
3184
3178
|
if (r[ie] === X)
|
|
3185
3179
|
continue e;
|
|
3186
3180
|
v.push(H);
|
|
@@ -3260,25 +3254,25 @@ gn.exports;
|
|
|
3260
3254
|
return t >= bt(r, n) && t < ot(r, n);
|
|
3261
3255
|
}
|
|
3262
3256
|
function ui(t, r, n) {
|
|
3263
|
-
for (var o = n ? P : L, d = t[0].length, A = t.length, _ = A, x = st(A), v = 1 / 0,
|
|
3257
|
+
for (var o = n ? P : L, d = t[0].length, A = t.length, _ = A, x = st(A), v = 1 / 0, V = []; _--; ) {
|
|
3264
3258
|
var H = t[_];
|
|
3265
3259
|
_ && r && (H = B(H, ke(r))), v = bt(H.length, v), x[_] = !n && (r || d >= 120 && H.length >= 120) ? new Qu(_ && H) : D;
|
|
3266
3260
|
}
|
|
3267
3261
|
H = t[0];
|
|
3268
3262
|
var X = -1, ie = x[0];
|
|
3269
3263
|
e:
|
|
3270
|
-
for (; ++X < d &&
|
|
3264
|
+
for (; ++X < d && V.length < v; ) {
|
|
3271
3265
|
var le = H[X], Ee = r ? r(le) : le;
|
|
3272
|
-
if (le = n || le !== 0 ? le : 0, !(ie ? nt(ie, Ee) : o(
|
|
3266
|
+
if (le = n || le !== 0 ? le : 0, !(ie ? nt(ie, Ee) : o(V, Ee, n))) {
|
|
3273
3267
|
for (_ = A; --_; ) {
|
|
3274
3268
|
var Be = x[_];
|
|
3275
3269
|
if (!(Be ? nt(Be, Ee) : o(t[_], Ee, n)))
|
|
3276
3270
|
continue e;
|
|
3277
3271
|
}
|
|
3278
|
-
ie && ie.push(Ee),
|
|
3272
|
+
ie && ie.push(Ee), V.push(le);
|
|
3279
3273
|
}
|
|
3280
3274
|
}
|
|
3281
|
-
return
|
|
3275
|
+
return V;
|
|
3282
3276
|
}
|
|
3283
3277
|
function O2(t, r, n, o) {
|
|
3284
3278
|
return su(t, function(d, A, _) {
|
|
@@ -3303,9 +3297,9 @@ gn.exports;
|
|
|
3303
3297
|
return t === r || (t == null || r == null || !Ze(t) && !Ze(r) ? t !== t && r !== r : w2(t, r, n, o, Ur, d));
|
|
3304
3298
|
}
|
|
3305
3299
|
function w2(t, r, n, o, d, A) {
|
|
3306
|
-
var _ = xe(t), x = xe(r), v = _ ? ba : pt(t),
|
|
3307
|
-
v = v == ir ? hu : v,
|
|
3308
|
-
var H = v == hu, X =
|
|
3300
|
+
var _ = xe(t), x = xe(r), v = _ ? ba : pt(t), V = x ? ba : pt(r);
|
|
3301
|
+
v = v == ir ? hu : v, V = V == ir ? hu : V;
|
|
3302
|
+
var H = v == hu, X = V == hu, ie = v == V;
|
|
3309
3303
|
if (ie && vu(t)) {
|
|
3310
3304
|
if (!vu(r))
|
|
3311
3305
|
return !1;
|
|
@@ -3336,15 +3330,15 @@ gn.exports;
|
|
|
3336
3330
|
}
|
|
3337
3331
|
for (; ++d < A; ) {
|
|
3338
3332
|
x = n[d];
|
|
3339
|
-
var v = x[0],
|
|
3333
|
+
var v = x[0], V = t[v], H = x[1];
|
|
3340
3334
|
if (_ && x[2]) {
|
|
3341
|
-
if (
|
|
3335
|
+
if (V === D && !(v in t))
|
|
3342
3336
|
return !1;
|
|
3343
3337
|
} else {
|
|
3344
3338
|
var X = new eu();
|
|
3345
3339
|
if (o)
|
|
3346
|
-
var ie = o(
|
|
3347
|
-
if (!(ie === D ? Ur(H,
|
|
3340
|
+
var ie = o(V, H, v, t, r, X);
|
|
3341
|
+
if (!(ie === D ? Ur(H, V, rr | Ea, o, X) : ie))
|
|
3348
3342
|
return !1;
|
|
3349
3343
|
}
|
|
3350
3344
|
}
|
|
@@ -3413,9 +3407,9 @@ gn.exports;
|
|
|
3413
3407
|
}, Rt);
|
|
3414
3408
|
}
|
|
3415
3409
|
function W2(t, r, n, o, d, A, _) {
|
|
3416
|
-
var x = Ci(t, n), v = Ci(r, n),
|
|
3417
|
-
if (
|
|
3418
|
-
return Jn(t, n,
|
|
3410
|
+
var x = Ci(t, n), v = Ci(r, n), V = _.get(v);
|
|
3411
|
+
if (V)
|
|
3412
|
+
return Jn(t, n, V), D;
|
|
3419
3413
|
var H = A ? A(x, v, n + "", t, r, _) : D, X = H === D;
|
|
3420
3414
|
if (X) {
|
|
3421
3415
|
var ie = xe(v), le = !ie && vu(v), Ee = !ie && !le && pr(v);
|
|
@@ -3461,9 +3455,9 @@ gn.exports;
|
|
|
3461
3455
|
};
|
|
3462
3456
|
}
|
|
3463
3457
|
function ii(t, r, n, o) {
|
|
3464
|
-
var d = o ? j :
|
|
3458
|
+
var d = o ? j : G, A = -1, _ = r.length, x = t;
|
|
3465
3459
|
for (t === r && (r = Bt(r)), n && (x = B(t, ke(n))); ++A < _; )
|
|
3466
|
-
for (var v = 0,
|
|
3460
|
+
for (var v = 0, V = r[A], H = n ? n(V) : V; (v = d(x, H, v, o)) > -1; )
|
|
3467
3461
|
x !== t && $a.call(x, v, 1), $a.call(t, v, 1);
|
|
3468
3462
|
return t;
|
|
3469
3463
|
}
|
|
@@ -3509,14 +3503,14 @@ gn.exports;
|
|
|
3509
3503
|
return t;
|
|
3510
3504
|
r = xu(r, t);
|
|
3511
3505
|
for (var d = -1, A = r.length, _ = A - 1, x = t; x != null && ++d < A; ) {
|
|
3512
|
-
var v = cu(r[d]),
|
|
3506
|
+
var v = cu(r[d]), V = n;
|
|
3513
3507
|
if (v === "__proto__" || v === "constructor" || v === "prototype")
|
|
3514
3508
|
return t;
|
|
3515
3509
|
if (d != _) {
|
|
3516
3510
|
var H = x[v];
|
|
3517
|
-
|
|
3511
|
+
V = o ? o(H, v, x) : D, V === D && (V = je(H) ? H : pu(r[d + 1]) ? [] : {});
|
|
3518
3512
|
}
|
|
3519
|
-
Fr(x, v,
|
|
3513
|
+
Fr(x, v, V), x = x[v];
|
|
3520
3514
|
}
|
|
3521
3515
|
return t;
|
|
3522
3516
|
}
|
|
@@ -3552,12 +3546,12 @@ gn.exports;
|
|
|
3552
3546
|
if (A === 0)
|
|
3553
3547
|
return 0;
|
|
3554
3548
|
r = n(r);
|
|
3555
|
-
for (var _ = r !== r, x = r === null, v = Ht(r),
|
|
3549
|
+
for (var _ = r !== r, x = r === null, v = Ht(r), V = r === D; d < A; ) {
|
|
3556
3550
|
var H = un((d + A) / 2), X = n(t[H]), ie = X !== D, le = X === null, Ee = X === X, Be = Ht(X);
|
|
3557
3551
|
if (_)
|
|
3558
3552
|
var be = o || Ee;
|
|
3559
3553
|
else
|
|
3560
|
-
be =
|
|
3554
|
+
be = V ? Ee && (o || ie) : x ? Ee && ie && (o || !le) : v ? Ee && ie && !le && (o || !Be) : !le && !Be && (o ? X <= r : X < r);
|
|
3561
3555
|
be ? d = H + 1 : A = H;
|
|
3562
3556
|
}
|
|
3563
3557
|
return bt(A, M0);
|
|
@@ -3590,9 +3584,9 @@ gn.exports;
|
|
|
3590
3584
|
if (n)
|
|
3591
3585
|
_ = !1, d = P;
|
|
3592
3586
|
else if (A >= Rn) {
|
|
3593
|
-
var
|
|
3594
|
-
if (
|
|
3595
|
-
return Ie(
|
|
3587
|
+
var V = r ? null : qA(t);
|
|
3588
|
+
if (V)
|
|
3589
|
+
return Ie(V);
|
|
3596
3590
|
_ = !1, d = nt, v = new Qu();
|
|
3597
3591
|
} else
|
|
3598
3592
|
v = r ? [] : x;
|
|
@@ -3678,10 +3672,10 @@ gn.exports;
|
|
|
3678
3672
|
}
|
|
3679
3673
|
function Bo(t, r) {
|
|
3680
3674
|
if (t !== r) {
|
|
3681
|
-
var n = t !== D, o = t === null, d = t === t, A = Ht(t), _ = r !== D, x = r === null, v = r === r,
|
|
3682
|
-
if (!x && !
|
|
3675
|
+
var n = t !== D, o = t === null, d = t === t, A = Ht(t), _ = r !== D, x = r === null, v = r === r, V = Ht(r);
|
|
3676
|
+
if (!x && !V && !A && t > r || A && _ && v && !x && !V || o && _ && v || !n && v || !d)
|
|
3683
3677
|
return 1;
|
|
3684
|
-
if (!o && !A && !
|
|
3678
|
+
if (!o && !A && !V && t < r || V && n && d && !o && !A || x && n && d || !_ && d || !v)
|
|
3685
3679
|
return -1;
|
|
3686
3680
|
}
|
|
3687
3681
|
return 0;
|
|
@@ -3695,18 +3689,18 @@ gn.exports;
|
|
|
3695
3689
|
return t.index - r.index;
|
|
3696
3690
|
}
|
|
3697
3691
|
function Lo(t, r, n, o) {
|
|
3698
|
-
for (var d = -1, A = t.length, _ = n.length, x = -1, v = r.length,
|
|
3692
|
+
for (var d = -1, A = t.length, _ = n.length, x = -1, v = r.length, V = ot(A - _, 0), H = st(v + V), X = !o; ++x < v; )
|
|
3699
3693
|
H[x] = r[x];
|
|
3700
3694
|
for (; ++d < _; )
|
|
3701
3695
|
(X || d < A) && (H[n[d]] = t[d]);
|
|
3702
|
-
for (;
|
|
3696
|
+
for (; V--; )
|
|
3703
3697
|
H[x++] = t[d++];
|
|
3704
3698
|
return H;
|
|
3705
3699
|
}
|
|
3706
3700
|
function Ro(t, r, n, o) {
|
|
3707
|
-
for (var d = -1, A = t.length, _ = -1, x = n.length, v = -1,
|
|
3701
|
+
for (var d = -1, A = t.length, _ = -1, x = n.length, v = -1, V = r.length, H = ot(A - x, 0), X = st(H + V), ie = !o; ++d < H; )
|
|
3708
3702
|
X[d] = t[d];
|
|
3709
|
-
for (var le = d; ++v <
|
|
3703
|
+
for (var le = d; ++v < V; )
|
|
3710
3704
|
X[le + v] = r[v];
|
|
3711
3705
|
for (; ++_ < x; )
|
|
3712
3706
|
(ie || d < A) && (X[le + n[_]] = t[d++]);
|
|
@@ -3818,8 +3812,8 @@ gn.exports;
|
|
|
3818
3812
|
function o() {
|
|
3819
3813
|
for (var A = arguments.length, _ = st(A), x = A, v = fr(o); x--; )
|
|
3820
3814
|
_[x] = arguments[x];
|
|
3821
|
-
var
|
|
3822
|
-
return A -=
|
|
3815
|
+
var V = A < 3 && _[0] !== v && _[A - 1] !== v ? [] : me(_, v);
|
|
3816
|
+
return A -= V.length, A < n ? Mo(t, r, Sa, o.placeholder, D, _, V, D, D, n - A) : a(this && this !== mt && this instanceof o ? d : t, this, _);
|
|
3823
3817
|
}
|
|
3824
3818
|
var d = Wr(t);
|
|
3825
3819
|
return o;
|
|
@@ -3853,23 +3847,23 @@ gn.exports;
|
|
|
3853
3847
|
_ = v && Di(v[0]) && v[1] == (fu | au | nu | Lr) && !v[4].length && v[9] == 1 ? _[wa(v[0])].apply(_, v[3]) : A.length == 1 && Di(A) ? _[x]() : _.thru(A);
|
|
3854
3848
|
}
|
|
3855
3849
|
return function() {
|
|
3856
|
-
var
|
|
3857
|
-
if (_ &&
|
|
3850
|
+
var V = arguments, H = V[0];
|
|
3851
|
+
if (_ && V.length == 1 && xe(H))
|
|
3858
3852
|
return _.plant(H).value();
|
|
3859
|
-
for (var X = 0, ie = n ? r[X].apply(this,
|
|
3853
|
+
for (var X = 0, ie = n ? r[X].apply(this, V) : H; ++X < n; )
|
|
3860
3854
|
ie = r[X].call(this, ie);
|
|
3861
3855
|
return ie;
|
|
3862
3856
|
};
|
|
3863
3857
|
});
|
|
3864
3858
|
}
|
|
3865
|
-
function Sa(t, r, n, o, d, A, _, x, v,
|
|
3859
|
+
function Sa(t, r, n, o, d, A, _, x, v, V) {
|
|
3866
3860
|
function H() {
|
|
3867
3861
|
for (var Se = arguments.length, Oe = st(Se), Tt = Se; Tt--; )
|
|
3868
3862
|
Oe[Tt] = arguments[Tt];
|
|
3869
3863
|
if (Ee)
|
|
3870
3864
|
var St = fr(H), Su = Pe(Oe, St);
|
|
3871
|
-
if (o && (Oe = Lo(Oe, o, d, Ee)), A && (Oe = Ro(Oe, A, _, Ee)), Se -= Su, Ee && Se <
|
|
3872
|
-
return Mo(t, r, Sa, H.placeholder, n, Oe, me(Oe, St), x, v,
|
|
3865
|
+
if (o && (Oe = Lo(Oe, o, d, Ee)), A && (Oe = Ro(Oe, A, _, Ee)), Se -= Su, Ee && Se < V)
|
|
3866
|
+
return Mo(t, r, Sa, H.placeholder, n, Oe, me(Oe, St), x, v, V - Se);
|
|
3873
3867
|
var Je = ie ? n : this, Kt = le ? Je[t] : t;
|
|
3874
3868
|
return Se = Oe.length, x ? Oe = Cf(Oe, x) : Be && Se > 1 && Oe.reverse(), X && v < Se && (Oe.length = v), this && this !== mt && this instanceof H && (Kt = be || Wr(Kt)), Kt.apply(Je, Oe);
|
|
3875
3869
|
}
|
|
@@ -3914,10 +3908,10 @@ gn.exports;
|
|
|
3914
3908
|
}
|
|
3915
3909
|
function af(t, r, n, o) {
|
|
3916
3910
|
function d() {
|
|
3917
|
-
for (var x = -1, v = arguments.length,
|
|
3918
|
-
X[
|
|
3911
|
+
for (var x = -1, v = arguments.length, V = -1, H = o.length, X = st(H + v), ie = this && this !== mt && this instanceof d ? _ : t; ++V < H; )
|
|
3912
|
+
X[V] = o[V];
|
|
3919
3913
|
for (; v--; )
|
|
3920
|
-
X[
|
|
3914
|
+
X[V++] = arguments[++x];
|
|
3921
3915
|
return a(ie, A ? n : this, X);
|
|
3922
3916
|
}
|
|
3923
3917
|
var A = r & Qt, _ = Wr(t);
|
|
@@ -3933,10 +3927,10 @@ gn.exports;
|
|
|
3933
3927
|
return typeof r == "string" && typeof n == "string" || (r = jt(r), n = jt(n)), t(r, n);
|
|
3934
3928
|
};
|
|
3935
3929
|
}
|
|
3936
|
-
function Mo(t, r, n, o, d, A, _, x, v,
|
|
3930
|
+
function Mo(t, r, n, o, d, A, _, x, v, V) {
|
|
3937
3931
|
var H = r & au, X = H ? _ : D, ie = H ? D : _, le = H ? A : D, Ee = H ? D : A;
|
|
3938
3932
|
r |= H ? nu : nr, r &= ~(H ? nr : nu), r & _s || (r &= ~(Qt | Hu));
|
|
3939
|
-
var Be = [t, r, d, le, X, Ee, ie, x, v,
|
|
3933
|
+
var Be = [t, r, d, le, X, Ee, ie, x, v, V], be = n.apply(D, Be);
|
|
3940
3934
|
return Di(t) && wc(be, Be), be.placeholder = o, Xo(be, t, r);
|
|
3941
3935
|
}
|
|
3942
3936
|
function Ei(t) {
|
|
@@ -3959,13 +3953,13 @@ gn.exports;
|
|
|
3959
3953
|
var v = r & Hu;
|
|
3960
3954
|
if (!v && typeof t != "function")
|
|
3961
3955
|
throw new Xt(Wt);
|
|
3962
|
-
var
|
|
3963
|
-
if (
|
|
3956
|
+
var V = o ? o.length : 0;
|
|
3957
|
+
if (V || (r &= ~(nu | nr), o = d = D), _ = _ === D ? _ : ot(Le(_), 0), x = x === D ? x : Le(x), V -= d ? d.length : 0, r & nr) {
|
|
3964
3958
|
var H = o, X = d;
|
|
3965
3959
|
o = d = D;
|
|
3966
3960
|
}
|
|
3967
3961
|
var ie = v ? D : Ui(t), le = [t, r, n, o, d, H, X, A, _, x];
|
|
3968
|
-
if (ie && pf(le, ie), t = le[0], r = le[1], n = le[2], o = le[3], d = le[4], x = le[9] = le[9] === D ? v ? 0 : t.length : ot(le[9] -
|
|
3962
|
+
if (ie && pf(le, ie), t = le[0], r = le[1], n = le[2], o = le[3], d = le[4], x = le[9] = le[9] === D ? v ? 0 : t.length : ot(le[9] - V, 0), !x && r & (au | ar) && (r &= ~(au | ar)), r && r != Qt)
|
|
3969
3963
|
Ee = r == au || r == ar ? rf(t, r, x) : r != nu && r != (Qt | nu) || d.length ? Sa.apply(D, le) : af(t, r, n, o);
|
|
3970
3964
|
else
|
|
3971
3965
|
var Ee = uf(t, r, n);
|
|
@@ -3984,9 +3978,9 @@ gn.exports;
|
|
|
3984
3978
|
var _ = n & rr, x = t.length, v = r.length;
|
|
3985
3979
|
if (x != v && !(_ && v > x))
|
|
3986
3980
|
return !1;
|
|
3987
|
-
var
|
|
3988
|
-
if (
|
|
3989
|
-
return
|
|
3981
|
+
var V = A.get(t), H = A.get(r);
|
|
3982
|
+
if (V && H)
|
|
3983
|
+
return V == r && H == t;
|
|
3990
3984
|
var X = -1, ie = !0, le = n & Ea ? new Qu() : D;
|
|
3991
3985
|
for (A.set(t, r), A.set(r, t); ++X < x; ) {
|
|
3992
3986
|
var Ee = t[X], Be = r[X];
|
|
@@ -4036,9 +4030,9 @@ gn.exports;
|
|
|
4036
4030
|
var v = o & rr;
|
|
4037
4031
|
if (x || (x = Ie), t.size != r.size && !v)
|
|
4038
4032
|
return !1;
|
|
4039
|
-
var
|
|
4040
|
-
if (
|
|
4041
|
-
return
|
|
4033
|
+
var V = _.get(t);
|
|
4034
|
+
if (V)
|
|
4035
|
+
return V == r;
|
|
4042
4036
|
o |= Ea, _.set(t, r);
|
|
4043
4037
|
var H = Wo(x(t), x(r), o, d, A, _);
|
|
4044
4038
|
return _.delete(t), H;
|
|
@@ -4052,8 +4046,8 @@ gn.exports;
|
|
|
4052
4046
|
var _ = n & rr, x = gi(t), v = x.length;
|
|
4053
4047
|
if (v != gi(r).length && !_)
|
|
4054
4048
|
return !1;
|
|
4055
|
-
for (var
|
|
4056
|
-
var H = x[
|
|
4049
|
+
for (var V = v; V--; ) {
|
|
4050
|
+
var H = x[V];
|
|
4057
4051
|
if (!(_ ? H in r : He.call(r, H)))
|
|
4058
4052
|
return !1;
|
|
4059
4053
|
}
|
|
@@ -4062,8 +4056,8 @@ gn.exports;
|
|
|
4062
4056
|
return X == r && ie == t;
|
|
4063
4057
|
var le = !0;
|
|
4064
4058
|
A.set(t, r), A.set(r, t);
|
|
4065
|
-
for (var Ee = _; ++
|
|
4066
|
-
H = x[
|
|
4059
|
+
for (var Ee = _; ++V < v; ) {
|
|
4060
|
+
H = x[V];
|
|
4067
4061
|
var Be = t[H], be = r[H];
|
|
4068
4062
|
if (o)
|
|
4069
4063
|
var Se = _ ? o(be, Be, H, r, t, A) : o(Be, be, H, t, r, A);
|
|
@@ -4411,14 +4405,14 @@ gn.exports;
|
|
|
4411
4405
|
if (!o)
|
|
4412
4406
|
return -1;
|
|
4413
4407
|
var d = n == null ? 0 : Le(n);
|
|
4414
|
-
return d < 0 && (d = ot(o + d, 0)),
|
|
4408
|
+
return d < 0 && (d = ot(o + d, 0)), Q(t, Te(r, 3), d);
|
|
4415
4409
|
}
|
|
4416
4410
|
function $o(t, r, n) {
|
|
4417
4411
|
var o = t == null ? 0 : t.length;
|
|
4418
4412
|
if (!o)
|
|
4419
4413
|
return -1;
|
|
4420
4414
|
var d = o - 1;
|
|
4421
|
-
return n !== D && (d = Le(n), d = n < 0 ? ot(o + d, 0) : bt(d, o - 1)),
|
|
4415
|
+
return n !== D && (d = Le(n), d = n < 0 ? ot(o + d, 0) : bt(d, o - 1)), Q(t, Te(r, 3), d, !0);
|
|
4422
4416
|
}
|
|
4423
4417
|
function ec(t) {
|
|
4424
4418
|
return t != null && t.length ? Et(t, 1) : [];
|
|
@@ -4444,7 +4438,7 @@ gn.exports;
|
|
|
4444
4438
|
if (!o)
|
|
4445
4439
|
return -1;
|
|
4446
4440
|
var d = n == null ? 0 : Le(n);
|
|
4447
|
-
return d < 0 && (d = ot(o + d, 0)),
|
|
4441
|
+
return d < 0 && (d = ot(o + d, 0)), G(t, r, d);
|
|
4448
4442
|
}
|
|
4449
4443
|
function wf(t) {
|
|
4450
4444
|
return t != null && t.length ? Yt(t, 0, -1) : [];
|
|
@@ -4461,7 +4455,7 @@ gn.exports;
|
|
|
4461
4455
|
if (!o)
|
|
4462
4456
|
return -1;
|
|
4463
4457
|
var d = o;
|
|
4464
|
-
return n !== D && (d = Le(n), d = d < 0 ? ot(o + d, 0) : bt(d, o - 1)), r === r ? it(t, r, d) :
|
|
4458
|
+
return n !== D && (d = Le(n), d = d < 0 ? ot(o + d, 0) : bt(d, o - 1)), r === r ? it(t, r, d) : Q(t, oe, d, !0);
|
|
4465
4459
|
}
|
|
4466
4460
|
function Hf(t, r) {
|
|
4467
4461
|
return t && t.length ? go(t, Le(r)) : D;
|
|
@@ -4648,7 +4642,7 @@ gn.exports;
|
|
|
4648
4642
|
function Dh(t, r, n, o) {
|
|
4649
4643
|
t = Lt(t) ? t : hr(t), n = n && !o ? Le(n) : 0;
|
|
4650
4644
|
var d = t.length;
|
|
4651
|
-
return n < 0 && (n = ot(d + n, 0)), Va(t) ? n <= d && t.indexOf(r, n) > -1 : !!d &&
|
|
4645
|
+
return n < 0 && (n = ot(d + n, 0)), Va(t) ? n <= d && t.indexOf(r, n) > -1 : !!d && G(t, r, n) > -1;
|
|
4652
4646
|
}
|
|
4653
4647
|
function Ua(t, r) {
|
|
4654
4648
|
return (xe(t) ? B : Ao)(t, Te(r, 3));
|
|
@@ -4740,7 +4734,7 @@ gn.exports;
|
|
|
4740
4734
|
function v(Je) {
|
|
4741
4735
|
return be = D, Su && ie ? o(Je) : (ie = le = D, Be);
|
|
4742
4736
|
}
|
|
4743
|
-
function
|
|
4737
|
+
function V() {
|
|
4744
4738
|
be !== D && kc(be), Oe = 0, ie = Se = le = be = D;
|
|
4745
4739
|
}
|
|
4746
4740
|
function H() {
|
|
@@ -4759,7 +4753,7 @@ gn.exports;
|
|
|
4759
4753
|
var ie, le, Ee, Be, be, Se, Oe = 0, Tt = !1, St = !1, Su = !0;
|
|
4760
4754
|
if (typeof t != "function")
|
|
4761
4755
|
throw new Xt(Wt);
|
|
4762
|
-
return r = jt(r) || 0, je(n) && (Tt = !!n.leading, St = "maxWait" in n, Ee = St ? ot(jt(n.maxWait) || 0, r) : Ee, Su = "trailing" in n ? !!n.trailing : Su), X.cancel =
|
|
4756
|
+
return r = jt(r) || 0, je(n) && (Tt = !!n.leading, St = "maxWait" in n, Ee = St ? ot(jt(n.maxWait) || 0, r) : Ee, Su = "trailing" in n ? !!n.trailing : Su), X.cancel = V, X.flush = H, X;
|
|
4763
4757
|
}
|
|
4764
4758
|
function Sh(t) {
|
|
4765
4759
|
return gu(t, Sn);
|
|
@@ -5185,16 +5179,16 @@ gn.exports;
|
|
|
5185
5179
|
function Q1(t, r, n) {
|
|
5186
5180
|
var o = c.templateSettings;
|
|
5187
5181
|
n && It(t, r, n) && (r = D), t = Me(t), r = sn({}, r, o, Uo);
|
|
5188
|
-
var d, A, _ = sn({}, r.imports, o.imports, Uo), x = lt(_), v = Ne(_, x),
|
|
5182
|
+
var d, A, _ = sn({}, r.imports, o.imports, Uo), x = lt(_), v = Ne(_, x), V = 0, H = r.interpolate || Ca, X = "__p += '", ie = Pi((r.escape || Ca).source + "|" + H.source + "|" + (H === Ls ? dd : Ca).source + "|" + (r.evaluate || Ca).source + "|$", "g"), le = "//# sourceURL=" + (He.call(r, "sourceURL") ? (r.sourceURL + "").replace(/\s/g, " ") : "lodash.templateSources[" + ++qd + "]") + `
|
|
5189
5183
|
`;
|
|
5190
5184
|
t.replace(ie, function(be, Se, Oe, Tt, St, Su) {
|
|
5191
|
-
return Oe || (Oe = Tt), X += t.slice(
|
|
5185
|
+
return Oe || (Oe = Tt), X += t.slice(V, Su).replace(bd, Ue), Se && (d = !0, X += `' +
|
|
5192
5186
|
__e(` + Se + `) +
|
|
5193
5187
|
'`), St && (A = !0, X += `';
|
|
5194
5188
|
` + St + `;
|
|
5195
5189
|
__p += '`), Oe && (X += `' +
|
|
5196
5190
|
((__t = (` + Oe + `)) == null ? '' : __t) +
|
|
5197
|
-
'`),
|
|
5191
|
+
'`), V = Su + be.length, be;
|
|
5198
5192
|
}), X += `';
|
|
5199
5193
|
`;
|
|
5200
5194
|
var Ee = He.call(r, "variable") && r.variable;
|
|
@@ -5272,9 +5266,9 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
5272
5266
|
return v + o;
|
|
5273
5267
|
if (_ && (x += v.length - x), Gi(d)) {
|
|
5274
5268
|
if (t.slice(x).search(d)) {
|
|
5275
|
-
var
|
|
5276
|
-
for (d.global || (d = Pi(d.source, Me(Rs.exec(d)) + "g")), d.lastIndex = 0;
|
|
5277
|
-
var X =
|
|
5269
|
+
var V, H = v;
|
|
5270
|
+
for (d.global || (d = Pi(d.source, Me(Rs.exec(d)) + "g")), d.lastIndex = 0; V = d.exec(H); )
|
|
5271
|
+
var X = V.index;
|
|
5278
5272
|
v = v.slice(0, X === D ? x : X);
|
|
5279
5273
|
}
|
|
5280
5274
|
} else if (t.indexOf(Mt(d), x) != x) {
|
|
@@ -5333,10 +5327,10 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
5333
5327
|
return l(d, function(x) {
|
|
5334
5328
|
var v = r[x];
|
|
5335
5329
|
t[x] = v, _ && (t.prototype[x] = function() {
|
|
5336
|
-
var
|
|
5337
|
-
if (A ||
|
|
5330
|
+
var V = this.__chain__;
|
|
5331
|
+
if (A || V) {
|
|
5338
5332
|
var H = t(this.__wrapped__);
|
|
5339
|
-
return (H.__actions__ = Bt(this.__actions__)).push({ func: v, args: arguments, thisArg: t }), H.__chain__ =
|
|
5333
|
+
return (H.__actions__ = Bt(this.__actions__)).push({ func: v, args: arguments, thisArg: t }), H.__chain__ = V, H;
|
|
5340
5334
|
}
|
|
5341
5335
|
return v.apply(t, y([this.value()], arguments));
|
|
5342
5336
|
});
|
|
@@ -5617,8 +5611,8 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
5617
5611
|
var n = -1, o = r.length, d = o > 2 ? r[2] : D;
|
|
5618
5612
|
for (d && It(r[0], r[1], d) && (o = 1); ++n < o; )
|
|
5619
5613
|
for (var A = r[n], _ = Rt(A), x = -1, v = _.length; ++x < v; ) {
|
|
5620
|
-
var
|
|
5621
|
-
(H === D || tu(H, mr[
|
|
5614
|
+
var V = _[x], H = t[V];
|
|
5615
|
+
(H === D || tu(H, mr[V]) && !He.call(t, V)) && (t[V] = A[V]);
|
|
5622
5616
|
}
|
|
5623
5617
|
return t;
|
|
5624
5618
|
}), Lm = ve(function(t) {
|
|
@@ -5737,11 +5731,11 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
5737
5731
|
}, su(ce.prototype, function(t, r) {
|
|
5738
5732
|
var n = /^(?:filter|find|map|reject)|While$/.test(r), o = /^(?:head|last)$/.test(r), d = c[o ? "take" + (r == "last" ? "Right" : "") : r], A = o || /^find/.test(r);
|
|
5739
5733
|
d && (c.prototype[r] = function() {
|
|
5740
|
-
var _ = this.__wrapped__, x = o ? [1] : arguments, v = _ instanceof ce,
|
|
5734
|
+
var _ = this.__wrapped__, x = o ? [1] : arguments, v = _ instanceof ce, V = x[0], H = v || xe(_), X = function(Se) {
|
|
5741
5735
|
var Oe = d.apply(c, y([Se], x));
|
|
5742
5736
|
return o && ie ? Oe[0] : Oe;
|
|
5743
5737
|
};
|
|
5744
|
-
H && n && typeof
|
|
5738
|
+
H && n && typeof V == "function" && V.length != 1 && (v = H = !1);
|
|
5745
5739
|
var ie = this.__chain__, le = !!this.__actions__.length, Ee = A && !ie, Be = v && !le;
|
|
5746
5740
|
if (!A && H) {
|
|
5747
5741
|
_ = Be ? _ : new ce(this);
|
|
@@ -6347,11 +6341,11 @@ function as(e, u, a, s) {
|
|
|
6347
6341
|
rearg: e.rearg,
|
|
6348
6342
|
toInteger: e.toInteger,
|
|
6349
6343
|
toPath: e.toPath
|
|
6350
|
-
}, J = O.ary, ae = O.assign, T = O.clone, N = O.curry, F = O.forEach,
|
|
6344
|
+
}, J = O.ary, ae = O.assign, T = O.clone, N = O.curry, F = O.forEach, Q = O.isArray, G = O.isError, j = O.isFunction, oe = O.isWeakMap, w = O.keys, $ = O.rearg, te = O.toInteger, Z = O.toPath, ne = w(ct.aryMethod), Ce = {
|
|
6351
6345
|
castArray: function(fe) {
|
|
6352
6346
|
return function() {
|
|
6353
6347
|
var ue = arguments[0];
|
|
6354
|
-
return
|
|
6348
|
+
return Q(ue) ? fe(nl(ue)) : fe.apply(void 0, arguments);
|
|
6355
6349
|
};
|
|
6356
6350
|
},
|
|
6357
6351
|
iteratee: function(fe) {
|
|
@@ -6420,7 +6414,7 @@ function as(e, u, a, s) {
|
|
|
6420
6414
|
ue = Z(ue);
|
|
6421
6415
|
for (var ee = -1, me = ue.length, Ie = me - 1, ut = T(Object(fe)), ht = ut; ht != null && ++ee < me; ) {
|
|
6422
6416
|
var it = ue[ee], rt = ht[it];
|
|
6423
|
-
rt != null && !(j(rt) ||
|
|
6417
|
+
rt != null && !(j(rt) || G(rt) || oe(rt)) && (ht[it] = T(ee == Ie ? rt : Object(rt))), ht = ht[it];
|
|
6424
6418
|
}
|
|
6425
6419
|
return ut;
|
|
6426
6420
|
}
|
|
@@ -6535,7 +6529,7 @@ let Fl = class extends qe {
|
|
|
6535
6529
|
renderElement() {
|
|
6536
6530
|
return /* @__PURE__ */ f.createElement(
|
|
6537
6531
|
Qg,
|
|
6538
|
-
|
|
6532
|
+
W(p({}, this.props), {
|
|
6539
6533
|
Com: this,
|
|
6540
6534
|
childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
|
|
6541
6535
|
})
|
|
@@ -6545,21 +6539,21 @@ let Fl = class extends qe {
|
|
|
6545
6539
|
const Qg = (e) => {
|
|
6546
6540
|
const u = Ke(), a = Re(
|
|
6547
6541
|
(T) => {
|
|
6548
|
-
const N = u.containerWidth, F = b(T, "full-width") === "full-width",
|
|
6542
|
+
const N = u.containerWidth, F = b(T, "full-width") === "full-width", Q = () => {
|
|
6549
6543
|
const { posX: oe, posY: w } = Wg(T);
|
|
6550
6544
|
return `${oe} ${w}`;
|
|
6551
|
-
},
|
|
6545
|
+
}, G = () => Hg([
|
|
6552
6546
|
b(T, "background-color"),
|
|
6553
6547
|
...sl(T) ? [
|
|
6554
6548
|
`url('${b(T, "background-url")}')`,
|
|
6555
|
-
|
|
6549
|
+
Q(),
|
|
6556
6550
|
`/ ${b(T, "background-size")}`,
|
|
6557
6551
|
b(T, "background-repeat")
|
|
6558
6552
|
] : []
|
|
6559
6553
|
]), j = b(T, "background-url") ? {
|
|
6560
|
-
background:
|
|
6554
|
+
background: G(),
|
|
6561
6555
|
// background size, repeat and position has to be seperate since yahoo does not support shorthand background css property
|
|
6562
|
-
"background-position":
|
|
6556
|
+
"background-position": Q(),
|
|
6563
6557
|
"background-repeat": b(T, "background-repeat"),
|
|
6564
6558
|
"background-size": b(T, "background-size")
|
|
6565
6559
|
} : {
|
|
@@ -6567,11 +6561,11 @@ const Qg = (e) => {
|
|
|
6567
6561
|
"background-color": b(T, "background-color")
|
|
6568
6562
|
};
|
|
6569
6563
|
return {
|
|
6570
|
-
tableFullwidth:
|
|
6564
|
+
tableFullwidth: W(p({}, F ? j : {}), {
|
|
6571
6565
|
width: "100%",
|
|
6572
6566
|
"border-radius": b(T, "border-radius")
|
|
6573
6567
|
}),
|
|
6574
|
-
table:
|
|
6568
|
+
table: W(p({}, F ? {} : j), {
|
|
6575
6569
|
width: "100%",
|
|
6576
6570
|
"border-radius": b(T, "border-radius")
|
|
6577
6571
|
}),
|
|
@@ -6590,7 +6584,7 @@ const Qg = (e) => {
|
|
|
6590
6584
|
"padding-top": b(T, "padding-top"),
|
|
6591
6585
|
"text-align": b(T, "text-align")
|
|
6592
6586
|
},
|
|
6593
|
-
div:
|
|
6587
|
+
div: W(p({}, F ? {} : j), {
|
|
6594
6588
|
margin: "0px auto",
|
|
6595
6589
|
"border-radius": b(T, "border-radius"),
|
|
6596
6590
|
"max-width": N
|
|
@@ -6602,7 +6596,7 @@ const Qg = (e) => {
|
|
|
6602
6596
|
};
|
|
6603
6597
|
},
|
|
6604
6598
|
[u.containerWidth]
|
|
6605
|
-
), { attributes: s, getHtmlAttributes: l } = tt(
|
|
6599
|
+
), { attributes: s, getHtmlAttributes: l } = tt(W(p({}, e), {
|
|
6606
6600
|
defaultAttributes: e.Com.defaultAttributes,
|
|
6607
6601
|
allowedAttributes: e.Com.allowedAttributes,
|
|
6608
6602
|
getDefaultStyles: a
|
|
@@ -6664,7 +6658,7 @@ const Qg = (e) => {
|
|
|
6664
6658
|
},
|
|
6665
6659
|
/* @__PURE__ */ f.createElement(
|
|
6666
6660
|
"div",
|
|
6667
|
-
|
|
6661
|
+
W(p({
|
|
6668
6662
|
"data-slate-block": e.Com.componentType
|
|
6669
6663
|
}, e.attributes), {
|
|
6670
6664
|
style: {
|
|
@@ -6818,7 +6812,7 @@ let zg = class extends qe {
|
|
|
6818
6812
|
renderElement() {
|
|
6819
6813
|
return /* @__PURE__ */ f.createElement(
|
|
6820
6814
|
Xg,
|
|
6821
|
-
|
|
6815
|
+
W(p({}, this.props), {
|
|
6822
6816
|
Com: this,
|
|
6823
6817
|
childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
|
|
6824
6818
|
})
|
|
@@ -6838,7 +6832,7 @@ const jg = (e) => {
|
|
|
6838
6832
|
} catch (s) {
|
|
6839
6833
|
console.error(s);
|
|
6840
6834
|
}
|
|
6841
|
-
return /* @__PURE__ */ f.createElement("img",
|
|
6835
|
+
return /* @__PURE__ */ f.createElement("img", W(p({}, e.attributes), { src: a }));
|
|
6842
6836
|
}, [u, e.attributes]);
|
|
6843
6837
|
}, Xg = (e) => {
|
|
6844
6838
|
const u = Ke(), a = Re(
|
|
@@ -6879,7 +6873,7 @@ const jg = (e) => {
|
|
|
6879
6873
|
};
|
|
6880
6874
|
},
|
|
6881
6875
|
[u.containerWidth]
|
|
6882
|
-
), { attributes: s, getHtmlAttributes: l } = tt(
|
|
6876
|
+
), { attributes: s, getHtmlAttributes: l } = tt(W(p({}, e), {
|
|
6883
6877
|
defaultAttributes: e.Com.defaultAttributes,
|
|
6884
6878
|
allowedAttributes: e.Com.allowedAttributes,
|
|
6885
6879
|
getDefaultStyles: a
|
|
@@ -6888,7 +6882,7 @@ const jg = (e) => {
|
|
|
6888
6882
|
style: "td",
|
|
6889
6883
|
class: b(s, "fluid-on-mobile") ? "mj-full-width-mobile" : null
|
|
6890
6884
|
});
|
|
6891
|
-
return B.style =
|
|
6885
|
+
return B.style = W(p({}, B.style), {
|
|
6892
6886
|
positon: "relative"
|
|
6893
6887
|
}), B;
|
|
6894
6888
|
}, [s, l]), g = q(() => l({
|
|
@@ -6991,7 +6985,7 @@ let Jg = class extends qe {
|
|
|
6991
6985
|
renderElement() {
|
|
6992
6986
|
return /* @__PURE__ */ f.createElement(
|
|
6993
6987
|
$g,
|
|
6994
|
-
|
|
6988
|
+
W(p({}, this.props), {
|
|
6995
6989
|
Com: this,
|
|
6996
6990
|
childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
|
|
6997
6991
|
})
|
|
@@ -7012,7 +7006,7 @@ const $g = (e) => {
|
|
|
7012
7006
|
};
|
|
7013
7007
|
return {
|
|
7014
7008
|
p: P,
|
|
7015
|
-
outlook:
|
|
7009
|
+
outlook: W(p({}, P), {
|
|
7016
7010
|
width: Zg({
|
|
7017
7011
|
attributes: I,
|
|
7018
7012
|
containerWidth: u.containerWidth
|
|
@@ -7021,7 +7015,7 @@ const $g = (e) => {
|
|
|
7021
7015
|
};
|
|
7022
7016
|
},
|
|
7023
7017
|
[u.containerWidth]
|
|
7024
|
-
), { attributes: s, getHtmlAttributes: l } = tt(
|
|
7018
|
+
), { attributes: s, getHtmlAttributes: l } = tt(W(p({}, e), {
|
|
7025
7019
|
defaultAttributes: e.Com.defaultAttributes,
|
|
7026
7020
|
allowedAttributes: e.Com.allowedAttributes,
|
|
7027
7021
|
getDefaultStyles: a
|
|
@@ -7062,7 +7056,7 @@ class tb extends qe {
|
|
|
7062
7056
|
renderElement() {
|
|
7063
7057
|
return /* @__PURE__ */ f.createElement(
|
|
7064
7058
|
ub,
|
|
7065
|
-
|
|
7059
|
+
W(p({}, this.props), {
|
|
7066
7060
|
Com: this,
|
|
7067
7061
|
childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
|
|
7068
7062
|
})
|
|
@@ -7075,7 +7069,7 @@ const ub = (e) => {
|
|
|
7075
7069
|
height: b(I, "height"),
|
|
7076
7070
|
"line-height": b(I, "height")
|
|
7077
7071
|
}
|
|
7078
|
-
}), []), { attributes: s, getHtmlAttributes: l } = tt(
|
|
7072
|
+
}), []), { attributes: s, getHtmlAttributes: l } = tt(W(p({}, e), {
|
|
7079
7073
|
defaultAttributes: e.Com.defaultAttributes,
|
|
7080
7074
|
allowedAttributes: e.Com.allowedAttributes,
|
|
7081
7075
|
getDefaultStyles: a
|
|
@@ -10737,7 +10731,7 @@ class $b {
|
|
|
10737
10731
|
}
|
|
10738
10732
|
_attachElementToTree(u, a) {
|
|
10739
10733
|
if (this.options.sourceCodeLocationInfo) {
|
|
10740
|
-
const s = a &&
|
|
10734
|
+
const s = a && W(p({}, a), {
|
|
10741
10735
|
startTag: a
|
|
10742
10736
|
});
|
|
10743
10737
|
this.treeAdapter.setNodeSourceCodeLocation(u, s);
|
|
@@ -12881,7 +12875,7 @@ class w3 extends qe {
|
|
|
12881
12875
|
renderElement() {
|
|
12882
12876
|
return /* @__PURE__ */ f.createElement(
|
|
12883
12877
|
F3,
|
|
12884
|
-
|
|
12878
|
+
W(p({}, this.props), {
|
|
12885
12879
|
Com: this,
|
|
12886
12880
|
childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
|
|
12887
12881
|
})
|
|
@@ -12892,7 +12886,7 @@ const F3 = (e) => q(() => /* @__PURE__ */ f.createElement(
|
|
|
12892
12886
|
O3,
|
|
12893
12887
|
{
|
|
12894
12888
|
content: e.element.data.content,
|
|
12895
|
-
domAttributes:
|
|
12889
|
+
domAttributes: W(p({
|
|
12896
12890
|
contentEditable: !1
|
|
12897
12891
|
}, e.attributes), {
|
|
12898
12892
|
"data-slate-block": e.Com.componentType
|
|
@@ -12919,7 +12913,7 @@ class H3 extends qe {
|
|
|
12919
12913
|
renderElement() {
|
|
12920
12914
|
return /* @__PURE__ */ f.createElement(
|
|
12921
12915
|
U3,
|
|
12922
|
-
|
|
12916
|
+
W(p({}, this.props), {
|
|
12923
12917
|
Com: this,
|
|
12924
12918
|
childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
|
|
12925
12919
|
})
|
|
@@ -12937,16 +12931,16 @@ const U3 = (e) => {
|
|
|
12937
12931
|
width: b(L, "width"),
|
|
12938
12932
|
border: b(L, "border")
|
|
12939
12933
|
}
|
|
12940
|
-
}), []), { attributes: s, getHtmlAttributes: l } = tt(
|
|
12934
|
+
}), []), { attributes: s, getHtmlAttributes: l } = tt(W(p({}, e), {
|
|
12941
12935
|
defaultAttributes: e.Com.defaultAttributes,
|
|
12942
12936
|
allowedAttributes: e.Com.allowedAttributes,
|
|
12943
12937
|
getDefaultStyles: a
|
|
12944
12938
|
})), m = q(() => {
|
|
12945
12939
|
const L = b(s, "width"), { parsedWidth: P, unit: B } = Zt(L);
|
|
12946
12940
|
return B === "%" ? L : P;
|
|
12947
|
-
}, [s]), g = q(() => l(
|
|
12941
|
+
}, [s]), g = q(() => l(W(p({}, Dn(
|
|
12948
12942
|
["cellpadding", "cellspacing", "role"],
|
|
12949
|
-
(L, P) =>
|
|
12943
|
+
(L, P) => W(p({}, L), {
|
|
12950
12944
|
[P]: b(s, P)
|
|
12951
12945
|
}),
|
|
12952
12946
|
{}
|
|
@@ -12964,7 +12958,7 @@ const U3 = (e) => {
|
|
|
12964
12958
|
},
|
|
12965
12959
|
/* @__PURE__ */ f.createElement(f.Fragment, null, /* @__PURE__ */ f.createElement(
|
|
12966
12960
|
"table",
|
|
12967
|
-
|
|
12961
|
+
W(p({}, g), {
|
|
12968
12962
|
dangerouslySetInnerHTML: {
|
|
12969
12963
|
__html: cg.decode(e.element.data.code)
|
|
12970
12964
|
}
|
|
@@ -13004,7 +12998,7 @@ let Q3 = class extends qe {
|
|
|
13004
12998
|
renderElement() {
|
|
13005
12999
|
return /* @__PURE__ */ f.createElement(
|
|
13006
13000
|
V3,
|
|
13007
|
-
|
|
13001
|
+
W(p({}, this.props), {
|
|
13008
13002
|
Com: this,
|
|
13009
13003
|
childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
|
|
13010
13004
|
})
|
|
@@ -13049,7 +13043,7 @@ const V3 = (e) => {
|
|
|
13049
13043
|
};
|
|
13050
13044
|
},
|
|
13051
13045
|
[u, a]
|
|
13052
|
-
), { attributes: l, getHtmlAttributes: m } = tt(
|
|
13046
|
+
), { attributes: l, getHtmlAttributes: m } = tt(W(p({}, e), {
|
|
13053
13047
|
defaultAttributes: e.Com.defaultAttributes,
|
|
13054
13048
|
allowedAttributes: e.Com.allowedAttributes,
|
|
13055
13049
|
getDefaultStyles: s
|
|
@@ -13084,7 +13078,7 @@ const V3 = (e) => {
|
|
|
13084
13078
|
let O = `${B} mj-outlook-group-fix`;
|
|
13085
13079
|
return b(l, "css-class") && (O += ` ${b(l, "css-class")}`), /* @__PURE__ */ f.createElement(
|
|
13086
13080
|
"div",
|
|
13087
|
-
p(
|
|
13081
|
+
p(W(p({}, e.attributes), {
|
|
13088
13082
|
"data-slate-block": e.Com.componentType
|
|
13089
13083
|
}), m({
|
|
13090
13084
|
class: O,
|
|
@@ -13134,7 +13128,7 @@ let z3 = class extends qe {
|
|
|
13134
13128
|
renderElement() {
|
|
13135
13129
|
return /* @__PURE__ */ f.createElement(
|
|
13136
13130
|
j3,
|
|
13137
|
-
|
|
13131
|
+
W(p({}, this.props), {
|
|
13138
13132
|
Com: this,
|
|
13139
13133
|
childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
|
|
13140
13134
|
})
|
|
@@ -13163,7 +13157,7 @@ const j3 = (e) => {
|
|
|
13163
13157
|
"padding-bottom": `${O}%`,
|
|
13164
13158
|
"mso-padding-bottom-alt": "0"
|
|
13165
13159
|
},
|
|
13166
|
-
hero:
|
|
13160
|
+
hero: W(p({}, Y3(B)), {
|
|
13167
13161
|
"background-position": b(B, "background-position"),
|
|
13168
13162
|
"background-repeat": "no-repeat",
|
|
13169
13163
|
"border-radius": b(B, "border-radius"),
|
|
@@ -13215,7 +13209,7 @@ const j3 = (e) => {
|
|
|
13215
13209
|
};
|
|
13216
13210
|
},
|
|
13217
13211
|
[a]
|
|
13218
|
-
), { attributes: l, getHtmlAttributes: m } = tt(
|
|
13212
|
+
), { attributes: l, getHtmlAttributes: m } = tt(W(p({}, e), {
|
|
13219
13213
|
defaultAttributes: e.Com.defaultAttributes,
|
|
13220
13214
|
allowedAttributes: e.Com.allowedAttributes,
|
|
13221
13215
|
getDefaultStyles: s
|
|
@@ -13261,7 +13255,7 @@ const j3 = (e) => {
|
|
|
13261
13255
|
const O = parseInt(b(l, "height", ""), 10) - Pt(l, "padding", "top") - Pt(l, "padding", "bottom");
|
|
13262
13256
|
return /* @__PURE__ */ f.createElement(
|
|
13263
13257
|
"td",
|
|
13264
|
-
p({}, m(
|
|
13258
|
+
p({}, m(W(p({}, B), {
|
|
13265
13259
|
height: O.toString()
|
|
13266
13260
|
}))),
|
|
13267
13261
|
g
|
|
@@ -13333,7 +13327,7 @@ class b0 extends qe {
|
|
|
13333
13327
|
renderElement() {
|
|
13334
13328
|
var g;
|
|
13335
13329
|
const a = this.props.element, s = b(a, "attributes.style", ""), l = ha(
|
|
13336
|
-
|
|
13330
|
+
W(p(p({}, this.props.attributes), a.attributes), {
|
|
13337
13331
|
style: ca(s) ? bl(s) : s,
|
|
13338
13332
|
"data-slate-block": this.componentType
|
|
13339
13333
|
}),
|
|
@@ -13341,12 +13335,12 @@ class b0 extends qe {
|
|
|
13341
13335
|
), m = a.data.tagName;
|
|
13342
13336
|
return m === "img" ? /* @__PURE__ */ f.createElement(
|
|
13343
13337
|
"span",
|
|
13344
|
-
p({},
|
|
13338
|
+
p({}, W(p({}, this.props.attributes), {
|
|
13345
13339
|
"data-slate-block": this.componentType
|
|
13346
13340
|
})),
|
|
13347
13341
|
yr(
|
|
13348
13342
|
m,
|
|
13349
|
-
|
|
13343
|
+
W(p({}, a.attributes), {
|
|
13350
13344
|
style: ca(s) ? bl(s) : s
|
|
13351
13345
|
}),
|
|
13352
13346
|
null
|
|
@@ -13354,7 +13348,7 @@ class b0 extends qe {
|
|
|
13354
13348
|
this.props.children
|
|
13355
13349
|
) : m === "style" ? /* @__PURE__ */ f.createElement(
|
|
13356
13350
|
"style",
|
|
13357
|
-
|
|
13351
|
+
W(p({}, W(p({}, this.props.attributes), {
|
|
13358
13352
|
"data-slate-block": this.componentType
|
|
13359
13353
|
})), {
|
|
13360
13354
|
dangerouslySetInnerHTML: {
|
|
@@ -13380,7 +13374,7 @@ class p0 extends qe {
|
|
|
13380
13374
|
}
|
|
13381
13375
|
renderElement() {
|
|
13382
13376
|
const a = this.props.element, s = b(a, "attributes.style", ""), l = ha(
|
|
13383
|
-
|
|
13377
|
+
W(p(p({}, this.props.attributes), a.attributes), {
|
|
13384
13378
|
style: ca(s) ? K3(s) : s,
|
|
13385
13379
|
"data-slate-block": this.componentType
|
|
13386
13380
|
}),
|
|
@@ -13404,7 +13398,7 @@ class $3 extends qe {
|
|
|
13404
13398
|
renderElement() {
|
|
13405
13399
|
return /* @__PURE__ */ f.createElement(
|
|
13406
13400
|
eT,
|
|
13407
|
-
|
|
13401
|
+
W(p({}, this.props), {
|
|
13408
13402
|
Com: this,
|
|
13409
13403
|
childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
|
|
13410
13404
|
})
|
|
@@ -13448,7 +13442,7 @@ const eT = (e) => {
|
|
|
13448
13442
|
display: "none",
|
|
13449
13443
|
"mso-hide": "all"
|
|
13450
13444
|
}
|
|
13451
|
-
}), []), { attributes: s, getHtmlAttributes: l } = tt(
|
|
13445
|
+
}), []), { attributes: s, getHtmlAttributes: l } = tt(W(p({}, e), {
|
|
13452
13446
|
defaultAttributes: e.Com.defaultAttributes,
|
|
13453
13447
|
allowedAttributes: e.Com.allowedAttributes,
|
|
13454
13448
|
getDefaultStyles: a
|
|
@@ -13495,7 +13489,7 @@ const eT = (e) => {
|
|
|
13495
13489
|
})),
|
|
13496
13490
|
/* @__PURE__ */ f.createElement(
|
|
13497
13491
|
"span",
|
|
13498
|
-
|
|
13492
|
+
W(p({}, l({
|
|
13499
13493
|
class: "mj-menu-icon-open",
|
|
13500
13494
|
style: "icoOpen"
|
|
13501
13495
|
})), {
|
|
@@ -13506,7 +13500,7 @@ const eT = (e) => {
|
|
|
13506
13500
|
),
|
|
13507
13501
|
/* @__PURE__ */ f.createElement(
|
|
13508
13502
|
"span",
|
|
13509
|
-
|
|
13503
|
+
W(p({}, l({
|
|
13510
13504
|
class: "mj-menu-icon-close",
|
|
13511
13505
|
style: "icoClose"
|
|
13512
13506
|
})), {
|
|
@@ -13561,7 +13555,7 @@ class uT extends qe {
|
|
|
13561
13555
|
renderElement() {
|
|
13562
13556
|
return /* @__PURE__ */ f.createElement(
|
|
13563
13557
|
rT,
|
|
13564
|
-
|
|
13558
|
+
W(p({}, this.props), {
|
|
13565
13559
|
Com: this,
|
|
13566
13560
|
childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
|
|
13567
13561
|
})
|
|
@@ -13594,7 +13588,7 @@ const rT = (e) => {
|
|
|
13594
13588
|
"padding-right": b(O, "padding-right"),
|
|
13595
13589
|
"padding-bottom": b(O, "padding-bottom")
|
|
13596
13590
|
}
|
|
13597
|
-
}), []), { attributes: s, getHtmlAttributes: l } = tt(
|
|
13591
|
+
}), []), { attributes: s, getHtmlAttributes: l } = tt(W(p({}, e), {
|
|
13598
13592
|
defaultAttributes: e.Com.defaultAttributes,
|
|
13599
13593
|
allowedAttributes: e.Com.allowedAttributes,
|
|
13600
13594
|
getDefaultStyles: a
|
|
@@ -13642,7 +13636,7 @@ class nT extends qe {
|
|
|
13642
13636
|
renderElement() {
|
|
13643
13637
|
return /* @__PURE__ */ f.createElement(
|
|
13644
13638
|
iT,
|
|
13645
|
-
|
|
13639
|
+
W(p({}, this.props), {
|
|
13646
13640
|
Com: this,
|
|
13647
13641
|
childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
|
|
13648
13642
|
})
|
|
@@ -13654,7 +13648,7 @@ const iT = (e) => {
|
|
|
13654
13648
|
tableVertical: {
|
|
13655
13649
|
margin: "0px"
|
|
13656
13650
|
}
|
|
13657
|
-
}), []), { attributes: s, getHtmlAttributes: l } = tt(
|
|
13651
|
+
}), []), { attributes: s, getHtmlAttributes: l } = tt(W(p({}, e), {
|
|
13658
13652
|
defaultAttributes: e.Com.defaultAttributes,
|
|
13659
13653
|
allowedAttributes: e.Com.allowedAttributes,
|
|
13660
13654
|
getDefaultStyles: a
|
|
@@ -13781,7 +13775,7 @@ const iT = (e) => {
|
|
|
13781
13775
|
}
|
|
13782
13776
|
};
|
|
13783
13777
|
Il(cs, (e, u) => {
|
|
13784
|
-
cs[`${u}-noshare`] =
|
|
13778
|
+
cs[`${u}-noshare`] = W(p({}, e), {
|
|
13785
13779
|
"share-url": "[[URL]]"
|
|
13786
13780
|
});
|
|
13787
13781
|
});
|
|
@@ -13799,7 +13793,7 @@ const pl = ({
|
|
|
13799
13793
|
"src",
|
|
13800
13794
|
"background-color"
|
|
13801
13795
|
].reduce(
|
|
13802
|
-
(l, m) =>
|
|
13796
|
+
(l, m) => W(p({}, l), {
|
|
13803
13797
|
[m]: b(e, m) || u[m]
|
|
13804
13798
|
}),
|
|
13805
13799
|
{}
|
|
@@ -13819,7 +13813,7 @@ class oT extends qe {
|
|
|
13819
13813
|
renderElement() {
|
|
13820
13814
|
return /* @__PURE__ */ f.createElement(
|
|
13821
13815
|
cT,
|
|
13822
|
-
|
|
13816
|
+
W(p({}, this.props), {
|
|
13823
13817
|
Com: this,
|
|
13824
13818
|
childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
|
|
13825
13819
|
})
|
|
@@ -13873,7 +13867,7 @@ const cT = (e) => {
|
|
|
13873
13867
|
"text-decoration": b(re, "text-decoration")
|
|
13874
13868
|
}
|
|
13875
13869
|
};
|
|
13876
|
-
}, []), { attributes: s, getHtmlAttributes: l } = tt(
|
|
13870
|
+
}, []), { attributes: s, getHtmlAttributes: l } = tt(W(p({}, e), {
|
|
13877
13871
|
defaultAttributes: e.Com.defaultAttributes,
|
|
13878
13872
|
allowedAttributes: e.Com.allowedAttributes,
|
|
13879
13873
|
getDefaultStyles: a
|
|
@@ -13915,10 +13909,10 @@ const cT = (e) => {
|
|
|
13915
13909
|
cellSpacing: "0",
|
|
13916
13910
|
role: "presentation",
|
|
13917
13911
|
style: "table"
|
|
13918
|
-
}), [l]),
|
|
13912
|
+
}), [l]), Q = q(
|
|
13919
13913
|
() => l({ style: "icon" }),
|
|
13920
13914
|
[l]
|
|
13921
|
-
),
|
|
13915
|
+
), G = q(
|
|
13922
13916
|
() => l({ style: "tdText" }),
|
|
13923
13917
|
[l]
|
|
13924
13918
|
), j = m["css-class"], oe = q(
|
|
@@ -13951,10 +13945,10 @@ const cT = (e) => {
|
|
|
13951
13945
|
display: "inline-table"
|
|
13952
13946
|
}
|
|
13953
13947
|
}), [m.align]), Ce = q(() => {
|
|
13954
|
-
const re = /* @__PURE__ */ f.createElement("tr", p(p({}, e.attributes), oe), /* @__PURE__ */ f.createElement("td", p({}, w), /* @__PURE__ */ f.createElement("table", p({}, F), /* @__PURE__ */ f.createElement("tbody", null, /* @__PURE__ */ f.createElement("tr", null, /* @__PURE__ */ f.createElement("td", p({},
|
|
13948
|
+
const re = /* @__PURE__ */ f.createElement("tr", p(p({}, e.attributes), oe), /* @__PURE__ */ f.createElement("td", p({}, w), /* @__PURE__ */ f.createElement("table", p({}, F), /* @__PURE__ */ f.createElement("tbody", null, /* @__PURE__ */ f.createElement("tr", null, /* @__PURE__ */ f.createElement("td", p({}, Q), L ? /* @__PURE__ */ f.createElement("a", p({}, N), /* @__PURE__ */ f.createElement(Tl, { attributes: T })) : /* @__PURE__ */ f.createElement("a", p({}, N), /* @__PURE__ */ f.createElement(Tl, { attributes: T }))))))), /* @__PURE__ */ f.createElement(
|
|
13955
13949
|
"td",
|
|
13956
|
-
|
|
13957
|
-
style:
|
|
13950
|
+
W(p({}, G), {
|
|
13951
|
+
style: W(p({}, G.style || {}), {
|
|
13958
13952
|
width: Z ? void 0 : "0px",
|
|
13959
13953
|
overflow: Z ? void 0 : "hidden",
|
|
13960
13954
|
padding: Z ? void 0 : "0px"
|
|
@@ -13975,8 +13969,8 @@ const cT = (e) => {
|
|
|
13975
13969
|
F,
|
|
13976
13970
|
oe,
|
|
13977
13971
|
w,
|
|
13972
|
+
G,
|
|
13978
13973
|
Q,
|
|
13979
|
-
W,
|
|
13980
13974
|
te,
|
|
13981
13975
|
$
|
|
13982
13976
|
]);
|
|
@@ -14002,7 +13996,7 @@ const cT = (e) => {
|
|
|
14002
13996
|
} catch (s) {
|
|
14003
13997
|
console.error(s);
|
|
14004
13998
|
}
|
|
14005
|
-
return /* @__PURE__ */ f.createElement("img",
|
|
13999
|
+
return /* @__PURE__ */ f.createElement("img", W(p({}, e.attributes), { src: a }));
|
|
14006
14000
|
}, [u, e.attributes]);
|
|
14007
14001
|
};
|
|
14008
14002
|
class lT extends zg {
|
|
@@ -14031,7 +14025,7 @@ class pT extends ms {
|
|
|
14031
14025
|
renderElement() {
|
|
14032
14026
|
return /* @__PURE__ */ f.createElement(
|
|
14033
14027
|
TT,
|
|
14034
|
-
|
|
14028
|
+
W(p({}, this.props), {
|
|
14035
14029
|
Com: this,
|
|
14036
14030
|
childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
|
|
14037
14031
|
})
|
|
@@ -14053,7 +14047,7 @@ const TT = (e) => {
|
|
|
14053
14047
|
color: g.color,
|
|
14054
14048
|
height: g.height
|
|
14055
14049
|
}
|
|
14056
|
-
}), []), { attributes: s, getHtmlAttributes: l } = tt(
|
|
14050
|
+
}), []), { attributes: s, getHtmlAttributes: l } = tt(W(p({}, e), {
|
|
14057
14051
|
defaultAttributes: e.Com.defaultAttributes,
|
|
14058
14052
|
allowedAttributes: e.Com.allowedAttributes,
|
|
14059
14053
|
getDefaultStyles: a
|
|
@@ -14067,7 +14061,7 @@ const TT = (e) => {
|
|
|
14067
14061
|
},
|
|
14068
14062
|
/* @__PURE__ */ f.createElement(
|
|
14069
14063
|
"div",
|
|
14070
|
-
|
|
14064
|
+
W(p({}, l({
|
|
14071
14065
|
style: "text"
|
|
14072
14066
|
})), {
|
|
14073
14067
|
"data-slate-block": e.Com.componentType
|
|
@@ -14110,7 +14104,7 @@ const CT = De.getBlockByType(de.TEXT), _T = De.getBlockByType(de.STANDARD_TEXT_L
|
|
|
14110
14104
|
class NT extends ms {
|
|
14111
14105
|
constructor() {
|
|
14112
14106
|
super(...arguments);
|
|
14113
|
-
Y(this, "allowedAttributes",
|
|
14107
|
+
Y(this, "allowedAttributes", W(p({}, at.Text), {
|
|
14114
14108
|
"list-style": "string"
|
|
14115
14109
|
}));
|
|
14116
14110
|
Y(this, "defaultAttributes", p(p({}, CT.defaultData.attributes), _T.defaultData.attributes));
|
|
@@ -14118,7 +14112,7 @@ class NT extends ms {
|
|
|
14118
14112
|
renderElement() {
|
|
14119
14113
|
return /* @__PURE__ */ f.createElement(
|
|
14120
14114
|
yT,
|
|
14121
|
-
|
|
14115
|
+
W(p({}, this.props), {
|
|
14122
14116
|
Com: this,
|
|
14123
14117
|
childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
|
|
14124
14118
|
})
|
|
@@ -14141,7 +14135,7 @@ const yT = (e) => {
|
|
|
14141
14135
|
height: g.height
|
|
14142
14136
|
}
|
|
14143
14137
|
}), []), { attributes: s, getHtmlAttributes: l } = tt(
|
|
14144
|
-
|
|
14138
|
+
W(p({}, e), {
|
|
14145
14139
|
defaultAttributes: e.Com.defaultAttributes,
|
|
14146
14140
|
allowedAttributes: e.Com.allowedAttributes,
|
|
14147
14141
|
getDefaultStyles: a
|
|
@@ -14156,7 +14150,7 @@ const yT = (e) => {
|
|
|
14156
14150
|
},
|
|
14157
14151
|
/* @__PURE__ */ f.createElement(
|
|
14158
14152
|
"div",
|
|
14159
|
-
|
|
14153
|
+
W(p({}, l({
|
|
14160
14154
|
style: "text"
|
|
14161
14155
|
})), {
|
|
14162
14156
|
"data-slate-block": e.Com.componentType
|
|
@@ -14266,7 +14260,7 @@ class _0 extends qe {
|
|
|
14266
14260
|
renderElement() {
|
|
14267
14261
|
return /* @__PURE__ */ f.createElement(
|
|
14268
14262
|
ST,
|
|
14269
|
-
|
|
14263
|
+
W(p({}, this.props), {
|
|
14270
14264
|
Com: this,
|
|
14271
14265
|
childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
|
|
14272
14266
|
})
|
|
@@ -14275,7 +14269,7 @@ class _0 extends qe {
|
|
|
14275
14269
|
}
|
|
14276
14270
|
Y(_0, "defaultAttributes", p({}, vT.defaultData.attributes));
|
|
14277
14271
|
const ST = (e) => {
|
|
14278
|
-
const u = Ke(), a = Re((g) => ({}), []), { attributes: s, getHtmlAttributes: l } = tt(
|
|
14272
|
+
const u = Ke(), a = Re((g) => ({}), []), { attributes: s, getHtmlAttributes: l } = tt(W(p({}, e), {
|
|
14279
14273
|
defaultAttributes: e.Com.defaultAttributes,
|
|
14280
14274
|
allowedAttributes: e.Com.allowedAttributes,
|
|
14281
14275
|
getDefaultStyles: a
|
|
@@ -14333,7 +14327,7 @@ class wT extends qe {
|
|
|
14333
14327
|
}
|
|
14334
14328
|
renderElement() {
|
|
14335
14329
|
const a = this.props.element.data.tagName, s = ha(
|
|
14336
|
-
|
|
14330
|
+
W(p(p({}, this.props.attributes), this.props.element.attributes), {
|
|
14337
14331
|
"data-slate-block": this.componentType
|
|
14338
14332
|
}),
|
|
14339
14333
|
"tagName"
|
|
@@ -14357,7 +14351,7 @@ class MT extends qe {
|
|
|
14357
14351
|
renderElement() {
|
|
14358
14352
|
return /* @__PURE__ */ f.createElement(
|
|
14359
14353
|
HT,
|
|
14360
|
-
|
|
14354
|
+
W(p({}, this.props), {
|
|
14361
14355
|
Com: this,
|
|
14362
14356
|
childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
|
|
14363
14357
|
})
|
|
@@ -14382,7 +14376,7 @@ const HT = (e) => {
|
|
|
14382
14376
|
"white-space": "normal"
|
|
14383
14377
|
// 需要加上,不然有很多间隙
|
|
14384
14378
|
}
|
|
14385
|
-
}), []), { attributes: s, getHtmlAttributes: l } = tt(
|
|
14379
|
+
}), []), { attributes: s, getHtmlAttributes: l } = tt(W(p({}, e), {
|
|
14386
14380
|
defaultAttributes: e.Com.defaultAttributes,
|
|
14387
14381
|
allowedAttributes: e.Com.allowedAttributes,
|
|
14388
14382
|
getDefaultStyles: a
|
|
@@ -14441,7 +14435,7 @@ class qT extends qe {
|
|
|
14441
14435
|
renderElement() {
|
|
14442
14436
|
return /* @__PURE__ */ f.createElement(
|
|
14443
14437
|
WT,
|
|
14444
|
-
|
|
14438
|
+
W(p({}, this.props), {
|
|
14445
14439
|
Com: this,
|
|
14446
14440
|
childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
|
|
14447
14441
|
})
|
|
@@ -14459,7 +14453,7 @@ const WT = (e) => {
|
|
|
14459
14453
|
width: b(L, "width"),
|
|
14460
14454
|
border: b(L, "border")
|
|
14461
14455
|
}
|
|
14462
|
-
}), []), { attributes: s, getHtmlAttributes: l } = tt(
|
|
14456
|
+
}), []), { attributes: s, getHtmlAttributes: l } = tt(W(p({}, e), {
|
|
14463
14457
|
defaultAttributes: e.Com.defaultAttributes,
|
|
14464
14458
|
allowedAttributes: e.Com.allowedAttributes,
|
|
14465
14459
|
getDefaultStyles: a
|
|
@@ -14468,9 +14462,9 @@ const WT = (e) => {
|
|
|
14468
14462
|
return B === "%" ? L : P;
|
|
14469
14463
|
}, [s]), g = q(() => {
|
|
14470
14464
|
const L = `${s["cell-padding-top"]} ${s["cell-padding-right"]} ${s["cell-padding-bottom"]} ${s["cell-padding-left"]}`;
|
|
14471
|
-
return l(
|
|
14465
|
+
return l(W(p({}, Dn(
|
|
14472
14466
|
["cellspacing", "role"],
|
|
14473
|
-
(P, B) =>
|
|
14467
|
+
(P, B) => W(p({}, P), {
|
|
14474
14468
|
[B]: b(s, B),
|
|
14475
14469
|
cellpadding: L
|
|
14476
14470
|
}),
|
|
@@ -14517,7 +14511,7 @@ class VT extends qe {
|
|
|
14517
14511
|
renderElement() {
|
|
14518
14512
|
return /* @__PURE__ */ f.createElement(
|
|
14519
14513
|
GT,
|
|
14520
|
-
|
|
14514
|
+
W(p({}, this.props), {
|
|
14521
14515
|
Com: this,
|
|
14522
14516
|
childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
|
|
14523
14517
|
})
|
|
@@ -14525,7 +14519,7 @@ class VT extends qe {
|
|
|
14525
14519
|
}
|
|
14526
14520
|
}
|
|
14527
14521
|
const GT = (e) => {
|
|
14528
|
-
const u = Ke(), a = ha(
|
|
14522
|
+
const u = Ke(), a = ha(W(p(p({}, e.attributes), e.element.attributes), {
|
|
14529
14523
|
"data-slate-block": e.Com.componentType
|
|
14530
14524
|
})), s = e.element.children.every(
|
|
14531
14525
|
(g) => z.isTextNode(g)
|
|
@@ -14545,7 +14539,7 @@ const GT = (e) => {
|
|
|
14545
14539
|
},
|
|
14546
14540
|
yr(
|
|
14547
14541
|
"tr",
|
|
14548
|
-
|
|
14542
|
+
W(p({}, a), { style: m }),
|
|
14549
14543
|
s ? /* @__PURE__ */ f.createElement("td", { style: { position: "absolute" } }, e.childrenWithPlaceholder) : e.childrenWithPlaceholder
|
|
14550
14544
|
)
|
|
14551
14545
|
);
|
|
@@ -14560,7 +14554,7 @@ class zT extends qe {
|
|
|
14560
14554
|
renderElement() {
|
|
14561
14555
|
return /* @__PURE__ */ f.createElement(
|
|
14562
14556
|
jT,
|
|
14563
|
-
|
|
14557
|
+
W(p({}, this.props), {
|
|
14564
14558
|
Com: this,
|
|
14565
14559
|
childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
|
|
14566
14560
|
})
|
|
@@ -14568,7 +14562,7 @@ class zT extends qe {
|
|
|
14568
14562
|
}
|
|
14569
14563
|
}
|
|
14570
14564
|
const jT = (e) => {
|
|
14571
|
-
const u = Ke(), a = ha(
|
|
14565
|
+
const u = Ke(), a = ha(W(p(p({}, e.attributes), e.element.attributes), {
|
|
14572
14566
|
"data-slate-block": e.Com.componentType
|
|
14573
14567
|
})), s = {}, l = u.attributes;
|
|
14574
14568
|
return l["border-enabled"] && (s.border = `${l["border-color"]} ${l["border-style"]} ${l["border-width"]}`), l.padding && (s.padding = l.padding), l["text-align"] && (s.textAlign = l["text-align"]), /* @__PURE__ */ f.createElement(
|
|
@@ -14580,7 +14574,7 @@ const jT = (e) => {
|
|
|
14580
14574
|
},
|
|
14581
14575
|
yr(
|
|
14582
14576
|
"td",
|
|
14583
|
-
|
|
14577
|
+
W(p({}, a), {
|
|
14584
14578
|
style: s,
|
|
14585
14579
|
rowSpan: e.element.data.rowspan,
|
|
14586
14580
|
colSpan: e.element.data.colspan
|
|
@@ -14662,7 +14656,7 @@ const jT = (e) => {
|
|
|
14662
14656
|
}
|
|
14663
14657
|
};
|
|
14664
14658
|
Il(ls, (e, u) => {
|
|
14665
|
-
ls[`${u}-noshare`] =
|
|
14659
|
+
ls[`${u}-noshare`] = W(p({}, e), {
|
|
14666
14660
|
"share-url": "[[URL]]"
|
|
14667
14661
|
});
|
|
14668
14662
|
});
|
|
@@ -14680,7 +14674,7 @@ const Dl = ({
|
|
|
14680
14674
|
"src",
|
|
14681
14675
|
"background-color"
|
|
14682
14676
|
].reduce(
|
|
14683
|
-
(l, m) =>
|
|
14677
|
+
(l, m) => W(p({}, l), {
|
|
14684
14678
|
[m]: b(e, m) || u[m]
|
|
14685
14679
|
}),
|
|
14686
14680
|
{}
|
|
@@ -14700,7 +14694,7 @@ class KT extends qe {
|
|
|
14700
14694
|
renderElement() {
|
|
14701
14695
|
return /* @__PURE__ */ f.createElement(
|
|
14702
14696
|
ZT,
|
|
14703
|
-
|
|
14697
|
+
W(p({}, this.props), {
|
|
14704
14698
|
Com: this,
|
|
14705
14699
|
childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
|
|
14706
14700
|
})
|
|
@@ -14767,7 +14761,7 @@ const ZT = (e) => {
|
|
|
14767
14761
|
};
|
|
14768
14762
|
},
|
|
14769
14763
|
[(ge = s.element) == null ? void 0 : ge.attributes, a]
|
|
14770
|
-
), { attributes: m, getHtmlAttributes: g } = tt(
|
|
14764
|
+
), { attributes: m, getHtmlAttributes: g } = tt(W(p({}, e), {
|
|
14771
14765
|
defaultAttributes: e.Com.defaultAttributes,
|
|
14772
14766
|
allowedAttributes: e.Com.allowedAttributes,
|
|
14773
14767
|
getDefaultStyles: l
|
|
@@ -14799,11 +14793,11 @@ const ZT = (e) => {
|
|
|
14799
14793
|
y,
|
|
14800
14794
|
O
|
|
14801
14795
|
]
|
|
14802
|
-
),
|
|
14796
|
+
), Q = q(() => g({
|
|
14803
14797
|
href: ae,
|
|
14804
14798
|
rel: I.rel,
|
|
14805
14799
|
target: I.target
|
|
14806
|
-
}), [I.rel, I.target, g, ae]),
|
|
14800
|
+
}), [I.rel, I.target, g, ae]), G = q(() => g({
|
|
14807
14801
|
border: "0",
|
|
14808
14802
|
cellPadding: "0",
|
|
14809
14803
|
cellSpacing: "0",
|
|
@@ -14845,10 +14839,10 @@ const ZT = (e) => {
|
|
|
14845
14839
|
display: "inline-table"
|
|
14846
14840
|
}
|
|
14847
14841
|
}), [I.align]), re = q(() => {
|
|
14848
|
-
const Ne = /* @__PURE__ */ f.createElement("tr", p(p({}, e.attributes), $), /* @__PURE__ */ f.createElement("td", p({}, te), /* @__PURE__ */ f.createElement("table", p({},
|
|
14842
|
+
const Ne = /* @__PURE__ */ f.createElement("tr", p(p({}, e.attributes), $), /* @__PURE__ */ f.createElement("td", p({}, te), /* @__PURE__ */ f.createElement("table", p({}, G), /* @__PURE__ */ f.createElement("tbody", null, /* @__PURE__ */ f.createElement("tr", null, /* @__PURE__ */ f.createElement("td", p({}, j), B ? /* @__PURE__ */ f.createElement("a", p({}, Q), /* @__PURE__ */ f.createElement(Cl, { attributes: F })) : /* @__PURE__ */ f.createElement("a", p({}, Q), /* @__PURE__ */ f.createElement(Cl, { attributes: F }))))))), /* @__PURE__ */ f.createElement(
|
|
14849
14843
|
"td",
|
|
14850
|
-
|
|
14851
|
-
style:
|
|
14844
|
+
W(p({}, oe), {
|
|
14845
|
+
style: W(p({}, oe.style || {}), {
|
|
14852
14846
|
width: Ce ? void 0 : "0px",
|
|
14853
14847
|
overflow: Ce ? void 0 : "hidden",
|
|
14854
14848
|
padding: Ce ? void 0 : "0px"
|
|
@@ -14863,10 +14857,10 @@ const ZT = (e) => {
|
|
|
14863
14857
|
_e,
|
|
14864
14858
|
F,
|
|
14865
14859
|
P,
|
|
14866
|
-
|
|
14860
|
+
Q,
|
|
14867
14861
|
e.attributes,
|
|
14868
14862
|
e.childrenWithPlaceholder,
|
|
14869
|
-
|
|
14863
|
+
G,
|
|
14870
14864
|
$,
|
|
14871
14865
|
te,
|
|
14872
14866
|
oe,
|
|
@@ -14896,7 +14890,7 @@ const ZT = (e) => {
|
|
|
14896
14890
|
} catch (s) {
|
|
14897
14891
|
console.error(s);
|
|
14898
14892
|
}
|
|
14899
|
-
return /* @__PURE__ */ f.createElement("img",
|
|
14893
|
+
return /* @__PURE__ */ f.createElement("img", W(p({}, e.attributes), { src: a }));
|
|
14900
14894
|
}, [u, e.attributes]);
|
|
14901
14895
|
}, Ds = {
|
|
14902
14896
|
wrapper: kT,
|
|
@@ -14933,23 +14927,23 @@ const ZT = (e) => {
|
|
|
14933
14927
|
[de.STANDARD_TABLE2_TR]: VT,
|
|
14934
14928
|
[de.STANDARD_TABLE2_TD]: zT
|
|
14935
14929
|
}, $i = /* @__PURE__ */ new Map(), JT = (e) => {
|
|
14936
|
-
var
|
|
14937
|
-
const u = e.activeTab === Rl.MOBILE, a = e.attributesVariables, s = !!e.enabledResponsive, l = Cu(e), m = xr(), { mergetagsData: g } = _n(), I = (
|
|
14930
|
+
var Q;
|
|
14931
|
+
const u = e.activeTab === Rl.MOBILE, a = e.attributesVariables, s = !!e.enabledResponsive, l = Cu(e), m = xr(), { mergetagsData: g } = _n(), I = (Q = e.attributes) == null ? void 0 : Q["data-slate-path"], L = I == null ? void 0 : I.split("-").map(Number);
|
|
14938
14932
|
let P = null;
|
|
14939
14933
|
const B = m.children[0];
|
|
14940
14934
|
try {
|
|
14941
14935
|
P = he.above(m, {
|
|
14942
14936
|
at: L,
|
|
14943
|
-
match: (
|
|
14937
|
+
match: (G) => z.isWidgetElement(G)
|
|
14944
14938
|
});
|
|
14945
|
-
} catch (
|
|
14939
|
+
} catch (G) {
|
|
14946
14940
|
}
|
|
14947
14941
|
const y = q(() => (fa(e, l.current) || (l.current = e), l.current), [e]), O = P ? P[0] : null, J = q(() => O == null ? void 0 : O.data.input, [O == null ? void 0 : O.data.input]), ae = q(() => I && O ? fs(a || {}, J) : a, [J, O, a, I]), T = q(() => B.attributes, [B]), N = q(() => B.data, [B]);
|
|
14948
14942
|
return q(() => {
|
|
14949
|
-
const { element:
|
|
14950
|
-
return
|
|
14943
|
+
const { element: G } = y;
|
|
14944
|
+
return G.visible === "desktop" && u || G.visible === "mobile" && !u ? null : /* @__PURE__ */ f.createElement(
|
|
14951
14945
|
$T,
|
|
14952
|
-
|
|
14946
|
+
W(p({}, y), {
|
|
14953
14947
|
attributes: y.attributes,
|
|
14954
14948
|
enabledResponsive: s,
|
|
14955
14949
|
mergetagsData: g,
|
|
@@ -14985,7 +14979,7 @@ const ZT = (e) => {
|
|
|
14985
14979
|
} catch (J) {
|
|
14986
14980
|
}
|
|
14987
14981
|
const y = q(() => (fa(B, u.current) || (u.current = B), u.current), [B]), O = q(() => m ? "" : Ju.elementToMjml(
|
|
14988
|
-
|
|
14982
|
+
W(p({}, a), {
|
|
14989
14983
|
attributes: P
|
|
14990
14984
|
}),
|
|
14991
14985
|
{
|
|
@@ -15007,11 +15001,11 @@ const ZT = (e) => {
|
|
|
15007
15001
|
y
|
|
15008
15002
|
]);
|
|
15009
15003
|
return q(() => {
|
|
15010
|
-
const J = I.data.breakpoint || "600px", ae =
|
|
15011
|
-
data:
|
|
15004
|
+
const J = I.data.breakpoint || "600px", ae = W(p({}, I), {
|
|
15005
|
+
data: W(p({}, I.data), {
|
|
15012
15006
|
breakpoint: s ? "99999px" : J
|
|
15013
15007
|
}),
|
|
15014
|
-
attributes:
|
|
15008
|
+
attributes: W(p({}, I.attributes), {
|
|
15015
15009
|
width: s ? "375px" : I.attributes.width || "600px"
|
|
15016
15010
|
})
|
|
15017
15011
|
});
|
|
@@ -15023,7 +15017,7 @@ const ZT = (e) => {
|
|
|
15023
15017
|
const T = Nr($i.get(O));
|
|
15024
15018
|
return z.isTextNode(T) ? null : /* @__PURE__ */ f.createElement(
|
|
15025
15019
|
eD,
|
|
15026
|
-
|
|
15020
|
+
W(p({}, e), {
|
|
15027
15021
|
element: a,
|
|
15028
15022
|
atomElement: T,
|
|
15029
15023
|
elementAttributes: T.attributes,
|
|
@@ -15034,7 +15028,7 @@ const ZT = (e) => {
|
|
|
15034
15028
|
}
|
|
15035
15029
|
return /* @__PURE__ */ f.createElement(f.Fragment, null, /* @__PURE__ */ f.createElement(
|
|
15036
15030
|
m,
|
|
15037
|
-
|
|
15031
|
+
W(p({}, e), {
|
|
15038
15032
|
elementType: a.type,
|
|
15039
15033
|
elementAttributes: P,
|
|
15040
15034
|
context: ae,
|
|
@@ -15075,7 +15069,7 @@ function eD(s) {
|
|
|
15075
15069
|
}
|
|
15076
15070
|
)) : /* @__PURE__ */ f.createElement(
|
|
15077
15071
|
P,
|
|
15078
|
-
|
|
15072
|
+
W(p({}, a), {
|
|
15079
15073
|
attributes: I,
|
|
15080
15074
|
context: e,
|
|
15081
15075
|
element: m,
|
|
@@ -15302,7 +15296,7 @@ const uD = ({
|
|
|
15302
15296
|
ye.select(y, _e);
|
|
15303
15297
|
}
|
|
15304
15298
|
}, [J, y, F]);
|
|
15305
|
-
const
|
|
15299
|
+
const Q = y.selection;
|
|
15306
15300
|
wt(() => {
|
|
15307
15301
|
try {
|
|
15308
15302
|
if (g) {
|
|
@@ -15317,8 +15311,8 @@ const uD = ({
|
|
|
15317
15311
|
} catch (w) {
|
|
15318
15312
|
console.log(w);
|
|
15319
15313
|
}
|
|
15320
|
-
}, [y, g,
|
|
15321
|
-
const
|
|
15314
|
+
}, [y, g, Q]);
|
|
15315
|
+
const G = Re(
|
|
15322
15316
|
(w) => {
|
|
15323
15317
|
if (B.readOnly)
|
|
15324
15318
|
return;
|
|
@@ -15419,7 +15413,7 @@ const uD = ({
|
|
|
15419
15413
|
/* @__PURE__ */ f.createElement("div", { id: "easy-email-pro-editor" }, /* @__PURE__ */ f.createElement(
|
|
15420
15414
|
dE,
|
|
15421
15415
|
{
|
|
15422
|
-
onPointerDown:
|
|
15416
|
+
onPointerDown: G,
|
|
15423
15417
|
onMouseMove: j,
|
|
15424
15418
|
onClick: oe,
|
|
15425
15419
|
autoFocus: !1,
|
|
@@ -15444,7 +15438,7 @@ const uD = ({
|
|
|
15444
15438
|
B.readOnly,
|
|
15445
15439
|
oe,
|
|
15446
15440
|
j,
|
|
15447
|
-
|
|
15441
|
+
G,
|
|
15448
15442
|
ae,
|
|
15449
15443
|
T
|
|
15450
15444
|
]);
|