mtranserver 4.0.18 → 4.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/dist/{cld2-8mh0n580.wasm → cld2-22jkf0ae.wasm} +0 -0
- package/dist/icon-2r5te9sp.png +0 -0
- package/dist/index-B5MwS93W-8btbkjwj.css +1 -0
- package/dist/index-CViVzJTS-xrkq8wea.js +53 -0
- package/dist/{index-g3cdpfvc.html → index-wzc7qnpt.html} +2 -2
- package/dist/index.js +599 -477
- package/dist/index.js.map +9 -9
- package/dist/lib/cld2/cld2.d.ts.map +1 -1
- package/dist/main.js +764 -528
- package/dist/main.js.map +24 -22
- package/dist/mtran.d.ts.map +1 -1
- package/dist/services/detector.d.ts +2 -2
- package/dist/services/detector.d.ts.map +1 -1
- package/dist/utils/lang-alias.d.ts +1 -1
- package/package.json +1 -1
- package/dist/icon-tjp1feba.png +0 -0
- package/dist/index-B7vzjIqN-ma6ncj8z.css +0 -1
- package/dist/index-D6lVFqDO-3a1nn40g.js +0 -53
package/dist/main.js
CHANGED
|
@@ -46,7 +46,7 @@ var __require = /* @__PURE__ */ createRequire(import.meta.url);
|
|
|
46
46
|
|
|
47
47
|
// node_modules/swagger-ui-dist/absolute-path.js
|
|
48
48
|
var require_absolute_path = __commonJS((exports, module) => {
|
|
49
|
-
var __dirname = "/
|
|
49
|
+
var __dirname = "/Volumes/MacData/Users/xxnuo/projects/MTranServer/node_modules/swagger-ui-dist";
|
|
50
50
|
var getAbsoluteFSPath = function() {
|
|
51
51
|
if (typeof module !== "undefined" && module.exports) {
|
|
52
52
|
return __require("path").resolve(__dirname);
|
|
@@ -437,7 +437,7 @@ function getConfig() {
|
|
|
437
437
|
logConsole: getBool("--log-console", "MT_LOG_CONSOLE", true),
|
|
438
438
|
logRequests: getBool("--log-requests", "MT_LOG_REQUESTS", false),
|
|
439
439
|
checkUpdate: getBool("--check-update", "MT_CHECK_UPDATE", true),
|
|
440
|
-
cacheSize: getInt("--cache-size", "MT_CACHE_SIZE",
|
|
440
|
+
cacheSize: getInt("--cache-size", "MT_CACHE_SIZE", 1000)
|
|
441
441
|
};
|
|
442
442
|
return globalConfig;
|
|
443
443
|
}
|
|
@@ -1357,7 +1357,7 @@ function getLanguagePairs() {
|
|
|
1357
1357
|
return [];
|
|
1358
1358
|
const pairs = new Set;
|
|
1359
1359
|
for (const record of globalRecords.data) {
|
|
1360
|
-
pairs.add(`${record.sourceLanguage}
|
|
1360
|
+
pairs.add(`${record.sourceLanguage}_${record.targetLanguage}`);
|
|
1361
1361
|
}
|
|
1362
1362
|
return Array.from(pairs);
|
|
1363
1363
|
}
|
|
@@ -1774,10 +1774,10 @@ class TranslationEngine {
|
|
|
1774
1774
|
return chunks;
|
|
1775
1775
|
}
|
|
1776
1776
|
_hideEmojis(text) {
|
|
1777
|
-
const emojiRegex = /(\p{Emoji_Presentation}|\p{Extended_Pictographic})/gu;
|
|
1777
|
+
const emojiRegex = /(\p{RI}\p{RI}|\p{Emoji_Presentation}|\p{Extended_Pictographic})/gu;
|
|
1778
1778
|
const replacements = [];
|
|
1779
1779
|
const cleanText = text.replace(emojiRegex, (match) => {
|
|
1780
|
-
const placeholder =
|
|
1780
|
+
const placeholder = `<e${replacements.length}>`;
|
|
1781
1781
|
replacements.push({ original: match, placeholder });
|
|
1782
1782
|
return placeholder;
|
|
1783
1783
|
});
|
|
@@ -4706,23 +4706,23 @@ var init_bergamot_translator = () => {};
|
|
|
4706
4706
|
|
|
4707
4707
|
// src/lib/cld2/cld2.js
|
|
4708
4708
|
var require_cld2 = __commonJS((exports, module) => {
|
|
4709
|
-
var __dirname = "/
|
|
4709
|
+
var __dirname = "/Volumes/MacData/Users/xxnuo/projects/MTranServer/src/lib/cld2", __filename = "/Volumes/MacData/Users/xxnuo/projects/MTranServer/src/lib/cld2/cld2.js";
|
|
4710
4710
|
var loadCLD2 = (() => {
|
|
4711
4711
|
var _scriptName = globalThis.document?.currentScript?.src;
|
|
4712
4712
|
return async function(moduleArg = {}) {
|
|
4713
4713
|
var moduleRtn;
|
|
4714
|
-
function
|
|
4714
|
+
function ba(a) {
|
|
4715
4715
|
var b = 0;
|
|
4716
4716
|
return function() {
|
|
4717
4717
|
return b < a.length ? { done: false, value: a[b++] } : { done: true };
|
|
4718
4718
|
};
|
|
4719
4719
|
}
|
|
4720
|
-
function
|
|
4720
|
+
function h(a) {
|
|
4721
4721
|
var b = typeof Symbol != "undefined" && Symbol.iterator && a[Symbol.iterator];
|
|
4722
4722
|
if (b)
|
|
4723
4723
|
return b.call(a);
|
|
4724
4724
|
if (typeof a.length == "number")
|
|
4725
|
-
return { next:
|
|
4725
|
+
return { next: ba(a) };
|
|
4726
4726
|
throw Error(String(a) + " is not an iterable or ArrayLike");
|
|
4727
4727
|
}
|
|
4728
4728
|
var l = typeof Object.defineProperties == "function" ? Object.defineProperty : function(a, b, c) {
|
|
@@ -4731,7 +4731,7 @@ var require_cld2 = __commonJS((exports, module) => {
|
|
|
4731
4731
|
a[b] = c.value;
|
|
4732
4732
|
return a;
|
|
4733
4733
|
};
|
|
4734
|
-
function
|
|
4734
|
+
function ca(a) {
|
|
4735
4735
|
a = [typeof globalThis == "object" && globalThis, a, typeof window == "object" && window, typeof self == "object" && self, typeof global == "object" && global];
|
|
4736
4736
|
for (var b = 0;b < a.length; ++b) {
|
|
4737
4737
|
var c = a[b];
|
|
@@ -4740,17 +4740,17 @@ var require_cld2 = __commonJS((exports, module) => {
|
|
|
4740
4740
|
}
|
|
4741
4741
|
throw Error("Cannot find global object");
|
|
4742
4742
|
}
|
|
4743
|
-
var
|
|
4743
|
+
var n = ca(this);
|
|
4744
4744
|
function r(a, b) {
|
|
4745
4745
|
if (b)
|
|
4746
4746
|
a: {
|
|
4747
|
-
var c =
|
|
4747
|
+
var c = n;
|
|
4748
4748
|
a = a.split(".");
|
|
4749
4749
|
for (var d = 0;d < a.length - 1; d++) {
|
|
4750
|
-
var
|
|
4751
|
-
if (!(
|
|
4750
|
+
var e = a[d];
|
|
4751
|
+
if (!(e in c))
|
|
4752
4752
|
break a;
|
|
4753
|
-
c = c[
|
|
4753
|
+
c = c[e];
|
|
4754
4754
|
}
|
|
4755
4755
|
a = a[a.length - 1];
|
|
4756
4756
|
d = c[a];
|
|
@@ -4759,138 +4759,138 @@ var require_cld2 = __commonJS((exports, module) => {
|
|
|
4759
4759
|
}
|
|
4760
4760
|
}
|
|
4761
4761
|
function t() {
|
|
4762
|
-
this.
|
|
4763
|
-
this.
|
|
4764
|
-
this.
|
|
4765
|
-
this.
|
|
4766
|
-
this.
|
|
4767
|
-
this.
|
|
4762
|
+
this.H = false;
|
|
4763
|
+
this.C = null;
|
|
4764
|
+
this.D = undefined;
|
|
4765
|
+
this.A = 1;
|
|
4766
|
+
this.K = this.G = 0;
|
|
4767
|
+
this.F = null;
|
|
4768
4768
|
}
|
|
4769
4769
|
function u(a) {
|
|
4770
|
-
if (a.
|
|
4770
|
+
if (a.H)
|
|
4771
4771
|
throw new TypeError("Generator is already running");
|
|
4772
|
-
a.
|
|
4772
|
+
a.H = true;
|
|
4773
4773
|
}
|
|
4774
|
-
t.prototype.
|
|
4775
|
-
this.
|
|
4774
|
+
t.prototype.I = function(a) {
|
|
4775
|
+
this.D = a;
|
|
4776
4776
|
};
|
|
4777
4777
|
function v(a, b) {
|
|
4778
|
-
a.
|
|
4779
|
-
a.
|
|
4778
|
+
a.F = { S: b, aa: true };
|
|
4779
|
+
a.A = a.G || a.K;
|
|
4780
4780
|
}
|
|
4781
4781
|
t.prototype.return = function(a) {
|
|
4782
|
-
this.
|
|
4783
|
-
this.
|
|
4782
|
+
this.F = { return: a };
|
|
4783
|
+
this.A = this.K;
|
|
4784
4784
|
};
|
|
4785
|
-
function
|
|
4786
|
-
a.
|
|
4785
|
+
function w(a, b, c) {
|
|
4786
|
+
a.A = c;
|
|
4787
4787
|
return { value: b };
|
|
4788
4788
|
}
|
|
4789
4789
|
function y(a) {
|
|
4790
|
-
a.
|
|
4791
|
-
var b = a.
|
|
4792
|
-
a.
|
|
4790
|
+
a.G = 0;
|
|
4791
|
+
var b = a.F.S;
|
|
4792
|
+
a.F = null;
|
|
4793
4793
|
return b;
|
|
4794
4794
|
}
|
|
4795
|
-
function
|
|
4796
|
-
this.
|
|
4797
|
-
this.
|
|
4795
|
+
function da(a) {
|
|
4796
|
+
this.A = new t;
|
|
4797
|
+
this.C = a;
|
|
4798
4798
|
}
|
|
4799
|
-
function
|
|
4800
|
-
u(a.
|
|
4801
|
-
var c = a.
|
|
4799
|
+
function ea(a, b) {
|
|
4800
|
+
u(a.A);
|
|
4801
|
+
var c = a.A.C;
|
|
4802
4802
|
if (c)
|
|
4803
4803
|
return z(a, "return" in c ? c["return"] : function(d) {
|
|
4804
4804
|
return { value: d, done: true };
|
|
4805
|
-
}, b, a.
|
|
4806
|
-
a.
|
|
4805
|
+
}, b, a.A.return);
|
|
4806
|
+
a.A.return(b);
|
|
4807
4807
|
return C(a);
|
|
4808
4808
|
}
|
|
4809
4809
|
function z(a, b, c, d) {
|
|
4810
4810
|
try {
|
|
4811
|
-
var
|
|
4812
|
-
if (!(
|
|
4813
|
-
throw new TypeError("Iterator result " +
|
|
4814
|
-
if (!
|
|
4815
|
-
return a.
|
|
4816
|
-
var
|
|
4817
|
-
} catch (
|
|
4818
|
-
return a.
|
|
4819
|
-
}
|
|
4820
|
-
a.
|
|
4821
|
-
d.call(a.
|
|
4811
|
+
var e = b.call(a.A.C, c);
|
|
4812
|
+
if (!(e instanceof Object))
|
|
4813
|
+
throw new TypeError("Iterator result " + e + " is not an object");
|
|
4814
|
+
if (!e.done)
|
|
4815
|
+
return a.A.H = false, e;
|
|
4816
|
+
var g = e.value;
|
|
4817
|
+
} catch (f) {
|
|
4818
|
+
return a.A.C = null, v(a.A, f), C(a);
|
|
4819
|
+
}
|
|
4820
|
+
a.A.C = null;
|
|
4821
|
+
d.call(a.A, g);
|
|
4822
4822
|
return C(a);
|
|
4823
4823
|
}
|
|
4824
4824
|
function C(a) {
|
|
4825
|
-
for (;a.
|
|
4825
|
+
for (;a.A.A; )
|
|
4826
4826
|
try {
|
|
4827
|
-
var b = a.
|
|
4827
|
+
var b = a.C(a.A);
|
|
4828
4828
|
if (b)
|
|
4829
|
-
return a.
|
|
4829
|
+
return a.A.H = false, { value: b.value, done: false };
|
|
4830
4830
|
} catch (c) {
|
|
4831
|
-
a.
|
|
4832
|
-
}
|
|
4833
|
-
a.
|
|
4834
|
-
if (a.
|
|
4835
|
-
b = a.
|
|
4836
|
-
a.
|
|
4837
|
-
if (b
|
|
4838
|
-
throw b.
|
|
4831
|
+
a.A.D = undefined, v(a.A, c);
|
|
4832
|
+
}
|
|
4833
|
+
a.A.H = false;
|
|
4834
|
+
if (a.A.F) {
|
|
4835
|
+
b = a.A.F;
|
|
4836
|
+
a.A.F = null;
|
|
4837
|
+
if (b.aa)
|
|
4838
|
+
throw b.S;
|
|
4839
4839
|
return { value: b.return, done: true };
|
|
4840
4840
|
}
|
|
4841
4841
|
return { value: undefined, done: true };
|
|
4842
4842
|
}
|
|
4843
|
-
function
|
|
4843
|
+
function fa(a) {
|
|
4844
4844
|
this.next = function(b) {
|
|
4845
|
-
u(a.
|
|
4846
|
-
a.
|
|
4845
|
+
u(a.A);
|
|
4846
|
+
a.A.C ? b = z(a, a.A.C.next, b, a.A.I) : (a.A.I(b), b = C(a));
|
|
4847
4847
|
return b;
|
|
4848
4848
|
};
|
|
4849
4849
|
this.throw = function(b) {
|
|
4850
|
-
u(a.
|
|
4851
|
-
a.
|
|
4850
|
+
u(a.A);
|
|
4851
|
+
a.A.C ? b = z(a, a.A.C["throw"], b, a.A.I) : (v(a.A, b), b = C(a));
|
|
4852
4852
|
return b;
|
|
4853
4853
|
};
|
|
4854
4854
|
this.return = function(b) {
|
|
4855
|
-
return
|
|
4855
|
+
return ea(a, b);
|
|
4856
4856
|
};
|
|
4857
4857
|
this[Symbol.iterator] = function() {
|
|
4858
4858
|
return this;
|
|
4859
4859
|
};
|
|
4860
4860
|
}
|
|
4861
|
-
function
|
|
4861
|
+
function ha(a) {
|
|
4862
4862
|
function b(d) {
|
|
4863
4863
|
return a.next(d);
|
|
4864
4864
|
}
|
|
4865
4865
|
function c(d) {
|
|
4866
4866
|
return a.throw(d);
|
|
4867
4867
|
}
|
|
4868
|
-
return new Promise(function(d,
|
|
4869
|
-
function
|
|
4870
|
-
|
|
4868
|
+
return new Promise(function(d, e) {
|
|
4869
|
+
function g(f) {
|
|
4870
|
+
f.done ? d(f.value) : Promise.resolve(f.value).then(b, c).then(g, e);
|
|
4871
4871
|
}
|
|
4872
|
-
|
|
4872
|
+
g(a.next());
|
|
4873
4873
|
});
|
|
4874
4874
|
}
|
|
4875
4875
|
function D(a) {
|
|
4876
|
-
return
|
|
4876
|
+
return ha(new fa(new da(a)));
|
|
4877
4877
|
}
|
|
4878
4878
|
r("Symbol", function(a) {
|
|
4879
|
-
function b(
|
|
4879
|
+
function b(g) {
|
|
4880
4880
|
if (this instanceof b)
|
|
4881
4881
|
throw new TypeError("Symbol is not a constructor");
|
|
4882
|
-
return new c(d + (
|
|
4882
|
+
return new c(d + (g || "") + "_" + e++, g);
|
|
4883
4883
|
}
|
|
4884
|
-
function c(
|
|
4885
|
-
this.
|
|
4886
|
-
l(this, "description", { configurable: true, writable: true, value:
|
|
4884
|
+
function c(g, f) {
|
|
4885
|
+
this.A = g;
|
|
4886
|
+
l(this, "description", { configurable: true, writable: true, value: f });
|
|
4887
4887
|
}
|
|
4888
4888
|
if (a)
|
|
4889
4889
|
return a;
|
|
4890
4890
|
c.prototype.toString = function() {
|
|
4891
|
-
return this.
|
|
4891
|
+
return this.A;
|
|
4892
4892
|
};
|
|
4893
|
-
var d = "jscomp_symbol_" + (1e9 * Math.random() >>> 0) + "_",
|
|
4893
|
+
var d = "jscomp_symbol_" + (1e9 * Math.random() >>> 0) + "_", e = 0;
|
|
4894
4894
|
return b;
|
|
4895
4895
|
});
|
|
4896
4896
|
r("Symbol.iterator", function(a) {
|
|
@@ -4898,14 +4898,14 @@ var require_cld2 = __commonJS((exports, module) => {
|
|
|
4898
4898
|
return a;
|
|
4899
4899
|
a = Symbol("Symbol.iterator");
|
|
4900
4900
|
for (var b = "Array Int8Array Uint8Array Uint8ClampedArray Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array".split(" "), c = 0;c < b.length; c++) {
|
|
4901
|
-
var d =
|
|
4901
|
+
var d = n[b[c]];
|
|
4902
4902
|
typeof d === "function" && typeof d.prototype[a] != "function" && l(d.prototype, a, { configurable: true, writable: true, value: function() {
|
|
4903
|
-
return
|
|
4903
|
+
return ia(ba(this));
|
|
4904
4904
|
} });
|
|
4905
4905
|
}
|
|
4906
4906
|
return a;
|
|
4907
4907
|
});
|
|
4908
|
-
function
|
|
4908
|
+
function ia(a) {
|
|
4909
4909
|
a = { next: a };
|
|
4910
4910
|
a[Symbol.iterator] = function() {
|
|
4911
4911
|
return this;
|
|
@@ -4913,82 +4913,82 @@ var require_cld2 = __commonJS((exports, module) => {
|
|
|
4913
4913
|
return a;
|
|
4914
4914
|
}
|
|
4915
4915
|
r("Promise", function(a) {
|
|
4916
|
-
function b(
|
|
4917
|
-
this.
|
|
4918
|
-
this.
|
|
4919
|
-
this.
|
|
4920
|
-
this.
|
|
4921
|
-
var k = this.
|
|
4916
|
+
function b(f) {
|
|
4917
|
+
this.C = 0;
|
|
4918
|
+
this.D = undefined;
|
|
4919
|
+
this.A = [];
|
|
4920
|
+
this.I = false;
|
|
4921
|
+
var k = this.F();
|
|
4922
4922
|
try {
|
|
4923
|
-
|
|
4923
|
+
f(k.resolve, k.reject);
|
|
4924
4924
|
} catch (m) {
|
|
4925
4925
|
k.reject(m);
|
|
4926
4926
|
}
|
|
4927
4927
|
}
|
|
4928
4928
|
function c() {
|
|
4929
|
-
this.
|
|
4929
|
+
this.A = null;
|
|
4930
4930
|
}
|
|
4931
|
-
function d(
|
|
4932
|
-
return
|
|
4933
|
-
k(
|
|
4931
|
+
function d(f) {
|
|
4932
|
+
return f instanceof b ? f : new b(function(k) {
|
|
4933
|
+
k(f);
|
|
4934
4934
|
});
|
|
4935
4935
|
}
|
|
4936
4936
|
if (a)
|
|
4937
4937
|
return a;
|
|
4938
|
-
c.prototype.
|
|
4939
|
-
if (this.
|
|
4940
|
-
this.
|
|
4938
|
+
c.prototype.C = function(f) {
|
|
4939
|
+
if (this.A == null) {
|
|
4940
|
+
this.A = [];
|
|
4941
4941
|
var k = this;
|
|
4942
|
-
this.
|
|
4943
|
-
k.
|
|
4942
|
+
this.D(function() {
|
|
4943
|
+
k.G();
|
|
4944
4944
|
});
|
|
4945
4945
|
}
|
|
4946
|
-
this.
|
|
4946
|
+
this.A.push(f);
|
|
4947
4947
|
};
|
|
4948
|
-
var
|
|
4949
|
-
c.prototype.
|
|
4950
|
-
f
|
|
4948
|
+
var e = n.setTimeout;
|
|
4949
|
+
c.prototype.D = function(f) {
|
|
4950
|
+
e(f, 0);
|
|
4951
4951
|
};
|
|
4952
|
-
c.prototype.
|
|
4953
|
-
for (;this.
|
|
4954
|
-
var
|
|
4955
|
-
this.
|
|
4956
|
-
for (var k = 0;k <
|
|
4957
|
-
var m =
|
|
4958
|
-
|
|
4952
|
+
c.prototype.G = function() {
|
|
4953
|
+
for (;this.A && this.A.length; ) {
|
|
4954
|
+
var f = this.A;
|
|
4955
|
+
this.A = [];
|
|
4956
|
+
for (var k = 0;k < f.length; ++k) {
|
|
4957
|
+
var m = f[k];
|
|
4958
|
+
f[k] = null;
|
|
4959
4959
|
try {
|
|
4960
4960
|
m();
|
|
4961
|
-
} catch (
|
|
4962
|
-
this.
|
|
4961
|
+
} catch (p) {
|
|
4962
|
+
this.F(p);
|
|
4963
4963
|
}
|
|
4964
4964
|
}
|
|
4965
4965
|
}
|
|
4966
|
-
this.
|
|
4966
|
+
this.A = null;
|
|
4967
4967
|
};
|
|
4968
|
-
c.prototype.
|
|
4969
|
-
this.
|
|
4970
|
-
throw
|
|
4968
|
+
c.prototype.F = function(f) {
|
|
4969
|
+
this.D(function() {
|
|
4970
|
+
throw f;
|
|
4971
4971
|
});
|
|
4972
4972
|
};
|
|
4973
|
-
b.prototype.
|
|
4974
|
-
function
|
|
4973
|
+
b.prototype.F = function() {
|
|
4974
|
+
function f(p) {
|
|
4975
4975
|
return function(q) {
|
|
4976
|
-
m || (m = true,
|
|
4976
|
+
m || (m = true, p.call(k, q));
|
|
4977
4977
|
};
|
|
4978
4978
|
}
|
|
4979
4979
|
var k = this, m = false;
|
|
4980
|
-
return { resolve:
|
|
4980
|
+
return { resolve: f(this.W), reject: f(this.G) };
|
|
4981
4981
|
};
|
|
4982
|
-
b.prototype.
|
|
4983
|
-
if (
|
|
4984
|
-
this.
|
|
4985
|
-
else if (
|
|
4986
|
-
this.
|
|
4982
|
+
b.prototype.W = function(f) {
|
|
4983
|
+
if (f === this)
|
|
4984
|
+
this.G(new TypeError("A Promise cannot resolve to itself"));
|
|
4985
|
+
else if (f instanceof b)
|
|
4986
|
+
this.Y(f);
|
|
4987
4987
|
else {
|
|
4988
4988
|
a:
|
|
4989
|
-
switch (typeof
|
|
4989
|
+
switch (typeof f) {
|
|
4990
4990
|
case "object":
|
|
4991
|
-
var k =
|
|
4991
|
+
var k = f != null;
|
|
4992
4992
|
break a;
|
|
4993
4993
|
case "function":
|
|
4994
4994
|
k = true;
|
|
@@ -4996,144 +4996,144 @@ var require_cld2 = __commonJS((exports, module) => {
|
|
|
4996
4996
|
default:
|
|
4997
4997
|
k = false;
|
|
4998
4998
|
}
|
|
4999
|
-
k ? this.
|
|
4999
|
+
k ? this.V(f) : this.H(f);
|
|
5000
5000
|
}
|
|
5001
5001
|
};
|
|
5002
|
-
b.prototype.
|
|
5002
|
+
b.prototype.V = function(f) {
|
|
5003
5003
|
var k = undefined;
|
|
5004
5004
|
try {
|
|
5005
|
-
k =
|
|
5005
|
+
k = f.then;
|
|
5006
5006
|
} catch (m) {
|
|
5007
|
-
this.
|
|
5007
|
+
this.G(m);
|
|
5008
5008
|
return;
|
|
5009
5009
|
}
|
|
5010
|
-
typeof k == "function" ? this.
|
|
5010
|
+
typeof k == "function" ? this.Z(k, f) : this.H(f);
|
|
5011
5011
|
};
|
|
5012
|
-
b.prototype.
|
|
5013
|
-
this.
|
|
5012
|
+
b.prototype.G = function(f) {
|
|
5013
|
+
this.K(2, f);
|
|
5014
5014
|
};
|
|
5015
|
-
b.prototype.
|
|
5016
|
-
this.
|
|
5015
|
+
b.prototype.H = function(f) {
|
|
5016
|
+
this.K(1, f);
|
|
5017
5017
|
};
|
|
5018
|
-
b.prototype.
|
|
5019
|
-
if (this.
|
|
5020
|
-
throw Error("Cannot settle(" +
|
|
5021
|
-
this.
|
|
5022
|
-
this.
|
|
5023
|
-
this.
|
|
5024
|
-
this.
|
|
5018
|
+
b.prototype.K = function(f, k) {
|
|
5019
|
+
if (this.C != 0)
|
|
5020
|
+
throw Error("Cannot settle(" + f + ", " + k + "): Promise already settled in state" + this.C);
|
|
5021
|
+
this.C = f;
|
|
5022
|
+
this.D = k;
|
|
5023
|
+
this.C === 2 && this.X();
|
|
5024
|
+
this.T();
|
|
5025
5025
|
};
|
|
5026
|
-
b.prototype.
|
|
5027
|
-
var
|
|
5028
|
-
|
|
5029
|
-
if (
|
|
5030
|
-
var k =
|
|
5031
|
-
typeof k !== "undefined" && k.error(
|
|
5026
|
+
b.prototype.X = function() {
|
|
5027
|
+
var f = this;
|
|
5028
|
+
e(function() {
|
|
5029
|
+
if (f.U()) {
|
|
5030
|
+
var k = n.console;
|
|
5031
|
+
typeof k !== "undefined" && k.error(f.D);
|
|
5032
5032
|
}
|
|
5033
5033
|
}, 1);
|
|
5034
5034
|
};
|
|
5035
|
-
b.prototype.
|
|
5036
|
-
if (this.
|
|
5035
|
+
b.prototype.U = function() {
|
|
5036
|
+
if (this.I)
|
|
5037
5037
|
return false;
|
|
5038
|
-
var { CustomEvent:
|
|
5038
|
+
var { CustomEvent: f, Event: k, dispatchEvent: m } = n;
|
|
5039
5039
|
if (typeof m === "undefined")
|
|
5040
5040
|
return true;
|
|
5041
|
-
typeof
|
|
5042
|
-
|
|
5043
|
-
|
|
5044
|
-
return m(
|
|
5041
|
+
typeof f === "function" ? f = new f("unhandledrejection", { cancelable: true }) : typeof k === "function" ? f = new k("unhandledrejection", { cancelable: true }) : (f = n.document.createEvent("CustomEvent"), f.initCustomEvent("unhandledrejection", false, true, f));
|
|
5042
|
+
f.promise = this;
|
|
5043
|
+
f.reason = this.D;
|
|
5044
|
+
return m(f);
|
|
5045
5045
|
};
|
|
5046
|
-
b.prototype.
|
|
5047
|
-
if (this.
|
|
5048
|
-
for (var
|
|
5049
|
-
|
|
5050
|
-
this.
|
|
5046
|
+
b.prototype.T = function() {
|
|
5047
|
+
if (this.A != null) {
|
|
5048
|
+
for (var f = 0;f < this.A.length; ++f)
|
|
5049
|
+
g.C(this.A[f]);
|
|
5050
|
+
this.A = null;
|
|
5051
5051
|
}
|
|
5052
5052
|
};
|
|
5053
|
-
var
|
|
5054
|
-
b.prototype.
|
|
5055
|
-
var k = this.
|
|
5056
|
-
|
|
5053
|
+
var g = new c;
|
|
5054
|
+
b.prototype.Y = function(f) {
|
|
5055
|
+
var k = this.F();
|
|
5056
|
+
f.O(k.resolve, k.reject);
|
|
5057
5057
|
};
|
|
5058
|
-
b.prototype.
|
|
5059
|
-
var m = this.
|
|
5058
|
+
b.prototype.Z = function(f, k) {
|
|
5059
|
+
var m = this.F();
|
|
5060
5060
|
try {
|
|
5061
|
-
|
|
5062
|
-
} catch (
|
|
5063
|
-
m.reject(
|
|
5061
|
+
f.call(k, m.resolve, m.reject);
|
|
5062
|
+
} catch (p) {
|
|
5063
|
+
m.reject(p);
|
|
5064
5064
|
}
|
|
5065
5065
|
};
|
|
5066
|
-
b.prototype.then = function(
|
|
5067
|
-
function m(
|
|
5068
|
-
return typeof
|
|
5066
|
+
b.prototype.then = function(f, k) {
|
|
5067
|
+
function m(x, A) {
|
|
5068
|
+
return typeof x == "function" ? function(Z) {
|
|
5069
5069
|
try {
|
|
5070
|
-
|
|
5071
|
-
} catch (
|
|
5072
|
-
q(
|
|
5070
|
+
p(x(Z));
|
|
5071
|
+
} catch (aa) {
|
|
5072
|
+
q(aa);
|
|
5073
5073
|
}
|
|
5074
5074
|
} : A;
|
|
5075
5075
|
}
|
|
5076
|
-
var
|
|
5077
|
-
|
|
5076
|
+
var p, q, B = new b(function(x, A) {
|
|
5077
|
+
p = x;
|
|
5078
5078
|
q = A;
|
|
5079
5079
|
});
|
|
5080
|
-
this.
|
|
5080
|
+
this.O(m(f, p), m(k, q));
|
|
5081
5081
|
return B;
|
|
5082
5082
|
};
|
|
5083
|
-
b.prototype.catch = function(
|
|
5084
|
-
return this.then(undefined,
|
|
5083
|
+
b.prototype.catch = function(f) {
|
|
5084
|
+
return this.then(undefined, f);
|
|
5085
5085
|
};
|
|
5086
|
-
b.prototype.
|
|
5086
|
+
b.prototype.O = function(f, k) {
|
|
5087
5087
|
function m() {
|
|
5088
|
-
switch (
|
|
5088
|
+
switch (p.C) {
|
|
5089
5089
|
case 1:
|
|
5090
|
-
|
|
5090
|
+
f(p.D);
|
|
5091
5091
|
break;
|
|
5092
5092
|
case 2:
|
|
5093
|
-
k(
|
|
5093
|
+
k(p.D);
|
|
5094
5094
|
break;
|
|
5095
5095
|
default:
|
|
5096
|
-
throw Error("Unexpected state: " +
|
|
5096
|
+
throw Error("Unexpected state: " + p.C);
|
|
5097
5097
|
}
|
|
5098
5098
|
}
|
|
5099
|
-
var
|
|
5100
|
-
this.
|
|
5101
|
-
this.
|
|
5099
|
+
var p = this;
|
|
5100
|
+
this.A == null ? g.C(m) : this.A.push(m);
|
|
5101
|
+
this.I = true;
|
|
5102
5102
|
};
|
|
5103
5103
|
b.resolve = d;
|
|
5104
|
-
b.reject = function(
|
|
5104
|
+
b.reject = function(f) {
|
|
5105
5105
|
return new b(function(k, m) {
|
|
5106
|
-
m(
|
|
5106
|
+
m(f);
|
|
5107
5107
|
});
|
|
5108
5108
|
};
|
|
5109
|
-
b.race = function(
|
|
5109
|
+
b.race = function(f) {
|
|
5110
5110
|
return new b(function(k, m) {
|
|
5111
|
-
for (var
|
|
5112
|
-
d(q.value).
|
|
5111
|
+
for (var p = h(f), q = p.next();!q.done; q = p.next())
|
|
5112
|
+
d(q.value).O(k, m);
|
|
5113
5113
|
});
|
|
5114
5114
|
};
|
|
5115
|
-
b.all = function(
|
|
5116
|
-
var k =
|
|
5117
|
-
return m.done ? d([]) : new b(function(
|
|
5118
|
-
function B(
|
|
5119
|
-
return function(
|
|
5120
|
-
|
|
5115
|
+
b.all = function(f) {
|
|
5116
|
+
var k = h(f), m = k.next();
|
|
5117
|
+
return m.done ? d([]) : new b(function(p, q) {
|
|
5118
|
+
function B(Z) {
|
|
5119
|
+
return function(aa) {
|
|
5120
|
+
x[Z] = aa;
|
|
5121
5121
|
A--;
|
|
5122
|
-
A == 0 &&
|
|
5122
|
+
A == 0 && p(x);
|
|
5123
5123
|
};
|
|
5124
5124
|
}
|
|
5125
|
-
var
|
|
5125
|
+
var x = [], A = 0;
|
|
5126
5126
|
do
|
|
5127
|
-
|
|
5127
|
+
x.push(undefined), A++, d(m.value).O(B(x.length - 1), q), m = k.next();
|
|
5128
5128
|
while (!m.done);
|
|
5129
5129
|
});
|
|
5130
5130
|
};
|
|
5131
5131
|
return b;
|
|
5132
5132
|
});
|
|
5133
5133
|
r("globalThis", function(a) {
|
|
5134
|
-
return a ||
|
|
5134
|
+
return a || n;
|
|
5135
5135
|
});
|
|
5136
|
-
function
|
|
5136
|
+
function ja(a, b, c) {
|
|
5137
5137
|
if (a == null)
|
|
5138
5138
|
throw new TypeError("The 'this' value for String.prototype." + c + " must not be null or undefined");
|
|
5139
5139
|
if (b instanceof RegExp)
|
|
@@ -5142,61 +5142,61 @@ var require_cld2 = __commonJS((exports, module) => {
|
|
|
5142
5142
|
}
|
|
5143
5143
|
r("String.prototype.startsWith", function(a) {
|
|
5144
5144
|
return a ? a : function(b, c) {
|
|
5145
|
-
var d =
|
|
5145
|
+
var d = ja(this, b, "startsWith"), e = d.length, g = b.length;
|
|
5146
5146
|
c = Math.max(0, Math.min(c | 0, d.length));
|
|
5147
|
-
for (var
|
|
5148
|
-
if (d[c++] != b[
|
|
5147
|
+
for (var f = 0;f < g && c < e; )
|
|
5148
|
+
if (d[c++] != b[f++])
|
|
5149
5149
|
return false;
|
|
5150
|
-
return
|
|
5150
|
+
return f >= g;
|
|
5151
5151
|
};
|
|
5152
5152
|
});
|
|
5153
5153
|
r("String.prototype.codePointAt", function(a) {
|
|
5154
5154
|
return a ? a : function(b) {
|
|
5155
|
-
var c =
|
|
5155
|
+
var c = ja(this, null, "codePointAt"), d = c.length;
|
|
5156
5156
|
b = Number(b) || 0;
|
|
5157
5157
|
if (0 <= b && b < d) {
|
|
5158
5158
|
b |= 0;
|
|
5159
|
-
var
|
|
5160
|
-
if (55296 >
|
|
5161
|
-
return
|
|
5159
|
+
var e = c.charCodeAt(b);
|
|
5160
|
+
if (55296 > e || 56319 < e || b + 1 === d)
|
|
5161
|
+
return e;
|
|
5162
5162
|
b = c.charCodeAt(b + 1);
|
|
5163
|
-
return 56320 > b || 57343 < b ?
|
|
5163
|
+
return 56320 > b || 57343 < b ? e : 1024 * (e - 55296) + b + 9216;
|
|
5164
5164
|
}
|
|
5165
5165
|
};
|
|
5166
5166
|
});
|
|
5167
|
-
function
|
|
5167
|
+
function ka(a, b) {
|
|
5168
5168
|
a instanceof String && (a += "");
|
|
5169
|
-
var c = 0, d = false,
|
|
5169
|
+
var c = 0, d = false, e = { next: function() {
|
|
5170
5170
|
if (!d && c < a.length) {
|
|
5171
|
-
var
|
|
5172
|
-
return { value: b(
|
|
5171
|
+
var g = c++;
|
|
5172
|
+
return { value: b(g, a[g]), done: false };
|
|
5173
5173
|
}
|
|
5174
5174
|
d = true;
|
|
5175
5175
|
return { done: true, value: undefined };
|
|
5176
5176
|
} };
|
|
5177
|
-
|
|
5178
|
-
return
|
|
5177
|
+
e[Symbol.iterator] = function() {
|
|
5178
|
+
return e;
|
|
5179
5179
|
};
|
|
5180
|
-
return
|
|
5180
|
+
return e;
|
|
5181
5181
|
}
|
|
5182
5182
|
r("Array.prototype.keys", function(a) {
|
|
5183
5183
|
return a ? a : function() {
|
|
5184
|
-
return
|
|
5184
|
+
return ka(this, function(b) {
|
|
5185
5185
|
return b;
|
|
5186
5186
|
});
|
|
5187
5187
|
};
|
|
5188
5188
|
});
|
|
5189
|
-
var E = moduleArg,
|
|
5190
|
-
typeof __filename != "undefined" ? _scriptName = __filename :
|
|
5191
|
-
var F = "",
|
|
5192
|
-
if (
|
|
5189
|
+
var E = moduleArg, la = !!globalThis.window, ma = !!globalThis.WorkerGlobalScope, na, oa, pa, qa = ((na = globalThis.process) == null ? undefined : (oa = na.versions) == null ? undefined : oa.node) && ((pa = globalThis.process) == null ? undefined : pa.type) != "renderer";
|
|
5190
|
+
typeof __filename != "undefined" ? _scriptName = __filename : ma && (_scriptName = self.location.href);
|
|
5191
|
+
var F = "", ra, G;
|
|
5192
|
+
if (qa) {
|
|
5193
5193
|
var fs5 = __require("fs");
|
|
5194
5194
|
F = __dirname + "/";
|
|
5195
5195
|
G = function(a) {
|
|
5196
5196
|
a = H(a) ? new URL(a) : a;
|
|
5197
5197
|
return fs5.readFileSync(a);
|
|
5198
5198
|
};
|
|
5199
|
-
|
|
5199
|
+
ra = function(a) {
|
|
5200
5200
|
var b = b === undefined ? true : b;
|
|
5201
5201
|
var c;
|
|
5202
5202
|
return D(function(d) {
|
|
@@ -5206,46 +5206,46 @@ var require_cld2 = __commonJS((exports, module) => {
|
|
|
5206
5206
|
});
|
|
5207
5207
|
};
|
|
5208
5208
|
process.argv.slice(2);
|
|
5209
|
-
} else if (
|
|
5209
|
+
} else if (la || ma) {
|
|
5210
5210
|
try {
|
|
5211
5211
|
F = new URL(".", _scriptName).href;
|
|
5212
5212
|
} catch (a) {}
|
|
5213
|
-
|
|
5213
|
+
ma && (G = function(a) {
|
|
5214
5214
|
var b = new XMLHttpRequest;
|
|
5215
5215
|
b.open("GET", a, false);
|
|
5216
5216
|
b.responseType = "arraybuffer";
|
|
5217
5217
|
b.send(null);
|
|
5218
5218
|
return new Uint8Array(b.response);
|
|
5219
5219
|
});
|
|
5220
|
-
|
|
5220
|
+
ra = function(a) {
|
|
5221
5221
|
var b;
|
|
5222
5222
|
return D(function(c) {
|
|
5223
|
-
if (c.
|
|
5224
|
-
return H(a) ? c.return(new Promise(function(d,
|
|
5225
|
-
var
|
|
5226
|
-
|
|
5227
|
-
|
|
5228
|
-
|
|
5229
|
-
|
|
5223
|
+
if (c.A == 1)
|
|
5224
|
+
return H(a) ? c.return(new Promise(function(d, e) {
|
|
5225
|
+
var g = new XMLHttpRequest;
|
|
5226
|
+
g.open("GET", a, true);
|
|
5227
|
+
g.responseType = "arraybuffer";
|
|
5228
|
+
g.onload = function() {
|
|
5229
|
+
g.status == 200 || g.status == 0 && g.response ? d(g.response) : e(g.status);
|
|
5230
5230
|
};
|
|
5231
|
-
|
|
5232
|
-
|
|
5233
|
-
})) :
|
|
5234
|
-
b = c.
|
|
5231
|
+
g.onerror = e;
|
|
5232
|
+
g.send(null);
|
|
5233
|
+
})) : w(c, fetch(a, { credentials: "same-origin" }), 2);
|
|
5234
|
+
b = c.D;
|
|
5235
5235
|
if (b.ok)
|
|
5236
5236
|
return c.return(b.arrayBuffer());
|
|
5237
5237
|
throw Error(b.status + " : " + b.url);
|
|
5238
5238
|
});
|
|
5239
5239
|
};
|
|
5240
5240
|
}
|
|
5241
|
-
var
|
|
5241
|
+
var sa = console.log.bind(console), I = console.error.bind(console), J, ta = false;
|
|
5242
5242
|
function H(a) {
|
|
5243
5243
|
return a.startsWith("file://");
|
|
5244
5244
|
}
|
|
5245
|
-
var
|
|
5246
|
-
function
|
|
5245
|
+
var ua, va, wa, K, L, xa = false;
|
|
5246
|
+
function ya() {
|
|
5247
5247
|
var a = M.buffer;
|
|
5248
|
-
|
|
5248
|
+
wa = new Int8Array(a);
|
|
5249
5249
|
new Int16Array(a);
|
|
5250
5250
|
K = new Uint8Array(a);
|
|
5251
5251
|
new Uint16Array(a);
|
|
@@ -5261,130 +5261,130 @@ var require_cld2 = __commonJS((exports, module) => {
|
|
|
5261
5261
|
(b = E.onAbort) == null || b.call(E, a);
|
|
5262
5262
|
a = "Aborted(" + a + ")";
|
|
5263
5263
|
I(a);
|
|
5264
|
-
|
|
5264
|
+
ta = true;
|
|
5265
5265
|
a = new WebAssembly.RuntimeError(a + ". Build with -sASSERTIONS for more info.");
|
|
5266
5266
|
var c;
|
|
5267
|
-
(c =
|
|
5267
|
+
(c = va) == null || c(a);
|
|
5268
5268
|
throw a;
|
|
5269
5269
|
}
|
|
5270
5270
|
var O;
|
|
5271
|
-
function
|
|
5271
|
+
function za(a) {
|
|
5272
5272
|
var b;
|
|
5273
5273
|
return D(function(c) {
|
|
5274
|
-
switch (c.
|
|
5274
|
+
switch (c.A) {
|
|
5275
5275
|
case 1:
|
|
5276
5276
|
if (J) {
|
|
5277
|
-
c.
|
|
5277
|
+
c.A = 2;
|
|
5278
5278
|
break;
|
|
5279
5279
|
}
|
|
5280
|
-
c.
|
|
5281
|
-
return
|
|
5280
|
+
c.G = 3;
|
|
5281
|
+
return w(c, ra(a), 5);
|
|
5282
5282
|
case 5:
|
|
5283
|
-
return b = c.
|
|
5283
|
+
return b = c.D, c.return(new Uint8Array(b));
|
|
5284
5284
|
case 3:
|
|
5285
5285
|
y(c);
|
|
5286
5286
|
case 2:
|
|
5287
5287
|
var d = c.return;
|
|
5288
5288
|
if (a == O && J)
|
|
5289
|
-
var
|
|
5289
|
+
var e = new Uint8Array(J);
|
|
5290
5290
|
else if (G)
|
|
5291
|
-
|
|
5291
|
+
e = G(a);
|
|
5292
5292
|
else
|
|
5293
5293
|
throw "both async and sync fetching of the wasm failed";
|
|
5294
|
-
return d.call(c,
|
|
5294
|
+
return d.call(c, e);
|
|
5295
5295
|
}
|
|
5296
5296
|
});
|
|
5297
5297
|
}
|
|
5298
|
-
function
|
|
5299
|
-
var c, d,
|
|
5300
|
-
return D(function(
|
|
5301
|
-
switch (
|
|
5298
|
+
function Aa(a, b) {
|
|
5299
|
+
var c, d, e;
|
|
5300
|
+
return D(function(g) {
|
|
5301
|
+
switch (g.A) {
|
|
5302
5302
|
case 1:
|
|
5303
|
-
return
|
|
5303
|
+
return g.G = 2, w(g, za(a), 4);
|
|
5304
5304
|
case 4:
|
|
5305
|
-
return c =
|
|
5305
|
+
return c = g.D, w(g, WebAssembly.instantiate(c, b), 5);
|
|
5306
5306
|
case 5:
|
|
5307
|
-
return d =
|
|
5307
|
+
return d = g.D, g.return(d);
|
|
5308
5308
|
case 2:
|
|
5309
|
-
|
|
5309
|
+
e = y(g), I("failed to asynchronously prepare wasm: " + e), N(e), g.A = 0;
|
|
5310
5310
|
}
|
|
5311
5311
|
});
|
|
5312
5312
|
}
|
|
5313
|
-
function
|
|
5314
|
-
var b = J, c = O, d,
|
|
5315
|
-
return D(function(
|
|
5316
|
-
switch (
|
|
5313
|
+
function Ba(a) {
|
|
5314
|
+
var b = J, c = O, d, e, g;
|
|
5315
|
+
return D(function(f) {
|
|
5316
|
+
switch (f.A) {
|
|
5317
5317
|
case 1:
|
|
5318
|
-
if (b || H(c) ||
|
|
5319
|
-
|
|
5318
|
+
if (b || H(c) || qa) {
|
|
5319
|
+
f.A = 2;
|
|
5320
5320
|
break;
|
|
5321
5321
|
}
|
|
5322
|
-
|
|
5322
|
+
f.G = 3;
|
|
5323
5323
|
d = fetch(c, { credentials: "same-origin" });
|
|
5324
|
-
return
|
|
5324
|
+
return w(f, WebAssembly.instantiateStreaming(d, a), 5);
|
|
5325
5325
|
case 5:
|
|
5326
|
-
return
|
|
5326
|
+
return e = f.D, f.return(e);
|
|
5327
5327
|
case 3:
|
|
5328
|
-
|
|
5328
|
+
g = y(f), I("wasm streaming compile failed: " + g), I("falling back to ArrayBuffer instantiation");
|
|
5329
5329
|
case 2:
|
|
5330
|
-
return
|
|
5330
|
+
return f.return(Aa(c, a));
|
|
5331
5331
|
}
|
|
5332
5332
|
});
|
|
5333
5333
|
}
|
|
5334
|
-
function
|
|
5334
|
+
function Ca(a) {
|
|
5335
5335
|
for (;0 < a.length; )
|
|
5336
5336
|
a.shift()(E);
|
|
5337
5337
|
}
|
|
5338
|
-
var
|
|
5339
|
-
function
|
|
5338
|
+
var Da = [], Ea = [];
|
|
5339
|
+
function Fa() {
|
|
5340
5340
|
var a = E.preRun.shift();
|
|
5341
|
-
|
|
5341
|
+
Ea.push(a);
|
|
5342
5342
|
}
|
|
5343
|
-
function
|
|
5344
|
-
this.
|
|
5343
|
+
function Ga(a) {
|
|
5344
|
+
this.B = a - 24;
|
|
5345
5345
|
}
|
|
5346
|
-
var
|
|
5347
|
-
function
|
|
5346
|
+
var Ha = 0, Ia = 0, Ja = [null, [], []], Ka = globalThis.TextDecoder && new TextDecoder;
|
|
5347
|
+
function La(a, b) {
|
|
5348
5348
|
b = b === undefined ? 0 : b;
|
|
5349
5349
|
var c = b;
|
|
5350
5350
|
for (var d = c + undefined;a[c] && !(c >= d); )
|
|
5351
5351
|
++c;
|
|
5352
|
-
if (16 < c - b && a.buffer &&
|
|
5353
|
-
return
|
|
5352
|
+
if (16 < c - b && a.buffer && Ka)
|
|
5353
|
+
return Ka.decode(a.subarray(b, c));
|
|
5354
5354
|
for (d = "";b < c; ) {
|
|
5355
|
-
var
|
|
5356
|
-
if (
|
|
5357
|
-
var
|
|
5358
|
-
if ((
|
|
5359
|
-
d += String.fromCharCode((
|
|
5355
|
+
var e = a[b++];
|
|
5356
|
+
if (e & 128) {
|
|
5357
|
+
var g = a[b++] & 63;
|
|
5358
|
+
if ((e & 224) == 192)
|
|
5359
|
+
d += String.fromCharCode((e & 31) << 6 | g);
|
|
5360
5360
|
else {
|
|
5361
|
-
var
|
|
5362
|
-
|
|
5363
|
-
65536 >
|
|
5361
|
+
var f = a[b++] & 63;
|
|
5362
|
+
e = (e & 240) == 224 ? (e & 15) << 12 | g << 6 | f : (e & 7) << 18 | g << 12 | f << 6 | a[b++] & 63;
|
|
5363
|
+
65536 > e ? d += String.fromCharCode(e) : (e -= 65536, d += String.fromCharCode(55296 | e >> 10, 56320 | e & 1023));
|
|
5364
5364
|
}
|
|
5365
5365
|
} else
|
|
5366
|
-
d += String.fromCharCode(
|
|
5366
|
+
d += String.fromCharCode(e);
|
|
5367
5367
|
}
|
|
5368
5368
|
return d;
|
|
5369
5369
|
}
|
|
5370
|
-
function
|
|
5371
|
-
return a ?
|
|
5370
|
+
function Ma(a) {
|
|
5371
|
+
return a ? La(K, a) : "";
|
|
5372
5372
|
}
|
|
5373
|
-
var
|
|
5374
|
-
E.print && (
|
|
5373
|
+
var Na = [];
|
|
5374
|
+
E.print && (sa = E.print);
|
|
5375
5375
|
E.printErr && (I = E.printErr);
|
|
5376
5376
|
E.wasmBinary && (J = E.wasmBinary);
|
|
5377
5377
|
if (E.preInit)
|
|
5378
5378
|
for (typeof E.preInit == "function" && (E.preInit = [E.preInit]);0 < E.preInit.length; )
|
|
5379
5379
|
E.preInit.shift()();
|
|
5380
|
-
var
|
|
5381
|
-
var d = new
|
|
5382
|
-
L[d.
|
|
5383
|
-
L[d.
|
|
5384
|
-
L[d.
|
|
5385
|
-
|
|
5386
|
-
|
|
5387
|
-
throw
|
|
5380
|
+
var Oa, Pa, Qa, Ra, Sa, Ta, Ua, Va, Wa, Xa, Ya, Za, $a, ab2, M, bb = { a: function(a, b, c) {
|
|
5381
|
+
var d = new Ga(a);
|
|
5382
|
+
L[d.B + 16 >> 2] = 0;
|
|
5383
|
+
L[d.B + 4 >> 2] = b;
|
|
5384
|
+
L[d.B + 8 >> 2] = c;
|
|
5385
|
+
Ha = a;
|
|
5386
|
+
Ia++;
|
|
5387
|
+
throw Ha;
|
|
5388
5388
|
}, c: function() {
|
|
5389
5389
|
return N("");
|
|
5390
5390
|
}, e: function(a, b) {
|
|
@@ -5401,89 +5401,91 @@ var require_cld2 = __commonJS((exports, module) => {
|
|
|
5401
5401
|
d = (Math.min(2147483648, 65536 * Math.ceil(Math.max(a, d) / 65536)) - M.buffer.byteLength + 65535) / 65536 | 0;
|
|
5402
5402
|
try {
|
|
5403
5403
|
M.grow(d);
|
|
5404
|
-
|
|
5405
|
-
var
|
|
5404
|
+
ya();
|
|
5405
|
+
var e = 1;
|
|
5406
5406
|
break a;
|
|
5407
|
-
} catch (
|
|
5408
|
-
|
|
5407
|
+
} catch (g) {}
|
|
5408
|
+
e = undefined;
|
|
5409
5409
|
}
|
|
5410
|
-
if (
|
|
5410
|
+
if (e)
|
|
5411
5411
|
return true;
|
|
5412
5412
|
}
|
|
5413
5413
|
return false;
|
|
5414
5414
|
}, b: function(a, b, c, d) {
|
|
5415
|
-
for (var
|
|
5416
|
-
var
|
|
5415
|
+
for (var e = 0, g = 0;g < c; g++) {
|
|
5416
|
+
var f = L[b >> 2], k = L[b + 4 >> 2];
|
|
5417
5417
|
b += 8;
|
|
5418
5418
|
for (var m = 0;m < k; m++) {
|
|
5419
|
-
var
|
|
5420
|
-
q === 0 || q === 10 ? ((
|
|
5419
|
+
var p = a, q = K[f + m], B = Ja[p];
|
|
5420
|
+
q === 0 || q === 10 ? ((p === 1 ? sa : I)(La(B)), B.length = 0) : B.push(q);
|
|
5421
5421
|
}
|
|
5422
|
-
|
|
5422
|
+
e += k;
|
|
5423
5423
|
}
|
|
5424
|
-
L[d >> 2] =
|
|
5424
|
+
L[d >> 2] = e;
|
|
5425
5425
|
return 0;
|
|
5426
5426
|
} }, P;
|
|
5427
5427
|
P = await function() {
|
|
5428
|
-
function a(
|
|
5429
|
-
|
|
5430
|
-
E._webidl_free =
|
|
5431
|
-
E._webidl_malloc =
|
|
5432
|
-
|
|
5433
|
-
|
|
5434
|
-
|
|
5435
|
-
|
|
5436
|
-
|
|
5437
|
-
|
|
5438
|
-
|
|
5439
|
-
|
|
5440
|
-
|
|
5441
|
-
|
|
5442
|
-
|
|
5443
|
-
|
|
5444
|
-
|
|
5445
|
-
|
|
5428
|
+
function a(e) {
|
|
5429
|
+
e = P = e.exports;
|
|
5430
|
+
E._webidl_free = e.h;
|
|
5431
|
+
E._webidl_malloc = e.i;
|
|
5432
|
+
Oa = E._emscripten_bind_Language_getLanguageCode_0 = e.j;
|
|
5433
|
+
Pa = E._emscripten_bind_Language___destroy___0 = e.k;
|
|
5434
|
+
Qa = E._emscripten_bind_VoidPtr___destroy___0 = e.l;
|
|
5435
|
+
Ra = E._emscripten_bind_LanguageGuess_getPercent_0 = e.m;
|
|
5436
|
+
Sa = E._emscripten_bind_LanguageGuess_getLanguageCode_0 = e.n;
|
|
5437
|
+
Ta = E._emscripten_bind_LanguageGuess___destroy___0 = e.o;
|
|
5438
|
+
Ua = E._emscripten_bind_LanguageInfo_detectLanguageWithLength_3 = e.p;
|
|
5439
|
+
Va = E._emscripten_bind_LanguageInfo_detectLanguageWithLength_6 = e.q;
|
|
5440
|
+
Wa = E._emscripten_bind_LanguageInfo_detectLanguage_2 = e.r;
|
|
5441
|
+
Xa = E._emscripten_bind_LanguageInfo_detectLanguage_5 = e.s;
|
|
5442
|
+
Ya = E._emscripten_bind_LanguageInfo_getIsReliable_0 = e.t;
|
|
5443
|
+
Za = E._emscripten_bind_LanguageInfo_getLanguageCode_0 = e.u;
|
|
5444
|
+
$a = E._emscripten_bind_LanguageInfo_get_languages_1 = e.v;
|
|
5445
|
+
ab2 = E._emscripten_bind_LanguageInfo___destroy___0 = e.w;
|
|
5446
|
+
M = e.f;
|
|
5447
|
+
ya();
|
|
5446
5448
|
return P;
|
|
5447
5449
|
}
|
|
5448
5450
|
var b, c, d;
|
|
5449
|
-
return D(function(
|
|
5450
|
-
if (
|
|
5451
|
-
b = { a:
|
|
5451
|
+
return D(function(e) {
|
|
5452
|
+
if (e.A == 1) {
|
|
5453
|
+
b = { a: bb };
|
|
5452
5454
|
if (E.instantiateWasm)
|
|
5453
|
-
return
|
|
5454
|
-
E.instantiateWasm(b, function(
|
|
5455
|
-
|
|
5455
|
+
return e.return(new Promise(function(g) {
|
|
5456
|
+
E.instantiateWasm(b, function(f, k) {
|
|
5457
|
+
g(a(f, k));
|
|
5456
5458
|
});
|
|
5457
5459
|
}));
|
|
5458
5460
|
O != null || (O = E.locateFile ? E.locateFile("cld2.wasm", F) : F + "cld2.wasm");
|
|
5459
|
-
return
|
|
5461
|
+
return w(e, Ba(b), 2);
|
|
5460
5462
|
}
|
|
5461
|
-
c =
|
|
5463
|
+
c = e.D;
|
|
5462
5464
|
d = a(c.instance);
|
|
5463
|
-
return
|
|
5465
|
+
return e.return(d);
|
|
5464
5466
|
});
|
|
5465
5467
|
}();
|
|
5466
5468
|
(function() {
|
|
5467
5469
|
function a() {
|
|
5468
5470
|
E.calledRun = true;
|
|
5469
|
-
if (!
|
|
5470
|
-
|
|
5471
|
-
|
|
5471
|
+
if (!ta) {
|
|
5472
|
+
xa = true;
|
|
5473
|
+
Ca(Na);
|
|
5472
5474
|
P.g();
|
|
5473
5475
|
var b;
|
|
5474
|
-
(b =
|
|
5476
|
+
(b = ua) == null || b(E);
|
|
5475
5477
|
var c;
|
|
5476
5478
|
(c = E.onRuntimeInitialized) == null || c.call(E);
|
|
5477
5479
|
if (E.postRun)
|
|
5478
5480
|
for (typeof E.postRun == "function" && (E.postRun = [E.postRun]);E.postRun.length; )
|
|
5479
|
-
b = E.postRun.shift(),
|
|
5480
|
-
|
|
5481
|
+
b = E.postRun.shift(), Da.push(b);
|
|
5482
|
+
Ca(Da);
|
|
5481
5483
|
}
|
|
5482
5484
|
}
|
|
5483
5485
|
if (E.preRun)
|
|
5484
5486
|
for (typeof E.preRun == "function" && (E.preRun = [E.preRun]);E.preRun.length; )
|
|
5485
|
-
|
|
5486
|
-
|
|
5487
|
+
Fa();
|
|
5488
|
+
Ca(Ea);
|
|
5487
5489
|
E.setStatus ? (E.setStatus("Running..."), setTimeout(function() {
|
|
5488
5490
|
setTimeout(function() {
|
|
5489
5491
|
return E.setStatus("");
|
|
@@ -5494,61 +5496,61 @@ var require_cld2 = __commonJS((exports, module) => {
|
|
|
5494
5496
|
function Q() {}
|
|
5495
5497
|
Q.prototype = Object.create(Q.prototype);
|
|
5496
5498
|
Q.prototype.constructor = Q;
|
|
5497
|
-
Q.prototype.
|
|
5498
|
-
Q.
|
|
5499
|
+
Q.prototype.J = Q;
|
|
5500
|
+
Q.L = {};
|
|
5499
5501
|
E.WrapperObject = Q;
|
|
5500
|
-
function
|
|
5501
|
-
return (a || Q).
|
|
5502
|
+
function cb(a) {
|
|
5503
|
+
return (a || Q).L;
|
|
5502
5504
|
}
|
|
5503
|
-
E.getCache =
|
|
5505
|
+
E.getCache = cb;
|
|
5504
5506
|
function R(a, b) {
|
|
5505
|
-
var c =
|
|
5507
|
+
var c = cb(b), d = c[a];
|
|
5506
5508
|
if (d)
|
|
5507
5509
|
return d;
|
|
5508
5510
|
d = Object.create((b || Q).prototype);
|
|
5509
|
-
d.
|
|
5511
|
+
d.B = a;
|
|
5510
5512
|
return c[a] = d;
|
|
5511
5513
|
}
|
|
5512
5514
|
E.wrapPointer = R;
|
|
5513
5515
|
E.castObject = function(a, b) {
|
|
5514
|
-
return R(a.
|
|
5516
|
+
return R(a.B, b);
|
|
5515
5517
|
};
|
|
5516
5518
|
E.NULL = R(0);
|
|
5517
5519
|
E.destroy = function(a) {
|
|
5518
5520
|
if (!a.__destroy__)
|
|
5519
5521
|
throw "Error: Cannot destroy object. (Did you create it yourself?)";
|
|
5520
5522
|
a.__destroy__();
|
|
5521
|
-
delete
|
|
5523
|
+
delete cb(a.J)[a.B];
|
|
5522
5524
|
};
|
|
5523
5525
|
E.compare = function(a, b) {
|
|
5524
|
-
return a.
|
|
5526
|
+
return a.B === b.B;
|
|
5525
5527
|
};
|
|
5526
5528
|
E.getPointer = function(a) {
|
|
5527
|
-
return a.
|
|
5529
|
+
return a.B;
|
|
5528
5530
|
};
|
|
5529
5531
|
E.getClass = function(a) {
|
|
5530
|
-
return a.
|
|
5532
|
+
return a.J;
|
|
5531
5533
|
};
|
|
5532
|
-
var S = { buffer: 0, size: 0,
|
|
5533
|
-
if (S.
|
|
5534
|
-
for (var a = 0;a < S.
|
|
5535
|
-
E._webidl_free(S.
|
|
5536
|
-
S.
|
|
5534
|
+
var S = { buffer: 0, size: 0, N: 0, R: [], M: 0, P: function() {
|
|
5535
|
+
if (S.M) {
|
|
5536
|
+
for (var a = 0;a < S.R.length; a++)
|
|
5537
|
+
E._webidl_free(S.R[a]);
|
|
5538
|
+
S.R.length = 0;
|
|
5537
5539
|
E._webidl_free(S.buffer);
|
|
5538
5540
|
S.buffer = 0;
|
|
5539
|
-
S.size += S.
|
|
5540
|
-
S.
|
|
5541
|
+
S.size += S.M;
|
|
5542
|
+
S.M = 0;
|
|
5541
5543
|
}
|
|
5542
5544
|
S.buffer || (S.size += 128, S.buffer = E._webidl_malloc(S.size), S.buffer || N());
|
|
5543
|
-
S.
|
|
5545
|
+
S.N = 0;
|
|
5544
5546
|
}, alloc: function(a, b) {
|
|
5545
5547
|
S.buffer || N();
|
|
5546
5548
|
a = a.length * b.BYTES_PER_ELEMENT;
|
|
5547
5549
|
a = 8 * Math.ceil(a / 8);
|
|
5548
|
-
S.
|
|
5550
|
+
S.N + a >= S.size ? (0 < a || N(), S.M += a, b = E._webidl_malloc(a), S.R.push(b)) : (b = S.buffer + S.N, S.N += a);
|
|
5549
5551
|
return b;
|
|
5550
5552
|
} };
|
|
5551
|
-
function
|
|
5553
|
+
function T(a) {
|
|
5552
5554
|
if (typeof a === "string") {
|
|
5553
5555
|
for (var b = 0, c = 0;c < a.length; ++c) {
|
|
5554
5556
|
var d = a.charCodeAt(c);
|
|
@@ -5559,119 +5561,129 @@ var require_cld2 = __commonJS((exports, module) => {
|
|
|
5559
5561
|
c = 0;
|
|
5560
5562
|
if (0 < d) {
|
|
5561
5563
|
d = c + d - 1;
|
|
5562
|
-
for (var
|
|
5563
|
-
var
|
|
5564
|
-
if (127 >=
|
|
5564
|
+
for (var e = 0;e < a.length; ++e) {
|
|
5565
|
+
var g = a.codePointAt(e);
|
|
5566
|
+
if (127 >= g) {
|
|
5565
5567
|
if (c >= d)
|
|
5566
5568
|
break;
|
|
5567
|
-
b[c++] =
|
|
5568
|
-
} else if (2047 >=
|
|
5569
|
+
b[c++] = g;
|
|
5570
|
+
} else if (2047 >= g) {
|
|
5569
5571
|
if (c + 1 >= d)
|
|
5570
5572
|
break;
|
|
5571
|
-
b[c++] = 192 |
|
|
5572
|
-
b[c++] = 128 |
|
|
5573
|
-
} else if (65535 >=
|
|
5573
|
+
b[c++] = 192 | g >> 6;
|
|
5574
|
+
b[c++] = 128 | g & 63;
|
|
5575
|
+
} else if (65535 >= g) {
|
|
5574
5576
|
if (c + 2 >= d)
|
|
5575
5577
|
break;
|
|
5576
|
-
b[c++] = 224 |
|
|
5577
|
-
b[c++] = 128 |
|
|
5578
|
-
b[c++] = 128 |
|
|
5578
|
+
b[c++] = 224 | g >> 12;
|
|
5579
|
+
b[c++] = 128 | g >> 6 & 63;
|
|
5580
|
+
b[c++] = 128 | g & 63;
|
|
5579
5581
|
} else {
|
|
5580
5582
|
if (c + 3 >= d)
|
|
5581
5583
|
break;
|
|
5582
|
-
b[c++] = 240 |
|
|
5583
|
-
b[c++] = 128 |
|
|
5584
|
-
b[c++] = 128 |
|
|
5585
|
-
b[c++] = 128 |
|
|
5586
|
-
|
|
5584
|
+
b[c++] = 240 | g >> 18;
|
|
5585
|
+
b[c++] = 128 | g >> 12 & 63;
|
|
5586
|
+
b[c++] = 128 | g >> 6 & 63;
|
|
5587
|
+
b[c++] = 128 | g & 63;
|
|
5588
|
+
e++;
|
|
5587
5589
|
}
|
|
5588
5590
|
}
|
|
5589
5591
|
b[c] = 0;
|
|
5590
5592
|
}
|
|
5591
|
-
a = S.alloc(b,
|
|
5593
|
+
a = S.alloc(b, wa);
|
|
5592
5594
|
for (c = 0;c < b.length; c++)
|
|
5593
|
-
|
|
5595
|
+
wa[a + c] = b[c];
|
|
5594
5596
|
return a;
|
|
5595
5597
|
}
|
|
5596
5598
|
return a;
|
|
5597
5599
|
}
|
|
5598
|
-
function T() {
|
|
5599
|
-
throw "cannot construct a Language, no constructor in IDL";
|
|
5600
|
-
}
|
|
5601
|
-
T.prototype = Object.create(Q.prototype);
|
|
5602
|
-
T.prototype.constructor = T;
|
|
5603
|
-
T.prototype.I = T;
|
|
5604
|
-
T.K = {};
|
|
5605
|
-
E.Language = T;
|
|
5606
|
-
T.prototype.getLanguageCode = function() {
|
|
5607
|
-
return La(Na(this.A));
|
|
5608
|
-
};
|
|
5609
|
-
T.prototype.__destroy__ = function() {
|
|
5610
|
-
Oa(this.A);
|
|
5611
|
-
};
|
|
5612
5600
|
function U() {
|
|
5613
|
-
throw "cannot construct a
|
|
5601
|
+
throw "cannot construct a Language, no constructor in IDL";
|
|
5614
5602
|
}
|
|
5615
5603
|
U.prototype = Object.create(Q.prototype);
|
|
5616
5604
|
U.prototype.constructor = U;
|
|
5617
|
-
U.prototype.
|
|
5618
|
-
U.
|
|
5619
|
-
E.
|
|
5605
|
+
U.prototype.J = U;
|
|
5606
|
+
U.L = {};
|
|
5607
|
+
E.Language = U;
|
|
5608
|
+
U.prototype.getLanguageCode = function() {
|
|
5609
|
+
return Ma(Oa(this.B));
|
|
5610
|
+
};
|
|
5620
5611
|
U.prototype.__destroy__ = function() {
|
|
5621
|
-
Pa(this.
|
|
5612
|
+
Pa(this.B);
|
|
5622
5613
|
};
|
|
5623
5614
|
function V() {
|
|
5624
|
-
throw "cannot construct a
|
|
5615
|
+
throw "cannot construct a VoidPtr, no constructor in IDL";
|
|
5625
5616
|
}
|
|
5626
|
-
V.prototype = Object.create(
|
|
5617
|
+
V.prototype = Object.create(Q.prototype);
|
|
5627
5618
|
V.prototype.constructor = V;
|
|
5628
|
-
V.prototype.
|
|
5629
|
-
V.
|
|
5630
|
-
E.
|
|
5631
|
-
V.prototype.getPercent = function() {
|
|
5632
|
-
return Qa(this.A);
|
|
5633
|
-
};
|
|
5634
|
-
V.prototype.getLanguageCode = function() {
|
|
5635
|
-
return La(Ra(this.A));
|
|
5636
|
-
};
|
|
5619
|
+
V.prototype.J = V;
|
|
5620
|
+
V.L = {};
|
|
5621
|
+
E.VoidPtr = V;
|
|
5637
5622
|
V.prototype.__destroy__ = function() {
|
|
5638
|
-
|
|
5623
|
+
Qa(this.B);
|
|
5639
5624
|
};
|
|
5640
5625
|
function W() {
|
|
5641
|
-
throw "cannot construct a
|
|
5626
|
+
throw "cannot construct a LanguageGuess, no constructor in IDL";
|
|
5642
5627
|
}
|
|
5643
|
-
W.prototype = Object.create(
|
|
5628
|
+
W.prototype = Object.create(U.prototype);
|
|
5644
5629
|
W.prototype.constructor = W;
|
|
5645
|
-
W.prototype.
|
|
5646
|
-
W.
|
|
5647
|
-
E.
|
|
5648
|
-
W.prototype.
|
|
5630
|
+
W.prototype.J = W;
|
|
5631
|
+
W.L = {};
|
|
5632
|
+
E.LanguageGuess = W;
|
|
5633
|
+
W.prototype.getPercent = function() {
|
|
5634
|
+
return Ra(this.B);
|
|
5635
|
+
};
|
|
5636
|
+
W.prototype.getLanguageCode = function() {
|
|
5637
|
+
return Ma(Sa(this.B));
|
|
5638
|
+
};
|
|
5639
|
+
W.prototype.__destroy__ = function() {
|
|
5640
|
+
Ta(this.B);
|
|
5641
|
+
};
|
|
5642
|
+
function X() {
|
|
5643
|
+
throw "cannot construct a LanguageInfo, no constructor in IDL";
|
|
5644
|
+
}
|
|
5645
|
+
X.prototype = Object.create(U.prototype);
|
|
5646
|
+
X.prototype.constructor = X;
|
|
5647
|
+
X.prototype.J = X;
|
|
5648
|
+
X.L = {};
|
|
5649
|
+
E.LanguageInfo = X;
|
|
5650
|
+
X.prototype.detectLanguageWithLength = function(a, b, c, d, e, g) {
|
|
5649
5651
|
S.P();
|
|
5650
|
-
a = a && typeof a === "object" ? a.
|
|
5651
|
-
b && typeof b === "object" && (b = b.
|
|
5652
|
-
c
|
|
5653
|
-
d && typeof d === "object"
|
|
5654
|
-
|
|
5655
|
-
|
|
5652
|
+
a = a && typeof a === "object" ? a.B : T(a);
|
|
5653
|
+
b && typeof b === "object" && (b = b.B);
|
|
5654
|
+
c && typeof c === "object" && (c = c.B);
|
|
5655
|
+
d = d && typeof d === "object" ? d.B : T(d);
|
|
5656
|
+
e && typeof e === "object" && (e = e.B);
|
|
5657
|
+
g = g && typeof g === "object" ? g.B : T(g);
|
|
5658
|
+
return d === undefined ? R(Ua(a, b, c), X) : e === undefined ? R(_emscripten_bind_LanguageInfo_detectLanguageWithLength_4(a, b, c, d), X) : g === undefined ? R(_emscripten_bind_LanguageInfo_detectLanguageWithLength_5(a, b, c, d, e), X) : R(Va(a, b, c, d, e, g), X);
|
|
5656
5659
|
};
|
|
5657
|
-
|
|
5658
|
-
|
|
5660
|
+
X.prototype.detectLanguage = function(a, b, c, d, e) {
|
|
5661
|
+
S.P();
|
|
5662
|
+
a = a && typeof a === "object" ? a.B : T(a);
|
|
5663
|
+
b && typeof b === "object" && (b = b.B);
|
|
5664
|
+
c = c && typeof c === "object" ? c.B : T(c);
|
|
5665
|
+
d && typeof d === "object" && (d = d.B);
|
|
5666
|
+
e = e && typeof e === "object" ? e.B : T(e);
|
|
5667
|
+
return c === undefined ? R(Wa(a, b), X) : d === undefined ? R(_emscripten_bind_LanguageInfo_detectLanguage_3(a, b, c), X) : e === undefined ? R(_emscripten_bind_LanguageInfo_detectLanguage_4(a, b, c, d), X) : R(Xa(a, b, c, d, e), X);
|
|
5659
5668
|
};
|
|
5660
|
-
|
|
5661
|
-
return
|
|
5669
|
+
X.prototype.getIsReliable = function() {
|
|
5670
|
+
return !!Ya(this.B);
|
|
5662
5671
|
};
|
|
5663
|
-
|
|
5664
|
-
|
|
5665
|
-
a && typeof a === "object" && (a = a.A);
|
|
5666
|
-
return R(Xa(b, a), V);
|
|
5672
|
+
X.prototype.getLanguageCode = function() {
|
|
5673
|
+
return Ma(Za(this.B));
|
|
5667
5674
|
};
|
|
5668
|
-
|
|
5669
|
-
|
|
5670
|
-
|
|
5675
|
+
X.prototype.get_languages = X.prototype.$ = function(a) {
|
|
5676
|
+
var b = this.B;
|
|
5677
|
+
a && typeof a === "object" && (a = a.B);
|
|
5678
|
+
return R($a(b, a), W);
|
|
5679
|
+
};
|
|
5680
|
+
Object.defineProperty(X.prototype, "languages", { get: X.prototype.$ });
|
|
5681
|
+
X.prototype.__destroy__ = function() {
|
|
5682
|
+
ab2(this.B);
|
|
5671
5683
|
};
|
|
5672
5684
|
S.alloc = S.alloc.bind(S);
|
|
5673
5685
|
S.P = S.P.bind(S);
|
|
5674
|
-
for (var
|
|
5686
|
+
for (var Y = {
|
|
5675
5687
|
ISO_8859_1: 0,
|
|
5676
5688
|
ISO_8859_2: 1,
|
|
5677
5689
|
ISO_8859_3: 2,
|
|
@@ -5772,14 +5784,14 @@ var require_cld2 = __commonJS((exports, module) => {
|
|
|
5772
5784
|
KDDI_ISO_2022_JP: 73,
|
|
5773
5785
|
ISO_2022_JP: 73,
|
|
5774
5786
|
SOFTBANK_ISO_2022_JP: 74
|
|
5775
|
-
},
|
|
5776
|
-
var
|
|
5777
|
-
|
|
5778
|
-
}
|
|
5779
|
-
E.Encodings =
|
|
5780
|
-
|
|
5781
|
-
|
|
5782
|
-
|
|
5787
|
+
}, db = h(Object.keys(Y)), eb = db.next();!eb.done; eb = db.next()) {
|
|
5788
|
+
var fb = eb.value;
|
|
5789
|
+
fb.includes("_") && (Y[fb.replace(/_/g, "")] = Y[fb]);
|
|
5790
|
+
}
|
|
5791
|
+
E.Encodings = Y;
|
|
5792
|
+
xa ? moduleRtn = E : moduleRtn = new Promise(function(a, b) {
|
|
5793
|
+
ua = a;
|
|
5794
|
+
va = b;
|
|
5783
5795
|
});
|
|
5784
5796
|
return moduleRtn;
|
|
5785
5797
|
};
|
|
@@ -5792,7 +5804,7 @@ var require_cld2 = __commonJS((exports, module) => {
|
|
|
5792
5804
|
});
|
|
5793
5805
|
|
|
5794
5806
|
// src/lib/cld2/cld2.wasm
|
|
5795
|
-
var cld2_default = "./cld2-
|
|
5807
|
+
var cld2_default = "./cld2-22jkf0ae.wasm";
|
|
5796
5808
|
var init_cld2 = () => {};
|
|
5797
5809
|
|
|
5798
5810
|
// src/services/detector.ts
|
|
@@ -5806,6 +5818,52 @@ __export(exports_detector, {
|
|
|
5806
5818
|
import path5 from "path";
|
|
5807
5819
|
import { fileURLToPath } from "url";
|
|
5808
5820
|
import { readFile } from "fs/promises";
|
|
5821
|
+
function sanitizeInput(text) {
|
|
5822
|
+
let sanitized = text.replace(/\0/g, "");
|
|
5823
|
+
sanitized = sanitized.replace(/[\x01-\x08\x0B-\x0C\x0E-\x1F\x7F]/g, "");
|
|
5824
|
+
return sanitized;
|
|
5825
|
+
}
|
|
5826
|
+
function truncateByUtf8Bytes(text, maxBytes) {
|
|
5827
|
+
const encoder = new TextEncoder;
|
|
5828
|
+
const bytes = encoder.encode(text);
|
|
5829
|
+
if (bytes.length <= maxBytes) {
|
|
5830
|
+
return text;
|
|
5831
|
+
}
|
|
5832
|
+
let truncated = bytes.slice(0, maxBytes);
|
|
5833
|
+
while (truncated.length > 0) {
|
|
5834
|
+
try {
|
|
5835
|
+
return new TextDecoder("utf-8", { fatal: true }).decode(truncated);
|
|
5836
|
+
} catch {
|
|
5837
|
+
truncated = truncated.slice(0, -1);
|
|
5838
|
+
}
|
|
5839
|
+
}
|
|
5840
|
+
return "";
|
|
5841
|
+
}
|
|
5842
|
+
function validateAndSanitizeInput(text, maxBytes = MAX_DETECTION_BYTES) {
|
|
5843
|
+
if (!text || text.length === 0) {
|
|
5844
|
+
return text;
|
|
5845
|
+
}
|
|
5846
|
+
const sanitized = sanitizeInput(text);
|
|
5847
|
+
const truncated = truncateByUtf8Bytes(sanitized, maxBytes);
|
|
5848
|
+
if (truncated !== text) {
|
|
5849
|
+
debug(`Input sanitized/truncated: ${text.length} → ${truncated.length} chars (limit: ${maxBytes})`);
|
|
5850
|
+
}
|
|
5851
|
+
return truncated;
|
|
5852
|
+
}
|
|
5853
|
+
function handleCldError(error2, context) {
|
|
5854
|
+
const errStr = error2.toString();
|
|
5855
|
+
if (errStr.includes("RuntimeError") || errStr.includes("memory access")) {
|
|
5856
|
+
error("CLD2 crashed (RuntimeError), resetting module", {
|
|
5857
|
+
error: errStr,
|
|
5858
|
+
stack: error2.stack,
|
|
5859
|
+
textLength: context?.text?.length,
|
|
5860
|
+
textPreview: context?.text?.substring(0, 100),
|
|
5861
|
+
operation: context?.operation
|
|
5862
|
+
});
|
|
5863
|
+
cldModule = null;
|
|
5864
|
+
initPromise = null;
|
|
5865
|
+
}
|
|
5866
|
+
}
|
|
5809
5867
|
async function initCLD() {
|
|
5810
5868
|
if (cldModule)
|
|
5811
5869
|
return;
|
|
@@ -5823,8 +5881,13 @@ async function initCLD() {
|
|
|
5823
5881
|
printErr: (msg) => error(`[CLD2 Error]: ${msg}`),
|
|
5824
5882
|
wasmBinary: wasmBuffer
|
|
5825
5883
|
});
|
|
5826
|
-
if (module.LanguageInfo && module.LanguageInfo.prototype
|
|
5827
|
-
|
|
5884
|
+
if (module.LanguageInfo && module.LanguageInfo.prototype) {
|
|
5885
|
+
if (module.LanguageInfo.prototype.detectLanguage) {
|
|
5886
|
+
module.LanguageInfo.detectLanguage = module.LanguageInfo.prototype.detectLanguage;
|
|
5887
|
+
}
|
|
5888
|
+
if (module.LanguageInfo.prototype.detectLanguageWithLength) {
|
|
5889
|
+
module.LanguageInfo.detectLanguageWithLength = module.LanguageInfo.prototype.detectLanguageWithLength;
|
|
5890
|
+
}
|
|
5828
5891
|
}
|
|
5829
5892
|
cldModule = module;
|
|
5830
5893
|
debug("CLD2 language detector initialized");
|
|
@@ -5835,15 +5898,25 @@ async function initCLD() {
|
|
|
5835
5898
|
})();
|
|
5836
5899
|
return initPromise;
|
|
5837
5900
|
}
|
|
5838
|
-
function detectLanguageWithCLD(text, isHTML = false) {
|
|
5901
|
+
function detectLanguageWithCLD(text, isHTML = false, maxBytes = MAX_DETECTION_BYTES) {
|
|
5839
5902
|
if (!cldModule) {
|
|
5840
5903
|
throw new Error("CLD2 module not initialized");
|
|
5841
5904
|
}
|
|
5905
|
+
const validatedText = validateAndSanitizeInput(text, maxBytes);
|
|
5906
|
+
if (!validatedText) {
|
|
5907
|
+
warn("Input validation resulted in empty text");
|
|
5908
|
+
return {
|
|
5909
|
+
language: "un",
|
|
5910
|
+
confident: false,
|
|
5911
|
+
languages: [],
|
|
5912
|
+
percentScore: 0
|
|
5913
|
+
};
|
|
5914
|
+
}
|
|
5842
5915
|
const LanguageInfo = cldModule.LanguageInfo;
|
|
5843
5916
|
if (!LanguageInfo || !LanguageInfo.detectLanguage) {
|
|
5844
5917
|
throw new Error("CLD2 LanguageInfo or detectLanguage not available");
|
|
5845
5918
|
}
|
|
5846
|
-
const result = LanguageInfo.detectLanguage(
|
|
5919
|
+
const result = LanguageInfo.detectLanguage(validatedText, !isHTML);
|
|
5847
5920
|
const languages = Array(3).fill(0).map((_, i) => {
|
|
5848
5921
|
const lang = result.get_languages(i);
|
|
5849
5922
|
return {
|
|
@@ -5868,26 +5941,27 @@ function bcp47Normalize(code) {
|
|
|
5868
5941
|
return code.toLowerCase();
|
|
5869
5942
|
}
|
|
5870
5943
|
}
|
|
5871
|
-
async function detectLanguage(text) {
|
|
5944
|
+
async function detectLanguage(text, maxBytes = MAX_DETECTION_BYTES) {
|
|
5872
5945
|
if (!text) {
|
|
5873
5946
|
return "";
|
|
5874
5947
|
}
|
|
5875
5948
|
await initCLD();
|
|
5876
5949
|
try {
|
|
5877
|
-
const result = detectLanguageWithCLD(text);
|
|
5950
|
+
const result = detectLanguageWithCLD(text, false, maxBytes);
|
|
5878
5951
|
return bcp47Normalize(result.language);
|
|
5879
5952
|
} catch (error2) {
|
|
5880
5953
|
warn(`Language detection failed: ${error2}`);
|
|
5954
|
+
handleCldError(error2, { text, operation: "detectLanguage" });
|
|
5881
5955
|
return "en";
|
|
5882
5956
|
}
|
|
5883
5957
|
}
|
|
5884
|
-
async function detectLanguageWithConfidence(text, minConfidence = DEFAULT_CONFIDENCE_THRESHOLD) {
|
|
5958
|
+
async function detectLanguageWithConfidence(text, minConfidence = DEFAULT_CONFIDENCE_THRESHOLD, maxBytes = MAX_DETECTION_BYTES) {
|
|
5885
5959
|
if (!text) {
|
|
5886
5960
|
return { language: "", confidence: 0 };
|
|
5887
5961
|
}
|
|
5888
5962
|
await initCLD();
|
|
5889
5963
|
try {
|
|
5890
|
-
const result = detectLanguageWithCLD(text);
|
|
5964
|
+
const result = detectLanguageWithCLD(text, false, maxBytes);
|
|
5891
5965
|
const confidence = result.percentScore / 100;
|
|
5892
5966
|
if (confidence < minConfidence) {
|
|
5893
5967
|
return { language: "", confidence };
|
|
@@ -5898,6 +5972,7 @@ async function detectLanguageWithConfidence(text, minConfidence = DEFAULT_CONFID
|
|
|
5898
5972
|
};
|
|
5899
5973
|
} catch (error2) {
|
|
5900
5974
|
warn(`Language detection with confidence failed: ${error2}`);
|
|
5975
|
+
handleCldError(error2, { text, operation: "detectLanguageWithConfidence" });
|
|
5901
5976
|
return { language: "en", confidence: 0 };
|
|
5902
5977
|
}
|
|
5903
5978
|
}
|
|
@@ -5917,6 +5992,28 @@ function hasMixedScripts(text) {
|
|
|
5917
5992
|
}
|
|
5918
5993
|
return false;
|
|
5919
5994
|
}
|
|
5995
|
+
function getScriptType(text) {
|
|
5996
|
+
let hasCJK = false;
|
|
5997
|
+
let hasLatin = false;
|
|
5998
|
+
for (const char of text) {
|
|
5999
|
+
const code = char.charCodeAt(0);
|
|
6000
|
+
if (code >= 19968 && code <= 40959 || code >= 12352 && code <= 12447 || code >= 12448 && code <= 12543 || code >= 44032 && code <= 55215) {
|
|
6001
|
+
hasCJK = true;
|
|
6002
|
+
} else if (code >= 65 && code <= 90 || code >= 97 && code <= 122) {
|
|
6003
|
+
hasLatin = true;
|
|
6004
|
+
}
|
|
6005
|
+
if (hasCJK && hasLatin)
|
|
6006
|
+
return "Mixed";
|
|
6007
|
+
}
|
|
6008
|
+
if (hasCJK)
|
|
6009
|
+
return "CJK";
|
|
6010
|
+
if (hasLatin)
|
|
6011
|
+
return "Latin";
|
|
6012
|
+
return "Other";
|
|
6013
|
+
}
|
|
6014
|
+
function isCJKLanguage(lang) {
|
|
6015
|
+
return ["zh", "zh-Hans", "zh-Hant", "ja", "ko"].includes(lang) || lang.startsWith("zh-");
|
|
6016
|
+
}
|
|
5920
6017
|
async function detectMultipleLanguages(text) {
|
|
5921
6018
|
return detectMultipleLanguagesWithThreshold(text, DEFAULT_CONFIDENCE_THRESHOLD);
|
|
5922
6019
|
}
|
|
@@ -5925,7 +6022,7 @@ async function detectMultipleLanguagesWithThreshold(text, threshold) {
|
|
|
5925
6022
|
return [];
|
|
5926
6023
|
}
|
|
5927
6024
|
await initCLD();
|
|
5928
|
-
const fallbackLang = await detectLanguage(text);
|
|
6025
|
+
const fallbackLang = await detectLanguage(text, MAX_FALLBACK_DETECTION_BYTES);
|
|
5929
6026
|
const effectiveFallback = fallbackLang || "en";
|
|
5930
6027
|
if (!hasMixedScripts(text)) {
|
|
5931
6028
|
debug(`DetectMultipleLanguages: no mixed scripts, using single language: ${effectiveFallback}`);
|
|
@@ -5943,18 +6040,43 @@ async function detectMultipleLanguagesWithThreshold(text, threshold) {
|
|
|
5943
6040
|
const sentenceSegments = Array.from(segmenterAny.segment(text));
|
|
5944
6041
|
for (const { segment, index } of sentenceSegments) {
|
|
5945
6042
|
try {
|
|
6043
|
+
await initCLD();
|
|
5946
6044
|
const result = detectLanguageWithCLD(segment);
|
|
5947
6045
|
const detectedLang = bcp47Normalize(result.language);
|
|
5948
6046
|
const confidence = result.percentScore / 100;
|
|
6047
|
+
const scriptType = getScriptType(segment);
|
|
6048
|
+
let finalLang = effectiveFallback;
|
|
6049
|
+
let usedLogic = "fallback";
|
|
6050
|
+
if (confidence >= threshold) {
|
|
6051
|
+
finalLang = detectedLang;
|
|
6052
|
+
usedLogic = "confidence";
|
|
6053
|
+
} else {
|
|
6054
|
+
if (scriptType === "Latin" && isCJKLanguage(effectiveFallback)) {
|
|
6055
|
+
if (detectedLang && detectedLang !== "un") {
|
|
6056
|
+
finalLang = detectedLang;
|
|
6057
|
+
usedLogic = "script-override-latin";
|
|
6058
|
+
} else {
|
|
6059
|
+
finalLang = "en";
|
|
6060
|
+
usedLogic = "script-override-en";
|
|
6061
|
+
}
|
|
6062
|
+
} else if (scriptType === "CJK" && !isCJKLanguage(effectiveFallback)) {
|
|
6063
|
+
if (detectedLang && detectedLang !== "un") {
|
|
6064
|
+
finalLang = detectedLang;
|
|
6065
|
+
usedLogic = "script-override-cjk";
|
|
6066
|
+
}
|
|
6067
|
+
}
|
|
6068
|
+
}
|
|
6069
|
+
debug(`Segment[${segments.length}]: "${segment.replace(/\n/g, "\\n")}" -> lang=${detectedLang}, conf=${confidence.toFixed(2)}, script=${scriptType}, final=${finalLang} (${usedLogic})`);
|
|
5949
6070
|
segments.push({
|
|
5950
6071
|
text: segment,
|
|
5951
|
-
language:
|
|
6072
|
+
language: finalLang,
|
|
5952
6073
|
start: index,
|
|
5953
6074
|
end: index + segment.length,
|
|
5954
6075
|
confidence
|
|
5955
6076
|
});
|
|
5956
6077
|
} catch (error2) {
|
|
5957
6078
|
warn(`Failed to detect language for segment: ${error2}`);
|
|
6079
|
+
handleCldError(error2, { text: segment, operation: "detectMultipleLanguages" });
|
|
5958
6080
|
segments.push({
|
|
5959
6081
|
text: segment,
|
|
5960
6082
|
language: effectiveFallback,
|
|
@@ -6014,7 +6136,7 @@ function limitLanguages(segments, originalText, maxLangs) {
|
|
|
6014
6136
|
debug(`limitLanguages: reduced to ${maxLangs} languages, ${result.length} segments`);
|
|
6015
6137
|
return result;
|
|
6016
6138
|
}
|
|
6017
|
-
var import_cld2, DEFAULT_CONFIDENCE_THRESHOLD = 0.5, MAXIMUM_LANGUAGES_IN_ONE_TEXT = 2, cldModule = null, initPromise = null;
|
|
6139
|
+
var import_cld2, DEFAULT_CONFIDENCE_THRESHOLD = 0.5, MAXIMUM_LANGUAGES_IN_ONE_TEXT = 2, MAX_DETECTION_BYTES = 512, MAX_FALLBACK_DETECTION_BYTES = 1024, cldModule = null, initPromise = null;
|
|
6018
6140
|
var init_detector = __esm(() => {
|
|
6019
6141
|
init_cld2();
|
|
6020
6142
|
init_logger();
|
|
@@ -24789,7 +24911,7 @@ globstar while`, file, fr, pattern, pr, swallowee);
|
|
|
24789
24911
|
|
|
24790
24912
|
// node_modules/typescript/lib/typescript.js
|
|
24791
24913
|
var require_typescript = __commonJS((exports, module) => {
|
|
24792
|
-
var __dirname = "/
|
|
24914
|
+
var __dirname = "/Volumes/MacData/Users/xxnuo/projects/MTranServer/node_modules/typescript/lib", __filename = "/Volumes/MacData/Users/xxnuo/projects/MTranServer/node_modules/typescript/lib/typescript.js";
|
|
24793
24915
|
/*! *****************************************************************************
|
|
24794
24916
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
24795
24917
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
@@ -208867,7 +208989,7 @@ var require_routeGenerator = __commonJS((exports) => {
|
|
|
208867
208989
|
|
|
208868
208990
|
// node_modules/@tsoa/cli/dist/routeGeneration/defaultRouteGenerator.js
|
|
208869
208991
|
var require_defaultRouteGenerator = __commonJS((exports) => {
|
|
208870
|
-
var __dirname = "/
|
|
208992
|
+
var __dirname = "/Volumes/MacData/Users/xxnuo/projects/MTranServer/node_modules/@tsoa/cli/dist/routeGeneration";
|
|
208871
208993
|
var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
208872
208994
|
if (k2 === undefined)
|
|
208873
208995
|
k2 = k;
|
|
@@ -208993,7 +209115,7 @@ var require_defaultRouteGenerator = __commonJS((exports) => {
|
|
|
208993
209115
|
|
|
208994
209116
|
// node_modules/@tsoa/cli/dist/module/generate-routes.js
|
|
208995
209117
|
var require_generate_routes = __commonJS((exports) => {
|
|
208996
|
-
var __dirname = "/
|
|
209118
|
+
var __dirname = "/Volumes/MacData/Users/xxnuo/projects/MTranServer/node_modules/@tsoa/cli/dist/module";
|
|
208997
209119
|
var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
208998
209120
|
if (k2 === undefined)
|
|
208999
209121
|
k2 = k;
|
|
@@ -211922,7 +212044,7 @@ var require_require_directory = __commonJS((exports, module) => {
|
|
|
211922
212044
|
|
|
211923
212045
|
// node_modules/yargs/build/index.cjs
|
|
211924
212046
|
var require_build4 = __commonJS((exports, module) => {
|
|
211925
|
-
var __dirname = "/
|
|
212047
|
+
var __dirname = "/Volumes/MacData/Users/xxnuo/projects/MTranServer/node_modules/yargs/build";
|
|
211926
212048
|
var t = __require("assert");
|
|
211927
212049
|
|
|
211928
212050
|
class e extends Error {
|
|
@@ -214138,7 +214260,7 @@ var require_dist4 = __commonJS((exports) => {
|
|
|
214138
214260
|
});
|
|
214139
214261
|
|
|
214140
214262
|
// src/utils/lang-alias.ts
|
|
214141
|
-
function
|
|
214263
|
+
function NormalizeLanguageCode(code) {
|
|
214142
214264
|
if (!code)
|
|
214143
214265
|
return "";
|
|
214144
214266
|
const normalized = code.toLowerCase().replace(/_/g, "-");
|
|
@@ -214237,10 +214359,10 @@ var init_memory = () => {};
|
|
|
214237
214359
|
// src/utils/index.ts
|
|
214238
214360
|
var exports_utils = {};
|
|
214239
214361
|
__export(exports_utils, {
|
|
214240
|
-
normalizeLanguageCode: () => normalizeLanguageCode,
|
|
214241
214362
|
getLargestVersion: () => getLargestVersion,
|
|
214242
214363
|
getFreePort: () => getFreePort,
|
|
214243
|
-
getAvailableMemoryMB: () => getAvailableMemoryMB
|
|
214364
|
+
getAvailableMemoryMB: () => getAvailableMemoryMB,
|
|
214365
|
+
NormalizeLanguageCode: () => NormalizeLanguageCode
|
|
214244
214366
|
});
|
|
214245
214367
|
var init_utils = __esm(() => {
|
|
214246
214368
|
init_lang_alias();
|
|
@@ -214257,7 +214379,7 @@ __export(exports_version, {
|
|
|
214257
214379
|
function getVersion() {
|
|
214258
214380
|
return VERSION;
|
|
214259
214381
|
}
|
|
214260
|
-
var VERSION = "4.0.
|
|
214382
|
+
var VERSION = "4.0.19";
|
|
214261
214383
|
|
|
214262
214384
|
// src/server/index.ts
|
|
214263
214385
|
init_config();
|
|
@@ -214371,18 +214493,18 @@ var import_runtime = __toESM(require_dist(), 1);
|
|
|
214371
214493
|
var import_tsoa = __toESM(require_dist4(), 1);
|
|
214372
214494
|
class TranslateController extends import_tsoa.Controller {
|
|
214373
214495
|
async translate(body) {
|
|
214374
|
-
const {
|
|
214496
|
+
const { NormalizeLanguageCode: NormalizeLanguageCode2 } = await Promise.resolve().then(() => (init_utils(), exports_utils));
|
|
214375
214497
|
const { translateWithPivot: translateWithPivot2 } = await Promise.resolve().then(() => (init_services(), exports_services));
|
|
214376
|
-
const normalizedFrom =
|
|
214377
|
-
const normalizedTo =
|
|
214498
|
+
const normalizedFrom = NormalizeLanguageCode2(body.from);
|
|
214499
|
+
const normalizedTo = NormalizeLanguageCode2(body.to);
|
|
214378
214500
|
const result = await translateWithPivot2(normalizedFrom, normalizedTo, body.text, body.html || false);
|
|
214379
214501
|
return { result };
|
|
214380
214502
|
}
|
|
214381
214503
|
async translateBatch(body) {
|
|
214382
|
-
const {
|
|
214504
|
+
const { NormalizeLanguageCode: NormalizeLanguageCode2 } = await Promise.resolve().then(() => (init_utils(), exports_utils));
|
|
214383
214505
|
const { translateWithPivot: translateWithPivot2 } = await Promise.resolve().then(() => (init_services(), exports_services));
|
|
214384
|
-
const normalizedFrom =
|
|
214385
|
-
const normalizedTo =
|
|
214506
|
+
const normalizedFrom = NormalizeLanguageCode2(body.from);
|
|
214507
|
+
const normalizedTo = NormalizeLanguageCode2(body.to);
|
|
214386
214508
|
const results = [];
|
|
214387
214509
|
for (let i = 0;i < body.texts.length; i++) {
|
|
214388
214510
|
const result = await translateWithPivot2(normalizedFrom, normalizedTo, body.texts[i], body.html || false);
|
|
@@ -214476,7 +214598,7 @@ class LanguageController extends import_tsoa3.Controller {
|
|
|
214476
214598
|
const languages = getSupportedLanguages2();
|
|
214477
214599
|
const pairStrings = getLanguagePairs2();
|
|
214478
214600
|
const pairs = pairStrings.map((p) => {
|
|
214479
|
-
const [from, to] = p.split("
|
|
214601
|
+
const [from, to] = p.split("_");
|
|
214480
214602
|
return { from, to };
|
|
214481
214603
|
});
|
|
214482
214604
|
return { languages, pairs };
|
|
@@ -214520,10 +214642,10 @@ LanguageController = __legacyDecorateClassTS([
|
|
|
214520
214642
|
var import_tsoa4 = __toESM(require_dist4(), 1);
|
|
214521
214643
|
class KissController extends import_tsoa4.Controller {
|
|
214522
214644
|
async translate(body) {
|
|
214523
|
-
const {
|
|
214645
|
+
const { NormalizeLanguageCode: NormalizeLanguageCode2 } = await Promise.resolve().then(() => (init_utils(), exports_utils));
|
|
214524
214646
|
const { translateWithPivot: translateWithPivot2 } = await Promise.resolve().then(() => (init_services(), exports_services));
|
|
214525
|
-
const fromLang =
|
|
214526
|
-
const toLang =
|
|
214647
|
+
const fromLang = NormalizeLanguageCode2(body.from);
|
|
214648
|
+
const toLang = NormalizeLanguageCode2(body.to);
|
|
214527
214649
|
if (body.texts && Array.isArray(body.texts) && body.texts.length > 0) {
|
|
214528
214650
|
const translations = [];
|
|
214529
214651
|
for (const text of body.texts) {
|
|
@@ -214565,7 +214687,7 @@ KissController = __legacyDecorateClassTS([
|
|
|
214565
214687
|
var import_tsoa5 = __toESM(require_dist4(), 1);
|
|
214566
214688
|
class ImmeController extends import_tsoa5.Controller {
|
|
214567
214689
|
async translate(body, token) {
|
|
214568
|
-
const {
|
|
214690
|
+
const { NormalizeLanguageCode: NormalizeLanguageCode2 } = await Promise.resolve().then(() => (init_utils(), exports_utils));
|
|
214569
214691
|
const { translateWithPivot: translateWithPivot2 } = await Promise.resolve().then(() => (init_services(), exports_services));
|
|
214570
214692
|
const { getConfig: getConfig2 } = await Promise.resolve().then(() => (init_config(), exports_config));
|
|
214571
214693
|
const logger = await Promise.resolve().then(() => (init_logger(), exports_logger));
|
|
@@ -214575,8 +214697,8 @@ class ImmeController extends import_tsoa5.Controller {
|
|
|
214575
214697
|
this.setStatus(401);
|
|
214576
214698
|
throw new Error("Unauthorized");
|
|
214577
214699
|
}
|
|
214578
|
-
const sourceLang =
|
|
214579
|
-
const targetLang =
|
|
214700
|
+
const sourceLang = NormalizeLanguageCode2(body.source_lang);
|
|
214701
|
+
const targetLang = NormalizeLanguageCode2(body.target_lang);
|
|
214580
214702
|
const translations = [];
|
|
214581
214703
|
for (let i = 0;i < body.text_list.length; i++) {
|
|
214582
214704
|
const text = body.text_list[i];
|
|
@@ -214746,11 +214868,11 @@ HcfyController = __legacyDecorateClassTS([
|
|
|
214746
214868
|
var import_tsoa7 = __toESM(require_dist4(), 1);
|
|
214747
214869
|
class GoogleController extends import_tsoa7.Controller {
|
|
214748
214870
|
async translateCompat(body) {
|
|
214749
|
-
const {
|
|
214871
|
+
const { NormalizeLanguageCode: NormalizeLanguageCode2 } = await Promise.resolve().then(() => (init_utils(), exports_utils));
|
|
214750
214872
|
const { translateWithPivot: translateWithPivot2 } = await Promise.resolve().then(() => (init_services(), exports_services));
|
|
214751
214873
|
const queries = Array.isArray(body.q) ? body.q : [body.q];
|
|
214752
|
-
const sourceBCP47 =
|
|
214753
|
-
const targetBCP47 =
|
|
214874
|
+
const sourceBCP47 = NormalizeLanguageCode2(body.source);
|
|
214875
|
+
const targetBCP47 = NormalizeLanguageCode2(body.target);
|
|
214754
214876
|
const isHTML = body.format === "html";
|
|
214755
214877
|
const translations = [];
|
|
214756
214878
|
for (const q of queries) {
|
|
@@ -214765,7 +214887,7 @@ class GoogleController extends import_tsoa7.Controller {
|
|
|
214765
214887
|
};
|
|
214766
214888
|
}
|
|
214767
214889
|
async translateSingle(sl = "auto", tl, q) {
|
|
214768
|
-
const {
|
|
214890
|
+
const { NormalizeLanguageCode: NormalizeLanguageCode2 } = await Promise.resolve().then(() => (init_utils(), exports_utils));
|
|
214769
214891
|
const { translateWithPivot: translateWithPivot2 } = await Promise.resolve().then(() => (init_services(), exports_services));
|
|
214770
214892
|
const bcp47ToGoogleLang = {
|
|
214771
214893
|
"zh-Hans": "zh-CN",
|
|
@@ -214774,8 +214896,8 @@ class GoogleController extends import_tsoa7.Controller {
|
|
|
214774
214896
|
function convertBCP47ToGoogleLang(bcp47Lang) {
|
|
214775
214897
|
return bcp47ToGoogleLang[bcp47Lang] || bcp47Lang;
|
|
214776
214898
|
}
|
|
214777
|
-
const sourceBCP47 =
|
|
214778
|
-
const targetBCP47 =
|
|
214899
|
+
const sourceBCP47 = NormalizeLanguageCode2(sl);
|
|
214900
|
+
const targetBCP47 = NormalizeLanguageCode2(tl);
|
|
214779
214901
|
const result = await translateWithPivot2(sourceBCP47, targetBCP47, q, false);
|
|
214780
214902
|
const detectedLang = convertBCP47ToGoogleLang(sourceBCP47);
|
|
214781
214903
|
return [
|
|
@@ -214825,7 +214947,7 @@ GoogleController = __legacyDecorateClassTS([
|
|
|
214825
214947
|
var import_tsoa8 = __toESM(require_dist4(), 1);
|
|
214826
214948
|
class DeeplController extends import_tsoa8.Controller {
|
|
214827
214949
|
async translate(body, authorization) {
|
|
214828
|
-
const {
|
|
214950
|
+
const { NormalizeLanguageCode: NormalizeLanguageCode2 } = await Promise.resolve().then(() => (init_utils(), exports_utils));
|
|
214829
214951
|
const { translateWithPivot: translateWithPivot2 } = await Promise.resolve().then(() => (init_services(), exports_services));
|
|
214830
214952
|
const { getConfig: getConfig2 } = await Promise.resolve().then(() => (init_config(), exports_config));
|
|
214831
214953
|
const config2 = getConfig2();
|
|
@@ -214855,8 +214977,8 @@ class DeeplController extends import_tsoa8.Controller {
|
|
|
214855
214977
|
return bcp47ToDeeplLang[bcp47Lang] || bcp47Lang.toUpperCase();
|
|
214856
214978
|
}
|
|
214857
214979
|
const textArray = Array.isArray(body.text) ? body.text : [body.text];
|
|
214858
|
-
const sourceLang = body.source_lang ?
|
|
214859
|
-
const targetLang =
|
|
214980
|
+
const sourceLang = body.source_lang ? NormalizeLanguageCode2(body.source_lang) : "auto";
|
|
214981
|
+
const targetLang = NormalizeLanguageCode2(body.target_lang);
|
|
214860
214982
|
const isHTML = body.tag_handling === "html" || body.tag_handling === "xml";
|
|
214861
214983
|
const translations = [];
|
|
214862
214984
|
for (let i = 0;i < textArray.length; i++) {
|
|
@@ -215894,7 +216016,7 @@ var swagger_default = {
|
|
|
215894
216016
|
},
|
|
215895
216017
|
info: {
|
|
215896
216018
|
title: "MTranServer API",
|
|
215897
|
-
version: "4.0.
|
|
216019
|
+
version: "4.0.19",
|
|
215898
216020
|
description: "Translation server API",
|
|
215899
216021
|
license: {
|
|
215900
216022
|
name: "Apache-2.0"
|
|
@@ -216367,28 +216489,32 @@ var swagger_default = {
|
|
|
216367
216489
|
|
|
216368
216490
|
// src/middleware/ui.ts
|
|
216369
216491
|
import { readFile as readFile3 } from "fs/promises";
|
|
216492
|
+
import { dirname, resolve, isAbsolute } from "path";
|
|
216493
|
+
import { fileURLToPath as fileURLToPath3 } from "url";
|
|
216370
216494
|
|
|
216371
216495
|
// ui/dist/icon.png
|
|
216372
|
-
var icon_default = "./icon-
|
|
216496
|
+
var icon_default = "./icon-2r5te9sp.png";
|
|
216373
216497
|
|
|
216374
|
-
// ui/dist/
|
|
216375
|
-
var
|
|
216498
|
+
// ui/dist/index.html
|
|
216499
|
+
var dist_default = "./index-wzc7qnpt.html";
|
|
216376
216500
|
|
|
216377
|
-
// ui/dist/assets/index-
|
|
216378
|
-
var
|
|
216501
|
+
// ui/dist/assets/index-CViVzJTS.js
|
|
216502
|
+
var index_CViVzJTS_default = "./index-CViVzJTS-xrkq8wea.js";
|
|
216379
216503
|
|
|
216380
|
-
// ui/dist/index.
|
|
216381
|
-
var
|
|
216504
|
+
// ui/dist/assets/index-B5MwS93W.css
|
|
216505
|
+
var index_B5MwS93W_default = "./index-B5MwS93W-8btbkjwj.css";
|
|
216382
216506
|
|
|
216383
216507
|
// src/assets/ui.ts
|
|
216384
216508
|
var assets = {
|
|
216385
216509
|
"/icon.png": icon_default,
|
|
216386
|
-
"/
|
|
216387
|
-
"/assets/index-
|
|
216388
|
-
"/index.
|
|
216510
|
+
"/index.html": dist_default,
|
|
216511
|
+
"/assets/index-CViVzJTS.js": index_CViVzJTS_default,
|
|
216512
|
+
"/assets/index-B5MwS93W.css": index_B5MwS93W_default
|
|
216389
216513
|
};
|
|
216390
216514
|
|
|
216391
216515
|
// src/middleware/ui.ts
|
|
216516
|
+
var __filename2 = fileURLToPath3(import.meta.url);
|
|
216517
|
+
var __dirname2 = dirname(__filename2);
|
|
216392
216518
|
var mimeTypes = {
|
|
216393
216519
|
".html": "text/html",
|
|
216394
216520
|
".css": "text/css",
|
|
@@ -216411,13 +216537,15 @@ var uiStatic = async (req, res, next) => {
|
|
|
216411
216537
|
const ext = filePath.substring(filePath.lastIndexOf("."));
|
|
216412
216538
|
const mimeType = mimeTypes[ext] || "application/octet-stream";
|
|
216413
216539
|
res.setHeader("Content-Type", mimeType);
|
|
216414
|
-
const
|
|
216540
|
+
const resolvedPath = isAbsolute(assetPath) ? assetPath : resolve(__dirname2, assetPath);
|
|
216541
|
+
const buffer = await readFile3(resolvedPath);
|
|
216415
216542
|
res.send(buffer);
|
|
216416
216543
|
} else {
|
|
216417
216544
|
const indexPath = assets["/index.html"];
|
|
216418
216545
|
if (indexPath) {
|
|
216419
216546
|
res.setHeader("Content-Type", "text/html");
|
|
216420
|
-
const
|
|
216547
|
+
const resolvedIndexPath = isAbsolute(indexPath) ? indexPath : resolve(__dirname2, indexPath);
|
|
216548
|
+
const buffer = await readFile3(resolvedIndexPath);
|
|
216421
216549
|
res.send(buffer);
|
|
216422
216550
|
} else {
|
|
216423
216551
|
next();
|
|
@@ -216427,15 +216555,20 @@ var uiStatic = async (req, res, next) => {
|
|
|
216427
216555
|
|
|
216428
216556
|
// src/middleware/swagger.ts
|
|
216429
216557
|
import { readFile as readFile4 } from "fs/promises";
|
|
216558
|
+
import { dirname as dirname2, resolve as resolve2, isAbsolute as isAbsolute2 } from "path";
|
|
216559
|
+
import { fileURLToPath as fileURLToPath4 } from "url";
|
|
216430
216560
|
|
|
216431
|
-
// node_modules/swagger-ui-dist/
|
|
216432
|
-
var
|
|
216561
|
+
// node_modules/swagger-ui-dist/favicon-16x16.png
|
|
216562
|
+
var favicon_16x16_default = "./favicon-16x16-xwsy16sv.png";
|
|
216563
|
+
|
|
216564
|
+
// node_modules/swagger-ui-dist/swagger-ui.js
|
|
216565
|
+
var swagger_ui_default = "./swagger-ui-bycaq9jd.js";
|
|
216433
216566
|
|
|
216434
216567
|
// node_modules/swagger-ui-dist/oauth2-redirect.js
|
|
216435
216568
|
var oauth2_redirect_default = "./oauth2-redirect-bqxabm9x.js";
|
|
216436
216569
|
|
|
216437
|
-
// node_modules/swagger-ui-dist/swagger-
|
|
216438
|
-
var
|
|
216570
|
+
// node_modules/swagger-ui-dist/swagger-ui.css
|
|
216571
|
+
var swagger_ui_default2 = "./swagger-ui-bfxfcsxh.css";
|
|
216439
216572
|
|
|
216440
216573
|
// node_modules/swagger-ui-dist/swagger-ui-bundle.js
|
|
216441
216574
|
var swagger_ui_bundle_default = "./swagger-ui-bundle-a3dgbj09.js";
|
|
@@ -216443,28 +216576,27 @@ var swagger_ui_bundle_default = "./swagger-ui-bundle-a3dgbj09.js";
|
|
|
216443
216576
|
// node_modules/swagger-ui-dist/swagger-ui-standalone-preset.js
|
|
216444
216577
|
var swagger_ui_standalone_preset_default = "./swagger-ui-standalone-preset-9dtac9s6.js";
|
|
216445
216578
|
|
|
216446
|
-
// node_modules/swagger-ui-dist/swagger-
|
|
216447
|
-
var
|
|
216448
|
-
|
|
216449
|
-
// node_modules/swagger-ui-dist/favicon-16x16.png
|
|
216450
|
-
var favicon_16x16_default = "./favicon-16x16-xwsy16sv.png";
|
|
216579
|
+
// node_modules/swagger-ui-dist/swagger-initializer.js
|
|
216580
|
+
var swagger_initializer_default = "./swagger-initializer-55m7yyx2.js";
|
|
216451
216581
|
|
|
216452
216582
|
// node_modules/swagger-ui-dist/favicon-32x32.png
|
|
216453
216583
|
var favicon_32x32_default = "./favicon-32x32-zstv2hmc.png";
|
|
216454
216584
|
|
|
216455
216585
|
// src/assets/swagger.ts
|
|
216456
216586
|
var swaggerAssets = {
|
|
216457
|
-
"/
|
|
216587
|
+
"/favicon-16x16.png": favicon_16x16_default,
|
|
216588
|
+
"/swagger-ui.js": swagger_ui_default,
|
|
216458
216589
|
"/oauth2-redirect.js": oauth2_redirect_default,
|
|
216459
|
-
"/swagger-
|
|
216590
|
+
"/swagger-ui.css": swagger_ui_default2,
|
|
216460
216591
|
"/swagger-ui-bundle.js": swagger_ui_bundle_default,
|
|
216461
216592
|
"/swagger-ui-standalone-preset.js": swagger_ui_standalone_preset_default,
|
|
216462
|
-
"/swagger-
|
|
216463
|
-
"/favicon-16x16.png": favicon_16x16_default,
|
|
216593
|
+
"/swagger-initializer.js": swagger_initializer_default,
|
|
216464
216594
|
"/favicon-32x32.png": favicon_32x32_default
|
|
216465
216595
|
};
|
|
216466
216596
|
|
|
216467
216597
|
// src/middleware/swagger.ts
|
|
216598
|
+
var __filename3 = fileURLToPath4(import.meta.url);
|
|
216599
|
+
var __dirname3 = dirname2(__filename3);
|
|
216468
216600
|
var mimeTypes2 = {
|
|
216469
216601
|
".css": "text/css",
|
|
216470
216602
|
".js": "application/javascript",
|
|
@@ -216477,7 +216609,8 @@ var swaggerStatic = async (req, res, next) => {
|
|
|
216477
216609
|
const ext = filePath.substring(filePath.lastIndexOf("."));
|
|
216478
216610
|
const mimeType = mimeTypes2[ext] || "application/octet-stream";
|
|
216479
216611
|
res.setHeader("Content-Type", mimeType);
|
|
216480
|
-
const
|
|
216612
|
+
const resolvedPath = isAbsolute2(assetPath) ? assetPath : resolve2(__dirname3, assetPath);
|
|
216613
|
+
const buffer = await readFile4(resolvedPath);
|
|
216481
216614
|
res.send(buffer);
|
|
216482
216615
|
} else {
|
|
216483
216616
|
next();
|
|
@@ -216558,6 +216691,7 @@ async function run() {
|
|
|
216558
216691
|
app.use((_, res) => res.status(404).send("404"));
|
|
216559
216692
|
app.use(errorHandler());
|
|
216560
216693
|
const server2 = app.listen(parseInt(config2.port), config2.host, () => {
|
|
216694
|
+
important(`MTranServer v${VERSION} is running!`);
|
|
216561
216695
|
important(`Web UI: http://${config2.host}:${config2.port}/ui/`);
|
|
216562
216696
|
important(`Swagger Docs: http://${config2.host}:${config2.port}/docs/`);
|
|
216563
216697
|
important(`Log level set to: ${config2.logLevel}`);
|
|
@@ -216583,7 +216717,81 @@ async function run() {
|
|
|
216583
216717
|
}
|
|
216584
216718
|
|
|
216585
216719
|
// src/main.ts
|
|
216720
|
+
init_config();
|
|
216586
216721
|
init_logger();
|
|
216722
|
+
|
|
216723
|
+
// src/server/download.ts
|
|
216724
|
+
init_logger();
|
|
216725
|
+
init_utils();
|
|
216726
|
+
async function DownloadCommand(globalRecords2, downloadModel2) {
|
|
216727
|
+
const downloadIndex = process.argv.indexOf("--download");
|
|
216728
|
+
const inputPairs = [];
|
|
216729
|
+
for (let i = downloadIndex + 1;i < process.argv.length; i++) {
|
|
216730
|
+
const arg = process.argv[i];
|
|
216731
|
+
if (arg.startsWith("-"))
|
|
216732
|
+
break;
|
|
216733
|
+
inputPairs.push(arg);
|
|
216734
|
+
}
|
|
216735
|
+
if (inputPairs.length === 0) {
|
|
216736
|
+
error("Please specify at least one language pair (e.g., --download en-zh)");
|
|
216737
|
+
process.exit(1);
|
|
216738
|
+
}
|
|
216739
|
+
const availablePairs = [];
|
|
216740
|
+
const recordsData = globalRecords2.data;
|
|
216741
|
+
for (const inputPair of inputPairs) {
|
|
216742
|
+
const delimiter = inputPair.includes("_") ? "_" : "-";
|
|
216743
|
+
const parts = inputPair.split(delimiter);
|
|
216744
|
+
if (parts.length !== 2) {
|
|
216745
|
+
warn(`Invalid language pair: ${inputPair}. Use format from-to or from_to.`);
|
|
216746
|
+
continue;
|
|
216747
|
+
}
|
|
216748
|
+
const fromLang = NormalizeLanguageCode(parts[0]);
|
|
216749
|
+
const toLang = NormalizeLanguageCode(parts[1]);
|
|
216750
|
+
const exactMatch = recordsData.find((r) => NormalizeLanguageCode(r.sourceLanguage) === fromLang && NormalizeLanguageCode(r.targetLanguage) === toLang);
|
|
216751
|
+
if (exactMatch) {
|
|
216752
|
+
availablePairs.push({ from: exactMatch.sourceLanguage, to: exactMatch.targetLanguage });
|
|
216753
|
+
} else {
|
|
216754
|
+
warn(`Could not find model for pair: ${inputPair} (normalized: ${fromLang}_${toLang})`);
|
|
216755
|
+
}
|
|
216756
|
+
}
|
|
216757
|
+
if (availablePairs.length === 0) {
|
|
216758
|
+
warn("No valid models found to download.");
|
|
216759
|
+
} else {
|
|
216760
|
+
info(`Found ${availablePairs.length} pair(s) to download...`);
|
|
216761
|
+
const unique = availablePairs.filter((v, i, a) => a.findIndex((t) => t.from === v.from && t.to === v.to) === i);
|
|
216762
|
+
for (const pair of unique) {
|
|
216763
|
+
await downloadModel2(pair.to, pair.from);
|
|
216764
|
+
}
|
|
216765
|
+
}
|
|
216766
|
+
process.exit(0);
|
|
216767
|
+
}
|
|
216768
|
+
|
|
216769
|
+
// src/server/languages.ts
|
|
216770
|
+
init_utils();
|
|
216771
|
+
async function LanguagesCommand(getLanguagePairs2) {
|
|
216772
|
+
const argIndex = process.argv.findIndex((a) => a === "--languages" || a === "--language");
|
|
216773
|
+
const filterArg = process.argv[argIndex + 1];
|
|
216774
|
+
const filter = filterArg && !filterArg.startsWith("-") ? NormalizeLanguageCode(filterArg) : null;
|
|
216775
|
+
const pairs = getLanguagePairs2();
|
|
216776
|
+
console.log("Available language pairs:");
|
|
216777
|
+
let currentRow = "";
|
|
216778
|
+
for (const pair of pairs.sort()) {
|
|
216779
|
+
const [from, to] = pair.split("_");
|
|
216780
|
+
if (filter && NormalizeLanguageCode(from) !== filter && NormalizeLanguageCode(to) !== filter) {
|
|
216781
|
+
continue;
|
|
216782
|
+
}
|
|
216783
|
+
if (currentRow.length > 80) {
|
|
216784
|
+
console.log(currentRow);
|
|
216785
|
+
currentRow = "";
|
|
216786
|
+
}
|
|
216787
|
+
currentRow += pair + " ";
|
|
216788
|
+
}
|
|
216789
|
+
if (currentRow)
|
|
216790
|
+
console.log(currentRow);
|
|
216791
|
+
process.exit(0);
|
|
216792
|
+
}
|
|
216793
|
+
|
|
216794
|
+
// src/main.ts
|
|
216587
216795
|
if (process.argv.includes("--help") || process.argv.includes("-h")) {
|
|
216588
216796
|
console.log(`
|
|
216589
216797
|
MTranServer - Machine Translation Server
|
|
@@ -216607,6 +216815,10 @@ Options:
|
|
|
216607
216815
|
--no-log-console Disable logging to console
|
|
216608
216816
|
--check-update / --no-check-update Enable/Disable update check (default: true)
|
|
216609
216817
|
|
|
216818
|
+
Commands:
|
|
216819
|
+
--download <pairs...> Download models for specified pairs (e.g., --download en-zh zh-en)
|
|
216820
|
+
--language / --languages [filter] List available language pairs
|
|
216821
|
+
|
|
216610
216822
|
Environment Variables:
|
|
216611
216823
|
MT_HOST, MT_PORT, MT_LOG_LEVEL, MT_CONFIG_DIR, MT_MODEL_DIR,
|
|
216612
216824
|
MT_LOG_DIR, MT_ENABLE_UI, MT_OFFLINE, MT_WORKER_IDLE_TIMEOUT,
|
|
@@ -216615,6 +216827,30 @@ Environment Variables:
|
|
|
216615
216827
|
`);
|
|
216616
216828
|
process.exit(0);
|
|
216617
216829
|
}
|
|
216830
|
+
if (process.argv.includes("--languages") || process.argv.includes("--language") || process.argv.includes("--download")) {
|
|
216831
|
+
try {
|
|
216832
|
+
const config2 = getConfig();
|
|
216833
|
+
if (config2.enableOfflineMode) {
|
|
216834
|
+
error("This command is not available in offline mode.");
|
|
216835
|
+
error("Please disable offline mode to use this feature.");
|
|
216836
|
+
process.exit(1);
|
|
216837
|
+
}
|
|
216838
|
+
const models2 = await Promise.resolve().then(() => (init_models(), exports_models));
|
|
216839
|
+
await models2.initRecords();
|
|
216840
|
+
if (!models2.globalRecords) {
|
|
216841
|
+
throw new Error("Failed to Initialize records");
|
|
216842
|
+
}
|
|
216843
|
+
if (process.argv.includes("--languages") || process.argv.includes("--language")) {
|
|
216844
|
+
LanguagesCommand(models2.getLanguagePairs);
|
|
216845
|
+
}
|
|
216846
|
+
if (process.argv.includes("--download")) {
|
|
216847
|
+
DownloadCommand(models2.globalRecords, models2.downloadModel);
|
|
216848
|
+
}
|
|
216849
|
+
} catch (error2) {
|
|
216850
|
+
fatal("Error:", error2);
|
|
216851
|
+
process.exit(1);
|
|
216852
|
+
}
|
|
216853
|
+
}
|
|
216618
216854
|
process.on("uncaughtException", (error2) => {
|
|
216619
216855
|
fatal("Uncaught Exception:", error2);
|
|
216620
216856
|
});
|
|
@@ -216625,5 +216861,5 @@ run().catch((error2) => {
|
|
|
216625
216861
|
fatal("Failed to start server:", error2);
|
|
216626
216862
|
});
|
|
216627
216863
|
|
|
216628
|
-
//# debugId=
|
|
216864
|
+
//# debugId=7CD90E83C77CE50C64756E2164756E21
|
|
216629
216865
|
//# sourceMappingURL=main.js.map
|