@bluepic/embed 0.4.0-next.129 → 0.4.0-next.130
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/bluepic-embed.iife.js +267 -133
- package/dist/bluepic-embed.umd.js +267 -133
- package/dist/main.cjs +100 -97
- package/dist/main.mjs +16257 -16073
- package/dist/postal-mime-Df-WB8Vq.js +3337 -0
- package/dist/postal-mime-_7WF5UBe.cjs +28 -0
- package/dist/style.css +1 -1
- package/dist/xlsx-BopDBbWb.js +24176 -0
- package/dist/xlsx-qn1xoUuv.cjs +105 -0
- package/package.json +1 -1
|
@@ -0,0 +1,3337 @@
|
|
|
1
|
+
const E = new TextEncoder(), R = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/", B = new Uint8Array(256);
|
|
2
|
+
for (let s = 0; s < R.length; s++)
|
|
3
|
+
B[R.charCodeAt(s)] = s;
|
|
4
|
+
function _(s) {
|
|
5
|
+
let u = s.length;
|
|
6
|
+
for (; u > 0 && s.charAt(u - 1) === "="; )
|
|
7
|
+
u--;
|
|
8
|
+
u % 4 === 1 && u--;
|
|
9
|
+
const r = u % 4, t = Math.floor(u / 4) * 3 + (r ? r - 1 : 0), i = new ArrayBuffer(t), n = new Uint8Array(i);
|
|
10
|
+
let e = 0;
|
|
11
|
+
for (let a = 0; a < u; a += 4) {
|
|
12
|
+
let o = B[s.charCodeAt(a)], c = B[s.charCodeAt(a + 1)], l = B[s.charCodeAt(a + 2)], p = B[s.charCodeAt(a + 3)];
|
|
13
|
+
n[e++] = o << 2 | c >> 4, e < t && (n[e++] = (c & 15) << 4 | l >> 2), e < t && (n[e++] = (l & 3) << 6 | p & 63);
|
|
14
|
+
}
|
|
15
|
+
return i;
|
|
16
|
+
}
|
|
17
|
+
const J = /* @__PURE__ */ new Map([
|
|
18
|
+
// Hebrew. The logical and explicit ordering variants share the iso-8859-8 index.
|
|
19
|
+
["iso88598i", "iso-8859-8"],
|
|
20
|
+
["iso88598e", "iso-8859-8"],
|
|
21
|
+
// Japanese. WHATWG shift_jis is the Windows-31J index, so cp932 text decodes
|
|
22
|
+
// identically, including the NEC and IBM extension rows.
|
|
23
|
+
["shiftjis", "shift_jis"],
|
|
24
|
+
["windows31j", "shift_jis"],
|
|
25
|
+
["mskanji", "shift_jis"],
|
|
26
|
+
["eucjp", "euc-jp"],
|
|
27
|
+
// ISO-2022-JP, including the -1 / -2 supersets. Escape sequences outside plain
|
|
28
|
+
// ISO-2022-JP (JIS X 0212, the non-Japanese G2 sets, and the SO/SI katakana shifts
|
|
29
|
+
// cp50222 uses) decode to replacement characters, but the Japanese text around them
|
|
30
|
+
// still comes out right.
|
|
31
|
+
["iso2022jp", "iso-2022-jp"],
|
|
32
|
+
["iso2022jp1", "iso-2022-jp"],
|
|
33
|
+
["iso2022jp2", "iso-2022-jp"],
|
|
34
|
+
["junet", "iso-2022-jp"],
|
|
35
|
+
// Korean. The WHATWG euc-kr index is the extended cp949 / UHC index.
|
|
36
|
+
["euckr", "euc-kr"],
|
|
37
|
+
["uhc", "euc-kr"],
|
|
38
|
+
// Thai.
|
|
39
|
+
["tis620", "windows-874"]
|
|
40
|
+
]), Y = /* @__PURE__ */ new Map([
|
|
41
|
+
["932", "shift_jis"],
|
|
42
|
+
["936", "gbk"],
|
|
43
|
+
["949", "euc-kr"],
|
|
44
|
+
["950", "big5"],
|
|
45
|
+
["874", "windows-874"],
|
|
46
|
+
// Microsoft's EUC-JP and ISO-2022-JP variants. euc-jp and iso-2022-jp cover
|
|
47
|
+
// everything they can express.
|
|
48
|
+
["51932", "euc-jp"],
|
|
49
|
+
["50220", "iso-2022-jp"],
|
|
50
|
+
["50221", "iso-2022-jp"],
|
|
51
|
+
["50222", "iso-2022-jp"]
|
|
52
|
+
]), Z = /^(?:cp|windows|ms|ibm)(\d+)$/;
|
|
53
|
+
function X(s) {
|
|
54
|
+
return s.replace(/^(?:x-ms-|x-|cs)/, "").replace(/[\s._-]+/g, "");
|
|
55
|
+
}
|
|
56
|
+
function U(s) {
|
|
57
|
+
try {
|
|
58
|
+
return new TextDecoder(s);
|
|
59
|
+
} catch {
|
|
60
|
+
return null;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
function N(s) {
|
|
64
|
+
s = (s || "utf8").trim().toLowerCase();
|
|
65
|
+
const u = U(s);
|
|
66
|
+
if (u)
|
|
67
|
+
return u;
|
|
68
|
+
const r = X(s), t = r.match(Z), i = t && Y.get(t[1]) || J.get(r) || r;
|
|
69
|
+
return U(i) || new TextDecoder("windows-1252");
|
|
70
|
+
}
|
|
71
|
+
async function x(s) {
|
|
72
|
+
if ("arrayBuffer" in s)
|
|
73
|
+
return await s.arrayBuffer();
|
|
74
|
+
const u = new FileReader();
|
|
75
|
+
return new Promise((r, t) => {
|
|
76
|
+
u.onload = function(i) {
|
|
77
|
+
r(i.target.result);
|
|
78
|
+
}, u.onerror = function(i) {
|
|
79
|
+
t(u.error);
|
|
80
|
+
}, u.readAsArrayBuffer(s);
|
|
81
|
+
});
|
|
82
|
+
}
|
|
83
|
+
function F(s) {
|
|
84
|
+
return s >= 48 && s <= 57 ? s - 48 : s >= 97 && s <= 102 ? s - 97 + 10 : s >= 65 && s <= 70 ? s - 65 + 10 : -1;
|
|
85
|
+
}
|
|
86
|
+
function q(s, u, r) {
|
|
87
|
+
let t = s.indexOf("*");
|
|
88
|
+
t >= 0 && (s = s.substr(0, t)), u = u.toUpperCase();
|
|
89
|
+
let i;
|
|
90
|
+
if (u === "Q") {
|
|
91
|
+
r = r.replace(/=\s+([0-9a-fA-F])/g, "=$1").replace(/[_\s]/g, " ");
|
|
92
|
+
let n = E.encode(r), e = [];
|
|
93
|
+
for (let o = 0, c = n.length; o < c; o++) {
|
|
94
|
+
let l = n[o];
|
|
95
|
+
if (o <= c - 2 && l === 61) {
|
|
96
|
+
let p = F(n[o + 1]), f = F(n[o + 2]);
|
|
97
|
+
if (p >= 0 && f >= 0) {
|
|
98
|
+
e.push(p << 4 | f), o += 2;
|
|
99
|
+
continue;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
e.push(l);
|
|
103
|
+
}
|
|
104
|
+
i = new ArrayBuffer(e.length);
|
|
105
|
+
let a = new DataView(i);
|
|
106
|
+
for (let o = 0, c = e.length; o < c; o++)
|
|
107
|
+
a.setUint8(o, e[o]);
|
|
108
|
+
} else u === "B" ? i = _(r.replace(/[^a-zA-Z0-9\+\/=]+/g, "")) : i = E.encode(r);
|
|
109
|
+
return N(s).decode(i);
|
|
110
|
+
}
|
|
111
|
+
const W = "=\\?([^?\\s]+)\\?([QqBb])\\?([^?]*)\\?=", P = new RegExp(W, "g"), uu = /^[ \t\r\n]+$/, eu = new RegExp(`^(?:${W}\\s*)+$`);
|
|
112
|
+
function tu(s) {
|
|
113
|
+
return eu.test(s);
|
|
114
|
+
}
|
|
115
|
+
function ru(s) {
|
|
116
|
+
const u = [];
|
|
117
|
+
P.lastIndex = 0;
|
|
118
|
+
let r = 0, t;
|
|
119
|
+
for (; t = P.exec(s); )
|
|
120
|
+
t.index > r && u.push({ text: s.substring(r, t.index) }), u.push({ charset: t[1], encoding: t[2], encodedText: t[3] }), r = t.index + t[0].length;
|
|
121
|
+
return r < s.length && u.push({ text: s.substring(r) }), u;
|
|
122
|
+
}
|
|
123
|
+
function su(s, u) {
|
|
124
|
+
const r = s.encoding.toUpperCase();
|
|
125
|
+
return s.charset !== u.charset || r !== u.encoding.toUpperCase() ? !1 : r === "B" ? s.encodedText.length % 4 === 0 && !/=$/.test(s.encodedText) : !0;
|
|
126
|
+
}
|
|
127
|
+
function H(s, u) {
|
|
128
|
+
let r = "", t = null;
|
|
129
|
+
for (let i = 0; i < s.length; i++) {
|
|
130
|
+
const n = s[i];
|
|
131
|
+
if (n.text !== void 0) {
|
|
132
|
+
const e = s[i + 1];
|
|
133
|
+
if (t && e && e.text === void 0 && uu.test(n.text))
|
|
134
|
+
continue;
|
|
135
|
+
t && (r += q(t.charset, t.encoding, t.encodedText), t = null), r += n.text;
|
|
136
|
+
continue;
|
|
137
|
+
}
|
|
138
|
+
if (t && u && su(t, n)) {
|
|
139
|
+
t.encodedText += n.encodedText;
|
|
140
|
+
continue;
|
|
141
|
+
}
|
|
142
|
+
t && (r += q(t.charset, t.encoding, t.encodedText)), t = { charset: n.charset, encoding: n.encoding, encodedText: n.encodedText };
|
|
143
|
+
}
|
|
144
|
+
return t && (r += q(t.charset, t.encoding, t.encodedText)), r;
|
|
145
|
+
}
|
|
146
|
+
function C(s) {
|
|
147
|
+
const u = ru((s || "").toString()), r = H(u, !0);
|
|
148
|
+
return r.indexOf("�") < 0 ? r : H(u, !1);
|
|
149
|
+
}
|
|
150
|
+
function O(s, u) {
|
|
151
|
+
u = u || "utf-8";
|
|
152
|
+
let r = [];
|
|
153
|
+
for (let n = 0; n < s.length; n++) {
|
|
154
|
+
let e = s.charAt(n);
|
|
155
|
+
if (e === "%" && /^[a-f0-9]{2}/i.test(s.substr(n + 1, 2))) {
|
|
156
|
+
let a = s.substr(n + 1, 2);
|
|
157
|
+
n += 2, r.push(parseInt(a, 16));
|
|
158
|
+
} else if (e.charCodeAt(0) > 126) {
|
|
159
|
+
e = E.encode(e);
|
|
160
|
+
for (let a = 0; a < e.length; a++)
|
|
161
|
+
r.push(e[a]);
|
|
162
|
+
} else
|
|
163
|
+
r.push(e.charCodeAt(0));
|
|
164
|
+
}
|
|
165
|
+
const t = new ArrayBuffer(r.length), i = new DataView(t);
|
|
166
|
+
for (let n = 0, e = r.length; n < e; n++)
|
|
167
|
+
i.setUint8(n, r[n]);
|
|
168
|
+
return N(u).decode(t);
|
|
169
|
+
}
|
|
170
|
+
function au(s) {
|
|
171
|
+
let u = /* @__PURE__ */ new Map();
|
|
172
|
+
Object.keys(s.params).forEach((r) => {
|
|
173
|
+
let t = r.match(/\*((\d+)\*?)?$/);
|
|
174
|
+
if (!t)
|
|
175
|
+
return;
|
|
176
|
+
let i = r.substr(0, t.index).toLowerCase(), n = Number(t[2]) || 0, e;
|
|
177
|
+
u.has(i) ? e = u.get(i) : (e = {
|
|
178
|
+
charset: !1,
|
|
179
|
+
values: []
|
|
180
|
+
}, u.set(i, e));
|
|
181
|
+
let a = s.params[r], o = t[0].charAt(t[0].length - 1) === "*";
|
|
182
|
+
n === 0 && o && (t = a.match(/^([^']*)'[^']*'(.*)$/)) && (e.charset = t[1] || "utf-8", a = t[2]), e.values.push({ nr: n, value: a, encoded: o }), delete s.params[r];
|
|
183
|
+
}), u.forEach((r, t) => {
|
|
184
|
+
let i = "", n = "";
|
|
185
|
+
for (let e of r.values.sort((a, o) => a.nr - o.nr)) {
|
|
186
|
+
if (e.encoded) {
|
|
187
|
+
n += e.value;
|
|
188
|
+
continue;
|
|
189
|
+
}
|
|
190
|
+
n && (i += O(n, r.charset), n = ""), i += e.value;
|
|
191
|
+
}
|
|
192
|
+
n && (i += O(n, r.charset)), s.params[t] = i;
|
|
193
|
+
});
|
|
194
|
+
}
|
|
195
|
+
class iu {
|
|
196
|
+
constructor() {
|
|
197
|
+
this.chunks = [];
|
|
198
|
+
}
|
|
199
|
+
update(u) {
|
|
200
|
+
this.chunks.push(u), this.chunks.push(`
|
|
201
|
+
`);
|
|
202
|
+
}
|
|
203
|
+
finalize() {
|
|
204
|
+
return x(new Blob(this.chunks, { type: "application/octet-stream" }));
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
class nu {
|
|
208
|
+
constructor(u) {
|
|
209
|
+
u = u || {}, this.decoder = u.decoder || new TextDecoder(), this.maxChunkSize = 100 * 1024, this.chunks = [], this.remainder = "";
|
|
210
|
+
}
|
|
211
|
+
pushChunk(u) {
|
|
212
|
+
u.length && this.chunks.push(_(u));
|
|
213
|
+
}
|
|
214
|
+
flushRemainder() {
|
|
215
|
+
this.pushChunk(this.remainder), this.remainder = "";
|
|
216
|
+
}
|
|
217
|
+
update(u) {
|
|
218
|
+
const t = this.decoder.decode(u).replace(/[^a-zA-Z0-9+/=]+/g, "").split(/=+/);
|
|
219
|
+
for (let i = 0; i < t.length; i++)
|
|
220
|
+
this.remainder += t[i], i < t.length - 1 && this.flushRemainder();
|
|
221
|
+
if (this.remainder.length >= this.maxChunkSize) {
|
|
222
|
+
const i = Math.floor(this.remainder.length / 4) * 4;
|
|
223
|
+
this.pushChunk(this.remainder.substring(0, i)), this.remainder = this.remainder.substring(i);
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
finalize() {
|
|
227
|
+
return this.flushRemainder(), x(new Blob(this.chunks, { type: "application/octet-stream" }));
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
const j = 61, ou = 10;
|
|
231
|
+
class lu {
|
|
232
|
+
constructor() {
|
|
233
|
+
this.maxChunkSize = 100 * 1024, this.buffer = new Uint8Array(this.maxChunkSize), this.bufferPos = 0, this.chunks = [];
|
|
234
|
+
}
|
|
235
|
+
writeByte(u) {
|
|
236
|
+
this.bufferPos >= this.buffer.length && this.flushBuffer(), this.buffer[this.bufferPos++] = u;
|
|
237
|
+
}
|
|
238
|
+
// Literal text is the bulk of a typical body, so it is copied in runs rather than a
|
|
239
|
+
// byte at a time
|
|
240
|
+
writeBytes(u, r, t) {
|
|
241
|
+
for (; r < t; ) {
|
|
242
|
+
this.bufferPos >= this.buffer.length && this.flushBuffer();
|
|
243
|
+
const i = Math.min(t - r, this.buffer.length - this.bufferPos);
|
|
244
|
+
this.buffer.set(u.subarray(r, r + i), this.bufferPos), this.bufferPos += i, r += i;
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
flushBuffer() {
|
|
248
|
+
this.bufferPos && (this.chunks.push(this.buffer.slice(0, this.bufferPos)), this.bufferPos = 0);
|
|
249
|
+
}
|
|
250
|
+
// Quoted-printable source is 7 bit by definition, so it is decoded byte by byte and
|
|
251
|
+
// the result is handed on as bytes. Running the body charset over the encoded source
|
|
252
|
+
// instead corrupted every part whose charset was not ASCII compatible: the same
|
|
253
|
+
// content that decoded correctly in base64 came out as mojibake in quoted-printable.
|
|
254
|
+
update(u) {
|
|
255
|
+
let r = u.length;
|
|
256
|
+
const t = r > 0 && u[r - 1] === j;
|
|
257
|
+
t && r--;
|
|
258
|
+
let i = 0;
|
|
259
|
+
for (let n = 0; n < r; n++) {
|
|
260
|
+
if (u[n] !== j || n + 2 >= r)
|
|
261
|
+
continue;
|
|
262
|
+
const e = F(u[n + 1]), a = F(u[n + 2]);
|
|
263
|
+
e < 0 || a < 0 || (this.writeBytes(u, i, n), this.writeByte(e << 4 | a), n += 2, i = n + 1);
|
|
264
|
+
}
|
|
265
|
+
this.writeBytes(u, i, r), t || this.writeByte(ou);
|
|
266
|
+
}
|
|
267
|
+
finalize() {
|
|
268
|
+
return this.flushBuffer(), x(new Blob(this.chunks, { type: "application/octet-stream" }));
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
const cu = new TextDecoder("utf-8", { ignoreBOM: !0 }), k = (s) => s.replace(/^[ \t]+|[ \t]+$/g, ""), pu = /* @__PURE__ */ new Set([
|
|
272
|
+
"content-type",
|
|
273
|
+
"content-transfer-encoding",
|
|
274
|
+
"content-disposition",
|
|
275
|
+
"content-id",
|
|
276
|
+
"content-description"
|
|
277
|
+
]);
|
|
278
|
+
class z {
|
|
279
|
+
constructor(u) {
|
|
280
|
+
if (this.options = u || {}, this.postalMime = this.options.postalMime, this.childNodes = [], this.finalizedChildCount = 0, this.options.parentNode) {
|
|
281
|
+
if (this.parentNode = this.options.parentNode, this.depth = this.parentNode.depth + 1, this.depth > this.options.maxNestingDepth)
|
|
282
|
+
throw new Error(`Maximum MIME nesting depth of ${this.options.maxNestingDepth} levels exceeded`);
|
|
283
|
+
this.options.parentNode.childNodes.push(this);
|
|
284
|
+
} else
|
|
285
|
+
this.depth = 0;
|
|
286
|
+
this.state = "header", this.headerLines = [];
|
|
287
|
+
const t = (this.options.parentMultipartType || null) === "digest" ? "message/rfc822" : "text/plain";
|
|
288
|
+
this.contentType = {
|
|
289
|
+
value: t
|
|
290
|
+
}, this.contentTransferEncoding = {
|
|
291
|
+
value: "8bit"
|
|
292
|
+
}, this.contentDisposition = {
|
|
293
|
+
value: ""
|
|
294
|
+
}, this.headers = [], this.contentDecoder = !1;
|
|
295
|
+
}
|
|
296
|
+
setupContentDecoder(u) {
|
|
297
|
+
/base64/i.test(u) ? this.contentDecoder = new nu() : /quoted-printable/i.test(u) ? this.contentDecoder = new lu() : this.contentDecoder = new iu();
|
|
298
|
+
}
|
|
299
|
+
async finalize() {
|
|
300
|
+
if (this.state === "finished")
|
|
301
|
+
return;
|
|
302
|
+
this.state === "header" && this.processHeaders();
|
|
303
|
+
let u = this.postalMime.boundaries;
|
|
304
|
+
for (let r = u.length - 1; r >= 0; r--)
|
|
305
|
+
if (u[r].node === this) {
|
|
306
|
+
u.splice(r, 1);
|
|
307
|
+
break;
|
|
308
|
+
}
|
|
309
|
+
await this.finalizeChildNodes(), this.content = this.contentDecoder ? await this.contentDecoder.finalize() : null, this.contentDecoder = !1, this.state = "finished";
|
|
310
|
+
}
|
|
311
|
+
async finalizeChildNodes() {
|
|
312
|
+
for (; this.finalizedChildCount < this.childNodes.length; )
|
|
313
|
+
await this.childNodes[this.finalizedChildCount++].finalize();
|
|
314
|
+
}
|
|
315
|
+
// Strip RFC 822 comments (parenthesized text) from structured header values.
|
|
316
|
+
//
|
|
317
|
+
// Inside an unquoted parameter value a parenthesis that continues the current token is
|
|
318
|
+
// content, because `filename=Invoice(1).pdf` is a filename and not a token followed by
|
|
319
|
+
// a comment, and deleting the parens silently renames the attachment.
|
|
320
|
+
stripComments(u) {
|
|
321
|
+
let r = "", t = 0, i = !1, n = !1, e = -1, a = !1;
|
|
322
|
+
const o = () => !a || !r.length || /[ \t]$/.test(r);
|
|
323
|
+
for (let c = 0; c < u.length; c++) {
|
|
324
|
+
const l = u.charAt(c);
|
|
325
|
+
if (i) {
|
|
326
|
+
t === 0 && (r += l), i = !1;
|
|
327
|
+
continue;
|
|
328
|
+
}
|
|
329
|
+
if (l === "\\") {
|
|
330
|
+
i = !0, t === 0 && (r += l);
|
|
331
|
+
continue;
|
|
332
|
+
}
|
|
333
|
+
if (l === '"' && t === 0) {
|
|
334
|
+
n = !n, r += l;
|
|
335
|
+
continue;
|
|
336
|
+
}
|
|
337
|
+
if (!n) {
|
|
338
|
+
if (l === "(" && o()) {
|
|
339
|
+
t === 0 && (e = c), t++;
|
|
340
|
+
continue;
|
|
341
|
+
}
|
|
342
|
+
if (l === ")" && t > 0) {
|
|
343
|
+
t--;
|
|
344
|
+
continue;
|
|
345
|
+
}
|
|
346
|
+
t === 0 && (l === "=" ? a = !0 : l === ";" && (a = !1));
|
|
347
|
+
}
|
|
348
|
+
t === 0 && (r += l);
|
|
349
|
+
}
|
|
350
|
+
return t === 0 || u.indexOf(";", e) < 0 ? r : u;
|
|
351
|
+
}
|
|
352
|
+
parseStructuredHeader(u) {
|
|
353
|
+
u = this.stripComments(u);
|
|
354
|
+
let r = {
|
|
355
|
+
value: !1,
|
|
356
|
+
params: {}
|
|
357
|
+
}, t = !1, i = "", n = "value", e = "", a = !1, o = !1, c = !1, l;
|
|
358
|
+
const p = (h) => {
|
|
359
|
+
i.length && (i += e), e = "", i += h;
|
|
360
|
+
}, f = () => {
|
|
361
|
+
const h = i;
|
|
362
|
+
return i = "", e = "", a = !1, h;
|
|
363
|
+
}, b = (h, d) => {
|
|
364
|
+
Object.prototype.hasOwnProperty.call(r.params, h) || (r.params[h] = d);
|
|
365
|
+
}, A = () => {
|
|
366
|
+
const h = f();
|
|
367
|
+
t === !1 ? r.value = h : b(t, h);
|
|
368
|
+
}, m = () => {
|
|
369
|
+
const h = f().trim();
|
|
370
|
+
h && b(h.toLowerCase(), "");
|
|
371
|
+
};
|
|
372
|
+
for (let h = 0, d = u.length; h < d; h++)
|
|
373
|
+
switch (l = u.charAt(h), n) {
|
|
374
|
+
case "key":
|
|
375
|
+
if (l === "=") {
|
|
376
|
+
t = f().trim().toLowerCase(), n = "value";
|
|
377
|
+
break;
|
|
378
|
+
}
|
|
379
|
+
if (l === ";") {
|
|
380
|
+
m();
|
|
381
|
+
break;
|
|
382
|
+
}
|
|
383
|
+
i += l;
|
|
384
|
+
break;
|
|
385
|
+
case "value":
|
|
386
|
+
if (c)
|
|
387
|
+
p(l);
|
|
388
|
+
else if (o && l === "\\") {
|
|
389
|
+
c = !0;
|
|
390
|
+
continue;
|
|
391
|
+
} else o && l === o ? (o = !1, a = !0) : !o && l === '"' ? (o = l, i.length && (i += e), e = "") : !o && l === ";" ? (A(), n = "key") : !o && (l === " " || l === " ") ? e += l : a || p(l);
|
|
392
|
+
c = !1;
|
|
393
|
+
break;
|
|
394
|
+
}
|
|
395
|
+
return n === "value" ? A() : m(), r.value && (r.value = r.value.toLowerCase()), au(r), r;
|
|
396
|
+
}
|
|
397
|
+
decodeFlowedText(u, r) {
|
|
398
|
+
return u.split(/\r?\n/).map((t) => t.charAt(0) === " " ? t.slice(1) : t).reduce((t, i) => t.endsWith(" ") && t !== "-- " && !t.endsWith(`
|
|
399
|
+
-- `) ? r ? t.slice(0, -1) + i : t + i : t + `
|
|
400
|
+
` + i);
|
|
401
|
+
}
|
|
402
|
+
getTextContent() {
|
|
403
|
+
if (!this.content)
|
|
404
|
+
return "";
|
|
405
|
+
let u = N(this.contentType.parsed.params.charset).decode(this.content);
|
|
406
|
+
return /^flowed$/i.test(this.contentType.parsed.params.format) && (u = this.decodeFlowedText(u, /^yes$/i.test(this.contentType.parsed.params.delsp))), u;
|
|
407
|
+
}
|
|
408
|
+
processHeaders() {
|
|
409
|
+
let u = [];
|
|
410
|
+
for (let t of this.headerLines)
|
|
411
|
+
u.length && /^[ \t]/.test(t) ? u[u.length - 1].push(t) : u.push([t]);
|
|
412
|
+
this.rawHeaderLines = [];
|
|
413
|
+
let r = /* @__PURE__ */ new Set();
|
|
414
|
+
for (let t of u) {
|
|
415
|
+
let i = t.join(`
|
|
416
|
+
`), n = i.indexOf(":"), e = k(n < 0 ? i : i.substr(0, n));
|
|
417
|
+
this.rawHeaderLines.push({
|
|
418
|
+
key: e.toLowerCase(),
|
|
419
|
+
line: i
|
|
420
|
+
});
|
|
421
|
+
let a = t.join("");
|
|
422
|
+
n = a.indexOf(":");
|
|
423
|
+
let o = k(n < 0 ? a : a.substr(0, n)), c = n < 0 ? "" : k(a.substr(n + 1).replace(/[\r\n]+/g, " "));
|
|
424
|
+
this.headers.push({ key: o.toLowerCase(), originalKey: o, value: c });
|
|
425
|
+
const l = o.toLowerCase();
|
|
426
|
+
if (pu.has(l) && !r.has(l))
|
|
427
|
+
switch (r.add(l), l) {
|
|
428
|
+
case "content-type":
|
|
429
|
+
this.contentType = { value: c, parsed: {} };
|
|
430
|
+
break;
|
|
431
|
+
case "content-transfer-encoding":
|
|
432
|
+
this.contentTransferEncoding = { value: c, parsed: {} };
|
|
433
|
+
break;
|
|
434
|
+
case "content-disposition":
|
|
435
|
+
this.contentDisposition = { value: c, parsed: {} };
|
|
436
|
+
break;
|
|
437
|
+
case "content-id":
|
|
438
|
+
this.contentId = c;
|
|
439
|
+
break;
|
|
440
|
+
case "content-description":
|
|
441
|
+
this.contentDescription = c;
|
|
442
|
+
break;
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
this.contentType.parsed = this.parseStructuredHeader(this.contentType.value), this.contentType.multipart = /^multipart\//i.test(this.contentType.parsed.value) ? this.contentType.parsed.value.substr(this.contentType.parsed.value.indexOf("/") + 1) : !1, this.contentType.multipart && this.contentType.parsed.params.boundary && this.postalMime.boundaries.push({
|
|
446
|
+
value: E.encode(this.contentType.parsed.params.boundary),
|
|
447
|
+
node: this
|
|
448
|
+
}), this.contentDisposition.parsed = this.parseStructuredHeader(this.contentDisposition.value), this.contentTransferEncoding.encoding = (this.stripComments(this.contentTransferEncoding.value).toLowerCase().match(/[\w-]+/) || [""])[0], this.setupContentDecoder(this.contentTransferEncoding.encoding);
|
|
449
|
+
}
|
|
450
|
+
feed(u) {
|
|
451
|
+
switch (this.state) {
|
|
452
|
+
case "header":
|
|
453
|
+
if (!u.length)
|
|
454
|
+
return this.state = "body", this.processHeaders();
|
|
455
|
+
if (this.postalMime.headerSize += u.length, this.postalMime.headerSize > this.options.maxHeadersSize)
|
|
456
|
+
throw new Error(`Maximum header size of ${this.options.maxHeadersSize} bytes exceeded`);
|
|
457
|
+
this.headerLines.push(cu.decode(u));
|
|
458
|
+
break;
|
|
459
|
+
case "body":
|
|
460
|
+
this.contentDecoder.update(u);
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
const M = {
|
|
465
|
+
"Æ": "Æ",
|
|
466
|
+
"Æ": "Æ",
|
|
467
|
+
"&": "&",
|
|
468
|
+
"&": "&",
|
|
469
|
+
"Á": "Á",
|
|
470
|
+
"Á": "Á",
|
|
471
|
+
"Ă": "Ă",
|
|
472
|
+
"Â": "Â",
|
|
473
|
+
"Â": "Â",
|
|
474
|
+
"А": "А",
|
|
475
|
+
"𝔄": "𝔄",
|
|
476
|
+
"À": "À",
|
|
477
|
+
"À": "À",
|
|
478
|
+
"Α": "Α",
|
|
479
|
+
"Ā": "Ā",
|
|
480
|
+
"⩓": "⩓",
|
|
481
|
+
"Ą": "Ą",
|
|
482
|
+
"𝔸": "𝔸",
|
|
483
|
+
"⁡": "",
|
|
484
|
+
"Å": "Å",
|
|
485
|
+
"Å": "Å",
|
|
486
|
+
"𝒜": "𝒜",
|
|
487
|
+
"≔": "≔",
|
|
488
|
+
"Ã": "Ã",
|
|
489
|
+
"Ã": "Ã",
|
|
490
|
+
"Ä": "Ä",
|
|
491
|
+
"Ä": "Ä",
|
|
492
|
+
"∖": "∖",
|
|
493
|
+
"⫧": "⫧",
|
|
494
|
+
"⌆": "⌆",
|
|
495
|
+
"Б": "Б",
|
|
496
|
+
"∵": "∵",
|
|
497
|
+
"ℬ": "ℬ",
|
|
498
|
+
"Β": "Β",
|
|
499
|
+
"𝔅": "𝔅",
|
|
500
|
+
"𝔹": "𝔹",
|
|
501
|
+
"˘": "˘",
|
|
502
|
+
"ℬ": "ℬ",
|
|
503
|
+
"≎": "≎",
|
|
504
|
+
"Ч": "Ч",
|
|
505
|
+
"©": "©",
|
|
506
|
+
"©": "©",
|
|
507
|
+
"Ć": "Ć",
|
|
508
|
+
"⋒": "⋒",
|
|
509
|
+
"ⅅ": "ⅅ",
|
|
510
|
+
"ℭ": "ℭ",
|
|
511
|
+
"Č": "Č",
|
|
512
|
+
"Ç": "Ç",
|
|
513
|
+
"Ç": "Ç",
|
|
514
|
+
"Ĉ": "Ĉ",
|
|
515
|
+
"∰": "∰",
|
|
516
|
+
"Ċ": "Ċ",
|
|
517
|
+
"¸": "¸",
|
|
518
|
+
"·": "·",
|
|
519
|
+
"ℭ": "ℭ",
|
|
520
|
+
"Χ": "Χ",
|
|
521
|
+
"⊙": "⊙",
|
|
522
|
+
"⊖": "⊖",
|
|
523
|
+
"⊕": "⊕",
|
|
524
|
+
"⊗": "⊗",
|
|
525
|
+
"∲": "∲",
|
|
526
|
+
"”": "”",
|
|
527
|
+
"’": "’",
|
|
528
|
+
"∷": "∷",
|
|
529
|
+
"⩴": "⩴",
|
|
530
|
+
"≡": "≡",
|
|
531
|
+
"∯": "∯",
|
|
532
|
+
"∮": "∮",
|
|
533
|
+
"ℂ": "ℂ",
|
|
534
|
+
"∐": "∐",
|
|
535
|
+
"∳": "∳",
|
|
536
|
+
"⨯": "⨯",
|
|
537
|
+
"𝒞": "𝒞",
|
|
538
|
+
"⋓": "⋓",
|
|
539
|
+
"≍": "≍",
|
|
540
|
+
"ⅅ": "ⅅ",
|
|
541
|
+
"⤑": "⤑",
|
|
542
|
+
"Ђ": "Ђ",
|
|
543
|
+
"Ѕ": "Ѕ",
|
|
544
|
+
"Џ": "Џ",
|
|
545
|
+
"‡": "‡",
|
|
546
|
+
"↡": "↡",
|
|
547
|
+
"⫤": "⫤",
|
|
548
|
+
"Ď": "Ď",
|
|
549
|
+
"Д": "Д",
|
|
550
|
+
"∇": "∇",
|
|
551
|
+
"Δ": "Δ",
|
|
552
|
+
"𝔇": "𝔇",
|
|
553
|
+
"´": "´",
|
|
554
|
+
"˙": "˙",
|
|
555
|
+
"˝": "˝",
|
|
556
|
+
"`": "`",
|
|
557
|
+
"˜": "˜",
|
|
558
|
+
"⋄": "⋄",
|
|
559
|
+
"ⅆ": "ⅆ",
|
|
560
|
+
"𝔻": "𝔻",
|
|
561
|
+
"¨": "¨",
|
|
562
|
+
"⃜": "⃜",
|
|
563
|
+
"≐": "≐",
|
|
564
|
+
"∯": "∯",
|
|
565
|
+
"¨": "¨",
|
|
566
|
+
"⇓": "⇓",
|
|
567
|
+
"⇐": "⇐",
|
|
568
|
+
"⇔": "⇔",
|
|
569
|
+
"⫤": "⫤",
|
|
570
|
+
"⟸": "⟸",
|
|
571
|
+
"⟺": "⟺",
|
|
572
|
+
"⟹": "⟹",
|
|
573
|
+
"⇒": "⇒",
|
|
574
|
+
"⊨": "⊨",
|
|
575
|
+
"⇑": "⇑",
|
|
576
|
+
"⇕": "⇕",
|
|
577
|
+
"∥": "∥",
|
|
578
|
+
"↓": "↓",
|
|
579
|
+
"⤓": "⤓",
|
|
580
|
+
"⇵": "⇵",
|
|
581
|
+
"̑": "̑",
|
|
582
|
+
"⥐": "⥐",
|
|
583
|
+
"⥞": "⥞",
|
|
584
|
+
"↽": "↽",
|
|
585
|
+
"⥖": "⥖",
|
|
586
|
+
"⥟": "⥟",
|
|
587
|
+
"⇁": "⇁",
|
|
588
|
+
"⥗": "⥗",
|
|
589
|
+
"⊤": "⊤",
|
|
590
|
+
"↧": "↧",
|
|
591
|
+
"⇓": "⇓",
|
|
592
|
+
"𝒟": "𝒟",
|
|
593
|
+
"Đ": "Đ",
|
|
594
|
+
"Ŋ": "Ŋ",
|
|
595
|
+
"Ð": "Ð",
|
|
596
|
+
"Ð": "Ð",
|
|
597
|
+
"É": "É",
|
|
598
|
+
"É": "É",
|
|
599
|
+
"Ě": "Ě",
|
|
600
|
+
"Ê": "Ê",
|
|
601
|
+
"Ê": "Ê",
|
|
602
|
+
"Э": "Э",
|
|
603
|
+
"Ė": "Ė",
|
|
604
|
+
"𝔈": "𝔈",
|
|
605
|
+
"È": "È",
|
|
606
|
+
"È": "È",
|
|
607
|
+
"∈": "∈",
|
|
608
|
+
"Ē": "Ē",
|
|
609
|
+
"◻": "◻",
|
|
610
|
+
"▫": "▫",
|
|
611
|
+
"Ę": "Ę",
|
|
612
|
+
"𝔼": "𝔼",
|
|
613
|
+
"Ε": "Ε",
|
|
614
|
+
"⩵": "⩵",
|
|
615
|
+
"≂": "≂",
|
|
616
|
+
"⇌": "⇌",
|
|
617
|
+
"ℰ": "ℰ",
|
|
618
|
+
"⩳": "⩳",
|
|
619
|
+
"Η": "Η",
|
|
620
|
+
"Ë": "Ë",
|
|
621
|
+
"Ë": "Ë",
|
|
622
|
+
"∃": "∃",
|
|
623
|
+
"ⅇ": "ⅇ",
|
|
624
|
+
"Ф": "Ф",
|
|
625
|
+
"𝔉": "𝔉",
|
|
626
|
+
"◼": "◼",
|
|
627
|
+
"▪": "▪",
|
|
628
|
+
"𝔽": "𝔽",
|
|
629
|
+
"∀": "∀",
|
|
630
|
+
"ℱ": "ℱ",
|
|
631
|
+
"ℱ": "ℱ",
|
|
632
|
+
"Ѓ": "Ѓ",
|
|
633
|
+
">": ">",
|
|
634
|
+
">": ">",
|
|
635
|
+
"Γ": "Γ",
|
|
636
|
+
"Ϝ": "Ϝ",
|
|
637
|
+
"Ğ": "Ğ",
|
|
638
|
+
"Ģ": "Ģ",
|
|
639
|
+
"Ĝ": "Ĝ",
|
|
640
|
+
"Г": "Г",
|
|
641
|
+
"Ġ": "Ġ",
|
|
642
|
+
"𝔊": "𝔊",
|
|
643
|
+
"⋙": "⋙",
|
|
644
|
+
"𝔾": "𝔾",
|
|
645
|
+
"≥": "≥",
|
|
646
|
+
"⋛": "⋛",
|
|
647
|
+
"≧": "≧",
|
|
648
|
+
"⪢": "⪢",
|
|
649
|
+
"≷": "≷",
|
|
650
|
+
"⩾": "⩾",
|
|
651
|
+
"≳": "≳",
|
|
652
|
+
"𝒢": "𝒢",
|
|
653
|
+
"≫": "≫",
|
|
654
|
+
"Ъ": "Ъ",
|
|
655
|
+
"ˇ": "ˇ",
|
|
656
|
+
"^": "^",
|
|
657
|
+
"Ĥ": "Ĥ",
|
|
658
|
+
"ℌ": "ℌ",
|
|
659
|
+
"ℋ": "ℋ",
|
|
660
|
+
"ℍ": "ℍ",
|
|
661
|
+
"─": "─",
|
|
662
|
+
"ℋ": "ℋ",
|
|
663
|
+
"Ħ": "Ħ",
|
|
664
|
+
"≎": "≎",
|
|
665
|
+
"≏": "≏",
|
|
666
|
+
"Е": "Е",
|
|
667
|
+
"IJ": "IJ",
|
|
668
|
+
"Ё": "Ё",
|
|
669
|
+
"Í": "Í",
|
|
670
|
+
"Í": "Í",
|
|
671
|
+
"Î": "Î",
|
|
672
|
+
"Î": "Î",
|
|
673
|
+
"И": "И",
|
|
674
|
+
"İ": "İ",
|
|
675
|
+
"ℑ": "ℑ",
|
|
676
|
+
"Ì": "Ì",
|
|
677
|
+
"Ì": "Ì",
|
|
678
|
+
"ℑ": "ℑ",
|
|
679
|
+
"Ī": "Ī",
|
|
680
|
+
"ⅈ": "ⅈ",
|
|
681
|
+
"⇒": "⇒",
|
|
682
|
+
"∬": "∬",
|
|
683
|
+
"∫": "∫",
|
|
684
|
+
"⋂": "⋂",
|
|
685
|
+
"⁣": "",
|
|
686
|
+
"⁢": "",
|
|
687
|
+
"Į": "Į",
|
|
688
|
+
"𝕀": "𝕀",
|
|
689
|
+
"Ι": "Ι",
|
|
690
|
+
"ℐ": "ℐ",
|
|
691
|
+
"Ĩ": "Ĩ",
|
|
692
|
+
"І": "І",
|
|
693
|
+
"Ï": "Ï",
|
|
694
|
+
"Ï": "Ï",
|
|
695
|
+
"Ĵ": "Ĵ",
|
|
696
|
+
"Й": "Й",
|
|
697
|
+
"𝔍": "𝔍",
|
|
698
|
+
"𝕁": "𝕁",
|
|
699
|
+
"𝒥": "𝒥",
|
|
700
|
+
"Ј": "Ј",
|
|
701
|
+
"Є": "Є",
|
|
702
|
+
"Х": "Х",
|
|
703
|
+
"Ќ": "Ќ",
|
|
704
|
+
"Κ": "Κ",
|
|
705
|
+
"Ķ": "Ķ",
|
|
706
|
+
"К": "К",
|
|
707
|
+
"𝔎": "𝔎",
|
|
708
|
+
"𝕂": "𝕂",
|
|
709
|
+
"𝒦": "𝒦",
|
|
710
|
+
"Љ": "Љ",
|
|
711
|
+
"<": "<",
|
|
712
|
+
"<": "<",
|
|
713
|
+
"Ĺ": "Ĺ",
|
|
714
|
+
"Λ": "Λ",
|
|
715
|
+
"⟪": "⟪",
|
|
716
|
+
"ℒ": "ℒ",
|
|
717
|
+
"↞": "↞",
|
|
718
|
+
"Ľ": "Ľ",
|
|
719
|
+
"Ļ": "Ļ",
|
|
720
|
+
"Л": "Л",
|
|
721
|
+
"⟨": "⟨",
|
|
722
|
+
"←": "←",
|
|
723
|
+
"⇤": "⇤",
|
|
724
|
+
"⇆": "⇆",
|
|
725
|
+
"⌈": "⌈",
|
|
726
|
+
"⟦": "⟦",
|
|
727
|
+
"⥡": "⥡",
|
|
728
|
+
"⇃": "⇃",
|
|
729
|
+
"⥙": "⥙",
|
|
730
|
+
"⌊": "⌊",
|
|
731
|
+
"↔": "↔",
|
|
732
|
+
"⥎": "⥎",
|
|
733
|
+
"⊣": "⊣",
|
|
734
|
+
"↤": "↤",
|
|
735
|
+
"⥚": "⥚",
|
|
736
|
+
"⊲": "⊲",
|
|
737
|
+
"⧏": "⧏",
|
|
738
|
+
"⊴": "⊴",
|
|
739
|
+
"⥑": "⥑",
|
|
740
|
+
"⥠": "⥠",
|
|
741
|
+
"↿": "↿",
|
|
742
|
+
"⥘": "⥘",
|
|
743
|
+
"↼": "↼",
|
|
744
|
+
"⥒": "⥒",
|
|
745
|
+
"⇐": "⇐",
|
|
746
|
+
"⇔": "⇔",
|
|
747
|
+
"⋚": "⋚",
|
|
748
|
+
"≦": "≦",
|
|
749
|
+
"≶": "≶",
|
|
750
|
+
"⪡": "⪡",
|
|
751
|
+
"⩽": "⩽",
|
|
752
|
+
"≲": "≲",
|
|
753
|
+
"𝔏": "𝔏",
|
|
754
|
+
"⋘": "⋘",
|
|
755
|
+
"⇚": "⇚",
|
|
756
|
+
"Ŀ": "Ŀ",
|
|
757
|
+
"⟵": "⟵",
|
|
758
|
+
"⟷": "⟷",
|
|
759
|
+
"⟶": "⟶",
|
|
760
|
+
"⟸": "⟸",
|
|
761
|
+
"⟺": "⟺",
|
|
762
|
+
"⟹": "⟹",
|
|
763
|
+
"𝕃": "𝕃",
|
|
764
|
+
"↙": "↙",
|
|
765
|
+
"↘": "↘",
|
|
766
|
+
"ℒ": "ℒ",
|
|
767
|
+
"↰": "↰",
|
|
768
|
+
"Ł": "Ł",
|
|
769
|
+
"≪": "≪",
|
|
770
|
+
"⤅": "⤅",
|
|
771
|
+
"М": "М",
|
|
772
|
+
" ": " ",
|
|
773
|
+
"ℳ": "ℳ",
|
|
774
|
+
"𝔐": "𝔐",
|
|
775
|
+
"∓": "∓",
|
|
776
|
+
"𝕄": "𝕄",
|
|
777
|
+
"ℳ": "ℳ",
|
|
778
|
+
"Μ": "Μ",
|
|
779
|
+
"Њ": "Њ",
|
|
780
|
+
"Ń": "Ń",
|
|
781
|
+
"Ň": "Ň",
|
|
782
|
+
"Ņ": "Ņ",
|
|
783
|
+
"Н": "Н",
|
|
784
|
+
"​": "",
|
|
785
|
+
"​": "",
|
|
786
|
+
"​": "",
|
|
787
|
+
"​": "",
|
|
788
|
+
"≫": "≫",
|
|
789
|
+
"≪": "≪",
|
|
790
|
+
"
": `
|
|
791
|
+
`,
|
|
792
|
+
"𝔑": "𝔑",
|
|
793
|
+
"⁠": "",
|
|
794
|
+
" ": " ",
|
|
795
|
+
"ℕ": "ℕ",
|
|
796
|
+
"⫬": "⫬",
|
|
797
|
+
"≢": "≢",
|
|
798
|
+
"≭": "≭",
|
|
799
|
+
"∦": "∦",
|
|
800
|
+
"∉": "∉",
|
|
801
|
+
"≠": "≠",
|
|
802
|
+
"≂̸": "≂̸",
|
|
803
|
+
"∄": "∄",
|
|
804
|
+
"≯": "≯",
|
|
805
|
+
"≱": "≱",
|
|
806
|
+
"≧̸": "≧̸",
|
|
807
|
+
"≫̸": "≫̸",
|
|
808
|
+
"≹": "≹",
|
|
809
|
+
"⩾̸": "⩾̸",
|
|
810
|
+
"≵": "≵",
|
|
811
|
+
"≎̸": "≎̸",
|
|
812
|
+
"≏̸": "≏̸",
|
|
813
|
+
"⋪": "⋪",
|
|
814
|
+
"⧏̸": "⧏̸",
|
|
815
|
+
"⋬": "⋬",
|
|
816
|
+
"≮": "≮",
|
|
817
|
+
"≰": "≰",
|
|
818
|
+
"≸": "≸",
|
|
819
|
+
"≪̸": "≪̸",
|
|
820
|
+
"⩽̸": "⩽̸",
|
|
821
|
+
"≴": "≴",
|
|
822
|
+
"⪢̸": "⪢̸",
|
|
823
|
+
"⪡̸": "⪡̸",
|
|
824
|
+
"⊀": "⊀",
|
|
825
|
+
"⪯̸": "⪯̸",
|
|
826
|
+
"⋠": "⋠",
|
|
827
|
+
"∌": "∌",
|
|
828
|
+
"⋫": "⋫",
|
|
829
|
+
"⧐̸": "⧐̸",
|
|
830
|
+
"⋭": "⋭",
|
|
831
|
+
"⊏̸": "⊏̸",
|
|
832
|
+
"⋢": "⋢",
|
|
833
|
+
"⊐̸": "⊐̸",
|
|
834
|
+
"⋣": "⋣",
|
|
835
|
+
"⊂⃒": "⊂⃒",
|
|
836
|
+
"⊈": "⊈",
|
|
837
|
+
"⊁": "⊁",
|
|
838
|
+
"⪰̸": "⪰̸",
|
|
839
|
+
"⋡": "⋡",
|
|
840
|
+
"≿̸": "≿̸",
|
|
841
|
+
"⊃⃒": "⊃⃒",
|
|
842
|
+
"⊉": "⊉",
|
|
843
|
+
"≁": "≁",
|
|
844
|
+
"≄": "≄",
|
|
845
|
+
"≇": "≇",
|
|
846
|
+
"≉": "≉",
|
|
847
|
+
"∤": "∤",
|
|
848
|
+
"𝒩": "𝒩",
|
|
849
|
+
"Ñ": "Ñ",
|
|
850
|
+
"Ñ": "Ñ",
|
|
851
|
+
"Ν": "Ν",
|
|
852
|
+
"Œ": "Œ",
|
|
853
|
+
"Ó": "Ó",
|
|
854
|
+
"Ó": "Ó",
|
|
855
|
+
"Ô": "Ô",
|
|
856
|
+
"Ô": "Ô",
|
|
857
|
+
"О": "О",
|
|
858
|
+
"Ő": "Ő",
|
|
859
|
+
"𝔒": "𝔒",
|
|
860
|
+
"Ò": "Ò",
|
|
861
|
+
"Ò": "Ò",
|
|
862
|
+
"Ō": "Ō",
|
|
863
|
+
"Ω": "Ω",
|
|
864
|
+
"Ο": "Ο",
|
|
865
|
+
"𝕆": "𝕆",
|
|
866
|
+
"“": "“",
|
|
867
|
+
"‘": "‘",
|
|
868
|
+
"⩔": "⩔",
|
|
869
|
+
"𝒪": "𝒪",
|
|
870
|
+
"Ø": "Ø",
|
|
871
|
+
"Ø": "Ø",
|
|
872
|
+
"Õ": "Õ",
|
|
873
|
+
"Õ": "Õ",
|
|
874
|
+
"⨷": "⨷",
|
|
875
|
+
"Ö": "Ö",
|
|
876
|
+
"Ö": "Ö",
|
|
877
|
+
"‾": "‾",
|
|
878
|
+
"⏞": "⏞",
|
|
879
|
+
"⎴": "⎴",
|
|
880
|
+
"⏜": "⏜",
|
|
881
|
+
"∂": "∂",
|
|
882
|
+
"П": "П",
|
|
883
|
+
"𝔓": "𝔓",
|
|
884
|
+
"Φ": "Φ",
|
|
885
|
+
"Π": "Π",
|
|
886
|
+
"±": "±",
|
|
887
|
+
"ℌ": "ℌ",
|
|
888
|
+
"ℙ": "ℙ",
|
|
889
|
+
"⪻": "⪻",
|
|
890
|
+
"≺": "≺",
|
|
891
|
+
"⪯": "⪯",
|
|
892
|
+
"≼": "≼",
|
|
893
|
+
"≾": "≾",
|
|
894
|
+
"″": "″",
|
|
895
|
+
"∏": "∏",
|
|
896
|
+
"∷": "∷",
|
|
897
|
+
"∝": "∝",
|
|
898
|
+
"𝒫": "𝒫",
|
|
899
|
+
"Ψ": "Ψ",
|
|
900
|
+
""": '"',
|
|
901
|
+
""": '"',
|
|
902
|
+
"𝔔": "𝔔",
|
|
903
|
+
"ℚ": "ℚ",
|
|
904
|
+
"𝒬": "𝒬",
|
|
905
|
+
"⤐": "⤐",
|
|
906
|
+
"®": "®",
|
|
907
|
+
"®": "®",
|
|
908
|
+
"Ŕ": "Ŕ",
|
|
909
|
+
"⟫": "⟫",
|
|
910
|
+
"↠": "↠",
|
|
911
|
+
"⤖": "⤖",
|
|
912
|
+
"Ř": "Ř",
|
|
913
|
+
"Ŗ": "Ŗ",
|
|
914
|
+
"Р": "Р",
|
|
915
|
+
"ℜ": "ℜ",
|
|
916
|
+
"∋": "∋",
|
|
917
|
+
"⇋": "⇋",
|
|
918
|
+
"⥯": "⥯",
|
|
919
|
+
"ℜ": "ℜ",
|
|
920
|
+
"Ρ": "Ρ",
|
|
921
|
+
"⟩": "⟩",
|
|
922
|
+
"→": "→",
|
|
923
|
+
"⇥": "⇥",
|
|
924
|
+
"⇄": "⇄",
|
|
925
|
+
"⌉": "⌉",
|
|
926
|
+
"⟧": "⟧",
|
|
927
|
+
"⥝": "⥝",
|
|
928
|
+
"⇂": "⇂",
|
|
929
|
+
"⥕": "⥕",
|
|
930
|
+
"⌋": "⌋",
|
|
931
|
+
"⊢": "⊢",
|
|
932
|
+
"↦": "↦",
|
|
933
|
+
"⥛": "⥛",
|
|
934
|
+
"⊳": "⊳",
|
|
935
|
+
"⧐": "⧐",
|
|
936
|
+
"⊵": "⊵",
|
|
937
|
+
"⥏": "⥏",
|
|
938
|
+
"⥜": "⥜",
|
|
939
|
+
"↾": "↾",
|
|
940
|
+
"⥔": "⥔",
|
|
941
|
+
"⇀": "⇀",
|
|
942
|
+
"⥓": "⥓",
|
|
943
|
+
"⇒": "⇒",
|
|
944
|
+
"ℝ": "ℝ",
|
|
945
|
+
"⥰": "⥰",
|
|
946
|
+
"⇛": "⇛",
|
|
947
|
+
"ℛ": "ℛ",
|
|
948
|
+
"↱": "↱",
|
|
949
|
+
"⧴": "⧴",
|
|
950
|
+
"Щ": "Щ",
|
|
951
|
+
"Ш": "Ш",
|
|
952
|
+
"Ь": "Ь",
|
|
953
|
+
"Ś": "Ś",
|
|
954
|
+
"⪼": "⪼",
|
|
955
|
+
"Š": "Š",
|
|
956
|
+
"Ş": "Ş",
|
|
957
|
+
"Ŝ": "Ŝ",
|
|
958
|
+
"С": "С",
|
|
959
|
+
"𝔖": "𝔖",
|
|
960
|
+
"↓": "↓",
|
|
961
|
+
"←": "←",
|
|
962
|
+
"→": "→",
|
|
963
|
+
"↑": "↑",
|
|
964
|
+
"Σ": "Σ",
|
|
965
|
+
"∘": "∘",
|
|
966
|
+
"𝕊": "𝕊",
|
|
967
|
+
"√": "√",
|
|
968
|
+
"□": "□",
|
|
969
|
+
"⊓": "⊓",
|
|
970
|
+
"⊏": "⊏",
|
|
971
|
+
"⊑": "⊑",
|
|
972
|
+
"⊐": "⊐",
|
|
973
|
+
"⊒": "⊒",
|
|
974
|
+
"⊔": "⊔",
|
|
975
|
+
"𝒮": "𝒮",
|
|
976
|
+
"⋆": "⋆",
|
|
977
|
+
"⋐": "⋐",
|
|
978
|
+
"⋐": "⋐",
|
|
979
|
+
"⊆": "⊆",
|
|
980
|
+
"≻": "≻",
|
|
981
|
+
"⪰": "⪰",
|
|
982
|
+
"≽": "≽",
|
|
983
|
+
"≿": "≿",
|
|
984
|
+
"∋": "∋",
|
|
985
|
+
"∑": "∑",
|
|
986
|
+
"⋑": "⋑",
|
|
987
|
+
"⊃": "⊃",
|
|
988
|
+
"⊇": "⊇",
|
|
989
|
+
"⋑": "⋑",
|
|
990
|
+
"Þ": "Þ",
|
|
991
|
+
"Þ": "Þ",
|
|
992
|
+
"™": "™",
|
|
993
|
+
"Ћ": "Ћ",
|
|
994
|
+
"Ц": "Ц",
|
|
995
|
+
"	": " ",
|
|
996
|
+
"Τ": "Τ",
|
|
997
|
+
"Ť": "Ť",
|
|
998
|
+
"Ţ": "Ţ",
|
|
999
|
+
"Т": "Т",
|
|
1000
|
+
"𝔗": "𝔗",
|
|
1001
|
+
"∴": "∴",
|
|
1002
|
+
"Θ": "Θ",
|
|
1003
|
+
"  ": " ",
|
|
1004
|
+
" ": " ",
|
|
1005
|
+
"∼": "∼",
|
|
1006
|
+
"≃": "≃",
|
|
1007
|
+
"≅": "≅",
|
|
1008
|
+
"≈": "≈",
|
|
1009
|
+
"𝕋": "𝕋",
|
|
1010
|
+
"⃛": "⃛",
|
|
1011
|
+
"𝒯": "𝒯",
|
|
1012
|
+
"Ŧ": "Ŧ",
|
|
1013
|
+
"Ú": "Ú",
|
|
1014
|
+
"Ú": "Ú",
|
|
1015
|
+
"↟": "↟",
|
|
1016
|
+
"⥉": "⥉",
|
|
1017
|
+
"Ў": "Ў",
|
|
1018
|
+
"Ŭ": "Ŭ",
|
|
1019
|
+
"Û": "Û",
|
|
1020
|
+
"Û": "Û",
|
|
1021
|
+
"У": "У",
|
|
1022
|
+
"Ű": "Ű",
|
|
1023
|
+
"𝔘": "𝔘",
|
|
1024
|
+
"Ù": "Ù",
|
|
1025
|
+
"Ù": "Ù",
|
|
1026
|
+
"Ū": "Ū",
|
|
1027
|
+
"_": "_",
|
|
1028
|
+
"⏟": "⏟",
|
|
1029
|
+
"⎵": "⎵",
|
|
1030
|
+
"⏝": "⏝",
|
|
1031
|
+
"⋃": "⋃",
|
|
1032
|
+
"⊎": "⊎",
|
|
1033
|
+
"Ų": "Ų",
|
|
1034
|
+
"𝕌": "𝕌",
|
|
1035
|
+
"↑": "↑",
|
|
1036
|
+
"⤒": "⤒",
|
|
1037
|
+
"⇅": "⇅",
|
|
1038
|
+
"↕": "↕",
|
|
1039
|
+
"⥮": "⥮",
|
|
1040
|
+
"⊥": "⊥",
|
|
1041
|
+
"↥": "↥",
|
|
1042
|
+
"⇑": "⇑",
|
|
1043
|
+
"⇕": "⇕",
|
|
1044
|
+
"↖": "↖",
|
|
1045
|
+
"↗": "↗",
|
|
1046
|
+
"ϒ": "ϒ",
|
|
1047
|
+
"Υ": "Υ",
|
|
1048
|
+
"Ů": "Ů",
|
|
1049
|
+
"𝒰": "𝒰",
|
|
1050
|
+
"Ũ": "Ũ",
|
|
1051
|
+
"Ü": "Ü",
|
|
1052
|
+
"Ü": "Ü",
|
|
1053
|
+
"⊫": "⊫",
|
|
1054
|
+
"⫫": "⫫",
|
|
1055
|
+
"В": "В",
|
|
1056
|
+
"⊩": "⊩",
|
|
1057
|
+
"⫦": "⫦",
|
|
1058
|
+
"⋁": "⋁",
|
|
1059
|
+
"‖": "‖",
|
|
1060
|
+
"‖": "‖",
|
|
1061
|
+
"∣": "∣",
|
|
1062
|
+
"|": "|",
|
|
1063
|
+
"❘": "❘",
|
|
1064
|
+
"≀": "≀",
|
|
1065
|
+
" ": " ",
|
|
1066
|
+
"𝔙": "𝔙",
|
|
1067
|
+
"𝕍": "𝕍",
|
|
1068
|
+
"𝒱": "𝒱",
|
|
1069
|
+
"⊪": "⊪",
|
|
1070
|
+
"Ŵ": "Ŵ",
|
|
1071
|
+
"⋀": "⋀",
|
|
1072
|
+
"𝔚": "𝔚",
|
|
1073
|
+
"𝕎": "𝕎",
|
|
1074
|
+
"𝒲": "𝒲",
|
|
1075
|
+
"𝔛": "𝔛",
|
|
1076
|
+
"Ξ": "Ξ",
|
|
1077
|
+
"𝕏": "𝕏",
|
|
1078
|
+
"𝒳": "𝒳",
|
|
1079
|
+
"Я": "Я",
|
|
1080
|
+
"Ї": "Ї",
|
|
1081
|
+
"Ю": "Ю",
|
|
1082
|
+
"Ý": "Ý",
|
|
1083
|
+
"Ý": "Ý",
|
|
1084
|
+
"Ŷ": "Ŷ",
|
|
1085
|
+
"Ы": "Ы",
|
|
1086
|
+
"𝔜": "𝔜",
|
|
1087
|
+
"𝕐": "𝕐",
|
|
1088
|
+
"𝒴": "𝒴",
|
|
1089
|
+
"Ÿ": "Ÿ",
|
|
1090
|
+
"Ж": "Ж",
|
|
1091
|
+
"Ź": "Ź",
|
|
1092
|
+
"Ž": "Ž",
|
|
1093
|
+
"З": "З",
|
|
1094
|
+
"Ż": "Ż",
|
|
1095
|
+
"​": "",
|
|
1096
|
+
"Ζ": "Ζ",
|
|
1097
|
+
"ℨ": "ℨ",
|
|
1098
|
+
"ℤ": "ℤ",
|
|
1099
|
+
"𝒵": "𝒵",
|
|
1100
|
+
"á": "á",
|
|
1101
|
+
"á": "á",
|
|
1102
|
+
"ă": "ă",
|
|
1103
|
+
"∾": "∾",
|
|
1104
|
+
"∾̳": "∾̳",
|
|
1105
|
+
"∿": "∿",
|
|
1106
|
+
"â": "â",
|
|
1107
|
+
"â": "â",
|
|
1108
|
+
"´": "´",
|
|
1109
|
+
"´": "´",
|
|
1110
|
+
"а": "а",
|
|
1111
|
+
"æ": "æ",
|
|
1112
|
+
"æ": "æ",
|
|
1113
|
+
"⁡": "",
|
|
1114
|
+
"𝔞": "𝔞",
|
|
1115
|
+
"à": "à",
|
|
1116
|
+
"à": "à",
|
|
1117
|
+
"ℵ": "ℵ",
|
|
1118
|
+
"ℵ": "ℵ",
|
|
1119
|
+
"α": "α",
|
|
1120
|
+
"ā": "ā",
|
|
1121
|
+
"⨿": "⨿",
|
|
1122
|
+
"&": "&",
|
|
1123
|
+
"&": "&",
|
|
1124
|
+
"∧": "∧",
|
|
1125
|
+
"⩕": "⩕",
|
|
1126
|
+
"⩜": "⩜",
|
|
1127
|
+
"⩘": "⩘",
|
|
1128
|
+
"⩚": "⩚",
|
|
1129
|
+
"∠": "∠",
|
|
1130
|
+
"⦤": "⦤",
|
|
1131
|
+
"∠": "∠",
|
|
1132
|
+
"∡": "∡",
|
|
1133
|
+
"⦨": "⦨",
|
|
1134
|
+
"⦩": "⦩",
|
|
1135
|
+
"⦪": "⦪",
|
|
1136
|
+
"⦫": "⦫",
|
|
1137
|
+
"⦬": "⦬",
|
|
1138
|
+
"⦭": "⦭",
|
|
1139
|
+
"⦮": "⦮",
|
|
1140
|
+
"⦯": "⦯",
|
|
1141
|
+
"∟": "∟",
|
|
1142
|
+
"⊾": "⊾",
|
|
1143
|
+
"⦝": "⦝",
|
|
1144
|
+
"∢": "∢",
|
|
1145
|
+
"Å": "Å",
|
|
1146
|
+
"⍼": "⍼",
|
|
1147
|
+
"ą": "ą",
|
|
1148
|
+
"𝕒": "𝕒",
|
|
1149
|
+
"≈": "≈",
|
|
1150
|
+
"⩰": "⩰",
|
|
1151
|
+
"⩯": "⩯",
|
|
1152
|
+
"≊": "≊",
|
|
1153
|
+
"≋": "≋",
|
|
1154
|
+
"'": "'",
|
|
1155
|
+
"≈": "≈",
|
|
1156
|
+
"≊": "≊",
|
|
1157
|
+
"å": "å",
|
|
1158
|
+
"å": "å",
|
|
1159
|
+
"𝒶": "𝒶",
|
|
1160
|
+
"*": "*",
|
|
1161
|
+
"≈": "≈",
|
|
1162
|
+
"≍": "≍",
|
|
1163
|
+
"ã": "ã",
|
|
1164
|
+
"ã": "ã",
|
|
1165
|
+
"ä": "ä",
|
|
1166
|
+
"ä": "ä",
|
|
1167
|
+
"∳": "∳",
|
|
1168
|
+
"⨑": "⨑",
|
|
1169
|
+
"⫭": "⫭",
|
|
1170
|
+
"≌": "≌",
|
|
1171
|
+
"϶": "϶",
|
|
1172
|
+
"‵": "‵",
|
|
1173
|
+
"∽": "∽",
|
|
1174
|
+
"⋍": "⋍",
|
|
1175
|
+
"⊽": "⊽",
|
|
1176
|
+
"⌅": "⌅",
|
|
1177
|
+
"⌅": "⌅",
|
|
1178
|
+
"⎵": "⎵",
|
|
1179
|
+
"⎶": "⎶",
|
|
1180
|
+
"≌": "≌",
|
|
1181
|
+
"б": "б",
|
|
1182
|
+
"„": "„",
|
|
1183
|
+
"∵": "∵",
|
|
1184
|
+
"∵": "∵",
|
|
1185
|
+
"⦰": "⦰",
|
|
1186
|
+
"϶": "϶",
|
|
1187
|
+
"ℬ": "ℬ",
|
|
1188
|
+
"β": "β",
|
|
1189
|
+
"ℶ": "ℶ",
|
|
1190
|
+
"≬": "≬",
|
|
1191
|
+
"𝔟": "𝔟",
|
|
1192
|
+
"⋂": "⋂",
|
|
1193
|
+
"◯": "◯",
|
|
1194
|
+
"⋃": "⋃",
|
|
1195
|
+
"⨀": "⨀",
|
|
1196
|
+
"⨁": "⨁",
|
|
1197
|
+
"⨂": "⨂",
|
|
1198
|
+
"⨆": "⨆",
|
|
1199
|
+
"★": "★",
|
|
1200
|
+
"▽": "▽",
|
|
1201
|
+
"△": "△",
|
|
1202
|
+
"⨄": "⨄",
|
|
1203
|
+
"⋁": "⋁",
|
|
1204
|
+
"⋀": "⋀",
|
|
1205
|
+
"⤍": "⤍",
|
|
1206
|
+
"⧫": "⧫",
|
|
1207
|
+
"▪": "▪",
|
|
1208
|
+
"▴": "▴",
|
|
1209
|
+
"▾": "▾",
|
|
1210
|
+
"◂": "◂",
|
|
1211
|
+
"▸": "▸",
|
|
1212
|
+
"␣": "␣",
|
|
1213
|
+
"▒": "▒",
|
|
1214
|
+
"░": "░",
|
|
1215
|
+
"▓": "▓",
|
|
1216
|
+
"█": "█",
|
|
1217
|
+
"=⃥": "=⃥",
|
|
1218
|
+
"≡⃥": "≡⃥",
|
|
1219
|
+
"⌐": "⌐",
|
|
1220
|
+
"𝕓": "𝕓",
|
|
1221
|
+
"⊥": "⊥",
|
|
1222
|
+
"⊥": "⊥",
|
|
1223
|
+
"⋈": "⋈",
|
|
1224
|
+
"╗": "╗",
|
|
1225
|
+
"╔": "╔",
|
|
1226
|
+
"╖": "╖",
|
|
1227
|
+
"╓": "╓",
|
|
1228
|
+
"═": "═",
|
|
1229
|
+
"╦": "╦",
|
|
1230
|
+
"╩": "╩",
|
|
1231
|
+
"╤": "╤",
|
|
1232
|
+
"╧": "╧",
|
|
1233
|
+
"╝": "╝",
|
|
1234
|
+
"╚": "╚",
|
|
1235
|
+
"╜": "╜",
|
|
1236
|
+
"╙": "╙",
|
|
1237
|
+
"║": "║",
|
|
1238
|
+
"╬": "╬",
|
|
1239
|
+
"╣": "╣",
|
|
1240
|
+
"╠": "╠",
|
|
1241
|
+
"╫": "╫",
|
|
1242
|
+
"╢": "╢",
|
|
1243
|
+
"╟": "╟",
|
|
1244
|
+
"⧉": "⧉",
|
|
1245
|
+
"╕": "╕",
|
|
1246
|
+
"╒": "╒",
|
|
1247
|
+
"┐": "┐",
|
|
1248
|
+
"┌": "┌",
|
|
1249
|
+
"─": "─",
|
|
1250
|
+
"╥": "╥",
|
|
1251
|
+
"╨": "╨",
|
|
1252
|
+
"┬": "┬",
|
|
1253
|
+
"┴": "┴",
|
|
1254
|
+
"⊟": "⊟",
|
|
1255
|
+
"⊞": "⊞",
|
|
1256
|
+
"⊠": "⊠",
|
|
1257
|
+
"╛": "╛",
|
|
1258
|
+
"╘": "╘",
|
|
1259
|
+
"┘": "┘",
|
|
1260
|
+
"└": "└",
|
|
1261
|
+
"│": "│",
|
|
1262
|
+
"╪": "╪",
|
|
1263
|
+
"╡": "╡",
|
|
1264
|
+
"╞": "╞",
|
|
1265
|
+
"┼": "┼",
|
|
1266
|
+
"┤": "┤",
|
|
1267
|
+
"├": "├",
|
|
1268
|
+
"‵": "‵",
|
|
1269
|
+
"˘": "˘",
|
|
1270
|
+
"¦": "¦",
|
|
1271
|
+
"¦": "¦",
|
|
1272
|
+
"𝒷": "𝒷",
|
|
1273
|
+
"⁏": "⁏",
|
|
1274
|
+
"∽": "∽",
|
|
1275
|
+
"⋍": "⋍",
|
|
1276
|
+
"\": "\\",
|
|
1277
|
+
"⧅": "⧅",
|
|
1278
|
+
"⟈": "⟈",
|
|
1279
|
+
"•": "•",
|
|
1280
|
+
"•": "•",
|
|
1281
|
+
"≎": "≎",
|
|
1282
|
+
"⪮": "⪮",
|
|
1283
|
+
"≏": "≏",
|
|
1284
|
+
"≏": "≏",
|
|
1285
|
+
"ć": "ć",
|
|
1286
|
+
"∩": "∩",
|
|
1287
|
+
"⩄": "⩄",
|
|
1288
|
+
"⩉": "⩉",
|
|
1289
|
+
"⩋": "⩋",
|
|
1290
|
+
"⩇": "⩇",
|
|
1291
|
+
"⩀": "⩀",
|
|
1292
|
+
"∩︀": "∩︀",
|
|
1293
|
+
"⁁": "⁁",
|
|
1294
|
+
"ˇ": "ˇ",
|
|
1295
|
+
"⩍": "⩍",
|
|
1296
|
+
"č": "č",
|
|
1297
|
+
"ç": "ç",
|
|
1298
|
+
"ç": "ç",
|
|
1299
|
+
"ĉ": "ĉ",
|
|
1300
|
+
"⩌": "⩌",
|
|
1301
|
+
"⩐": "⩐",
|
|
1302
|
+
"ċ": "ċ",
|
|
1303
|
+
"¸": "¸",
|
|
1304
|
+
"¸": "¸",
|
|
1305
|
+
"⦲": "⦲",
|
|
1306
|
+
"¢": "¢",
|
|
1307
|
+
"¢": "¢",
|
|
1308
|
+
"·": "·",
|
|
1309
|
+
"𝔠": "𝔠",
|
|
1310
|
+
"ч": "ч",
|
|
1311
|
+
"✓": "✓",
|
|
1312
|
+
"✓": "✓",
|
|
1313
|
+
"χ": "χ",
|
|
1314
|
+
"○": "○",
|
|
1315
|
+
"⧃": "⧃",
|
|
1316
|
+
"ˆ": "ˆ",
|
|
1317
|
+
"≗": "≗",
|
|
1318
|
+
"↺": "↺",
|
|
1319
|
+
"↻": "↻",
|
|
1320
|
+
"®": "®",
|
|
1321
|
+
"Ⓢ": "Ⓢ",
|
|
1322
|
+
"⊛": "⊛",
|
|
1323
|
+
"⊚": "⊚",
|
|
1324
|
+
"⊝": "⊝",
|
|
1325
|
+
"≗": "≗",
|
|
1326
|
+
"⨐": "⨐",
|
|
1327
|
+
"⫯": "⫯",
|
|
1328
|
+
"⧂": "⧂",
|
|
1329
|
+
"♣": "♣",
|
|
1330
|
+
"♣": "♣",
|
|
1331
|
+
":": ":",
|
|
1332
|
+
"≔": "≔",
|
|
1333
|
+
"≔": "≔",
|
|
1334
|
+
",": ",",
|
|
1335
|
+
"@": "@",
|
|
1336
|
+
"∁": "∁",
|
|
1337
|
+
"∘": "∘",
|
|
1338
|
+
"∁": "∁",
|
|
1339
|
+
"ℂ": "ℂ",
|
|
1340
|
+
"≅": "≅",
|
|
1341
|
+
"⩭": "⩭",
|
|
1342
|
+
"∮": "∮",
|
|
1343
|
+
"𝕔": "𝕔",
|
|
1344
|
+
"∐": "∐",
|
|
1345
|
+
"©": "©",
|
|
1346
|
+
"©": "©",
|
|
1347
|
+
"℗": "℗",
|
|
1348
|
+
"↵": "↵",
|
|
1349
|
+
"✗": "✗",
|
|
1350
|
+
"𝒸": "𝒸",
|
|
1351
|
+
"⫏": "⫏",
|
|
1352
|
+
"⫑": "⫑",
|
|
1353
|
+
"⫐": "⫐",
|
|
1354
|
+
"⫒": "⫒",
|
|
1355
|
+
"⋯": "⋯",
|
|
1356
|
+
"⤸": "⤸",
|
|
1357
|
+
"⤵": "⤵",
|
|
1358
|
+
"⋞": "⋞",
|
|
1359
|
+
"⋟": "⋟",
|
|
1360
|
+
"↶": "↶",
|
|
1361
|
+
"⤽": "⤽",
|
|
1362
|
+
"∪": "∪",
|
|
1363
|
+
"⩈": "⩈",
|
|
1364
|
+
"⩆": "⩆",
|
|
1365
|
+
"⩊": "⩊",
|
|
1366
|
+
"⊍": "⊍",
|
|
1367
|
+
"⩅": "⩅",
|
|
1368
|
+
"∪︀": "∪︀",
|
|
1369
|
+
"↷": "↷",
|
|
1370
|
+
"⤼": "⤼",
|
|
1371
|
+
"⋞": "⋞",
|
|
1372
|
+
"⋟": "⋟",
|
|
1373
|
+
"⋎": "⋎",
|
|
1374
|
+
"⋏": "⋏",
|
|
1375
|
+
"¤": "¤",
|
|
1376
|
+
"¤": "¤",
|
|
1377
|
+
"↶": "↶",
|
|
1378
|
+
"↷": "↷",
|
|
1379
|
+
"⋎": "⋎",
|
|
1380
|
+
"⋏": "⋏",
|
|
1381
|
+
"∲": "∲",
|
|
1382
|
+
"∱": "∱",
|
|
1383
|
+
"⌭": "⌭",
|
|
1384
|
+
"⇓": "⇓",
|
|
1385
|
+
"⥥": "⥥",
|
|
1386
|
+
"†": "†",
|
|
1387
|
+
"ℸ": "ℸ",
|
|
1388
|
+
"↓": "↓",
|
|
1389
|
+
"‐": "‐",
|
|
1390
|
+
"⊣": "⊣",
|
|
1391
|
+
"⤏": "⤏",
|
|
1392
|
+
"˝": "˝",
|
|
1393
|
+
"ď": "ď",
|
|
1394
|
+
"д": "д",
|
|
1395
|
+
"ⅆ": "ⅆ",
|
|
1396
|
+
"‡": "‡",
|
|
1397
|
+
"⇊": "⇊",
|
|
1398
|
+
"⩷": "⩷",
|
|
1399
|
+
"°": "°",
|
|
1400
|
+
"°": "°",
|
|
1401
|
+
"δ": "δ",
|
|
1402
|
+
"⦱": "⦱",
|
|
1403
|
+
"⥿": "⥿",
|
|
1404
|
+
"𝔡": "𝔡",
|
|
1405
|
+
"⇃": "⇃",
|
|
1406
|
+
"⇂": "⇂",
|
|
1407
|
+
"⋄": "⋄",
|
|
1408
|
+
"⋄": "⋄",
|
|
1409
|
+
"♦": "♦",
|
|
1410
|
+
"♦": "♦",
|
|
1411
|
+
"¨": "¨",
|
|
1412
|
+
"ϝ": "ϝ",
|
|
1413
|
+
"⋲": "⋲",
|
|
1414
|
+
"÷": "÷",
|
|
1415
|
+
"÷": "÷",
|
|
1416
|
+
"÷": "÷",
|
|
1417
|
+
"⋇": "⋇",
|
|
1418
|
+
"⋇": "⋇",
|
|
1419
|
+
"ђ": "ђ",
|
|
1420
|
+
"⌞": "⌞",
|
|
1421
|
+
"⌍": "⌍",
|
|
1422
|
+
"$": "$",
|
|
1423
|
+
"𝕕": "𝕕",
|
|
1424
|
+
"˙": "˙",
|
|
1425
|
+
"≐": "≐",
|
|
1426
|
+
"≑": "≑",
|
|
1427
|
+
"∸": "∸",
|
|
1428
|
+
"∔": "∔",
|
|
1429
|
+
"⊡": "⊡",
|
|
1430
|
+
"⌆": "⌆",
|
|
1431
|
+
"↓": "↓",
|
|
1432
|
+
"⇊": "⇊",
|
|
1433
|
+
"⇃": "⇃",
|
|
1434
|
+
"⇂": "⇂",
|
|
1435
|
+
"⤐": "⤐",
|
|
1436
|
+
"⌟": "⌟",
|
|
1437
|
+
"⌌": "⌌",
|
|
1438
|
+
"𝒹": "𝒹",
|
|
1439
|
+
"ѕ": "ѕ",
|
|
1440
|
+
"⧶": "⧶",
|
|
1441
|
+
"đ": "đ",
|
|
1442
|
+
"⋱": "⋱",
|
|
1443
|
+
"▿": "▿",
|
|
1444
|
+
"▾": "▾",
|
|
1445
|
+
"⇵": "⇵",
|
|
1446
|
+
"⥯": "⥯",
|
|
1447
|
+
"⦦": "⦦",
|
|
1448
|
+
"џ": "џ",
|
|
1449
|
+
"⟿": "⟿",
|
|
1450
|
+
"⩷": "⩷",
|
|
1451
|
+
"≑": "≑",
|
|
1452
|
+
"é": "é",
|
|
1453
|
+
"é": "é",
|
|
1454
|
+
"⩮": "⩮",
|
|
1455
|
+
"ě": "ě",
|
|
1456
|
+
"≖": "≖",
|
|
1457
|
+
"ê": "ê",
|
|
1458
|
+
"ê": "ê",
|
|
1459
|
+
"≕": "≕",
|
|
1460
|
+
"э": "э",
|
|
1461
|
+
"ė": "ė",
|
|
1462
|
+
"ⅇ": "ⅇ",
|
|
1463
|
+
"≒": "≒",
|
|
1464
|
+
"𝔢": "𝔢",
|
|
1465
|
+
"⪚": "⪚",
|
|
1466
|
+
"è": "è",
|
|
1467
|
+
"è": "è",
|
|
1468
|
+
"⪖": "⪖",
|
|
1469
|
+
"⪘": "⪘",
|
|
1470
|
+
"⪙": "⪙",
|
|
1471
|
+
"⏧": "⏧",
|
|
1472
|
+
"ℓ": "ℓ",
|
|
1473
|
+
"⪕": "⪕",
|
|
1474
|
+
"⪗": "⪗",
|
|
1475
|
+
"ē": "ē",
|
|
1476
|
+
"∅": "∅",
|
|
1477
|
+
"∅": "∅",
|
|
1478
|
+
"∅": "∅",
|
|
1479
|
+
" ": " ",
|
|
1480
|
+
" ": " ",
|
|
1481
|
+
" ": " ",
|
|
1482
|
+
"ŋ": "ŋ",
|
|
1483
|
+
" ": " ",
|
|
1484
|
+
"ę": "ę",
|
|
1485
|
+
"𝕖": "𝕖",
|
|
1486
|
+
"⋕": "⋕",
|
|
1487
|
+
"⧣": "⧣",
|
|
1488
|
+
"⩱": "⩱",
|
|
1489
|
+
"ε": "ε",
|
|
1490
|
+
"ε": "ε",
|
|
1491
|
+
"ϵ": "ϵ",
|
|
1492
|
+
"≖": "≖",
|
|
1493
|
+
"≕": "≕",
|
|
1494
|
+
"≂": "≂",
|
|
1495
|
+
"⪖": "⪖",
|
|
1496
|
+
"⪕": "⪕",
|
|
1497
|
+
"=": "=",
|
|
1498
|
+
"≟": "≟",
|
|
1499
|
+
"≡": "≡",
|
|
1500
|
+
"⩸": "⩸",
|
|
1501
|
+
"⧥": "⧥",
|
|
1502
|
+
"≓": "≓",
|
|
1503
|
+
"⥱": "⥱",
|
|
1504
|
+
"ℯ": "ℯ",
|
|
1505
|
+
"≐": "≐",
|
|
1506
|
+
"≂": "≂",
|
|
1507
|
+
"η": "η",
|
|
1508
|
+
"ð": "ð",
|
|
1509
|
+
"ð": "ð",
|
|
1510
|
+
"ë": "ë",
|
|
1511
|
+
"ë": "ë",
|
|
1512
|
+
"€": "€",
|
|
1513
|
+
"!": "!",
|
|
1514
|
+
"∃": "∃",
|
|
1515
|
+
"ℰ": "ℰ",
|
|
1516
|
+
"ⅇ": "ⅇ",
|
|
1517
|
+
"≒": "≒",
|
|
1518
|
+
"ф": "ф",
|
|
1519
|
+
"♀": "♀",
|
|
1520
|
+
"ffi": "ffi",
|
|
1521
|
+
"ff": "ff",
|
|
1522
|
+
"ffl": "ffl",
|
|
1523
|
+
"𝔣": "𝔣",
|
|
1524
|
+
"fi": "fi",
|
|
1525
|
+
"fj": "fj",
|
|
1526
|
+
"♭": "♭",
|
|
1527
|
+
"fl": "fl",
|
|
1528
|
+
"▱": "▱",
|
|
1529
|
+
"ƒ": "ƒ",
|
|
1530
|
+
"𝕗": "𝕗",
|
|
1531
|
+
"∀": "∀",
|
|
1532
|
+
"⋔": "⋔",
|
|
1533
|
+
"⫙": "⫙",
|
|
1534
|
+
"⨍": "⨍",
|
|
1535
|
+
"½": "½",
|
|
1536
|
+
"½": "½",
|
|
1537
|
+
"⅓": "⅓",
|
|
1538
|
+
"¼": "¼",
|
|
1539
|
+
"¼": "¼",
|
|
1540
|
+
"⅕": "⅕",
|
|
1541
|
+
"⅙": "⅙",
|
|
1542
|
+
"⅛": "⅛",
|
|
1543
|
+
"⅔": "⅔",
|
|
1544
|
+
"⅖": "⅖",
|
|
1545
|
+
"¾": "¾",
|
|
1546
|
+
"¾": "¾",
|
|
1547
|
+
"⅗": "⅗",
|
|
1548
|
+
"⅜": "⅜",
|
|
1549
|
+
"⅘": "⅘",
|
|
1550
|
+
"⅚": "⅚",
|
|
1551
|
+
"⅝": "⅝",
|
|
1552
|
+
"⅞": "⅞",
|
|
1553
|
+
"⁄": "⁄",
|
|
1554
|
+
"⌢": "⌢",
|
|
1555
|
+
"𝒻": "𝒻",
|
|
1556
|
+
"≧": "≧",
|
|
1557
|
+
"⪌": "⪌",
|
|
1558
|
+
"ǵ": "ǵ",
|
|
1559
|
+
"γ": "γ",
|
|
1560
|
+
"ϝ": "ϝ",
|
|
1561
|
+
"⪆": "⪆",
|
|
1562
|
+
"ğ": "ğ",
|
|
1563
|
+
"ĝ": "ĝ",
|
|
1564
|
+
"г": "г",
|
|
1565
|
+
"ġ": "ġ",
|
|
1566
|
+
"≥": "≥",
|
|
1567
|
+
"⋛": "⋛",
|
|
1568
|
+
"≥": "≥",
|
|
1569
|
+
"≧": "≧",
|
|
1570
|
+
"⩾": "⩾",
|
|
1571
|
+
"⩾": "⩾",
|
|
1572
|
+
"⪩": "⪩",
|
|
1573
|
+
"⪀": "⪀",
|
|
1574
|
+
"⪂": "⪂",
|
|
1575
|
+
"⪄": "⪄",
|
|
1576
|
+
"⋛︀": "⋛︀",
|
|
1577
|
+
"⪔": "⪔",
|
|
1578
|
+
"𝔤": "𝔤",
|
|
1579
|
+
"≫": "≫",
|
|
1580
|
+
"⋙": "⋙",
|
|
1581
|
+
"ℷ": "ℷ",
|
|
1582
|
+
"ѓ": "ѓ",
|
|
1583
|
+
"≷": "≷",
|
|
1584
|
+
"⪒": "⪒",
|
|
1585
|
+
"⪥": "⪥",
|
|
1586
|
+
"⪤": "⪤",
|
|
1587
|
+
"≩": "≩",
|
|
1588
|
+
"⪊": "⪊",
|
|
1589
|
+
"⪊": "⪊",
|
|
1590
|
+
"⪈": "⪈",
|
|
1591
|
+
"⪈": "⪈",
|
|
1592
|
+
"≩": "≩",
|
|
1593
|
+
"⋧": "⋧",
|
|
1594
|
+
"𝕘": "𝕘",
|
|
1595
|
+
"`": "`",
|
|
1596
|
+
"ℊ": "ℊ",
|
|
1597
|
+
"≳": "≳",
|
|
1598
|
+
"⪎": "⪎",
|
|
1599
|
+
"⪐": "⪐",
|
|
1600
|
+
">": ">",
|
|
1601
|
+
">": ">",
|
|
1602
|
+
"⪧": "⪧",
|
|
1603
|
+
"⩺": "⩺",
|
|
1604
|
+
"⋗": "⋗",
|
|
1605
|
+
"⦕": "⦕",
|
|
1606
|
+
"⩼": "⩼",
|
|
1607
|
+
"⪆": "⪆",
|
|
1608
|
+
"⥸": "⥸",
|
|
1609
|
+
"⋗": "⋗",
|
|
1610
|
+
"⋛": "⋛",
|
|
1611
|
+
"⪌": "⪌",
|
|
1612
|
+
"≷": "≷",
|
|
1613
|
+
"≳": "≳",
|
|
1614
|
+
"≩︀": "≩︀",
|
|
1615
|
+
"≩︀": "≩︀",
|
|
1616
|
+
"⇔": "⇔",
|
|
1617
|
+
" ": " ",
|
|
1618
|
+
"½": "½",
|
|
1619
|
+
"ℋ": "ℋ",
|
|
1620
|
+
"ъ": "ъ",
|
|
1621
|
+
"↔": "↔",
|
|
1622
|
+
"⥈": "⥈",
|
|
1623
|
+
"↭": "↭",
|
|
1624
|
+
"ℏ": "ℏ",
|
|
1625
|
+
"ĥ": "ĥ",
|
|
1626
|
+
"♥": "♥",
|
|
1627
|
+
"♥": "♥",
|
|
1628
|
+
"…": "…",
|
|
1629
|
+
"⊹": "⊹",
|
|
1630
|
+
"𝔥": "𝔥",
|
|
1631
|
+
"⤥": "⤥",
|
|
1632
|
+
"⤦": "⤦",
|
|
1633
|
+
"⇿": "⇿",
|
|
1634
|
+
"∻": "∻",
|
|
1635
|
+
"↩": "↩",
|
|
1636
|
+
"↪": "↪",
|
|
1637
|
+
"𝕙": "𝕙",
|
|
1638
|
+
"―": "―",
|
|
1639
|
+
"𝒽": "𝒽",
|
|
1640
|
+
"ℏ": "ℏ",
|
|
1641
|
+
"ħ": "ħ",
|
|
1642
|
+
"⁃": "⁃",
|
|
1643
|
+
"‐": "‐",
|
|
1644
|
+
"í": "í",
|
|
1645
|
+
"í": "í",
|
|
1646
|
+
"⁣": "",
|
|
1647
|
+
"î": "î",
|
|
1648
|
+
"î": "î",
|
|
1649
|
+
"и": "и",
|
|
1650
|
+
"е": "е",
|
|
1651
|
+
"¡": "¡",
|
|
1652
|
+
"¡": "¡",
|
|
1653
|
+
"⇔": "⇔",
|
|
1654
|
+
"𝔦": "𝔦",
|
|
1655
|
+
"ì": "ì",
|
|
1656
|
+
"ì": "ì",
|
|
1657
|
+
"ⅈ": "ⅈ",
|
|
1658
|
+
"⨌": "⨌",
|
|
1659
|
+
"∭": "∭",
|
|
1660
|
+
"⧜": "⧜",
|
|
1661
|
+
"℩": "℩",
|
|
1662
|
+
"ij": "ij",
|
|
1663
|
+
"ī": "ī",
|
|
1664
|
+
"ℑ": "ℑ",
|
|
1665
|
+
"ℐ": "ℐ",
|
|
1666
|
+
"ℑ": "ℑ",
|
|
1667
|
+
"ı": "ı",
|
|
1668
|
+
"⊷": "⊷",
|
|
1669
|
+
"Ƶ": "Ƶ",
|
|
1670
|
+
"∈": "∈",
|
|
1671
|
+
"℅": "℅",
|
|
1672
|
+
"∞": "∞",
|
|
1673
|
+
"⧝": "⧝",
|
|
1674
|
+
"ı": "ı",
|
|
1675
|
+
"∫": "∫",
|
|
1676
|
+
"⊺": "⊺",
|
|
1677
|
+
"ℤ": "ℤ",
|
|
1678
|
+
"⊺": "⊺",
|
|
1679
|
+
"⨗": "⨗",
|
|
1680
|
+
"⨼": "⨼",
|
|
1681
|
+
"ё": "ё",
|
|
1682
|
+
"į": "į",
|
|
1683
|
+
"𝕚": "𝕚",
|
|
1684
|
+
"ι": "ι",
|
|
1685
|
+
"⨼": "⨼",
|
|
1686
|
+
"¿": "¿",
|
|
1687
|
+
"¿": "¿",
|
|
1688
|
+
"𝒾": "𝒾",
|
|
1689
|
+
"∈": "∈",
|
|
1690
|
+
"⋹": "⋹",
|
|
1691
|
+
"⋵": "⋵",
|
|
1692
|
+
"⋴": "⋴",
|
|
1693
|
+
"⋳": "⋳",
|
|
1694
|
+
"∈": "∈",
|
|
1695
|
+
"⁢": "",
|
|
1696
|
+
"ĩ": "ĩ",
|
|
1697
|
+
"і": "і",
|
|
1698
|
+
"ï": "ï",
|
|
1699
|
+
"ï": "ï",
|
|
1700
|
+
"ĵ": "ĵ",
|
|
1701
|
+
"й": "й",
|
|
1702
|
+
"𝔧": "𝔧",
|
|
1703
|
+
"ȷ": "ȷ",
|
|
1704
|
+
"𝕛": "𝕛",
|
|
1705
|
+
"𝒿": "𝒿",
|
|
1706
|
+
"ј": "ј",
|
|
1707
|
+
"є": "є",
|
|
1708
|
+
"κ": "κ",
|
|
1709
|
+
"ϰ": "ϰ",
|
|
1710
|
+
"ķ": "ķ",
|
|
1711
|
+
"к": "к",
|
|
1712
|
+
"𝔨": "𝔨",
|
|
1713
|
+
"ĸ": "ĸ",
|
|
1714
|
+
"х": "х",
|
|
1715
|
+
"ќ": "ќ",
|
|
1716
|
+
"𝕜": "𝕜",
|
|
1717
|
+
"𝓀": "𝓀",
|
|
1718
|
+
"⇚": "⇚",
|
|
1719
|
+
"⇐": "⇐",
|
|
1720
|
+
"⤛": "⤛",
|
|
1721
|
+
"⤎": "⤎",
|
|
1722
|
+
"≦": "≦",
|
|
1723
|
+
"⪋": "⪋",
|
|
1724
|
+
"⥢": "⥢",
|
|
1725
|
+
"ĺ": "ĺ",
|
|
1726
|
+
"⦴": "⦴",
|
|
1727
|
+
"ℒ": "ℒ",
|
|
1728
|
+
"λ": "λ",
|
|
1729
|
+
"⟨": "⟨",
|
|
1730
|
+
"⦑": "⦑",
|
|
1731
|
+
"⟨": "⟨",
|
|
1732
|
+
"⪅": "⪅",
|
|
1733
|
+
"«": "«",
|
|
1734
|
+
"«": "«",
|
|
1735
|
+
"←": "←",
|
|
1736
|
+
"⇤": "⇤",
|
|
1737
|
+
"⤟": "⤟",
|
|
1738
|
+
"⤝": "⤝",
|
|
1739
|
+
"↩": "↩",
|
|
1740
|
+
"↫": "↫",
|
|
1741
|
+
"⤹": "⤹",
|
|
1742
|
+
"⥳": "⥳",
|
|
1743
|
+
"↢": "↢",
|
|
1744
|
+
"⪫": "⪫",
|
|
1745
|
+
"⤙": "⤙",
|
|
1746
|
+
"⪭": "⪭",
|
|
1747
|
+
"⪭︀": "⪭︀",
|
|
1748
|
+
"⤌": "⤌",
|
|
1749
|
+
"❲": "❲",
|
|
1750
|
+
"{": "{",
|
|
1751
|
+
"[": "[",
|
|
1752
|
+
"⦋": "⦋",
|
|
1753
|
+
"⦏": "⦏",
|
|
1754
|
+
"⦍": "⦍",
|
|
1755
|
+
"ľ": "ľ",
|
|
1756
|
+
"ļ": "ļ",
|
|
1757
|
+
"⌈": "⌈",
|
|
1758
|
+
"{": "{",
|
|
1759
|
+
"л": "л",
|
|
1760
|
+
"⤶": "⤶",
|
|
1761
|
+
"“": "“",
|
|
1762
|
+
"„": "„",
|
|
1763
|
+
"⥧": "⥧",
|
|
1764
|
+
"⥋": "⥋",
|
|
1765
|
+
"↲": "↲",
|
|
1766
|
+
"≤": "≤",
|
|
1767
|
+
"←": "←",
|
|
1768
|
+
"↢": "↢",
|
|
1769
|
+
"↽": "↽",
|
|
1770
|
+
"↼": "↼",
|
|
1771
|
+
"⇇": "⇇",
|
|
1772
|
+
"↔": "↔",
|
|
1773
|
+
"⇆": "⇆",
|
|
1774
|
+
"⇋": "⇋",
|
|
1775
|
+
"↭": "↭",
|
|
1776
|
+
"⋋": "⋋",
|
|
1777
|
+
"⋚": "⋚",
|
|
1778
|
+
"≤": "≤",
|
|
1779
|
+
"≦": "≦",
|
|
1780
|
+
"⩽": "⩽",
|
|
1781
|
+
"⩽": "⩽",
|
|
1782
|
+
"⪨": "⪨",
|
|
1783
|
+
"⩿": "⩿",
|
|
1784
|
+
"⪁": "⪁",
|
|
1785
|
+
"⪃": "⪃",
|
|
1786
|
+
"⋚︀": "⋚︀",
|
|
1787
|
+
"⪓": "⪓",
|
|
1788
|
+
"⪅": "⪅",
|
|
1789
|
+
"⋖": "⋖",
|
|
1790
|
+
"⋚": "⋚",
|
|
1791
|
+
"⪋": "⪋",
|
|
1792
|
+
"≶": "≶",
|
|
1793
|
+
"≲": "≲",
|
|
1794
|
+
"⥼": "⥼",
|
|
1795
|
+
"⌊": "⌊",
|
|
1796
|
+
"𝔩": "𝔩",
|
|
1797
|
+
"≶": "≶",
|
|
1798
|
+
"⪑": "⪑",
|
|
1799
|
+
"↽": "↽",
|
|
1800
|
+
"↼": "↼",
|
|
1801
|
+
"⥪": "⥪",
|
|
1802
|
+
"▄": "▄",
|
|
1803
|
+
"љ": "љ",
|
|
1804
|
+
"≪": "≪",
|
|
1805
|
+
"⇇": "⇇",
|
|
1806
|
+
"⌞": "⌞",
|
|
1807
|
+
"⥫": "⥫",
|
|
1808
|
+
"◺": "◺",
|
|
1809
|
+
"ŀ": "ŀ",
|
|
1810
|
+
"⎰": "⎰",
|
|
1811
|
+
"⎰": "⎰",
|
|
1812
|
+
"≨": "≨",
|
|
1813
|
+
"⪉": "⪉",
|
|
1814
|
+
"⪉": "⪉",
|
|
1815
|
+
"⪇": "⪇",
|
|
1816
|
+
"⪇": "⪇",
|
|
1817
|
+
"≨": "≨",
|
|
1818
|
+
"⋦": "⋦",
|
|
1819
|
+
"⟬": "⟬",
|
|
1820
|
+
"⇽": "⇽",
|
|
1821
|
+
"⟦": "⟦",
|
|
1822
|
+
"⟵": "⟵",
|
|
1823
|
+
"⟷": "⟷",
|
|
1824
|
+
"⟼": "⟼",
|
|
1825
|
+
"⟶": "⟶",
|
|
1826
|
+
"↫": "↫",
|
|
1827
|
+
"↬": "↬",
|
|
1828
|
+
"⦅": "⦅",
|
|
1829
|
+
"𝕝": "𝕝",
|
|
1830
|
+
"⨭": "⨭",
|
|
1831
|
+
"⨴": "⨴",
|
|
1832
|
+
"∗": "∗",
|
|
1833
|
+
"_": "_",
|
|
1834
|
+
"◊": "◊",
|
|
1835
|
+
"◊": "◊",
|
|
1836
|
+
"⧫": "⧫",
|
|
1837
|
+
"(": "(",
|
|
1838
|
+
"⦓": "⦓",
|
|
1839
|
+
"⇆": "⇆",
|
|
1840
|
+
"⌟": "⌟",
|
|
1841
|
+
"⇋": "⇋",
|
|
1842
|
+
"⥭": "⥭",
|
|
1843
|
+
"‎": "",
|
|
1844
|
+
"⊿": "⊿",
|
|
1845
|
+
"‹": "‹",
|
|
1846
|
+
"𝓁": "𝓁",
|
|
1847
|
+
"↰": "↰",
|
|
1848
|
+
"≲": "≲",
|
|
1849
|
+
"⪍": "⪍",
|
|
1850
|
+
"⪏": "⪏",
|
|
1851
|
+
"[": "[",
|
|
1852
|
+
"‘": "‘",
|
|
1853
|
+
"‚": "‚",
|
|
1854
|
+
"ł": "ł",
|
|
1855
|
+
"<": "<",
|
|
1856
|
+
"<": "<",
|
|
1857
|
+
"⪦": "⪦",
|
|
1858
|
+
"⩹": "⩹",
|
|
1859
|
+
"⋖": "⋖",
|
|
1860
|
+
"⋋": "⋋",
|
|
1861
|
+
"⋉": "⋉",
|
|
1862
|
+
"⥶": "⥶",
|
|
1863
|
+
"⩻": "⩻",
|
|
1864
|
+
"⦖": "⦖",
|
|
1865
|
+
"◃": "◃",
|
|
1866
|
+
"⊴": "⊴",
|
|
1867
|
+
"◂": "◂",
|
|
1868
|
+
"⥊": "⥊",
|
|
1869
|
+
"⥦": "⥦",
|
|
1870
|
+
"≨︀": "≨︀",
|
|
1871
|
+
"≨︀": "≨︀",
|
|
1872
|
+
"∺": "∺",
|
|
1873
|
+
"¯": "¯",
|
|
1874
|
+
"¯": "¯",
|
|
1875
|
+
"♂": "♂",
|
|
1876
|
+
"✠": "✠",
|
|
1877
|
+
"✠": "✠",
|
|
1878
|
+
"↦": "↦",
|
|
1879
|
+
"↦": "↦",
|
|
1880
|
+
"↧": "↧",
|
|
1881
|
+
"↤": "↤",
|
|
1882
|
+
"↥": "↥",
|
|
1883
|
+
"▮": "▮",
|
|
1884
|
+
"⨩": "⨩",
|
|
1885
|
+
"м": "м",
|
|
1886
|
+
"—": "—",
|
|
1887
|
+
"∡": "∡",
|
|
1888
|
+
"𝔪": "𝔪",
|
|
1889
|
+
"℧": "℧",
|
|
1890
|
+
"µ": "µ",
|
|
1891
|
+
"µ": "µ",
|
|
1892
|
+
"∣": "∣",
|
|
1893
|
+
"*": "*",
|
|
1894
|
+
"⫰": "⫰",
|
|
1895
|
+
"·": "·",
|
|
1896
|
+
"·": "·",
|
|
1897
|
+
"−": "−",
|
|
1898
|
+
"⊟": "⊟",
|
|
1899
|
+
"∸": "∸",
|
|
1900
|
+
"⨪": "⨪",
|
|
1901
|
+
"⫛": "⫛",
|
|
1902
|
+
"…": "…",
|
|
1903
|
+
"∓": "∓",
|
|
1904
|
+
"⊧": "⊧",
|
|
1905
|
+
"𝕞": "𝕞",
|
|
1906
|
+
"∓": "∓",
|
|
1907
|
+
"𝓂": "𝓂",
|
|
1908
|
+
"∾": "∾",
|
|
1909
|
+
"μ": "μ",
|
|
1910
|
+
"⊸": "⊸",
|
|
1911
|
+
"⊸": "⊸",
|
|
1912
|
+
"⋙̸": "⋙̸",
|
|
1913
|
+
"≫⃒": "≫⃒",
|
|
1914
|
+
"≫̸": "≫̸",
|
|
1915
|
+
"⇍": "⇍",
|
|
1916
|
+
"⇎": "⇎",
|
|
1917
|
+
"⋘̸": "⋘̸",
|
|
1918
|
+
"≪⃒": "≪⃒",
|
|
1919
|
+
"≪̸": "≪̸",
|
|
1920
|
+
"⇏": "⇏",
|
|
1921
|
+
"⊯": "⊯",
|
|
1922
|
+
"⊮": "⊮",
|
|
1923
|
+
"∇": "∇",
|
|
1924
|
+
"ń": "ń",
|
|
1925
|
+
"∠⃒": "∠⃒",
|
|
1926
|
+
"≉": "≉",
|
|
1927
|
+
"⩰̸": "⩰̸",
|
|
1928
|
+
"≋̸": "≋̸",
|
|
1929
|
+
"ʼn": "ʼn",
|
|
1930
|
+
"≉": "≉",
|
|
1931
|
+
"♮": "♮",
|
|
1932
|
+
"♮": "♮",
|
|
1933
|
+
"ℕ": "ℕ",
|
|
1934
|
+
" ": " ",
|
|
1935
|
+
" ": " ",
|
|
1936
|
+
"≎̸": "≎̸",
|
|
1937
|
+
"≏̸": "≏̸",
|
|
1938
|
+
"⩃": "⩃",
|
|
1939
|
+
"ň": "ň",
|
|
1940
|
+
"ņ": "ņ",
|
|
1941
|
+
"≇": "≇",
|
|
1942
|
+
"⩭̸": "⩭̸",
|
|
1943
|
+
"⩂": "⩂",
|
|
1944
|
+
"н": "н",
|
|
1945
|
+
"–": "–",
|
|
1946
|
+
"≠": "≠",
|
|
1947
|
+
"⇗": "⇗",
|
|
1948
|
+
"⤤": "⤤",
|
|
1949
|
+
"↗": "↗",
|
|
1950
|
+
"↗": "↗",
|
|
1951
|
+
"≐̸": "≐̸",
|
|
1952
|
+
"≢": "≢",
|
|
1953
|
+
"⤨": "⤨",
|
|
1954
|
+
"≂̸": "≂̸",
|
|
1955
|
+
"∄": "∄",
|
|
1956
|
+
"∄": "∄",
|
|
1957
|
+
"𝔫": "𝔫",
|
|
1958
|
+
"≧̸": "≧̸",
|
|
1959
|
+
"≱": "≱",
|
|
1960
|
+
"≱": "≱",
|
|
1961
|
+
"≧̸": "≧̸",
|
|
1962
|
+
"⩾̸": "⩾̸",
|
|
1963
|
+
"⩾̸": "⩾̸",
|
|
1964
|
+
"≵": "≵",
|
|
1965
|
+
"≯": "≯",
|
|
1966
|
+
"≯": "≯",
|
|
1967
|
+
"⇎": "⇎",
|
|
1968
|
+
"↮": "↮",
|
|
1969
|
+
"⫲": "⫲",
|
|
1970
|
+
"∋": "∋",
|
|
1971
|
+
"⋼": "⋼",
|
|
1972
|
+
"⋺": "⋺",
|
|
1973
|
+
"∋": "∋",
|
|
1974
|
+
"њ": "њ",
|
|
1975
|
+
"⇍": "⇍",
|
|
1976
|
+
"≦̸": "≦̸",
|
|
1977
|
+
"↚": "↚",
|
|
1978
|
+
"‥": "‥",
|
|
1979
|
+
"≰": "≰",
|
|
1980
|
+
"↚": "↚",
|
|
1981
|
+
"↮": "↮",
|
|
1982
|
+
"≰": "≰",
|
|
1983
|
+
"≦̸": "≦̸",
|
|
1984
|
+
"⩽̸": "⩽̸",
|
|
1985
|
+
"⩽̸": "⩽̸",
|
|
1986
|
+
"≮": "≮",
|
|
1987
|
+
"≴": "≴",
|
|
1988
|
+
"≮": "≮",
|
|
1989
|
+
"⋪": "⋪",
|
|
1990
|
+
"⋬": "⋬",
|
|
1991
|
+
"∤": "∤",
|
|
1992
|
+
"𝕟": "𝕟",
|
|
1993
|
+
"¬": "¬",
|
|
1994
|
+
"¬": "¬",
|
|
1995
|
+
"∉": "∉",
|
|
1996
|
+
"⋹̸": "⋹̸",
|
|
1997
|
+
"⋵̸": "⋵̸",
|
|
1998
|
+
"∉": "∉",
|
|
1999
|
+
"⋷": "⋷",
|
|
2000
|
+
"⋶": "⋶",
|
|
2001
|
+
"∌": "∌",
|
|
2002
|
+
"∌": "∌",
|
|
2003
|
+
"⋾": "⋾",
|
|
2004
|
+
"⋽": "⋽",
|
|
2005
|
+
"∦": "∦",
|
|
2006
|
+
"∦": "∦",
|
|
2007
|
+
"⫽⃥": "⫽⃥",
|
|
2008
|
+
"∂̸": "∂̸",
|
|
2009
|
+
"⨔": "⨔",
|
|
2010
|
+
"⊀": "⊀",
|
|
2011
|
+
"⋠": "⋠",
|
|
2012
|
+
"⪯̸": "⪯̸",
|
|
2013
|
+
"⊀": "⊀",
|
|
2014
|
+
"⪯̸": "⪯̸",
|
|
2015
|
+
"⇏": "⇏",
|
|
2016
|
+
"↛": "↛",
|
|
2017
|
+
"⤳̸": "⤳̸",
|
|
2018
|
+
"↝̸": "↝̸",
|
|
2019
|
+
"↛": "↛",
|
|
2020
|
+
"⋫": "⋫",
|
|
2021
|
+
"⋭": "⋭",
|
|
2022
|
+
"⊁": "⊁",
|
|
2023
|
+
"⋡": "⋡",
|
|
2024
|
+
"⪰̸": "⪰̸",
|
|
2025
|
+
"𝓃": "𝓃",
|
|
2026
|
+
"∤": "∤",
|
|
2027
|
+
"∦": "∦",
|
|
2028
|
+
"≁": "≁",
|
|
2029
|
+
"≄": "≄",
|
|
2030
|
+
"≄": "≄",
|
|
2031
|
+
"∤": "∤",
|
|
2032
|
+
"∦": "∦",
|
|
2033
|
+
"⋢": "⋢",
|
|
2034
|
+
"⋣": "⋣",
|
|
2035
|
+
"⊄": "⊄",
|
|
2036
|
+
"⫅̸": "⫅̸",
|
|
2037
|
+
"⊈": "⊈",
|
|
2038
|
+
"⊂⃒": "⊂⃒",
|
|
2039
|
+
"⊈": "⊈",
|
|
2040
|
+
"⫅̸": "⫅̸",
|
|
2041
|
+
"⊁": "⊁",
|
|
2042
|
+
"⪰̸": "⪰̸",
|
|
2043
|
+
"⊅": "⊅",
|
|
2044
|
+
"⫆̸": "⫆̸",
|
|
2045
|
+
"⊉": "⊉",
|
|
2046
|
+
"⊃⃒": "⊃⃒",
|
|
2047
|
+
"⊉": "⊉",
|
|
2048
|
+
"⫆̸": "⫆̸",
|
|
2049
|
+
"≹": "≹",
|
|
2050
|
+
"ñ": "ñ",
|
|
2051
|
+
"ñ": "ñ",
|
|
2052
|
+
"≸": "≸",
|
|
2053
|
+
"⋪": "⋪",
|
|
2054
|
+
"⋬": "⋬",
|
|
2055
|
+
"⋫": "⋫",
|
|
2056
|
+
"⋭": "⋭",
|
|
2057
|
+
"ν": "ν",
|
|
2058
|
+
"#": "#",
|
|
2059
|
+
"№": "№",
|
|
2060
|
+
" ": " ",
|
|
2061
|
+
"⊭": "⊭",
|
|
2062
|
+
"⤄": "⤄",
|
|
2063
|
+
"≍⃒": "≍⃒",
|
|
2064
|
+
"⊬": "⊬",
|
|
2065
|
+
"≥⃒": "≥⃒",
|
|
2066
|
+
">⃒": ">⃒",
|
|
2067
|
+
"⧞": "⧞",
|
|
2068
|
+
"⤂": "⤂",
|
|
2069
|
+
"≤⃒": "≤⃒",
|
|
2070
|
+
"<⃒": "<⃒",
|
|
2071
|
+
"⊴⃒": "⊴⃒",
|
|
2072
|
+
"⤃": "⤃",
|
|
2073
|
+
"⊵⃒": "⊵⃒",
|
|
2074
|
+
"∼⃒": "∼⃒",
|
|
2075
|
+
"⇖": "⇖",
|
|
2076
|
+
"⤣": "⤣",
|
|
2077
|
+
"↖": "↖",
|
|
2078
|
+
"↖": "↖",
|
|
2079
|
+
"⤧": "⤧",
|
|
2080
|
+
"Ⓢ": "Ⓢ",
|
|
2081
|
+
"ó": "ó",
|
|
2082
|
+
"ó": "ó",
|
|
2083
|
+
"⊛": "⊛",
|
|
2084
|
+
"⊚": "⊚",
|
|
2085
|
+
"ô": "ô",
|
|
2086
|
+
"ô": "ô",
|
|
2087
|
+
"о": "о",
|
|
2088
|
+
"⊝": "⊝",
|
|
2089
|
+
"ő": "ő",
|
|
2090
|
+
"⨸": "⨸",
|
|
2091
|
+
"⊙": "⊙",
|
|
2092
|
+
"⦼": "⦼",
|
|
2093
|
+
"œ": "œ",
|
|
2094
|
+
"⦿": "⦿",
|
|
2095
|
+
"𝔬": "𝔬",
|
|
2096
|
+
"˛": "˛",
|
|
2097
|
+
"ò": "ò",
|
|
2098
|
+
"ò": "ò",
|
|
2099
|
+
"⧁": "⧁",
|
|
2100
|
+
"⦵": "⦵",
|
|
2101
|
+
"Ω": "Ω",
|
|
2102
|
+
"∮": "∮",
|
|
2103
|
+
"↺": "↺",
|
|
2104
|
+
"⦾": "⦾",
|
|
2105
|
+
"⦻": "⦻",
|
|
2106
|
+
"‾": "‾",
|
|
2107
|
+
"⧀": "⧀",
|
|
2108
|
+
"ō": "ō",
|
|
2109
|
+
"ω": "ω",
|
|
2110
|
+
"ο": "ο",
|
|
2111
|
+
"⦶": "⦶",
|
|
2112
|
+
"⊖": "⊖",
|
|
2113
|
+
"𝕠": "𝕠",
|
|
2114
|
+
"⦷": "⦷",
|
|
2115
|
+
"⦹": "⦹",
|
|
2116
|
+
"⊕": "⊕",
|
|
2117
|
+
"∨": "∨",
|
|
2118
|
+
"↻": "↻",
|
|
2119
|
+
"⩝": "⩝",
|
|
2120
|
+
"ℴ": "ℴ",
|
|
2121
|
+
"ℴ": "ℴ",
|
|
2122
|
+
"ª": "ª",
|
|
2123
|
+
"ª": "ª",
|
|
2124
|
+
"º": "º",
|
|
2125
|
+
"º": "º",
|
|
2126
|
+
"⊶": "⊶",
|
|
2127
|
+
"⩖": "⩖",
|
|
2128
|
+
"⩗": "⩗",
|
|
2129
|
+
"⩛": "⩛",
|
|
2130
|
+
"ℴ": "ℴ",
|
|
2131
|
+
"ø": "ø",
|
|
2132
|
+
"ø": "ø",
|
|
2133
|
+
"⊘": "⊘",
|
|
2134
|
+
"õ": "õ",
|
|
2135
|
+
"õ": "õ",
|
|
2136
|
+
"⊗": "⊗",
|
|
2137
|
+
"⨶": "⨶",
|
|
2138
|
+
"ö": "ö",
|
|
2139
|
+
"ö": "ö",
|
|
2140
|
+
"⌽": "⌽",
|
|
2141
|
+
"∥": "∥",
|
|
2142
|
+
"¶": "¶",
|
|
2143
|
+
"¶": "¶",
|
|
2144
|
+
"∥": "∥",
|
|
2145
|
+
"⫳": "⫳",
|
|
2146
|
+
"⫽": "⫽",
|
|
2147
|
+
"∂": "∂",
|
|
2148
|
+
"п": "п",
|
|
2149
|
+
"%": "%",
|
|
2150
|
+
".": ".",
|
|
2151
|
+
"‰": "‰",
|
|
2152
|
+
"⊥": "⊥",
|
|
2153
|
+
"‱": "‱",
|
|
2154
|
+
"𝔭": "𝔭",
|
|
2155
|
+
"φ": "φ",
|
|
2156
|
+
"ϕ": "ϕ",
|
|
2157
|
+
"ℳ": "ℳ",
|
|
2158
|
+
"☎": "☎",
|
|
2159
|
+
"π": "π",
|
|
2160
|
+
"⋔": "⋔",
|
|
2161
|
+
"ϖ": "ϖ",
|
|
2162
|
+
"ℏ": "ℏ",
|
|
2163
|
+
"ℎ": "ℎ",
|
|
2164
|
+
"ℏ": "ℏ",
|
|
2165
|
+
"+": "+",
|
|
2166
|
+
"⨣": "⨣",
|
|
2167
|
+
"⊞": "⊞",
|
|
2168
|
+
"⨢": "⨢",
|
|
2169
|
+
"∔": "∔",
|
|
2170
|
+
"⨥": "⨥",
|
|
2171
|
+
"⩲": "⩲",
|
|
2172
|
+
"±": "±",
|
|
2173
|
+
"±": "±",
|
|
2174
|
+
"⨦": "⨦",
|
|
2175
|
+
"⨧": "⨧",
|
|
2176
|
+
"±": "±",
|
|
2177
|
+
"⨕": "⨕",
|
|
2178
|
+
"𝕡": "𝕡",
|
|
2179
|
+
"£": "£",
|
|
2180
|
+
"£": "£",
|
|
2181
|
+
"≺": "≺",
|
|
2182
|
+
"⪳": "⪳",
|
|
2183
|
+
"⪷": "⪷",
|
|
2184
|
+
"≼": "≼",
|
|
2185
|
+
"⪯": "⪯",
|
|
2186
|
+
"≺": "≺",
|
|
2187
|
+
"⪷": "⪷",
|
|
2188
|
+
"≼": "≼",
|
|
2189
|
+
"⪯": "⪯",
|
|
2190
|
+
"⪹": "⪹",
|
|
2191
|
+
"⪵": "⪵",
|
|
2192
|
+
"⋨": "⋨",
|
|
2193
|
+
"≾": "≾",
|
|
2194
|
+
"′": "′",
|
|
2195
|
+
"ℙ": "ℙ",
|
|
2196
|
+
"⪵": "⪵",
|
|
2197
|
+
"⪹": "⪹",
|
|
2198
|
+
"⋨": "⋨",
|
|
2199
|
+
"∏": "∏",
|
|
2200
|
+
"⌮": "⌮",
|
|
2201
|
+
"⌒": "⌒",
|
|
2202
|
+
"⌓": "⌓",
|
|
2203
|
+
"∝": "∝",
|
|
2204
|
+
"∝": "∝",
|
|
2205
|
+
"≾": "≾",
|
|
2206
|
+
"⊰": "⊰",
|
|
2207
|
+
"𝓅": "𝓅",
|
|
2208
|
+
"ψ": "ψ",
|
|
2209
|
+
" ": " ",
|
|
2210
|
+
"𝔮": "𝔮",
|
|
2211
|
+
"⨌": "⨌",
|
|
2212
|
+
"𝕢": "𝕢",
|
|
2213
|
+
"⁗": "⁗",
|
|
2214
|
+
"𝓆": "𝓆",
|
|
2215
|
+
"ℍ": "ℍ",
|
|
2216
|
+
"⨖": "⨖",
|
|
2217
|
+
"?": "?",
|
|
2218
|
+
"≟": "≟",
|
|
2219
|
+
""": '"',
|
|
2220
|
+
""": '"',
|
|
2221
|
+
"⇛": "⇛",
|
|
2222
|
+
"⇒": "⇒",
|
|
2223
|
+
"⤜": "⤜",
|
|
2224
|
+
"⤏": "⤏",
|
|
2225
|
+
"⥤": "⥤",
|
|
2226
|
+
"∽̱": "∽̱",
|
|
2227
|
+
"ŕ": "ŕ",
|
|
2228
|
+
"√": "√",
|
|
2229
|
+
"⦳": "⦳",
|
|
2230
|
+
"⟩": "⟩",
|
|
2231
|
+
"⦒": "⦒",
|
|
2232
|
+
"⦥": "⦥",
|
|
2233
|
+
"⟩": "⟩",
|
|
2234
|
+
"»": "»",
|
|
2235
|
+
"»": "»",
|
|
2236
|
+
"→": "→",
|
|
2237
|
+
"⥵": "⥵",
|
|
2238
|
+
"⇥": "⇥",
|
|
2239
|
+
"⤠": "⤠",
|
|
2240
|
+
"⤳": "⤳",
|
|
2241
|
+
"⤞": "⤞",
|
|
2242
|
+
"↪": "↪",
|
|
2243
|
+
"↬": "↬",
|
|
2244
|
+
"⥅": "⥅",
|
|
2245
|
+
"⥴": "⥴",
|
|
2246
|
+
"↣": "↣",
|
|
2247
|
+
"↝": "↝",
|
|
2248
|
+
"⤚": "⤚",
|
|
2249
|
+
"∶": "∶",
|
|
2250
|
+
"ℚ": "ℚ",
|
|
2251
|
+
"⤍": "⤍",
|
|
2252
|
+
"❳": "❳",
|
|
2253
|
+
"}": "}",
|
|
2254
|
+
"]": "]",
|
|
2255
|
+
"⦌": "⦌",
|
|
2256
|
+
"⦎": "⦎",
|
|
2257
|
+
"⦐": "⦐",
|
|
2258
|
+
"ř": "ř",
|
|
2259
|
+
"ŗ": "ŗ",
|
|
2260
|
+
"⌉": "⌉",
|
|
2261
|
+
"}": "}",
|
|
2262
|
+
"р": "р",
|
|
2263
|
+
"⤷": "⤷",
|
|
2264
|
+
"⥩": "⥩",
|
|
2265
|
+
"”": "”",
|
|
2266
|
+
"”": "”",
|
|
2267
|
+
"↳": "↳",
|
|
2268
|
+
"ℜ": "ℜ",
|
|
2269
|
+
"ℛ": "ℛ",
|
|
2270
|
+
"ℜ": "ℜ",
|
|
2271
|
+
"ℝ": "ℝ",
|
|
2272
|
+
"▭": "▭",
|
|
2273
|
+
"®": "®",
|
|
2274
|
+
"®": "®",
|
|
2275
|
+
"⥽": "⥽",
|
|
2276
|
+
"⌋": "⌋",
|
|
2277
|
+
"𝔯": "𝔯",
|
|
2278
|
+
"⇁": "⇁",
|
|
2279
|
+
"⇀": "⇀",
|
|
2280
|
+
"⥬": "⥬",
|
|
2281
|
+
"ρ": "ρ",
|
|
2282
|
+
"ϱ": "ϱ",
|
|
2283
|
+
"→": "→",
|
|
2284
|
+
"↣": "↣",
|
|
2285
|
+
"⇁": "⇁",
|
|
2286
|
+
"⇀": "⇀",
|
|
2287
|
+
"⇄": "⇄",
|
|
2288
|
+
"⇌": "⇌",
|
|
2289
|
+
"⇉": "⇉",
|
|
2290
|
+
"↝": "↝",
|
|
2291
|
+
"⋌": "⋌",
|
|
2292
|
+
"˚": "˚",
|
|
2293
|
+
"≓": "≓",
|
|
2294
|
+
"⇄": "⇄",
|
|
2295
|
+
"⇌": "⇌",
|
|
2296
|
+
"‏": "",
|
|
2297
|
+
"⎱": "⎱",
|
|
2298
|
+
"⎱": "⎱",
|
|
2299
|
+
"⫮": "⫮",
|
|
2300
|
+
"⟭": "⟭",
|
|
2301
|
+
"⇾": "⇾",
|
|
2302
|
+
"⟧": "⟧",
|
|
2303
|
+
"⦆": "⦆",
|
|
2304
|
+
"𝕣": "𝕣",
|
|
2305
|
+
"⨮": "⨮",
|
|
2306
|
+
"⨵": "⨵",
|
|
2307
|
+
")": ")",
|
|
2308
|
+
"⦔": "⦔",
|
|
2309
|
+
"⨒": "⨒",
|
|
2310
|
+
"⇉": "⇉",
|
|
2311
|
+
"›": "›",
|
|
2312
|
+
"𝓇": "𝓇",
|
|
2313
|
+
"↱": "↱",
|
|
2314
|
+
"]": "]",
|
|
2315
|
+
"’": "’",
|
|
2316
|
+
"’": "’",
|
|
2317
|
+
"⋌": "⋌",
|
|
2318
|
+
"⋊": "⋊",
|
|
2319
|
+
"▹": "▹",
|
|
2320
|
+
"⊵": "⊵",
|
|
2321
|
+
"▸": "▸",
|
|
2322
|
+
"⧎": "⧎",
|
|
2323
|
+
"⥨": "⥨",
|
|
2324
|
+
"℞": "℞",
|
|
2325
|
+
"ś": "ś",
|
|
2326
|
+
"‚": "‚",
|
|
2327
|
+
"≻": "≻",
|
|
2328
|
+
"⪴": "⪴",
|
|
2329
|
+
"⪸": "⪸",
|
|
2330
|
+
"š": "š",
|
|
2331
|
+
"≽": "≽",
|
|
2332
|
+
"⪰": "⪰",
|
|
2333
|
+
"ş": "ş",
|
|
2334
|
+
"ŝ": "ŝ",
|
|
2335
|
+
"⪶": "⪶",
|
|
2336
|
+
"⪺": "⪺",
|
|
2337
|
+
"⋩": "⋩",
|
|
2338
|
+
"⨓": "⨓",
|
|
2339
|
+
"≿": "≿",
|
|
2340
|
+
"с": "с",
|
|
2341
|
+
"⋅": "⋅",
|
|
2342
|
+
"⊡": "⊡",
|
|
2343
|
+
"⩦": "⩦",
|
|
2344
|
+
"⇘": "⇘",
|
|
2345
|
+
"⤥": "⤥",
|
|
2346
|
+
"↘": "↘",
|
|
2347
|
+
"↘": "↘",
|
|
2348
|
+
"§": "§",
|
|
2349
|
+
"§": "§",
|
|
2350
|
+
";": ";",
|
|
2351
|
+
"⤩": "⤩",
|
|
2352
|
+
"∖": "∖",
|
|
2353
|
+
"∖": "∖",
|
|
2354
|
+
"✶": "✶",
|
|
2355
|
+
"𝔰": "𝔰",
|
|
2356
|
+
"⌢": "⌢",
|
|
2357
|
+
"♯": "♯",
|
|
2358
|
+
"щ": "щ",
|
|
2359
|
+
"ш": "ш",
|
|
2360
|
+
"∣": "∣",
|
|
2361
|
+
"∥": "∥",
|
|
2362
|
+
"­": "",
|
|
2363
|
+
"­": "",
|
|
2364
|
+
"σ": "σ",
|
|
2365
|
+
"ς": "ς",
|
|
2366
|
+
"ς": "ς",
|
|
2367
|
+
"∼": "∼",
|
|
2368
|
+
"⩪": "⩪",
|
|
2369
|
+
"≃": "≃",
|
|
2370
|
+
"≃": "≃",
|
|
2371
|
+
"⪞": "⪞",
|
|
2372
|
+
"⪠": "⪠",
|
|
2373
|
+
"⪝": "⪝",
|
|
2374
|
+
"⪟": "⪟",
|
|
2375
|
+
"≆": "≆",
|
|
2376
|
+
"⨤": "⨤",
|
|
2377
|
+
"⥲": "⥲",
|
|
2378
|
+
"←": "←",
|
|
2379
|
+
"∖": "∖",
|
|
2380
|
+
"⨳": "⨳",
|
|
2381
|
+
"⧤": "⧤",
|
|
2382
|
+
"∣": "∣",
|
|
2383
|
+
"⌣": "⌣",
|
|
2384
|
+
"⪪": "⪪",
|
|
2385
|
+
"⪬": "⪬",
|
|
2386
|
+
"⪬︀": "⪬︀",
|
|
2387
|
+
"ь": "ь",
|
|
2388
|
+
"/": "/",
|
|
2389
|
+
"⧄": "⧄",
|
|
2390
|
+
"⌿": "⌿",
|
|
2391
|
+
"𝕤": "𝕤",
|
|
2392
|
+
"♠": "♠",
|
|
2393
|
+
"♠": "♠",
|
|
2394
|
+
"∥": "∥",
|
|
2395
|
+
"⊓": "⊓",
|
|
2396
|
+
"⊓︀": "⊓︀",
|
|
2397
|
+
"⊔": "⊔",
|
|
2398
|
+
"⊔︀": "⊔︀",
|
|
2399
|
+
"⊏": "⊏",
|
|
2400
|
+
"⊑": "⊑",
|
|
2401
|
+
"⊏": "⊏",
|
|
2402
|
+
"⊑": "⊑",
|
|
2403
|
+
"⊐": "⊐",
|
|
2404
|
+
"⊒": "⊒",
|
|
2405
|
+
"⊐": "⊐",
|
|
2406
|
+
"⊒": "⊒",
|
|
2407
|
+
"□": "□",
|
|
2408
|
+
"□": "□",
|
|
2409
|
+
"▪": "▪",
|
|
2410
|
+
"▪": "▪",
|
|
2411
|
+
"→": "→",
|
|
2412
|
+
"𝓈": "𝓈",
|
|
2413
|
+
"∖": "∖",
|
|
2414
|
+
"⌣": "⌣",
|
|
2415
|
+
"⋆": "⋆",
|
|
2416
|
+
"☆": "☆",
|
|
2417
|
+
"★": "★",
|
|
2418
|
+
"ϵ": "ϵ",
|
|
2419
|
+
"ϕ": "ϕ",
|
|
2420
|
+
"¯": "¯",
|
|
2421
|
+
"⊂": "⊂",
|
|
2422
|
+
"⫅": "⫅",
|
|
2423
|
+
"⪽": "⪽",
|
|
2424
|
+
"⊆": "⊆",
|
|
2425
|
+
"⫃": "⫃",
|
|
2426
|
+
"⫁": "⫁",
|
|
2427
|
+
"⫋": "⫋",
|
|
2428
|
+
"⊊": "⊊",
|
|
2429
|
+
"⪿": "⪿",
|
|
2430
|
+
"⥹": "⥹",
|
|
2431
|
+
"⊂": "⊂",
|
|
2432
|
+
"⊆": "⊆",
|
|
2433
|
+
"⫅": "⫅",
|
|
2434
|
+
"⊊": "⊊",
|
|
2435
|
+
"⫋": "⫋",
|
|
2436
|
+
"⫇": "⫇",
|
|
2437
|
+
"⫕": "⫕",
|
|
2438
|
+
"⫓": "⫓",
|
|
2439
|
+
"≻": "≻",
|
|
2440
|
+
"⪸": "⪸",
|
|
2441
|
+
"≽": "≽",
|
|
2442
|
+
"⪰": "⪰",
|
|
2443
|
+
"⪺": "⪺",
|
|
2444
|
+
"⪶": "⪶",
|
|
2445
|
+
"⋩": "⋩",
|
|
2446
|
+
"≿": "≿",
|
|
2447
|
+
"∑": "∑",
|
|
2448
|
+
"♪": "♪",
|
|
2449
|
+
"¹": "¹",
|
|
2450
|
+
"¹": "¹",
|
|
2451
|
+
"²": "²",
|
|
2452
|
+
"²": "²",
|
|
2453
|
+
"³": "³",
|
|
2454
|
+
"³": "³",
|
|
2455
|
+
"⊃": "⊃",
|
|
2456
|
+
"⫆": "⫆",
|
|
2457
|
+
"⪾": "⪾",
|
|
2458
|
+
"⫘": "⫘",
|
|
2459
|
+
"⊇": "⊇",
|
|
2460
|
+
"⫄": "⫄",
|
|
2461
|
+
"⟉": "⟉",
|
|
2462
|
+
"⫗": "⫗",
|
|
2463
|
+
"⥻": "⥻",
|
|
2464
|
+
"⫂": "⫂",
|
|
2465
|
+
"⫌": "⫌",
|
|
2466
|
+
"⊋": "⊋",
|
|
2467
|
+
"⫀": "⫀",
|
|
2468
|
+
"⊃": "⊃",
|
|
2469
|
+
"⊇": "⊇",
|
|
2470
|
+
"⫆": "⫆",
|
|
2471
|
+
"⊋": "⊋",
|
|
2472
|
+
"⫌": "⫌",
|
|
2473
|
+
"⫈": "⫈",
|
|
2474
|
+
"⫔": "⫔",
|
|
2475
|
+
"⫖": "⫖",
|
|
2476
|
+
"⇙": "⇙",
|
|
2477
|
+
"⤦": "⤦",
|
|
2478
|
+
"↙": "↙",
|
|
2479
|
+
"↙": "↙",
|
|
2480
|
+
"⤪": "⤪",
|
|
2481
|
+
"ß": "ß",
|
|
2482
|
+
"ß": "ß",
|
|
2483
|
+
"⌖": "⌖",
|
|
2484
|
+
"τ": "τ",
|
|
2485
|
+
"⎴": "⎴",
|
|
2486
|
+
"ť": "ť",
|
|
2487
|
+
"ţ": "ţ",
|
|
2488
|
+
"т": "т",
|
|
2489
|
+
"⃛": "⃛",
|
|
2490
|
+
"⌕": "⌕",
|
|
2491
|
+
"𝔱": "𝔱",
|
|
2492
|
+
"∴": "∴",
|
|
2493
|
+
"∴": "∴",
|
|
2494
|
+
"θ": "θ",
|
|
2495
|
+
"ϑ": "ϑ",
|
|
2496
|
+
"ϑ": "ϑ",
|
|
2497
|
+
"≈": "≈",
|
|
2498
|
+
"∼": "∼",
|
|
2499
|
+
" ": " ",
|
|
2500
|
+
"≈": "≈",
|
|
2501
|
+
"∼": "∼",
|
|
2502
|
+
"þ": "þ",
|
|
2503
|
+
"þ": "þ",
|
|
2504
|
+
"˜": "˜",
|
|
2505
|
+
"×": "×",
|
|
2506
|
+
"×": "×",
|
|
2507
|
+
"⊠": "⊠",
|
|
2508
|
+
"⨱": "⨱",
|
|
2509
|
+
"⨰": "⨰",
|
|
2510
|
+
"∭": "∭",
|
|
2511
|
+
"⤨": "⤨",
|
|
2512
|
+
"⊤": "⊤",
|
|
2513
|
+
"⌶": "⌶",
|
|
2514
|
+
"⫱": "⫱",
|
|
2515
|
+
"𝕥": "𝕥",
|
|
2516
|
+
"⫚": "⫚",
|
|
2517
|
+
"⤩": "⤩",
|
|
2518
|
+
"‴": "‴",
|
|
2519
|
+
"™": "™",
|
|
2520
|
+
"▵": "▵",
|
|
2521
|
+
"▿": "▿",
|
|
2522
|
+
"◃": "◃",
|
|
2523
|
+
"⊴": "⊴",
|
|
2524
|
+
"≜": "≜",
|
|
2525
|
+
"▹": "▹",
|
|
2526
|
+
"⊵": "⊵",
|
|
2527
|
+
"◬": "◬",
|
|
2528
|
+
"≜": "≜",
|
|
2529
|
+
"⨺": "⨺",
|
|
2530
|
+
"⨹": "⨹",
|
|
2531
|
+
"⧍": "⧍",
|
|
2532
|
+
"⨻": "⨻",
|
|
2533
|
+
"⏢": "⏢",
|
|
2534
|
+
"𝓉": "𝓉",
|
|
2535
|
+
"ц": "ц",
|
|
2536
|
+
"ћ": "ћ",
|
|
2537
|
+
"ŧ": "ŧ",
|
|
2538
|
+
"≬": "≬",
|
|
2539
|
+
"↞": "↞",
|
|
2540
|
+
"↠": "↠",
|
|
2541
|
+
"⇑": "⇑",
|
|
2542
|
+
"⥣": "⥣",
|
|
2543
|
+
"ú": "ú",
|
|
2544
|
+
"ú": "ú",
|
|
2545
|
+
"↑": "↑",
|
|
2546
|
+
"ў": "ў",
|
|
2547
|
+
"ŭ": "ŭ",
|
|
2548
|
+
"û": "û",
|
|
2549
|
+
"û": "û",
|
|
2550
|
+
"у": "у",
|
|
2551
|
+
"⇅": "⇅",
|
|
2552
|
+
"ű": "ű",
|
|
2553
|
+
"⥮": "⥮",
|
|
2554
|
+
"⥾": "⥾",
|
|
2555
|
+
"𝔲": "𝔲",
|
|
2556
|
+
"ù": "ù",
|
|
2557
|
+
"ù": "ù",
|
|
2558
|
+
"↿": "↿",
|
|
2559
|
+
"↾": "↾",
|
|
2560
|
+
"▀": "▀",
|
|
2561
|
+
"⌜": "⌜",
|
|
2562
|
+
"⌜": "⌜",
|
|
2563
|
+
"⌏": "⌏",
|
|
2564
|
+
"◸": "◸",
|
|
2565
|
+
"ū": "ū",
|
|
2566
|
+
"¨": "¨",
|
|
2567
|
+
"¨": "¨",
|
|
2568
|
+
"ų": "ų",
|
|
2569
|
+
"𝕦": "𝕦",
|
|
2570
|
+
"↑": "↑",
|
|
2571
|
+
"↕": "↕",
|
|
2572
|
+
"↿": "↿",
|
|
2573
|
+
"↾": "↾",
|
|
2574
|
+
"⊎": "⊎",
|
|
2575
|
+
"υ": "υ",
|
|
2576
|
+
"ϒ": "ϒ",
|
|
2577
|
+
"υ": "υ",
|
|
2578
|
+
"⇈": "⇈",
|
|
2579
|
+
"⌝": "⌝",
|
|
2580
|
+
"⌝": "⌝",
|
|
2581
|
+
"⌎": "⌎",
|
|
2582
|
+
"ů": "ů",
|
|
2583
|
+
"◹": "◹",
|
|
2584
|
+
"𝓊": "𝓊",
|
|
2585
|
+
"⋰": "⋰",
|
|
2586
|
+
"ũ": "ũ",
|
|
2587
|
+
"▵": "▵",
|
|
2588
|
+
"▴": "▴",
|
|
2589
|
+
"⇈": "⇈",
|
|
2590
|
+
"ü": "ü",
|
|
2591
|
+
"ü": "ü",
|
|
2592
|
+
"⦧": "⦧",
|
|
2593
|
+
"⇕": "⇕",
|
|
2594
|
+
"⫨": "⫨",
|
|
2595
|
+
"⫩": "⫩",
|
|
2596
|
+
"⊨": "⊨",
|
|
2597
|
+
"⦜": "⦜",
|
|
2598
|
+
"ϵ": "ϵ",
|
|
2599
|
+
"ϰ": "ϰ",
|
|
2600
|
+
"∅": "∅",
|
|
2601
|
+
"ϕ": "ϕ",
|
|
2602
|
+
"ϖ": "ϖ",
|
|
2603
|
+
"∝": "∝",
|
|
2604
|
+
"↕": "↕",
|
|
2605
|
+
"ϱ": "ϱ",
|
|
2606
|
+
"ς": "ς",
|
|
2607
|
+
"⊊︀": "⊊︀",
|
|
2608
|
+
"⫋︀": "⫋︀",
|
|
2609
|
+
"⊋︀": "⊋︀",
|
|
2610
|
+
"⫌︀": "⫌︀",
|
|
2611
|
+
"ϑ": "ϑ",
|
|
2612
|
+
"⊲": "⊲",
|
|
2613
|
+
"⊳": "⊳",
|
|
2614
|
+
"в": "в",
|
|
2615
|
+
"⊢": "⊢",
|
|
2616
|
+
"∨": "∨",
|
|
2617
|
+
"⊻": "⊻",
|
|
2618
|
+
"≚": "≚",
|
|
2619
|
+
"⋮": "⋮",
|
|
2620
|
+
"|": "|",
|
|
2621
|
+
"|": "|",
|
|
2622
|
+
"𝔳": "𝔳",
|
|
2623
|
+
"⊲": "⊲",
|
|
2624
|
+
"⊂⃒": "⊂⃒",
|
|
2625
|
+
"⊃⃒": "⊃⃒",
|
|
2626
|
+
"𝕧": "𝕧",
|
|
2627
|
+
"∝": "∝",
|
|
2628
|
+
"⊳": "⊳",
|
|
2629
|
+
"𝓋": "𝓋",
|
|
2630
|
+
"⫋︀": "⫋︀",
|
|
2631
|
+
"⊊︀": "⊊︀",
|
|
2632
|
+
"⫌︀": "⫌︀",
|
|
2633
|
+
"⊋︀": "⊋︀",
|
|
2634
|
+
"⦚": "⦚",
|
|
2635
|
+
"ŵ": "ŵ",
|
|
2636
|
+
"⩟": "⩟",
|
|
2637
|
+
"∧": "∧",
|
|
2638
|
+
"≙": "≙",
|
|
2639
|
+
"℘": "℘",
|
|
2640
|
+
"𝔴": "𝔴",
|
|
2641
|
+
"𝕨": "𝕨",
|
|
2642
|
+
"℘": "℘",
|
|
2643
|
+
"≀": "≀",
|
|
2644
|
+
"≀": "≀",
|
|
2645
|
+
"𝓌": "𝓌",
|
|
2646
|
+
"⋂": "⋂",
|
|
2647
|
+
"◯": "◯",
|
|
2648
|
+
"⋃": "⋃",
|
|
2649
|
+
"▽": "▽",
|
|
2650
|
+
"𝔵": "𝔵",
|
|
2651
|
+
"⟺": "⟺",
|
|
2652
|
+
"⟷": "⟷",
|
|
2653
|
+
"ξ": "ξ",
|
|
2654
|
+
"⟸": "⟸",
|
|
2655
|
+
"⟵": "⟵",
|
|
2656
|
+
"⟼": "⟼",
|
|
2657
|
+
"⋻": "⋻",
|
|
2658
|
+
"⨀": "⨀",
|
|
2659
|
+
"𝕩": "𝕩",
|
|
2660
|
+
"⨁": "⨁",
|
|
2661
|
+
"⨂": "⨂",
|
|
2662
|
+
"⟹": "⟹",
|
|
2663
|
+
"⟶": "⟶",
|
|
2664
|
+
"𝓍": "𝓍",
|
|
2665
|
+
"⨆": "⨆",
|
|
2666
|
+
"⨄": "⨄",
|
|
2667
|
+
"△": "△",
|
|
2668
|
+
"⋁": "⋁",
|
|
2669
|
+
"⋀": "⋀",
|
|
2670
|
+
"ý": "ý",
|
|
2671
|
+
"ý": "ý",
|
|
2672
|
+
"я": "я",
|
|
2673
|
+
"ŷ": "ŷ",
|
|
2674
|
+
"ы": "ы",
|
|
2675
|
+
"¥": "¥",
|
|
2676
|
+
"¥": "¥",
|
|
2677
|
+
"𝔶": "𝔶",
|
|
2678
|
+
"ї": "ї",
|
|
2679
|
+
"𝕪": "𝕪",
|
|
2680
|
+
"𝓎": "𝓎",
|
|
2681
|
+
"ю": "ю",
|
|
2682
|
+
"ÿ": "ÿ",
|
|
2683
|
+
"ÿ": "ÿ",
|
|
2684
|
+
"ź": "ź",
|
|
2685
|
+
"ž": "ž",
|
|
2686
|
+
"з": "з",
|
|
2687
|
+
"ż": "ż",
|
|
2688
|
+
"ℨ": "ℨ",
|
|
2689
|
+
"ζ": "ζ",
|
|
2690
|
+
"𝔷": "𝔷",
|
|
2691
|
+
"ж": "ж",
|
|
2692
|
+
"⇝": "⇝",
|
|
2693
|
+
"𝕫": "𝕫",
|
|
2694
|
+
"𝓏": "𝓏",
|
|
2695
|
+
"‍": "",
|
|
2696
|
+
"‌": ""
|
|
2697
|
+
};
|
|
2698
|
+
function hu(s) {
|
|
2699
|
+
return s.replace(/&(#\d+|#x[a-f0-9]+|[a-z]+\d*);?/gi, (u, r) => {
|
|
2700
|
+
if (typeof M[u] == "string")
|
|
2701
|
+
return M[u];
|
|
2702
|
+
if (r.charAt(0) !== "#" || u.charAt(u.length - 1) !== ";")
|
|
2703
|
+
return u;
|
|
2704
|
+
let t;
|
|
2705
|
+
r.charAt(1) === "x" ? t = parseInt(r.substr(2), 16) : t = parseInt(r.substr(1), 10);
|
|
2706
|
+
let i = "";
|
|
2707
|
+
return t >= 55296 && t <= 57343 || t > 1114111 ? "�" : (t > 65535 && (t -= 65536, i += String.fromCharCode(t >>> 10 & 1023 | 55296), t = 56320 | t & 1023), i += String.fromCharCode(t), i);
|
|
2708
|
+
});
|
|
2709
|
+
}
|
|
2710
|
+
function g(s) {
|
|
2711
|
+
return s.trim().replace(/[<>"'?&]/g, (u) => {
|
|
2712
|
+
let r = u.charCodeAt(0).toString(16);
|
|
2713
|
+
return r.length < 2 && (r = "0" + r), "&#x" + r.toUpperCase() + ";";
|
|
2714
|
+
});
|
|
2715
|
+
}
|
|
2716
|
+
function du(s) {
|
|
2717
|
+
return "<div>" + g(s).replace(/\n/g, "<br />") + "</div>";
|
|
2718
|
+
}
|
|
2719
|
+
function fu(s) {
|
|
2720
|
+
return s = s.replace(/\r?\n/g, "").replace(/<\!\-\-.*?\-\->/gi, " ").replace(/<br\b[^>]*>/gi, `
|
|
2721
|
+
`).replace(/<\/?(p|div|table|tr|td|th)\b[^>]*>/gi, `
|
|
2722
|
+
|
|
2723
|
+
`).replace(/<script\b[^>]*>.*?<\/script\b[^>]*>/gi, " ").replace(/^.*<body\b[^>]*>/i, "").replace(/^.*<\/head\b[^>]*>/i, "").replace(/^.*<\!doctype\b[^>]*>/i, "").replace(/<\/body\b[^>]*>.*$/i, "").replace(/<\/html\b[^>]*>.*$/i, "").replace(/<a\b[^>]*href\s*=\s*["']?([^\s"']+)[^>]*>/gi, " ($1) ").replace(/<\/?(span|em|i|strong|b|u|a)\b[^>]*>/gi, "").replace(/<li\b[^>]*>[\n\u0001\s]*/gi, "* ").replace(/<hr\b[^>]*>/g, `
|
|
2724
|
+
-------------
|
|
2725
|
+
`).replace(/<[^>]*>/g, " ").replace(/\u0001/g, `
|
|
2726
|
+
`).replace(/[ \t]+/g, " ").replace(/^\s+$/gm, "").replace(/\n\n+/g, `
|
|
2727
|
+
|
|
2728
|
+
`).replace(/^\n+/, `
|
|
2729
|
+
`).replace(/\n+$/, `
|
|
2730
|
+
`), s = hu(s), s;
|
|
2731
|
+
}
|
|
2732
|
+
function Q(s) {
|
|
2733
|
+
if (typeof Intl > "u")
|
|
2734
|
+
return s;
|
|
2735
|
+
const u = new Date(s);
|
|
2736
|
+
return isNaN(u.getTime()) ? s : new Intl.DateTimeFormat("default", {
|
|
2737
|
+
year: "numeric",
|
|
2738
|
+
month: "numeric",
|
|
2739
|
+
day: "numeric",
|
|
2740
|
+
hour: "numeric",
|
|
2741
|
+
minute: "numeric",
|
|
2742
|
+
second: "numeric",
|
|
2743
|
+
hour12: !1
|
|
2744
|
+
}).format(u);
|
|
2745
|
+
}
|
|
2746
|
+
function Du(s) {
|
|
2747
|
+
return [].concat(s.name || []).concat(s.name ? `<${s.address}>` : s.address).join(" ");
|
|
2748
|
+
}
|
|
2749
|
+
function v(s) {
|
|
2750
|
+
let u = [], r = (t, i) => {
|
|
2751
|
+
if (i && u.push(", "), t.group) {
|
|
2752
|
+
let n = `${t.name}:`, e = ";";
|
|
2753
|
+
u.push(n), t.group.forEach(r), u.push(e);
|
|
2754
|
+
} else
|
|
2755
|
+
u.push(Du(t));
|
|
2756
|
+
};
|
|
2757
|
+
return s.forEach(r), u.join("");
|
|
2758
|
+
}
|
|
2759
|
+
function Au(s) {
|
|
2760
|
+
return `<a href="mailto:${g(s.address)}" class="postal-email-address">${g(s.name || `<${s.address}>`)}</a>`;
|
|
2761
|
+
}
|
|
2762
|
+
function y(s) {
|
|
2763
|
+
let u = [], r = (t, i) => {
|
|
2764
|
+
if (i && u.push('<span class="postal-email-address-separator">, </span>'), t.group) {
|
|
2765
|
+
let n = `<span class="postal-email-address-group">${g(t.name)}:</span>`, e = '<span class="postal-email-address-group">;</span>';
|
|
2766
|
+
u.push(n), t.group.forEach(r), u.push(e);
|
|
2767
|
+
} else
|
|
2768
|
+
u.push(Au(t));
|
|
2769
|
+
};
|
|
2770
|
+
return s.forEach(r), u.join(" ");
|
|
2771
|
+
}
|
|
2772
|
+
function gu(s, u, r) {
|
|
2773
|
+
s = (s || "").toString(), u = u || 76;
|
|
2774
|
+
let t = 0, i = s.length, n = "", e, a;
|
|
2775
|
+
for (; t < i; ) {
|
|
2776
|
+
if (e = s.substr(t, u), e.length < u) {
|
|
2777
|
+
n += e;
|
|
2778
|
+
break;
|
|
2779
|
+
}
|
|
2780
|
+
if (a = e.match(/^[^\n\r]*(\r?\n|\r)/)) {
|
|
2781
|
+
e = a[0], n += e, t += e.length;
|
|
2782
|
+
continue;
|
|
2783
|
+
} else (a = e.match(/(\s+)[^\s]*$/)) && a[0].length - (a[1] || "").length < e.length ? e = e.substr(0, e.length - (a[0].length - (a[1] || "").length)) : (a = s.substr(t + e.length).match(/^[^\s]+(\s*)/)) && (e = e + a[0].substr(0, a[0].length - 0));
|
|
2784
|
+
n += e, t += e.length, t < i && (n += `\r
|
|
2785
|
+
`);
|
|
2786
|
+
}
|
|
2787
|
+
return n;
|
|
2788
|
+
}
|
|
2789
|
+
function I(s) {
|
|
2790
|
+
let u = [];
|
|
2791
|
+
s.from && u.push({ key: "From", val: v([s.from]) }), s.subject && u.push({ key: "Subject", val: s.subject }), s.date && u.push({ key: "Date", val: Q(s.date) }), s.to && s.to.length && u.push({ key: "To", val: v(s.to) }), s.cc && s.cc.length && u.push({ key: "Cc", val: v(s.cc) }), s.bcc && s.bcc.length && u.push({ key: "Bcc", val: v(s.bcc) });
|
|
2792
|
+
let r = u.map((e) => e.key.length).reduce((e, a) => a > e ? a : e, 0);
|
|
2793
|
+
u = u.flatMap((e) => {
|
|
2794
|
+
let a = r - e.key.length, o = `${e.key}: ${" ".repeat(a)}`, c = `${" ".repeat(e.key.length + 1)} ${" ".repeat(a)}`;
|
|
2795
|
+
return gu(e.val, 80).split(/\r?\n/).map((p) => p.trim()).map((p, f) => `${f ? c : o}${p}`);
|
|
2796
|
+
});
|
|
2797
|
+
let t = u.map((e) => e.length).reduce((e, a) => a > e ? a : e, 0), i = "-".repeat(t);
|
|
2798
|
+
return `
|
|
2799
|
+
${i}
|
|
2800
|
+
${u.join(`
|
|
2801
|
+
`)}
|
|
2802
|
+
${i}
|
|
2803
|
+
`;
|
|
2804
|
+
}
|
|
2805
|
+
function V(s) {
|
|
2806
|
+
let u = [];
|
|
2807
|
+
return s.from && u.push(
|
|
2808
|
+
// through the plural formatter, because `From:` may hold RFC 5322 group syntax
|
|
2809
|
+
// and a group has no address of its own
|
|
2810
|
+
`<div class="postal-email-header-key">From</div><div class="postal-email-header-value">${y([s.from])}</div>`
|
|
2811
|
+
), s.subject && u.push(
|
|
2812
|
+
`<div class="postal-email-header-key">Subject</div><div class="postal-email-header-value postal-email-header-subject">${g(
|
|
2813
|
+
s.subject
|
|
2814
|
+
)}</div>`
|
|
2815
|
+
), s.date && u.push(
|
|
2816
|
+
`<div class="postal-email-header-key">Date</div><div class="postal-email-header-value postal-email-header-date" data-date="${g(
|
|
2817
|
+
s.date
|
|
2818
|
+
)}">${g(Q(s.date))}</div>`
|
|
2819
|
+
), s.to && s.to.length && u.push(
|
|
2820
|
+
`<div class="postal-email-header-key">To</div><div class="postal-email-header-value">${y(s.to)}</div>`
|
|
2821
|
+
), s.cc && s.cc.length && u.push(
|
|
2822
|
+
`<div class="postal-email-header-key">Cc</div><div class="postal-email-header-value">${y(s.cc)}</div>`
|
|
2823
|
+
), s.bcc && s.bcc.length && u.push(
|
|
2824
|
+
`<div class="postal-email-header-key">Bcc</div><div class="postal-email-header-value">${y(s.bcc)}</div>`
|
|
2825
|
+
), `<div class="postal-email-header">${u.length ? '<div class="postal-email-header-row">' : ""}${u.join(
|
|
2826
|
+
`</div>
|
|
2827
|
+
<div class="postal-email-header-row">`
|
|
2828
|
+
)}${u.length ? "</div>" : ""}</div>`;
|
|
2829
|
+
}
|
|
2830
|
+
const G = /\w/, $ = /[^\s]+/g;
|
|
2831
|
+
function mu(s) {
|
|
2832
|
+
$.lastIndex = 0;
|
|
2833
|
+
let u;
|
|
2834
|
+
for (; u = $.exec(s); ) {
|
|
2835
|
+
const r = u[0], t = r.indexOf("@");
|
|
2836
|
+
let i = 0;
|
|
2837
|
+
for (; i < t && !G.test(r.charAt(i)); )
|
|
2838
|
+
i++;
|
|
2839
|
+
if (i >= t)
|
|
2840
|
+
continue;
|
|
2841
|
+
let n = r.length;
|
|
2842
|
+
for (; n > t + 1 && !G.test(r.charAt(n - 1)); )
|
|
2843
|
+
n--;
|
|
2844
|
+
if (!(n <= t + 1))
|
|
2845
|
+
return { index: u.index + i, length: n - i, value: r.substring(i, n) };
|
|
2846
|
+
}
|
|
2847
|
+
return null;
|
|
2848
|
+
}
|
|
2849
|
+
function Cu(s, u) {
|
|
2850
|
+
let r = !1, t = "text", i, n = [], e = {
|
|
2851
|
+
address: [],
|
|
2852
|
+
comment: [],
|
|
2853
|
+
group: [],
|
|
2854
|
+
text: [],
|
|
2855
|
+
textWasQuoted: []
|
|
2856
|
+
// Track which text tokens came from inside quotes
|
|
2857
|
+
}, a, o, c = !1;
|
|
2858
|
+
for (a = 0, o = s.length; a < o; a++) {
|
|
2859
|
+
let l = s[a], p = a ? s[a - 1] : null;
|
|
2860
|
+
if (l.type === "operator")
|
|
2861
|
+
switch (l.value) {
|
|
2862
|
+
case "<":
|
|
2863
|
+
t = "address", c = !1;
|
|
2864
|
+
break;
|
|
2865
|
+
case "(":
|
|
2866
|
+
t = "comment", c = !1;
|
|
2867
|
+
break;
|
|
2868
|
+
case ":":
|
|
2869
|
+
t = "group", r = !0, c = !1;
|
|
2870
|
+
break;
|
|
2871
|
+
case '"':
|
|
2872
|
+
c = !c, t = "text";
|
|
2873
|
+
break;
|
|
2874
|
+
default:
|
|
2875
|
+
t = "text", c = !1;
|
|
2876
|
+
break;
|
|
2877
|
+
}
|
|
2878
|
+
else l.value && (t === "address" && (l.value = l.value.replace(/^[^<]*<\s*/, "")), p && p.noBreak && e[t].length ? (e[t][e[t].length - 1] += l.value, t === "text" && c && (e.textWasQuoted[e.textWasQuoted.length - 1] = !0)) : (e[t].push(l.value), t === "text" && e.textWasQuoted.push(c)));
|
|
2879
|
+
}
|
|
2880
|
+
if (!e.text.length && e.comment.length && (e.text = e.comment, e.comment = []), r) {
|
|
2881
|
+
e.text = e.text.join(" ");
|
|
2882
|
+
let l = [];
|
|
2883
|
+
e.group.length && w(e.group.join(","), { _depth: u + 1 }).forEach((f) => {
|
|
2884
|
+
f.group ? l = l.concat(f.group) : l.push(f);
|
|
2885
|
+
}), n.push({
|
|
2886
|
+
name: C(e.text || i && i.name),
|
|
2887
|
+
group: l
|
|
2888
|
+
});
|
|
2889
|
+
} else {
|
|
2890
|
+
if (!e.address.length && e.text.length) {
|
|
2891
|
+
for (a = e.text.length - 1; a >= 0; a--)
|
|
2892
|
+
if (!e.textWasQuoted[a] && e.text[a].match(/^[^@\s]+@[^@\s]+$/)) {
|
|
2893
|
+
e.address = e.text.splice(a, 1), e.textWasQuoted.splice(a, 1);
|
|
2894
|
+
break;
|
|
2895
|
+
}
|
|
2896
|
+
if (!e.address.length) {
|
|
2897
|
+
for (a = e.text.length - 1; a >= 0; a--)
|
|
2898
|
+
if (!e.textWasQuoted[a]) {
|
|
2899
|
+
const l = mu(e.text[a]);
|
|
2900
|
+
if (l) {
|
|
2901
|
+
e.address = [l.value], e.text[a] = (e.text[a].substring(0, l.index).replace(/\s+$/, "") + " " + e.text[a].substring(l.index + l.length).replace(/^\s+/, "")).trim();
|
|
2902
|
+
break;
|
|
2903
|
+
}
|
|
2904
|
+
e.text[a] = e.text[a].trim();
|
|
2905
|
+
}
|
|
2906
|
+
}
|
|
2907
|
+
}
|
|
2908
|
+
if (!e.text.length && e.comment.length && (e.text = e.comment, e.comment = []), e.address.length > 1 && (e.text = e.text.concat(e.address.splice(1))), e.text = e.text.join(" "), e.address = e.address.join(" "), !e.address && tu(e.text.trim())) {
|
|
2909
|
+
const l = C(e.text);
|
|
2910
|
+
if (/<[^<>]+@[^<>]+>/.test(l)) {
|
|
2911
|
+
const p = w(l);
|
|
2912
|
+
if (p && p.length)
|
|
2913
|
+
return p;
|
|
2914
|
+
}
|
|
2915
|
+
return [{ address: "", name: l }];
|
|
2916
|
+
}
|
|
2917
|
+
i = {
|
|
2918
|
+
address: e.address || e.text || "",
|
|
2919
|
+
name: C(e.text || e.address || "")
|
|
2920
|
+
}, i.address === i.name && ((i.address || "").match(/@/) ? i.name = "" : i.address = ""), n.push(i);
|
|
2921
|
+
}
|
|
2922
|
+
return n;
|
|
2923
|
+
}
|
|
2924
|
+
class Eu {
|
|
2925
|
+
constructor(u) {
|
|
2926
|
+
this.str = (u || "").toString(), this.operatorCurrent = "", this.operatorExpecting = "", this.node = null, this.escaped = !1, this.list = [], this.operators = {
|
|
2927
|
+
'"': '"',
|
|
2928
|
+
"(": ")",
|
|
2929
|
+
"<": ">",
|
|
2930
|
+
",": "",
|
|
2931
|
+
":": ";",
|
|
2932
|
+
// Semicolons are not a legal delimiter per the RFC2822 grammar other
|
|
2933
|
+
// than for terminating a group, but they are also not valid for any
|
|
2934
|
+
// other use in this context. Given that some mail clients have
|
|
2935
|
+
// historically allowed the semicolon as a delimiter equivalent to the
|
|
2936
|
+
// comma in their UI, it makes sense to treat them the same as a comma
|
|
2937
|
+
// when used outside of a group.
|
|
2938
|
+
";": ""
|
|
2939
|
+
};
|
|
2940
|
+
}
|
|
2941
|
+
/**
|
|
2942
|
+
* Tokenizes the original input string
|
|
2943
|
+
*
|
|
2944
|
+
* @return {Array} An array of operator|text tokens
|
|
2945
|
+
*/
|
|
2946
|
+
tokenize() {
|
|
2947
|
+
let u = [];
|
|
2948
|
+
for (let r = 0, t = this.str.length; r < t; r++) {
|
|
2949
|
+
let i = this.str.charAt(r), n = r < t - 1 ? this.str.charAt(r + 1) : null;
|
|
2950
|
+
this.checkChar(i, n);
|
|
2951
|
+
}
|
|
2952
|
+
return this.list.forEach((r) => {
|
|
2953
|
+
r.value = (r.value || "").toString().trim(), r.value && u.push(r);
|
|
2954
|
+
}), u;
|
|
2955
|
+
}
|
|
2956
|
+
/**
|
|
2957
|
+
* Checks if a character is an operator or text and acts accordingly
|
|
2958
|
+
*
|
|
2959
|
+
* @param {String} chr Character from the address field
|
|
2960
|
+
*/
|
|
2961
|
+
checkChar(u, r) {
|
|
2962
|
+
if (!this.escaped) {
|
|
2963
|
+
if (u === this.operatorExpecting) {
|
|
2964
|
+
this.node = {
|
|
2965
|
+
type: "operator",
|
|
2966
|
+
value: u
|
|
2967
|
+
}, r && ![" ", " ", "\r", `
|
|
2968
|
+
`, ",", ";"].includes(r) && (this.node.noBreak = !0), this.list.push(this.node), this.node = null, this.operatorExpecting = "", this.escaped = !1;
|
|
2969
|
+
return;
|
|
2970
|
+
} else if (!this.operatorExpecting && u in this.operators) {
|
|
2971
|
+
this.node = {
|
|
2972
|
+
type: "operator",
|
|
2973
|
+
value: u
|
|
2974
|
+
}, this.list.push(this.node), this.node = null, this.operatorExpecting = this.operators[u], this.escaped = !1;
|
|
2975
|
+
return;
|
|
2976
|
+
} else if (this.operatorExpecting === '"' && u === "\\") {
|
|
2977
|
+
this.escaped = !0;
|
|
2978
|
+
return;
|
|
2979
|
+
}
|
|
2980
|
+
}
|
|
2981
|
+
this.node || (this.node = {
|
|
2982
|
+
type: "text",
|
|
2983
|
+
value: ""
|
|
2984
|
+
}, this.list.push(this.node)), u === `
|
|
2985
|
+
` && (u = " "), (u.charCodeAt(0) >= 33 || [" ", " "].includes(u)) && (this.node.value += u), this.escaped = !1;
|
|
2986
|
+
}
|
|
2987
|
+
}
|
|
2988
|
+
const bu = 50;
|
|
2989
|
+
function w(s, u) {
|
|
2990
|
+
u = u || {};
|
|
2991
|
+
let r = u._depth || 0;
|
|
2992
|
+
if (r > bu)
|
|
2993
|
+
return [];
|
|
2994
|
+
let i = new Eu(s).tokenize(), n = [], e = [], a = [];
|
|
2995
|
+
if (i.forEach((o) => {
|
|
2996
|
+
o.type === "operator" && (o.value === "," || o.value === ";") ? (e.length && n.push(e), e = []) : e.push(o);
|
|
2997
|
+
}), e.length && n.push(e), n.forEach((o) => {
|
|
2998
|
+
o = Cu(o, r), o.length && (a = a.concat(o));
|
|
2999
|
+
}), u.flatten) {
|
|
3000
|
+
let o = [], c = (l) => {
|
|
3001
|
+
l.forEach((p) => {
|
|
3002
|
+
if (p.group)
|
|
3003
|
+
return c(p.group);
|
|
3004
|
+
o.push(p);
|
|
3005
|
+
});
|
|
3006
|
+
};
|
|
3007
|
+
return c(a), o;
|
|
3008
|
+
}
|
|
3009
|
+
return a;
|
|
3010
|
+
}
|
|
3011
|
+
function Bu(s) {
|
|
3012
|
+
for (var u = "", r = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/", t = new Uint8Array(s), i = t.byteLength, n = i % 3, e = i - n, a, o, c, l, p, f = 0; f < e; f = f + 3)
|
|
3013
|
+
p = t[f] << 16 | t[f + 1] << 8 | t[f + 2], a = (p & 16515072) >> 18, o = (p & 258048) >> 12, c = (p & 4032) >> 6, l = p & 63, u += r[a] + r[o] + r[c] + r[l];
|
|
3014
|
+
return n == 1 ? (p = t[e], a = (p & 252) >> 2, o = (p & 3) << 4, u += r[a] + r[o] + "==") : n == 2 && (p = t[e] << 8 | t[e + 1], a = (p & 64512) >> 10, o = (p & 1008) >> 4, c = (p & 15) << 2, u += r[a] + r[o] + r[c] + "="), u;
|
|
3015
|
+
}
|
|
3016
|
+
const wu = 256, vu = 2 * 1024 * 1024, yu = 10;
|
|
3017
|
+
function T(s) {
|
|
3018
|
+
return s.replace(/-(.)/g, (u, r) => r.toUpperCase());
|
|
3019
|
+
}
|
|
3020
|
+
function L(s, u, r) {
|
|
3021
|
+
if (s == null)
|
|
3022
|
+
return u;
|
|
3023
|
+
if (typeof s != "number" || !Number.isInteger(s) || s < 0)
|
|
3024
|
+
throw new TypeError(`${r} must be a non-negative integer`);
|
|
3025
|
+
return s;
|
|
3026
|
+
}
|
|
3027
|
+
class S {
|
|
3028
|
+
// async so that an invalid option rejects the returned promise instead of throwing
|
|
3029
|
+
// synchronously, which would escape a `.catch()` chain
|
|
3030
|
+
static async parse(u, r) {
|
|
3031
|
+
return new S(r).parse(u);
|
|
3032
|
+
}
|
|
3033
|
+
// rfc822NestingDepth is internal state that nested parsers receive from their parent.
|
|
3034
|
+
// It is deliberately a separate argument rather than an option, so that forwarding a
|
|
3035
|
+
// caller supplied options object can not seed it and switch the recursion limit off.
|
|
3036
|
+
constructor(u, r = 0) {
|
|
3037
|
+
this.options = u || {}, this.mimeOptions = {
|
|
3038
|
+
maxNestingDepth: L(this.options.maxNestingDepth, wu, "maxNestingDepth"),
|
|
3039
|
+
maxHeadersSize: L(this.options.maxHeadersSize, vu, "maxHeadersSize")
|
|
3040
|
+
}, this.maxRfc822NestingDepth = L(
|
|
3041
|
+
this.options.maxRfc822NestingDepth,
|
|
3042
|
+
yu,
|
|
3043
|
+
"maxRfc822NestingDepth"
|
|
3044
|
+
), this.rfc822NestingDepth = r, this.root = this.currentNode = new z({
|
|
3045
|
+
postalMime: this,
|
|
3046
|
+
...this.mimeOptions
|
|
3047
|
+
}), this.boundaries = [], this.headerSize = 0, this.textContent = {}, this.attachments = [], this.attachmentEncoding = (this.options.attachmentEncoding || "").toString().replace(/[-_\s]/g, "").trim().toLowerCase() || "arraybuffer", this.started = !1;
|
|
3048
|
+
}
|
|
3049
|
+
async finalize() {
|
|
3050
|
+
await this.root.finalize();
|
|
3051
|
+
}
|
|
3052
|
+
async processLine(u, r) {
|
|
3053
|
+
let t = this.boundaries;
|
|
3054
|
+
if (t.length && u.length > 2 && u[0] === 45 && u[1] === 45)
|
|
3055
|
+
for (let i = t.length - 1; i >= 0; i--) {
|
|
3056
|
+
let n = t[i];
|
|
3057
|
+
if (u.length < n.value.length + 2)
|
|
3058
|
+
continue;
|
|
3059
|
+
let e = !0;
|
|
3060
|
+
for (let l = 0; l < n.value.length; l++)
|
|
3061
|
+
if (u[l + 2] !== n.value[l]) {
|
|
3062
|
+
e = !1;
|
|
3063
|
+
break;
|
|
3064
|
+
}
|
|
3065
|
+
if (!e)
|
|
3066
|
+
continue;
|
|
3067
|
+
let a = n.value.length + 2, o = !1;
|
|
3068
|
+
u.length >= n.value.length + 4 && u[n.value.length + 2] === 45 && u[n.value.length + 3] === 45 && (o = !0, a = n.value.length + 4);
|
|
3069
|
+
let c = !0;
|
|
3070
|
+
for (let l = a; l < u.length; l++)
|
|
3071
|
+
if (u[l] !== 32 && u[l] !== 9) {
|
|
3072
|
+
c = !1;
|
|
3073
|
+
break;
|
|
3074
|
+
}
|
|
3075
|
+
if (c)
|
|
3076
|
+
return o ? (await n.node.finalize(), this.currentNode = n.node.parentNode || this.root) : (await n.node.finalizeChildNodes(), this.currentNode = new z({
|
|
3077
|
+
postalMime: this,
|
|
3078
|
+
parentNode: n.node,
|
|
3079
|
+
parentMultipartType: n.node.contentType.multipart,
|
|
3080
|
+
...this.mimeOptions
|
|
3081
|
+
})), r ? this.finalize() : void 0;
|
|
3082
|
+
}
|
|
3083
|
+
if (this.currentNode.feed(u), r)
|
|
3084
|
+
return this.finalize();
|
|
3085
|
+
}
|
|
3086
|
+
readLine() {
|
|
3087
|
+
let u = this.readPos, r = this.readPos;
|
|
3088
|
+
for (; this.readPos < this.av.length; ) {
|
|
3089
|
+
const t = this.av[this.readPos++];
|
|
3090
|
+
if (t !== 13 && t !== 10 && (r = this.readPos), t === 10)
|
|
3091
|
+
return {
|
|
3092
|
+
bytes: new Uint8Array(this.buf, u, r - u),
|
|
3093
|
+
done: this.readPos >= this.av.length
|
|
3094
|
+
};
|
|
3095
|
+
}
|
|
3096
|
+
return {
|
|
3097
|
+
bytes: new Uint8Array(this.buf, u, r - u),
|
|
3098
|
+
done: this.readPos >= this.av.length
|
|
3099
|
+
};
|
|
3100
|
+
}
|
|
3101
|
+
async processNodeTree() {
|
|
3102
|
+
let u = {}, r = /* @__PURE__ */ new Set(), t = this.textMap = /* @__PURE__ */ new Map(), i = this.forceRfc822Attachments(), n = async (e, a, o) => {
|
|
3103
|
+
var c, l, p, f, b;
|
|
3104
|
+
if (a = a || !1, o = o || !1, e.contentType.multipart)
|
|
3105
|
+
e.contentType.multipart === "alternative" ? a = e : e.contentType.multipart === "related" && (o = e);
|
|
3106
|
+
else {
|
|
3107
|
+
const A = this.isInlineMessageRfc822(e) && !i, m = A && this.rfc822NestingDepth >= this.maxRfc822NestingDepth;
|
|
3108
|
+
if (A && !m) {
|
|
3109
|
+
const h = new S(
|
|
3110
|
+
{
|
|
3111
|
+
// Only the limits are inherited. Options that decide how a part
|
|
3112
|
+
// is classified stay with the parser that was configured.
|
|
3113
|
+
...this.mimeOptions,
|
|
3114
|
+
maxRfc822NestingDepth: this.maxRfc822NestingDepth,
|
|
3115
|
+
// attachments are encoded by the parent parser, keep raw buffers here
|
|
3116
|
+
attachmentEncoding: "arraybuffer"
|
|
3117
|
+
},
|
|
3118
|
+
this.rfc822NestingDepth + 1
|
|
3119
|
+
);
|
|
3120
|
+
e.subMessage = await h.parse(e.content), t.has(e) || t.set(e, {});
|
|
3121
|
+
let d = t.get(e);
|
|
3122
|
+
(e.subMessage.text || !e.subMessage.html) && (d.plain = d.plain || [], d.plain.push({ type: "subMessage", value: e.subMessage }), r.add("plain")), e.subMessage.html && (d.html = d.html || [], d.html.push({ type: "subMessage", value: e.subMessage }), r.add("html")), h.textMap && h.textMap.forEach((D, K) => {
|
|
3123
|
+
t.set(K, D);
|
|
3124
|
+
});
|
|
3125
|
+
for (let D of e.subMessage.attachments || [])
|
|
3126
|
+
this.attachments.push(D);
|
|
3127
|
+
} else if (this.isInlineTextNode(e)) {
|
|
3128
|
+
let h = e.contentType.parsed.value.substr(e.contentType.parsed.value.indexOf("/") + 1), d = a || e;
|
|
3129
|
+
t.has(d) || t.set(d, {});
|
|
3130
|
+
let D = t.get(d);
|
|
3131
|
+
D[h] = D[h] || [], D[h].push({ type: "text", value: e.getTextContent() }), r.add(h);
|
|
3132
|
+
} else if (e.content) {
|
|
3133
|
+
const h = ((p = (l = (c = e.contentDisposition) == null ? void 0 : c.parsed) == null ? void 0 : l.params) == null ? void 0 : p.filename) || e.contentType.parsed.params.name || null, d = {
|
|
3134
|
+
filename: h ? C(h) : null,
|
|
3135
|
+
mimeType: e.contentType.parsed.value,
|
|
3136
|
+
disposition: ((b = (f = e.contentDisposition) == null ? void 0 : f.parsed) == null ? void 0 : b.value) || null
|
|
3137
|
+
};
|
|
3138
|
+
switch (o && e.contentId && !m && (d.related = !0), m && (d.rfc822DepthExceeded = !0), e.contentDescription && (d.description = C(e.contentDescription)), e.contentId && (d.contentId = e.contentId), e.contentType.parsed.value) {
|
|
3139
|
+
case "text/calendar":
|
|
3140
|
+
case "application/ics": {
|
|
3141
|
+
e.contentType.parsed.params.method && (d.method = e.contentType.parsed.params.method.toString().toUpperCase().trim());
|
|
3142
|
+
const D = e.getTextContent().replace(/\r?\n/g, `
|
|
3143
|
+
`).replace(/\n*$/, `
|
|
3144
|
+
`);
|
|
3145
|
+
d.content = E.encode(D);
|
|
3146
|
+
break;
|
|
3147
|
+
}
|
|
3148
|
+
default:
|
|
3149
|
+
d.content = e.content;
|
|
3150
|
+
}
|
|
3151
|
+
this.attachments.push(d);
|
|
3152
|
+
}
|
|
3153
|
+
}
|
|
3154
|
+
for (let A of e.childNodes)
|
|
3155
|
+
await n(A, a, o);
|
|
3156
|
+
};
|
|
3157
|
+
await n(this.root, !1, !1), t.forEach((e) => {
|
|
3158
|
+
r.forEach((a) => {
|
|
3159
|
+
if (u[a] || (u[a] = []), e[a])
|
|
3160
|
+
e[a].forEach((o) => {
|
|
3161
|
+
switch (o.type) {
|
|
3162
|
+
case "text":
|
|
3163
|
+
u[a].push(o.value);
|
|
3164
|
+
break;
|
|
3165
|
+
case "subMessage":
|
|
3166
|
+
switch (a) {
|
|
3167
|
+
case "html":
|
|
3168
|
+
u[a].push(V(o.value));
|
|
3169
|
+
break;
|
|
3170
|
+
case "plain":
|
|
3171
|
+
u[a].push(I(o.value));
|
|
3172
|
+
break;
|
|
3173
|
+
}
|
|
3174
|
+
break;
|
|
3175
|
+
}
|
|
3176
|
+
});
|
|
3177
|
+
else {
|
|
3178
|
+
let o;
|
|
3179
|
+
switch (a) {
|
|
3180
|
+
case "html":
|
|
3181
|
+
o = "plain";
|
|
3182
|
+
break;
|
|
3183
|
+
case "plain":
|
|
3184
|
+
o = "html";
|
|
3185
|
+
break;
|
|
3186
|
+
}
|
|
3187
|
+
(e[o] || []).forEach((c) => {
|
|
3188
|
+
switch (c.type) {
|
|
3189
|
+
case "text":
|
|
3190
|
+
switch (a) {
|
|
3191
|
+
case "html":
|
|
3192
|
+
u[a].push(du(c.value));
|
|
3193
|
+
break;
|
|
3194
|
+
case "plain":
|
|
3195
|
+
u[a].push(fu(c.value));
|
|
3196
|
+
break;
|
|
3197
|
+
}
|
|
3198
|
+
break;
|
|
3199
|
+
case "subMessage":
|
|
3200
|
+
switch (a) {
|
|
3201
|
+
case "html":
|
|
3202
|
+
u[a].push(V(c.value));
|
|
3203
|
+
break;
|
|
3204
|
+
case "plain":
|
|
3205
|
+
u[a].push(I(c.value));
|
|
3206
|
+
break;
|
|
3207
|
+
}
|
|
3208
|
+
break;
|
|
3209
|
+
}
|
|
3210
|
+
});
|
|
3211
|
+
}
|
|
3212
|
+
});
|
|
3213
|
+
}), Object.keys(u).forEach((e) => {
|
|
3214
|
+
u[e] = u[e].join(`
|
|
3215
|
+
`);
|
|
3216
|
+
}), this.textContent = u;
|
|
3217
|
+
}
|
|
3218
|
+
isInlineTextNode(u) {
|
|
3219
|
+
var r, t, i;
|
|
3220
|
+
if (((t = (r = u.contentDisposition) == null ? void 0 : r.parsed) == null ? void 0 : t.value) === "attachment")
|
|
3221
|
+
return !1;
|
|
3222
|
+
switch ((i = u.contentType.parsed) == null ? void 0 : i.value) {
|
|
3223
|
+
case "text/html":
|
|
3224
|
+
case "text/plain":
|
|
3225
|
+
return !0;
|
|
3226
|
+
case "text/calendar":
|
|
3227
|
+
case "text/csv":
|
|
3228
|
+
default:
|
|
3229
|
+
return !1;
|
|
3230
|
+
}
|
|
3231
|
+
}
|
|
3232
|
+
isInlineMessageRfc822(u) {
|
|
3233
|
+
var t, i, n;
|
|
3234
|
+
return ((t = u.contentType.parsed) == null ? void 0 : t.value) !== "message/rfc822" ? !1 : (((n = (i = u.contentDisposition) == null ? void 0 : i.parsed) == null ? void 0 : n.value) || (this.options.rfc822Attachments ? "attachment" : "inline")) === "inline";
|
|
3235
|
+
}
|
|
3236
|
+
// Check if this is a specially crafted report email where message/rfc822 content should not be inlined
|
|
3237
|
+
forceRfc822Attachments() {
|
|
3238
|
+
if (this.options.forceRfc822Attachments)
|
|
3239
|
+
return !0;
|
|
3240
|
+
let u = !1, r = (t) => {
|
|
3241
|
+
t.contentType.multipart || t.contentType.parsed && ["message/delivery-status", "message/feedback-report"].includes(t.contentType.parsed.value) && (u = !0);
|
|
3242
|
+
for (let i of t.childNodes)
|
|
3243
|
+
r(i);
|
|
3244
|
+
};
|
|
3245
|
+
return r(this.root), u;
|
|
3246
|
+
}
|
|
3247
|
+
async resolveStream(u) {
|
|
3248
|
+
let r = 0, t = [];
|
|
3249
|
+
const i = u.getReader();
|
|
3250
|
+
for (; ; ) {
|
|
3251
|
+
const { done: a, value: o } = await i.read();
|
|
3252
|
+
if (a)
|
|
3253
|
+
break;
|
|
3254
|
+
t.push(o), r += o.length;
|
|
3255
|
+
}
|
|
3256
|
+
const n = new Uint8Array(r);
|
|
3257
|
+
let e = 0;
|
|
3258
|
+
for (let a of t)
|
|
3259
|
+
n.set(a, e), e += a.length;
|
|
3260
|
+
return n;
|
|
3261
|
+
}
|
|
3262
|
+
async parse(u) {
|
|
3263
|
+
var i, n;
|
|
3264
|
+
if (this.started)
|
|
3265
|
+
throw new Error("Can not reuse parser, create a new PostalMime object");
|
|
3266
|
+
for (this.started = !0, u && typeof u.getReader == "function" && (u = await this.resolveStream(u)), u = u || new ArrayBuffer(0), typeof u == "string" && (u = E.encode(u)), (u instanceof Blob || Object.prototype.toString.call(u) === "[object Blob]") && (u = await x(u)), ArrayBuffer.isView(u) && (u = u.buffer.slice(u.byteOffset, u.byteOffset + u.byteLength)), this.buf = u, this.av = new Uint8Array(u), this.readPos = 0; this.readPos < this.av.length; ) {
|
|
3267
|
+
const e = this.readLine();
|
|
3268
|
+
await this.processLine(e.bytes, e.done);
|
|
3269
|
+
}
|
|
3270
|
+
await this.processNodeTree();
|
|
3271
|
+
const r = {
|
|
3272
|
+
headers: this.root.headers.map((e) => ({
|
|
3273
|
+
key: e.key,
|
|
3274
|
+
originalKey: e.originalKey,
|
|
3275
|
+
value: e.value
|
|
3276
|
+
}))
|
|
3277
|
+
};
|
|
3278
|
+
for (const e of ["from", "sender"]) {
|
|
3279
|
+
const a = this.root.headers.find((o) => o.key === e);
|
|
3280
|
+
if (a && a.value) {
|
|
3281
|
+
const o = w(a.value);
|
|
3282
|
+
o && o.length && (r[e] = o[0]);
|
|
3283
|
+
}
|
|
3284
|
+
}
|
|
3285
|
+
for (const e of ["delivered-to", "return-path"]) {
|
|
3286
|
+
const a = this.root.headers.find((o) => o.key === e);
|
|
3287
|
+
if (a && a.value) {
|
|
3288
|
+
const o = w(a.value);
|
|
3289
|
+
if (o && o.length && o[0].address) {
|
|
3290
|
+
const c = T(e);
|
|
3291
|
+
r[c] = o[0].address;
|
|
3292
|
+
}
|
|
3293
|
+
}
|
|
3294
|
+
}
|
|
3295
|
+
for (const e of ["to", "cc", "bcc", "reply-to"]) {
|
|
3296
|
+
const a = this.root.headers.filter((c) => c.key === e);
|
|
3297
|
+
let o = [];
|
|
3298
|
+
if (a.filter((c) => c && c.value).map((c) => w(c.value)).forEach((c) => o = o.concat(c || [])), o && o.length) {
|
|
3299
|
+
const c = T(e);
|
|
3300
|
+
r[c] = o;
|
|
3301
|
+
}
|
|
3302
|
+
}
|
|
3303
|
+
for (const e of ["subject", "message-id", "in-reply-to", "references"]) {
|
|
3304
|
+
const a = this.root.headers.find((o) => o.key === e);
|
|
3305
|
+
if (a && a.value) {
|
|
3306
|
+
const o = T(e);
|
|
3307
|
+
r[o] = C(a.value);
|
|
3308
|
+
}
|
|
3309
|
+
}
|
|
3310
|
+
let t = this.root.headers.find((e) => e.key === "date");
|
|
3311
|
+
if (t) {
|
|
3312
|
+
let e = new Date(t.value);
|
|
3313
|
+
e.toString() === "Invalid Date" ? e = t.value : e = e.toISOString(), r.date = e;
|
|
3314
|
+
}
|
|
3315
|
+
switch ((i = this.textContent) != null && i.html && (r.html = this.textContent.html), (n = this.textContent) != null && n.plain && (r.text = this.textContent.plain), r.attachments = this.attachments, r.headerLines = (this.root.rawHeaderLines || []).slice(), this.attachmentEncoding) {
|
|
3316
|
+
case "arraybuffer":
|
|
3317
|
+
break;
|
|
3318
|
+
case "base64":
|
|
3319
|
+
for (let a of r.attachments || [])
|
|
3320
|
+
a != null && a.content && (a.content = Bu(a.content), a.encoding = "base64");
|
|
3321
|
+
break;
|
|
3322
|
+
case "utf8":
|
|
3323
|
+
let e = new TextDecoder("utf8");
|
|
3324
|
+
for (let a of r.attachments || [])
|
|
3325
|
+
a != null && a.content && (a.content = e.decode(a.content), a.encoding = "utf8");
|
|
3326
|
+
break;
|
|
3327
|
+
default:
|
|
3328
|
+
throw new Error("Unknown attachment encoding");
|
|
3329
|
+
}
|
|
3330
|
+
return r;
|
|
3331
|
+
}
|
|
3332
|
+
}
|
|
3333
|
+
export {
|
|
3334
|
+
w as addressParser,
|
|
3335
|
+
C as decodeWords,
|
|
3336
|
+
S as default
|
|
3337
|
+
};
|