@harbour-enterprises/superdoc 0.28.4 → 0.28.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chunks/{PdfViewer-CfUwzBbx.cjs → PdfViewer-CW2ybl0j.cjs} +1 -1
- package/dist/chunks/{PdfViewer-FhoWTpo9.es.js → PdfViewer-DAUQ4n0w.es.js} +1 -1
- package/dist/chunks/{index-C3gwy96O.cjs → index-BpgW1KZy.cjs} +3 -3
- package/dist/chunks/{index-CQbyD7vC.es.js → index-C7c7Wrir.es.js} +3 -3
- package/dist/chunks/{index-CEL3ujoV-C85AsK84.cjs → index-OJMKpgPV-BxyAzfHX.cjs} +1 -1
- package/dist/chunks/{index-CEL3ujoV-BXzhXCnT.es.js → index-OJMKpgPV-ByDfAvbD.es.js} +1 -1
- package/dist/chunks/{super-editor.es-BQCukgDh.cjs → super-editor.es-O28Q620R.cjs} +737 -732
- package/dist/chunks/{super-editor.es-rFPLjn7D.es.js → super-editor.es-sjHXNO5X.es.js} +737 -732
- package/dist/images/altText_add.svg +3 -0
- package/dist/images/altText_disclaimer.svg +3 -0
- package/dist/images/altText_done.svg +3 -0
- package/dist/images/altText_spinner.svg +30 -0
- package/dist/images/altText_warning.svg +3 -0
- package/dist/images/annotation-check.svg +11 -0
- package/dist/images/annotation-comment.svg +16 -0
- package/dist/images/annotation-help.svg +26 -0
- package/dist/images/annotation-insert.svg +10 -0
- package/dist/images/annotation-key.svg +11 -0
- package/dist/images/annotation-newparagraph.svg +11 -0
- package/dist/images/annotation-noicon.svg +7 -0
- package/dist/images/annotation-note.svg +42 -0
- package/dist/images/annotation-paperclip.svg +6 -0
- package/dist/images/annotation-paragraph.svg +16 -0
- package/dist/images/annotation-pushpin.svg +7 -0
- package/dist/images/cursor-editorFreeHighlight.svg +6 -0
- package/dist/images/cursor-editorFreeText.svg +3 -0
- package/dist/images/cursor-editorInk.svg +4 -0
- package/dist/images/cursor-editorTextHighlight.svg +8 -0
- package/dist/images/editor-toolbar-delete.svg +5 -0
- package/dist/images/loading-icon.gif +0 -0
- package/dist/images/messageBar_closingButton.svg +3 -0
- package/dist/images/messageBar_warning.svg +3 -0
- package/dist/images/toolbarButton-editorHighlight.svg +6 -0
- package/dist/images/toolbarButton-menuArrow.svg +3 -0
- package/dist/super-editor/ai-writer.es.js +2 -2
- package/dist/super-editor/chunks/{converter-BkMCDOKg.js → converter-BZDxsgIe.js} +386 -381
- package/dist/super-editor/chunks/{docx-zipper-CPrVIeS5.js → docx-zipper-DQ7QphV5.js} +1 -1
- package/dist/super-editor/chunks/{editor-D2rTPB17.js → editor-fnnUn0aZ.js} +4 -4
- package/dist/super-editor/chunks/{index-CEL3ujoV.js → index-OJMKpgPV.js} +1 -1
- package/dist/super-editor/chunks/{toolbar-EGiGMLTV.js → toolbar-DYEtZyI5.js} +2 -2
- package/dist/super-editor/converter.es.js +1 -1
- package/dist/super-editor/docx-zipper.es.js +2 -2
- package/dist/super-editor/editor.es.js +3 -3
- package/dist/super-editor/file-zipper.es.js +1 -1
- package/dist/super-editor/super-editor.es.js +6 -6
- package/dist/super-editor/toolbar.es.js +2 -2
- package/dist/super-editor.cjs +1 -1
- package/dist/super-editor.es.js +1 -1
- package/dist/superdoc.cjs +2 -2
- package/dist/superdoc.es.js +2 -2
- package/dist/superdoc.umd.js +501 -496
- package/dist/superdoc.umd.js.map +1 -1
- package/package.json +5 -2
|
@@ -416,17 +416,17 @@ ieee754.write = function(buffer2, value, offset2, isLE, mLen, nBytes) {
|
|
|
416
416
|
);
|
|
417
417
|
}
|
|
418
418
|
if (a === b2) return 0;
|
|
419
|
-
let
|
|
419
|
+
let x = a.length;
|
|
420
420
|
let y2 = b2.length;
|
|
421
|
-
for (let i = 0, len = Math.min(
|
|
421
|
+
for (let i = 0, len = Math.min(x, y2); i < len; ++i) {
|
|
422
422
|
if (a[i] !== b2[i]) {
|
|
423
|
-
|
|
423
|
+
x = a[i];
|
|
424
424
|
y2 = b2[i];
|
|
425
425
|
break;
|
|
426
426
|
}
|
|
427
427
|
}
|
|
428
|
-
if (
|
|
429
|
-
if (y2 <
|
|
428
|
+
if (x < y2) return -1;
|
|
429
|
+
if (y2 < x) return 1;
|
|
430
430
|
return 0;
|
|
431
431
|
};
|
|
432
432
|
Buffer3.isEncoding = function isEncoding(encoding) {
|
|
@@ -675,20 +675,20 @@ ieee754.write = function(buffer2, value, offset2, isLE, mLen, nBytes) {
|
|
|
675
675
|
thisStart >>>= 0;
|
|
676
676
|
thisEnd >>>= 0;
|
|
677
677
|
if (this === target) return 0;
|
|
678
|
-
let
|
|
678
|
+
let x = thisEnd - thisStart;
|
|
679
679
|
let y2 = end2 - start2;
|
|
680
|
-
const len = Math.min(
|
|
680
|
+
const len = Math.min(x, y2);
|
|
681
681
|
const thisCopy = this.slice(thisStart, thisEnd);
|
|
682
682
|
const targetCopy = target.slice(start2, end2);
|
|
683
683
|
for (let i = 0; i < len; ++i) {
|
|
684
684
|
if (thisCopy[i] !== targetCopy[i]) {
|
|
685
|
-
|
|
685
|
+
x = thisCopy[i];
|
|
686
686
|
y2 = targetCopy[i];
|
|
687
687
|
break;
|
|
688
688
|
}
|
|
689
689
|
}
|
|
690
|
-
if (
|
|
691
|
-
if (y2 <
|
|
690
|
+
if (x < y2) return -1;
|
|
691
|
+
if (y2 < x) return 1;
|
|
692
692
|
return 0;
|
|
693
693
|
};
|
|
694
694
|
function bidirectionalIndexOf(buffer2, val, byteOffset, encoding, dir) {
|
|
@@ -1778,8 +1778,8 @@ ieee754.write = function(buffer2, value, offset2, isLE, mLen, nBytes) {
|
|
|
1778
1778
|
})(buffer);
|
|
1779
1779
|
const Buffer2 = buffer.Buffer;
|
|
1780
1780
|
var commonjsGlobal = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global$2 !== "undefined" ? global$2 : typeof self !== "undefined" ? self : {};
|
|
1781
|
-
function getDefaultExportFromCjs$2(
|
|
1782
|
-
return
|
|
1781
|
+
function getDefaultExportFromCjs$2(x) {
|
|
1782
|
+
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x;
|
|
1783
1783
|
}
|
|
1784
1784
|
var sax = {};
|
|
1785
1785
|
var events$1 = { exports: {} };
|
|
@@ -1787,13 +1787,13 @@ var hasRequiredEvents;
|
|
|
1787
1787
|
function requireEvents() {
|
|
1788
1788
|
if (hasRequiredEvents) return events$1.exports;
|
|
1789
1789
|
hasRequiredEvents = 1;
|
|
1790
|
-
var
|
|
1791
|
-
var ReflectApply =
|
|
1790
|
+
var R2 = typeof Reflect === "object" ? Reflect : null;
|
|
1791
|
+
var ReflectApply = R2 && typeof R2.apply === "function" ? R2.apply : function ReflectApply2(target, receiver, args) {
|
|
1792
1792
|
return Function.prototype.apply.call(target, receiver, args);
|
|
1793
1793
|
};
|
|
1794
1794
|
var ReflectOwnKeys;
|
|
1795
|
-
if (
|
|
1796
|
-
ReflectOwnKeys =
|
|
1795
|
+
if (R2 && typeof R2.ownKeys === "function") {
|
|
1796
|
+
ReflectOwnKeys = R2.ownKeys;
|
|
1797
1797
|
} else if (Object.getOwnPropertySymbols) {
|
|
1798
1798
|
ReflectOwnKeys = function ReflectOwnKeys2(target) {
|
|
1799
1799
|
return Object.getOwnPropertyNames(target).concat(Object.getOwnPropertySymbols(target));
|
|
@@ -2183,8 +2183,8 @@ function requireInherits_browser() {
|
|
|
2183
2183
|
}
|
|
2184
2184
|
return inherits_browser.exports;
|
|
2185
2185
|
}
|
|
2186
|
-
function getDefaultExportFromCjs$1(
|
|
2187
|
-
return
|
|
2186
|
+
function getDefaultExportFromCjs$1(x) {
|
|
2187
|
+
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x;
|
|
2188
2188
|
}
|
|
2189
2189
|
var browser$1 = { exports: {} };
|
|
2190
2190
|
var process$1 = browser$1.exports = {};
|
|
@@ -2765,17 +2765,17 @@ function requireDist() {
|
|
|
2765
2765
|
);
|
|
2766
2766
|
}
|
|
2767
2767
|
if (a === b2) return 0;
|
|
2768
|
-
let
|
|
2768
|
+
let x = a.length;
|
|
2769
2769
|
let y2 = b2.length;
|
|
2770
|
-
for (let i2 = 0, len2 = Math.min(
|
|
2770
|
+
for (let i2 = 0, len2 = Math.min(x, y2); i2 < len2; ++i2) {
|
|
2771
2771
|
if (a[i2] !== b2[i2]) {
|
|
2772
|
-
|
|
2772
|
+
x = a[i2];
|
|
2773
2773
|
y2 = b2[i2];
|
|
2774
2774
|
break;
|
|
2775
2775
|
}
|
|
2776
2776
|
}
|
|
2777
|
-
if (
|
|
2778
|
-
if (y2 <
|
|
2777
|
+
if (x < y2) return -1;
|
|
2778
|
+
if (y2 < x) return 1;
|
|
2779
2779
|
return 0;
|
|
2780
2780
|
};
|
|
2781
2781
|
Buffer4.isEncoding = function isEncoding(encoding) {
|
|
@@ -3024,20 +3024,20 @@ function requireDist() {
|
|
|
3024
3024
|
thisStart >>>= 0;
|
|
3025
3025
|
thisEnd >>>= 0;
|
|
3026
3026
|
if (this === target) return 0;
|
|
3027
|
-
let
|
|
3027
|
+
let x = thisEnd - thisStart;
|
|
3028
3028
|
let y2 = end2 - start2;
|
|
3029
|
-
const len2 = Math.min(
|
|
3029
|
+
const len2 = Math.min(x, y2);
|
|
3030
3030
|
const thisCopy = this.slice(thisStart, thisEnd);
|
|
3031
3031
|
const targetCopy = target.slice(start2, end2);
|
|
3032
3032
|
for (let i2 = 0; i2 < len2; ++i2) {
|
|
3033
3033
|
if (thisCopy[i2] !== targetCopy[i2]) {
|
|
3034
|
-
|
|
3034
|
+
x = thisCopy[i2];
|
|
3035
3035
|
y2 = targetCopy[i2];
|
|
3036
3036
|
break;
|
|
3037
3037
|
}
|
|
3038
3038
|
}
|
|
3039
|
-
if (
|
|
3040
|
-
if (y2 <
|
|
3039
|
+
if (x < y2) return -1;
|
|
3040
|
+
if (y2 < x) return 1;
|
|
3041
3041
|
return 0;
|
|
3042
3042
|
};
|
|
3043
3043
|
function bidirectionalIndexOf(buffer3, val, byteOffset, encoding, dir) {
|
|
@@ -4609,15 +4609,15 @@ function requireGetProto() {
|
|
|
4609
4609
|
var reflectGetProto = requireReflect_getPrototypeOf();
|
|
4610
4610
|
var originalGetProto = requireObject_getPrototypeOf();
|
|
4611
4611
|
var getDunderProto = /* @__PURE__ */ requireGet();
|
|
4612
|
-
getProto = reflectGetProto ? function getProto2(
|
|
4613
|
-
return reflectGetProto(
|
|
4614
|
-
} : originalGetProto ? function getProto2(
|
|
4615
|
-
if (!
|
|
4612
|
+
getProto = reflectGetProto ? function getProto2(O2) {
|
|
4613
|
+
return reflectGetProto(O2);
|
|
4614
|
+
} : originalGetProto ? function getProto2(O2) {
|
|
4615
|
+
if (!O2 || typeof O2 !== "object" && typeof O2 !== "function") {
|
|
4616
4616
|
throw new TypeError("getProto: not an object");
|
|
4617
4617
|
}
|
|
4618
|
-
return originalGetProto(
|
|
4619
|
-
} : getDunderProto ? function getProto2(
|
|
4620
|
-
return getDunderProto(
|
|
4618
|
+
return originalGetProto(O2);
|
|
4619
|
+
} : getDunderProto ? function getProto2(O2) {
|
|
4620
|
+
return getDunderProto(O2);
|
|
4621
4621
|
} : null;
|
|
4622
4622
|
return getProto;
|
|
4623
4623
|
}
|
|
@@ -5295,8 +5295,8 @@ function requireForEach() {
|
|
|
5295
5295
|
}
|
|
5296
5296
|
}
|
|
5297
5297
|
};
|
|
5298
|
-
function isArray2(
|
|
5299
|
-
return toStr.call(
|
|
5298
|
+
function isArray2(x) {
|
|
5299
|
+
return toStr.call(x) === "[object Array]";
|
|
5300
5300
|
}
|
|
5301
5301
|
forEach = function forEach22(list, iterator, thisArg) {
|
|
5302
5302
|
if (!isCallable2(iterator)) {
|
|
@@ -5905,10 +5905,10 @@ function requireUtil() {
|
|
|
5905
5905
|
var i = 1;
|
|
5906
5906
|
var args = arguments;
|
|
5907
5907
|
var len = args.length;
|
|
5908
|
-
var str = String(f2).replace(formatRegExp, function(
|
|
5909
|
-
if (
|
|
5910
|
-
if (i >= len) return
|
|
5911
|
-
switch (
|
|
5908
|
+
var str = String(f2).replace(formatRegExp, function(x2) {
|
|
5909
|
+
if (x2 === "%%") return "%";
|
|
5910
|
+
if (i >= len) return x2;
|
|
5911
|
+
switch (x2) {
|
|
5912
5912
|
case "%s":
|
|
5913
5913
|
return String(args[i++]);
|
|
5914
5914
|
case "%d":
|
|
@@ -5920,14 +5920,14 @@ function requireUtil() {
|
|
|
5920
5920
|
return "[Circular]";
|
|
5921
5921
|
}
|
|
5922
5922
|
default:
|
|
5923
|
-
return
|
|
5923
|
+
return x2;
|
|
5924
5924
|
}
|
|
5925
5925
|
});
|
|
5926
|
-
for (var
|
|
5927
|
-
if (isNull(
|
|
5928
|
-
str += " " +
|
|
5926
|
+
for (var x = args[i]; i < len; x = args[++i]) {
|
|
5927
|
+
if (isNull(x) || !isObject2(x)) {
|
|
5928
|
+
str += " " + x;
|
|
5929
5929
|
} else {
|
|
5930
|
-
str += " " + inspect(
|
|
5930
|
+
str += " " + inspect(x);
|
|
5931
5931
|
}
|
|
5932
5932
|
}
|
|
5933
5933
|
return str;
|
|
@@ -6140,7 +6140,7 @@ function requireUtil() {
|
|
|
6140
6140
|
}
|
|
6141
6141
|
function formatArray(ctx2, value, recurseTimes, visibleKeys, keys2) {
|
|
6142
6142
|
var output = [];
|
|
6143
|
-
for (var i = 0,
|
|
6143
|
+
for (var i = 0, l3 = value.length; i < l3; ++i) {
|
|
6144
6144
|
if (hasOwnProperty2(value, String(i))) {
|
|
6145
6145
|
output.push(formatProperty(
|
|
6146
6146
|
ctx2,
|
|
@@ -7239,8 +7239,8 @@ function require_stream_writable() {
|
|
|
7239
7239
|
state2.bufferProcessing = true;
|
|
7240
7240
|
var entry = state2.bufferedRequest;
|
|
7241
7241
|
if (stream._writev && entry && entry.next) {
|
|
7242
|
-
var
|
|
7243
|
-
var buffer2 = new Array(
|
|
7242
|
+
var l3 = state2.bufferedRequestCount;
|
|
7243
|
+
var buffer2 = new Array(l3);
|
|
7244
7244
|
var holder = state2.corkedRequestsFree;
|
|
7245
7245
|
holder.entry = entry;
|
|
7246
7246
|
var count = 0;
|
|
@@ -8790,9 +8790,9 @@ function require_stream_readable() {
|
|
|
8790
8790
|
return from2(Readable, iterable, opts);
|
|
8791
8791
|
};
|
|
8792
8792
|
}
|
|
8793
|
-
function indexOf(xs,
|
|
8794
|
-
for (var i = 0,
|
|
8795
|
-
if (xs[i] ===
|
|
8793
|
+
function indexOf(xs, x) {
|
|
8794
|
+
for (var i = 0, l3 = xs.length; i < l3; i++) {
|
|
8795
|
+
if (xs[i] === x) return i;
|
|
8796
8796
|
}
|
|
8797
8797
|
return -1;
|
|
8798
8798
|
}
|
|
@@ -9171,7 +9171,7 @@ function requireSax() {
|
|
|
9171
9171
|
function checkBufferLength(parser) {
|
|
9172
9172
|
var maxAllowed = Math.max(sax2.MAX_BUFFER_LENGTH, 10);
|
|
9173
9173
|
var maxActual = 0;
|
|
9174
|
-
for (var i = 0,
|
|
9174
|
+
for (var i = 0, l3 = buffers.length; i < l3; i++) {
|
|
9175
9175
|
var len = parser[buffers[i]].length;
|
|
9176
9176
|
if (len > maxAllowed) {
|
|
9177
9177
|
switch (buffers[i]) {
|
|
@@ -9196,7 +9196,7 @@ function requireSax() {
|
|
|
9196
9196
|
parser.bufferCheckPosition = m2 + parser.position;
|
|
9197
9197
|
}
|
|
9198
9198
|
function clearBuffers(parser) {
|
|
9199
|
-
for (var i = 0,
|
|
9199
|
+
for (var i = 0, l3 = buffers.length; i < l3; i++) {
|
|
9200
9200
|
parser[buffers[i]] = "";
|
|
9201
9201
|
}
|
|
9202
9202
|
}
|
|
@@ -9250,27 +9250,27 @@ function requireSax() {
|
|
|
9250
9250
|
this._parser = new SAXParser(strict, opt);
|
|
9251
9251
|
this.writable = true;
|
|
9252
9252
|
this.readable = true;
|
|
9253
|
-
var
|
|
9253
|
+
var me = this;
|
|
9254
9254
|
this._parser.onend = function() {
|
|
9255
|
-
|
|
9255
|
+
me.emit("end");
|
|
9256
9256
|
};
|
|
9257
9257
|
this._parser.onerror = function(er) {
|
|
9258
|
-
|
|
9259
|
-
|
|
9258
|
+
me.emit("error", er);
|
|
9259
|
+
me._parser.error = null;
|
|
9260
9260
|
};
|
|
9261
9261
|
this._decoder = null;
|
|
9262
9262
|
streamWraps.forEach(function(ev) {
|
|
9263
|
-
Object.defineProperty(
|
|
9263
|
+
Object.defineProperty(me, "on" + ev, {
|
|
9264
9264
|
get: function() {
|
|
9265
|
-
return
|
|
9265
|
+
return me._parser["on" + ev];
|
|
9266
9266
|
},
|
|
9267
9267
|
set: function(h2) {
|
|
9268
9268
|
if (!h2) {
|
|
9269
|
-
|
|
9270
|
-
|
|
9269
|
+
me.removeAllListeners(ev);
|
|
9270
|
+
me._parser["on" + ev] = h2;
|
|
9271
9271
|
return h2;
|
|
9272
9272
|
}
|
|
9273
|
-
|
|
9273
|
+
me.on(ev, h2);
|
|
9274
9274
|
},
|
|
9275
9275
|
enumerable: true,
|
|
9276
9276
|
configurable: false
|
|
@@ -9302,15 +9302,15 @@ function requireSax() {
|
|
|
9302
9302
|
return true;
|
|
9303
9303
|
};
|
|
9304
9304
|
SAXStream.prototype.on = function(ev, handler2) {
|
|
9305
|
-
var
|
|
9306
|
-
if (!
|
|
9307
|
-
|
|
9305
|
+
var me = this;
|
|
9306
|
+
if (!me._parser["on" + ev] && streamWraps.indexOf(ev) !== -1) {
|
|
9307
|
+
me._parser["on" + ev] = function() {
|
|
9308
9308
|
var args = arguments.length === 1 ? [arguments[0]] : Array.apply(null, arguments);
|
|
9309
9309
|
args.splice(0, 0, ev);
|
|
9310
|
-
|
|
9310
|
+
me.emit.apply(me, args);
|
|
9311
9311
|
};
|
|
9312
9312
|
}
|
|
9313
|
-
return Stream.prototype.on.call(
|
|
9313
|
+
return Stream.prototype.on.call(me, ev, handler2);
|
|
9314
9314
|
};
|
|
9315
9315
|
var CDATA = "[CDATA[";
|
|
9316
9316
|
var DOCTYPE = "DOCTYPE";
|
|
@@ -9816,7 +9816,7 @@ function requireSax() {
|
|
|
9816
9816
|
});
|
|
9817
9817
|
});
|
|
9818
9818
|
}
|
|
9819
|
-
for (var i = 0,
|
|
9819
|
+
for (var i = 0, l3 = parser.attribList.length; i < l3; i++) {
|
|
9820
9820
|
var nv = parser.attribList[i];
|
|
9821
9821
|
var name = nv[0];
|
|
9822
9822
|
var value = nv[1];
|
|
@@ -9902,9 +9902,9 @@ function requireSax() {
|
|
|
9902
9902
|
var tag = parser.tag = parser.tags.pop();
|
|
9903
9903
|
parser.tagName = parser.tag.name;
|
|
9904
9904
|
emitNode(parser, "onclosetag", parser.tagName);
|
|
9905
|
-
var
|
|
9905
|
+
var x = {};
|
|
9906
9906
|
for (var i in tag.ns) {
|
|
9907
|
-
|
|
9907
|
+
x[i] = tag.ns[i];
|
|
9908
9908
|
}
|
|
9909
9909
|
var parent = parser.tags[parser.tags.length - 1] || parser;
|
|
9910
9910
|
if (parser.opt.xmlns && tag.ns !== parent.ns) {
|
|
@@ -11384,8 +11384,8 @@ function v4(options, buf, offset2) {
|
|
|
11384
11384
|
rnds[8] = rnds[8] & 63 | 128;
|
|
11385
11385
|
return unsafeStringify(rnds);
|
|
11386
11386
|
}
|
|
11387
|
-
function getDefaultExportFromCjs(
|
|
11388
|
-
return
|
|
11387
|
+
function getDefaultExportFromCjs(x) {
|
|
11388
|
+
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x;
|
|
11389
11389
|
}
|
|
11390
11390
|
const CRC_TABLE = new Int32Array([
|
|
11391
11391
|
0,
|
|
@@ -15201,8 +15201,8 @@ function polygonToObj(polygonNode) {
|
|
|
15201
15201
|
const points = [];
|
|
15202
15202
|
polygonNode.elements.forEach((element) => {
|
|
15203
15203
|
if (["wp:start", "wp:lineTo"].includes(element.name)) {
|
|
15204
|
-
const { x
|
|
15205
|
-
points.push([polygonUnitsToPixels(
|
|
15204
|
+
const { x, y: y2 } = element.attributes;
|
|
15205
|
+
points.push([polygonUnitsToPixels(x), polygonUnitsToPixels(y2)]);
|
|
15206
15206
|
}
|
|
15207
15207
|
});
|
|
15208
15208
|
if (points.length > 1) {
|
|
@@ -15225,13 +15225,13 @@ function objToPolygon(points) {
|
|
|
15225
15225
|
elements: []
|
|
15226
15226
|
};
|
|
15227
15227
|
points.forEach((point, index2) => {
|
|
15228
|
-
const [
|
|
15228
|
+
const [x, y2] = point;
|
|
15229
15229
|
const tagName = index2 === 0 ? "wp:start" : "wp:lineTo";
|
|
15230
15230
|
const pointNode = {
|
|
15231
15231
|
name: tagName,
|
|
15232
15232
|
type: tagName,
|
|
15233
15233
|
attributes: {
|
|
15234
|
-
x: pixelsToPolygonUnits(
|
|
15234
|
+
x: pixelsToPolygonUnits(x),
|
|
15235
15235
|
y: pixelsToPolygonUnits(y2)
|
|
15236
15236
|
}
|
|
15237
15237
|
};
|
|
@@ -22858,7 +22858,7 @@ function posToDOMRect(view, from2, to) {
|
|
|
22858
22858
|
const right2 = Math.max(start2.right, end2.right);
|
|
22859
22859
|
const width = right2 - left2;
|
|
22860
22860
|
const height = bottom2 - top2;
|
|
22861
|
-
const
|
|
22861
|
+
const x = left2;
|
|
22862
22862
|
const y2 = top2;
|
|
22863
22863
|
const data = {
|
|
22864
22864
|
top: top2,
|
|
@@ -22867,7 +22867,7 @@ function posToDOMRect(view, from2, to) {
|
|
|
22867
22867
|
right: right2,
|
|
22868
22868
|
width,
|
|
22869
22869
|
height,
|
|
22870
|
-
x
|
|
22870
|
+
x,
|
|
22871
22871
|
y: y2
|
|
22872
22872
|
};
|
|
22873
22873
|
return {
|
|
@@ -22956,39 +22956,39 @@ function createDocFromHTML(content, schema, options = {}) {
|
|
|
22956
22956
|
function L() {
|
|
22957
22957
|
return { async: false, breaks: false, extensions: null, gfm: true, hooks: null, pedantic: false, renderer: null, silent: false, tokenizer: null, walkTokens: null };
|
|
22958
22958
|
}
|
|
22959
|
-
var
|
|
22960
|
-
function G(
|
|
22961
|
-
|
|
22959
|
+
var O = L();
|
|
22960
|
+
function G(l3) {
|
|
22961
|
+
O = l3;
|
|
22962
22962
|
}
|
|
22963
|
-
var
|
|
22964
|
-
function h(
|
|
22965
|
-
let t = typeof
|
|
22963
|
+
var E = { exec: () => null };
|
|
22964
|
+
function h(l3, e = "") {
|
|
22965
|
+
let t = typeof l3 == "string" ? l3 : l3.source, n = { replace: (r2, i) => {
|
|
22966
22966
|
let s2 = typeof i == "string" ? i : i.source;
|
|
22967
22967
|
return s2 = s2.replace(m.caret, "$1"), t = t.replace(r2, s2), n;
|
|
22968
22968
|
}, getRegex: () => new RegExp(t, e) };
|
|
22969
22969
|
return n;
|
|
22970
22970
|
}
|
|
22971
|
-
var m = { codeRemoveIndent: /^(?: {1,4}| {0,3}\t)/gm, outputLinkReplace: /\\([\[\]])/g, indentCodeCompensation: /^(\s+)(?:```)/, beginningSpace: /^\s+/, endingHash: /#$/, startingSpaceChar: /^ /, endingSpaceChar: / $/, nonSpaceChar: /[^ ]/, newLineCharGlobal: /\n/g, tabCharGlobal: /\t/g, multipleSpaceGlobal: /\s+/g, blankLine: /^[ \t]*$/, doubleBlankLine: /\n[ \t]*\n[ \t]*$/, blockquoteStart: /^ {0,3}>/, blockquoteSetextReplace: /\n {0,3}((?:=+|-+) *)(?=\n|$)/g, blockquoteSetextReplace2: /^ {0,3}>[ \t]?/gm, listReplaceTabs: /^\t+/, listReplaceNesting: /^ {1,4}(?=( {4})*[^ ])/g, listIsTask: /^\[[ xX]\] /, listReplaceTask: /^\[[ xX]\] +/, anyLine: /\n.*\n/, hrefBrackets: /^<(.*)>$/, tableDelimiter: /[:|]/, tableAlignChars: /^\||\| *$/g, tableRowBlankLine: /\n[ \t]*$/, tableAlignRight: /^ *-+: *$/, tableAlignCenter: /^ *:-+: *$/, tableAlignLeft: /^ *:-+ *$/, startATag: /^<a /i, endATag: /^<\/a>/i, startPreScriptTag: /^<(pre|code|kbd|script)(\s|>)/i, endPreScriptTag: /^<\/(pre|code|kbd|script)(\s|>)/i, startAngleBracket: /^</, endAngleBracket: />$/, pedanticHrefTitle: /^([^'"]*[^\s])\s+(['"])(.*)\2/, unicodeAlphaNumeric: /[\p{L}\p{N}]/u, escapeTest: /[&<>"']/, escapeReplace: /[&<>"']/g, escapeTestNoEncode: /[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/, escapeReplaceNoEncode: /[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/g, unescapeTest: /&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/ig, caret: /(^|[^\[])\^/g, percentDecode: /%25/g, findPipe: /\|/g, splitPipe: / \|/, slashPipe: /\\\|/g, carriageReturn: /\r\n|\r/g, spaceLine: /^ +$/gm, notSpaceStart: /^\S*/, endingNewline: /\n$/, listItemRegex: (
|
|
22972
|
-
]`).replace("lheading",
|
|
22973
|
-
var
|
|
22974
|
-
function w(
|
|
22971
|
+
var m = { codeRemoveIndent: /^(?: {1,4}| {0,3}\t)/gm, outputLinkReplace: /\\([\[\]])/g, indentCodeCompensation: /^(\s+)(?:```)/, beginningSpace: /^\s+/, endingHash: /#$/, startingSpaceChar: /^ /, endingSpaceChar: / $/, nonSpaceChar: /[^ ]/, newLineCharGlobal: /\n/g, tabCharGlobal: /\t/g, multipleSpaceGlobal: /\s+/g, blankLine: /^[ \t]*$/, doubleBlankLine: /\n[ \t]*\n[ \t]*$/, blockquoteStart: /^ {0,3}>/, blockquoteSetextReplace: /\n {0,3}((?:=+|-+) *)(?=\n|$)/g, blockquoteSetextReplace2: /^ {0,3}>[ \t]?/gm, listReplaceTabs: /^\t+/, listReplaceNesting: /^ {1,4}(?=( {4})*[^ ])/g, listIsTask: /^\[[ xX]\] /, listReplaceTask: /^\[[ xX]\] +/, anyLine: /\n.*\n/, hrefBrackets: /^<(.*)>$/, tableDelimiter: /[:|]/, tableAlignChars: /^\||\| *$/g, tableRowBlankLine: /\n[ \t]*$/, tableAlignRight: /^ *-+: *$/, tableAlignCenter: /^ *:-+: *$/, tableAlignLeft: /^ *:-+ *$/, startATag: /^<a /i, endATag: /^<\/a>/i, startPreScriptTag: /^<(pre|code|kbd|script)(\s|>)/i, endPreScriptTag: /^<\/(pre|code|kbd|script)(\s|>)/i, startAngleBracket: /^</, endAngleBracket: />$/, pedanticHrefTitle: /^([^'"]*[^\s])\s+(['"])(.*)\2/, unicodeAlphaNumeric: /[\p{L}\p{N}]/u, escapeTest: /[&<>"']/, escapeReplace: /[&<>"']/g, escapeTestNoEncode: /[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/, escapeReplaceNoEncode: /[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/g, unescapeTest: /&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/ig, caret: /(^|[^\[])\^/g, percentDecode: /%25/g, findPipe: /\|/g, splitPipe: / \|/, slashPipe: /\\\|/g, carriageReturn: /\r\n|\r/g, spaceLine: /^ +$/gm, notSpaceStart: /^\S*/, endingNewline: /\n$/, listItemRegex: (l3) => new RegExp(`^( {0,3}${l3})((?:[ ][^\\n]*)?(?:\\n|$))`), nextBulletRegex: (l3) => new RegExp(`^ {0,${Math.min(3, l3 - 1)}}(?:[*+-]|\\d{1,9}[.)])((?:[ ][^\\n]*)?(?:\\n|$))`), hrRegex: (l3) => new RegExp(`^ {0,${Math.min(3, l3 - 1)}}((?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$)`), fencesBeginRegex: (l3) => new RegExp(`^ {0,${Math.min(3, l3 - 1)}}(?:\`\`\`|~~~)`), headingBeginRegex: (l3) => new RegExp(`^ {0,${Math.min(3, l3 - 1)}}#`), htmlBeginRegex: (l3) => new RegExp(`^ {0,${Math.min(3, l3 - 1)}}<(?:[a-z].*>|!--)`, "i") }, xe = /^(?:[ \t]*(?:\n|$))+/, be = /^((?: {4}| {0,3}\t)[^\n]+(?:\n(?:[ \t]*(?:\n|$))*)?)+/, Re = /^ {0,3}(`{3,}(?=[^`\n]*(?:\n|$))|~{3,})([^\n]*)(?:\n|$)(?:|([\s\S]*?)(?:\n|$))(?: {0,3}\1[~`]* *(?=\n|$)|$)/, C = /^ {0,3}((?:-[\t ]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})(?:\n+|$)/, Oe = /^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/, j = /(?:[*+-]|\d{1,9}[.)])/, se = /^(?!bull |blockCode|fences|blockquote|heading|html|table)((?:.|\n(?!\s*?\n|bull |blockCode|fences|blockquote|heading|html|table))+?)\n {0,3}(=+|-+) *(?:\n+|$)/, ie$2 = h(se).replace(/bull/g, j).replace(/blockCode/g, /(?: {4}| {0,3}\t)/).replace(/fences/g, / {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g, / {0,3}>/).replace(/heading/g, / {0,3}#{1,6}/).replace(/html/g, / {0,3}<[^\n>]+>\n/).replace(/\|table/g, "").getRegex(), Te = h(se).replace(/bull/g, j).replace(/blockCode/g, /(?: {4}| {0,3}\t)/).replace(/fences/g, / {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g, / {0,3}>/).replace(/heading/g, / {0,3}#{1,6}/).replace(/html/g, / {0,3}<[^\n>]+>\n/).replace(/table/g, / {0,3}\|?(?:[:\- ]*\|)+[\:\- ]*\n/).getRegex(), F = /^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html|table| +\n)[^\n]+)*)/, we = /^[^\n]+/, Q = /(?!\s*\])(?:\\[\s\S]|[^\[\]\\])+/, ye = h(/^ {0,3}\[(label)\]: *(?:\n[ \t]*)?([^<\s][^\s]*|<.*?>)(?:(?: +(?:\n[ \t]*)?| *\n[ \t]*)(title))? *(?:\n+|$)/).replace("label", Q).replace("title", /(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/).getRegex(), Pe = h(/^( {0,3}bull)([ \t][^\n]+?)?(?:\n|$)/).replace(/bull/g, j).getRegex(), v = "address|article|aside|base|basefont|blockquote|body|caption|center|col|colgroup|dd|details|dialog|dir|div|dl|dt|fieldset|figcaption|figure|footer|form|frame|frameset|h[1-6]|head|header|hr|html|iframe|legend|li|link|main|menu|menuitem|meta|nav|noframes|ol|optgroup|option|p|param|search|section|summary|table|tbody|td|tfoot|th|thead|title|tr|track|ul", U = /<!--(?:-?>|[\s\S]*?(?:-->|$))/, Se = h("^ {0,3}(?:<(script|pre|style|textarea)[\\s>][\\s\\S]*?(?:</\\1>[^\\n]*\\n+|$)|comment[^\\n]*(\\n+|$)|<\\?[\\s\\S]*?(?:\\?>\\n*|$)|<![A-Z][\\s\\S]*?(?:>\\n*|$)|<!\\[CDATA\\[[\\s\\S]*?(?:\\]\\]>\\n*|$)|</?(tag)(?: +|\\n|/?>)[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|<(?!script|pre|style|textarea)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|</(?!script|pre|style|textarea)[a-z][\\w-]*\\s*>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$))", "i").replace("comment", U).replace("tag", v).replace("attribute", / +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex(), oe = h(F).replace("hr", C).replace("heading", " {0,3}#{1,6}(?:\\s|$)").replace("|lheading", "").replace("|table", "").replace("blockquote", " {0,3}>").replace("fences", " {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list", " {0,3}(?:[*+-]|1[.)]) ").replace("html", "</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag", v).getRegex(), $e = h(/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/).replace("paragraph", oe).getRegex(), K$1 = { blockquote: $e, code: be, def: ye, fences: Re, heading: Oe, hr: C, html: Se, lheading: ie$2, list: Pe, newline: xe, paragraph: oe, table: E, text: we }, re = h("^ *([^\\n ].*)\\n {0,3}((?:\\| *)?:?-+:? *(?:\\| *:?-+:? *)*(?:\\| *)?)(?:\\n((?:(?! *\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)").replace("hr", C).replace("heading", " {0,3}#{1,6}(?:\\s|$)").replace("blockquote", " {0,3}>").replace("code", "(?: {4}| {0,3} )[^\\n]").replace("fences", " {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list", " {0,3}(?:[*+-]|1[.)]) ").replace("html", "</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag", v).getRegex(), _e = { ...K$1, lheading: Te, table: re, paragraph: h(F).replace("hr", C).replace("heading", " {0,3}#{1,6}(?:\\s|$)").replace("|lheading", "").replace("table", re).replace("blockquote", " {0,3}>").replace("fences", " {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list", " {0,3}(?:[*+-]|1[.)]) ").replace("html", "</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag", v).getRegex() }, Le = { ...K$1, html: h(`^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+?</\\1> *(?:\\n{2,}|\\s*$)|<tag(?:"[^"]*"|'[^']*'|\\s[^'"/>\\s]*)*?/?> *(?:\\n{2,}|\\s*$))`).replace("comment", U).replace(/tag/g, "(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\b)\\w+(?!:|[^\\w\\s@]*@)\\b").getRegex(), def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/, heading: /^(#{1,6})(.*)(?:\n+|$)/, fences: E, lheading: /^(.+?)\n {0,3}(=+|-+) *(?:\n+|$)/, paragraph: h(F).replace("hr", C).replace("heading", ` *#{1,6} *[^
|
|
22972
|
+
]`).replace("lheading", ie$2).replace("|table", "").replace("blockquote", " {0,3}>").replace("|fences", "").replace("|list", "").replace("|html", "").replace("|tag", "").getRegex() }, Me = /^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/, ze = /^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/, ae = /^( {2,}|\\)\n(?!\s*$)/, Ae = /^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\<!\[`*_]|\b_|$)|[^ ](?= {2,}\n)))/, D = /[\p{P}\p{S}]/u, W = /[\s\p{P}\p{S}]/u, le = /[^\s\p{P}\p{S}]/u, Ee = h(/^((?![*_])punctSpace)/, "u").replace(/punctSpace/g, W).getRegex(), ue = /(?!~)[\p{P}\p{S}]/u, Ce = /(?!~)[\s\p{P}\p{S}]/u, Ie = /(?:[^\s\p{P}\p{S}]|~)/u, Be = /\[[^\[\]]*?\]\((?:\\[\s\S]|[^\\\(\)]|\((?:\\[\s\S]|[^\\\(\)])*\))*\)|`[^`]*?`|<(?! )[^<>]*?>/g, pe = /^(?:\*+(?:((?!\*)punct)|[^\s*]))|^_+(?:((?!_)punct)|([^\s_]))/, qe = h(pe, "u").replace(/punct/g, D).getRegex(), ve = h(pe, "u").replace(/punct/g, ue).getRegex(), ce = "^[^_*]*?__[^_*]*?\\*[^_*]*?(?=__)|[^*]+(?=[^*])|(?!\\*)punct(\\*+)(?=[\\s]|$)|notPunctSpace(\\*+)(?!\\*)(?=punctSpace|$)|(?!\\*)punctSpace(\\*+)(?=notPunctSpace)|[\\s](\\*+)(?!\\*)(?=punct)|(?!\\*)punct(\\*+)(?!\\*)(?=punct)|notPunctSpace(\\*+)(?=notPunctSpace)", De = h(ce, "gu").replace(/notPunctSpace/g, le).replace(/punctSpace/g, W).replace(/punct/g, D).getRegex(), He = h(ce, "gu").replace(/notPunctSpace/g, Ie).replace(/punctSpace/g, Ce).replace(/punct/g, ue).getRegex(), Ze = h("^[^_*]*?\\*\\*[^_*]*?_[^_*]*?(?=\\*\\*)|[^_]+(?=[^_])|(?!_)punct(_+)(?=[\\s]|$)|notPunctSpace(_+)(?!_)(?=punctSpace|$)|(?!_)punctSpace(_+)(?=notPunctSpace)|[\\s](_+)(?!_)(?=punct)|(?!_)punct(_+)(?!_)(?=punct)", "gu").replace(/notPunctSpace/g, le).replace(/punctSpace/g, W).replace(/punct/g, D).getRegex(), Ge = h(/\\(punct)/, "gu").replace(/punct/g, D).getRegex(), Ne = h(/^<(scheme:[^\s\x00-\x1f<>]*|email)>/).replace("scheme", /[a-zA-Z][a-zA-Z0-9+.-]{1,31}/).replace("email", /[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+(@)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(?![-_])/).getRegex(), je = h(U).replace("(?:-->|$)", "-->").getRegex(), Fe = h("^comment|^</[a-zA-Z][\\w:-]*\\s*>|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>|^<\\?[\\s\\S]*?\\?>|^<![a-zA-Z]+\\s[\\s\\S]*?>|^<!\\[CDATA\\[[\\s\\S]*?\\]\\]>").replace("comment", je).replace("attribute", /\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/).getRegex(), q = /(?:\[(?:\\[\s\S]|[^\[\]\\])*\]|\\[\s\S]|`[^`]*`|[^\[\]\\`])*?/, Qe = h(/^!?\[(label)\]\(\s*(href)(?:(?:[ \t]*(?:\n[ \t]*)?)(title))?\s*\)/).replace("label", q).replace("href", /<(?:\\.|[^\n<>\\])+>|[^ \t\n\x00-\x1f]*/).replace("title", /"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/).getRegex(), he$3 = h(/^!?\[(label)\]\[(ref)\]/).replace("label", q).replace("ref", Q).getRegex(), de = h(/^!?\[(ref)\](?:\[\])?/).replace("ref", Q).getRegex(), Ue = h("reflink|nolink(?!\\()", "g").replace("reflink", he$3).replace("nolink", de).getRegex(), X = { _backpedal: E, anyPunctuation: Ge, autolink: Ne, blockSkip: Be, br: ae, code: ze, del: E, emStrongLDelim: qe, emStrongRDelimAst: De, emStrongRDelimUnd: Ze, escape: Me, link: Qe, nolink: de, punctuation: Ee, reflink: he$3, reflinkSearch: Ue, tag: Fe, text: Ae, url: E }, Ke = { ...X, link: h(/^!?\[(label)\]\((.*?)\)/).replace("label", q).getRegex(), reflink: h(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label", q).getRegex() }, N = { ...X, emStrongRDelimAst: He, emStrongLDelim: ve, url: h(/^((?:ftp|https?):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/, "i").replace("email", /[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/).getRegex(), _backpedal: /(?:[^?!.,:;*_'"~()&]+|\([^)]*\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_'"~)]+(?!$))+/, del: /^(~~?)(?=[^\s~])((?:\\[\s\S]|[^\\])*?(?:\\[\s\S]|[^\s~\\]))\1(?=[^~]|$)/, text: /^([`~]+|[^`~])(?:(?= {2,}\n)|(?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)|[\s\S]*?(?:(?=[\\<!\[`*~_]|\b_|https?:\/\/|ftp:\/\/|www\.|$)|[^ ](?= {2,}\n)|[^a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-](?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)))/ }, We = { ...N, br: h(ae).replace("{2,}", "*").getRegex(), text: h(N.text).replace("\\b_", "\\b_| {2,}\\n").replace(/\{2,\}/g, "*").getRegex() }, I = { normal: K$1, gfm: _e, pedantic: Le }, M$1 = { normal: X, gfm: N, breaks: We, pedantic: Ke };
|
|
22973
|
+
var Xe = { "&": "&", "<": "<", ">": ">", '"': """, "'": "'" }, ke = (l3) => Xe[l3];
|
|
22974
|
+
function w(l3, e) {
|
|
22975
22975
|
if (e) {
|
|
22976
|
-
if (m.escapeTest.test(
|
|
22977
|
-
} else if (m.escapeTestNoEncode.test(
|
|
22978
|
-
return
|
|
22976
|
+
if (m.escapeTest.test(l3)) return l3.replace(m.escapeReplace, ke);
|
|
22977
|
+
} else if (m.escapeTestNoEncode.test(l3)) return l3.replace(m.escapeReplaceNoEncode, ke);
|
|
22978
|
+
return l3;
|
|
22979
22979
|
}
|
|
22980
|
-
function J(
|
|
22980
|
+
function J(l3) {
|
|
22981
22981
|
try {
|
|
22982
|
-
|
|
22982
|
+
l3 = encodeURI(l3).replace(m.percentDecode, "%");
|
|
22983
22983
|
} catch {
|
|
22984
22984
|
return null;
|
|
22985
22985
|
}
|
|
22986
|
-
return
|
|
22986
|
+
return l3;
|
|
22987
22987
|
}
|
|
22988
|
-
function V(
|
|
22989
|
-
let t =
|
|
22990
|
-
let a = false,
|
|
22991
|
-
for (; --
|
|
22988
|
+
function V(l3, e) {
|
|
22989
|
+
let t = l3.replace(m.findPipe, (i, s2, o) => {
|
|
22990
|
+
let a = false, u = s2;
|
|
22991
|
+
for (; --u >= 0 && o[u] === "\\"; ) a = !a;
|
|
22992
22992
|
return a ? "|" : " |";
|
|
22993
22993
|
}), n = t.split(m.splitPipe), r2 = 0;
|
|
22994
22994
|
if (n[0].trim() || n.shift(), n.length > 0 && !n.at(-1)?.trim() && n.pop(), e) if (n.length > e) n.splice(e);
|
|
@@ -22996,33 +22996,33 @@ function V(u3, e) {
|
|
|
22996
22996
|
for (; r2 < n.length; r2++) n[r2] = n[r2].trim().replace(m.slashPipe, "|");
|
|
22997
22997
|
return n;
|
|
22998
22998
|
}
|
|
22999
|
-
function z(
|
|
23000
|
-
let n =
|
|
22999
|
+
function z(l3, e, t) {
|
|
23000
|
+
let n = l3.length;
|
|
23001
23001
|
if (n === 0) return "";
|
|
23002
23002
|
let r2 = 0;
|
|
23003
23003
|
for (; r2 < n; ) {
|
|
23004
|
-
let i =
|
|
23004
|
+
let i = l3.charAt(n - r2 - 1);
|
|
23005
23005
|
if (i === e && true) r2++;
|
|
23006
23006
|
else break;
|
|
23007
23007
|
}
|
|
23008
|
-
return
|
|
23008
|
+
return l3.slice(0, n - r2);
|
|
23009
23009
|
}
|
|
23010
|
-
function
|
|
23011
|
-
if (
|
|
23010
|
+
function ge(l3, e) {
|
|
23011
|
+
if (l3.indexOf(e[1]) === -1) return -1;
|
|
23012
23012
|
let t = 0;
|
|
23013
|
-
for (let n = 0; n <
|
|
23014
|
-
else if (
|
|
23015
|
-
else if (
|
|
23013
|
+
for (let n = 0; n < l3.length; n++) if (l3[n] === "\\") n++;
|
|
23014
|
+
else if (l3[n] === e[0]) t++;
|
|
23015
|
+
else if (l3[n] === e[1] && (t--, t < 0)) return n;
|
|
23016
23016
|
return t > 0 ? -2 : -1;
|
|
23017
23017
|
}
|
|
23018
|
-
function
|
|
23019
|
-
let i = e.href, s2 = e.title || null, o =
|
|
23018
|
+
function fe(l3, e, t, n, r2) {
|
|
23019
|
+
let i = e.href, s2 = e.title || null, o = l3[1].replace(r2.other.outputLinkReplace, "$1");
|
|
23020
23020
|
n.state.inLink = true;
|
|
23021
|
-
let a = { type:
|
|
23021
|
+
let a = { type: l3[0].charAt(0) === "!" ? "image" : "link", raw: t, href: i, title: s2, text: o, tokens: n.inlineTokens(o) };
|
|
23022
23022
|
return n.state.inLink = false, a;
|
|
23023
23023
|
}
|
|
23024
|
-
function
|
|
23025
|
-
let n =
|
|
23024
|
+
function Je(l3, e, t) {
|
|
23025
|
+
let n = l3.match(t.other.indentCodeCompensation);
|
|
23026
23026
|
if (n === null) return e;
|
|
23027
23027
|
let r2 = n[1];
|
|
23028
23028
|
return e.split(`
|
|
@@ -23039,7 +23039,7 @@ var y = class {
|
|
|
23039
23039
|
__publicField$2(this, "options");
|
|
23040
23040
|
__publicField$2(this, "rules");
|
|
23041
23041
|
__publicField$2(this, "lexer");
|
|
23042
|
-
this.options = e ||
|
|
23042
|
+
this.options = e || O;
|
|
23043
23043
|
}
|
|
23044
23044
|
space(e) {
|
|
23045
23045
|
let t = this.rules.block.newline.exec(e);
|
|
@@ -23056,7 +23056,7 @@ var y = class {
|
|
|
23056
23056
|
fences(e) {
|
|
23057
23057
|
let t = this.rules.block.fences.exec(e);
|
|
23058
23058
|
if (t) {
|
|
23059
|
-
let n = t[0], r2 =
|
|
23059
|
+
let n = t[0], r2 = Je(n, t[3] || "", this.rules);
|
|
23060
23060
|
return { type: "code", raw: n, lang: t[2] ? t[2].trim().replace(this.rules.inline.anyPunctuation, "$1") : t[2], text: r2 };
|
|
23061
23061
|
}
|
|
23062
23062
|
}
|
|
@@ -23083,32 +23083,32 @@ var y = class {
|
|
|
23083
23083
|
`).split(`
|
|
23084
23084
|
`), r2 = "", i = "", s2 = [];
|
|
23085
23085
|
for (; n.length > 0; ) {
|
|
23086
|
-
let o = false, a = [],
|
|
23087
|
-
for (
|
|
23088
|
-
else if (!o) a.push(n[
|
|
23086
|
+
let o = false, a = [], u;
|
|
23087
|
+
for (u = 0; u < n.length; u++) if (this.rules.other.blockquoteStart.test(n[u])) a.push(n[u]), o = true;
|
|
23088
|
+
else if (!o) a.push(n[u]);
|
|
23089
23089
|
else break;
|
|
23090
|
-
n = n.slice(
|
|
23091
|
-
let
|
|
23092
|
-
`),
|
|
23090
|
+
n = n.slice(u);
|
|
23091
|
+
let p = a.join(`
|
|
23092
|
+
`), c2 = p.replace(this.rules.other.blockquoteSetextReplace, `
|
|
23093
23093
|
$1`).replace(this.rules.other.blockquoteSetextReplace2, "");
|
|
23094
23094
|
r2 = r2 ? `${r2}
|
|
23095
|
-
${
|
|
23096
|
-
${
|
|
23097
|
-
let
|
|
23098
|
-
if (this.lexer.state.top = true, this.lexer.blockTokens(
|
|
23099
|
-
let
|
|
23100
|
-
if (
|
|
23101
|
-
if (
|
|
23102
|
-
let
|
|
23095
|
+
${p}` : p, i = i ? `${i}
|
|
23096
|
+
${c2}` : c2;
|
|
23097
|
+
let f2 = this.lexer.state.top;
|
|
23098
|
+
if (this.lexer.state.top = true, this.lexer.blockTokens(c2, s2, true), this.lexer.state.top = f2, n.length === 0) break;
|
|
23099
|
+
let k2 = s2.at(-1);
|
|
23100
|
+
if (k2?.type === "code") break;
|
|
23101
|
+
if (k2?.type === "blockquote") {
|
|
23102
|
+
let x = k2, g = x.raw + `
|
|
23103
23103
|
` + n.join(`
|
|
23104
|
-
`),
|
|
23105
|
-
s2[s2.length - 1] =
|
|
23104
|
+
`), T = this.blockquote(g);
|
|
23105
|
+
s2[s2.length - 1] = T, r2 = r2.substring(0, r2.length - x.raw.length) + T.raw, i = i.substring(0, i.length - x.text.length) + T.text;
|
|
23106
23106
|
break;
|
|
23107
|
-
} else if (
|
|
23108
|
-
let
|
|
23107
|
+
} else if (k2?.type === "list") {
|
|
23108
|
+
let x = k2, g = x.raw + `
|
|
23109
23109
|
` + n.join(`
|
|
23110
|
-
`),
|
|
23111
|
-
s2[s2.length - 1] =
|
|
23110
|
+
`), T = this.list(g);
|
|
23111
|
+
s2[s2.length - 1] = T, r2 = r2.substring(0, r2.length - k2.raw.length) + T.raw, i = i.substring(0, i.length - x.raw.length) + T.raw, n = g.substring(s2.at(-1).raw.length).split(`
|
|
23112
23112
|
`);
|
|
23113
23113
|
continue;
|
|
23114
23114
|
}
|
|
@@ -23123,43 +23123,43 @@ ${p}` : p;
|
|
|
23123
23123
|
n = r2 ? `\\d{1,9}\\${n.slice(-1)}` : `\\${n}`, this.options.pedantic && (n = r2 ? n : "[*+-]");
|
|
23124
23124
|
let s2 = this.rules.other.listItemRegex(n), o = false;
|
|
23125
23125
|
for (; e; ) {
|
|
23126
|
-
let
|
|
23126
|
+
let u = false, p = "", c2 = "";
|
|
23127
23127
|
if (!(t = s2.exec(e)) || this.rules.block.hr.test(e)) break;
|
|
23128
|
-
|
|
23129
|
-
let
|
|
23130
|
-
`, 1)[0].replace(this.rules.other.listReplaceTabs, (H) => " ".repeat(3 * H.length)),
|
|
23131
|
-
`, 1)[0],
|
|
23132
|
-
if (this.options.pedantic ? (
|
|
23133
|
-
`, e = e.substring(
|
|
23134
|
-
let H = this.rules.other.nextBulletRegex(
|
|
23128
|
+
p = t[0], e = e.substring(p.length);
|
|
23129
|
+
let f2 = t[2].split(`
|
|
23130
|
+
`, 1)[0].replace(this.rules.other.listReplaceTabs, (H) => " ".repeat(3 * H.length)), k2 = e.split(`
|
|
23131
|
+
`, 1)[0], x = !f2.trim(), g = 0;
|
|
23132
|
+
if (this.options.pedantic ? (g = 2, c2 = f2.trimStart()) : x ? g = t[1].length + 1 : (g = t[2].search(this.rules.other.nonSpaceChar), g = g > 4 ? 1 : g, c2 = f2.slice(g), g += t[1].length), x && this.rules.other.blankLine.test(k2) && (p += k2 + `
|
|
23133
|
+
`, e = e.substring(k2.length + 1), u = true), !u) {
|
|
23134
|
+
let H = this.rules.other.nextBulletRegex(g), ee = this.rules.other.hrRegex(g), te = this.rules.other.fencesBeginRegex(g), ne = this.rules.other.headingBeginRegex(g), me = this.rules.other.htmlBeginRegex(g);
|
|
23135
23135
|
for (; e; ) {
|
|
23136
23136
|
let Z = e.split(`
|
|
23137
23137
|
`, 1)[0], A2;
|
|
23138
|
-
if (
|
|
23139
|
-
if (A2.search(this.rules.other.nonSpaceChar) >=
|
|
23140
|
-
` + A2.slice(
|
|
23138
|
+
if (k2 = Z, this.options.pedantic ? (k2 = k2.replace(this.rules.other.listReplaceNesting, " "), A2 = k2) : A2 = k2.replace(this.rules.other.tabCharGlobal, " "), te.test(k2) || ne.test(k2) || me.test(k2) || H.test(k2) || ee.test(k2)) break;
|
|
23139
|
+
if (A2.search(this.rules.other.nonSpaceChar) >= g || !k2.trim()) c2 += `
|
|
23140
|
+
` + A2.slice(g);
|
|
23141
23141
|
else {
|
|
23142
|
-
if (
|
|
23143
|
-
|
|
23144
|
-
` +
|
|
23142
|
+
if (x || f2.replace(this.rules.other.tabCharGlobal, " ").search(this.rules.other.nonSpaceChar) >= 4 || te.test(f2) || ne.test(f2) || ee.test(f2)) break;
|
|
23143
|
+
c2 += `
|
|
23144
|
+
` + k2;
|
|
23145
23145
|
}
|
|
23146
|
-
!
|
|
23147
|
-
`, e = e.substring(Z.length + 1),
|
|
23146
|
+
!x && !k2.trim() && (x = true), p += Z + `
|
|
23147
|
+
`, e = e.substring(Z.length + 1), f2 = A2.slice(g);
|
|
23148
23148
|
}
|
|
23149
23149
|
}
|
|
23150
|
-
i.loose || (o ? i.loose = true : this.rules.other.doubleBlankLine.test(
|
|
23151
|
-
let
|
|
23152
|
-
this.options.gfm && (
|
|
23150
|
+
i.loose || (o ? i.loose = true : this.rules.other.doubleBlankLine.test(p) && (o = true));
|
|
23151
|
+
let T = null, Y2;
|
|
23152
|
+
this.options.gfm && (T = this.rules.other.listIsTask.exec(c2), T && (Y2 = T[0] !== "[ ] ", c2 = c2.replace(this.rules.other.listReplaceTask, ""))), i.items.push({ type: "list_item", raw: p, task: !!T, checked: Y2, loose: false, text: c2, tokens: [] }), i.raw += p;
|
|
23153
23153
|
}
|
|
23154
23154
|
let a = i.items.at(-1);
|
|
23155
23155
|
if (a) a.raw = a.raw.trimEnd(), a.text = a.text.trimEnd();
|
|
23156
23156
|
else return;
|
|
23157
23157
|
i.raw = i.raw.trimEnd();
|
|
23158
|
-
for (let
|
|
23159
|
-
let
|
|
23160
|
-
i.loose =
|
|
23158
|
+
for (let u = 0; u < i.items.length; u++) if (this.lexer.state.top = false, i.items[u].tokens = this.lexer.blockTokens(i.items[u].text, []), !i.loose) {
|
|
23159
|
+
let p = i.items[u].tokens.filter((f2) => f2.type === "space"), c2 = p.length > 0 && p.some((f2) => this.rules.other.anyLine.test(f2.raw));
|
|
23160
|
+
i.loose = c2;
|
|
23161
23161
|
}
|
|
23162
|
-
if (i.loose) for (let
|
|
23162
|
+
if (i.loose) for (let u = 0; u < i.items.length; u++) i.items[u].loose = true;
|
|
23163
23163
|
return i;
|
|
23164
23164
|
}
|
|
23165
23165
|
}
|
|
@@ -23182,7 +23182,7 @@ ${p}` : p;
|
|
|
23182
23182
|
if (n.length === r2.length) {
|
|
23183
23183
|
for (let o of r2) this.rules.other.tableAlignRight.test(o) ? s2.align.push("right") : this.rules.other.tableAlignCenter.test(o) ? s2.align.push("center") : this.rules.other.tableAlignLeft.test(o) ? s2.align.push("left") : s2.align.push(null);
|
|
23184
23184
|
for (let o = 0; o < n.length; o++) s2.header.push({ text: n[o], tokens: this.lexer.inline(n[o]), header: true, align: s2.align[o] });
|
|
23185
|
-
for (let o of i) s2.rows.push(V(o, s2.header.length).map((a,
|
|
23185
|
+
for (let o of i) s2.rows.push(V(o, s2.header.length).map((a, u) => ({ text: a, tokens: this.lexer.inline(a), header: false, align: s2.align[u] })));
|
|
23186
23186
|
return s2;
|
|
23187
23187
|
}
|
|
23188
23188
|
}
|
|
@@ -23219,7 +23219,7 @@ ${p}` : p;
|
|
|
23219
23219
|
let s2 = z(n.slice(0, -1), "\\");
|
|
23220
23220
|
if ((n.length - s2.length) % 2 === 0) return;
|
|
23221
23221
|
} else {
|
|
23222
|
-
let s2 =
|
|
23222
|
+
let s2 = ge(t[2], "()");
|
|
23223
23223
|
if (s2 === -2) return;
|
|
23224
23224
|
if (s2 > -1) {
|
|
23225
23225
|
let a = (t[0].indexOf("!") === 0 ? 5 : 4) + t[1].length + s2;
|
|
@@ -23231,7 +23231,7 @@ ${p}` : p;
|
|
|
23231
23231
|
let s2 = this.rules.other.pedanticHrefTitle.exec(r2);
|
|
23232
23232
|
s2 && (r2 = s2[1], i = s2[3]);
|
|
23233
23233
|
} else i = t[3] ? t[3].slice(1, -1) : "";
|
|
23234
|
-
return r2 = r2.trim(), this.rules.other.startAngleBracket.test(r2) && (this.options.pedantic && !this.rules.other.endAngleBracket.test(n) ? r2 = r2.slice(1) : r2 = r2.slice(1, -1)),
|
|
23234
|
+
return r2 = r2.trim(), this.rules.other.startAngleBracket.test(r2) && (this.options.pedantic && !this.rules.other.endAngleBracket.test(n) ? r2 = r2.slice(1) : r2 = r2.slice(1, -1)), fe(t, { href: r2 && r2.replace(this.rules.inline.anyPunctuation, "$1"), title: i && i.replace(this.rules.inline.anyPunctuation, "$1") }, t[0], this.lexer, this.rules);
|
|
23235
23235
|
}
|
|
23236
23236
|
}
|
|
23237
23237
|
reflink(e, t) {
|
|
@@ -23242,32 +23242,32 @@ ${p}` : p;
|
|
|
23242
23242
|
let s2 = n[0].charAt(0);
|
|
23243
23243
|
return { type: "text", raw: s2, text: s2 };
|
|
23244
23244
|
}
|
|
23245
|
-
return
|
|
23245
|
+
return fe(n, i, n[0], this.lexer, this.rules);
|
|
23246
23246
|
}
|
|
23247
23247
|
}
|
|
23248
23248
|
emStrong(e, t, n = "") {
|
|
23249
23249
|
let r2 = this.rules.inline.emStrongLDelim.exec(e);
|
|
23250
23250
|
if (!r2 || r2[3] && n.match(this.rules.other.unicodeAlphaNumeric)) return;
|
|
23251
23251
|
if (!(r2[1] || r2[2] || "") || !n || this.rules.inline.punctuation.exec(n)) {
|
|
23252
|
-
let s2 = [...r2[0]].length - 1, o, a,
|
|
23253
|
-
for (
|
|
23252
|
+
let s2 = [...r2[0]].length - 1, o, a, u = s2, p = 0, c2 = r2[0][0] === "*" ? this.rules.inline.emStrongRDelimAst : this.rules.inline.emStrongRDelimUnd;
|
|
23253
|
+
for (c2.lastIndex = 0, t = t.slice(-1 * e.length + s2); (r2 = c2.exec(t)) != null; ) {
|
|
23254
23254
|
if (o = r2[1] || r2[2] || r2[3] || r2[4] || r2[5] || r2[6], !o) continue;
|
|
23255
23255
|
if (a = [...o].length, r2[3] || r2[4]) {
|
|
23256
|
-
|
|
23256
|
+
u += a;
|
|
23257
23257
|
continue;
|
|
23258
23258
|
} else if ((r2[5] || r2[6]) && s2 % 3 && !((s2 + a) % 3)) {
|
|
23259
|
-
|
|
23259
|
+
p += a;
|
|
23260
23260
|
continue;
|
|
23261
23261
|
}
|
|
23262
|
-
if (
|
|
23263
|
-
a = Math.min(a, a +
|
|
23264
|
-
let
|
|
23262
|
+
if (u -= a, u > 0) continue;
|
|
23263
|
+
a = Math.min(a, a + u + p);
|
|
23264
|
+
let f2 = [...r2[0]][0].length, k2 = e.slice(0, s2 + r2.index + f2 + a);
|
|
23265
23265
|
if (Math.min(s2, a) % 2) {
|
|
23266
|
-
let
|
|
23267
|
-
return { type: "em", raw:
|
|
23266
|
+
let g = k2.slice(1, -1);
|
|
23267
|
+
return { type: "em", raw: k2, text: g, tokens: this.lexer.inlineTokens(g) };
|
|
23268
23268
|
}
|
|
23269
|
-
let
|
|
23270
|
-
return { type: "strong", raw:
|
|
23269
|
+
let x = k2.slice(2, -2);
|
|
23270
|
+
return { type: "strong", raw: k2, text: x, tokens: this.lexer.inlineTokens(x) };
|
|
23271
23271
|
}
|
|
23272
23272
|
}
|
|
23273
23273
|
}
|
|
@@ -23316,25 +23316,25 @@ ${p}` : p;
|
|
|
23316
23316
|
}
|
|
23317
23317
|
}
|
|
23318
23318
|
};
|
|
23319
|
-
var
|
|
23319
|
+
var b = class l {
|
|
23320
23320
|
constructor(e) {
|
|
23321
23321
|
__publicField$2(this, "tokens");
|
|
23322
23322
|
__publicField$2(this, "options");
|
|
23323
23323
|
__publicField$2(this, "state");
|
|
23324
23324
|
__publicField$2(this, "tokenizer");
|
|
23325
23325
|
__publicField$2(this, "inlineQueue");
|
|
23326
|
-
this.tokens = [], this.tokens.links = /* @__PURE__ */ Object.create(null), this.options = e ||
|
|
23327
|
-
let t = { other: m, block:
|
|
23328
|
-
this.options.pedantic ? (t.block =
|
|
23326
|
+
this.tokens = [], this.tokens.links = /* @__PURE__ */ Object.create(null), this.options = e || O, this.options.tokenizer = this.options.tokenizer || new y(), this.tokenizer = this.options.tokenizer, this.tokenizer.options = this.options, this.tokenizer.lexer = this, this.inlineQueue = [], this.state = { inLink: false, inRawBlock: false, top: true };
|
|
23327
|
+
let t = { other: m, block: I.normal, inline: M$1.normal };
|
|
23328
|
+
this.options.pedantic ? (t.block = I.pedantic, t.inline = M$1.pedantic) : this.options.gfm && (t.block = I.gfm, this.options.breaks ? t.inline = M$1.breaks : t.inline = M$1.gfm), this.tokenizer.rules = t;
|
|
23329
23329
|
}
|
|
23330
23330
|
static get rules() {
|
|
23331
|
-
return { block:
|
|
23331
|
+
return { block: I, inline: M$1 };
|
|
23332
23332
|
}
|
|
23333
23333
|
static lex(e, t) {
|
|
23334
|
-
return new
|
|
23334
|
+
return new l(t).lex(e);
|
|
23335
23335
|
}
|
|
23336
23336
|
static lexInline(e, t) {
|
|
23337
|
-
return new
|
|
23337
|
+
return new l(t).inlineTokens(e);
|
|
23338
23338
|
}
|
|
23339
23339
|
lex(e) {
|
|
23340
23340
|
e = e.replace(m.carriageReturn, `
|
|
@@ -23409,8 +23409,8 @@ var x = class u {
|
|
|
23409
23409
|
let i = e;
|
|
23410
23410
|
if (this.options.extensions?.startBlock) {
|
|
23411
23411
|
let s2 = 1 / 0, o = e.slice(1), a;
|
|
23412
|
-
this.options.extensions.startBlock.forEach((
|
|
23413
|
-
a =
|
|
23412
|
+
this.options.extensions.startBlock.forEach((u) => {
|
|
23413
|
+
a = u.call({ lexer: this }, o), typeof a == "number" && a >= 0 && (s2 = Math.min(s2, a));
|
|
23414
23414
|
}), s2 < 1 / 0 && s2 >= 0 && (i = e.substring(0, s2 + 1));
|
|
23415
23415
|
}
|
|
23416
23416
|
if (this.state.top && (r2 = this.tokenizer.paragraph(i))) {
|
|
@@ -23456,7 +23456,7 @@ var x = class u {
|
|
|
23456
23456
|
for (; e; ) {
|
|
23457
23457
|
i || (s2 = ""), i = false;
|
|
23458
23458
|
let o;
|
|
23459
|
-
if (this.options.extensions?.inline?.some((
|
|
23459
|
+
if (this.options.extensions?.inline?.some((u) => (o = u.call({ lexer: this }, e, t)) ? (e = e.substring(o.raw.length), t.push(o), true) : false)) continue;
|
|
23460
23460
|
if (o = this.tokenizer.escape(e)) {
|
|
23461
23461
|
e = e.substring(o.raw.length), t.push(o);
|
|
23462
23462
|
continue;
|
|
@@ -23471,8 +23471,8 @@ var x = class u {
|
|
|
23471
23471
|
}
|
|
23472
23472
|
if (o = this.tokenizer.reflink(e, this.tokens.links)) {
|
|
23473
23473
|
e = e.substring(o.raw.length);
|
|
23474
|
-
let
|
|
23475
|
-
o.type === "text" &&
|
|
23474
|
+
let u = t.at(-1);
|
|
23475
|
+
o.type === "text" && u?.type === "text" ? (u.raw += o.raw, u.text += o.text) : t.push(o);
|
|
23476
23476
|
continue;
|
|
23477
23477
|
}
|
|
23478
23478
|
if (o = this.tokenizer.emStrong(e, n, s2)) {
|
|
@@ -23501,23 +23501,23 @@ var x = class u {
|
|
|
23501
23501
|
}
|
|
23502
23502
|
let a = e;
|
|
23503
23503
|
if (this.options.extensions?.startInline) {
|
|
23504
|
-
let
|
|
23505
|
-
this.options.extensions.startInline.forEach((
|
|
23506
|
-
|
|
23507
|
-
}),
|
|
23504
|
+
let u = 1 / 0, p = e.slice(1), c2;
|
|
23505
|
+
this.options.extensions.startInline.forEach((f2) => {
|
|
23506
|
+
c2 = f2.call({ lexer: this }, p), typeof c2 == "number" && c2 >= 0 && (u = Math.min(u, c2));
|
|
23507
|
+
}), u < 1 / 0 && u >= 0 && (a = e.substring(0, u + 1));
|
|
23508
23508
|
}
|
|
23509
23509
|
if (o = this.tokenizer.inlineText(a)) {
|
|
23510
23510
|
e = e.substring(o.raw.length), o.raw.slice(-1) !== "_" && (s2 = o.raw.slice(-1)), i = true;
|
|
23511
|
-
let
|
|
23512
|
-
|
|
23511
|
+
let u = t.at(-1);
|
|
23512
|
+
u?.type === "text" ? (u.raw += o.raw, u.text += o.text) : t.push(o);
|
|
23513
23513
|
continue;
|
|
23514
23514
|
}
|
|
23515
23515
|
if (e) {
|
|
23516
|
-
let
|
|
23516
|
+
let u = "Infinite loop on byte: " + e.charCodeAt(0);
|
|
23517
23517
|
if (this.options.silent) {
|
|
23518
|
-
console.error(
|
|
23518
|
+
console.error(u);
|
|
23519
23519
|
break;
|
|
23520
|
-
} else throw new Error(
|
|
23520
|
+
} else throw new Error(u);
|
|
23521
23521
|
}
|
|
23522
23522
|
}
|
|
23523
23523
|
return t;
|
|
@@ -23527,7 +23527,7 @@ var P = class {
|
|
|
23527
23527
|
constructor(e) {
|
|
23528
23528
|
__publicField$2(this, "options");
|
|
23529
23529
|
__publicField$2(this, "parser");
|
|
23530
|
-
this.options = e ||
|
|
23530
|
+
this.options = e || O;
|
|
23531
23531
|
}
|
|
23532
23532
|
space(e) {
|
|
23533
23533
|
return "";
|
|
@@ -23675,18 +23675,18 @@ var $ = class {
|
|
|
23675
23675
|
return "";
|
|
23676
23676
|
}
|
|
23677
23677
|
};
|
|
23678
|
-
var
|
|
23678
|
+
var R = class l2 {
|
|
23679
23679
|
constructor(e) {
|
|
23680
23680
|
__publicField$2(this, "options");
|
|
23681
23681
|
__publicField$2(this, "renderer");
|
|
23682
23682
|
__publicField$2(this, "textRenderer");
|
|
23683
|
-
this.options = e ||
|
|
23683
|
+
this.options = e || O, this.options.renderer = this.options.renderer || new P(), this.renderer = this.options.renderer, this.renderer.options = this.options, this.renderer.parser = this, this.textRenderer = new $();
|
|
23684
23684
|
}
|
|
23685
23685
|
static parse(e, t) {
|
|
23686
|
-
return new
|
|
23686
|
+
return new l2(t).parse(e);
|
|
23687
23687
|
}
|
|
23688
23688
|
static parseInline(e, t) {
|
|
23689
|
-
return new
|
|
23689
|
+
return new l2(t).parseInline(e);
|
|
23690
23690
|
}
|
|
23691
23691
|
parse(e, t = true) {
|
|
23692
23692
|
let n = "";
|
|
@@ -23824,7 +23824,7 @@ var S = (_a = class {
|
|
|
23824
23824
|
constructor(e) {
|
|
23825
23825
|
__publicField$2(this, "options");
|
|
23826
23826
|
__publicField$2(this, "block");
|
|
23827
|
-
this.options = e ||
|
|
23827
|
+
this.options = e || O;
|
|
23828
23828
|
}
|
|
23829
23829
|
preprocess(e) {
|
|
23830
23830
|
return e;
|
|
@@ -23839,10 +23839,10 @@ var S = (_a = class {
|
|
|
23839
23839
|
return e;
|
|
23840
23840
|
}
|
|
23841
23841
|
provideLexer() {
|
|
23842
|
-
return this.block ?
|
|
23842
|
+
return this.block ? b.lex : b.lexInline;
|
|
23843
23843
|
}
|
|
23844
23844
|
provideParser() {
|
|
23845
|
-
return this.block ?
|
|
23845
|
+
return this.block ? R.parse : R.parseInline;
|
|
23846
23846
|
}
|
|
23847
23847
|
}, __publicField$2(_a, "passThroughHooks", /* @__PURE__ */ new Set(["preprocess", "postprocess", "processAllTokens", "emStrongMask"])), __publicField$2(_a, "passThroughHooksRespectAsync", /* @__PURE__ */ new Set(["preprocess", "postprocess", "processAllTokens"])), _a);
|
|
23848
23848
|
var B = class {
|
|
@@ -23851,10 +23851,10 @@ var B = class {
|
|
|
23851
23851
|
__publicField$2(this, "options", this.setOptions);
|
|
23852
23852
|
__publicField$2(this, "parse", this.parseMarkdown(true));
|
|
23853
23853
|
__publicField$2(this, "parseInline", this.parseMarkdown(false));
|
|
23854
|
-
__publicField$2(this, "Parser",
|
|
23854
|
+
__publicField$2(this, "Parser", R);
|
|
23855
23855
|
__publicField$2(this, "Renderer", P);
|
|
23856
23856
|
__publicField$2(this, "TextRenderer", $);
|
|
23857
|
-
__publicField$2(this, "Lexer",
|
|
23857
|
+
__publicField$2(this, "Lexer", b);
|
|
23858
23858
|
__publicField$2(this, "Tokenizer", y);
|
|
23859
23859
|
__publicField$2(this, "Hooks", S);
|
|
23860
23860
|
this.use(...e);
|
|
@@ -23907,10 +23907,10 @@ var B = class {
|
|
|
23907
23907
|
for (let s2 in n.renderer) {
|
|
23908
23908
|
if (!(s2 in i)) throw new Error(`renderer '${s2}' does not exist`);
|
|
23909
23909
|
if (["options", "parser"].includes(s2)) continue;
|
|
23910
|
-
let o = s2, a = n.renderer[o],
|
|
23911
|
-
i[o] = (...
|
|
23912
|
-
let
|
|
23913
|
-
return
|
|
23910
|
+
let o = s2, a = n.renderer[o], u = i[o];
|
|
23911
|
+
i[o] = (...p) => {
|
|
23912
|
+
let c2 = a.apply(i, p);
|
|
23913
|
+
return c2 === false && (c2 = u.apply(i, p)), c2 || "";
|
|
23914
23914
|
};
|
|
23915
23915
|
}
|
|
23916
23916
|
r2.renderer = i;
|
|
@@ -23920,10 +23920,10 @@ var B = class {
|
|
|
23920
23920
|
for (let s2 in n.tokenizer) {
|
|
23921
23921
|
if (!(s2 in i)) throw new Error(`tokenizer '${s2}' does not exist`);
|
|
23922
23922
|
if (["options", "rules", "lexer"].includes(s2)) continue;
|
|
23923
|
-
let o = s2, a = n.tokenizer[o],
|
|
23924
|
-
i[o] = (...
|
|
23925
|
-
let
|
|
23926
|
-
return
|
|
23923
|
+
let o = s2, a = n.tokenizer[o], u = i[o];
|
|
23924
|
+
i[o] = (...p) => {
|
|
23925
|
+
let c2 = a.apply(i, p);
|
|
23926
|
+
return c2 === false && (c2 = u.apply(i, p)), c2;
|
|
23927
23927
|
};
|
|
23928
23928
|
}
|
|
23929
23929
|
r2.tokenizer = i;
|
|
@@ -23933,21 +23933,14 @@ var B = class {
|
|
|
23933
23933
|
for (let s2 in n.hooks) {
|
|
23934
23934
|
if (!(s2 in i)) throw new Error(`hook '${s2}' does not exist`);
|
|
23935
23935
|
if (["options", "block"].includes(s2)) continue;
|
|
23936
|
-
let o = s2, a = n.hooks[o],
|
|
23937
|
-
S.passThroughHooks.has(s2) ? i[o] = (
|
|
23938
|
-
if (this.defaults.async && S.passThroughHooksRespectAsync.has(s2)) return (
|
|
23939
|
-
|
|
23940
|
-
|
|
23941
|
-
|
|
23942
|
-
let
|
|
23943
|
-
return
|
|
23944
|
-
} : i[o] = (...c2) => {
|
|
23945
|
-
if (this.defaults.async) return (async () => {
|
|
23946
|
-
let g = await a.apply(i, c2);
|
|
23947
|
-
return g === false && (g = await l.apply(i, c2)), g;
|
|
23948
|
-
})();
|
|
23949
|
-
let p = a.apply(i, c2);
|
|
23950
|
-
return p === false && (p = l.apply(i, c2)), p;
|
|
23936
|
+
let o = s2, a = n.hooks[o], u = i[o];
|
|
23937
|
+
S.passThroughHooks.has(s2) ? i[o] = (p) => {
|
|
23938
|
+
if (this.defaults.async && S.passThroughHooksRespectAsync.has(s2)) return Promise.resolve(a.call(i, p)).then((f2) => u.call(i, f2));
|
|
23939
|
+
let c2 = a.call(i, p);
|
|
23940
|
+
return u.call(i, c2);
|
|
23941
|
+
} : i[o] = (...p) => {
|
|
23942
|
+
let c2 = a.apply(i, p);
|
|
23943
|
+
return c2 === false && (c2 = u.apply(i, p)), c2;
|
|
23951
23944
|
};
|
|
23952
23945
|
}
|
|
23953
23946
|
r2.hooks = i;
|
|
@@ -23966,10 +23959,10 @@ var B = class {
|
|
|
23966
23959
|
return this.defaults = { ...this.defaults, ...e }, this;
|
|
23967
23960
|
}
|
|
23968
23961
|
lexer(e, t) {
|
|
23969
|
-
return
|
|
23962
|
+
return b.lex(e, t ?? this.defaults);
|
|
23970
23963
|
}
|
|
23971
23964
|
parser(e, t) {
|
|
23972
|
-
return
|
|
23965
|
+
return R.parse(e, t ?? this.defaults);
|
|
23973
23966
|
}
|
|
23974
23967
|
parseMarkdown(e) {
|
|
23975
23968
|
return (n, r2) => {
|
|
@@ -23977,20 +23970,17 @@ var B = class {
|
|
|
23977
23970
|
if (this.defaults.async === true && i.async === false) return o(new Error("marked(): The async option was set to true by an extension. Remove async: false from the parse options object to return a Promise."));
|
|
23978
23971
|
if (typeof n > "u" || n === null) return o(new Error("marked(): input parameter is undefined or null"));
|
|
23979
23972
|
if (typeof n != "string") return o(new Error("marked(): input parameter is of type " + Object.prototype.toString.call(n) + ", string expected"));
|
|
23980
|
-
|
|
23981
|
-
|
|
23982
|
-
|
|
23983
|
-
let d2 = await (s2.hooks ? await s2.hooks.provideParser() : e ? b.parse : b.parseInline)(p, s2);
|
|
23984
|
-
return s2.hooks ? await s2.hooks.postprocess(d2) : d2;
|
|
23985
|
-
})().catch(o);
|
|
23973
|
+
s2.hooks && (s2.hooks.options = s2, s2.hooks.block = e);
|
|
23974
|
+
let a = s2.hooks ? s2.hooks.provideLexer() : e ? b.lex : b.lexInline, u = s2.hooks ? s2.hooks.provideParser() : e ? R.parse : R.parseInline;
|
|
23975
|
+
if (s2.async) return Promise.resolve(s2.hooks ? s2.hooks.preprocess(n) : n).then((p) => a(p, s2)).then((p) => s2.hooks ? s2.hooks.processAllTokens(p) : p).then((p) => s2.walkTokens ? Promise.all(this.walkTokens(p, s2.walkTokens)).then(() => p) : p).then((p) => u(p, s2)).then((p) => s2.hooks ? s2.hooks.postprocess(p) : p).catch(o);
|
|
23986
23976
|
try {
|
|
23987
23977
|
s2.hooks && (n = s2.hooks.preprocess(n));
|
|
23988
|
-
let
|
|
23989
|
-
s2.hooks && (
|
|
23990
|
-
let
|
|
23991
|
-
return s2.hooks && (
|
|
23992
|
-
} catch (
|
|
23993
|
-
return o(
|
|
23978
|
+
let p = a(n, s2);
|
|
23979
|
+
s2.hooks && (p = s2.hooks.processAllTokens(p)), s2.walkTokens && this.walkTokens(p, s2.walkTokens);
|
|
23980
|
+
let c2 = u(p, s2);
|
|
23981
|
+
return s2.hooks && (c2 = s2.hooks.postprocess(c2)), c2;
|
|
23982
|
+
} catch (p) {
|
|
23983
|
+
return o(p);
|
|
23994
23984
|
}
|
|
23995
23985
|
};
|
|
23996
23986
|
}
|
|
@@ -24007,38 +23997,38 @@ Please report this to https://github.com/markedjs/marked.`, e) {
|
|
|
24007
23997
|
}
|
|
24008
23998
|
};
|
|
24009
23999
|
var _ = new B();
|
|
24010
|
-
function
|
|
24011
|
-
return _.parse(
|
|
24012
|
-
}
|
|
24013
|
-
|
|
24014
|
-
return _.setOptions(
|
|
24015
|
-
};
|
|
24016
|
-
|
|
24017
|
-
|
|
24018
|
-
|
|
24019
|
-
return _.use(...
|
|
24020
|
-
};
|
|
24021
|
-
|
|
24022
|
-
return _.walkTokens(
|
|
24023
|
-
};
|
|
24024
|
-
|
|
24025
|
-
|
|
24026
|
-
|
|
24027
|
-
|
|
24028
|
-
|
|
24029
|
-
|
|
24030
|
-
|
|
24031
|
-
|
|
24032
|
-
|
|
24033
|
-
|
|
24034
|
-
|
|
24035
|
-
|
|
24036
|
-
|
|
24037
|
-
|
|
24038
|
-
|
|
24039
|
-
|
|
24040
|
-
|
|
24041
|
-
|
|
24000
|
+
function d$1(l3, e) {
|
|
24001
|
+
return _.parse(l3, e);
|
|
24002
|
+
}
|
|
24003
|
+
d$1.options = d$1.setOptions = function(l3) {
|
|
24004
|
+
return _.setOptions(l3), d$1.defaults = _.defaults, G(d$1.defaults), d$1;
|
|
24005
|
+
};
|
|
24006
|
+
d$1.getDefaults = L;
|
|
24007
|
+
d$1.defaults = O;
|
|
24008
|
+
d$1.use = function(...l3) {
|
|
24009
|
+
return _.use(...l3), d$1.defaults = _.defaults, G(d$1.defaults), d$1;
|
|
24010
|
+
};
|
|
24011
|
+
d$1.walkTokens = function(l3, e) {
|
|
24012
|
+
return _.walkTokens(l3, e);
|
|
24013
|
+
};
|
|
24014
|
+
d$1.parseInline = _.parseInline;
|
|
24015
|
+
d$1.Parser = R;
|
|
24016
|
+
d$1.parser = R.parse;
|
|
24017
|
+
d$1.Renderer = P;
|
|
24018
|
+
d$1.TextRenderer = $;
|
|
24019
|
+
d$1.Lexer = b;
|
|
24020
|
+
d$1.lexer = b.lex;
|
|
24021
|
+
d$1.Tokenizer = y;
|
|
24022
|
+
d$1.Hooks = S;
|
|
24023
|
+
d$1.parse = d$1;
|
|
24024
|
+
d$1.options;
|
|
24025
|
+
d$1.setOptions;
|
|
24026
|
+
d$1.use;
|
|
24027
|
+
d$1.walkTokens;
|
|
24028
|
+
d$1.parseInline;
|
|
24029
|
+
R.parse;
|
|
24030
|
+
b.lex;
|
|
24031
|
+
d$1.use({
|
|
24042
24032
|
breaks: false,
|
|
24043
24033
|
// Use proper paragraphs, not <br> tags
|
|
24044
24034
|
gfm: true
|
|
@@ -24049,7 +24039,7 @@ function createDocFromMarkdown(markdown, schema, options = {}) {
|
|
|
24049
24039
|
return createDocFromHTML(html, schema, options);
|
|
24050
24040
|
}
|
|
24051
24041
|
function convertMarkdownToHTML(markdown) {
|
|
24052
|
-
let html =
|
|
24042
|
+
let html = d$1.parse(markdown, { async: false });
|
|
24053
24043
|
return html.replace(/<\/p>\n<ul>/g, "</p>\n<p> </p>\n<ul>").replace(/<\/p>\n<ol>/g, "</p>\n<p> </p>\n<ol>").replace(/<\/ul>\n<h/g, "</ul>\n<p> </p>\n<h").replace(/<\/ol>\n<h/g, "</ol>\n<p> </p>\n<h");
|
|
24054
24044
|
}
|
|
24055
24045
|
function processContent({ content, type: type2, schema }) {
|
|
@@ -35340,6 +35330,12 @@ const mergeRelationshipElements = (existingRelationships = [], newRelationships
|
|
|
35340
35330
|
if (!newRelationships?.length) return existingRelationships;
|
|
35341
35331
|
let largestId = getLargestRelationshipId(existingRelationships);
|
|
35342
35332
|
const seenIds = new Set(existingRelationships.map((rel) => rel?.attributes?.Id).filter(Boolean));
|
|
35333
|
+
for (const rel of newRelationships) {
|
|
35334
|
+
const id = rel?.attributes?.Id;
|
|
35335
|
+
if (!id || seenIds.has(id)) continue;
|
|
35336
|
+
const numeric = Number(String(id).replace(REL_ID_NUMERIC_PATTERN, ""));
|
|
35337
|
+
if (Number.isFinite(numeric) && numeric > largestId) largestId = numeric;
|
|
35338
|
+
}
|
|
35343
35339
|
const additions = [];
|
|
35344
35340
|
newRelationships.forEach((rel) => {
|
|
35345
35341
|
if (!rel?.attributes) return;
|
|
@@ -35347,13 +35343,22 @@ const mergeRelationshipElements = (existingRelationships = [], newRelationships
|
|
|
35347
35343
|
const currentId = attributes.Id || "";
|
|
35348
35344
|
attributes.Target = attributes?.Target?.replace(/&/g, "&");
|
|
35349
35345
|
const existingTarget = existingRelationships.find((el) => el.attributes.Target === attributes.Target);
|
|
35350
|
-
|
|
35346
|
+
attributes.Target?.startsWith("media/");
|
|
35351
35347
|
const isNewHyperlink = attributes.Type === HYPERLINK_RELATIONSHIP_TYPE && currentId.length > 6;
|
|
35352
35348
|
const isNewHeadFoot = (attributes.Type === HEADER_RELATIONSHIP_TYPE || attributes.Type === FOOTER_RELATIONSHIP_TYPE) && currentId.length > 6;
|
|
35353
35349
|
const hasSeenId = currentId && seenIds.has(currentId);
|
|
35354
|
-
|
|
35355
|
-
if (
|
|
35356
|
-
|
|
35350
|
+
if (!isNewHyperlink && !isNewHeadFoot && existingTarget) return;
|
|
35351
|
+
if (!currentId || hasSeenId) {
|
|
35352
|
+
let candidate = Math.max(largestId, 1);
|
|
35353
|
+
while (seenIds.has(`rId${candidate}`)) {
|
|
35354
|
+
candidate += 1;
|
|
35355
|
+
}
|
|
35356
|
+
attributes.Id = `rId${candidate}`;
|
|
35357
|
+
largestId = candidate;
|
|
35358
|
+
} else {
|
|
35359
|
+
const numeric = Number(String(currentId).replace(REL_ID_NUMERIC_PATTERN, ""));
|
|
35360
|
+
if (Number.isFinite(numeric) && numeric > largestId) largestId = numeric;
|
|
35361
|
+
}
|
|
35357
35362
|
seenIds.add(attributes.Id);
|
|
35358
35363
|
additions.push(rel);
|
|
35359
35364
|
});
|
|
@@ -35567,7 +35572,7 @@ const _SuperConverter = class _SuperConverter2 {
|
|
|
35567
35572
|
static getStoredSuperdocVersion(docx) {
|
|
35568
35573
|
return _SuperConverter2.getStoredCustomProperty(docx, "SuperdocVersion");
|
|
35569
35574
|
}
|
|
35570
|
-
static setStoredSuperdocVersion(docx = this.convertedXml, version2 = "0.28.
|
|
35575
|
+
static setStoredSuperdocVersion(docx = this.convertedXml, version2 = "0.28.6") {
|
|
35571
35576
|
return _SuperConverter2.setStoredCustomProperty(docx, "SuperdocVersion", version2, false);
|
|
35572
35577
|
}
|
|
35573
35578
|
/**
|
|
@@ -35958,7 +35963,7 @@ prepareCommentsXmlFilesForExport_fn = function({ defs, exportType, commentsWithP
|
|
|
35958
35963
|
};
|
|
35959
35964
|
exportProcessHeadersFooters_fn = function({ isFinalDoc = false }) {
|
|
35960
35965
|
const relsData = this.convertedXml["word/_rels/document.xml.rels"];
|
|
35961
|
-
const relationships = relsData.elements.find((
|
|
35966
|
+
const relationships = relsData.elements.find((x) => x.name === "Relationships");
|
|
35962
35967
|
const newDocRels = [];
|
|
35963
35968
|
Object.entries(this.headers).forEach(([id, header], index2) => {
|
|
35964
35969
|
const fileName = relationships.elements.find((el) => el.attributes.Id === id)?.attributes.Target || `header${index2 + 1}.xml`;
|
|
@@ -35999,7 +36004,7 @@ exportProcessHeadersFooters_fn = function({ isFinalDoc = false }) {
|
|
|
35999
36004
|
}
|
|
36000
36005
|
this.convertedXml[`word/${fileName}`].elements[0].elements = bodyContent;
|
|
36001
36006
|
if (params2.relationships.length) {
|
|
36002
|
-
const relationships2 = this.convertedXml[`word/_rels/${fileName}.rels`]?.elements?.find((
|
|
36007
|
+
const relationships2 = this.convertedXml[`word/_rels/${fileName}.rels`]?.elements?.find((x) => x.name === "Relationships")?.elements || [];
|
|
36003
36008
|
this.convertedXml[`word/_rels/${fileName}.rels`] = {
|
|
36004
36009
|
declaration: this.initialJSON?.declaration,
|
|
36005
36010
|
elements: [
|
|
@@ -36053,7 +36058,7 @@ exportProcessHeadersFooters_fn = function({ isFinalDoc = false }) {
|
|
|
36053
36058
|
}
|
|
36054
36059
|
this.convertedXml[`word/${fileName}`].elements[0].elements = bodyContent;
|
|
36055
36060
|
if (params2.relationships.length) {
|
|
36056
|
-
const relationships2 = this.convertedXml[`word/_rels/${fileName}.rels`]?.elements?.find((
|
|
36061
|
+
const relationships2 = this.convertedXml[`word/_rels/${fileName}.rels`]?.elements?.find((x) => x.name === "Relationships")?.elements || [];
|
|
36057
36062
|
this.convertedXml[`word/_rels/${fileName}.rels`] = {
|
|
36058
36063
|
declaration: this.initialJSON?.declaration,
|
|
36059
36064
|
elements: [
|
|
@@ -36072,7 +36077,7 @@ exportProcessHeadersFooters_fn = function({ isFinalDoc = false }) {
|
|
|
36072
36077
|
};
|
|
36073
36078
|
exportProcessNewRelationships_fn = function(rels = []) {
|
|
36074
36079
|
const relsData = this.convertedXml["word/_rels/document.xml.rels"];
|
|
36075
|
-
const relationships = relsData.elements.find((
|
|
36080
|
+
const relationships = relsData.elements.find((x) => x.name === "Relationships");
|
|
36076
36081
|
relationships.elements = mergeRelationshipElements(relationships.elements, rels);
|
|
36077
36082
|
};
|
|
36078
36083
|
exportProcessMediaFiles_fn = async function(media = {}) {
|
|
@@ -36157,37 +36162,37 @@ function requireJszip_min() {
|
|
|
36157
36162
|
module2.exports = e();
|
|
36158
36163
|
})(function() {
|
|
36159
36164
|
return (function s2(a, o, h2) {
|
|
36160
|
-
function
|
|
36165
|
+
function u(r2, e2) {
|
|
36161
36166
|
if (!o[r2]) {
|
|
36162
36167
|
if (!a[r2]) {
|
|
36163
36168
|
var t = "function" == typeof commonjsRequire && commonjsRequire;
|
|
36164
36169
|
if (!e2 && t) return t(r2, true);
|
|
36165
|
-
if (
|
|
36170
|
+
if (l3) return l3(r2, true);
|
|
36166
36171
|
var n = new Error("Cannot find module '" + r2 + "'");
|
|
36167
36172
|
throw n.code = "MODULE_NOT_FOUND", n;
|
|
36168
36173
|
}
|
|
36169
36174
|
var i = o[r2] = { exports: {} };
|
|
36170
36175
|
a[r2][0].call(i.exports, function(e3) {
|
|
36171
36176
|
var t2 = a[r2][1][e3];
|
|
36172
|
-
return
|
|
36177
|
+
return u(t2 || e3);
|
|
36173
36178
|
}, i, i.exports, s2, a, o, h2);
|
|
36174
36179
|
}
|
|
36175
36180
|
return o[r2].exports;
|
|
36176
36181
|
}
|
|
36177
|
-
for (var
|
|
36178
|
-
return
|
|
36182
|
+
for (var l3 = "function" == typeof commonjsRequire && commonjsRequire, e = 0; e < h2.length; e++) u(h2[e]);
|
|
36183
|
+
return u;
|
|
36179
36184
|
})({ 1: [function(e, t, r2) {
|
|
36180
36185
|
var d2 = e("./utils"), c2 = e("./support"), p = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
|
|
36181
36186
|
r2.encode = function(e2) {
|
|
36182
|
-
for (var t2, r22, n, i, s2, a, o, h2 = [],
|
|
36187
|
+
for (var t2, r22, n, i, s2, a, o, h2 = [], u = 0, l3 = e2.length, f2 = l3, c22 = "string" !== d2.getTypeOf(e2); u < e2.length; ) f2 = l3 - u, n = c22 ? (t2 = e2[u++], r22 = u < l3 ? e2[u++] : 0, u < l3 ? e2[u++] : 0) : (t2 = e2.charCodeAt(u++), r22 = u < l3 ? e2.charCodeAt(u++) : 0, u < l3 ? e2.charCodeAt(u++) : 0), i = t2 >> 2, s2 = (3 & t2) << 4 | r22 >> 4, a = 1 < f2 ? (15 & r22) << 2 | n >> 6 : 64, o = 2 < f2 ? 63 & n : 64, h2.push(p.charAt(i) + p.charAt(s2) + p.charAt(a) + p.charAt(o));
|
|
36183
36188
|
return h2.join("");
|
|
36184
36189
|
}, r2.decode = function(e2) {
|
|
36185
|
-
var t2, r22, n, i, s2, a, o = 0, h2 = 0,
|
|
36186
|
-
if (e2.substr(0,
|
|
36187
|
-
var
|
|
36190
|
+
var t2, r22, n, i, s2, a, o = 0, h2 = 0, u = "data:";
|
|
36191
|
+
if (e2.substr(0, u.length) === u) throw new Error("Invalid base64 input, it looks like a data url.");
|
|
36192
|
+
var l3, f2 = 3 * (e2 = e2.replace(/[^A-Za-z0-9+/=]/g, "")).length / 4;
|
|
36188
36193
|
if (e2.charAt(e2.length - 1) === p.charAt(64) && f2--, e2.charAt(e2.length - 2) === p.charAt(64) && f2--, f2 % 1 != 0) throw new Error("Invalid base64 input, bad content length.");
|
|
36189
|
-
for (
|
|
36190
|
-
return
|
|
36194
|
+
for (l3 = c2.uint8array ? new Uint8Array(0 | f2) : new Array(0 | f2); o < e2.length; ) t2 = p.indexOf(e2.charAt(o++)) << 2 | (i = p.indexOf(e2.charAt(o++))) >> 4, r22 = (15 & i) << 4 | (s2 = p.indexOf(e2.charAt(o++))) >> 2, n = (3 & s2) << 6 | (a = p.indexOf(e2.charAt(o++))), l3[h2++] = t2, 64 !== s2 && (l3[h2++] = r22), 64 !== a && (l3[h2++] = n);
|
|
36195
|
+
return l3;
|
|
36191
36196
|
};
|
|
36192
36197
|
}, { "./support": 30, "./utils": 32 }], 2: [function(e, t, r2) {
|
|
36193
36198
|
var n = e("./external"), i = e("./stream/DataWorker"), s2 = e("./stream/Crc32Probe"), a = e("./stream/DataLengthProbe");
|
|
@@ -36268,10 +36273,10 @@ function requireJszip_min() {
|
|
|
36268
36273
|
return n2;
|
|
36269
36274
|
}
|
|
36270
36275
|
function n(e2, t2, r22, n2, i2, s22) {
|
|
36271
|
-
var a, o, h2 = e2.file,
|
|
36272
|
-
t2 && !r22 || (
|
|
36276
|
+
var a, o, h2 = e2.file, u = e2.compression, l3 = s22 !== O2.utf8encode, f2 = I2.transformTo("string", s22(h2.name)), c2 = I2.transformTo("string", O2.utf8encode(h2.name)), d2 = h2.comment, p = I2.transformTo("string", s22(d2)), m2 = I2.transformTo("string", O2.utf8encode(d2)), _2 = c2.length !== h2.name.length, g = m2.length !== d2.length, b2 = "", v2 = "", y2 = "", w2 = h2.dir, k2 = h2.date, x = { crc32: 0, compressedSize: 0, uncompressedSize: 0 };
|
|
36277
|
+
t2 && !r22 || (x.crc32 = e2.crc32, x.compressedSize = e2.compressedSize, x.uncompressedSize = e2.uncompressedSize);
|
|
36273
36278
|
var S2 = 0;
|
|
36274
|
-
t2 && (S2 |= 8),
|
|
36279
|
+
t2 && (S2 |= 8), l3 || !_2 && !g || (S2 |= 2048);
|
|
36275
36280
|
var z2 = 0, C2 = 0;
|
|
36276
36281
|
w2 && (z2 |= 16), "UNIX" === i2 ? (C2 = 798, z2 |= (function(e3, t3) {
|
|
36277
36282
|
var r3 = e3;
|
|
@@ -36280,9 +36285,9 @@ function requireJszip_min() {
|
|
|
36280
36285
|
return 63 & (e3 || 0);
|
|
36281
36286
|
})(h2.dosPermissions)), a = k2.getUTCHours(), a <<= 6, a |= k2.getUTCMinutes(), a <<= 5, a |= k2.getUTCSeconds() / 2, o = k2.getUTCFullYear() - 1980, o <<= 4, o |= k2.getUTCMonth() + 1, o <<= 5, o |= k2.getUTCDate(), _2 && (v2 = A2(1, 1) + A2(B2(f2), 4) + c2, b2 += "up" + A2(v2.length, 2) + v2), g && (y2 = A2(1, 1) + A2(B2(p), 4) + m2, b2 += "uc" + A2(y2.length, 2) + y2);
|
|
36282
36287
|
var E2 = "";
|
|
36283
|
-
return E2 += "\n\0", E2 += A2(S2, 2), E2 +=
|
|
36288
|
+
return E2 += "\n\0", E2 += A2(S2, 2), E2 += u.magic, E2 += A2(a, 2), E2 += A2(o, 2), E2 += A2(x.crc32, 4), E2 += A2(x.compressedSize, 4), E2 += A2(x.uncompressedSize, 4), E2 += A2(f2.length, 2), E2 += A2(b2.length, 2), { fileRecord: R2.LOCAL_FILE_HEADER + E2 + f2 + b2, dirRecord: R2.CENTRAL_FILE_HEADER + A2(C2, 2) + E2 + A2(p.length, 2) + "\0\0\0\0" + A2(z2, 4) + A2(n2, 4) + f2 + b2 + p };
|
|
36284
36289
|
}
|
|
36285
|
-
var I2 = e("../utils"), i = e("../stream/GenericWorker"),
|
|
36290
|
+
var I2 = e("../utils"), i = e("../stream/GenericWorker"), O2 = e("../utf8"), B2 = e("../crc32"), R2 = e("../signature");
|
|
36286
36291
|
function s2(e2, t2, r22, n2) {
|
|
36287
36292
|
i.call(this, "ZipFileWorker"), this.bytesWritten = 0, this.zipComment = t2, this.zipPlatform = r22, this.encodeFileName = n2, this.streamFiles = e2, this.accumulate = false, this.contentBuffer = [], this.dirRecords = [], this.currentSourceOffset = 0, this.entriesCount = 0, this.currentFile = null, this._sources = [];
|
|
36288
36293
|
}
|
|
@@ -36300,7 +36305,7 @@ function requireJszip_min() {
|
|
|
36300
36305
|
this.accumulate = false;
|
|
36301
36306
|
var t2 = this.streamFiles && !e2.file.dir, r22 = n(e2, t2, true, this.currentSourceOffset, this.zipPlatform, this.encodeFileName);
|
|
36302
36307
|
if (this.dirRecords.push(r22.dirRecord), t2) this.push({ data: (function(e3) {
|
|
36303
|
-
return
|
|
36308
|
+
return R2.DATA_DESCRIPTOR + A2(e3.crc32, 4) + A2(e3.compressedSize, 4) + A2(e3.uncompressedSize, 4);
|
|
36304
36309
|
})(e2), meta: { percent: 100 } });
|
|
36305
36310
|
else for (this.push({ data: r22.fileRecord, meta: { percent: 0 } }); this.contentBuffer.length; ) this.push(this.contentBuffer.shift());
|
|
36306
36311
|
this.currentFile = null;
|
|
@@ -36308,7 +36313,7 @@ function requireJszip_min() {
|
|
|
36308
36313
|
for (var e2 = this.bytesWritten, t2 = 0; t2 < this.dirRecords.length; t2++) this.push({ data: this.dirRecords[t2], meta: { percent: 100 } });
|
|
36309
36314
|
var r22 = this.bytesWritten - e2, n2 = (function(e3, t3, r3, n3, i2) {
|
|
36310
36315
|
var s22 = I2.transformTo("string", i2(n3));
|
|
36311
|
-
return
|
|
36316
|
+
return R2.CENTRAL_DIRECTORY_END + "\0\0\0\0" + A2(e3, 2) + A2(e3, 2) + A2(t3, 4) + A2(r3, 4) + A2(s22.length, 2) + s22;
|
|
36312
36317
|
})(this.dirRecords.length, r22, e2, this.zipComment, this.encodeFileName);
|
|
36313
36318
|
this.push({ data: n2, meta: { percent: 100 } });
|
|
36314
36319
|
}, s2.prototype.prepareNextSource = function() {
|
|
@@ -36338,14 +36343,14 @@ function requireJszip_min() {
|
|
|
36338
36343
|
for (var e2 = this._sources, t2 = 0; t2 < e2.length; t2++) e2[t2].lock();
|
|
36339
36344
|
}, t.exports = s2;
|
|
36340
36345
|
}, { "../crc32": 4, "../signature": 23, "../stream/GenericWorker": 28, "../utf8": 31, "../utils": 32 }], 9: [function(e, t, r2) {
|
|
36341
|
-
var
|
|
36346
|
+
var u = e("../compressions"), n = e("./ZipFileWorker");
|
|
36342
36347
|
r2.generateWorker = function(e2, a, t2) {
|
|
36343
36348
|
var o = new n(a.streamFiles, t2, a.platform, a.encodeFileName), h2 = 0;
|
|
36344
36349
|
try {
|
|
36345
36350
|
e2.forEach(function(e3, t3) {
|
|
36346
36351
|
h2++;
|
|
36347
36352
|
var r22 = (function(e4, t4) {
|
|
36348
|
-
var r3 = e4 || t4, n3 =
|
|
36353
|
+
var r3 = e4 || t4, n3 = u[r3];
|
|
36349
36354
|
if (!n3) throw new Error(r3 + " is not a valid compression method !");
|
|
36350
36355
|
return n3;
|
|
36351
36356
|
})(t3.options.compression, a.compression), n2 = t3.options.compressionOptions || a.compressionOptions || {}, i = t3.dir, s2 = t3.date;
|
|
@@ -36370,7 +36375,7 @@ function requireJszip_min() {
|
|
|
36370
36375
|
return new n().loadAsync(e2, t2);
|
|
36371
36376
|
}, n.external = e("./external"), t.exports = n;
|
|
36372
36377
|
}, { "./defaults": 5, "./external": 6, "./load": 11, "./object": 15, "./support": 30 }], 11: [function(e, t, r2) {
|
|
36373
|
-
var
|
|
36378
|
+
var u = e("./utils"), i = e("./external"), n = e("./utf8"), s2 = e("./zipEntries"), a = e("./stream/Crc32Probe"), l3 = e("./nodejsUtils");
|
|
36374
36379
|
function f2(n2) {
|
|
36375
36380
|
return new i.Promise(function(e2, t2) {
|
|
36376
36381
|
var r22 = n2.decompressed.getContentWorker().pipe(new a());
|
|
@@ -36383,7 +36388,7 @@ function requireJszip_min() {
|
|
|
36383
36388
|
}
|
|
36384
36389
|
t.exports = function(e2, o) {
|
|
36385
36390
|
var h2 = this;
|
|
36386
|
-
return o =
|
|
36391
|
+
return o = u.extend(o || {}, { base64: false, checkCRC32: false, optimizedBinaryString: false, createFolders: false, decodeFileName: n.utf8decode }), l3.isNode && l3.isStream(e2) ? i.Promise.reject(new Error("JSZip can't accept a stream when loading a zip file.")) : u.prepareContent("the loaded zip file", e2, true, o.optimizedBinaryString, o.base64).then(function(e3) {
|
|
36387
36392
|
var t2 = new s2(o);
|
|
36388
36393
|
return t2.load(e3), t2;
|
|
36389
36394
|
}).then(function(e3) {
|
|
@@ -36392,7 +36397,7 @@ function requireJszip_min() {
|
|
|
36392
36397
|
return i.Promise.all(t2);
|
|
36393
36398
|
}).then(function(e3) {
|
|
36394
36399
|
for (var t2 = e3.shift(), r22 = t2.files, n2 = 0; n2 < r22.length; n2++) {
|
|
36395
|
-
var i2 = r22[n2], s22 = i2.fileNameStr, a2 =
|
|
36400
|
+
var i2 = r22[n2], s22 = i2.fileNameStr, a2 = u.resolve(i2.fileNameStr);
|
|
36396
36401
|
h2.file(a2, i2.decompressed, { binary: true, optimizedBinaryString: true, date: i2.date, dir: i2.dir, comment: i2.fileCommentStr.length ? i2.fileCommentStr : null, unixPermissions: i2.unixPermissions, dosPermissions: i2.dosPermissions, createFolders: o.createFolders }), i2.dir || (h2.file(a2).unsafeOriginalName = s22);
|
|
36397
36402
|
}
|
|
36398
36403
|
return t2.zipComment.length && (h2.comment = t2.zipComment), h2;
|
|
@@ -36449,16 +36454,16 @@ function requireJszip_min() {
|
|
|
36449
36454
|
} };
|
|
36450
36455
|
}, {}], 15: [function(e, t, r2) {
|
|
36451
36456
|
function s2(e2, t2, r22) {
|
|
36452
|
-
var n2, i2 =
|
|
36457
|
+
var n2, i2 = u.getTypeOf(t2), s22 = u.extend(r22 || {}, f2);
|
|
36453
36458
|
s22.date = s22.date || /* @__PURE__ */ new Date(), null !== s22.compression && (s22.compression = s22.compression.toUpperCase()), "string" == typeof s22.unixPermissions && (s22.unixPermissions = parseInt(s22.unixPermissions, 8)), s22.unixPermissions && 16384 & s22.unixPermissions && (s22.dir = true), s22.dosPermissions && 16 & s22.dosPermissions && (s22.dir = true), s22.dir && (e2 = g(e2)), s22.createFolders && (n2 = _2(e2)) && b2.call(this, n2, true);
|
|
36454
36459
|
var a2 = "string" === i2 && false === s22.binary && false === s22.base64;
|
|
36455
36460
|
r22 && void 0 !== r22.binary || (s22.binary = !a2), (t2 instanceof c2 && 0 === t2.uncompressedSize || s22.dir || !t2 || 0 === t2.length) && (s22.base64 = false, s22.binary = true, t2 = "", s22.compression = "STORE", i2 = "string");
|
|
36456
36461
|
var o2 = null;
|
|
36457
|
-
o2 = t2 instanceof c2 || t2 instanceof
|
|
36462
|
+
o2 = t2 instanceof c2 || t2 instanceof l3 ? t2 : p.isNode && p.isStream(t2) ? new m2(e2, t2) : u.prepareContent(e2, t2, s22.binary, s22.optimizedBinaryString, s22.base64);
|
|
36458
36463
|
var h22 = new d2(e2, o2, s22);
|
|
36459
36464
|
this.files[e2] = h22;
|
|
36460
36465
|
}
|
|
36461
|
-
var i = e("./utf8"),
|
|
36466
|
+
var i = e("./utf8"), u = e("./utils"), l3 = e("./stream/GenericWorker"), a = e("./stream/StreamHelper"), f2 = e("./defaults"), c2 = e("./compressedObject"), d2 = e("./zipObject"), o = e("./generate"), p = e("./nodejsUtils"), m2 = e("./nodejs/NodejsStreamInputAdapter"), _2 = function(e2) {
|
|
36462
36467
|
"/" === e2.slice(-1) && (e2 = e2.substring(0, e2.length - 1));
|
|
36463
36468
|
var t2 = e2.lastIndexOf("/");
|
|
36464
36469
|
return 0 < t2 ? e2.substring(0, t2) : "";
|
|
@@ -36510,12 +36515,12 @@ function requireJszip_min() {
|
|
|
36510
36515
|
}, generateInternalStream: function(e2) {
|
|
36511
36516
|
var t2, r22 = {};
|
|
36512
36517
|
try {
|
|
36513
|
-
if ((r22 =
|
|
36514
|
-
|
|
36518
|
+
if ((r22 = u.extend(e2 || {}, { streamFiles: false, compression: "STORE", compressionOptions: null, type: "", platform: "DOS", comment: null, mimeType: "application/zip", encodeFileName: i.utf8encode })).type = r22.type.toLowerCase(), r22.compression = r22.compression.toUpperCase(), "binarystring" === r22.type && (r22.type = "string"), !r22.type) throw new Error("No output type specified.");
|
|
36519
|
+
u.checkSupport(r22.type), "darwin" !== r22.platform && "freebsd" !== r22.platform && "linux" !== r22.platform && "sunos" !== r22.platform || (r22.platform = "UNIX"), "win32" === r22.platform && (r22.platform = "DOS");
|
|
36515
36520
|
var n2 = r22.comment || this.comment || "";
|
|
36516
36521
|
t2 = o.generateWorker(this, r22, n2);
|
|
36517
36522
|
} catch (e3) {
|
|
36518
|
-
(t2 = new
|
|
36523
|
+
(t2 = new l3("error")).error(e3);
|
|
36519
36524
|
}
|
|
36520
36525
|
return new a(t2, r22.type || "string", r22.mimeType);
|
|
36521
36526
|
}, generateAsync: function(e2, t2) {
|
|
@@ -36735,12 +36740,12 @@ function requireJszip_min() {
|
|
|
36735
36740
|
return this.previous ? this.previous + " -> " + e2 : e2;
|
|
36736
36741
|
} }, t.exports = n;
|
|
36737
36742
|
}, {}], 29: [function(e, t, r2) {
|
|
36738
|
-
var h2 = e("../utils"), i = e("./ConvertWorker"), s2 = e("./GenericWorker"),
|
|
36743
|
+
var h2 = e("../utils"), i = e("./ConvertWorker"), s2 = e("./GenericWorker"), u = e("../base64"), n = e("../support"), a = e("../external"), o = null;
|
|
36739
36744
|
if (n.nodestream) try {
|
|
36740
36745
|
o = e("../nodejs/NodejsStreamOutputAdapter");
|
|
36741
36746
|
} catch (e2) {
|
|
36742
36747
|
}
|
|
36743
|
-
function
|
|
36748
|
+
function l3(e2, o2) {
|
|
36744
36749
|
return new a.Promise(function(t2, r22) {
|
|
36745
36750
|
var n2 = [], i2 = e2._internalType, s22 = e2._outputType, a2 = e2._mimeType;
|
|
36746
36751
|
e2.on("data", function(e3, t3) {
|
|
@@ -36754,7 +36759,7 @@ function requireJszip_min() {
|
|
|
36754
36759
|
case "blob":
|
|
36755
36760
|
return h2.newBlob(h2.transformTo("arraybuffer", t3), r3);
|
|
36756
36761
|
case "base64":
|
|
36757
|
-
return
|
|
36762
|
+
return u.encode(t3);
|
|
36758
36763
|
default:
|
|
36759
36764
|
return h2.transformTo(e4, t3);
|
|
36760
36765
|
}
|
|
@@ -36800,7 +36805,7 @@ function requireJszip_min() {
|
|
|
36800
36805
|
}
|
|
36801
36806
|
}
|
|
36802
36807
|
f2.prototype = { accumulate: function(e2) {
|
|
36803
|
-
return
|
|
36808
|
+
return l3(this, e2);
|
|
36804
36809
|
}, on: function(e2, t2) {
|
|
36805
36810
|
var r22 = this;
|
|
36806
36811
|
return "data" === e2 ? this._worker.on(e2, function(e3) {
|
|
@@ -36837,12 +36842,12 @@ function requireJszip_min() {
|
|
|
36837
36842
|
r2.nodestream = false;
|
|
36838
36843
|
}
|
|
36839
36844
|
}, { "readable-stream": 16 }], 31: [function(e, t, s2) {
|
|
36840
|
-
for (var o = e("./utils"), h2 = e("./support"), r2 = e("./nodejsUtils"), n = e("./stream/GenericWorker"),
|
|
36841
|
-
|
|
36845
|
+
for (var o = e("./utils"), h2 = e("./support"), r2 = e("./nodejsUtils"), n = e("./stream/GenericWorker"), u = new Array(256), i = 0; i < 256; i++) u[i] = 252 <= i ? 6 : 248 <= i ? 5 : 240 <= i ? 4 : 224 <= i ? 3 : 192 <= i ? 2 : 1;
|
|
36846
|
+
u[254] = u[254] = 1;
|
|
36842
36847
|
function a() {
|
|
36843
36848
|
n.call(this, "utf-8 decode"), this.leftOver = null;
|
|
36844
36849
|
}
|
|
36845
|
-
function
|
|
36850
|
+
function l3() {
|
|
36846
36851
|
n.call(this, "utf-8 encode");
|
|
36847
36852
|
}
|
|
36848
36853
|
s2.utf8encode = function(e2) {
|
|
@@ -36856,7 +36861,7 @@ function requireJszip_min() {
|
|
|
36856
36861
|
return h2.nodebuffer ? o.transformTo("nodebuffer", e2).toString("utf-8") : (function(e3) {
|
|
36857
36862
|
var t2, r22, n2, i2, s22 = e3.length, a2 = new Array(2 * s22);
|
|
36858
36863
|
for (t2 = r22 = 0; t2 < s22; ) if ((n2 = e3[t2++]) < 128) a2[r22++] = n2;
|
|
36859
|
-
else if (4 < (i2 =
|
|
36864
|
+
else if (4 < (i2 = u[n2])) a2[r22++] = 65533, t2 += i2 - 1;
|
|
36860
36865
|
else {
|
|
36861
36866
|
for (n2 &= 2 === i2 ? 31 : 3 === i2 ? 15 : 7; 1 < i2 && t2 < s22; ) n2 = n2 << 6 | 63 & e3[t2++], i2--;
|
|
36862
36867
|
1 < i2 ? a2[r22++] = 65533 : n2 < 65536 ? a2[r22++] = n2 : (n2 -= 65536, a2[r22++] = 55296 | n2 >> 10 & 1023, a2[r22++] = 56320 | 1023 & n2);
|
|
@@ -36875,20 +36880,20 @@ function requireJszip_min() {
|
|
|
36875
36880
|
var n2 = (function(e3, t3) {
|
|
36876
36881
|
var r3;
|
|
36877
36882
|
for ((t3 = t3 || e3.length) > e3.length && (t3 = e3.length), r3 = t3 - 1; 0 <= r3 && 128 == (192 & e3[r3]); ) r3--;
|
|
36878
|
-
return r3 < 0 ? t3 : 0 === r3 ? t3 : r3 +
|
|
36883
|
+
return r3 < 0 ? t3 : 0 === r3 ? t3 : r3 + u[e3[r3]] > t3 ? r3 : t3;
|
|
36879
36884
|
})(t2), i2 = t2;
|
|
36880
36885
|
n2 !== t2.length && (h2.uint8array ? (i2 = t2.subarray(0, n2), this.leftOver = t2.subarray(n2, t2.length)) : (i2 = t2.slice(0, n2), this.leftOver = t2.slice(n2, t2.length))), this.push({ data: s2.utf8decode(i2), meta: e2.meta });
|
|
36881
36886
|
}, a.prototype.flush = function() {
|
|
36882
36887
|
this.leftOver && this.leftOver.length && (this.push({ data: s2.utf8decode(this.leftOver), meta: {} }), this.leftOver = null);
|
|
36883
|
-
}, s2.Utf8DecodeWorker = a, o.inherits(
|
|
36888
|
+
}, s2.Utf8DecodeWorker = a, o.inherits(l3, n), l3.prototype.processChunk = function(e2) {
|
|
36884
36889
|
this.push({ data: s2.utf8encode(e2.data), meta: e2.meta });
|
|
36885
|
-
}, s2.Utf8EncodeWorker =
|
|
36890
|
+
}, s2.Utf8EncodeWorker = l3;
|
|
36886
36891
|
}, { "./nodejsUtils": 14, "./stream/GenericWorker": 28, "./support": 30, "./utils": 32 }], 32: [function(e, t, a) {
|
|
36887
|
-
var o = e("./support"), h2 = e("./base64"), r2 = e("./nodejsUtils"),
|
|
36892
|
+
var o = e("./support"), h2 = e("./base64"), r2 = e("./nodejsUtils"), u = e("./external");
|
|
36888
36893
|
function n(e2) {
|
|
36889
36894
|
return e2;
|
|
36890
36895
|
}
|
|
36891
|
-
function
|
|
36896
|
+
function l3(e2, t2) {
|
|
36892
36897
|
for (var r22 = 0; r22 < e2.length; ++r22) t2[r22] = 255 & e2.charCodeAt(r22);
|
|
36893
36898
|
return t2;
|
|
36894
36899
|
}
|
|
@@ -36942,13 +36947,13 @@ function requireJszip_min() {
|
|
|
36942
36947
|
a.applyFromCharCode = s2;
|
|
36943
36948
|
var c2 = {};
|
|
36944
36949
|
c2.string = { string: n, array: function(e2) {
|
|
36945
|
-
return
|
|
36950
|
+
return l3(e2, new Array(e2.length));
|
|
36946
36951
|
}, arraybuffer: function(e2) {
|
|
36947
36952
|
return c2.string.uint8array(e2).buffer;
|
|
36948
36953
|
}, uint8array: function(e2) {
|
|
36949
|
-
return
|
|
36954
|
+
return l3(e2, new Uint8Array(e2.length));
|
|
36950
36955
|
}, nodebuffer: function(e2) {
|
|
36951
|
-
return
|
|
36956
|
+
return l3(e2, r2.allocBuffer(e2.length));
|
|
36952
36957
|
} }, c2.array = { string: s2, array: n, arraybuffer: function(e2) {
|
|
36953
36958
|
return new Uint8Array(e2).buffer;
|
|
36954
36959
|
}, uint8array: function(e2) {
|
|
@@ -37007,8 +37012,8 @@ function requireJszip_min() {
|
|
|
37007
37012
|
for (e2 = 0; e2 < arguments.length; e2++) for (t2 in arguments[e2]) Object.prototype.hasOwnProperty.call(arguments[e2], t2) && void 0 === r22[t2] && (r22[t2] = arguments[e2][t2]);
|
|
37008
37013
|
return r22;
|
|
37009
37014
|
}, a.prepareContent = function(r22, e2, n2, i2, s22) {
|
|
37010
|
-
return
|
|
37011
|
-
return o.blob && (n3 instanceof Blob || -1 !== ["[object File]", "[object Blob]"].indexOf(Object.prototype.toString.call(n3))) && "undefined" != typeof FileReader ? new
|
|
37015
|
+
return u.Promise.resolve(e2).then(function(n3) {
|
|
37016
|
+
return o.blob && (n3 instanceof Blob || -1 !== ["[object File]", "[object Blob]"].indexOf(Object.prototype.toString.call(n3))) && "undefined" != typeof FileReader ? new u.Promise(function(t2, r3) {
|
|
37012
37017
|
var e3 = new FileReader();
|
|
37013
37018
|
e3.onload = function(e4) {
|
|
37014
37019
|
t2(e4.target.result);
|
|
@@ -37019,8 +37024,8 @@ function requireJszip_min() {
|
|
|
37019
37024
|
}).then(function(e3) {
|
|
37020
37025
|
var t2 = a.getTypeOf(e3);
|
|
37021
37026
|
return t2 ? ("arraybuffer" === t2 ? e3 = a.transformTo("uint8array", e3) : "string" === t2 && (s22 ? e3 = h2.decode(e3) : n2 && true !== i2 && (e3 = (function(e4) {
|
|
37022
|
-
return
|
|
37023
|
-
})(e3))), e3) :
|
|
37027
|
+
return l3(e4, o.uint8array ? new Uint8Array(e4.length) : new Array(e4.length));
|
|
37028
|
+
})(e3))), e3) : u.Promise.reject(new Error("Can't read the data of '" + r22 + "'. Is it in a supported JavaScript type (String, Blob, ArrayBuffer, etc) ?"));
|
|
37024
37029
|
});
|
|
37025
37030
|
};
|
|
37026
37031
|
}, { "./base64": 1, "./external": 6, "./nodejsUtils": 14, "./support": 30, setimmediate: 54 }], 33: [function(e, t, r2) {
|
|
@@ -37076,11 +37081,11 @@ function requireJszip_min() {
|
|
|
37076
37081
|
this.prepareReader(e2), this.readEndOfCentral(), this.readCentralDir(), this.readLocalFiles();
|
|
37077
37082
|
} }, t.exports = h2;
|
|
37078
37083
|
}, { "./reader/readerFor": 22, "./signature": 23, "./support": 30, "./utils": 32, "./zipEntry": 34 }], 34: [function(e, t, r2) {
|
|
37079
|
-
var n = e("./reader/readerFor"), s2 = e("./utils"), i = e("./compressedObject"), a = e("./crc32"), o = e("./utf8"), h2 = e("./compressions"),
|
|
37080
|
-
function
|
|
37084
|
+
var n = e("./reader/readerFor"), s2 = e("./utils"), i = e("./compressedObject"), a = e("./crc32"), o = e("./utf8"), h2 = e("./compressions"), u = e("./support");
|
|
37085
|
+
function l3(e2, t2) {
|
|
37081
37086
|
this.options = e2, this.loadOptions = t2;
|
|
37082
37087
|
}
|
|
37083
|
-
|
|
37088
|
+
l3.prototype = { isEncrypted: function() {
|
|
37084
37089
|
return 1 == (1 & this.bitFlag);
|
|
37085
37090
|
}, useUTF8: function() {
|
|
37086
37091
|
return 2048 == (2048 & this.bitFlag);
|
|
@@ -37111,7 +37116,7 @@ function requireJszip_min() {
|
|
|
37111
37116
|
for (this.extraFields || (this.extraFields = {}); e2.index + 4 < i2; ) t2 = e2.readInt(2), r22 = e2.readInt(2), n2 = e2.readData(r22), this.extraFields[t2] = { id: t2, length: r22, value: n2 };
|
|
37112
37117
|
e2.setIndex(i2);
|
|
37113
37118
|
}, handleUTF8: function() {
|
|
37114
|
-
var e2 =
|
|
37119
|
+
var e2 = u.uint8array ? "uint8array" : "array";
|
|
37115
37120
|
if (this.useUTF8()) this.fileNameStr = o.utf8decode(this.fileName), this.fileCommentStr = o.utf8decode(this.fileComment);
|
|
37116
37121
|
else {
|
|
37117
37122
|
var t2 = this.findExtraFieldUnicodePath();
|
|
@@ -37141,7 +37146,7 @@ function requireJszip_min() {
|
|
|
37141
37146
|
return 1 !== t2.readInt(1) ? null : a(this.fileComment) !== t2.readInt(4) ? null : o.utf8decode(t2.readData(e2.length - 5));
|
|
37142
37147
|
}
|
|
37143
37148
|
return null;
|
|
37144
|
-
} }, t.exports =
|
|
37149
|
+
} }, t.exports = l3;
|
|
37145
37150
|
}, { "./compressedObject": 2, "./compressions": 3, "./crc32": 4, "./reader/readerFor": 22, "./support": 30, "./utf8": 31, "./utils": 32 }], 35: [function(e, t, r2) {
|
|
37146
37151
|
function n(e2, t2, r22) {
|
|
37147
37152
|
this.name = e2, this.dir = r22.dir, this.date = r22.date, this.comment = r22.comment, this.unixPermissions = r22.unixPermissions, this.dosPermissions = r22.dosPermissions, this._data = t2, this._dataBinary = r22.binary, this.options = { compression: r22.compression, compressionOptions: r22.compressionOptions };
|
|
@@ -37170,34 +37175,34 @@ function requireJszip_min() {
|
|
|
37170
37175
|
}, _decompressWorker: function() {
|
|
37171
37176
|
return this._data instanceof o ? this._data.getContentWorker() : this._data instanceof h2 ? this._data : new i(this._data);
|
|
37172
37177
|
} };
|
|
37173
|
-
for (var
|
|
37178
|
+
for (var u = ["asText", "asBinary", "asNodeBuffer", "asUint8Array", "asArrayBuffer"], l3 = function() {
|
|
37174
37179
|
throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.");
|
|
37175
|
-
}, f2 = 0; f2 <
|
|
37180
|
+
}, f2 = 0; f2 < u.length; f2++) n.prototype[u[f2]] = l3;
|
|
37176
37181
|
t.exports = n;
|
|
37177
|
-
}, { "./compressedObject": 2, "./stream/DataWorker": 27, "./stream/GenericWorker": 28, "./stream/StreamHelper": 29, "./utf8": 31 }], 36: [function(e,
|
|
37182
|
+
}, { "./compressedObject": 2, "./stream/DataWorker": 27, "./stream/GenericWorker": 28, "./stream/StreamHelper": 29, "./utf8": 31 }], 36: [function(e, l3, t) {
|
|
37178
37183
|
(function(t2) {
|
|
37179
37184
|
var r2, n, e2 = t2.MutationObserver || t2.WebKitMutationObserver;
|
|
37180
37185
|
if (e2) {
|
|
37181
|
-
var i = 0, s2 = new e2(
|
|
37186
|
+
var i = 0, s2 = new e2(u), a = t2.document.createTextNode("");
|
|
37182
37187
|
s2.observe(a, { characterData: true }), r2 = function() {
|
|
37183
37188
|
a.data = i = ++i % 2;
|
|
37184
37189
|
};
|
|
37185
37190
|
} else if (t2.setImmediate || void 0 === t2.MessageChannel) r2 = "document" in t2 && "onreadystatechange" in t2.document.createElement("script") ? function() {
|
|
37186
37191
|
var e3 = t2.document.createElement("script");
|
|
37187
37192
|
e3.onreadystatechange = function() {
|
|
37188
|
-
|
|
37193
|
+
u(), e3.onreadystatechange = null, e3.parentNode.removeChild(e3), e3 = null;
|
|
37189
37194
|
}, t2.document.documentElement.appendChild(e3);
|
|
37190
37195
|
} : function() {
|
|
37191
|
-
setTimeout(
|
|
37196
|
+
setTimeout(u, 0);
|
|
37192
37197
|
};
|
|
37193
37198
|
else {
|
|
37194
37199
|
var o = new t2.MessageChannel();
|
|
37195
|
-
o.port1.onmessage =
|
|
37200
|
+
o.port1.onmessage = u, r2 = function() {
|
|
37196
37201
|
o.port2.postMessage(0);
|
|
37197
37202
|
};
|
|
37198
37203
|
}
|
|
37199
37204
|
var h2 = [];
|
|
37200
|
-
function
|
|
37205
|
+
function u() {
|
|
37201
37206
|
var e3, t3;
|
|
37202
37207
|
n = true;
|
|
37203
37208
|
for (var r22 = h2.length; r22; ) {
|
|
@@ -37206,18 +37211,18 @@ function requireJszip_min() {
|
|
|
37206
37211
|
}
|
|
37207
37212
|
n = false;
|
|
37208
37213
|
}
|
|
37209
|
-
|
|
37214
|
+
l3.exports = function(e3) {
|
|
37210
37215
|
1 !== h2.push(e3) || n || r2();
|
|
37211
37216
|
};
|
|
37212
37217
|
}).call(this, "undefined" != typeof commonjsGlobal ? commonjsGlobal : "undefined" != typeof self ? self : "undefined" != typeof window ? window : {});
|
|
37213
37218
|
}, {}], 37: [function(e, t, r2) {
|
|
37214
37219
|
var i = e("immediate");
|
|
37215
|
-
function
|
|
37220
|
+
function u() {
|
|
37216
37221
|
}
|
|
37217
|
-
var
|
|
37222
|
+
var l3 = {}, s2 = ["REJECTED"], a = ["FULFILLED"], n = ["PENDING"];
|
|
37218
37223
|
function o(e2) {
|
|
37219
37224
|
if ("function" != typeof e2) throw new TypeError("resolver must be a function");
|
|
37220
|
-
this.state = n, this.queue = [], this.outcome = void 0, e2 !==
|
|
37225
|
+
this.state = n, this.queue = [], this.outcome = void 0, e2 !== u && d2(this, e2);
|
|
37221
37226
|
}
|
|
37222
37227
|
function h2(e2, t2, r22) {
|
|
37223
37228
|
this.promise = e2, "function" == typeof t2 && (this.onFulfilled = t2, this.callFulfilled = this.otherCallFulfilled), "function" == typeof r22 && (this.onRejected = r22, this.callRejected = this.otherCallRejected);
|
|
@@ -37228,9 +37233,9 @@ function requireJszip_min() {
|
|
|
37228
37233
|
try {
|
|
37229
37234
|
e2 = r22(n2);
|
|
37230
37235
|
} catch (e3) {
|
|
37231
|
-
return
|
|
37236
|
+
return l3.reject(t2, e3);
|
|
37232
37237
|
}
|
|
37233
|
-
e2 === t2 ?
|
|
37238
|
+
e2 === t2 ? l3.reject(t2, new TypeError("Cannot resolve promise with itself")) : l3.resolve(t2, e2);
|
|
37234
37239
|
});
|
|
37235
37240
|
}
|
|
37236
37241
|
function c2(e2) {
|
|
@@ -37242,10 +37247,10 @@ function requireJszip_min() {
|
|
|
37242
37247
|
function d2(t2, e2) {
|
|
37243
37248
|
var r22 = false;
|
|
37244
37249
|
function n2(e3) {
|
|
37245
|
-
r22 || (r22 = true,
|
|
37250
|
+
r22 || (r22 = true, l3.reject(t2, e3));
|
|
37246
37251
|
}
|
|
37247
37252
|
function i2(e3) {
|
|
37248
|
-
r22 || (r22 = true,
|
|
37253
|
+
r22 || (r22 = true, l3.resolve(t2, e3));
|
|
37249
37254
|
}
|
|
37250
37255
|
var s22 = p(function() {
|
|
37251
37256
|
e2(i2, n2);
|
|
@@ -37277,20 +37282,20 @@ function requireJszip_min() {
|
|
|
37277
37282
|
return this.then(null, e2);
|
|
37278
37283
|
}, o.prototype.then = function(e2, t2) {
|
|
37279
37284
|
if ("function" != typeof e2 && this.state === a || "function" != typeof t2 && this.state === s2) return this;
|
|
37280
|
-
var r22 = new this.constructor(
|
|
37285
|
+
var r22 = new this.constructor(u);
|
|
37281
37286
|
this.state !== n ? f2(r22, this.state === a ? e2 : t2, this.outcome) : this.queue.push(new h2(r22, e2, t2));
|
|
37282
37287
|
return r22;
|
|
37283
37288
|
}, h2.prototype.callFulfilled = function(e2) {
|
|
37284
|
-
|
|
37289
|
+
l3.resolve(this.promise, e2);
|
|
37285
37290
|
}, h2.prototype.otherCallFulfilled = function(e2) {
|
|
37286
37291
|
f2(this.promise, this.onFulfilled, e2);
|
|
37287
37292
|
}, h2.prototype.callRejected = function(e2) {
|
|
37288
|
-
|
|
37293
|
+
l3.reject(this.promise, e2);
|
|
37289
37294
|
}, h2.prototype.otherCallRejected = function(e2) {
|
|
37290
37295
|
f2(this.promise, this.onRejected, e2);
|
|
37291
|
-
},
|
|
37296
|
+
}, l3.resolve = function(e2, t2) {
|
|
37292
37297
|
var r22 = p(c2, t2);
|
|
37293
|
-
if ("error" === r22.status) return
|
|
37298
|
+
if ("error" === r22.status) return l3.reject(e2, r22.value);
|
|
37294
37299
|
var n2 = r22.value;
|
|
37295
37300
|
if (n2) d2(e2, n2);
|
|
37296
37301
|
else {
|
|
@@ -37298,29 +37303,29 @@ function requireJszip_min() {
|
|
|
37298
37303
|
for (var i2 = -1, s22 = e2.queue.length; ++i2 < s22; ) e2.queue[i2].callFulfilled(t2);
|
|
37299
37304
|
}
|
|
37300
37305
|
return e2;
|
|
37301
|
-
},
|
|
37306
|
+
}, l3.reject = function(e2, t2) {
|
|
37302
37307
|
e2.state = s2, e2.outcome = t2;
|
|
37303
37308
|
for (var r22 = -1, n2 = e2.queue.length; ++r22 < n2; ) e2.queue[r22].callRejected(t2);
|
|
37304
37309
|
return e2;
|
|
37305
37310
|
}, o.resolve = function(e2) {
|
|
37306
37311
|
if (e2 instanceof this) return e2;
|
|
37307
|
-
return
|
|
37312
|
+
return l3.resolve(new this(u), e2);
|
|
37308
37313
|
}, o.reject = function(e2) {
|
|
37309
|
-
var t2 = new this(
|
|
37310
|
-
return
|
|
37314
|
+
var t2 = new this(u);
|
|
37315
|
+
return l3.reject(t2, e2);
|
|
37311
37316
|
}, o.all = function(e2) {
|
|
37312
37317
|
var r22 = this;
|
|
37313
37318
|
if ("[object Array]" !== Object.prototype.toString.call(e2)) return this.reject(new TypeError("must be an array"));
|
|
37314
37319
|
var n2 = e2.length, i2 = false;
|
|
37315
37320
|
if (!n2) return this.resolve([]);
|
|
37316
|
-
var s22 = new Array(n2), a2 = 0, t2 = -1, o2 = new this(
|
|
37321
|
+
var s22 = new Array(n2), a2 = 0, t2 = -1, o2 = new this(u);
|
|
37317
37322
|
for (; ++t2 < n2; ) h22(e2[t2], t2);
|
|
37318
37323
|
return o2;
|
|
37319
37324
|
function h22(e3, t3) {
|
|
37320
37325
|
r22.resolve(e3).then(function(e4) {
|
|
37321
|
-
s22[t3] = e4, ++a2 !== n2 || i2 || (i2 = true,
|
|
37326
|
+
s22[t3] = e4, ++a2 !== n2 || i2 || (i2 = true, l3.resolve(o2, s22));
|
|
37322
37327
|
}, function(e4) {
|
|
37323
|
-
i2 || (i2 = true,
|
|
37328
|
+
i2 || (i2 = true, l3.reject(o2, e4));
|
|
37324
37329
|
});
|
|
37325
37330
|
}
|
|
37326
37331
|
}, o.race = function(e2) {
|
|
@@ -37328,11 +37333,11 @@ function requireJszip_min() {
|
|
|
37328
37333
|
if ("[object Array]" !== Object.prototype.toString.call(e2)) return this.reject(new TypeError("must be an array"));
|
|
37329
37334
|
var r22 = e2.length, n2 = false;
|
|
37330
37335
|
if (!r22) return this.resolve([]);
|
|
37331
|
-
var i2 = -1, s22 = new this(
|
|
37336
|
+
var i2 = -1, s22 = new this(u);
|
|
37332
37337
|
for (; ++i2 < r22; ) a2 = e2[i2], t2.resolve(a2).then(function(e3) {
|
|
37333
|
-
n2 || (n2 = true,
|
|
37338
|
+
n2 || (n2 = true, l3.resolve(s22, e3));
|
|
37334
37339
|
}, function(e3) {
|
|
37335
|
-
n2 || (n2 = true,
|
|
37340
|
+
n2 || (n2 = true, l3.reject(s22, e3));
|
|
37336
37341
|
});
|
|
37337
37342
|
var a2;
|
|
37338
37343
|
return s22;
|
|
@@ -37341,17 +37346,17 @@ function requireJszip_min() {
|
|
|
37341
37346
|
var n = {};
|
|
37342
37347
|
(0, e("./lib/utils/common").assign)(n, e("./lib/deflate"), e("./lib/inflate"), e("./lib/zlib/constants")), t.exports = n;
|
|
37343
37348
|
}, { "./lib/deflate": 39, "./lib/inflate": 40, "./lib/utils/common": 41, "./lib/zlib/constants": 44 }], 39: [function(e, t, r2) {
|
|
37344
|
-
var a = e("./zlib/deflate"), o = e("./utils/common"), h2 = e("./utils/strings"), i = e("./zlib/messages"), s2 = e("./zlib/zstream"),
|
|
37349
|
+
var a = e("./zlib/deflate"), o = e("./utils/common"), h2 = e("./utils/strings"), i = e("./zlib/messages"), s2 = e("./zlib/zstream"), u = Object.prototype.toString, l3 = 0, f2 = -1, c2 = 0, d2 = 8;
|
|
37345
37350
|
function p(e2) {
|
|
37346
37351
|
if (!(this instanceof p)) return new p(e2);
|
|
37347
37352
|
this.options = o.assign({ level: f2, method: d2, chunkSize: 16384, windowBits: 15, memLevel: 8, strategy: c2, to: "" }, e2 || {});
|
|
37348
37353
|
var t2 = this.options;
|
|
37349
37354
|
t2.raw && 0 < t2.windowBits ? t2.windowBits = -t2.windowBits : t2.gzip && 0 < t2.windowBits && t2.windowBits < 16 && (t2.windowBits += 16), this.err = 0, this.msg = "", this.ended = false, this.chunks = [], this.strm = new s2(), this.strm.avail_out = 0;
|
|
37350
37355
|
var r22 = a.deflateInit2(this.strm, t2.level, t2.method, t2.windowBits, t2.memLevel, t2.strategy);
|
|
37351
|
-
if (r22 !==
|
|
37356
|
+
if (r22 !== l3) throw new Error(i[r22]);
|
|
37352
37357
|
if (t2.header && a.deflateSetHeader(this.strm, t2.header), t2.dictionary) {
|
|
37353
37358
|
var n2;
|
|
37354
|
-
if (n2 = "string" == typeof t2.dictionary ? h2.string2buf(t2.dictionary) : "[object ArrayBuffer]" ===
|
|
37359
|
+
if (n2 = "string" == typeof t2.dictionary ? h2.string2buf(t2.dictionary) : "[object ArrayBuffer]" === u.call(t2.dictionary) ? new Uint8Array(t2.dictionary) : t2.dictionary, (r22 = a.deflateSetDictionary(this.strm, n2)) !== l3) throw new Error(i[r22]);
|
|
37355
37360
|
this._dict_set = true;
|
|
37356
37361
|
}
|
|
37357
37362
|
}
|
|
@@ -37363,16 +37368,16 @@ function requireJszip_min() {
|
|
|
37363
37368
|
p.prototype.push = function(e2, t2) {
|
|
37364
37369
|
var r22, n2, i2 = this.strm, s22 = this.options.chunkSize;
|
|
37365
37370
|
if (this.ended) return false;
|
|
37366
|
-
n2 = t2 === ~~t2 ? t2 : true === t2 ? 4 : 0, "string" == typeof e2 ? i2.input = h2.string2buf(e2) : "[object ArrayBuffer]" ===
|
|
37371
|
+
n2 = t2 === ~~t2 ? t2 : true === t2 ? 4 : 0, "string" == typeof e2 ? i2.input = h2.string2buf(e2) : "[object ArrayBuffer]" === u.call(e2) ? i2.input = new Uint8Array(e2) : i2.input = e2, i2.next_in = 0, i2.avail_in = i2.input.length;
|
|
37367
37372
|
do {
|
|
37368
|
-
if (0 === i2.avail_out && (i2.output = new o.Buf8(s22), i2.next_out = 0, i2.avail_out = s22), 1 !== (r22 = a.deflate(i2, n2)) && r22 !==
|
|
37373
|
+
if (0 === i2.avail_out && (i2.output = new o.Buf8(s22), i2.next_out = 0, i2.avail_out = s22), 1 !== (r22 = a.deflate(i2, n2)) && r22 !== l3) return this.onEnd(r22), !(this.ended = true);
|
|
37369
37374
|
0 !== i2.avail_out && (0 !== i2.avail_in || 4 !== n2 && 2 !== n2) || ("string" === this.options.to ? this.onData(h2.buf2binstring(o.shrinkBuf(i2.output, i2.next_out))) : this.onData(o.shrinkBuf(i2.output, i2.next_out)));
|
|
37370
37375
|
} while ((0 < i2.avail_in || 0 === i2.avail_out) && 1 !== r22);
|
|
37371
|
-
return 4 === n2 ? (r22 = a.deflateEnd(this.strm), this.onEnd(r22), this.ended = true, r22 ===
|
|
37376
|
+
return 4 === n2 ? (r22 = a.deflateEnd(this.strm), this.onEnd(r22), this.ended = true, r22 === l3) : 2 !== n2 || (this.onEnd(l3), !(i2.avail_out = 0));
|
|
37372
37377
|
}, p.prototype.onData = function(e2) {
|
|
37373
37378
|
this.chunks.push(e2);
|
|
37374
37379
|
}, p.prototype.onEnd = function(e2) {
|
|
37375
|
-
e2 ===
|
|
37380
|
+
e2 === l3 && ("string" === this.options.to ? this.result = this.chunks.join("") : this.result = o.flattenChunks(this.chunks)), this.chunks = [], this.err = e2, this.msg = this.strm.msg;
|
|
37376
37381
|
}, r2.Deflate = p, r2.deflate = n, r2.deflateRaw = function(e2, t2) {
|
|
37377
37382
|
return (t2 = t2 || {}).raw = true, n(e2, t2);
|
|
37378
37383
|
}, r2.gzip = function(e2, t2) {
|
|
@@ -37395,12 +37400,12 @@ function requireJszip_min() {
|
|
|
37395
37400
|
return r22.result;
|
|
37396
37401
|
}
|
|
37397
37402
|
a.prototype.push = function(e2, t2) {
|
|
37398
|
-
var r22, n2, i2, s22, a2, o2, h2 = this.strm,
|
|
37403
|
+
var r22, n2, i2, s22, a2, o2, h2 = this.strm, u = this.options.chunkSize, l3 = this.options.dictionary, f2 = false;
|
|
37399
37404
|
if (this.ended) return false;
|
|
37400
37405
|
n2 = t2 === ~~t2 ? t2 : true === t2 ? m2.Z_FINISH : m2.Z_NO_FLUSH, "string" == typeof e2 ? h2.input = p.binstring2buf(e2) : "[object ArrayBuffer]" === _2.call(e2) ? h2.input = new Uint8Array(e2) : h2.input = e2, h2.next_in = 0, h2.avail_in = h2.input.length;
|
|
37401
37406
|
do {
|
|
37402
|
-
if (0 === h2.avail_out && (h2.output = new d2.Buf8(
|
|
37403
|
-
h2.next_out && (0 !== h2.avail_out && r22 !== m2.Z_STREAM_END && (0 !== h2.avail_in || n2 !== m2.Z_FINISH && n2 !== m2.Z_SYNC_FLUSH) || ("string" === this.options.to ? (i2 = p.utf8border(h2.output, h2.next_out), s22 = h2.next_out - i2, a2 = p.buf2string(h2.output, i2), h2.next_out = s22, h2.avail_out =
|
|
37407
|
+
if (0 === h2.avail_out && (h2.output = new d2.Buf8(u), h2.next_out = 0, h2.avail_out = u), (r22 = c2.inflate(h2, m2.Z_NO_FLUSH)) === m2.Z_NEED_DICT && l3 && (o2 = "string" == typeof l3 ? p.string2buf(l3) : "[object ArrayBuffer]" === _2.call(l3) ? new Uint8Array(l3) : l3, r22 = c2.inflateSetDictionary(this.strm, o2)), r22 === m2.Z_BUF_ERROR && true === f2 && (r22 = m2.Z_OK, f2 = false), r22 !== m2.Z_STREAM_END && r22 !== m2.Z_OK) return this.onEnd(r22), !(this.ended = true);
|
|
37408
|
+
h2.next_out && (0 !== h2.avail_out && r22 !== m2.Z_STREAM_END && (0 !== h2.avail_in || n2 !== m2.Z_FINISH && n2 !== m2.Z_SYNC_FLUSH) || ("string" === this.options.to ? (i2 = p.utf8border(h2.output, h2.next_out), s22 = h2.next_out - i2, a2 = p.buf2string(h2.output, i2), h2.next_out = s22, h2.avail_out = u - s22, s22 && d2.arraySet(h2.output, h2.output, i2, s22, 0), this.onData(a2)) : this.onData(d2.shrinkBuf(h2.output, h2.next_out)))), 0 === h2.avail_in && 0 === h2.avail_out && (f2 = true);
|
|
37404
37409
|
} while ((0 < h2.avail_in || 0 === h2.avail_out) && r22 !== m2.Z_STREAM_END);
|
|
37405
37410
|
return r22 === m2.Z_STREAM_END && (n2 = m2.Z_FINISH), n2 === m2.Z_FINISH ? (r22 = c2.inflateEnd(this.strm), this.onEnd(r22), this.ended = true, r22 === m2.Z_OK) : n2 !== m2.Z_SYNC_FLUSH || (this.onEnd(m2.Z_OK), !(h2.avail_out = 0));
|
|
37406
37411
|
}, a.prototype.onData = function(e2) {
|
|
@@ -37452,35 +37457,35 @@ function requireJszip_min() {
|
|
|
37452
37457
|
} catch (e2) {
|
|
37453
37458
|
s2 = false;
|
|
37454
37459
|
}
|
|
37455
|
-
for (var
|
|
37456
|
-
function
|
|
37460
|
+
for (var u = new h2.Buf8(256), n = 0; n < 256; n++) u[n] = 252 <= n ? 6 : 248 <= n ? 5 : 240 <= n ? 4 : 224 <= n ? 3 : 192 <= n ? 2 : 1;
|
|
37461
|
+
function l3(e2, t2) {
|
|
37457
37462
|
if (t2 < 65537 && (e2.subarray && s2 || !e2.subarray && i)) return String.fromCharCode.apply(null, h2.shrinkBuf(e2, t2));
|
|
37458
37463
|
for (var r22 = "", n2 = 0; n2 < t2; n2++) r22 += String.fromCharCode(e2[n2]);
|
|
37459
37464
|
return r22;
|
|
37460
37465
|
}
|
|
37461
|
-
|
|
37466
|
+
u[254] = u[254] = 1, r2.string2buf = function(e2) {
|
|
37462
37467
|
var t2, r22, n2, i2, s22, a = e2.length, o = 0;
|
|
37463
37468
|
for (i2 = 0; i2 < a; i2++) 55296 == (64512 & (r22 = e2.charCodeAt(i2))) && i2 + 1 < a && 56320 == (64512 & (n2 = e2.charCodeAt(i2 + 1))) && (r22 = 65536 + (r22 - 55296 << 10) + (n2 - 56320), i2++), o += r22 < 128 ? 1 : r22 < 2048 ? 2 : r22 < 65536 ? 3 : 4;
|
|
37464
37469
|
for (t2 = new h2.Buf8(o), i2 = s22 = 0; s22 < o; i2++) 55296 == (64512 & (r22 = e2.charCodeAt(i2))) && i2 + 1 < a && 56320 == (64512 & (n2 = e2.charCodeAt(i2 + 1))) && (r22 = 65536 + (r22 - 55296 << 10) + (n2 - 56320), i2++), r22 < 128 ? t2[s22++] = r22 : (r22 < 2048 ? t2[s22++] = 192 | r22 >>> 6 : (r22 < 65536 ? t2[s22++] = 224 | r22 >>> 12 : (t2[s22++] = 240 | r22 >>> 18, t2[s22++] = 128 | r22 >>> 12 & 63), t2[s22++] = 128 | r22 >>> 6 & 63), t2[s22++] = 128 | 63 & r22);
|
|
37465
37470
|
return t2;
|
|
37466
37471
|
}, r2.buf2binstring = function(e2) {
|
|
37467
|
-
return
|
|
37472
|
+
return l3(e2, e2.length);
|
|
37468
37473
|
}, r2.binstring2buf = function(e2) {
|
|
37469
37474
|
for (var t2 = new h2.Buf8(e2.length), r22 = 0, n2 = t2.length; r22 < n2; r22++) t2[r22] = e2.charCodeAt(r22);
|
|
37470
37475
|
return t2;
|
|
37471
37476
|
}, r2.buf2string = function(e2, t2) {
|
|
37472
37477
|
var r22, n2, i2, s22, a = t2 || e2.length, o = new Array(2 * a);
|
|
37473
37478
|
for (r22 = n2 = 0; r22 < a; ) if ((i2 = e2[r22++]) < 128) o[n2++] = i2;
|
|
37474
|
-
else if (4 < (s22 =
|
|
37479
|
+
else if (4 < (s22 = u[i2])) o[n2++] = 65533, r22 += s22 - 1;
|
|
37475
37480
|
else {
|
|
37476
37481
|
for (i2 &= 2 === s22 ? 31 : 3 === s22 ? 15 : 7; 1 < s22 && r22 < a; ) i2 = i2 << 6 | 63 & e2[r22++], s22--;
|
|
37477
37482
|
1 < s22 ? o[n2++] = 65533 : i2 < 65536 ? o[n2++] = i2 : (i2 -= 65536, o[n2++] = 55296 | i2 >> 10 & 1023, o[n2++] = 56320 | 1023 & i2);
|
|
37478
37483
|
}
|
|
37479
|
-
return
|
|
37484
|
+
return l3(o, n2);
|
|
37480
37485
|
}, r2.utf8border = function(e2, t2) {
|
|
37481
37486
|
var r22;
|
|
37482
37487
|
for ((t2 = t2 || e2.length) > e2.length && (t2 = e2.length), r22 = t2 - 1; 0 <= r22 && 128 == (192 & e2[r22]); ) r22--;
|
|
37483
|
-
return r22 < 0 ? t2 : 0 === r22 ? t2 : r22 +
|
|
37488
|
+
return r22 < 0 ? t2 : 0 === r22 ? t2 : r22 + u[e2[r22]] > t2 ? r22 : t2;
|
|
37484
37489
|
};
|
|
37485
37490
|
}, { "./common": 41 }], 43: [function(e, t, r2) {
|
|
37486
37491
|
t.exports = function(e2, t2, r22, n) {
|
|
@@ -37508,11 +37513,11 @@ function requireJszip_min() {
|
|
|
37508
37513
|
return -1 ^ e2;
|
|
37509
37514
|
};
|
|
37510
37515
|
}, {}], 46: [function(e, t, r2) {
|
|
37511
|
-
var h2, c2 = e("../utils/common"),
|
|
37512
|
-
function
|
|
37516
|
+
var h2, c2 = e("../utils/common"), u = e("./trees"), d2 = e("./adler32"), p = e("./crc32"), n = e("./messages"), l3 = 0, f2 = 4, m2 = 0, _2 = -2, g = -1, b2 = 4, i = 2, v2 = 8, y2 = 9, s2 = 286, a = 30, o = 19, w2 = 2 * s2 + 1, k2 = 15, x = 3, S2 = 258, z2 = S2 + x + 1, C2 = 42, E2 = 113, A2 = 1, I2 = 2, O2 = 3, B2 = 4;
|
|
37517
|
+
function R2(e2, t2) {
|
|
37513
37518
|
return e2.msg = n[t2], t2;
|
|
37514
37519
|
}
|
|
37515
|
-
function
|
|
37520
|
+
function T(e2) {
|
|
37516
37521
|
return (e2 << 1) - (4 < e2 ? 9 : 0);
|
|
37517
37522
|
}
|
|
37518
37523
|
function D2(e2) {
|
|
@@ -37523,7 +37528,7 @@ function requireJszip_min() {
|
|
|
37523
37528
|
r22 > e2.avail_out && (r22 = e2.avail_out), 0 !== r22 && (c2.arraySet(e2.output, t2.pending_buf, t2.pending_out, r22, e2.next_out), e2.next_out += r22, t2.pending_out += r22, e2.total_out += r22, e2.avail_out -= r22, t2.pending -= r22, 0 === t2.pending && (t2.pending_out = 0));
|
|
37524
37529
|
}
|
|
37525
37530
|
function N2(e2, t2) {
|
|
37526
|
-
|
|
37531
|
+
u._tr_flush_block(e2, 0 <= e2.block_start ? e2.block_start : -1, e2.strstart - e2.block_start, t2), e2.block_start = e2.strstart, F2(e2.strm);
|
|
37527
37532
|
}
|
|
37528
37533
|
function U2(e2, t2) {
|
|
37529
37534
|
e2.pending_buf[e2.pending++] = t2;
|
|
@@ -37532,23 +37537,23 @@ function requireJszip_min() {
|
|
|
37532
37537
|
e2.pending_buf[e2.pending++] = t2 >>> 8 & 255, e2.pending_buf[e2.pending++] = 255 & t2;
|
|
37533
37538
|
}
|
|
37534
37539
|
function L2(e2, t2) {
|
|
37535
|
-
var r22, n2, i2 = e2.max_chain_length, s22 = e2.strstart, a2 = e2.prev_length, o2 = e2.nice_match, h22 = e2.strstart > e2.w_size - z2 ? e2.strstart - (e2.w_size - z2) : 0,
|
|
37540
|
+
var r22, n2, i2 = e2.max_chain_length, s22 = e2.strstart, a2 = e2.prev_length, o2 = e2.nice_match, h22 = e2.strstart > e2.w_size - z2 ? e2.strstart - (e2.w_size - z2) : 0, u2 = e2.window, l22 = e2.w_mask, f22 = e2.prev, c22 = e2.strstart + S2, d22 = u2[s22 + a2 - 1], p2 = u2[s22 + a2];
|
|
37536
37541
|
e2.prev_length >= e2.good_match && (i2 >>= 2), o2 > e2.lookahead && (o2 = e2.lookahead);
|
|
37537
37542
|
do {
|
|
37538
|
-
if (
|
|
37543
|
+
if (u2[(r22 = t2) + a2] === p2 && u2[r22 + a2 - 1] === d22 && u2[r22] === u2[s22] && u2[++r22] === u2[s22 + 1]) {
|
|
37539
37544
|
s22 += 2, r22++;
|
|
37540
37545
|
do {
|
|
37541
|
-
} while (
|
|
37546
|
+
} while (u2[++s22] === u2[++r22] && u2[++s22] === u2[++r22] && u2[++s22] === u2[++r22] && u2[++s22] === u2[++r22] && u2[++s22] === u2[++r22] && u2[++s22] === u2[++r22] && u2[++s22] === u2[++r22] && u2[++s22] === u2[++r22] && s22 < c22);
|
|
37542
37547
|
if (n2 = S2 - (c22 - s22), s22 = c22 - S2, a2 < n2) {
|
|
37543
37548
|
if (e2.match_start = t2, o2 <= (a2 = n2)) break;
|
|
37544
|
-
d22 =
|
|
37549
|
+
d22 = u2[s22 + a2 - 1], p2 = u2[s22 + a2];
|
|
37545
37550
|
}
|
|
37546
37551
|
}
|
|
37547
|
-
} while ((t2 = f22[t2 &
|
|
37552
|
+
} while ((t2 = f22[t2 & l22]) > h22 && 0 != --i2);
|
|
37548
37553
|
return a2 <= e2.lookahead ? a2 : e2.lookahead;
|
|
37549
37554
|
}
|
|
37550
37555
|
function j2(e2) {
|
|
37551
|
-
var t2, r22, n2, i2, s22, a2, o2, h22,
|
|
37556
|
+
var t2, r22, n2, i2, s22, a2, o2, h22, u2, l22, f22 = e2.w_size;
|
|
37552
37557
|
do {
|
|
37553
37558
|
if (i2 = e2.window_size - e2.lookahead - e2.strstart, e2.strstart >= f22 + (f22 - z2)) {
|
|
37554
37559
|
for (c2.arraySet(e2.window, e2.window, f22, f22, 0), e2.match_start -= f22, e2.strstart -= f22, e2.block_start -= f22, t2 = r22 = e2.hash_size; n2 = e2.head[--t2], e2.head[t2] = f22 <= n2 ? n2 - f22 : 0, --r22; ) ;
|
|
@@ -37556,38 +37561,38 @@ function requireJszip_min() {
|
|
|
37556
37561
|
i2 += f22;
|
|
37557
37562
|
}
|
|
37558
37563
|
if (0 === e2.strm.avail_in) break;
|
|
37559
|
-
if (a2 = e2.strm, o2 = e2.window, h22 = e2.strstart + e2.lookahead,
|
|
37564
|
+
if (a2 = e2.strm, o2 = e2.window, h22 = e2.strstart + e2.lookahead, u2 = i2, l22 = void 0, l22 = a2.avail_in, u2 < l22 && (l22 = u2), r22 = 0 === l22 ? 0 : (a2.avail_in -= l22, c2.arraySet(o2, a2.input, a2.next_in, l22, h22), 1 === a2.state.wrap ? a2.adler = d2(a2.adler, o2, l22, h22) : 2 === a2.state.wrap && (a2.adler = p(a2.adler, o2, l22, h22)), a2.next_in += l22, a2.total_in += l22, l22), e2.lookahead += r22, e2.lookahead + e2.insert >= x) for (s22 = e2.strstart - e2.insert, e2.ins_h = e2.window[s22], e2.ins_h = (e2.ins_h << e2.hash_shift ^ e2.window[s22 + 1]) & e2.hash_mask; e2.insert && (e2.ins_h = (e2.ins_h << e2.hash_shift ^ e2.window[s22 + x - 1]) & e2.hash_mask, e2.prev[s22 & e2.w_mask] = e2.head[e2.ins_h], e2.head[e2.ins_h] = s22, s22++, e2.insert--, !(e2.lookahead + e2.insert < x)); ) ;
|
|
37560
37565
|
} while (e2.lookahead < z2 && 0 !== e2.strm.avail_in);
|
|
37561
37566
|
}
|
|
37562
37567
|
function Z(e2, t2) {
|
|
37563
37568
|
for (var r22, n2; ; ) {
|
|
37564
37569
|
if (e2.lookahead < z2) {
|
|
37565
|
-
if (j2(e2), e2.lookahead < z2 && t2 ===
|
|
37570
|
+
if (j2(e2), e2.lookahead < z2 && t2 === l3) return A2;
|
|
37566
37571
|
if (0 === e2.lookahead) break;
|
|
37567
37572
|
}
|
|
37568
|
-
if (r22 = 0, e2.lookahead >=
|
|
37569
|
-
for (e2.match_length--; e2.strstart++, e2.ins_h = (e2.ins_h << e2.hash_shift ^ e2.window[e2.strstart +
|
|
37573
|
+
if (r22 = 0, e2.lookahead >= x && (e2.ins_h = (e2.ins_h << e2.hash_shift ^ e2.window[e2.strstart + x - 1]) & e2.hash_mask, r22 = e2.prev[e2.strstart & e2.w_mask] = e2.head[e2.ins_h], e2.head[e2.ins_h] = e2.strstart), 0 !== r22 && e2.strstart - r22 <= e2.w_size - z2 && (e2.match_length = L2(e2, r22)), e2.match_length >= x) if (n2 = u._tr_tally(e2, e2.strstart - e2.match_start, e2.match_length - x), e2.lookahead -= e2.match_length, e2.match_length <= e2.max_lazy_match && e2.lookahead >= x) {
|
|
37574
|
+
for (e2.match_length--; e2.strstart++, e2.ins_h = (e2.ins_h << e2.hash_shift ^ e2.window[e2.strstart + x - 1]) & e2.hash_mask, r22 = e2.prev[e2.strstart & e2.w_mask] = e2.head[e2.ins_h], e2.head[e2.ins_h] = e2.strstart, 0 != --e2.match_length; ) ;
|
|
37570
37575
|
e2.strstart++;
|
|
37571
37576
|
} else e2.strstart += e2.match_length, e2.match_length = 0, e2.ins_h = e2.window[e2.strstart], e2.ins_h = (e2.ins_h << e2.hash_shift ^ e2.window[e2.strstart + 1]) & e2.hash_mask;
|
|
37572
|
-
else n2 =
|
|
37577
|
+
else n2 = u._tr_tally(e2, 0, e2.window[e2.strstart]), e2.lookahead--, e2.strstart++;
|
|
37573
37578
|
if (n2 && (N2(e2, false), 0 === e2.strm.avail_out)) return A2;
|
|
37574
37579
|
}
|
|
37575
|
-
return e2.insert = e2.strstart <
|
|
37580
|
+
return e2.insert = e2.strstart < x - 1 ? e2.strstart : x - 1, t2 === f2 ? (N2(e2, true), 0 === e2.strm.avail_out ? O2 : B2) : e2.last_lit && (N2(e2, false), 0 === e2.strm.avail_out) ? A2 : I2;
|
|
37576
37581
|
}
|
|
37577
37582
|
function W2(e2, t2) {
|
|
37578
37583
|
for (var r22, n2, i2; ; ) {
|
|
37579
37584
|
if (e2.lookahead < z2) {
|
|
37580
|
-
if (j2(e2), e2.lookahead < z2 && t2 ===
|
|
37585
|
+
if (j2(e2), e2.lookahead < z2 && t2 === l3) return A2;
|
|
37581
37586
|
if (0 === e2.lookahead) break;
|
|
37582
37587
|
}
|
|
37583
|
-
if (r22 = 0, e2.lookahead >=
|
|
37584
|
-
for (i2 = e2.strstart + e2.lookahead -
|
|
37585
|
-
if (e2.match_available = 0, e2.match_length =
|
|
37588
|
+
if (r22 = 0, e2.lookahead >= x && (e2.ins_h = (e2.ins_h << e2.hash_shift ^ e2.window[e2.strstart + x - 1]) & e2.hash_mask, r22 = e2.prev[e2.strstart & e2.w_mask] = e2.head[e2.ins_h], e2.head[e2.ins_h] = e2.strstart), e2.prev_length = e2.match_length, e2.prev_match = e2.match_start, e2.match_length = x - 1, 0 !== r22 && e2.prev_length < e2.max_lazy_match && e2.strstart - r22 <= e2.w_size - z2 && (e2.match_length = L2(e2, r22), e2.match_length <= 5 && (1 === e2.strategy || e2.match_length === x && 4096 < e2.strstart - e2.match_start) && (e2.match_length = x - 1)), e2.prev_length >= x && e2.match_length <= e2.prev_length) {
|
|
37589
|
+
for (i2 = e2.strstart + e2.lookahead - x, n2 = u._tr_tally(e2, e2.strstart - 1 - e2.prev_match, e2.prev_length - x), e2.lookahead -= e2.prev_length - 1, e2.prev_length -= 2; ++e2.strstart <= i2 && (e2.ins_h = (e2.ins_h << e2.hash_shift ^ e2.window[e2.strstart + x - 1]) & e2.hash_mask, r22 = e2.prev[e2.strstart & e2.w_mask] = e2.head[e2.ins_h], e2.head[e2.ins_h] = e2.strstart), 0 != --e2.prev_length; ) ;
|
|
37590
|
+
if (e2.match_available = 0, e2.match_length = x - 1, e2.strstart++, n2 && (N2(e2, false), 0 === e2.strm.avail_out)) return A2;
|
|
37586
37591
|
} else if (e2.match_available) {
|
|
37587
|
-
if ((n2 =
|
|
37592
|
+
if ((n2 = u._tr_tally(e2, 0, e2.window[e2.strstart - 1])) && N2(e2, false), e2.strstart++, e2.lookahead--, 0 === e2.strm.avail_out) return A2;
|
|
37588
37593
|
} else e2.match_available = 1, e2.strstart++, e2.lookahead--;
|
|
37589
37594
|
}
|
|
37590
|
-
return e2.match_available && (n2 =
|
|
37595
|
+
return e2.match_available && (n2 = u._tr_tally(e2, 0, e2.window[e2.strstart - 1]), e2.match_available = 0), e2.insert = e2.strstart < x - 1 ? e2.strstart : x - 1, t2 === f2 ? (N2(e2, true), 0 === e2.strm.avail_out ? O2 : B2) : e2.last_lit && (N2(e2, false), 0 === e2.strm.avail_out) ? A2 : I2;
|
|
37591
37596
|
}
|
|
37592
37597
|
function M2(e2, t2, r22, n2, i2) {
|
|
37593
37598
|
this.good_length = e2, this.max_lazy = t2, this.nice_length = r22, this.max_chain = n2, this.func = i2;
|
|
@@ -37597,27 +37602,27 @@ function requireJszip_min() {
|
|
|
37597
37602
|
}
|
|
37598
37603
|
function G2(e2) {
|
|
37599
37604
|
var t2;
|
|
37600
|
-
return e2 && e2.state ? (e2.total_in = e2.total_out = 0, e2.data_type = i, (t2 = e2.state).pending = 0, t2.pending_out = 0, t2.wrap < 0 && (t2.wrap = -t2.wrap), t2.status = t2.wrap ? C2 : E2, e2.adler = 2 === t2.wrap ? 0 : 1, t2.last_flush =
|
|
37605
|
+
return e2 && e2.state ? (e2.total_in = e2.total_out = 0, e2.data_type = i, (t2 = e2.state).pending = 0, t2.pending_out = 0, t2.wrap < 0 && (t2.wrap = -t2.wrap), t2.status = t2.wrap ? C2 : E2, e2.adler = 2 === t2.wrap ? 0 : 1, t2.last_flush = l3, u._tr_init(t2), m2) : R2(e2, _2);
|
|
37601
37606
|
}
|
|
37602
37607
|
function K2(e2) {
|
|
37603
37608
|
var t2 = G2(e2);
|
|
37604
37609
|
return t2 === m2 && (function(e3) {
|
|
37605
|
-
e3.window_size = 2 * e3.w_size, D2(e3.head), e3.max_lazy_match = h2[e3.level].max_lazy, e3.good_match = h2[e3.level].good_length, e3.nice_match = h2[e3.level].nice_length, e3.max_chain_length = h2[e3.level].max_chain, e3.strstart = 0, e3.block_start = 0, e3.lookahead = 0, e3.insert = 0, e3.match_length = e3.prev_length =
|
|
37610
|
+
e3.window_size = 2 * e3.w_size, D2(e3.head), e3.max_lazy_match = h2[e3.level].max_lazy, e3.good_match = h2[e3.level].good_length, e3.nice_match = h2[e3.level].nice_length, e3.max_chain_length = h2[e3.level].max_chain, e3.strstart = 0, e3.block_start = 0, e3.lookahead = 0, e3.insert = 0, e3.match_length = e3.prev_length = x - 1, e3.match_available = 0, e3.ins_h = 0;
|
|
37606
37611
|
})(e2.state), t2;
|
|
37607
37612
|
}
|
|
37608
37613
|
function Y2(e2, t2, r22, n2, i2, s22) {
|
|
37609
37614
|
if (!e2) return _2;
|
|
37610
37615
|
var a2 = 1;
|
|
37611
|
-
if (t2 === g && (t2 = 6), n2 < 0 ? (a2 = 0, n2 = -n2) : 15 < n2 && (a2 = 2, n2 -= 16), i2 < 1 || y2 < i2 || r22 !== v2 || n2 < 8 || 15 < n2 || t2 < 0 || 9 < t2 || s22 < 0 || b2 < s22) return
|
|
37616
|
+
if (t2 === g && (t2 = 6), n2 < 0 ? (a2 = 0, n2 = -n2) : 15 < n2 && (a2 = 2, n2 -= 16), i2 < 1 || y2 < i2 || r22 !== v2 || n2 < 8 || 15 < n2 || t2 < 0 || 9 < t2 || s22 < 0 || b2 < s22) return R2(e2, _2);
|
|
37612
37617
|
8 === n2 && (n2 = 9);
|
|
37613
37618
|
var o2 = new H();
|
|
37614
|
-
return (e2.state = o2).strm = e2, o2.wrap = a2, o2.gzhead = null, o2.w_bits = n2, o2.w_size = 1 << o2.w_bits, o2.w_mask = o2.w_size - 1, o2.hash_bits = i2 + 7, o2.hash_size = 1 << o2.hash_bits, o2.hash_mask = o2.hash_size - 1, o2.hash_shift = ~~((o2.hash_bits +
|
|
37619
|
+
return (e2.state = o2).strm = e2, o2.wrap = a2, o2.gzhead = null, o2.w_bits = n2, o2.w_size = 1 << o2.w_bits, o2.w_mask = o2.w_size - 1, o2.hash_bits = i2 + 7, o2.hash_size = 1 << o2.hash_bits, o2.hash_mask = o2.hash_size - 1, o2.hash_shift = ~~((o2.hash_bits + x - 1) / x), o2.window = new c2.Buf8(2 * o2.w_size), o2.head = new c2.Buf16(o2.hash_size), o2.prev = new c2.Buf16(o2.w_size), o2.lit_bufsize = 1 << i2 + 6, o2.pending_buf_size = 4 * o2.lit_bufsize, o2.pending_buf = new c2.Buf8(o2.pending_buf_size), o2.d_buf = 1 * o2.lit_bufsize, o2.l_buf = 3 * o2.lit_bufsize, o2.level = t2, o2.strategy = s22, o2.method = r22, K2(e2);
|
|
37615
37620
|
}
|
|
37616
37621
|
h2 = [new M2(0, 0, 0, 0, function(e2, t2) {
|
|
37617
37622
|
var r22 = 65535;
|
|
37618
37623
|
for (r22 > e2.pending_buf_size - 5 && (r22 = e2.pending_buf_size - 5); ; ) {
|
|
37619
37624
|
if (e2.lookahead <= 1) {
|
|
37620
|
-
if (j2(e2), 0 === e2.lookahead && t2 ===
|
|
37625
|
+
if (j2(e2), 0 === e2.lookahead && t2 === l3) return A2;
|
|
37621
37626
|
if (0 === e2.lookahead) break;
|
|
37622
37627
|
}
|
|
37623
37628
|
e2.strstart += e2.lookahead, e2.lookahead = 0;
|
|
@@ -37625,15 +37630,15 @@ function requireJszip_min() {
|
|
|
37625
37630
|
if ((0 === e2.strstart || e2.strstart >= n2) && (e2.lookahead = e2.strstart - n2, e2.strstart = n2, N2(e2, false), 0 === e2.strm.avail_out)) return A2;
|
|
37626
37631
|
if (e2.strstart - e2.block_start >= e2.w_size - z2 && (N2(e2, false), 0 === e2.strm.avail_out)) return A2;
|
|
37627
37632
|
}
|
|
37628
|
-
return e2.insert = 0, t2 === f2 ? (N2(e2, true), 0 === e2.strm.avail_out ?
|
|
37633
|
+
return e2.insert = 0, t2 === f2 ? (N2(e2, true), 0 === e2.strm.avail_out ? O2 : B2) : (e2.strstart > e2.block_start && (N2(e2, false), e2.strm.avail_out), A2);
|
|
37629
37634
|
}), new M2(4, 4, 8, 4, Z), new M2(4, 5, 16, 8, Z), new M2(4, 6, 32, 32, Z), new M2(4, 4, 16, 16, W2), new M2(8, 16, 32, 32, W2), new M2(8, 16, 128, 128, W2), new M2(8, 32, 128, 256, W2), new M2(32, 128, 258, 1024, W2), new M2(32, 258, 258, 4096, W2)], r2.deflateInit = function(e2, t2) {
|
|
37630
37635
|
return Y2(e2, t2, v2, 15, 8, 0);
|
|
37631
37636
|
}, r2.deflateInit2 = Y2, r2.deflateReset = K2, r2.deflateResetKeep = G2, r2.deflateSetHeader = function(e2, t2) {
|
|
37632
37637
|
return e2 && e2.state ? 2 !== e2.state.wrap ? _2 : (e2.state.gzhead = t2, m2) : _2;
|
|
37633
37638
|
}, r2.deflate = function(e2, t2) {
|
|
37634
37639
|
var r22, n2, i2, s22;
|
|
37635
|
-
if (!e2 || !e2.state || 5 < t2 || t2 < 0) return e2 ?
|
|
37636
|
-
if (n2 = e2.state, !e2.output || !e2.input && 0 !== e2.avail_in || 666 === n2.status && t2 !== f2) return
|
|
37640
|
+
if (!e2 || !e2.state || 5 < t2 || t2 < 0) return e2 ? R2(e2, _2) : _2;
|
|
37641
|
+
if (n2 = e2.state, !e2.output || !e2.input && 0 !== e2.avail_in || 666 === n2.status && t2 !== f2) return R2(e2, 0 === e2.avail_out ? -5 : _2);
|
|
37637
37642
|
if (n2.strm = e2, r22 = n2.last_flush, n2.last_flush = t2, n2.status === C2) if (2 === n2.wrap) e2.adler = 0, U2(n2, 31), U2(n2, 139), U2(n2, 8), n2.gzhead ? (U2(n2, (n2.gzhead.text ? 1 : 0) + (n2.gzhead.hcrc ? 2 : 0) + (n2.gzhead.extra ? 4 : 0) + (n2.gzhead.name ? 8 : 0) + (n2.gzhead.comment ? 16 : 0)), U2(n2, 255 & n2.gzhead.time), U2(n2, n2.gzhead.time >> 8 & 255), U2(n2, n2.gzhead.time >> 16 & 255), U2(n2, n2.gzhead.time >> 24 & 255), U2(n2, 9 === n2.level ? 2 : 2 <= n2.strategy || n2.level < 2 ? 4 : 0), U2(n2, 255 & n2.gzhead.os), n2.gzhead.extra && n2.gzhead.extra.length && (U2(n2, 255 & n2.gzhead.extra.length), U2(n2, n2.gzhead.extra.length >> 8 & 255)), n2.gzhead.hcrc && (e2.adler = p(e2.adler, n2.pending_buf, n2.pending, 0)), n2.gzindex = 0, n2.status = 69) : (U2(n2, 0), U2(n2, 0), U2(n2, 0), U2(n2, 0), U2(n2, 0), U2(n2, 9 === n2.level ? 2 : 2 <= n2.strategy || n2.level < 2 ? 4 : 0), U2(n2, 3), n2.status = E2);
|
|
37638
37643
|
else {
|
|
37639
37644
|
var a2 = v2 + (n2.w_bits - 8 << 4) << 8;
|
|
@@ -37667,50 +37672,50 @@ function requireJszip_min() {
|
|
|
37667
37672
|
} else n2.status = 103;
|
|
37668
37673
|
if (103 === n2.status && (n2.gzhead.hcrc ? (n2.pending + 2 > n2.pending_buf_size && F2(e2), n2.pending + 2 <= n2.pending_buf_size && (U2(n2, 255 & e2.adler), U2(n2, e2.adler >> 8 & 255), e2.adler = 0, n2.status = E2)) : n2.status = E2), 0 !== n2.pending) {
|
|
37669
37674
|
if (F2(e2), 0 === e2.avail_out) return n2.last_flush = -1, m2;
|
|
37670
|
-
} else if (0 === e2.avail_in &&
|
|
37671
|
-
if (666 === n2.status && 0 !== e2.avail_in) return
|
|
37672
|
-
if (0 !== e2.avail_in || 0 !== n2.lookahead || t2 !==
|
|
37675
|
+
} else if (0 === e2.avail_in && T(t2) <= T(r22) && t2 !== f2) return R2(e2, -5);
|
|
37676
|
+
if (666 === n2.status && 0 !== e2.avail_in) return R2(e2, -5);
|
|
37677
|
+
if (0 !== e2.avail_in || 0 !== n2.lookahead || t2 !== l3 && 666 !== n2.status) {
|
|
37673
37678
|
var o2 = 2 === n2.strategy ? (function(e3, t3) {
|
|
37674
37679
|
for (var r3; ; ) {
|
|
37675
37680
|
if (0 === e3.lookahead && (j2(e3), 0 === e3.lookahead)) {
|
|
37676
|
-
if (t3 ===
|
|
37681
|
+
if (t3 === l3) return A2;
|
|
37677
37682
|
break;
|
|
37678
37683
|
}
|
|
37679
|
-
if (e3.match_length = 0, r3 =
|
|
37684
|
+
if (e3.match_length = 0, r3 = u._tr_tally(e3, 0, e3.window[e3.strstart]), e3.lookahead--, e3.strstart++, r3 && (N2(e3, false), 0 === e3.strm.avail_out)) return A2;
|
|
37680
37685
|
}
|
|
37681
|
-
return e3.insert = 0, t3 === f2 ? (N2(e3, true), 0 === e3.strm.avail_out ?
|
|
37686
|
+
return e3.insert = 0, t3 === f2 ? (N2(e3, true), 0 === e3.strm.avail_out ? O2 : B2) : e3.last_lit && (N2(e3, false), 0 === e3.strm.avail_out) ? A2 : I2;
|
|
37682
37687
|
})(n2, t2) : 3 === n2.strategy ? (function(e3, t3) {
|
|
37683
37688
|
for (var r3, n3, i3, s3, a3 = e3.window; ; ) {
|
|
37684
37689
|
if (e3.lookahead <= S2) {
|
|
37685
|
-
if (j2(e3), e3.lookahead <= S2 && t3 ===
|
|
37690
|
+
if (j2(e3), e3.lookahead <= S2 && t3 === l3) return A2;
|
|
37686
37691
|
if (0 === e3.lookahead) break;
|
|
37687
37692
|
}
|
|
37688
|
-
if (e3.match_length = 0, e3.lookahead >=
|
|
37693
|
+
if (e3.match_length = 0, e3.lookahead >= x && 0 < e3.strstart && (n3 = a3[i3 = e3.strstart - 1]) === a3[++i3] && n3 === a3[++i3] && n3 === a3[++i3]) {
|
|
37689
37694
|
s3 = e3.strstart + S2;
|
|
37690
37695
|
do {
|
|
37691
37696
|
} while (n3 === a3[++i3] && n3 === a3[++i3] && n3 === a3[++i3] && n3 === a3[++i3] && n3 === a3[++i3] && n3 === a3[++i3] && n3 === a3[++i3] && n3 === a3[++i3] && i3 < s3);
|
|
37692
37697
|
e3.match_length = S2 - (s3 - i3), e3.match_length > e3.lookahead && (e3.match_length = e3.lookahead);
|
|
37693
37698
|
}
|
|
37694
|
-
if (e3.match_length >=
|
|
37699
|
+
if (e3.match_length >= x ? (r3 = u._tr_tally(e3, 1, e3.match_length - x), e3.lookahead -= e3.match_length, e3.strstart += e3.match_length, e3.match_length = 0) : (r3 = u._tr_tally(e3, 0, e3.window[e3.strstart]), e3.lookahead--, e3.strstart++), r3 && (N2(e3, false), 0 === e3.strm.avail_out)) return A2;
|
|
37695
37700
|
}
|
|
37696
|
-
return e3.insert = 0, t3 === f2 ? (N2(e3, true), 0 === e3.strm.avail_out ?
|
|
37701
|
+
return e3.insert = 0, t3 === f2 ? (N2(e3, true), 0 === e3.strm.avail_out ? O2 : B2) : e3.last_lit && (N2(e3, false), 0 === e3.strm.avail_out) ? A2 : I2;
|
|
37697
37702
|
})(n2, t2) : h2[n2.level].func(n2, t2);
|
|
37698
|
-
if (o2 !==
|
|
37699
|
-
if (o2 === I2 && (1 === t2 ?
|
|
37703
|
+
if (o2 !== O2 && o2 !== B2 || (n2.status = 666), o2 === A2 || o2 === O2) return 0 === e2.avail_out && (n2.last_flush = -1), m2;
|
|
37704
|
+
if (o2 === I2 && (1 === t2 ? u._tr_align(n2) : 5 !== t2 && (u._tr_stored_block(n2, 0, 0, false), 3 === t2 && (D2(n2.head), 0 === n2.lookahead && (n2.strstart = 0, n2.block_start = 0, n2.insert = 0))), F2(e2), 0 === e2.avail_out)) return n2.last_flush = -1, m2;
|
|
37700
37705
|
}
|
|
37701
37706
|
return t2 !== f2 ? m2 : n2.wrap <= 0 ? 1 : (2 === n2.wrap ? (U2(n2, 255 & e2.adler), U2(n2, e2.adler >> 8 & 255), U2(n2, e2.adler >> 16 & 255), U2(n2, e2.adler >> 24 & 255), U2(n2, 255 & e2.total_in), U2(n2, e2.total_in >> 8 & 255), U2(n2, e2.total_in >> 16 & 255), U2(n2, e2.total_in >> 24 & 255)) : (P2(n2, e2.adler >>> 16), P2(n2, 65535 & e2.adler)), F2(e2), 0 < n2.wrap && (n2.wrap = -n2.wrap), 0 !== n2.pending ? m2 : 1);
|
|
37702
37707
|
}, r2.deflateEnd = function(e2) {
|
|
37703
37708
|
var t2;
|
|
37704
|
-
return e2 && e2.state ? (t2 = e2.state.status) !== C2 && 69 !== t2 && 73 !== t2 && 91 !== t2 && 103 !== t2 && t2 !== E2 && 666 !== t2 ?
|
|
37709
|
+
return e2 && e2.state ? (t2 = e2.state.status) !== C2 && 69 !== t2 && 73 !== t2 && 91 !== t2 && 103 !== t2 && t2 !== E2 && 666 !== t2 ? R2(e2, _2) : (e2.state = null, t2 === E2 ? R2(e2, -3) : m2) : _2;
|
|
37705
37710
|
}, r2.deflateSetDictionary = function(e2, t2) {
|
|
37706
|
-
var r22, n2, i2, s22, a2, o2, h22,
|
|
37711
|
+
var r22, n2, i2, s22, a2, o2, h22, u2, l22 = t2.length;
|
|
37707
37712
|
if (!e2 || !e2.state) return _2;
|
|
37708
37713
|
if (2 === (s22 = (r22 = e2.state).wrap) || 1 === s22 && r22.status !== C2 || r22.lookahead) return _2;
|
|
37709
|
-
for (1 === s22 && (e2.adler = d2(e2.adler, t2,
|
|
37710
|
-
for (n2 = r22.strstart, i2 = r22.lookahead - (
|
|
37711
|
-
r22.strstart = n2, r22.lookahead =
|
|
37714
|
+
for (1 === s22 && (e2.adler = d2(e2.adler, t2, l22, 0)), r22.wrap = 0, l22 >= r22.w_size && (0 === s22 && (D2(r22.head), r22.strstart = 0, r22.block_start = 0, r22.insert = 0), u2 = new c2.Buf8(r22.w_size), c2.arraySet(u2, t2, l22 - r22.w_size, r22.w_size, 0), t2 = u2, l22 = r22.w_size), a2 = e2.avail_in, o2 = e2.next_in, h22 = e2.input, e2.avail_in = l22, e2.next_in = 0, e2.input = t2, j2(r22); r22.lookahead >= x; ) {
|
|
37715
|
+
for (n2 = r22.strstart, i2 = r22.lookahead - (x - 1); r22.ins_h = (r22.ins_h << r22.hash_shift ^ r22.window[n2 + x - 1]) & r22.hash_mask, r22.prev[n2 & r22.w_mask] = r22.head[r22.ins_h], r22.head[r22.ins_h] = n2, n2++, --i2; ) ;
|
|
37716
|
+
r22.strstart = n2, r22.lookahead = x - 1, j2(r22);
|
|
37712
37717
|
}
|
|
37713
|
-
return r22.strstart += r22.lookahead, r22.block_start = r22.strstart, r22.insert = r22.lookahead, r22.lookahead = 0, r22.match_length = r22.prev_length =
|
|
37718
|
+
return r22.strstart += r22.lookahead, r22.block_start = r22.strstart, r22.insert = r22.lookahead, r22.lookahead = 0, r22.match_length = r22.prev_length = x - 1, r22.match_available = 0, e2.next_in = o2, e2.input = h22, e2.avail_in = a2, r22.wrap = s22, m2;
|
|
37714
37719
|
}, r2.deflateInfo = "pako deflate (from Nodeca project)";
|
|
37715
37720
|
}, { "../utils/common": 41, "./adler32": 43, "./crc32": 45, "./messages": 51, "./trees": 52 }], 47: [function(e, t, r2) {
|
|
37716
37721
|
t.exports = function() {
|
|
@@ -37718,8 +37723,8 @@ function requireJszip_min() {
|
|
|
37718
37723
|
};
|
|
37719
37724
|
}, {}], 48: [function(e, t, r2) {
|
|
37720
37725
|
t.exports = function(e2, t2) {
|
|
37721
|
-
var r22, n, i, s2, a, o, h2,
|
|
37722
|
-
r22 = e2.state, n = e2.next_in, z2 = e2.input, i = n + (e2.avail_in - 5), s2 = e2.next_out, C2 = e2.output, a = s2 - (t2 - e2.avail_out), o = s2 + (e2.avail_out - 257), h2 = r22.dmax,
|
|
37726
|
+
var r22, n, i, s2, a, o, h2, u, l3, f2, c2, d2, p, m2, _2, g, b2, v2, y2, w2, k2, x, S2, z2, C2;
|
|
37727
|
+
r22 = e2.state, n = e2.next_in, z2 = e2.input, i = n + (e2.avail_in - 5), s2 = e2.next_out, C2 = e2.output, a = s2 - (t2 - e2.avail_out), o = s2 + (e2.avail_out - 257), h2 = r22.dmax, u = r22.wsize, l3 = r22.whave, f2 = r22.wnext, c2 = r22.window, d2 = r22.hold, p = r22.bits, m2 = r22.lencode, _2 = r22.distcode, g = (1 << r22.lenbits) - 1, b2 = (1 << r22.distbits) - 1;
|
|
37723
37728
|
e: do {
|
|
37724
37729
|
p < 15 && (d2 += z2[n++] << p, p += 8, d2 += z2[n++] << p, p += 8), v2 = m2[d2 & g];
|
|
37725
37730
|
t: for (; ; ) {
|
|
@@ -37752,32 +37757,32 @@ function requireJszip_min() {
|
|
|
37752
37757
|
break e;
|
|
37753
37758
|
}
|
|
37754
37759
|
if (d2 >>>= y2, p -= y2, (y2 = s2 - a) < k2) {
|
|
37755
|
-
if (
|
|
37760
|
+
if (l3 < (y2 = k2 - y2) && r22.sane) {
|
|
37756
37761
|
e2.msg = "invalid distance too far back", r22.mode = 30;
|
|
37757
37762
|
break e;
|
|
37758
37763
|
}
|
|
37759
|
-
if (S2 = c2, (
|
|
37760
|
-
if (
|
|
37761
|
-
for (w2 -= y2; C2[s2++] = c2[
|
|
37762
|
-
|
|
37764
|
+
if (S2 = c2, (x = 0) === f2) {
|
|
37765
|
+
if (x += u - y2, y2 < w2) {
|
|
37766
|
+
for (w2 -= y2; C2[s2++] = c2[x++], --y2; ) ;
|
|
37767
|
+
x = s2 - k2, S2 = C2;
|
|
37763
37768
|
}
|
|
37764
37769
|
} else if (f2 < y2) {
|
|
37765
|
-
if (
|
|
37766
|
-
for (w2 -= y2; C2[s2++] = c2[
|
|
37767
|
-
if (
|
|
37768
|
-
for (w2 -= y2 = f2; C2[s2++] = c2[
|
|
37769
|
-
|
|
37770
|
+
if (x += u + f2 - y2, (y2 -= f2) < w2) {
|
|
37771
|
+
for (w2 -= y2; C2[s2++] = c2[x++], --y2; ) ;
|
|
37772
|
+
if (x = 0, f2 < w2) {
|
|
37773
|
+
for (w2 -= y2 = f2; C2[s2++] = c2[x++], --y2; ) ;
|
|
37774
|
+
x = s2 - k2, S2 = C2;
|
|
37770
37775
|
}
|
|
37771
37776
|
}
|
|
37772
|
-
} else if (
|
|
37773
|
-
for (w2 -= y2; C2[s2++] = c2[
|
|
37774
|
-
|
|
37777
|
+
} else if (x += f2 - y2, y2 < w2) {
|
|
37778
|
+
for (w2 -= y2; C2[s2++] = c2[x++], --y2; ) ;
|
|
37779
|
+
x = s2 - k2, S2 = C2;
|
|
37775
37780
|
}
|
|
37776
|
-
for (; 2 < w2; ) C2[s2++] = S2[
|
|
37777
|
-
w2 && (C2[s2++] = S2[
|
|
37781
|
+
for (; 2 < w2; ) C2[s2++] = S2[x++], C2[s2++] = S2[x++], C2[s2++] = S2[x++], w2 -= 3;
|
|
37782
|
+
w2 && (C2[s2++] = S2[x++], 1 < w2 && (C2[s2++] = S2[x++]));
|
|
37778
37783
|
} else {
|
|
37779
|
-
for (
|
|
37780
|
-
w2 && (C2[s2++] = C2[
|
|
37784
|
+
for (x = s2 - k2; C2[s2++] = C2[x++], C2[s2++] = C2[x++], C2[s2++] = C2[x++], 2 < (w2 -= 3); ) ;
|
|
37785
|
+
w2 && (C2[s2++] = C2[x++], 1 < w2 && (C2[s2++] = C2[x++]));
|
|
37781
37786
|
}
|
|
37782
37787
|
break;
|
|
37783
37788
|
}
|
|
@@ -37788,7 +37793,7 @@ function requireJszip_min() {
|
|
|
37788
37793
|
n -= w2 = p >> 3, d2 &= (1 << (p -= w2 << 3)) - 1, e2.next_in = n, e2.next_out = s2, e2.avail_in = n < i ? i - n + 5 : 5 - (n - i), e2.avail_out = s2 < o ? o - s2 + 257 : 257 - (s2 - o), r22.hold = d2, r22.bits = p;
|
|
37789
37794
|
};
|
|
37790
37795
|
}, {}], 49: [function(e, t, r2) {
|
|
37791
|
-
var I2 = e("../utils/common"),
|
|
37796
|
+
var I2 = e("../utils/common"), O2 = e("./adler32"), B2 = e("./crc32"), R2 = e("./inffast"), T = e("./inftrees"), D2 = 1, F2 = 2, N2 = 0, U2 = -2, P2 = 1, n = 852, i = 592;
|
|
37792
37797
|
function L2(e2) {
|
|
37793
37798
|
return (e2 >>> 24 & 255) + (e2 >>> 8 & 65280) + ((65280 & e2) << 8) + ((255 & e2) << 24);
|
|
37794
37799
|
}
|
|
@@ -37807,68 +37812,68 @@ function requireJszip_min() {
|
|
|
37807
37812
|
var r22, n2;
|
|
37808
37813
|
return e2 && e2.state ? (n2 = e2.state, t2 < 0 ? (r22 = 0, t2 = -t2) : (r22 = 1 + (t2 >> 4), t2 < 48 && (t2 &= 15)), t2 && (t2 < 8 || 15 < t2) ? U2 : (null !== n2.window && n2.wbits !== t2 && (n2.window = null), n2.wrap = r22, n2.wbits = t2, o(e2))) : U2;
|
|
37809
37814
|
}
|
|
37810
|
-
function
|
|
37815
|
+
function u(e2, t2) {
|
|
37811
37816
|
var r22, n2;
|
|
37812
37817
|
return e2 ? (n2 = new s2(), (e2.state = n2).window = null, (r22 = h2(e2, t2)) !== N2 && (e2.state = null), r22) : U2;
|
|
37813
37818
|
}
|
|
37814
|
-
var
|
|
37819
|
+
var l3, f2, c2 = true;
|
|
37815
37820
|
function j2(e2) {
|
|
37816
37821
|
if (c2) {
|
|
37817
37822
|
var t2;
|
|
37818
|
-
for (
|
|
37823
|
+
for (l3 = new I2.Buf32(512), f2 = new I2.Buf32(32), t2 = 0; t2 < 144; ) e2.lens[t2++] = 8;
|
|
37819
37824
|
for (; t2 < 256; ) e2.lens[t2++] = 9;
|
|
37820
37825
|
for (; t2 < 280; ) e2.lens[t2++] = 7;
|
|
37821
37826
|
for (; t2 < 288; ) e2.lens[t2++] = 8;
|
|
37822
|
-
for (
|
|
37823
|
-
|
|
37827
|
+
for (T(D2, e2.lens, 0, 288, l3, 0, e2.work, { bits: 9 }), t2 = 0; t2 < 32; ) e2.lens[t2++] = 5;
|
|
37828
|
+
T(F2, e2.lens, 0, 32, f2, 0, e2.work, { bits: 5 }), c2 = false;
|
|
37824
37829
|
}
|
|
37825
|
-
e2.lencode =
|
|
37830
|
+
e2.lencode = l3, e2.lenbits = 9, e2.distcode = f2, e2.distbits = 5;
|
|
37826
37831
|
}
|
|
37827
37832
|
function Z(e2, t2, r22, n2) {
|
|
37828
37833
|
var i2, s22 = e2.state;
|
|
37829
37834
|
return null === s22.window && (s22.wsize = 1 << s22.wbits, s22.wnext = 0, s22.whave = 0, s22.window = new I2.Buf8(s22.wsize)), n2 >= s22.wsize ? (I2.arraySet(s22.window, t2, r22 - s22.wsize, s22.wsize, 0), s22.wnext = 0, s22.whave = s22.wsize) : (n2 < (i2 = s22.wsize - s22.wnext) && (i2 = n2), I2.arraySet(s22.window, t2, r22 - n2, i2, s22.wnext), (n2 -= i2) ? (I2.arraySet(s22.window, t2, r22 - n2, n2, 0), s22.wnext = n2, s22.whave = s22.wsize) : (s22.wnext += i2, s22.wnext === s22.wsize && (s22.wnext = 0), s22.whave < s22.wsize && (s22.whave += i2))), 0;
|
|
37830
37835
|
}
|
|
37831
37836
|
r2.inflateReset = o, r2.inflateReset2 = h2, r2.inflateResetKeep = a, r2.inflateInit = function(e2) {
|
|
37832
|
-
return
|
|
37833
|
-
}, r2.inflateInit2 =
|
|
37834
|
-
var r22, n2, i2, s22, a2, o2, h22,
|
|
37837
|
+
return u(e2, 15);
|
|
37838
|
+
}, r2.inflateInit2 = u, r2.inflate = function(e2, t2) {
|
|
37839
|
+
var r22, n2, i2, s22, a2, o2, h22, u2, l22, f22, c22, d2, p, m2, _2, g, b2, v2, y2, w2, k2, x, S2, z2, C2 = 0, E2 = new I2.Buf8(4), A2 = [16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15];
|
|
37835
37840
|
if (!e2 || !e2.state || !e2.output || !e2.input && 0 !== e2.avail_in) return U2;
|
|
37836
|
-
12 === (r22 = e2.state).mode && (r22.mode = 13), a2 = e2.next_out, i2 = e2.output, h22 = e2.avail_out, s22 = e2.next_in, n2 = e2.input, o2 = e2.avail_in,
|
|
37841
|
+
12 === (r22 = e2.state).mode && (r22.mode = 13), a2 = e2.next_out, i2 = e2.output, h22 = e2.avail_out, s22 = e2.next_in, n2 = e2.input, o2 = e2.avail_in, u2 = r22.hold, l22 = r22.bits, f22 = o2, c22 = h22, x = N2;
|
|
37837
37842
|
e: for (; ; ) switch (r22.mode) {
|
|
37838
37843
|
case P2:
|
|
37839
37844
|
if (0 === r22.wrap) {
|
|
37840
37845
|
r22.mode = 13;
|
|
37841
37846
|
break;
|
|
37842
37847
|
}
|
|
37843
|
-
for (;
|
|
37848
|
+
for (; l22 < 16; ) {
|
|
37844
37849
|
if (0 === o2) break e;
|
|
37845
|
-
o2--,
|
|
37850
|
+
o2--, u2 += n2[s22++] << l22, l22 += 8;
|
|
37846
37851
|
}
|
|
37847
|
-
if (2 & r22.wrap && 35615 ===
|
|
37848
|
-
E2[r22.check = 0] = 255 &
|
|
37852
|
+
if (2 & r22.wrap && 35615 === u2) {
|
|
37853
|
+
E2[r22.check = 0] = 255 & u2, E2[1] = u2 >>> 8 & 255, r22.check = B2(r22.check, E2, 2, 0), l22 = u2 = 0, r22.mode = 2;
|
|
37849
37854
|
break;
|
|
37850
37855
|
}
|
|
37851
|
-
if (r22.flags = 0, r22.head && (r22.head.done = false), !(1 & r22.wrap) || (((255 &
|
|
37856
|
+
if (r22.flags = 0, r22.head && (r22.head.done = false), !(1 & r22.wrap) || (((255 & u2) << 8) + (u2 >> 8)) % 31) {
|
|
37852
37857
|
e2.msg = "incorrect header check", r22.mode = 30;
|
|
37853
37858
|
break;
|
|
37854
37859
|
}
|
|
37855
|
-
if (8 != (15 &
|
|
37860
|
+
if (8 != (15 & u2)) {
|
|
37856
37861
|
e2.msg = "unknown compression method", r22.mode = 30;
|
|
37857
37862
|
break;
|
|
37858
37863
|
}
|
|
37859
|
-
if (
|
|
37864
|
+
if (l22 -= 4, k2 = 8 + (15 & (u2 >>>= 4)), 0 === r22.wbits) r22.wbits = k2;
|
|
37860
37865
|
else if (k2 > r22.wbits) {
|
|
37861
37866
|
e2.msg = "invalid window size", r22.mode = 30;
|
|
37862
37867
|
break;
|
|
37863
37868
|
}
|
|
37864
|
-
r22.dmax = 1 << k2, e2.adler = r22.check = 1, r22.mode = 512 &
|
|
37869
|
+
r22.dmax = 1 << k2, e2.adler = r22.check = 1, r22.mode = 512 & u2 ? 10 : 12, l22 = u2 = 0;
|
|
37865
37870
|
break;
|
|
37866
37871
|
case 2:
|
|
37867
|
-
for (;
|
|
37872
|
+
for (; l22 < 16; ) {
|
|
37868
37873
|
if (0 === o2) break e;
|
|
37869
|
-
o2--,
|
|
37874
|
+
o2--, u2 += n2[s22++] << l22, l22 += 8;
|
|
37870
37875
|
}
|
|
37871
|
-
if (r22.flags =
|
|
37876
|
+
if (r22.flags = u2, 8 != (255 & r22.flags)) {
|
|
37872
37877
|
e2.msg = "unknown compression method", r22.mode = 30;
|
|
37873
37878
|
break;
|
|
37874
37879
|
}
|
|
@@ -37876,26 +37881,26 @@ function requireJszip_min() {
|
|
|
37876
37881
|
e2.msg = "unknown header flags set", r22.mode = 30;
|
|
37877
37882
|
break;
|
|
37878
37883
|
}
|
|
37879
|
-
r22.head && (r22.head.text =
|
|
37884
|
+
r22.head && (r22.head.text = u2 >> 8 & 1), 512 & r22.flags && (E2[0] = 255 & u2, E2[1] = u2 >>> 8 & 255, r22.check = B2(r22.check, E2, 2, 0)), l22 = u2 = 0, r22.mode = 3;
|
|
37880
37885
|
case 3:
|
|
37881
|
-
for (;
|
|
37886
|
+
for (; l22 < 32; ) {
|
|
37882
37887
|
if (0 === o2) break e;
|
|
37883
|
-
o2--,
|
|
37888
|
+
o2--, u2 += n2[s22++] << l22, l22 += 8;
|
|
37884
37889
|
}
|
|
37885
|
-
r22.head && (r22.head.time =
|
|
37890
|
+
r22.head && (r22.head.time = u2), 512 & r22.flags && (E2[0] = 255 & u2, E2[1] = u2 >>> 8 & 255, E2[2] = u2 >>> 16 & 255, E2[3] = u2 >>> 24 & 255, r22.check = B2(r22.check, E2, 4, 0)), l22 = u2 = 0, r22.mode = 4;
|
|
37886
37891
|
case 4:
|
|
37887
|
-
for (;
|
|
37892
|
+
for (; l22 < 16; ) {
|
|
37888
37893
|
if (0 === o2) break e;
|
|
37889
|
-
o2--,
|
|
37894
|
+
o2--, u2 += n2[s22++] << l22, l22 += 8;
|
|
37890
37895
|
}
|
|
37891
|
-
r22.head && (r22.head.xflags = 255 &
|
|
37896
|
+
r22.head && (r22.head.xflags = 255 & u2, r22.head.os = u2 >> 8), 512 & r22.flags && (E2[0] = 255 & u2, E2[1] = u2 >>> 8 & 255, r22.check = B2(r22.check, E2, 2, 0)), l22 = u2 = 0, r22.mode = 5;
|
|
37892
37897
|
case 5:
|
|
37893
37898
|
if (1024 & r22.flags) {
|
|
37894
|
-
for (;
|
|
37899
|
+
for (; l22 < 16; ) {
|
|
37895
37900
|
if (0 === o2) break e;
|
|
37896
|
-
o2--,
|
|
37901
|
+
o2--, u2 += n2[s22++] << l22, l22 += 8;
|
|
37897
37902
|
}
|
|
37898
|
-
r22.length =
|
|
37903
|
+
r22.length = u2, r22.head && (r22.head.extra_len = u2), 512 & r22.flags && (E2[0] = 255 & u2, E2[1] = u2 >>> 8 & 255, r22.check = B2(r22.check, E2, 2, 0)), l22 = u2 = 0;
|
|
37899
37904
|
} else r22.head && (r22.head.extra = null);
|
|
37900
37905
|
r22.mode = 6;
|
|
37901
37906
|
case 6:
|
|
@@ -37917,45 +37922,45 @@ function requireJszip_min() {
|
|
|
37917
37922
|
r22.mode = 9;
|
|
37918
37923
|
case 9:
|
|
37919
37924
|
if (512 & r22.flags) {
|
|
37920
|
-
for (;
|
|
37925
|
+
for (; l22 < 16; ) {
|
|
37921
37926
|
if (0 === o2) break e;
|
|
37922
|
-
o2--,
|
|
37927
|
+
o2--, u2 += n2[s22++] << l22, l22 += 8;
|
|
37923
37928
|
}
|
|
37924
|
-
if (
|
|
37929
|
+
if (u2 !== (65535 & r22.check)) {
|
|
37925
37930
|
e2.msg = "header crc mismatch", r22.mode = 30;
|
|
37926
37931
|
break;
|
|
37927
37932
|
}
|
|
37928
|
-
|
|
37933
|
+
l22 = u2 = 0;
|
|
37929
37934
|
}
|
|
37930
37935
|
r22.head && (r22.head.hcrc = r22.flags >> 9 & 1, r22.head.done = true), e2.adler = r22.check = 0, r22.mode = 12;
|
|
37931
37936
|
break;
|
|
37932
37937
|
case 10:
|
|
37933
|
-
for (;
|
|
37938
|
+
for (; l22 < 32; ) {
|
|
37934
37939
|
if (0 === o2) break e;
|
|
37935
|
-
o2--,
|
|
37940
|
+
o2--, u2 += n2[s22++] << l22, l22 += 8;
|
|
37936
37941
|
}
|
|
37937
|
-
e2.adler = r22.check = L2(
|
|
37942
|
+
e2.adler = r22.check = L2(u2), l22 = u2 = 0, r22.mode = 11;
|
|
37938
37943
|
case 11:
|
|
37939
|
-
if (0 === r22.havedict) return e2.next_out = a2, e2.avail_out = h22, e2.next_in = s22, e2.avail_in = o2, r22.hold =
|
|
37944
|
+
if (0 === r22.havedict) return e2.next_out = a2, e2.avail_out = h22, e2.next_in = s22, e2.avail_in = o2, r22.hold = u2, r22.bits = l22, 2;
|
|
37940
37945
|
e2.adler = r22.check = 1, r22.mode = 12;
|
|
37941
37946
|
case 12:
|
|
37942
37947
|
if (5 === t2 || 6 === t2) break e;
|
|
37943
37948
|
case 13:
|
|
37944
37949
|
if (r22.last) {
|
|
37945
|
-
|
|
37950
|
+
u2 >>>= 7 & l22, l22 -= 7 & l22, r22.mode = 27;
|
|
37946
37951
|
break;
|
|
37947
37952
|
}
|
|
37948
|
-
for (;
|
|
37953
|
+
for (; l22 < 3; ) {
|
|
37949
37954
|
if (0 === o2) break e;
|
|
37950
|
-
o2--,
|
|
37955
|
+
o2--, u2 += n2[s22++] << l22, l22 += 8;
|
|
37951
37956
|
}
|
|
37952
|
-
switch (r22.last = 1 &
|
|
37957
|
+
switch (r22.last = 1 & u2, l22 -= 1, 3 & (u2 >>>= 1)) {
|
|
37953
37958
|
case 0:
|
|
37954
37959
|
r22.mode = 14;
|
|
37955
37960
|
break;
|
|
37956
37961
|
case 1:
|
|
37957
37962
|
if (j2(r22), r22.mode = 20, 6 !== t2) break;
|
|
37958
|
-
|
|
37963
|
+
u2 >>>= 2, l22 -= 2;
|
|
37959
37964
|
break e;
|
|
37960
37965
|
case 2:
|
|
37961
37966
|
r22.mode = 17;
|
|
@@ -37963,18 +37968,18 @@ function requireJszip_min() {
|
|
|
37963
37968
|
case 3:
|
|
37964
37969
|
e2.msg = "invalid block type", r22.mode = 30;
|
|
37965
37970
|
}
|
|
37966
|
-
|
|
37971
|
+
u2 >>>= 2, l22 -= 2;
|
|
37967
37972
|
break;
|
|
37968
37973
|
case 14:
|
|
37969
|
-
for (
|
|
37974
|
+
for (u2 >>>= 7 & l22, l22 -= 7 & l22; l22 < 32; ) {
|
|
37970
37975
|
if (0 === o2) break e;
|
|
37971
|
-
o2--,
|
|
37976
|
+
o2--, u2 += n2[s22++] << l22, l22 += 8;
|
|
37972
37977
|
}
|
|
37973
|
-
if ((65535 &
|
|
37978
|
+
if ((65535 & u2) != (u2 >>> 16 ^ 65535)) {
|
|
37974
37979
|
e2.msg = "invalid stored block lengths", r22.mode = 30;
|
|
37975
37980
|
break;
|
|
37976
37981
|
}
|
|
37977
|
-
if (r22.length = 65535 &
|
|
37982
|
+
if (r22.length = 65535 & u2, l22 = u2 = 0, r22.mode = 15, 6 === t2) break e;
|
|
37978
37983
|
case 15:
|
|
37979
37984
|
r22.mode = 16;
|
|
37980
37985
|
case 16:
|
|
@@ -37986,59 +37991,59 @@ function requireJszip_min() {
|
|
|
37986
37991
|
r22.mode = 12;
|
|
37987
37992
|
break;
|
|
37988
37993
|
case 17:
|
|
37989
|
-
for (;
|
|
37994
|
+
for (; l22 < 14; ) {
|
|
37990
37995
|
if (0 === o2) break e;
|
|
37991
|
-
o2--,
|
|
37996
|
+
o2--, u2 += n2[s22++] << l22, l22 += 8;
|
|
37992
37997
|
}
|
|
37993
|
-
if (r22.nlen = 257 + (31 &
|
|
37998
|
+
if (r22.nlen = 257 + (31 & u2), u2 >>>= 5, l22 -= 5, r22.ndist = 1 + (31 & u2), u2 >>>= 5, l22 -= 5, r22.ncode = 4 + (15 & u2), u2 >>>= 4, l22 -= 4, 286 < r22.nlen || 30 < r22.ndist) {
|
|
37994
37999
|
e2.msg = "too many length or distance symbols", r22.mode = 30;
|
|
37995
38000
|
break;
|
|
37996
38001
|
}
|
|
37997
38002
|
r22.have = 0, r22.mode = 18;
|
|
37998
38003
|
case 18:
|
|
37999
38004
|
for (; r22.have < r22.ncode; ) {
|
|
38000
|
-
for (;
|
|
38005
|
+
for (; l22 < 3; ) {
|
|
38001
38006
|
if (0 === o2) break e;
|
|
38002
|
-
o2--,
|
|
38007
|
+
o2--, u2 += n2[s22++] << l22, l22 += 8;
|
|
38003
38008
|
}
|
|
38004
|
-
r22.lens[A2[r22.have++]] = 7 &
|
|
38009
|
+
r22.lens[A2[r22.have++]] = 7 & u2, u2 >>>= 3, l22 -= 3;
|
|
38005
38010
|
}
|
|
38006
38011
|
for (; r22.have < 19; ) r22.lens[A2[r22.have++]] = 0;
|
|
38007
|
-
if (r22.lencode = r22.lendyn, r22.lenbits = 7, S2 = { bits: r22.lenbits },
|
|
38012
|
+
if (r22.lencode = r22.lendyn, r22.lenbits = 7, S2 = { bits: r22.lenbits }, x = T(0, r22.lens, 0, 19, r22.lencode, 0, r22.work, S2), r22.lenbits = S2.bits, x) {
|
|
38008
38013
|
e2.msg = "invalid code lengths set", r22.mode = 30;
|
|
38009
38014
|
break;
|
|
38010
38015
|
}
|
|
38011
38016
|
r22.have = 0, r22.mode = 19;
|
|
38012
38017
|
case 19:
|
|
38013
38018
|
for (; r22.have < r22.nlen + r22.ndist; ) {
|
|
38014
|
-
for (; g = (C2 = r22.lencode[
|
|
38019
|
+
for (; g = (C2 = r22.lencode[u2 & (1 << r22.lenbits) - 1]) >>> 16 & 255, b2 = 65535 & C2, !((_2 = C2 >>> 24) <= l22); ) {
|
|
38015
38020
|
if (0 === o2) break e;
|
|
38016
|
-
o2--,
|
|
38021
|
+
o2--, u2 += n2[s22++] << l22, l22 += 8;
|
|
38017
38022
|
}
|
|
38018
|
-
if (b2 < 16)
|
|
38023
|
+
if (b2 < 16) u2 >>>= _2, l22 -= _2, r22.lens[r22.have++] = b2;
|
|
38019
38024
|
else {
|
|
38020
38025
|
if (16 === b2) {
|
|
38021
|
-
for (z2 = _2 + 2;
|
|
38026
|
+
for (z2 = _2 + 2; l22 < z2; ) {
|
|
38022
38027
|
if (0 === o2) break e;
|
|
38023
|
-
o2--,
|
|
38028
|
+
o2--, u2 += n2[s22++] << l22, l22 += 8;
|
|
38024
38029
|
}
|
|
38025
|
-
if (
|
|
38030
|
+
if (u2 >>>= _2, l22 -= _2, 0 === r22.have) {
|
|
38026
38031
|
e2.msg = "invalid bit length repeat", r22.mode = 30;
|
|
38027
38032
|
break;
|
|
38028
38033
|
}
|
|
38029
|
-
k2 = r22.lens[r22.have - 1], d2 = 3 + (3 &
|
|
38034
|
+
k2 = r22.lens[r22.have - 1], d2 = 3 + (3 & u2), u2 >>>= 2, l22 -= 2;
|
|
38030
38035
|
} else if (17 === b2) {
|
|
38031
|
-
for (z2 = _2 + 3;
|
|
38036
|
+
for (z2 = _2 + 3; l22 < z2; ) {
|
|
38032
38037
|
if (0 === o2) break e;
|
|
38033
|
-
o2--,
|
|
38038
|
+
o2--, u2 += n2[s22++] << l22, l22 += 8;
|
|
38034
38039
|
}
|
|
38035
|
-
|
|
38040
|
+
l22 -= _2, k2 = 0, d2 = 3 + (7 & (u2 >>>= _2)), u2 >>>= 3, l22 -= 3;
|
|
38036
38041
|
} else {
|
|
38037
|
-
for (z2 = _2 + 7;
|
|
38042
|
+
for (z2 = _2 + 7; l22 < z2; ) {
|
|
38038
38043
|
if (0 === o2) break e;
|
|
38039
|
-
o2--,
|
|
38044
|
+
o2--, u2 += n2[s22++] << l22, l22 += 8;
|
|
38040
38045
|
}
|
|
38041
|
-
|
|
38046
|
+
l22 -= _2, k2 = 0, d2 = 11 + (127 & (u2 >>>= _2)), u2 >>>= 7, l22 -= 7;
|
|
38042
38047
|
}
|
|
38043
38048
|
if (r22.have + d2 > r22.nlen + r22.ndist) {
|
|
38044
38049
|
e2.msg = "invalid bit length repeat", r22.mode = 30;
|
|
@@ -38052,11 +38057,11 @@ function requireJszip_min() {
|
|
|
38052
38057
|
e2.msg = "invalid code -- missing end-of-block", r22.mode = 30;
|
|
38053
38058
|
break;
|
|
38054
38059
|
}
|
|
38055
|
-
if (r22.lenbits = 9, S2 = { bits: r22.lenbits },
|
|
38060
|
+
if (r22.lenbits = 9, S2 = { bits: r22.lenbits }, x = T(D2, r22.lens, 0, r22.nlen, r22.lencode, 0, r22.work, S2), r22.lenbits = S2.bits, x) {
|
|
38056
38061
|
e2.msg = "invalid literal/lengths set", r22.mode = 30;
|
|
38057
38062
|
break;
|
|
38058
38063
|
}
|
|
38059
|
-
if (r22.distbits = 6, r22.distcode = r22.distdyn, S2 = { bits: r22.distbits },
|
|
38064
|
+
if (r22.distbits = 6, r22.distcode = r22.distdyn, S2 = { bits: r22.distbits }, x = T(F2, r22.lens, r22.nlen, r22.ndist, r22.distcode, 0, r22.work, S2), r22.distbits = S2.bits, x) {
|
|
38060
38065
|
e2.msg = "invalid distances set", r22.mode = 30;
|
|
38061
38066
|
break;
|
|
38062
38067
|
}
|
|
@@ -38065,21 +38070,21 @@ function requireJszip_min() {
|
|
|
38065
38070
|
r22.mode = 21;
|
|
38066
38071
|
case 21:
|
|
38067
38072
|
if (6 <= o2 && 258 <= h22) {
|
|
38068
|
-
e2.next_out = a2, e2.avail_out = h22, e2.next_in = s22, e2.avail_in = o2, r22.hold =
|
|
38073
|
+
e2.next_out = a2, e2.avail_out = h22, e2.next_in = s22, e2.avail_in = o2, r22.hold = u2, r22.bits = l22, R2(e2, c22), a2 = e2.next_out, i2 = e2.output, h22 = e2.avail_out, s22 = e2.next_in, n2 = e2.input, o2 = e2.avail_in, u2 = r22.hold, l22 = r22.bits, 12 === r22.mode && (r22.back = -1);
|
|
38069
38074
|
break;
|
|
38070
38075
|
}
|
|
38071
|
-
for (r22.back = 0; g = (C2 = r22.lencode[
|
|
38076
|
+
for (r22.back = 0; g = (C2 = r22.lencode[u2 & (1 << r22.lenbits) - 1]) >>> 16 & 255, b2 = 65535 & C2, !((_2 = C2 >>> 24) <= l22); ) {
|
|
38072
38077
|
if (0 === o2) break e;
|
|
38073
|
-
o2--,
|
|
38078
|
+
o2--, u2 += n2[s22++] << l22, l22 += 8;
|
|
38074
38079
|
}
|
|
38075
38080
|
if (g && 0 == (240 & g)) {
|
|
38076
|
-
for (v2 = _2, y2 = g, w2 = b2; g = (C2 = r22.lencode[w2 + ((
|
|
38081
|
+
for (v2 = _2, y2 = g, w2 = b2; g = (C2 = r22.lencode[w2 + ((u2 & (1 << v2 + y2) - 1) >> v2)]) >>> 16 & 255, b2 = 65535 & C2, !(v2 + (_2 = C2 >>> 24) <= l22); ) {
|
|
38077
38082
|
if (0 === o2) break e;
|
|
38078
|
-
o2--,
|
|
38083
|
+
o2--, u2 += n2[s22++] << l22, l22 += 8;
|
|
38079
38084
|
}
|
|
38080
|
-
|
|
38085
|
+
u2 >>>= v2, l22 -= v2, r22.back += v2;
|
|
38081
38086
|
}
|
|
38082
|
-
if (
|
|
38087
|
+
if (u2 >>>= _2, l22 -= _2, r22.back += _2, r22.length = b2, 0 === g) {
|
|
38083
38088
|
r22.mode = 26;
|
|
38084
38089
|
break;
|
|
38085
38090
|
}
|
|
@@ -38094,37 +38099,37 @@ function requireJszip_min() {
|
|
|
38094
38099
|
r22.extra = 15 & g, r22.mode = 22;
|
|
38095
38100
|
case 22:
|
|
38096
38101
|
if (r22.extra) {
|
|
38097
|
-
for (z2 = r22.extra;
|
|
38102
|
+
for (z2 = r22.extra; l22 < z2; ) {
|
|
38098
38103
|
if (0 === o2) break e;
|
|
38099
|
-
o2--,
|
|
38104
|
+
o2--, u2 += n2[s22++] << l22, l22 += 8;
|
|
38100
38105
|
}
|
|
38101
|
-
r22.length +=
|
|
38106
|
+
r22.length += u2 & (1 << r22.extra) - 1, u2 >>>= r22.extra, l22 -= r22.extra, r22.back += r22.extra;
|
|
38102
38107
|
}
|
|
38103
38108
|
r22.was = r22.length, r22.mode = 23;
|
|
38104
38109
|
case 23:
|
|
38105
|
-
for (; g = (C2 = r22.distcode[
|
|
38110
|
+
for (; g = (C2 = r22.distcode[u2 & (1 << r22.distbits) - 1]) >>> 16 & 255, b2 = 65535 & C2, !((_2 = C2 >>> 24) <= l22); ) {
|
|
38106
38111
|
if (0 === o2) break e;
|
|
38107
|
-
o2--,
|
|
38112
|
+
o2--, u2 += n2[s22++] << l22, l22 += 8;
|
|
38108
38113
|
}
|
|
38109
38114
|
if (0 == (240 & g)) {
|
|
38110
|
-
for (v2 = _2, y2 = g, w2 = b2; g = (C2 = r22.distcode[w2 + ((
|
|
38115
|
+
for (v2 = _2, y2 = g, w2 = b2; g = (C2 = r22.distcode[w2 + ((u2 & (1 << v2 + y2) - 1) >> v2)]) >>> 16 & 255, b2 = 65535 & C2, !(v2 + (_2 = C2 >>> 24) <= l22); ) {
|
|
38111
38116
|
if (0 === o2) break e;
|
|
38112
|
-
o2--,
|
|
38117
|
+
o2--, u2 += n2[s22++] << l22, l22 += 8;
|
|
38113
38118
|
}
|
|
38114
|
-
|
|
38119
|
+
u2 >>>= v2, l22 -= v2, r22.back += v2;
|
|
38115
38120
|
}
|
|
38116
|
-
if (
|
|
38121
|
+
if (u2 >>>= _2, l22 -= _2, r22.back += _2, 64 & g) {
|
|
38117
38122
|
e2.msg = "invalid distance code", r22.mode = 30;
|
|
38118
38123
|
break;
|
|
38119
38124
|
}
|
|
38120
38125
|
r22.offset = b2, r22.extra = 15 & g, r22.mode = 24;
|
|
38121
38126
|
case 24:
|
|
38122
38127
|
if (r22.extra) {
|
|
38123
|
-
for (z2 = r22.extra;
|
|
38128
|
+
for (z2 = r22.extra; l22 < z2; ) {
|
|
38124
38129
|
if (0 === o2) break e;
|
|
38125
|
-
o2--,
|
|
38130
|
+
o2--, u2 += n2[s22++] << l22, l22 += 8;
|
|
38126
38131
|
}
|
|
38127
|
-
r22.offset +=
|
|
38132
|
+
r22.offset += u2 & (1 << r22.extra) - 1, u2 >>>= r22.extra, l22 -= r22.extra, r22.back += r22.extra;
|
|
38128
38133
|
}
|
|
38129
38134
|
if (r22.offset > r22.dmax) {
|
|
38130
38135
|
e2.msg = "invalid distance too far back", r22.mode = 30;
|
|
@@ -38149,35 +38154,35 @@ function requireJszip_min() {
|
|
|
38149
38154
|
break;
|
|
38150
38155
|
case 27:
|
|
38151
38156
|
if (r22.wrap) {
|
|
38152
|
-
for (;
|
|
38157
|
+
for (; l22 < 32; ) {
|
|
38153
38158
|
if (0 === o2) break e;
|
|
38154
|
-
o2--,
|
|
38159
|
+
o2--, u2 |= n2[s22++] << l22, l22 += 8;
|
|
38155
38160
|
}
|
|
38156
|
-
if (c22 -= h22, e2.total_out += c22, r22.total += c22, c22 && (e2.adler = r22.check = r22.flags ? B2(r22.check, i2, c22, a2 - c22) :
|
|
38161
|
+
if (c22 -= h22, e2.total_out += c22, r22.total += c22, c22 && (e2.adler = r22.check = r22.flags ? B2(r22.check, i2, c22, a2 - c22) : O2(r22.check, i2, c22, a2 - c22)), c22 = h22, (r22.flags ? u2 : L2(u2)) !== r22.check) {
|
|
38157
38162
|
e2.msg = "incorrect data check", r22.mode = 30;
|
|
38158
38163
|
break;
|
|
38159
38164
|
}
|
|
38160
|
-
|
|
38165
|
+
l22 = u2 = 0;
|
|
38161
38166
|
}
|
|
38162
38167
|
r22.mode = 28;
|
|
38163
38168
|
case 28:
|
|
38164
38169
|
if (r22.wrap && r22.flags) {
|
|
38165
|
-
for (;
|
|
38170
|
+
for (; l22 < 32; ) {
|
|
38166
38171
|
if (0 === o2) break e;
|
|
38167
|
-
o2--,
|
|
38172
|
+
o2--, u2 += n2[s22++] << l22, l22 += 8;
|
|
38168
38173
|
}
|
|
38169
|
-
if (
|
|
38174
|
+
if (u2 !== (4294967295 & r22.total)) {
|
|
38170
38175
|
e2.msg = "incorrect length check", r22.mode = 30;
|
|
38171
38176
|
break;
|
|
38172
38177
|
}
|
|
38173
|
-
|
|
38178
|
+
l22 = u2 = 0;
|
|
38174
38179
|
}
|
|
38175
38180
|
r22.mode = 29;
|
|
38176
38181
|
case 29:
|
|
38177
|
-
|
|
38182
|
+
x = 1;
|
|
38178
38183
|
break e;
|
|
38179
38184
|
case 30:
|
|
38180
|
-
|
|
38185
|
+
x = -3;
|
|
38181
38186
|
break e;
|
|
38182
38187
|
case 31:
|
|
38183
38188
|
return -4;
|
|
@@ -38185,7 +38190,7 @@ function requireJszip_min() {
|
|
|
38185
38190
|
default:
|
|
38186
38191
|
return U2;
|
|
38187
38192
|
}
|
|
38188
|
-
return e2.next_out = a2, e2.avail_out = h22, e2.next_in = s22, e2.avail_in = o2, r22.hold =
|
|
38193
|
+
return e2.next_out = a2, e2.avail_out = h22, e2.next_in = s22, e2.avail_in = o2, r22.hold = u2, r22.bits = l22, (r22.wsize || c22 !== e2.avail_out && r22.mode < 30 && (r22.mode < 27 || 4 !== t2)) && Z(e2, e2.output, e2.next_out, c22 - e2.avail_out) ? (r22.mode = 31, -4) : (f22 -= e2.avail_in, c22 -= e2.avail_out, e2.total_in += f22, e2.total_out += c22, r22.total += c22, r22.wrap && c22 && (e2.adler = r22.check = r22.flags ? B2(r22.check, i2, c22, e2.next_out - c22) : O2(r22.check, i2, c22, e2.next_out - c22)), e2.data_type = r22.bits + (r22.last ? 64 : 0) + (12 === r22.mode ? 128 : 0) + (20 === r22.mode || 15 === r22.mode ? 256 : 0), (0 == f22 && 0 === c22 || 4 === t2) && x === N2 && (x = -5), x);
|
|
38189
38194
|
}, r2.inflateEnd = function(e2) {
|
|
38190
38195
|
if (!e2 || !e2.state) return U2;
|
|
38191
38196
|
var t2 = e2.state;
|
|
@@ -38195,33 +38200,33 @@ function requireJszip_min() {
|
|
|
38195
38200
|
return e2 && e2.state ? 0 == (2 & (r22 = e2.state).wrap) ? U2 : ((r22.head = t2).done = false, N2) : U2;
|
|
38196
38201
|
}, r2.inflateSetDictionary = function(e2, t2) {
|
|
38197
38202
|
var r22, n2 = t2.length;
|
|
38198
|
-
return e2 && e2.state ? 0 !== (r22 = e2.state).wrap && 11 !== r22.mode ? U2 : 11 === r22.mode &&
|
|
38203
|
+
return e2 && e2.state ? 0 !== (r22 = e2.state).wrap && 11 !== r22.mode ? U2 : 11 === r22.mode && O2(1, t2, n2, 0) !== r22.check ? -3 : Z(e2, t2, n2, n2) ? (r22.mode = 31, -4) : (r22.havedict = 1, N2) : U2;
|
|
38199
38204
|
}, r2.inflateInfo = "pako inflate (from Nodeca project)";
|
|
38200
38205
|
}, { "../utils/common": 41, "./adler32": 43, "./crc32": 45, "./inffast": 48, "./inftrees": 50 }], 50: [function(e, t, r2) {
|
|
38201
38206
|
var D2 = e("../utils/common"), F2 = [3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0], N2 = [16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 18, 18, 18, 18, 19, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 16, 72, 78], U2 = [1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577, 0, 0], P2 = [16, 16, 16, 16, 17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22, 23, 23, 24, 24, 25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 64, 64];
|
|
38202
38207
|
t.exports = function(e2, t2, r22, n, i, s2, a, o) {
|
|
38203
|
-
var h2,
|
|
38204
|
-
for (b2 = 0; b2 <= 15; b2++)
|
|
38205
|
-
for (v2 = 0; v2 < n; v2++)
|
|
38206
|
-
for (k2 = g, w2 = 15; 1 <= w2 && 0 ===
|
|
38208
|
+
var h2, u, l3, f2, c2, d2, p, m2, _2, g = o.bits, b2 = 0, v2 = 0, y2 = 0, w2 = 0, k2 = 0, x = 0, S2 = 0, z2 = 0, C2 = 0, E2 = 0, A2 = null, I2 = 0, O2 = new D2.Buf16(16), B2 = new D2.Buf16(16), R2 = null, T = 0;
|
|
38209
|
+
for (b2 = 0; b2 <= 15; b2++) O2[b2] = 0;
|
|
38210
|
+
for (v2 = 0; v2 < n; v2++) O2[t2[r22 + v2]]++;
|
|
38211
|
+
for (k2 = g, w2 = 15; 1 <= w2 && 0 === O2[w2]; w2--) ;
|
|
38207
38212
|
if (w2 < k2 && (k2 = w2), 0 === w2) return i[s2++] = 20971520, i[s2++] = 20971520, o.bits = 1, 0;
|
|
38208
|
-
for (y2 = 1; y2 < w2 && 0 ===
|
|
38209
|
-
for (k2 < y2 && (k2 = y2), b2 = z2 = 1; b2 <= 15; b2++) if (z2 <<= 1, (z2 -=
|
|
38213
|
+
for (y2 = 1; y2 < w2 && 0 === O2[y2]; y2++) ;
|
|
38214
|
+
for (k2 < y2 && (k2 = y2), b2 = z2 = 1; b2 <= 15; b2++) if (z2 <<= 1, (z2 -= O2[b2]) < 0) return -1;
|
|
38210
38215
|
if (0 < z2 && (0 === e2 || 1 !== w2)) return -1;
|
|
38211
|
-
for (B2[1] = 0, b2 = 1; b2 < 15; b2++) B2[b2 + 1] = B2[b2] +
|
|
38216
|
+
for (B2[1] = 0, b2 = 1; b2 < 15; b2++) B2[b2 + 1] = B2[b2] + O2[b2];
|
|
38212
38217
|
for (v2 = 0; v2 < n; v2++) 0 !== t2[r22 + v2] && (a[B2[t2[r22 + v2]]++] = v2);
|
|
38213
|
-
if (d2 = 0 === e2 ? (A2 =
|
|
38218
|
+
if (d2 = 0 === e2 ? (A2 = R2 = a, 19) : 1 === e2 ? (A2 = F2, I2 -= 257, R2 = N2, T -= 257, 256) : (A2 = U2, R2 = P2, -1), b2 = y2, c2 = s2, S2 = v2 = E2 = 0, l3 = -1, f2 = (C2 = 1 << (x = k2)) - 1, 1 === e2 && 852 < C2 || 2 === e2 && 592 < C2) return 1;
|
|
38214
38219
|
for (; ; ) {
|
|
38215
|
-
for (p = b2 - S2, _2 = a[v2] < d2 ? (m2 = 0, a[v2]) : a[v2] > d2 ? (m2 =
|
|
38220
|
+
for (p = b2 - S2, _2 = a[v2] < d2 ? (m2 = 0, a[v2]) : a[v2] > d2 ? (m2 = R2[T + a[v2]], A2[I2 + a[v2]]) : (m2 = 96, 0), h2 = 1 << b2 - S2, y2 = u = 1 << x; i[c2 + (E2 >> S2) + (u -= h2)] = p << 24 | m2 << 16 | _2 | 0, 0 !== u; ) ;
|
|
38216
38221
|
for (h2 = 1 << b2 - 1; E2 & h2; ) h2 >>= 1;
|
|
38217
|
-
if (0 !== h2 ? (E2 &= h2 - 1, E2 += h2) : E2 = 0, v2++, 0 == --
|
|
38222
|
+
if (0 !== h2 ? (E2 &= h2 - 1, E2 += h2) : E2 = 0, v2++, 0 == --O2[b2]) {
|
|
38218
38223
|
if (b2 === w2) break;
|
|
38219
38224
|
b2 = t2[r22 + a[v2]];
|
|
38220
38225
|
}
|
|
38221
|
-
if (k2 < b2 && (E2 & f2) !==
|
|
38222
|
-
for (0 === S2 && (S2 = k2), c2 += y2, z2 = 1 << (
|
|
38223
|
-
if (C2 += 1 <<
|
|
38224
|
-
i[
|
|
38226
|
+
if (k2 < b2 && (E2 & f2) !== l3) {
|
|
38227
|
+
for (0 === S2 && (S2 = k2), c2 += y2, z2 = 1 << (x = b2 - S2); x + S2 < w2 && !((z2 -= O2[x + S2]) <= 0); ) x++, z2 <<= 1;
|
|
38228
|
+
if (C2 += 1 << x, 1 === e2 && 852 < C2 || 2 === e2 && 592 < C2) return 1;
|
|
38229
|
+
i[l3 = E2 & f2] = k2 << 24 | x << 16 | c2 - s2 | 0;
|
|
38225
38230
|
}
|
|
38226
38231
|
}
|
|
38227
38232
|
return 0 !== E2 && (i[c2 + E2] = b2 - S2 << 24 | 64 << 16 | 0), o.bits = k2, 0;
|
|
@@ -38233,7 +38238,7 @@ function requireJszip_min() {
|
|
|
38233
38238
|
function n(e2) {
|
|
38234
38239
|
for (var t2 = e2.length; 0 <= --t2; ) e2[t2] = 0;
|
|
38235
38240
|
}
|
|
38236
|
-
var s2 = 0, a = 29,
|
|
38241
|
+
var s2 = 0, a = 29, u = 256, l3 = u + 1 + a, f2 = 30, c2 = 19, _2 = 2 * l3 + 1, g = 15, d2 = 16, p = 7, m2 = 256, b2 = 16, v2 = 17, y2 = 18, w2 = [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0], k2 = [0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13], x = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 7], S2 = [16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15], z2 = new Array(2 * (l3 + 2));
|
|
38237
38242
|
n(z2);
|
|
38238
38243
|
var C2 = new Array(2 * f2);
|
|
38239
38244
|
n(C2);
|
|
@@ -38243,7 +38248,7 @@ function requireJszip_min() {
|
|
|
38243
38248
|
n(A2);
|
|
38244
38249
|
var I2 = new Array(a);
|
|
38245
38250
|
n(I2);
|
|
38246
|
-
var
|
|
38251
|
+
var O2, B2, R2, T = new Array(f2);
|
|
38247
38252
|
function D2(e2, t2, r22, n2, i2) {
|
|
38248
38253
|
this.static_tree = e2, this.extra_bits = t2, this.extra_base = r22, this.elems = n2, this.max_length = i2, this.has_stree = e2 && e2.length;
|
|
38249
38254
|
}
|
|
@@ -38276,7 +38281,7 @@ function requireJszip_min() {
|
|
|
38276
38281
|
}
|
|
38277
38282
|
function W2(e2) {
|
|
38278
38283
|
var t2;
|
|
38279
|
-
for (t2 = 0; t2 <
|
|
38284
|
+
for (t2 = 0; t2 < l3; t2++) e2.dyn_ltree[2 * t2] = 0;
|
|
38280
38285
|
for (t2 = 0; t2 < f2; t2++) e2.dyn_dtree[2 * t2] = 0;
|
|
38281
38286
|
for (t2 = 0; t2 < c2; t2++) e2.bl_tree[2 * t2] = 0;
|
|
38282
38287
|
e2.dyn_ltree[2 * m2] = 1, e2.opt_len = e2.static_len = 0, e2.last_lit = e2.matches = 0;
|
|
@@ -38294,41 +38299,41 @@ function requireJszip_min() {
|
|
|
38294
38299
|
}
|
|
38295
38300
|
function K2(e2, t2, r22) {
|
|
38296
38301
|
var n2, i2, s22, a2, o2 = 0;
|
|
38297
|
-
if (0 !== e2.last_lit) for (; n2 = e2.pending_buf[e2.d_buf + 2 * o2] << 8 | e2.pending_buf[e2.d_buf + 2 * o2 + 1], i2 = e2.pending_buf[e2.l_buf + o2], o2++, 0 === n2 ? L2(e2, i2, t2) : (L2(e2, (s22 = A2[i2]) +
|
|
38302
|
+
if (0 !== e2.last_lit) for (; n2 = e2.pending_buf[e2.d_buf + 2 * o2] << 8 | e2.pending_buf[e2.d_buf + 2 * o2 + 1], i2 = e2.pending_buf[e2.l_buf + o2], o2++, 0 === n2 ? L2(e2, i2, t2) : (L2(e2, (s22 = A2[i2]) + u + 1, t2), 0 !== (a2 = w2[s22]) && P2(e2, i2 -= I2[s22], a2), L2(e2, s22 = N2(--n2), r22), 0 !== (a2 = k2[s22]) && P2(e2, n2 -= T[s22], a2)), o2 < e2.last_lit; ) ;
|
|
38298
38303
|
L2(e2, m2, t2);
|
|
38299
38304
|
}
|
|
38300
38305
|
function Y2(e2, t2) {
|
|
38301
|
-
var r22, n2, i2, s22 = t2.dyn_tree, a2 = t2.stat_desc.static_tree, o2 = t2.stat_desc.has_stree, h22 = t2.stat_desc.elems,
|
|
38302
|
-
for (e2.heap_len = 0, e2.heap_max = _2, r22 = 0; r22 < h22; r22++) 0 !== s22[2 * r22] ? (e2.heap[++e2.heap_len] =
|
|
38303
|
-
for (; e2.heap_len < 2; ) s22[2 * (i2 = e2.heap[++e2.heap_len] =
|
|
38304
|
-
for (t2.max_code =
|
|
38306
|
+
var r22, n2, i2, s22 = t2.dyn_tree, a2 = t2.stat_desc.static_tree, o2 = t2.stat_desc.has_stree, h22 = t2.stat_desc.elems, u2 = -1;
|
|
38307
|
+
for (e2.heap_len = 0, e2.heap_max = _2, r22 = 0; r22 < h22; r22++) 0 !== s22[2 * r22] ? (e2.heap[++e2.heap_len] = u2 = r22, e2.depth[r22] = 0) : s22[2 * r22 + 1] = 0;
|
|
38308
|
+
for (; e2.heap_len < 2; ) s22[2 * (i2 = e2.heap[++e2.heap_len] = u2 < 2 ? ++u2 : 0)] = 1, e2.depth[i2] = 0, e2.opt_len--, o2 && (e2.static_len -= a2[2 * i2 + 1]);
|
|
38309
|
+
for (t2.max_code = u2, r22 = e2.heap_len >> 1; 1 <= r22; r22--) G2(e2, s22, r22);
|
|
38305
38310
|
for (i2 = h22; r22 = e2.heap[1], e2.heap[1] = e2.heap[e2.heap_len--], G2(e2, s22, 1), n2 = e2.heap[1], e2.heap[--e2.heap_max] = r22, e2.heap[--e2.heap_max] = n2, s22[2 * i2] = s22[2 * r22] + s22[2 * n2], e2.depth[i2] = (e2.depth[r22] >= e2.depth[n2] ? e2.depth[r22] : e2.depth[n2]) + 1, s22[2 * r22 + 1] = s22[2 * n2 + 1] = i2, e2.heap[1] = i2++, G2(e2, s22, 1), 2 <= e2.heap_len; ) ;
|
|
38306
38311
|
e2.heap[--e2.heap_max] = e2.heap[1], (function(e3, t3) {
|
|
38307
|
-
var r3, n3, i3, s3, a3, o3, h3 = t3.dyn_tree,
|
|
38312
|
+
var r3, n3, i3, s3, a3, o3, h3 = t3.dyn_tree, u3 = t3.max_code, l22 = t3.stat_desc.static_tree, f22 = t3.stat_desc.has_stree, c22 = t3.stat_desc.extra_bits, d22 = t3.stat_desc.extra_base, p2 = t3.stat_desc.max_length, m22 = 0;
|
|
38308
38313
|
for (s3 = 0; s3 <= g; s3++) e3.bl_count[s3] = 0;
|
|
38309
|
-
for (h3[2 * e3.heap[e3.heap_max] + 1] = 0, r3 = e3.heap_max + 1; r3 < _2; r3++) p2 < (s3 = h3[2 * h3[2 * (n3 = e3.heap[r3]) + 1] + 1] + 1) && (s3 = p2, m22++), h3[2 * n3 + 1] = s3,
|
|
38314
|
+
for (h3[2 * e3.heap[e3.heap_max] + 1] = 0, r3 = e3.heap_max + 1; r3 < _2; r3++) p2 < (s3 = h3[2 * h3[2 * (n3 = e3.heap[r3]) + 1] + 1] + 1) && (s3 = p2, m22++), h3[2 * n3 + 1] = s3, u3 < n3 || (e3.bl_count[s3]++, a3 = 0, d22 <= n3 && (a3 = c22[n3 - d22]), o3 = h3[2 * n3], e3.opt_len += o3 * (s3 + a3), f22 && (e3.static_len += o3 * (l22[2 * n3 + 1] + a3)));
|
|
38310
38315
|
if (0 !== m22) {
|
|
38311
38316
|
do {
|
|
38312
38317
|
for (s3 = p2 - 1; 0 === e3.bl_count[s3]; ) s3--;
|
|
38313
38318
|
e3.bl_count[s3]--, e3.bl_count[s3 + 1] += 2, e3.bl_count[p2]--, m22 -= 2;
|
|
38314
38319
|
} while (0 < m22);
|
|
38315
|
-
for (s3 = p2; 0 !== s3; s3--) for (n3 = e3.bl_count[s3]; 0 !== n3; )
|
|
38320
|
+
for (s3 = p2; 0 !== s3; s3--) for (n3 = e3.bl_count[s3]; 0 !== n3; ) u3 < (i3 = e3.heap[--r3]) || (h3[2 * i3 + 1] !== s3 && (e3.opt_len += (s3 - h3[2 * i3 + 1]) * h3[2 * i3], h3[2 * i3 + 1] = s3), n3--);
|
|
38316
38321
|
}
|
|
38317
|
-
})(e2, t2), Z(s22,
|
|
38322
|
+
})(e2, t2), Z(s22, u2, e2.bl_count);
|
|
38318
38323
|
}
|
|
38319
38324
|
function X2(e2, t2, r22) {
|
|
38320
|
-
var n2, i2, s22 = -1, a2 = t2[1], o2 = 0, h22 = 7,
|
|
38321
|
-
for (0 === a2 && (h22 = 138,
|
|
38325
|
+
var n2, i2, s22 = -1, a2 = t2[1], o2 = 0, h22 = 7, u2 = 4;
|
|
38326
|
+
for (0 === a2 && (h22 = 138, u2 = 3), t2[2 * (r22 + 1) + 1] = 65535, n2 = 0; n2 <= r22; n2++) i2 = a2, a2 = t2[2 * (n2 + 1) + 1], ++o2 < h22 && i2 === a2 || (o2 < u2 ? e2.bl_tree[2 * i2] += o2 : 0 !== i2 ? (i2 !== s22 && e2.bl_tree[2 * i2]++, e2.bl_tree[2 * b2]++) : o2 <= 10 ? e2.bl_tree[2 * v2]++ : e2.bl_tree[2 * y2]++, s22 = i2, u2 = (o2 = 0) === a2 ? (h22 = 138, 3) : i2 === a2 ? (h22 = 6, 3) : (h22 = 7, 4));
|
|
38322
38327
|
}
|
|
38323
38328
|
function V2(e2, t2, r22) {
|
|
38324
|
-
var n2, i2, s22 = -1, a2 = t2[1], o2 = 0, h22 = 7,
|
|
38325
|
-
for (0 === a2 && (h22 = 138,
|
|
38326
|
-
if (o2 <
|
|
38329
|
+
var n2, i2, s22 = -1, a2 = t2[1], o2 = 0, h22 = 7, u2 = 4;
|
|
38330
|
+
for (0 === a2 && (h22 = 138, u2 = 3), n2 = 0; n2 <= r22; n2++) if (i2 = a2, a2 = t2[2 * (n2 + 1) + 1], !(++o2 < h22 && i2 === a2)) {
|
|
38331
|
+
if (o2 < u2) for (; L2(e2, i2, e2.bl_tree), 0 != --o2; ) ;
|
|
38327
38332
|
else 0 !== i2 ? (i2 !== s22 && (L2(e2, i2, e2.bl_tree), o2--), L2(e2, b2, e2.bl_tree), P2(e2, o2 - 3, 2)) : o2 <= 10 ? (L2(e2, v2, e2.bl_tree), P2(e2, o2 - 3, 3)) : (L2(e2, y2, e2.bl_tree), P2(e2, o2 - 11, 7));
|
|
38328
|
-
s22 = i2,
|
|
38333
|
+
s22 = i2, u2 = (o2 = 0) === a2 ? (h22 = 138, 3) : i2 === a2 ? (h22 = 6, 3) : (h22 = 7, 4);
|
|
38329
38334
|
}
|
|
38330
38335
|
}
|
|
38331
|
-
n(
|
|
38336
|
+
n(T);
|
|
38332
38337
|
var q2 = false;
|
|
38333
38338
|
function J2(e2, t2, r22, n2) {
|
|
38334
38339
|
P2(e2, (s2 << 1) + (n2 ? 1 : 0), 3), (function(e3, t3, r3, n3) {
|
|
@@ -38339,23 +38344,23 @@ function requireJszip_min() {
|
|
|
38339
38344
|
q2 || ((function() {
|
|
38340
38345
|
var e3, t2, r22, n2, i2, s22 = new Array(g + 1);
|
|
38341
38346
|
for (n2 = r22 = 0; n2 < a - 1; n2++) for (I2[n2] = r22, e3 = 0; e3 < 1 << w2[n2]; e3++) A2[r22++] = n2;
|
|
38342
|
-
for (A2[r22 - 1] = n2, n2 = i2 = 0; n2 < 16; n2++) for (
|
|
38343
|
-
for (i2 >>= 7; n2 < f2; n2++) for (
|
|
38347
|
+
for (A2[r22 - 1] = n2, n2 = i2 = 0; n2 < 16; n2++) for (T[n2] = i2, e3 = 0; e3 < 1 << k2[n2]; e3++) E2[i2++] = n2;
|
|
38348
|
+
for (i2 >>= 7; n2 < f2; n2++) for (T[n2] = i2 << 7, e3 = 0; e3 < 1 << k2[n2] - 7; e3++) E2[256 + i2++] = n2;
|
|
38344
38349
|
for (t2 = 0; t2 <= g; t2++) s22[t2] = 0;
|
|
38345
38350
|
for (e3 = 0; e3 <= 143; ) z2[2 * e3 + 1] = 8, e3++, s22[8]++;
|
|
38346
38351
|
for (; e3 <= 255; ) z2[2 * e3 + 1] = 9, e3++, s22[9]++;
|
|
38347
38352
|
for (; e3 <= 279; ) z2[2 * e3 + 1] = 7, e3++, s22[7]++;
|
|
38348
38353
|
for (; e3 <= 287; ) z2[2 * e3 + 1] = 8, e3++, s22[8]++;
|
|
38349
|
-
for (Z(z2,
|
|
38350
|
-
|
|
38351
|
-
})(), q2 = true), e2.l_desc = new F2(e2.dyn_ltree,
|
|
38354
|
+
for (Z(z2, l3 + 1, s22), e3 = 0; e3 < f2; e3++) C2[2 * e3 + 1] = 5, C2[2 * e3] = j2(e3, 5);
|
|
38355
|
+
O2 = new D2(z2, w2, u + 1, l3, g), B2 = new D2(C2, k2, 0, f2, g), R2 = new D2(new Array(0), x, 0, c2, p);
|
|
38356
|
+
})(), q2 = true), e2.l_desc = new F2(e2.dyn_ltree, O2), e2.d_desc = new F2(e2.dyn_dtree, B2), e2.bl_desc = new F2(e2.bl_tree, R2), e2.bi_buf = 0, e2.bi_valid = 0, W2(e2);
|
|
38352
38357
|
}, r2._tr_stored_block = J2, r2._tr_flush_block = function(e2, t2, r22, n2) {
|
|
38353
38358
|
var i2, s22, a2 = 0;
|
|
38354
38359
|
0 < e2.level ? (2 === e2.strm.data_type && (e2.strm.data_type = (function(e3) {
|
|
38355
38360
|
var t3, r3 = 4093624447;
|
|
38356
38361
|
for (t3 = 0; t3 <= 31; t3++, r3 >>>= 1) if (1 & r3 && 0 !== e3.dyn_ltree[2 * t3]) return o;
|
|
38357
38362
|
if (0 !== e3.dyn_ltree[18] || 0 !== e3.dyn_ltree[20] || 0 !== e3.dyn_ltree[26]) return h2;
|
|
38358
|
-
for (t3 = 32; t3 <
|
|
38363
|
+
for (t3 = 32; t3 < u; t3++) if (0 !== e3.dyn_ltree[2 * t3]) return h2;
|
|
38359
38364
|
return o;
|
|
38360
38365
|
})(e2)), Y2(e2, e2.l_desc), Y2(e2, e2.d_desc), a2 = (function(e3) {
|
|
38361
38366
|
var t3;
|
|
@@ -38367,7 +38372,7 @@ function requireJszip_min() {
|
|
|
38367
38372
|
V2(e3, e3.dyn_ltree, t3 - 1), V2(e3, e3.dyn_dtree, r3 - 1);
|
|
38368
38373
|
})(e2, e2.l_desc.max_code + 1, e2.d_desc.max_code + 1, a2 + 1), K2(e2, e2.dyn_ltree, e2.dyn_dtree)), W2(e2), n2 && M2(e2);
|
|
38369
38374
|
}, r2._tr_tally = function(e2, t2, r22) {
|
|
38370
|
-
return e2.pending_buf[e2.d_buf + 2 * e2.last_lit] = t2 >>> 8 & 255, e2.pending_buf[e2.d_buf + 2 * e2.last_lit + 1] = 255 & t2, e2.pending_buf[e2.l_buf + e2.last_lit] = 255 & r22, e2.last_lit++, 0 === t2 ? e2.dyn_ltree[2 * r22]++ : (e2.matches++, t2--, e2.dyn_ltree[2 * (A2[r22] +
|
|
38375
|
+
return e2.pending_buf[e2.d_buf + 2 * e2.last_lit] = t2 >>> 8 & 255, e2.pending_buf[e2.d_buf + 2 * e2.last_lit + 1] = 255 & t2, e2.pending_buf[e2.l_buf + e2.last_lit] = 255 & r22, e2.last_lit++, 0 === t2 ? e2.dyn_ltree[2 * r22]++ : (e2.matches++, t2--, e2.dyn_ltree[2 * (A2[r22] + u + 1)]++, e2.dyn_dtree[2 * N2(t2)]++), e2.last_lit === e2.lit_bufsize - 1;
|
|
38371
38376
|
}, r2._tr_align = function(e2) {
|
|
38372
38377
|
P2(e2, 2, 3), L2(e2, m2, z2), (function(e3) {
|
|
38373
38378
|
16 === e3.bi_valid ? (U2(e3, e3.bi_buf), e3.bi_buf = 0, e3.bi_valid = 0) : 8 <= e3.bi_valid && (e3.pending_buf[e3.pending++] = 255 & e3.bi_buf, e3.bi_buf >>= 8, e3.bi_valid -= 8);
|
|
@@ -38381,7 +38386,7 @@ function requireJszip_min() {
|
|
|
38381
38386
|
(function(e2) {
|
|
38382
38387
|
!(function(r22, n) {
|
|
38383
38388
|
if (!r22.setImmediate) {
|
|
38384
|
-
var i, s2, t2, a, o = 1, h2 = {},
|
|
38389
|
+
var i, s2, t2, a, o = 1, h2 = {}, u = false, l3 = r22.document, e3 = Object.getPrototypeOf && Object.getPrototypeOf(r22);
|
|
38385
38390
|
e3 = e3 && e3.setTimeout ? e3 : r22, i = "[object process]" === {}.toString.call(r22.process) ? function(e4) {
|
|
38386
38391
|
process$1$1.nextTick(function() {
|
|
38387
38392
|
c2(e4);
|
|
@@ -38399,8 +38404,8 @@ function requireJszip_min() {
|
|
|
38399
38404
|
c2(e4.data);
|
|
38400
38405
|
}, function(e4) {
|
|
38401
38406
|
t2.port2.postMessage(e4);
|
|
38402
|
-
}) :
|
|
38403
|
-
var t3 =
|
|
38407
|
+
}) : l3 && "onreadystatechange" in l3.createElement("script") ? (s2 = l3.documentElement, function(e4) {
|
|
38408
|
+
var t3 = l3.createElement("script");
|
|
38404
38409
|
t3.onreadystatechange = function() {
|
|
38405
38410
|
c2(e4), t3.onreadystatechange = null, s2.removeChild(t3), t3 = null;
|
|
38406
38411
|
}, s2.appendChild(t3);
|
|
@@ -38417,11 +38422,11 @@ function requireJszip_min() {
|
|
|
38417
38422
|
delete h2[e4];
|
|
38418
38423
|
}
|
|
38419
38424
|
function c2(e4) {
|
|
38420
|
-
if (
|
|
38425
|
+
if (u) setTimeout(c2, 0, e4);
|
|
38421
38426
|
else {
|
|
38422
38427
|
var t3 = h2[e4];
|
|
38423
38428
|
if (t3) {
|
|
38424
|
-
|
|
38429
|
+
u = true;
|
|
38425
38430
|
try {
|
|
38426
38431
|
!(function(e5) {
|
|
38427
38432
|
var t4 = e5.callback, r3 = e5.args;
|
|
@@ -38443,7 +38448,7 @@ function requireJszip_min() {
|
|
|
38443
38448
|
}
|
|
38444
38449
|
})(t3);
|
|
38445
38450
|
} finally {
|
|
38446
|
-
f2(e4),
|
|
38451
|
+
f2(e4), u = false;
|
|
38447
38452
|
}
|
|
38448
38453
|
}
|
|
38449
38454
|
}
|
|
@@ -39424,17 +39429,17 @@ function deepActiveElement(doc2) {
|
|
|
39424
39429
|
elt = elt.shadowRoot.activeElement;
|
|
39425
39430
|
return elt;
|
|
39426
39431
|
}
|
|
39427
|
-
function caretFromPoint(doc2,
|
|
39432
|
+
function caretFromPoint(doc2, x, y2) {
|
|
39428
39433
|
if (doc2.caretPositionFromPoint) {
|
|
39429
39434
|
try {
|
|
39430
|
-
let pos = doc2.caretPositionFromPoint(
|
|
39435
|
+
let pos = doc2.caretPositionFromPoint(x, y2);
|
|
39431
39436
|
if (pos)
|
|
39432
39437
|
return { node: pos.offsetNode, offset: Math.min(nodeSize(pos.offsetNode), pos.offset) };
|
|
39433
39438
|
} catch (_2) {
|
|
39434
39439
|
}
|
|
39435
39440
|
}
|
|
39436
39441
|
if (doc2.caretRangeFromPoint) {
|
|
39437
|
-
let range2 = doc2.caretRangeFromPoint(
|
|
39442
|
+
let range2 = doc2.caretRangeFromPoint(x, y2);
|
|
39438
39443
|
if (range2)
|
|
39439
39444
|
return { node: range2.startContainer, offset: Math.min(nodeSize(range2.startContainer), range2.startOffset) };
|
|
39440
39445
|
}
|
|
@@ -39533,8 +39538,8 @@ function scrollRectIntoView(view, rect, startDOM) {
|
|
|
39533
39538
|
function storeScrollPos(view) {
|
|
39534
39539
|
let rect = view.dom.getBoundingClientRect(), startY = Math.max(0, rect.top);
|
|
39535
39540
|
let refDOM, refTop;
|
|
39536
|
-
for (let
|
|
39537
|
-
let dom = view.root.elementFromPoint(
|
|
39541
|
+
for (let x = (rect.left + rect.right) / 2, y2 = startY + 1; y2 < Math.min(innerHeight, rect.bottom); y2 += 5) {
|
|
39542
|
+
let dom = view.root.elementFromPoint(x, y2);
|
|
39538
39543
|
if (!dom || dom == view.dom || !view.dom.contains(dom))
|
|
39539
39544
|
continue;
|
|
39540
39545
|
let localRect = dom.getBoundingClientRect();
|
|
@@ -39830,8 +39835,8 @@ function coordsAtPos(view, pos, side) {
|
|
|
39830
39835
|
function flattenV(rect, left2) {
|
|
39831
39836
|
if (rect.width == 0)
|
|
39832
39837
|
return rect;
|
|
39833
|
-
let
|
|
39834
|
-
return { top: rect.top, bottom: rect.bottom, left:
|
|
39838
|
+
let x = left2 ? rect.left : rect.right;
|
|
39839
|
+
return { top: rect.top, bottom: rect.bottom, left: x, right: x };
|
|
39835
39840
|
}
|
|
39836
39841
|
function flattenH(rect, top2) {
|
|
39837
39842
|
if (rect.height == 0)
|
|
@@ -44838,10 +44843,10 @@ const createTimeoutClass = (clearFunction) => class TT {
|
|
|
44838
44843
|
const Timeout = createTimeoutClass(clearTimeout);
|
|
44839
44844
|
const timeout = (timeout2, callback) => new Timeout(setTimeout(callback, timeout2));
|
|
44840
44845
|
const rotr = (w2, shift2) => w2 >>> shift2 | w2 << 32 - shift2;
|
|
44841
|
-
const sum0to256 = (
|
|
44842
|
-
const sum1to256 = (
|
|
44843
|
-
const sigma0to256 = (
|
|
44844
|
-
const sigma1to256 = (
|
|
44846
|
+
const sum0to256 = (x) => rotr(x, 2) ^ rotr(x, 13) ^ rotr(x, 22);
|
|
44847
|
+
const sum1to256 = (x) => rotr(x, 6) ^ rotr(x, 11) ^ rotr(x, 25);
|
|
44848
|
+
const sigma0to256 = (x) => rotr(x, 7) ^ rotr(x, 18) ^ x >>> 3;
|
|
44849
|
+
const sigma1to256 = (x) => rotr(x, 17) ^ rotr(x, 19) ^ x >>> 10;
|
|
44845
44850
|
const K = new Uint32Array([
|
|
44846
44851
|
1116352408,
|
|
44847
44852
|
1899447441,
|
|
@@ -45670,9 +45675,9 @@ const equalAttrs = (pattrs, yattrs) => {
|
|
|
45670
45675
|
let eq2 = keys2.length === (yattrs == null ? 0 : Object.keys(yattrs).filter((key2) => yattrs[key2] !== null).length);
|
|
45671
45676
|
for (let i = 0; i < keys2.length && eq2; i++) {
|
|
45672
45677
|
const key2 = keys2[i];
|
|
45673
|
-
const
|
|
45678
|
+
const l3 = pattrs[key2];
|
|
45674
45679
|
const r2 = yattrs[key2];
|
|
45675
|
-
eq2 = key2 === "ychange" ||
|
|
45680
|
+
eq2 = key2 === "ychange" || l3 === r2 || isObject$1(l3) && isObject$1(r2) && equalAttrs(l3, r2);
|
|
45676
45681
|
}
|
|
45677
45682
|
return eq2;
|
|
45678
45683
|
};
|
|
@@ -53747,7 +53752,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
|
|
|
53747
53752
|
{ default: remarkStringify },
|
|
53748
53753
|
{ default: remarkGfm }
|
|
53749
53754
|
] = await Promise.all([
|
|
53750
|
-
import("./index-
|
|
53755
|
+
import("./index-OJMKpgPV-ByDfAvbD.es.js"),
|
|
53751
53756
|
import("./index-DRCvimau-Cw339678.es.js"),
|
|
53752
53757
|
import("./index-C_x_N6Uh-DJn8hIEt.es.js"),
|
|
53753
53758
|
import("./index-D_sWOSiG-DE96TaT5.es.js"),
|
|
@@ -53965,7 +53970,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
|
|
|
53965
53970
|
* @returns {Object | void} Migration results
|
|
53966
53971
|
*/
|
|
53967
53972
|
processCollaborationMigrations() {
|
|
53968
|
-
console.debug("[checkVersionMigrations] Current editor version", "0.28.
|
|
53973
|
+
console.debug("[checkVersionMigrations] Current editor version", "0.28.6");
|
|
53969
53974
|
if (!this.options.ydoc) return;
|
|
53970
53975
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
53971
53976
|
let docVersion = metaMap.get("version");
|
|
@@ -55834,16 +55839,16 @@ function getCursorPositionRelativeToContainer(view, eventLocation) {
|
|
|
55834
55839
|
const { state: state2, dom } = view;
|
|
55835
55840
|
const { selection } = state2;
|
|
55836
55841
|
const containerRect = dom.getBoundingClientRect();
|
|
55837
|
-
let
|
|
55842
|
+
let x, y2;
|
|
55838
55843
|
if (typeof eventLocation.clientX === "number" && typeof eventLocation.clientY === "number") {
|
|
55839
|
-
|
|
55844
|
+
x = eventLocation.clientX - containerRect.left;
|
|
55840
55845
|
y2 = eventLocation.clientY - containerRect.top;
|
|
55841
55846
|
} else {
|
|
55842
55847
|
const cursorCoords = view.coordsAtPos(selection.from);
|
|
55843
|
-
|
|
55848
|
+
x = cursorCoords.left - containerRect.left;
|
|
55844
55849
|
y2 = cursorCoords.top - containerRect.top;
|
|
55845
55850
|
}
|
|
55846
|
-
return { left:
|
|
55851
|
+
return { left: x, top: y2 };
|
|
55847
55852
|
}
|
|
55848
55853
|
const SlashMenuPluginKey = new PluginKey("slashMenu");
|
|
55849
55854
|
const SlashMenu = Extension.create({
|
|
@@ -56122,17 +56127,17 @@ class StructuredContentViewBase {
|
|
|
56122
56127
|
if (!this.dom || this.contentDOM?.contains(target) || !dragHandle) {
|
|
56123
56128
|
return;
|
|
56124
56129
|
}
|
|
56125
|
-
let
|
|
56130
|
+
let x = 0;
|
|
56126
56131
|
let y2 = 0;
|
|
56127
56132
|
if (this.dom !== dragHandle) {
|
|
56128
56133
|
const domBox = this.dom.getBoundingClientRect();
|
|
56129
56134
|
const handleBox = dragHandle.getBoundingClientRect();
|
|
56130
56135
|
const offsetX = event.offsetX ?? event.nativeEvent?.offsetX;
|
|
56131
56136
|
const offsetY = event.offsetY ?? event.nativeEvent?.offsetY;
|
|
56132
|
-
|
|
56137
|
+
x = handleBox.x - domBox.x + offsetX;
|
|
56133
56138
|
y2 = handleBox.y - domBox.y + offsetY;
|
|
56134
56139
|
}
|
|
56135
|
-
event.dataTransfer?.setDragImage(this.dom,
|
|
56140
|
+
event.dataTransfer?.setDragImage(this.dom, x, y2);
|
|
56136
56141
|
const pos = this.getPos();
|
|
56137
56142
|
if (typeof pos !== "number") {
|
|
56138
56143
|
return;
|
|
@@ -64218,24 +64223,24 @@ function parseToRgba(color) {
|
|
|
64218
64223
|
const reducedHexMatch = reducedHexRegex.exec(normalizedColor);
|
|
64219
64224
|
if (reducedHexMatch) {
|
|
64220
64225
|
const arr = Array.from(reducedHexMatch).slice(1);
|
|
64221
|
-
return [...arr.slice(0, 3).map((
|
|
64226
|
+
return [...arr.slice(0, 3).map((x) => parseInt(r$1(x, 2), 16)), parseInt(r$1(arr[3] || "f", 2), 16) / 255];
|
|
64222
64227
|
}
|
|
64223
64228
|
const hexMatch = hexRegex$1.exec(normalizedColor);
|
|
64224
64229
|
if (hexMatch) {
|
|
64225
64230
|
const arr = Array.from(hexMatch).slice(1);
|
|
64226
|
-
return [...arr.slice(0, 3).map((
|
|
64231
|
+
return [...arr.slice(0, 3).map((x) => parseInt(x, 16)), parseInt(arr[3] || "ff", 16) / 255];
|
|
64227
64232
|
}
|
|
64228
64233
|
const rgbaMatch = rgbaRegex$1.exec(normalizedColor);
|
|
64229
64234
|
if (rgbaMatch) {
|
|
64230
64235
|
const arr = Array.from(rgbaMatch).slice(1);
|
|
64231
|
-
return [...arr.slice(0, 3).map((
|
|
64236
|
+
return [...arr.slice(0, 3).map((x) => parseInt(x, 10)), parseFloat(arr[3] || "1")];
|
|
64232
64237
|
}
|
|
64233
64238
|
const hslaMatch = hslaRegex$1.exec(normalizedColor);
|
|
64234
64239
|
if (hslaMatch) {
|
|
64235
|
-
const [h2, s2,
|
|
64240
|
+
const [h2, s2, l3, a] = Array.from(hslaMatch).slice(1).map(parseFloat);
|
|
64236
64241
|
if (guard(0, 100, s2) !== s2) throw new ColorError$1(color);
|
|
64237
|
-
if (guard(0, 100,
|
|
64238
|
-
return [...hslToRgb(h2, s2,
|
|
64242
|
+
if (guard(0, 100, l3) !== l3) throw new ColorError$1(color);
|
|
64243
|
+
return [...hslToRgb(h2, s2, l3), Number.isNaN(a) ? 1 : a];
|
|
64239
64244
|
}
|
|
64240
64245
|
throw new ColorError$1(color);
|
|
64241
64246
|
}
|
|
@@ -64247,7 +64252,7 @@ function hash$2(str) {
|
|
|
64247
64252
|
}
|
|
64248
64253
|
return (hash2 >>> 0) % 2341;
|
|
64249
64254
|
}
|
|
64250
|
-
const colorToInt = (
|
|
64255
|
+
const colorToInt = (x) => parseInt(x.replace(/_/g, ""), 36);
|
|
64251
64256
|
const compressedColorMap = "1q29ehhb 1n09sgk7 1kl1ekf_ _yl4zsno 16z9eiv3 1p29lhp8 _bd9zg04 17u0____ _iw9zhe5 _to73___ _r45e31e _7l6g016 _jh8ouiv _zn3qba8 1jy4zshs 11u87k0u 1ro9yvyo 1aj3xael 1gz9zjz0 _3w8l4xo 1bf1ekf_ _ke3v___ _4rrkb__ 13j776yz _646mbhl _nrjr4__ _le6mbhl 1n37ehkb _m75f91n _qj3bzfz 1939yygw 11i5z6x8 _1k5f8xs 1509441m 15t5lwgf _ae2th1n _tg1ugcv 1lp1ugcv 16e14up_ _h55rw7n _ny9yavn _7a11xb_ 1ih442g9 _pv442g9 1mv16xof 14e6y7tu 1oo9zkds 17d1cisi _4v9y70f _y98m8kc 1019pq0v 12o9zda8 _348j4f4 1et50i2o _8epa8__ _ts6senj 1o350i2o 1mi9eiuo 1259yrp0 1ln80gnw _632xcoy 1cn9zldc _f29edu4 1n490c8q _9f9ziet 1b94vk74 _m49zkct 1kz6s73a 1eu9dtog _q58s1rz 1dy9sjiq __u89jo3 _aj5nkwg _ld89jo3 13h9z6wx _qa9z2ii _l119xgq _bs5arju 1hj4nwk9 1qt4nwk9 1ge6wau6 14j9zlcw 11p1edc_ _ms1zcxe _439shk6 _jt9y70f _754zsow 1la40eju _oq5p___ _x279qkz 1fa5r3rv _yd2d9ip _424tcku _8y1di2_ _zi2uabw _yy7rn9h 12yz980_ __39ljp6 1b59zg0x _n39zfzp 1fy9zest _b33k___ _hp9wq92 1il50hz4 _io472ub _lj9z3eo 19z9ykg0 _8t8iu3a 12b9bl4a 1ak5yw0o _896v4ku _tb8k8lv _s59zi6t _c09ze0p 1lg80oqn 1id9z8wb _238nba5 1kq6wgdi _154zssg _tn3zk49 _da9y6tc 1sg7cv4f _r12jvtt 1gq5fmkz 1cs9rvci _lp9jn1c _xw1tdnb 13f9zje6 16f6973h _vo7ir40 _bt5arjf _rc45e4t _hr4e100 10v4e100 _hc9zke2 _w91egv_ _sj2r1kk 13c87yx8 _vqpds__ _ni8ggk8 _tj9yqfb 1ia2j4r4 _7x9b10u 1fc9ld4j 1eq9zldr _5j9lhpx _ez9zl6o _md61fzm".split(" ").reduce((acc, next) => {
|
|
64252
64257
|
const key2 = colorToInt(next.substring(0, 3));
|
|
64253
64258
|
const hex2 = colorToInt(next.substring(3)).toString(16);
|
|
@@ -64274,12 +64279,12 @@ const roundColor = (color) => {
|
|
|
64274
64279
|
return Math.round(color * 255);
|
|
64275
64280
|
};
|
|
64276
64281
|
const hslToRgb = (hue, saturation, lightness) => {
|
|
64277
|
-
let
|
|
64282
|
+
let l3 = lightness / 100;
|
|
64278
64283
|
if (saturation === 0) {
|
|
64279
|
-
return [
|
|
64284
|
+
return [l3, l3, l3].map(roundColor);
|
|
64280
64285
|
}
|
|
64281
64286
|
const huePrime = (hue % 360 + 360) % 360 / 60;
|
|
64282
|
-
const chroma = (1 - Math.abs(2 *
|
|
64287
|
+
const chroma = (1 - Math.abs(2 * l3 - 1)) * (saturation / 100);
|
|
64283
64288
|
const secondComponent = chroma * (1 - Math.abs(huePrime % 2 - 1));
|
|
64284
64289
|
let red = 0;
|
|
64285
64290
|
let green = 0;
|
|
@@ -64303,7 +64308,7 @@ const hslToRgb = (hue, saturation, lightness) => {
|
|
|
64303
64308
|
red = chroma;
|
|
64304
64309
|
blue = secondComponent;
|
|
64305
64310
|
}
|
|
64306
|
-
const lightnessModification =
|
|
64311
|
+
const lightnessModification = l3 - chroma / 2;
|
|
64307
64312
|
const finalRed = red + lightnessModification;
|
|
64308
64313
|
const finalGreen = green + lightnessModification;
|
|
64309
64314
|
const finalBlue = blue + lightnessModification;
|
|
@@ -64311,8 +64316,8 @@ const hslToRgb = (hue, saturation, lightness) => {
|
|
|
64311
64316
|
};
|
|
64312
64317
|
function toHex(color) {
|
|
64313
64318
|
const [r2, g, b2, a] = parseToRgba(color);
|
|
64314
|
-
let hex2 = (
|
|
64315
|
-
const h2 = guard(0, 255,
|
|
64319
|
+
let hex2 = (x) => {
|
|
64320
|
+
const h2 = guard(0, 255, x).toString(16);
|
|
64316
64321
|
return h2.length === 1 ? `0${h2}` : h2;
|
|
64317
64322
|
};
|
|
64318
64323
|
return `#${hex2(r2)}${hex2(g)}${hex2(b2)}${a < 1 ? hex2(Math.round(a * 255)) : ""}`;
|
|
@@ -66416,10 +66421,10 @@ const Image = Node$1.create({
|
|
|
66416
66421
|
let minX = 0;
|
|
66417
66422
|
let minY = 0;
|
|
66418
66423
|
let maxY = 0;
|
|
66419
|
-
attrs.polygon.forEach(([
|
|
66420
|
-
if (floatRight &&
|
|
66421
|
-
if (
|
|
66422
|
-
if (
|
|
66424
|
+
attrs.polygon.forEach(([x, y2]) => {
|
|
66425
|
+
if (floatRight && x < horizontalOffset) horizontalOffset = x;
|
|
66426
|
+
if (x > maxX) maxX = x;
|
|
66427
|
+
if (x < minX) minX = x;
|
|
66423
66428
|
if (y2 > maxY) maxY = y2;
|
|
66424
66429
|
if (y2 < minY) minY = y2;
|
|
66425
66430
|
});
|
|
@@ -66428,7 +66433,7 @@ const Image = Node$1.create({
|
|
|
66428
66433
|
const scaleWidth = Math.min(1, size2.width / originalWidth);
|
|
66429
66434
|
const scaleHeight = Math.min(1, size2.height / originalHeight);
|
|
66430
66435
|
const verticalOffset = Math.max(0, marginOffset.top);
|
|
66431
|
-
const points = attrs.polygon.map(([
|
|
66436
|
+
const points = attrs.polygon.map(([x, y2]) => `${horizontalOffset + x * scaleWidth}px ${verticalOffset + y2 * scaleHeight}px`).join(", ");
|
|
66432
66437
|
style2 += `shape-outside: polygon(${points});`;
|
|
66433
66438
|
}
|
|
66434
66439
|
break;
|
|
@@ -69793,42 +69798,42 @@ var M = ["fill", "stroke", "strokeWidth", "fillRule", "clipRule"], d = s;
|
|
|
69793
69798
|
function r(t) {
|
|
69794
69799
|
if (!t) return null;
|
|
69795
69800
|
let e = {};
|
|
69796
|
-
return M.forEach((
|
|
69797
|
-
let L2 = t[
|
|
69801
|
+
return M.forEach((l3) => {
|
|
69802
|
+
let L2 = t[l3];
|
|
69798
69803
|
if (L2 !== void 0)
|
|
69799
|
-
if (
|
|
69804
|
+
if (l3 === "strokeWidth") {
|
|
69800
69805
|
if (typeof L2 == "number") e.strokeWidth = L2;
|
|
69801
69806
|
else if (typeof L2 == "string") {
|
|
69802
69807
|
let o = Number(L2);
|
|
69803
69808
|
Number.isFinite(o) && (e.strokeWidth = o);
|
|
69804
69809
|
}
|
|
69805
|
-
} else typeof L2 == "string" && (e[
|
|
69810
|
+
} else typeof L2 == "string" && (e[l3] = L2);
|
|
69806
69811
|
}), Object.keys(e).length ? e : null;
|
|
69807
69812
|
}
|
|
69808
69813
|
function A(t, e) {
|
|
69809
|
-
let
|
|
69810
|
-
if (!e) return
|
|
69814
|
+
let l3 = t.map((o) => ({ ...o }));
|
|
69815
|
+
if (!e) return l3;
|
|
69811
69816
|
let L2 = (o, i) => typeof e == "function" ? r(e(o, i)) : Array.isArray(e) ? r(e[i]) : r(e);
|
|
69812
|
-
return
|
|
69817
|
+
return l3.map((o, i) => {
|
|
69813
69818
|
let n = L2(o, i);
|
|
69814
69819
|
return n ? { ...o, ...n } : o;
|
|
69815
69820
|
});
|
|
69816
69821
|
}
|
|
69817
69822
|
function f(t) {
|
|
69818
|
-
let { preset: e, styleOverrides:
|
|
69823
|
+
let { preset: e, styleOverrides: l3 } = t;
|
|
69819
69824
|
if (!e) throw new Error("createPresetShape requires a preset name.");
|
|
69820
69825
|
let L2 = d[e];
|
|
69821
69826
|
if (!L2) throw new Error(`Unknown preset shape: ${e}`);
|
|
69822
|
-
return { preset: e, viewBox: L2.viewBox, paths: A(L2.paths,
|
|
69827
|
+
return { preset: e, viewBox: L2.viewBox, paths: A(L2.paths, l3) };
|
|
69823
69828
|
}
|
|
69824
69829
|
function k(t) {
|
|
69825
|
-
let e = f(t),
|
|
69830
|
+
let e = f(t), l3 = e.paths.map((L2) => {
|
|
69826
69831
|
let o = [`d="${L2.d}"`];
|
|
69827
69832
|
return L2.fill !== void 0 && o.push(`fill="${L2.fill}"`), L2.stroke !== void 0 && o.push(`stroke="${L2.stroke}"`), L2.strokeWidth !== void 0 && o.push(`stroke-width="${L2.strokeWidth}"`), L2.fillRule !== void 0 && o.push(`fill-rule="${L2.fillRule}"`), L2.clipRule !== void 0 && o.push(`clip-rule="${L2.clipRule}"`), ` <path ${o.join(" ")} />`;
|
|
69828
69833
|
}).join(`
|
|
69829
69834
|
`);
|
|
69830
69835
|
return `<svg xmlns="http://www.w3.org/2000/svg" viewBox="${e.viewBox}" preserveAspectRatio="none">
|
|
69831
|
-
${
|
|
69836
|
+
${l3}
|
|
69832
69837
|
</svg>`;
|
|
69833
69838
|
}
|
|
69834
69839
|
class VectorShapeView {
|
|
@@ -71562,7 +71567,7 @@ function getBoundingClientRect$1(element, includeScale, isFixedStrategy) {
|
|
|
71562
71567
|
}
|
|
71563
71568
|
var _ref = isElement$2(element) ? getWindow$1(element) : window, visualViewport = _ref.visualViewport;
|
|
71564
71569
|
var addVisualOffsets = !isLayoutViewport() && isFixedStrategy;
|
|
71565
|
-
var
|
|
71570
|
+
var x = (clientRect2.left + (addVisualOffsets && visualViewport ? visualViewport.offsetLeft : 0)) / scaleX;
|
|
71566
71571
|
var y2 = (clientRect2.top + (addVisualOffsets && visualViewport ? visualViewport.offsetTop : 0)) / scaleY;
|
|
71567
71572
|
var width = clientRect2.width / scaleX;
|
|
71568
71573
|
var height = clientRect2.height / scaleY;
|
|
@@ -71570,10 +71575,10 @@ function getBoundingClientRect$1(element, includeScale, isFixedStrategy) {
|
|
|
71570
71575
|
width,
|
|
71571
71576
|
height,
|
|
71572
71577
|
top: y2,
|
|
71573
|
-
right:
|
|
71578
|
+
right: x + width,
|
|
71574
71579
|
bottom: y2 + height,
|
|
71575
|
-
left:
|
|
71576
|
-
x
|
|
71580
|
+
left: x,
|
|
71581
|
+
x,
|
|
71577
71582
|
y: y2
|
|
71578
71583
|
};
|
|
71579
71584
|
}
|
|
@@ -71774,25 +71779,25 @@ var unsetSides = {
|
|
|
71774
71779
|
left: "auto"
|
|
71775
71780
|
};
|
|
71776
71781
|
function roundOffsetsByDPR(_ref, win) {
|
|
71777
|
-
var
|
|
71782
|
+
var x = _ref.x, y2 = _ref.y;
|
|
71778
71783
|
var dpr = win.devicePixelRatio || 1;
|
|
71779
71784
|
return {
|
|
71780
|
-
x: round$1(
|
|
71785
|
+
x: round$1(x * dpr) / dpr || 0,
|
|
71781
71786
|
y: round$1(y2 * dpr) / dpr || 0
|
|
71782
71787
|
};
|
|
71783
71788
|
}
|
|
71784
71789
|
function mapToStyles(_ref2) {
|
|
71785
71790
|
var _Object$assign2;
|
|
71786
71791
|
var popper2 = _ref2.popper, popperRect = _ref2.popperRect, placement = _ref2.placement, variation = _ref2.variation, offsets = _ref2.offsets, position = _ref2.position, gpuAcceleration = _ref2.gpuAcceleration, adaptive = _ref2.adaptive, roundOffsets = _ref2.roundOffsets, isFixed = _ref2.isFixed;
|
|
71787
|
-
var _offsets$x = offsets.x,
|
|
71792
|
+
var _offsets$x = offsets.x, x = _offsets$x === void 0 ? 0 : _offsets$x, _offsets$y = offsets.y, y2 = _offsets$y === void 0 ? 0 : _offsets$y;
|
|
71788
71793
|
var _ref3 = typeof roundOffsets === "function" ? roundOffsets({
|
|
71789
|
-
x
|
|
71794
|
+
x,
|
|
71790
71795
|
y: y2
|
|
71791
71796
|
}) : {
|
|
71792
|
-
x
|
|
71797
|
+
x,
|
|
71793
71798
|
y: y2
|
|
71794
71799
|
};
|
|
71795
|
-
|
|
71800
|
+
x = _ref3.x;
|
|
71796
71801
|
y2 = _ref3.y;
|
|
71797
71802
|
var hasX = offsets.hasOwnProperty("x");
|
|
71798
71803
|
var hasY = offsets.hasOwnProperty("y");
|
|
@@ -71826,27 +71831,27 @@ function mapToStyles(_ref2) {
|
|
|
71826
71831
|
// $FlowFixMe[prop-missing]
|
|
71827
71832
|
offsetParent[widthProp]
|
|
71828
71833
|
);
|
|
71829
|
-
|
|
71830
|
-
|
|
71834
|
+
x -= offsetX - popperRect.width;
|
|
71835
|
+
x *= gpuAcceleration ? 1 : -1;
|
|
71831
71836
|
}
|
|
71832
71837
|
}
|
|
71833
71838
|
var commonStyles = Object.assign({
|
|
71834
71839
|
position
|
|
71835
71840
|
}, adaptive && unsetSides);
|
|
71836
71841
|
var _ref4 = roundOffsets === true ? roundOffsetsByDPR({
|
|
71837
|
-
x
|
|
71842
|
+
x,
|
|
71838
71843
|
y: y2
|
|
71839
71844
|
}, getWindow$1(popper2)) : {
|
|
71840
|
-
x
|
|
71845
|
+
x,
|
|
71841
71846
|
y: y2
|
|
71842
71847
|
};
|
|
71843
|
-
|
|
71848
|
+
x = _ref4.x;
|
|
71844
71849
|
y2 = _ref4.y;
|
|
71845
71850
|
if (gpuAcceleration) {
|
|
71846
71851
|
var _Object$assign;
|
|
71847
|
-
return Object.assign({}, commonStyles, (_Object$assign = {}, _Object$assign[sideY] = hasY ? "0" : "", _Object$assign[sideX] = hasX ? "0" : "", _Object$assign.transform = (win.devicePixelRatio || 1) <= 1 ? "translate(" +
|
|
71852
|
+
return Object.assign({}, commonStyles, (_Object$assign = {}, _Object$assign[sideY] = hasY ? "0" : "", _Object$assign[sideX] = hasX ? "0" : "", _Object$assign.transform = (win.devicePixelRatio || 1) <= 1 ? "translate(" + x + "px, " + y2 + "px)" : "translate3d(" + x + "px, " + y2 + "px, 0)", _Object$assign));
|
|
71848
71853
|
}
|
|
71849
|
-
return Object.assign({}, commonStyles, (_Object$assign2 = {}, _Object$assign2[sideY] = hasY ? y2 + "px" : "", _Object$assign2[sideX] = hasX ?
|
|
71854
|
+
return Object.assign({}, commonStyles, (_Object$assign2 = {}, _Object$assign2[sideY] = hasY ? y2 + "px" : "", _Object$assign2[sideX] = hasX ? x + "px" : "", _Object$assign2.transform = "", _Object$assign2));
|
|
71850
71855
|
}
|
|
71851
71856
|
function computeStyles(_ref5) {
|
|
71852
71857
|
var state2 = _ref5.state, options = _ref5.options;
|
|
@@ -71960,21 +71965,21 @@ function getViewportRect$1(element, strategy) {
|
|
|
71960
71965
|
var visualViewport = win.visualViewport;
|
|
71961
71966
|
var width = html.clientWidth;
|
|
71962
71967
|
var height = html.clientHeight;
|
|
71963
|
-
var
|
|
71968
|
+
var x = 0;
|
|
71964
71969
|
var y2 = 0;
|
|
71965
71970
|
if (visualViewport) {
|
|
71966
71971
|
width = visualViewport.width;
|
|
71967
71972
|
height = visualViewport.height;
|
|
71968
71973
|
var layoutViewport = isLayoutViewport();
|
|
71969
71974
|
if (layoutViewport || !layoutViewport && strategy === "fixed") {
|
|
71970
|
-
|
|
71975
|
+
x = visualViewport.offsetLeft;
|
|
71971
71976
|
y2 = visualViewport.offsetTop;
|
|
71972
71977
|
}
|
|
71973
71978
|
}
|
|
71974
71979
|
return {
|
|
71975
71980
|
width,
|
|
71976
71981
|
height,
|
|
71977
|
-
x:
|
|
71982
|
+
x: x + getWindowScrollBarX$1(element),
|
|
71978
71983
|
y: y2
|
|
71979
71984
|
};
|
|
71980
71985
|
}
|
|
@@ -71985,15 +71990,15 @@ function getDocumentRect$1(element) {
|
|
|
71985
71990
|
var body = (_element$ownerDocumen = element.ownerDocument) == null ? void 0 : _element$ownerDocumen.body;
|
|
71986
71991
|
var width = max$1(html.scrollWidth, html.clientWidth, body ? body.scrollWidth : 0, body ? body.clientWidth : 0);
|
|
71987
71992
|
var height = max$1(html.scrollHeight, html.clientHeight, body ? body.scrollHeight : 0, body ? body.clientHeight : 0);
|
|
71988
|
-
var
|
|
71993
|
+
var x = -winScroll.scrollLeft + getWindowScrollBarX$1(element);
|
|
71989
71994
|
var y2 = -winScroll.scrollTop;
|
|
71990
71995
|
if (getComputedStyle$2(body || html).direction === "rtl") {
|
|
71991
|
-
|
|
71996
|
+
x += max$1(html.clientWidth, body ? body.clientWidth : 0) - width;
|
|
71992
71997
|
}
|
|
71993
71998
|
return {
|
|
71994
71999
|
width,
|
|
71995
72000
|
height,
|
|
71996
|
-
x
|
|
72001
|
+
x,
|
|
71997
72002
|
y: y2
|
|
71998
72003
|
};
|
|
71999
72004
|
}
|
|
@@ -72370,9 +72375,9 @@ function offset(_ref2) {
|
|
|
72370
72375
|
acc[placement] = distanceAndSkiddingToXY(placement, state2.rects, offset2);
|
|
72371
72376
|
return acc;
|
|
72372
72377
|
}, {});
|
|
72373
|
-
var _data$state$placement = data[state2.placement],
|
|
72378
|
+
var _data$state$placement = data[state2.placement], x = _data$state$placement.x, y2 = _data$state$placement.y;
|
|
72374
72379
|
if (state2.modifiersData.popperOffsets != null) {
|
|
72375
|
-
state2.modifiersData.popperOffsets.x +=
|
|
72380
|
+
state2.modifiersData.popperOffsets.x += x;
|
|
72376
72381
|
state2.modifiersData.popperOffsets.y += y2;
|
|
72377
72382
|
}
|
|
72378
72383
|
state2.modifiersData[name] = data;
|
|
@@ -74322,7 +74327,7 @@ function getPaddingObject(padding) {
|
|
|
74322
74327
|
}
|
|
74323
74328
|
function rectToClientRect(rect) {
|
|
74324
74329
|
const {
|
|
74325
|
-
x
|
|
74330
|
+
x,
|
|
74326
74331
|
y: y2,
|
|
74327
74332
|
width,
|
|
74328
74333
|
height
|
|
@@ -74331,10 +74336,10 @@ function rectToClientRect(rect) {
|
|
|
74331
74336
|
width,
|
|
74332
74337
|
height,
|
|
74333
74338
|
top: y2,
|
|
74334
|
-
left:
|
|
74335
|
-
right:
|
|
74339
|
+
left: x,
|
|
74340
|
+
right: x + width,
|
|
74336
74341
|
bottom: y2 + height,
|
|
74337
|
-
x
|
|
74342
|
+
x,
|
|
74338
74343
|
y: y2
|
|
74339
74344
|
};
|
|
74340
74345
|
}
|
|
@@ -74408,7 +74413,7 @@ const computePosition$1 = async (reference2, floating, config2) => {
|
|
|
74408
74413
|
strategy
|
|
74409
74414
|
});
|
|
74410
74415
|
let {
|
|
74411
|
-
x
|
|
74416
|
+
x,
|
|
74412
74417
|
y: y2
|
|
74413
74418
|
} = computeCoordsFromPlacement(rects, placement, rtl);
|
|
74414
74419
|
let statefulPlacement = placement;
|
|
@@ -74425,7 +74430,7 @@ const computePosition$1 = async (reference2, floating, config2) => {
|
|
|
74425
74430
|
data,
|
|
74426
74431
|
reset
|
|
74427
74432
|
} = await fn2({
|
|
74428
|
-
x
|
|
74433
|
+
x,
|
|
74429
74434
|
y: y2,
|
|
74430
74435
|
initialPlacement: placement,
|
|
74431
74436
|
placement: statefulPlacement,
|
|
@@ -74438,7 +74443,7 @@ const computePosition$1 = async (reference2, floating, config2) => {
|
|
|
74438
74443
|
floating
|
|
74439
74444
|
}
|
|
74440
74445
|
});
|
|
74441
|
-
|
|
74446
|
+
x = nextX != null ? nextX : x;
|
|
74442
74447
|
y2 = nextY != null ? nextY : y2;
|
|
74443
74448
|
middlewareData = {
|
|
74444
74449
|
...middlewareData,
|
|
@@ -74461,7 +74466,7 @@ const computePosition$1 = async (reference2, floating, config2) => {
|
|
|
74461
74466
|
}) : reset.rects;
|
|
74462
74467
|
}
|
|
74463
74468
|
({
|
|
74464
|
-
x
|
|
74469
|
+
x,
|
|
74465
74470
|
y: y2
|
|
74466
74471
|
} = computeCoordsFromPlacement(rects, statefulPlacement, rtl));
|
|
74467
74472
|
}
|
|
@@ -74469,7 +74474,7 @@ const computePosition$1 = async (reference2, floating, config2) => {
|
|
|
74469
74474
|
}
|
|
74470
74475
|
}
|
|
74471
74476
|
return {
|
|
74472
|
-
x
|
|
74477
|
+
x,
|
|
74473
74478
|
y: y2,
|
|
74474
74479
|
placement: statefulPlacement,
|
|
74475
74480
|
strategy,
|
|
@@ -74482,7 +74487,7 @@ async function detectOverflow(state2, options) {
|
|
|
74482
74487
|
options = {};
|
|
74483
74488
|
}
|
|
74484
74489
|
const {
|
|
74485
|
-
x
|
|
74490
|
+
x,
|
|
74486
74491
|
y: y2,
|
|
74487
74492
|
platform: platform2,
|
|
74488
74493
|
rects,
|
|
@@ -74506,7 +74511,7 @@ async function detectOverflow(state2, options) {
|
|
|
74506
74511
|
strategy
|
|
74507
74512
|
}));
|
|
74508
74513
|
const rect = elementContext === "floating" ? {
|
|
74509
|
-
x
|
|
74514
|
+
x,
|
|
74510
74515
|
y: y2,
|
|
74511
74516
|
width: rects.floating.width,
|
|
74512
74517
|
height: rects.floating.height
|
|
@@ -74775,16 +74780,16 @@ function getScale(element) {
|
|
|
74775
74780
|
height,
|
|
74776
74781
|
$: $2
|
|
74777
74782
|
} = getCssDimensions(domElement);
|
|
74778
|
-
let
|
|
74783
|
+
let x = ($2 ? round(rect.width) : rect.width) / width;
|
|
74779
74784
|
let y2 = ($2 ? round(rect.height) : rect.height) / height;
|
|
74780
|
-
if (!
|
|
74781
|
-
|
|
74785
|
+
if (!x || !Number.isFinite(x)) {
|
|
74786
|
+
x = 1;
|
|
74782
74787
|
}
|
|
74783
74788
|
if (!y2 || !Number.isFinite(y2)) {
|
|
74784
74789
|
y2 = 1;
|
|
74785
74790
|
}
|
|
74786
74791
|
return {
|
|
74787
|
-
x
|
|
74792
|
+
x,
|
|
74788
74793
|
y: y2
|
|
74789
74794
|
};
|
|
74790
74795
|
}
|
|
@@ -74828,7 +74833,7 @@ function getBoundingClientRect(element, includeScale, isFixedStrategy, offsetPar
|
|
|
74828
74833
|
}
|
|
74829
74834
|
}
|
|
74830
74835
|
const visualOffsets = shouldAddVisualOffsets(domElement, isFixedStrategy, offsetParent) ? getVisualOffsets(domElement) : createCoords(0);
|
|
74831
|
-
let
|
|
74836
|
+
let x = (clientRect2.left + visualOffsets.x) / scale.x;
|
|
74832
74837
|
let y2 = (clientRect2.top + visualOffsets.y) / scale.y;
|
|
74833
74838
|
let width = clientRect2.width / scale.x;
|
|
74834
74839
|
let height = clientRect2.height / scale.y;
|
|
@@ -74843,11 +74848,11 @@ function getBoundingClientRect(element, includeScale, isFixedStrategy, offsetPar
|
|
|
74843
74848
|
const css = getComputedStyle$1(currentIFrame);
|
|
74844
74849
|
const left2 = iframeRect.left + (currentIFrame.clientLeft + parseFloat(css.paddingLeft)) * iframeScale.x;
|
|
74845
74850
|
const top2 = iframeRect.top + (currentIFrame.clientTop + parseFloat(css.paddingTop)) * iframeScale.y;
|
|
74846
|
-
|
|
74851
|
+
x *= iframeScale.x;
|
|
74847
74852
|
y2 *= iframeScale.y;
|
|
74848
74853
|
width *= iframeScale.x;
|
|
74849
74854
|
height *= iframeScale.y;
|
|
74850
|
-
|
|
74855
|
+
x += left2;
|
|
74851
74856
|
y2 += top2;
|
|
74852
74857
|
currentWin = getWindow(currentIFrame);
|
|
74853
74858
|
currentIFrame = getFrameElement(currentWin);
|
|
@@ -74856,7 +74861,7 @@ function getBoundingClientRect(element, includeScale, isFixedStrategy, offsetPar
|
|
|
74856
74861
|
return rectToClientRect({
|
|
74857
74862
|
width,
|
|
74858
74863
|
height,
|
|
74859
|
-
x
|
|
74864
|
+
x,
|
|
74860
74865
|
y: y2
|
|
74861
74866
|
});
|
|
74862
74867
|
}
|
|
@@ -74869,10 +74874,10 @@ function getWindowScrollBarX(element, rect) {
|
|
|
74869
74874
|
}
|
|
74870
74875
|
function getHTMLOffset(documentElement, scroll) {
|
|
74871
74876
|
const htmlRect = documentElement.getBoundingClientRect();
|
|
74872
|
-
const
|
|
74877
|
+
const x = htmlRect.left + scroll.scrollLeft - getWindowScrollBarX(documentElement, htmlRect);
|
|
74873
74878
|
const y2 = htmlRect.top + scroll.scrollTop;
|
|
74874
74879
|
return {
|
|
74875
|
-
x
|
|
74880
|
+
x,
|
|
74876
74881
|
y: y2
|
|
74877
74882
|
};
|
|
74878
74883
|
}
|
|
@@ -74924,15 +74929,15 @@ function getDocumentRect(element) {
|
|
|
74924
74929
|
const body = element.ownerDocument.body;
|
|
74925
74930
|
const width = max(html.scrollWidth, html.clientWidth, body.scrollWidth, body.clientWidth);
|
|
74926
74931
|
const height = max(html.scrollHeight, html.clientHeight, body.scrollHeight, body.clientHeight);
|
|
74927
|
-
let
|
|
74932
|
+
let x = -scroll.scrollLeft + getWindowScrollBarX(element);
|
|
74928
74933
|
const y2 = -scroll.scrollTop;
|
|
74929
74934
|
if (getComputedStyle$1(body).direction === "rtl") {
|
|
74930
|
-
|
|
74935
|
+
x += max(html.clientWidth, body.clientWidth) - width;
|
|
74931
74936
|
}
|
|
74932
74937
|
return {
|
|
74933
74938
|
width,
|
|
74934
74939
|
height,
|
|
74935
|
-
x
|
|
74940
|
+
x,
|
|
74936
74941
|
y: y2
|
|
74937
74942
|
};
|
|
74938
74943
|
}
|
|
@@ -74943,14 +74948,14 @@ function getViewportRect(element, strategy) {
|
|
|
74943
74948
|
const visualViewport = win.visualViewport;
|
|
74944
74949
|
let width = html.clientWidth;
|
|
74945
74950
|
let height = html.clientHeight;
|
|
74946
|
-
let
|
|
74951
|
+
let x = 0;
|
|
74947
74952
|
let y2 = 0;
|
|
74948
74953
|
if (visualViewport) {
|
|
74949
74954
|
width = visualViewport.width;
|
|
74950
74955
|
height = visualViewport.height;
|
|
74951
74956
|
const visualViewportBased = isWebKit();
|
|
74952
74957
|
if (!visualViewportBased || visualViewportBased && strategy === "fixed") {
|
|
74953
|
-
|
|
74958
|
+
x = visualViewport.offsetLeft;
|
|
74954
74959
|
y2 = visualViewport.offsetTop;
|
|
74955
74960
|
}
|
|
74956
74961
|
}
|
|
@@ -74970,7 +74975,7 @@ function getViewportRect(element, strategy) {
|
|
|
74970
74975
|
return {
|
|
74971
74976
|
width,
|
|
74972
74977
|
height,
|
|
74973
|
-
x
|
|
74978
|
+
x,
|
|
74974
74979
|
y: y2
|
|
74975
74980
|
};
|
|
74976
74981
|
}
|
|
@@ -74982,12 +74987,12 @@ function getInnerBoundingClientRect(element, strategy) {
|
|
|
74982
74987
|
const scale = isHTMLElement$2(element) ? getScale(element) : createCoords(1);
|
|
74983
74988
|
const width = element.clientWidth * scale.x;
|
|
74984
74989
|
const height = element.clientHeight * scale.y;
|
|
74985
|
-
const
|
|
74990
|
+
const x = left2 * scale.x;
|
|
74986
74991
|
const y2 = top2 * scale.y;
|
|
74987
74992
|
return {
|
|
74988
74993
|
width,
|
|
74989
74994
|
height,
|
|
74990
|
-
x
|
|
74995
|
+
x,
|
|
74991
74996
|
y: y2
|
|
74992
74997
|
};
|
|
74993
74998
|
}
|
|
@@ -75107,10 +75112,10 @@ function getRectRelativeToOffsetParent(element, offsetParent, strategy) {
|
|
|
75107
75112
|
setLeftRTLScrollbarOffset();
|
|
75108
75113
|
}
|
|
75109
75114
|
const htmlOffset = documentElement && !isOffsetParentAnElement && !isFixed ? getHTMLOffset(documentElement, scroll) : createCoords(0);
|
|
75110
|
-
const
|
|
75115
|
+
const x = rect.left + scroll.scrollLeft - offsets.x - htmlOffset.x;
|
|
75111
75116
|
const y2 = rect.top + scroll.scrollTop - offsets.y - htmlOffset.y;
|
|
75112
75117
|
return {
|
|
75113
|
-
x
|
|
75118
|
+
x,
|
|
75114
75119
|
y: y2,
|
|
75115
75120
|
width: rect.width,
|
|
75116
75121
|
height: rect.height
|
|
@@ -75972,22 +75977,22 @@ function createFloatingSeparator(separator, editor) {
|
|
|
75972
75977
|
const rect = elements.reference.getBoundingClientRect();
|
|
75973
75978
|
const containerRect = editorElement.getBoundingClientRect();
|
|
75974
75979
|
const scaleFactor = getScaleFactor(editorElement);
|
|
75975
|
-
const
|
|
75980
|
+
const x = Math.round((rect.left - containerRect.left) / scaleFactor);
|
|
75976
75981
|
const y2 = Math.round((rect.top - containerRect.top) / scaleFactor);
|
|
75977
75982
|
const width = Math.round(rect.width / scaleFactor);
|
|
75978
75983
|
const height = Math.round(rect.height / scaleFactor);
|
|
75979
75984
|
return {
|
|
75980
|
-
x
|
|
75985
|
+
x,
|
|
75981
75986
|
y: y2,
|
|
75982
75987
|
data: { width, height }
|
|
75983
75988
|
};
|
|
75984
75989
|
}
|
|
75985
75990
|
}
|
|
75986
75991
|
]
|
|
75987
|
-
}).then(({ x
|
|
75992
|
+
}).then(({ x, y: y2, middlewareData }) => {
|
|
75988
75993
|
Object.assign(floatingSeparator.style, {
|
|
75989
75994
|
top: `${y2}px`,
|
|
75990
|
-
left: `${
|
|
75995
|
+
left: `${x}px`,
|
|
75991
75996
|
width: `${middlewareData.copy.width}px`,
|
|
75992
75997
|
height: `${middlewareData.copy.height}px`,
|
|
75993
75998
|
visibility: middlewareData.hide?.referenceHidden ? "hidden" : "visible"
|
|
@@ -78080,11 +78085,11 @@ function hsv2rgb(h2, s2, v2) {
|
|
|
78080
78085
|
let f2 = (n, k2 = (n + h2 / 60) % 6) => v2 - v2 * s2 * Math.max(Math.min(k2, 4 - k2, 1), 0);
|
|
78081
78086
|
return [f2(5) * 255, f2(3) * 255, f2(1) * 255];
|
|
78082
78087
|
}
|
|
78083
|
-
function hsl2rgb(h2, s2,
|
|
78088
|
+
function hsl2rgb(h2, s2, l3) {
|
|
78084
78089
|
s2 /= 100;
|
|
78085
|
-
|
|
78086
|
-
let a = s2 * Math.min(
|
|
78087
|
-
let f2 = (n, k2 = (n + h2 / 30) % 12) =>
|
|
78090
|
+
l3 /= 100;
|
|
78091
|
+
let a = s2 * Math.min(l3, 1 - l3);
|
|
78092
|
+
let f2 = (n, k2 = (n + h2 / 30) % 12) => l3 - a * Math.max(Math.min(k2 - 3, 9 - k2, 1), -1);
|
|
78088
78093
|
return [f2(0) * 255, f2(8) * 255, f2(4) * 255];
|
|
78089
78094
|
}
|
|
78090
78095
|
const prefix = "^\\s*";
|
|
@@ -78180,8 +78185,8 @@ function rgba(color) {
|
|
|
78180
78185
|
} else if (color in colors) {
|
|
78181
78186
|
return rgba(colors[color]);
|
|
78182
78187
|
} else if (hslRegex.test(color) || hslaRegex.test(color)) {
|
|
78183
|
-
const [h2, s2,
|
|
78184
|
-
return [...hsl2rgb(h2, s2,
|
|
78188
|
+
const [h2, s2, l3, a] = hsla(color);
|
|
78189
|
+
return [...hsl2rgb(h2, s2, l3), a];
|
|
78185
78190
|
} else if (hsvRegex.test(color) || hsvaRegex.test(color)) {
|
|
78186
78191
|
const [h2, s2, v2, a] = hsva(color);
|
|
78187
78192
|
return [...hsv2rgb(h2, s2, v2), a];
|
|
@@ -78980,14 +78985,14 @@ function ensureViewBoundingRect() {
|
|
|
78980
78985
|
}
|
|
78981
78986
|
return viewMeasurer.getBoundingClientRect();
|
|
78982
78987
|
}
|
|
78983
|
-
function getPointRect(
|
|
78988
|
+
function getPointRect(x, y2) {
|
|
78984
78989
|
const viewRect = ensureViewBoundingRect();
|
|
78985
78990
|
return {
|
|
78986
78991
|
top: y2,
|
|
78987
|
-
left:
|
|
78992
|
+
left: x,
|
|
78988
78993
|
height: 0,
|
|
78989
78994
|
width: 0,
|
|
78990
|
-
right: viewRect.width -
|
|
78995
|
+
right: viewRect.width - x,
|
|
78991
78996
|
bottom: viewRect.height - y2
|
|
78992
78997
|
};
|
|
78993
78998
|
}
|
|
@@ -79825,8 +79830,8 @@ const VFollower = defineComponent({
|
|
|
79825
79830
|
if (follower === null)
|
|
79826
79831
|
return;
|
|
79827
79832
|
const target = VBinder.targetRef;
|
|
79828
|
-
const { x
|
|
79829
|
-
const targetRect =
|
|
79833
|
+
const { x, y: y2, overlap } = props;
|
|
79834
|
+
const targetRect = x !== void 0 && y2 !== void 0 ? getPointRect(x, y2) : getRect(target);
|
|
79830
79835
|
follower.style.setProperty("--v-target-width", `${Math.round(targetRect.width)}px`);
|
|
79831
79836
|
follower.style.setProperty("--v-target-height", `${Math.round(targetRect.height)}px`);
|
|
79832
79837
|
const { width, minWidth, placement, internalShift, flip: flip2 } = props;
|
|
@@ -79996,8 +80001,8 @@ var ResizeObserverSize = /* @__PURE__ */ (function() {
|
|
|
79996
80001
|
return ResizeObserverSize2;
|
|
79997
80002
|
})();
|
|
79998
80003
|
var DOMRectReadOnly = (function() {
|
|
79999
|
-
function DOMRectReadOnly2(
|
|
80000
|
-
this.x =
|
|
80004
|
+
function DOMRectReadOnly2(x, y2, width, height) {
|
|
80005
|
+
this.x = x;
|
|
80001
80006
|
this.y = y2;
|
|
80002
80007
|
this.width = width;
|
|
80003
80008
|
this.height = height;
|
|
@@ -80008,8 +80013,8 @@ var DOMRectReadOnly = (function() {
|
|
|
80008
80013
|
return freeze(this);
|
|
80009
80014
|
}
|
|
80010
80015
|
DOMRectReadOnly2.prototype.toJSON = function() {
|
|
80011
|
-
var _a2 = this,
|
|
80012
|
-
return { x
|
|
80016
|
+
var _a2 = this, x = _a2.x, y2 = _a2.y, top2 = _a2.top, right2 = _a2.right, bottom2 = _a2.bottom, left2 = _a2.left, width = _a2.width, height = _a2.height;
|
|
80017
|
+
return { x, y: y2, top: top2, right: right2, bottom: bottom2, left: left2, width, height };
|
|
80013
80018
|
};
|
|
80014
80019
|
DOMRectReadOnly2.fromRect = function(rectangle) {
|
|
80015
80020
|
return new DOMRectReadOnly2(rectangle.x, rectangle.y, rectangle.width, rectangle.height);
|
|
@@ -83843,10 +83848,10 @@ function getFirstAvailableNode(nodes) {
|
|
|
83843
83848
|
}
|
|
83844
83849
|
function rawGetNext(node, loop) {
|
|
83845
83850
|
const sibs = node.siblings;
|
|
83846
|
-
const
|
|
83851
|
+
const l3 = sibs.length;
|
|
83847
83852
|
const { index: index2 } = node;
|
|
83848
83853
|
if (loop) {
|
|
83849
|
-
return sibs[(index2 + 1) %
|
|
83854
|
+
return sibs[(index2 + 1) % l3];
|
|
83850
83855
|
} else {
|
|
83851
83856
|
if (index2 === sibs.length - 1)
|
|
83852
83857
|
return null;
|
|
@@ -83902,10 +83907,10 @@ function move(fromNode, dir, { loop = false, includeDisabled = false } = {}) {
|
|
|
83902
83907
|
}
|
|
83903
83908
|
function rawGetPrev(node, loop) {
|
|
83904
83909
|
const sibs = node.siblings;
|
|
83905
|
-
const
|
|
83910
|
+
const l3 = sibs.length;
|
|
83906
83911
|
const { index: index2 } = node;
|
|
83907
83912
|
if (loop) {
|
|
83908
|
-
return sibs[(index2 - 1 +
|
|
83913
|
+
return sibs[(index2 - 1 + l3) % l3];
|
|
83909
83914
|
} else {
|
|
83910
83915
|
if (index2 === 0)
|
|
83911
83916
|
return null;
|
|
@@ -87629,7 +87634,7 @@ function requireEventemitter3() {
|
|
|
87629
87634
|
var evt = prefix2 ? prefix2 + event : event, handlers2 = this._events[evt];
|
|
87630
87635
|
if (!handlers2) return [];
|
|
87631
87636
|
if (handlers2.fn) return [handlers2.fn];
|
|
87632
|
-
for (var i2 = 0,
|
|
87637
|
+
for (var i2 = 0, l3 = handlers2.length, ee = new Array(l3); i2 < l3; i2++) {
|
|
87633
87638
|
ee[i2] = handlers2[i2].fn;
|
|
87634
87639
|
}
|
|
87635
87640
|
return ee;
|