@vtj/parser 0.16.25 → 0.16.26
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/index.cjs +11 -11
- package/dist/index.mjs +388 -382
- package/package.json +3 -3
- package/types/version.d.ts +2 -2
- package/types/vue/utils.d.ts +1 -0
package/dist/index.mjs
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import { parse as Vu, compileTemplate as qu } from "@vue/compiler-sfc";
|
|
2
|
-
import { parse as
|
|
2
|
+
import { parse as ee } from "@babel/parser";
|
|
3
3
|
import pu from "@babel/traverse";
|
|
4
4
|
import mu from "@babel/generator";
|
|
5
|
-
import { BlockModel as
|
|
5
|
+
import { BlockModel as te } from "@vtj/core";
|
|
6
6
|
import { tsFormatter as xu } from "@vtj/coder";
|
|
7
7
|
import { NodeTypes as x } from "@vue/compiler-core";
|
|
8
|
-
import { upperFirstCamelCase as
|
|
9
|
-
import
|
|
10
|
-
import * as
|
|
8
|
+
import { upperFirstCamelCase as ae, unBase64 as ie, uid as su } from "@vtj/base";
|
|
9
|
+
import se from "postcss";
|
|
10
|
+
import * as re from "sass";
|
|
11
11
|
import * as V from "@babel/types";
|
|
12
12
|
/**!
|
|
13
13
|
* Copyright (c) 2026, VTJ.PRO All rights reserved.
|
|
14
14
|
* @name @vtj/parser
|
|
15
15
|
* @author CHC chenhuachun1549@dingtalk.com
|
|
16
|
-
* @version 0.16.
|
|
16
|
+
* @version 0.16.26
|
|
17
17
|
* @license <a href="https://vtj.pro/license.html">MIT License</a>
|
|
18
18
|
*/
|
|
19
|
-
const
|
|
19
|
+
const T0 = "0.16.26";
|
|
20
20
|
function D(e) {
|
|
21
21
|
const { descriptor: u, errors: t } = Vu(e), a = u.template?.content || "", i = (u.scriptSetup || u.script)?.content || "", s = u.styles.map((r) => r.content);
|
|
22
22
|
return {
|
|
@@ -26,13 +26,13 @@ function D(e) {
|
|
|
26
26
|
errors: t
|
|
27
27
|
};
|
|
28
28
|
}
|
|
29
|
-
function
|
|
30
|
-
return
|
|
29
|
+
function z(e) {
|
|
30
|
+
return ee(e, { sourceType: "module", plugins: ["typescript"] });
|
|
31
31
|
}
|
|
32
32
|
function eu(e, u) {
|
|
33
33
|
return (pu.default || pu)(e, u);
|
|
34
34
|
}
|
|
35
|
-
function
|
|
35
|
+
function P(e) {
|
|
36
36
|
try {
|
|
37
37
|
return (mu.default || mu)(e, {
|
|
38
38
|
comments: !1,
|
|
@@ -49,31 +49,31 @@ function O(e) {
|
|
|
49
49
|
function ou(e) {
|
|
50
50
|
return !!e && e.type === "JSExpression";
|
|
51
51
|
}
|
|
52
|
-
function
|
|
52
|
+
function ce(e) {
|
|
53
53
|
return typeof e == "object" && !!e && e.type === "JSFunction";
|
|
54
54
|
}
|
|
55
55
|
function du(e) {
|
|
56
|
-
return !!ou(e) || !!
|
|
56
|
+
return !!ou(e) || !!ce(e);
|
|
57
57
|
}
|
|
58
|
-
function
|
|
58
|
+
function ne(e) {
|
|
59
59
|
return !!e && !ou(e) && typeof e != "string";
|
|
60
60
|
}
|
|
61
61
|
function Ru(e, u) {
|
|
62
62
|
try {
|
|
63
|
-
const t =
|
|
64
|
-
return eu(t, u),
|
|
63
|
+
const t = z(e);
|
|
64
|
+
return eu(t, u), P(t) || "";
|
|
65
65
|
} catch {
|
|
66
66
|
return "";
|
|
67
67
|
}
|
|
68
68
|
}
|
|
69
|
-
function
|
|
69
|
+
function oe(e, u) {
|
|
70
70
|
const t = [];
|
|
71
71
|
try {
|
|
72
72
|
const { descriptor: a, errors: i } = Vu(e);
|
|
73
73
|
if (i && i.length > 0 && i.forEach((r) => {
|
|
74
|
-
const n = r.message || String(r),
|
|
75
|
-
|
|
76
|
-
`Vue SFC 错误: ${n} (位置: ${
|
|
74
|
+
const n = r.message || String(r), f = r.loc;
|
|
75
|
+
f && f.start ? t.push(
|
|
76
|
+
`Vue SFC 错误: ${n} (位置: ${f.start.line}:${f.start.column})`
|
|
77
77
|
) : t.push(`Vue SFC 错误: ${n}`);
|
|
78
78
|
}), a.template)
|
|
79
79
|
try {
|
|
@@ -84,10 +84,10 @@ function ne(e, u) {
|
|
|
84
84
|
isProd: !1
|
|
85
85
|
});
|
|
86
86
|
r.errors && r.errors.length > 0 && r.errors.forEach((n) => {
|
|
87
|
-
const
|
|
87
|
+
const f = typeof n == "string" ? n : n.message, c = typeof n == "string" ? null : n.loc;
|
|
88
88
|
c && c.start ? t.push(
|
|
89
|
-
`模板编译错误: ${
|
|
90
|
-
) : t.push(`模板编译错误: ${
|
|
89
|
+
`模板编译错误: ${f} (位置: ${c.start.line}:${c.start.column})`
|
|
90
|
+
) : t.push(`模板编译错误: ${f}`);
|
|
91
91
|
});
|
|
92
92
|
} catch (r) {
|
|
93
93
|
t.push(`模板编译错误: ${r.message}`);
|
|
@@ -95,7 +95,7 @@ function ne(e, u) {
|
|
|
95
95
|
const s = (a.scriptSetup || a.script)?.content;
|
|
96
96
|
if (s)
|
|
97
97
|
try {
|
|
98
|
-
|
|
98
|
+
z(s);
|
|
99
99
|
} catch (r) {
|
|
100
100
|
t.push(`脚本语法错误: ${r.message}`);
|
|
101
101
|
}
|
|
@@ -104,13 +104,13 @@ function ne(e, u) {
|
|
|
104
104
|
}
|
|
105
105
|
return t.length > 0 ? t : null;
|
|
106
106
|
}
|
|
107
|
-
function
|
|
108
|
-
const u = D(e), t =
|
|
107
|
+
function N0(e) {
|
|
108
|
+
const u = D(e), t = z(u.script), a = {};
|
|
109
109
|
return u.styles && (a.css = u.styles[0] || ""), eu(t, {
|
|
110
110
|
CallExpression(i) {
|
|
111
111
|
const s = i.node.callee?.name;
|
|
112
112
|
if (s) {
|
|
113
|
-
const r =
|
|
113
|
+
const r = P(i.node.arguments[0]);
|
|
114
114
|
r && (a[s] = {
|
|
115
115
|
type: "JSFunction",
|
|
116
116
|
value: r
|
|
@@ -119,18 +119,18 @@ function T0(e) {
|
|
|
119
119
|
}
|
|
120
120
|
}), a;
|
|
121
121
|
}
|
|
122
|
-
function
|
|
122
|
+
function de(e, u, t, a) {
|
|
123
123
|
if (a.match(/function\s*\(\s*$/))
|
|
124
124
|
return !0;
|
|
125
125
|
const s = e.slice(u + t.length);
|
|
126
126
|
if (s.trim().startsWith("=>"))
|
|
127
127
|
return !0;
|
|
128
|
-
const n = a.endsWith("(") || a.match(/\(\s*$/),
|
|
129
|
-
if (n ||
|
|
130
|
-
let
|
|
128
|
+
const n = a.endsWith("(") || a.match(/\(\s*$/), f = a.endsWith(",") || a.match(/,\s*$/);
|
|
129
|
+
if (n || f) {
|
|
130
|
+
let l = -1, m = "";
|
|
131
131
|
if (n)
|
|
132
|
-
|
|
133
|
-
else if (
|
|
132
|
+
l = a.length - 1;
|
|
133
|
+
else if (f) {
|
|
134
134
|
let y = 0, b = !1, S = "";
|
|
135
135
|
for (let I = a.length - 1; I >= 0; I--) {
|
|
136
136
|
const g = a[I];
|
|
@@ -145,7 +145,7 @@ function oe(e, u, t, a) {
|
|
|
145
145
|
y++;
|
|
146
146
|
else if (g === "(") {
|
|
147
147
|
if (y === 0) {
|
|
148
|
-
|
|
148
|
+
l = I;
|
|
149
149
|
break;
|
|
150
150
|
}
|
|
151
151
|
y--;
|
|
@@ -153,8 +153,8 @@ function oe(e, u, t, a) {
|
|
|
153
153
|
}
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
|
-
if (
|
|
157
|
-
let y =
|
|
156
|
+
if (l >= 0) {
|
|
157
|
+
let y = l - 1;
|
|
158
158
|
for (; y >= 0 && /\s/.test(a.charAt(y)); )
|
|
159
159
|
y--;
|
|
160
160
|
if (y >= 0) {
|
|
@@ -188,7 +188,7 @@ function oe(e, u, t, a) {
|
|
|
188
188
|
}
|
|
189
189
|
const c = u > 0 ? e.charAt(u - 1) : "";
|
|
190
190
|
if (!/[a-zA-Z0-9_$@-]/.test(c) && s.includes("=>")) {
|
|
191
|
-
const
|
|
191
|
+
const l = s.indexOf("=>"), m = s.slice(0, l).trim();
|
|
192
192
|
if (m === "" || m === ",")
|
|
193
193
|
return !0;
|
|
194
194
|
}
|
|
@@ -199,14 +199,14 @@ function gu(e, u, t) {
|
|
|
199
199
|
for (; a >= 0 && /\s/.test(e[a]); ) a--;
|
|
200
200
|
if (a < 0) return !1;
|
|
201
201
|
const i = e[a];
|
|
202
|
-
if (i !== "{" && i !== ",") return !1;
|
|
202
|
+
if (i !== "{" && i !== "," || i === "{" && a > 0 && e[a - 1] === "$") return !1;
|
|
203
203
|
let s = u + t.length;
|
|
204
204
|
for (; s < e.length && /\s/.test(e[s]); ) s++;
|
|
205
205
|
if (s >= e.length) return !1;
|
|
206
206
|
const r = e[s];
|
|
207
207
|
return r === "," || r === "}";
|
|
208
208
|
}
|
|
209
|
-
function
|
|
209
|
+
function B(e, u, t) {
|
|
210
210
|
if (!e.includes(u)) return e;
|
|
211
211
|
const a = [];
|
|
212
212
|
let i = 0;
|
|
@@ -220,13 +220,13 @@ function M(e, u, t) {
|
|
|
220
220
|
// 正则表达式括号深度(用于处理字符类)
|
|
221
221
|
}, r = /[a-zA-Z0-9_$@-]/;
|
|
222
222
|
function n(c) {
|
|
223
|
-
for (let
|
|
224
|
-
const
|
|
223
|
+
for (let o = 0; o < c.length; o++) {
|
|
224
|
+
const l = c[o];
|
|
225
225
|
if (!s.inString && !s.inRegex) {
|
|
226
|
-
if (
|
|
227
|
-
s.inString = !0, s.quoteChar =
|
|
228
|
-
else if (
|
|
229
|
-
let m =
|
|
226
|
+
if (l === "'" || l === '"' || l === "`")
|
|
227
|
+
s.inString = !0, s.quoteChar = l;
|
|
228
|
+
else if (l === "/") {
|
|
229
|
+
let m = o - 1;
|
|
230
230
|
for (; m >= 0 && /\s/.test(c[m]); )
|
|
231
231
|
m--;
|
|
232
232
|
if (m < 0)
|
|
@@ -275,10 +275,10 @@ function M(e, u, t) {
|
|
|
275
275
|
s.inRegex = !0, s.regexDepth = 0;
|
|
276
276
|
}
|
|
277
277
|
}
|
|
278
|
-
} else s.inString ?
|
|
278
|
+
} else s.inString ? l === s.quoteChar ? s.quoteChar === "`" && s.inTemplateExpr > 0 || (s.inString = !1, s.quoteChar = "", s.inTemplateExpr = 0) : s.quoteChar === "`" && (l === "$" && o + 1 < c.length && c[o + 1] === "{" ? (s.inTemplateExpr++, o++) : l === "}" && s.inTemplateExpr > 0 && s.inTemplateExpr--) : s.inRegex && (l === "[" ? s.regexDepth++ : l === "]" && s.regexDepth > 0 ? s.regexDepth-- : l === "/" && s.regexDepth === 0 && (o === 0 || c[o - 1] !== "\\") && (s.inRegex = !1, s.regexDepth = 0));
|
|
279
279
|
}
|
|
280
280
|
}
|
|
281
|
-
function
|
|
281
|
+
function f(c) {
|
|
282
282
|
if (s.inRegex || s.inString && s.inTemplateExpr === 0 && !e.slice(0, c).match(/new\s+RegExp\s*\([^)]*$/))
|
|
283
283
|
return !1;
|
|
284
284
|
if (c >= 3 && e.slice(c - 3, c) === "..." && (c >= 4 ? e.charAt(c - 4) : "") !== ".")
|
|
@@ -290,11 +290,11 @@ function M(e, u, t) {
|
|
|
290
290
|
}
|
|
291
291
|
return !1;
|
|
292
292
|
}
|
|
293
|
-
const
|
|
294
|
-
if (r.test(
|
|
293
|
+
const o = c > 0 ? e.charAt(c - 1) : "", l = c + u.length < e.length ? e.charAt(c + u.length) : "";
|
|
294
|
+
if (r.test(o) || r.test(l))
|
|
295
295
|
return !1;
|
|
296
296
|
const m = e.slice(0, c);
|
|
297
|
-
return m.match(/(const|let|var|function)\s+$/) ? !1 : m.match(/\{\s*$/) &&
|
|
297
|
+
return m.match(/(const|let|var|function)\s+$/) ? !1 : m.match(/\{\s*$/) && !/\$\{\s*$/.test(m) ? !!(c > 0 && e.charAt(c - 1) === "[" || gu(e, c, u)) : de(
|
|
298
298
|
e,
|
|
299
299
|
c,
|
|
300
300
|
u,
|
|
@@ -304,8 +304,8 @@ function M(e, u, t) {
|
|
|
304
304
|
for (; i < e.length; ) {
|
|
305
305
|
const c = e.indexOf(u, i);
|
|
306
306
|
if (c === -1) break;
|
|
307
|
-
const
|
|
308
|
-
a.push(
|
|
307
|
+
const o = e.slice(i, c);
|
|
308
|
+
a.push(o), n(o), i = c, f(i) ? gu(e, i, u) ? a.push(u + ": " + t) : a.push(t) : a.push(u), i += u.length;
|
|
309
309
|
}
|
|
310
310
|
return i < e.length && a.push(e.slice(i)), a.join("");
|
|
311
311
|
}
|
|
@@ -315,20 +315,23 @@ function yu(e, u, t) {
|
|
|
315
315
|
computed: i = [],
|
|
316
316
|
libs: s = {},
|
|
317
317
|
members: r = [],
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
e = e
|
|
318
|
+
props: n = [],
|
|
319
|
+
platform: f
|
|
320
|
+
} = t || {}, c = Array.from(a[u || ""] || /* @__PURE__ */ new Set());
|
|
321
|
+
if (c)
|
|
322
|
+
for (const o of c)
|
|
323
|
+
e = B(e, o, `this.context.${o}`);
|
|
324
|
+
for (const o of i)
|
|
325
|
+
e = B(e, o, `this.${o}.value`), e = B(e, `this.${o}`, `this.${o}.value`), e = B(e, `this.${o}.value.value`, `this.${o}.value`);
|
|
326
|
+
for (const o of n)
|
|
327
|
+
e = B(e, o, `this.props.${o}`), e = B(e, `this.${o}`, `this.props.${o}`);
|
|
328
|
+
for (const [o, l] of Object.entries(s))
|
|
329
|
+
e = B(e, o, `this.$libs.${l}.${o}`), e = B(e, `this.${o}`, `this.$libs.${l}.${o}`);
|
|
330
|
+
for (const o of r)
|
|
331
|
+
e = B(e, o, `this.${o}`);
|
|
332
|
+
if (f === "uniapp") {
|
|
333
|
+
const o = /\suni\./g;
|
|
334
|
+
e = e.replace(o, "this.$libs.UniH5.uni.");
|
|
332
335
|
}
|
|
333
336
|
return e = e.replace(/_ctx\./g, "this."), e = e.replace(/this\.this\./g, "this."), e;
|
|
334
337
|
}
|
|
@@ -344,7 +347,7 @@ function fu(e) {
|
|
|
344
347
|
value: e
|
|
345
348
|
};
|
|
346
349
|
}
|
|
347
|
-
const
|
|
350
|
+
const fe = [
|
|
348
351
|
"beforeCreate",
|
|
349
352
|
"created",
|
|
350
353
|
"beforeMount",
|
|
@@ -358,16 +361,16 @@ const de = [
|
|
|
358
361
|
"renderTriggered",
|
|
359
362
|
"activated",
|
|
360
363
|
"deactivated"
|
|
361
|
-
],
|
|
364
|
+
], le = "html,body,base,head,link,meta,style,title,address,article,aside,footer,header,hgroup,h1,h2,h3,h4,h5,h6,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,summary,template,blockquote,iframe,tfoot,svg,path,circle,rect,polygon".split(
|
|
362
365
|
","
|
|
363
|
-
),
|
|
366
|
+
), be = "component,slot,template".split(","), he = "view,swiper,progress,icon,text,button,checkbox,editor,form,input,label,picker,radio,slider,switch,textarea,audio,camera,image,video,map,canvas".split(
|
|
364
367
|
","
|
|
365
368
|
);
|
|
366
|
-
function
|
|
367
|
-
return u === "uniapp" &&
|
|
369
|
+
function pe(e, u = "web") {
|
|
370
|
+
return u === "uniapp" && he.includes(e);
|
|
368
371
|
}
|
|
369
372
|
function ju(e, u = "web") {
|
|
370
|
-
return (
|
|
373
|
+
return (le.includes(e) || be.includes(e)) && !pe(e, u) ? e : ae(e);
|
|
371
374
|
}
|
|
372
375
|
function Du(e) {
|
|
373
376
|
return e.replace(/\s+/g, " ").split(";").reduce((t, a) => {
|
|
@@ -375,29 +378,29 @@ function Du(e) {
|
|
|
375
378
|
return i && s && (t[i] = s), t;
|
|
376
379
|
}, {});
|
|
377
380
|
}
|
|
378
|
-
function
|
|
381
|
+
function me(e, u, t) {
|
|
379
382
|
if (t === "ObjectExpression")
|
|
380
383
|
return `(Object.assign({${e.split(" ").map((i) => `'${i}': true`).join(",")}}, ${u}))`;
|
|
381
384
|
if (t === "ArrayExpression")
|
|
382
385
|
return `([${e.split(" ").map((i) => `'${i}'`).join(",")}].concat(${u}))`;
|
|
383
386
|
}
|
|
384
|
-
function
|
|
387
|
+
function xe(e = "") {
|
|
385
388
|
const t = e.trim().match(/DataSource:\s*([^\n=]+={0,2})/)?.[1] || "";
|
|
386
389
|
try {
|
|
387
|
-
return t ? JSON.parse(
|
|
390
|
+
return t ? JSON.parse(ie(t)) : null;
|
|
388
391
|
} catch (a) {
|
|
389
392
|
return console.warn("extractDataSource fail", a), null;
|
|
390
393
|
}
|
|
391
394
|
}
|
|
392
|
-
const
|
|
395
|
+
const ge = /* @__PURE__ */ new Uint16Array(
|
|
393
396
|
// prettier-ignore
|
|
394
397
|
/* @__PURE__ */ 'ᵁ<Õıʊҝջאٵ۞ޢߖࠏઑඡ༉༦ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀𝔄rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀𝔸plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀𝒜ign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀𝔅pf;쀀𝔹eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀𝒞pĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀𝔇Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀𝔻ƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲϏϢϸontourIntegraìȹoɴ\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀𝒟rok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀𝔈rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀𝔼silon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲy;䐤r;쀀𝔉lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀𝔽All;戀riertrf;愱còJTabcdfgorstרׯؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀𝔊;拙pf;쀀𝔾eater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀𝒢;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀𝕀a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ߂ߐĀiyޱrc;䄴;䐙r;쀀𝔍pf;쀀𝕁ǣ߇\0ߌr;쀀𝒥rcy;䐈kcy;䐄HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶dil;䄶;䐚r;쀀𝔎pf;쀀𝕂cr;쀀𝒦րJTaceflmostࠥࠩࠬࡐࡣসে্ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४ĀnrࢃgleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀𝔏Ā;eঽা拘ftarrow;懚idot;䄿ƀnpwਖਛgȀLRlr৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀𝕃erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼અઋp;椅y;䐜Ādl੯iumSpace;恟lintrf;愳r;쀀𝔐nusPlus;戓pf;쀀𝕄cò੶;䎜ҀJacefostuણધભીଔଙඑඞcy;䐊cute;䅃ƀaeyહાron;䅇dil;䅅;䐝ƀgswે૰ativeƀMTV૨ediumSpace;怋hiĀcn૦ëeryThiîtedĀGLଆreaterGreateòٳessLesóੈLine;䀊r;쀀𝔑ȀBnptଢନଷreak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪௫ఄ಄ದൡඅ櫬Āoungruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater;EFGLSTஶஷ扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨setĀ;Eೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀𝒩ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂෛ෧ขภยา฿ไlig;䅒cute耻Ó䃓Āiyීrc耻Ô䃔;䐞blac;䅐r;쀀𝔒rave耻Ò䃒ƀaei෮ෲcr;䅌ga;䎩cron;䎟pf;쀀𝕆enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀𝒪ash耻Ø䃘iŬืde耻Õ䃕es;樷ml耻Ö䃖erĀBP๋Āar๐๓r;怾acĀek๚;揞et;掴arenthesis;揜ҀacfhilorsງຊຏຒດຝະrtialD;戂y;䐟r;쀀𝔓i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ檻cedesȀ;EST່້扺qual;檯lantEqual;扼ilde;找me;怳Ādpuct;戏ortionĀ;aȥl;戝Āci༁༆r;쀀𝒫;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀𝔔pf;愚cr;쀀𝒬BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL憒ar;懥eftArrow;懄eiling;按oǵ\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀𝔖ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»pArrow;憑gma;䎣allCircle;战pf;쀀𝕊ɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀𝒮ar;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄቕቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHcቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀𝔗ĀeiቻDzኀ\0ኇefore;戴a;䎘ĀcnኘkSpace;쀀 Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀𝕋ipleDot;惛Āctዖዛr;쀀𝒯rok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀𝔘rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻on;䅲f;쀀𝕌ЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀𝒰ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀𝔙pf;쀀𝕍cr;쀀𝒱dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀𝔚pf;쀀𝕎cr;쀀𝒲Ȁfiosᓋᓐᓒᓘr;쀀𝔛;䎞pf;쀀𝕏cr;쀀𝒳ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀𝔜pf;쀀𝕐cr;쀀𝒴ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtèa;䎖r;愨pf;愤cr;쀀𝒵ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀𝔞rave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀𝕒;Eaeiopᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;eᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀𝒶;䀪mpĀ;eᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰᝃᝈ០៦ᠹᡐᜍ᥈ᥰot;櫭ĀcrᛶkȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;tbrk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯᝳ;䎲;愶een;扬r;쀀𝔟gcostuvwឍឝឳេ៕៛ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀakoᠦᠵĀcn៲ᠣkƀlst֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀𝕓Ā;tᏋᡣom»Ꮜtie;拈DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ;敛;敘;攘;攔;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģbar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀𝒷mi;恏mĀ;elƀ;bhᥨᥩᥫ䁜;槅sub;柈ŬᥴlĀ;e怢t»pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭒\0᯽\0ᰌƀcprᦲute;䄇̀;abcdsᦿᧀᧄ᧕᧙戩nd;橄rcup;橉Āau᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀𝔠ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r;Ecefms᩠ᩢᩫ᪤᪪旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ\0\0aĀ;t䀬;䁀ƀ;fl戁îᅠeĀmxent»eóɍǧ\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀𝕔oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀𝒸Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯delprvw᭠᭬᭷ᮂᮬᯔarrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;pᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰻᰿ᱝᱩᱵᲞᲬᲷᴍᵻᶑᶫᶻ᷆᷍ròar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀𝔡arĀlrᲳᲵ»ࣜ»သʀaegsv᳂᳖᳜᳠mƀ;oș᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀𝕕ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀𝒹;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄĀDoḆᴴoôĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀𝔢ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀𝕖ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»ṺƀaeiἒἚls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀𝔣lig;耀filig;쀀fjƀaltῙῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀𝕗ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧\0耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀𝒻ࢀEabcdefgijlnorstv₂₉₥₰₴⃰℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽ƀ;qsؾٌlanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀𝔤Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀𝕘Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqrⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0proør;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀𝔥sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀𝕙bar;怕ƀclt≯≴≸r;쀀𝒽asè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀𝔦rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀𝕚a;䎹uest耻¿䂿Āci⎊⎏r;쀀𝒾nʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀𝔧ath;䈷pf;쀀𝕛ǣ⏬\0⏱r;쀀𝒿rcy;䑘kcy;䑔Ѐacfghjos␋␖␢ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀𝔨reen;䄸cy;䑅cy;䑜pf;쀀𝕜cr;쀀𝓀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼ròòΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonóquigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀𝔩Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀𝕝us;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀𝓁mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀𝔪o;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀𝕞Āct⣸⣽r;쀀𝓂pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roøurĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨íistĀ;sடr;쀀𝔫ȀEest⩦⩹⩼ƀ;qs⩭ƀ;qs⩴lanôií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀𝕟膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast⭕⭚⭟lleìl;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖchimpqu⮽⯍⯙⬄⯤⯯Ȁ;cerല⯆ഷ⯉uå;쀀𝓃ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭ååഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñĀ;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;cⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācrir;榿;쀀𝔬ͯ\0\0\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕⶥⶨrò᪀Āirⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀𝕠ƀaelⷔǒr;榷rp;榹;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ\0\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ脀¶;l䂶leìЃɩ\0\0m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀𝔭ƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳ᤈ⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀𝕡nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t⾴ïrel;抰Āci⿀⿅r;쀀𝓅;䏈ncsp;怈̀fiopsu⋢⿱r;쀀𝔮pf;쀀𝕢rime;恗cr;쀀𝓆ƀaeo⿸〉〓tĀei々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔ABHabcdefhilmnoprstuxけさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstwガクシスゼゾダッデナp;極Ā;fゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ìâヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀𝔯ĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘rrowĀ;tㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowóarpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓ròaòՑ;怏oustĀ;a㈞掱che»mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀𝕣us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀𝓇Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀𝔰Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì耻䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;qኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀𝕤aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀𝓈tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫwar;椪lig耻ß䃟㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rëƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀𝔱Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproøim»ኬsðኞĀas㚺㚮ðrn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀𝕥rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈadempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀𝓉;䑆cy;䑛rok;䅧Āio㞋㞎xôheadĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀𝔲rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀𝕦̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀𝓊ƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀𝔳tré㦮suĀbp㧯㧱»ജ»൙pf;쀀𝕧roðtré㦴Ācu㨆㨋r;쀀𝓋Ābp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀𝔴pf;쀀𝕨Ā;eᑹ㩦atèᑹcr;쀀𝓌ૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜtré៑r;쀀𝔵ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀𝕩imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀𝓍Āpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀𝔶cy;䑗pf;쀀𝕪cr;쀀𝓎Ācm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀𝔷cy;䐶grarr;懝pf;쀀𝕫cr;쀀𝓏Ājn㮅㮇;怍j;怌'.split("").map((e) => e.charCodeAt(0))
|
|
395
|
-
),
|
|
398
|
+
), ye = /* @__PURE__ */ new Uint16Array(
|
|
396
399
|
// prettier-ignore
|
|
397
400
|
/* @__PURE__ */ "Ȁaglq \x1Bɭ\0\0p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map((e) => e.charCodeAt(0))
|
|
398
401
|
);
|
|
399
402
|
var au;
|
|
400
|
-
const
|
|
403
|
+
const Se = /* @__PURE__ */ new Map([
|
|
401
404
|
[0, 65533],
|
|
402
405
|
// C1 Unicode control character reference replacements
|
|
403
406
|
[128, 8364],
|
|
@@ -434,30 +437,30 @@ const ye = /* @__PURE__ */ new Map([
|
|
|
434
437
|
return e > 65535 && (e -= 65536, u += String.fromCharCode(e >>> 10 & 1023 | 55296), e = 56320 | e & 1023), u += String.fromCharCode(e), u;
|
|
435
438
|
}
|
|
436
439
|
);
|
|
437
|
-
function
|
|
440
|
+
function Ie(e) {
|
|
438
441
|
var u;
|
|
439
|
-
return e >= 55296 && e <= 57343 || e > 1114111 ? 65533 : (u =
|
|
442
|
+
return e >= 55296 && e <= 57343 || e > 1114111 ? 65533 : (u = Se.get(e)) !== null && u !== void 0 ? u : e;
|
|
440
443
|
}
|
|
441
444
|
var k;
|
|
442
445
|
(function(e) {
|
|
443
446
|
e[e.NUM = 35] = "NUM", e[e.SEMI = 59] = "SEMI", e[e.EQUALS = 61] = "EQUALS", e[e.ZERO = 48] = "ZERO", e[e.NINE = 57] = "NINE", e[e.LOWER_A = 97] = "LOWER_A", e[e.LOWER_F = 102] = "LOWER_F", e[e.LOWER_X = 120] = "LOWER_X", e[e.LOWER_Z = 122] = "LOWER_Z", e[e.UPPER_A = 65] = "UPPER_A", e[e.UPPER_F = 70] = "UPPER_F", e[e.UPPER_Z = 90] = "UPPER_Z";
|
|
444
447
|
})(k || (k = {}));
|
|
445
|
-
const
|
|
446
|
-
var
|
|
448
|
+
const Ee = 32;
|
|
449
|
+
var M;
|
|
447
450
|
(function(e) {
|
|
448
451
|
e[e.VALUE_LENGTH = 49152] = "VALUE_LENGTH", e[e.BRANCH_LENGTH = 16256] = "BRANCH_LENGTH", e[e.JUMP_TABLE = 127] = "JUMP_TABLE";
|
|
449
|
-
})(
|
|
452
|
+
})(M || (M = {}));
|
|
450
453
|
function ru(e) {
|
|
451
454
|
return e >= k.ZERO && e <= k.NINE;
|
|
452
455
|
}
|
|
453
|
-
function
|
|
456
|
+
function ve(e) {
|
|
454
457
|
return e >= k.UPPER_A && e <= k.UPPER_F || e >= k.LOWER_A && e <= k.LOWER_F;
|
|
455
458
|
}
|
|
456
|
-
function
|
|
459
|
+
function we(e) {
|
|
457
460
|
return e >= k.UPPER_A && e <= k.UPPER_Z || e >= k.LOWER_A && e <= k.LOWER_Z || ru(e);
|
|
458
461
|
}
|
|
459
|
-
function
|
|
460
|
-
return e === k.EQUALS ||
|
|
462
|
+
function Ae(e) {
|
|
463
|
+
return e === k.EQUALS || we(e);
|
|
461
464
|
}
|
|
462
465
|
var N;
|
|
463
466
|
(function(e) {
|
|
@@ -467,7 +470,7 @@ var C;
|
|
|
467
470
|
(function(e) {
|
|
468
471
|
e[e.Legacy = 0] = "Legacy", e[e.Strict = 1] = "Strict", e[e.Attribute = 2] = "Attribute";
|
|
469
472
|
})(C || (C = {}));
|
|
470
|
-
class
|
|
473
|
+
class Te {
|
|
471
474
|
constructor(u, t, a) {
|
|
472
475
|
this.decodeTree = u, this.emitCodePoint = t, this.errors = a, this.state = N.EntityStart, this.consumed = 1, this.result = 0, this.treeIndex = 0, this.excess = 1, this.decodeMode = C.Strict;
|
|
473
476
|
}
|
|
@@ -510,7 +513,7 @@ class Ae {
|
|
|
510
513
|
* @returns The number of characters that were consumed, or -1 if the entity is incomplete.
|
|
511
514
|
*/
|
|
512
515
|
stateNumericStart(u, t) {
|
|
513
|
-
return t >= u.length ? -1 : (u.charCodeAt(t) |
|
|
516
|
+
return t >= u.length ? -1 : (u.charCodeAt(t) | Ee) === k.LOWER_X ? (this.state = N.NumericHex, this.consumed += 1, this.stateNumericHex(u, t + 1)) : (this.state = N.NumericDecimal, this.stateNumericDecimal(u, t));
|
|
514
517
|
}
|
|
515
518
|
addToNumericResult(u, t, a, i) {
|
|
516
519
|
if (t !== a) {
|
|
@@ -531,7 +534,7 @@ class Ae {
|
|
|
531
534
|
const a = t;
|
|
532
535
|
for (; t < u.length; ) {
|
|
533
536
|
const i = u.charCodeAt(t);
|
|
534
|
-
if (ru(i) ||
|
|
537
|
+
if (ru(i) || ve(i))
|
|
535
538
|
t += 1;
|
|
536
539
|
else
|
|
537
540
|
return this.addToNumericResult(u, a, t, 16), this.emitNumericEntity(i, 3);
|
|
@@ -579,7 +582,7 @@ class Ae {
|
|
|
579
582
|
this.consumed += 1;
|
|
580
583
|
else if (this.decodeMode === C.Strict)
|
|
581
584
|
return 0;
|
|
582
|
-
return this.emitCodePoint(
|
|
585
|
+
return this.emitCodePoint(Ie(this.result), this.consumed), this.errors && (u !== k.SEMI && this.errors.missingSemicolonAfterCharacterReference(), this.errors.validateNumericCharacterReference(this.result)), this.consumed;
|
|
583
586
|
}
|
|
584
587
|
/**
|
|
585
588
|
* Parses a named entity.
|
|
@@ -592,15 +595,15 @@ class Ae {
|
|
|
592
595
|
*/
|
|
593
596
|
stateNamedEntity(u, t) {
|
|
594
597
|
const { decodeTree: a } = this;
|
|
595
|
-
let i = a[this.treeIndex], s = (i &
|
|
598
|
+
let i = a[this.treeIndex], s = (i & M.VALUE_LENGTH) >> 14;
|
|
596
599
|
for (; t < u.length; t++, this.excess++) {
|
|
597
600
|
const r = u.charCodeAt(t);
|
|
598
|
-
if (this.treeIndex =
|
|
601
|
+
if (this.treeIndex = Ne(a, i, this.treeIndex + Math.max(1, s), r), this.treeIndex < 0)
|
|
599
602
|
return this.result === 0 || // If we are parsing an attribute
|
|
600
603
|
this.decodeMode === C.Attribute && // We shouldn't have consumed any characters after the entity,
|
|
601
604
|
(s === 0 || // And there should be no invalid characters.
|
|
602
|
-
|
|
603
|
-
if (i = a[this.treeIndex], s = (i &
|
|
605
|
+
Ae(r)) ? 0 : this.emitNotTerminatedNamedEntity();
|
|
606
|
+
if (i = a[this.treeIndex], s = (i & M.VALUE_LENGTH) >> 14, s !== 0) {
|
|
604
607
|
if (r === k.SEMI)
|
|
605
608
|
return this.emitNamedEntityData(this.treeIndex, s, this.consumed + this.excess);
|
|
606
609
|
this.decodeMode !== C.Strict && (this.result = this.treeIndex, this.consumed += this.excess, this.excess = 0);
|
|
@@ -615,7 +618,7 @@ class Ae {
|
|
|
615
618
|
*/
|
|
616
619
|
emitNotTerminatedNamedEntity() {
|
|
617
620
|
var u;
|
|
618
|
-
const { result: t, decodeTree: a } = this, i = (a[t] &
|
|
621
|
+
const { result: t, decodeTree: a } = this, i = (a[t] & M.VALUE_LENGTH) >> 14;
|
|
619
622
|
return this.emitNamedEntityData(t, i, this.consumed), (u = this.errors) === null || u === void 0 || u.missingSemicolonAfterCharacterReference(), this.consumed;
|
|
620
623
|
}
|
|
621
624
|
/**
|
|
@@ -629,7 +632,7 @@ class Ae {
|
|
|
629
632
|
*/
|
|
630
633
|
emitNamedEntityData(u, t, a) {
|
|
631
634
|
const { decodeTree: i } = this;
|
|
632
|
-
return this.emitCodePoint(t === 1 ? i[u] &
|
|
635
|
+
return this.emitCodePoint(t === 1 ? i[u] & ~M.VALUE_LENGTH : i[u + 1], a), t === 3 && this.emitCodePoint(i[u + 2], a), a;
|
|
633
636
|
}
|
|
634
637
|
/**
|
|
635
638
|
* Signal to the parser that the end of the input was reached.
|
|
@@ -655,23 +658,23 @@ class Ae {
|
|
|
655
658
|
}
|
|
656
659
|
}
|
|
657
660
|
}
|
|
658
|
-
function
|
|
659
|
-
const i = (u &
|
|
661
|
+
function Ne(e, u, t, a) {
|
|
662
|
+
const i = (u & M.BRANCH_LENGTH) >> 7, s = u & M.JUMP_TABLE;
|
|
660
663
|
if (i === 0)
|
|
661
664
|
return s !== 0 && a === s ? t : -1;
|
|
662
665
|
if (s) {
|
|
663
|
-
const
|
|
664
|
-
return
|
|
666
|
+
const f = a - s;
|
|
667
|
+
return f < 0 || f >= i ? -1 : e[t + f] - 1;
|
|
665
668
|
}
|
|
666
669
|
let r = t, n = r + i - 1;
|
|
667
670
|
for (; r <= n; ) {
|
|
668
|
-
const
|
|
671
|
+
const f = r + n >>> 1, c = e[f];
|
|
669
672
|
if (c < a)
|
|
670
|
-
r =
|
|
673
|
+
r = f + 1;
|
|
671
674
|
else if (c > a)
|
|
672
|
-
n =
|
|
675
|
+
n = f - 1;
|
|
673
676
|
else
|
|
674
|
-
return e[
|
|
677
|
+
return e[f + i];
|
|
675
678
|
}
|
|
676
679
|
return -1;
|
|
677
680
|
}
|
|
@@ -683,13 +686,13 @@ var d;
|
|
|
683
686
|
(function(e) {
|
|
684
687
|
e[e.Text = 1] = "Text", e[e.BeforeTagName = 2] = "BeforeTagName", e[e.InTagName = 3] = "InTagName", e[e.InSelfClosingTag = 4] = "InSelfClosingTag", e[e.BeforeClosingTagName = 5] = "BeforeClosingTagName", e[e.InClosingTagName = 6] = "InClosingTagName", e[e.AfterClosingTagName = 7] = "AfterClosingTagName", e[e.BeforeAttributeName = 8] = "BeforeAttributeName", e[e.InAttributeName = 9] = "InAttributeName", e[e.AfterAttributeName = 10] = "AfterAttributeName", e[e.BeforeAttributeValue = 11] = "BeforeAttributeValue", e[e.InAttributeValueDq = 12] = "InAttributeValueDq", e[e.InAttributeValueSq = 13] = "InAttributeValueSq", e[e.InAttributeValueNq = 14] = "InAttributeValueNq", e[e.BeforeDeclaration = 15] = "BeforeDeclaration", e[e.InDeclaration = 16] = "InDeclaration", e[e.InProcessingInstruction = 17] = "InProcessingInstruction", e[e.BeforeComment = 18] = "BeforeComment", e[e.CDATASequence = 19] = "CDATASequence", e[e.InSpecialComment = 20] = "InSpecialComment", e[e.InCommentLike = 21] = "InCommentLike", e[e.BeforeSpecialS = 22] = "BeforeSpecialS", e[e.BeforeSpecialT = 23] = "BeforeSpecialT", e[e.SpecialStartSequence = 24] = "SpecialStartSequence", e[e.InSpecialTag = 25] = "InSpecialTag", e[e.InEntity = 26] = "InEntity";
|
|
685
688
|
})(d || (d = {}));
|
|
686
|
-
function
|
|
689
|
+
function F(e) {
|
|
687
690
|
return e === h.Space || e === h.NewLine || e === h.Tab || e === h.FormFeed || e === h.CarriageReturn;
|
|
688
691
|
}
|
|
689
692
|
function Q(e) {
|
|
690
|
-
return e === h.Slash || e === h.Gt ||
|
|
693
|
+
return e === h.Slash || e === h.Gt || F(e);
|
|
691
694
|
}
|
|
692
|
-
function
|
|
695
|
+
function ke(e) {
|
|
693
696
|
return e >= h.LowerA && e <= h.LowerZ || e >= h.UpperA && e <= h.UpperZ;
|
|
694
697
|
}
|
|
695
698
|
var L;
|
|
@@ -725,9 +728,9 @@ const T = {
|
|
|
725
728
|
XmpEnd: new Uint8Array([60, 47, 120, 109, 112])
|
|
726
729
|
// `</xmp`
|
|
727
730
|
};
|
|
728
|
-
class
|
|
731
|
+
class Ve {
|
|
729
732
|
constructor({ xmlMode: u = !1, decodeEntities: t = !0 }, a) {
|
|
730
|
-
this.cbs = a, this.state = d.Text, this.buffer = "", this.sectionStart = 0, this.index = 0, this.entityStart = 0, this.baseState = d.Text, this.isSpecial = !1, this.running = !0, this.offset = 0, this.currentSequence = void 0, this.sequenceIndex = 0, this.xmlMode = u, this.decodeEntities = t, this.entityDecoder = new
|
|
733
|
+
this.cbs = a, this.state = d.Text, this.buffer = "", this.sectionStart = 0, this.index = 0, this.entityStart = 0, this.baseState = d.Text, this.isSpecial = !1, this.running = !0, this.offset = 0, this.currentSequence = void 0, this.sequenceIndex = 0, this.xmlMode = u, this.decodeEntities = t, this.entityDecoder = new Te(u ? ye : ge, (i, s) => this.emitCodePoint(i, s));
|
|
731
734
|
}
|
|
732
735
|
reset() {
|
|
733
736
|
this.state = d.Text, this.buffer = "", this.sectionStart = 0, this.index = 0, this.baseState = d.Text, this.currentSequence = void 0, this.running = !0, this.offset = 0;
|
|
@@ -766,7 +769,7 @@ class ke {
|
|
|
766
769
|
/** Look for an end tag. For <title> tags, also decode entities. */
|
|
767
770
|
stateInSpecialTag(u) {
|
|
768
771
|
if (this.sequenceIndex === this.currentSequence.length) {
|
|
769
|
-
if (u === h.Gt ||
|
|
772
|
+
if (u === h.Gt || F(u)) {
|
|
770
773
|
const t = this.index - this.currentSequence.length;
|
|
771
774
|
if (this.sectionStart < t) {
|
|
772
775
|
const a = this.index;
|
|
@@ -812,7 +815,7 @@ class ke {
|
|
|
812
815
|
* We allow anything that wouldn't end the tag.
|
|
813
816
|
*/
|
|
814
817
|
isTagStartChar(u) {
|
|
815
|
-
return this.xmlMode ? !Q(u) :
|
|
818
|
+
return this.xmlMode ? !Q(u) : ke(u);
|
|
816
819
|
}
|
|
817
820
|
startSpecial(u, t) {
|
|
818
821
|
this.isSpecial = !0, this.currentSequence = u, this.sequenceIndex = t, this.state = d.SpecialStartSequence;
|
|
@@ -831,28 +834,28 @@ class ke {
|
|
|
831
834
|
Q(u) && (this.cbs.onopentagname(this.sectionStart, this.index), this.sectionStart = -1, this.state = d.BeforeAttributeName, this.stateBeforeAttributeName(u));
|
|
832
835
|
}
|
|
833
836
|
stateBeforeClosingTagName(u) {
|
|
834
|
-
|
|
837
|
+
F(u) || (u === h.Gt ? this.state = d.Text : (this.state = this.isTagStartChar(u) ? d.InClosingTagName : d.InSpecialComment, this.sectionStart = this.index));
|
|
835
838
|
}
|
|
836
839
|
stateInClosingTagName(u) {
|
|
837
|
-
(u === h.Gt ||
|
|
840
|
+
(u === h.Gt || F(u)) && (this.cbs.onclosetag(this.sectionStart, this.index), this.sectionStart = -1, this.state = d.AfterClosingTagName, this.stateAfterClosingTagName(u));
|
|
838
841
|
}
|
|
839
842
|
stateAfterClosingTagName(u) {
|
|
840
843
|
(u === h.Gt || this.fastForwardTo(h.Gt)) && (this.state = d.Text, this.sectionStart = this.index + 1);
|
|
841
844
|
}
|
|
842
845
|
stateBeforeAttributeName(u) {
|
|
843
|
-
u === h.Gt ? (this.cbs.onopentagend(this.index), this.isSpecial ? (this.state = d.InSpecialTag, this.sequenceIndex = 0) : this.state = d.Text, this.sectionStart = this.index + 1) : u === h.Slash ? this.state = d.InSelfClosingTag :
|
|
846
|
+
u === h.Gt ? (this.cbs.onopentagend(this.index), this.isSpecial ? (this.state = d.InSpecialTag, this.sequenceIndex = 0) : this.state = d.Text, this.sectionStart = this.index + 1) : u === h.Slash ? this.state = d.InSelfClosingTag : F(u) || (this.state = d.InAttributeName, this.sectionStart = this.index);
|
|
844
847
|
}
|
|
845
848
|
stateInSelfClosingTag(u) {
|
|
846
|
-
u === h.Gt ? (this.cbs.onselfclosingtag(this.index), this.state = d.Text, this.sectionStart = this.index + 1, this.isSpecial = !1) :
|
|
849
|
+
u === h.Gt ? (this.cbs.onselfclosingtag(this.index), this.state = d.Text, this.sectionStart = this.index + 1, this.isSpecial = !1) : F(u) || (this.state = d.BeforeAttributeName, this.stateBeforeAttributeName(u));
|
|
847
850
|
}
|
|
848
851
|
stateInAttributeName(u) {
|
|
849
852
|
(u === h.Eq || Q(u)) && (this.cbs.onattribname(this.sectionStart, this.index), this.sectionStart = this.index, this.state = d.AfterAttributeName, this.stateAfterAttributeName(u));
|
|
850
853
|
}
|
|
851
854
|
stateAfterAttributeName(u) {
|
|
852
|
-
u === h.Eq ? this.state = d.BeforeAttributeValue : u === h.Slash || u === h.Gt ? (this.cbs.onattribend(L.NoValue, this.sectionStart), this.sectionStart = -1, this.state = d.BeforeAttributeName, this.stateBeforeAttributeName(u)) :
|
|
855
|
+
u === h.Eq ? this.state = d.BeforeAttributeValue : u === h.Slash || u === h.Gt ? (this.cbs.onattribend(L.NoValue, this.sectionStart), this.sectionStart = -1, this.state = d.BeforeAttributeName, this.stateBeforeAttributeName(u)) : F(u) || (this.cbs.onattribend(L.NoValue, this.sectionStart), this.state = d.InAttributeName, this.sectionStart = this.index);
|
|
853
856
|
}
|
|
854
857
|
stateBeforeAttributeValue(u) {
|
|
855
|
-
u === h.DoubleQuote ? (this.state = d.InAttributeValueDq, this.sectionStart = this.index + 1) : u === h.SingleQuote ? (this.state = d.InAttributeValueSq, this.sectionStart = this.index + 1) :
|
|
858
|
+
u === h.DoubleQuote ? (this.state = d.InAttributeValueDq, this.sectionStart = this.index + 1) : u === h.SingleQuote ? (this.state = d.InAttributeValueSq, this.sectionStart = this.index + 1) : F(u) || (this.sectionStart = this.index, this.state = d.InAttributeValueNq, this.stateInAttributeValueNoQuotes(u));
|
|
856
859
|
}
|
|
857
860
|
handleInAttributeValue(u, t) {
|
|
858
861
|
u === t || !this.decodeEntities && this.fastForwardTo(t) ? (this.cbs.onattribdata(this.sectionStart, this.index), this.sectionStart = -1, this.cbs.onattribend(t === h.DoubleQuote ? L.Double : L.Single, this.index + 1), this.state = d.BeforeAttributeName) : this.decodeEntities && u === h.Amp && this.startEntity();
|
|
@@ -864,7 +867,7 @@ class ke {
|
|
|
864
867
|
this.handleInAttributeValue(u, h.SingleQuote);
|
|
865
868
|
}
|
|
866
869
|
stateInAttributeValueNoQuotes(u) {
|
|
867
|
-
|
|
870
|
+
F(u) || u === h.Gt ? (this.cbs.onattribdata(this.sectionStart, this.index), this.sectionStart = -1, this.cbs.onattribend(L.Unquoted, this.index), this.state = d.BeforeAttributeName, this.stateBeforeAttributeName(u)) : this.decodeEntities && u === h.Amp && this.startEntity();
|
|
868
871
|
}
|
|
869
872
|
stateBeforeDeclaration(u) {
|
|
870
873
|
u === h.OpeningSquareBracket ? (this.state = d.CDATASequence, this.sequenceIndex = 0) : this.state = u === h.Dash ? d.BeforeComment : d.InDeclaration;
|
|
@@ -1049,7 +1052,7 @@ class ke {
|
|
|
1049
1052
|
this.baseState !== d.Text && this.baseState !== d.InSpecialTag ? (this.sectionStart < this.entityStart && this.cbs.onattribdata(this.sectionStart, this.entityStart), this.sectionStart = this.entityStart + t, this.index = this.sectionStart - 1, this.cbs.onattribentity(u)) : (this.sectionStart < this.entityStart && this.cbs.ontext(this.sectionStart, this.entityStart), this.sectionStart = this.entityStart + t, this.index = this.sectionStart - 1, this.cbs.ontextentity(u, this.sectionStart));
|
|
1050
1053
|
}
|
|
1051
1054
|
}
|
|
1052
|
-
const
|
|
1055
|
+
const G = /* @__PURE__ */ new Set([
|
|
1053
1056
|
"input",
|
|
1054
1057
|
"option",
|
|
1055
1058
|
"optgroup",
|
|
@@ -1057,7 +1060,7 @@ const H = /* @__PURE__ */ new Set([
|
|
|
1057
1060
|
"button",
|
|
1058
1061
|
"datalist",
|
|
1059
1062
|
"textarea"
|
|
1060
|
-
]), E = /* @__PURE__ */ new Set(["p"]), Iu = /* @__PURE__ */ new Set(["thead", "tbody"]), Eu = /* @__PURE__ */ new Set(["dd", "dt"]), vu = /* @__PURE__ */ new Set(["rt", "rp"]),
|
|
1063
|
+
]), E = /* @__PURE__ */ new Set(["p"]), Iu = /* @__PURE__ */ new Set(["thead", "tbody"]), Eu = /* @__PURE__ */ new Set(["dd", "dt"]), vu = /* @__PURE__ */ new Set(["rt", "rp"]), qe = /* @__PURE__ */ new Map([
|
|
1061
1064
|
["tr", /* @__PURE__ */ new Set(["tr", "th", "td"])],
|
|
1062
1065
|
["th", /* @__PURE__ */ new Set(["th"])],
|
|
1063
1066
|
["td", /* @__PURE__ */ new Set(["thead", "th", "td"])],
|
|
@@ -1070,12 +1073,12 @@ const H = /* @__PURE__ */ new Set([
|
|
|
1070
1073
|
["h4", E],
|
|
1071
1074
|
["h5", E],
|
|
1072
1075
|
["h6", E],
|
|
1073
|
-
["select",
|
|
1074
|
-
["input",
|
|
1075
|
-
["output",
|
|
1076
|
-
["button",
|
|
1077
|
-
["datalist",
|
|
1078
|
-
["textarea",
|
|
1076
|
+
["select", G],
|
|
1077
|
+
["input", G],
|
|
1078
|
+
["output", G],
|
|
1079
|
+
["button", G],
|
|
1080
|
+
["datalist", G],
|
|
1081
|
+
["textarea", G],
|
|
1079
1082
|
["option", /* @__PURE__ */ new Set(["option"])],
|
|
1080
1083
|
["optgroup", /* @__PURE__ */ new Set(["optgroup", "option"])],
|
|
1081
1084
|
["dd", Eu],
|
|
@@ -1105,7 +1108,7 @@ const H = /* @__PURE__ */ new Set([
|
|
|
1105
1108
|
["rp", vu],
|
|
1106
1109
|
["tbody", Iu],
|
|
1107
1110
|
["tfoot", Iu]
|
|
1108
|
-
]),
|
|
1111
|
+
]), Re = /* @__PURE__ */ new Set([
|
|
1109
1112
|
"area",
|
|
1110
1113
|
"base",
|
|
1111
1114
|
"basefont",
|
|
@@ -1135,11 +1138,11 @@ const H = /* @__PURE__ */ new Set([
|
|
|
1135
1138
|
"foreignobject",
|
|
1136
1139
|
"desc",
|
|
1137
1140
|
"title"
|
|
1138
|
-
]),
|
|
1139
|
-
class
|
|
1141
|
+
]), je = /\s|\//;
|
|
1142
|
+
class De {
|
|
1140
1143
|
constructor(u, t = {}) {
|
|
1141
|
-
var a, i, s, r, n,
|
|
1142
|
-
this.options = t, this.startIndex = 0, this.endIndex = 0, this.openTagStart = 0, this.tagname = "", this.attribname = "", this.attribvalue = "", this.attribs = null, this.stack = [], this.buffers = [], this.bufferOffset = 0, this.writeIndex = 0, this.ended = !1, this.cbs = u ?? {}, this.htmlMode = !this.options.xmlMode, this.lowerCaseTagNames = (a = t.lowerCaseTags) !== null && a !== void 0 ? a : this.htmlMode, this.lowerCaseAttributeNames = (i = t.lowerCaseAttributeNames) !== null && i !== void 0 ? i : this.htmlMode, this.recognizeSelfClosing = (s = t.recognizeSelfClosing) !== null && s !== void 0 ? s : !this.htmlMode, this.tokenizer = new ((r = t.Tokenizer) !== null && r !== void 0 ? r :
|
|
1144
|
+
var a, i, s, r, n, f;
|
|
1145
|
+
this.options = t, this.startIndex = 0, this.endIndex = 0, this.openTagStart = 0, this.tagname = "", this.attribname = "", this.attribvalue = "", this.attribs = null, this.stack = [], this.buffers = [], this.bufferOffset = 0, this.writeIndex = 0, this.ended = !1, this.cbs = u ?? {}, this.htmlMode = !this.options.xmlMode, this.lowerCaseTagNames = (a = t.lowerCaseTags) !== null && a !== void 0 ? a : this.htmlMode, this.lowerCaseAttributeNames = (i = t.lowerCaseAttributeNames) !== null && i !== void 0 ? i : this.htmlMode, this.recognizeSelfClosing = (s = t.recognizeSelfClosing) !== null && s !== void 0 ? s : !this.htmlMode, this.tokenizer = new ((r = t.Tokenizer) !== null && r !== void 0 ? r : Ve)(this.options, this), this.foreignContext = [!this.htmlMode], (f = (n = this.cbs).onparserinit) === null || f === void 0 || f.call(n, this);
|
|
1143
1146
|
}
|
|
1144
1147
|
// Tokenizer event handlers
|
|
1145
1148
|
/** @internal */
|
|
@@ -1158,7 +1161,7 @@ class je {
|
|
|
1158
1161
|
* to specify your own additional void elements.
|
|
1159
1162
|
*/
|
|
1160
1163
|
isVoidElement(u) {
|
|
1161
|
-
return this.htmlMode &&
|
|
1164
|
+
return this.htmlMode && Re.has(u);
|
|
1162
1165
|
}
|
|
1163
1166
|
/** @internal */
|
|
1164
1167
|
onopentagname(u, t) {
|
|
@@ -1169,7 +1172,7 @@ class je {
|
|
|
1169
1172
|
emitOpenTag(u) {
|
|
1170
1173
|
var t, a, i, s;
|
|
1171
1174
|
this.openTagStart = this.startIndex, this.tagname = u;
|
|
1172
|
-
const r = this.htmlMode &&
|
|
1175
|
+
const r = this.htmlMode && qe.get(u);
|
|
1173
1176
|
if (r)
|
|
1174
1177
|
for (; this.stack.length > 0 && r.has(this.stack[0]); ) {
|
|
1175
1178
|
const n = this.stack.shift();
|
|
@@ -1187,19 +1190,19 @@ class je {
|
|
|
1187
1190
|
}
|
|
1188
1191
|
/** @internal */
|
|
1189
1192
|
onclosetag(u, t) {
|
|
1190
|
-
var a, i, s, r, n,
|
|
1193
|
+
var a, i, s, r, n, f, c, o;
|
|
1191
1194
|
this.endIndex = t;
|
|
1192
|
-
let
|
|
1193
|
-
if (this.lowerCaseTagNames && (
|
|
1194
|
-
this.htmlMode &&
|
|
1195
|
+
let l = this.getSlice(u, t);
|
|
1196
|
+
if (this.lowerCaseTagNames && (l = l.toLowerCase()), this.htmlMode && (wu.has(l) || Au.has(l)) && this.foreignContext.shift(), this.isVoidElement(l))
|
|
1197
|
+
this.htmlMode && l === "br" && ((r = (s = this.cbs).onopentagname) === null || r === void 0 || r.call(s, "br"), (f = (n = this.cbs).onopentag) === null || f === void 0 || f.call(n, "br", {}, !0), (o = (c = this.cbs).onclosetag) === null || o === void 0 || o.call(c, "br", !1));
|
|
1195
1198
|
else {
|
|
1196
|
-
const m = this.stack.indexOf(
|
|
1199
|
+
const m = this.stack.indexOf(l);
|
|
1197
1200
|
if (m !== -1)
|
|
1198
1201
|
for (let p = 0; p <= m; p++) {
|
|
1199
1202
|
const v = this.stack.shift();
|
|
1200
1203
|
(i = (a = this.cbs).onclosetag) === null || i === void 0 || i.call(a, v, p !== m);
|
|
1201
1204
|
}
|
|
1202
|
-
else this.htmlMode &&
|
|
1205
|
+
else this.htmlMode && l === "p" && (this.emitOpenTag("p"), this.closeCurrentTag(!0));
|
|
1203
1206
|
}
|
|
1204
1207
|
this.startIndex = t + 1;
|
|
1205
1208
|
}
|
|
@@ -1232,7 +1235,7 @@ class je {
|
|
|
1232
1235
|
this.endIndex = t, (i = (a = this.cbs).onattribute) === null || i === void 0 || i.call(a, this.attribname, this.attribvalue, u === L.Double ? '"' : u === L.Single ? "'" : u === L.NoValue ? void 0 : null), this.attribs && !Object.prototype.hasOwnProperty.call(this.attribs, this.attribname) && (this.attribs[this.attribname] = this.attribvalue), this.attribvalue = "";
|
|
1233
1236
|
}
|
|
1234
1237
|
getInstructionName(u) {
|
|
1235
|
-
const t = u.search(
|
|
1238
|
+
const t = u.search(je);
|
|
1236
1239
|
let a = t < 0 ? u : u.substr(0, t);
|
|
1237
1240
|
return this.lowerCaseTagNames && (a = a.toLowerCase()), a;
|
|
1238
1241
|
}
|
|
@@ -1263,10 +1266,10 @@ class je {
|
|
|
1263
1266
|
}
|
|
1264
1267
|
/** @internal */
|
|
1265
1268
|
oncdata(u, t, a) {
|
|
1266
|
-
var i, s, r, n,
|
|
1269
|
+
var i, s, r, n, f, c, o, l, m, p;
|
|
1267
1270
|
this.endIndex = t;
|
|
1268
1271
|
const v = this.getSlice(u, t - a);
|
|
1269
|
-
!this.htmlMode || this.options.recognizeCDATA ? ((s = (i = this.cbs).oncdatastart) === null || s === void 0 || s.call(i), (n = (r = this.cbs).ontext) === null || n === void 0 || n.call(r, v), (c = (
|
|
1272
|
+
!this.htmlMode || this.options.recognizeCDATA ? ((s = (i = this.cbs).oncdatastart) === null || s === void 0 || s.call(i), (n = (r = this.cbs).ontext) === null || n === void 0 || n.call(r, v), (c = (f = this.cbs).oncdataend) === null || c === void 0 || c.call(f)) : ((l = (o = this.cbs).oncomment) === null || l === void 0 || l.call(o, `[CDATA[${v}]]`), (p = (m = this.cbs).oncommentend) === null || p === void 0 || p.call(m)), this.startIndex = t + 1;
|
|
1270
1273
|
}
|
|
1271
1274
|
/** @internal */
|
|
1272
1275
|
onend() {
|
|
@@ -1367,33 +1370,33 @@ class je {
|
|
|
1367
1370
|
function Tu(e, u = "web") {
|
|
1368
1371
|
const t = { name: "", children: [] }, a = [t];
|
|
1369
1372
|
let i = "";
|
|
1370
|
-
const s = new
|
|
1373
|
+
const s = new De(
|
|
1371
1374
|
{
|
|
1372
|
-
onopentag: (r, n,
|
|
1375
|
+
onopentag: (r, n, f) => {
|
|
1373
1376
|
const c = a[a.length - 1];
|
|
1374
1377
|
i.trim() && (Array.isArray(c.children) ? c.children.push({
|
|
1375
1378
|
name: "span",
|
|
1376
1379
|
children: i.trim()
|
|
1377
1380
|
}) : c.children = i.trim(), i = "");
|
|
1378
|
-
const
|
|
1381
|
+
const o = Object.entries(n || {}).reduce(
|
|
1379
1382
|
(m, p) => {
|
|
1380
1383
|
let [v = "", A = ""] = p;
|
|
1381
1384
|
return v && (m[v] = A), m;
|
|
1382
1385
|
},
|
|
1383
1386
|
{}
|
|
1384
1387
|
);
|
|
1385
|
-
|
|
1386
|
-
const
|
|
1388
|
+
o.style && (o.style = Du(o.style));
|
|
1389
|
+
const l = {
|
|
1387
1390
|
name: ju(r, u),
|
|
1388
|
-
props:
|
|
1391
|
+
props: o
|
|
1389
1392
|
};
|
|
1390
|
-
Array.isArray(c.children) ? c.children.push(
|
|
1393
|
+
Array.isArray(c.children) ? c.children.push(l) : c.children ? c.children = [
|
|
1391
1394
|
{
|
|
1392
1395
|
name: "span",
|
|
1393
1396
|
children: c.children
|
|
1394
1397
|
},
|
|
1395
|
-
|
|
1396
|
-
] : c.children = [
|
|
1398
|
+
l
|
|
1399
|
+
] : c.children = [l], f || a.push(l);
|
|
1397
1400
|
},
|
|
1398
1401
|
ontext: (r) => {
|
|
1399
1402
|
const n = r.trim();
|
|
@@ -1411,73 +1414,73 @@ function Tu(e, u = "web") {
|
|
|
1411
1414
|
);
|
|
1412
1415
|
return s.write(e.replace(/\\"/g, '"')), s.end(), t.children || [];
|
|
1413
1416
|
}
|
|
1414
|
-
function
|
|
1417
|
+
function Ce(e, u) {
|
|
1415
1418
|
const a = {
|
|
1416
|
-
imports:
|
|
1419
|
+
imports: Le(e),
|
|
1417
1420
|
emits: [],
|
|
1418
1421
|
errors: []
|
|
1419
|
-
}, i =
|
|
1422
|
+
}, i = z(e);
|
|
1420
1423
|
return eu(i, {
|
|
1421
1424
|
ExportDefaultDeclaration(s) {
|
|
1422
1425
|
const r = s.node.declaration;
|
|
1423
1426
|
if (r.type !== "CallExpression") return;
|
|
1424
1427
|
const n = r.arguments[0];
|
|
1425
1428
|
if (n?.type !== "ObjectExpression") return;
|
|
1426
|
-
const
|
|
1427
|
-
(
|
|
1429
|
+
const f = n.properties.filter(
|
|
1430
|
+
(l) => l.type === "ObjectProperty"
|
|
1428
1431
|
), c = n.properties.filter(
|
|
1429
|
-
(
|
|
1430
|
-
),
|
|
1431
|
-
(
|
|
1432
|
+
(l) => l.type == "ObjectMethod"
|
|
1433
|
+
), o = f.find(
|
|
1434
|
+
(l) => l.key.name === "computed"
|
|
1432
1435
|
);
|
|
1433
|
-
|
|
1434
|
-
for (const
|
|
1435
|
-
switch (
|
|
1436
|
+
o && (a.computed = Cu(o.value), a.watchers = Me(o.value));
|
|
1437
|
+
for (const l of f)
|
|
1438
|
+
switch (l.key.name) {
|
|
1436
1439
|
case "name":
|
|
1437
|
-
a.name =
|
|
1440
|
+
a.name = l.value.value;
|
|
1438
1441
|
break;
|
|
1439
1442
|
case "methods":
|
|
1440
|
-
a.handlers =
|
|
1441
|
-
|
|
1443
|
+
a.handlers = Oe(l.value), a.methods = $e(l.value), a.dataSources = Fe(
|
|
1444
|
+
l.value,
|
|
1442
1445
|
u
|
|
1443
1446
|
);
|
|
1444
1447
|
break;
|
|
1445
1448
|
case "watch":
|
|
1446
|
-
a.watch =
|
|
1447
|
-
|
|
1449
|
+
a.watch = Pe(
|
|
1450
|
+
l.value,
|
|
1448
1451
|
a.watchers
|
|
1449
1452
|
);
|
|
1450
1453
|
break;
|
|
1451
1454
|
case "props":
|
|
1452
|
-
a.props =
|
|
1455
|
+
a.props = Ge(l.value);
|
|
1453
1456
|
break;
|
|
1454
1457
|
case "inject":
|
|
1455
|
-
a.inject =
|
|
1458
|
+
a.inject = ze(l.value);
|
|
1456
1459
|
break;
|
|
1457
1460
|
case "expose":
|
|
1458
|
-
a.expose =
|
|
1461
|
+
a.expose = Je(l.value);
|
|
1459
1462
|
break;
|
|
1460
1463
|
case "directives":
|
|
1461
|
-
a.directives =
|
|
1464
|
+
a.directives = Ze(l.value);
|
|
1462
1465
|
break;
|
|
1463
1466
|
}
|
|
1464
|
-
for (const
|
|
1465
|
-
switch (
|
|
1467
|
+
for (const l of c)
|
|
1468
|
+
switch (l.key.name) {
|
|
1466
1469
|
case "setup":
|
|
1467
|
-
a.state =
|
|
1470
|
+
a.state = Be(l.body);
|
|
1468
1471
|
break;
|
|
1469
1472
|
}
|
|
1470
|
-
a.lifeCycles =
|
|
1473
|
+
a.lifeCycles = Ue(c);
|
|
1471
1474
|
},
|
|
1472
1475
|
CallExpression(s) {
|
|
1473
|
-
const r =
|
|
1476
|
+
const r = We(s.node);
|
|
1474
1477
|
if (r.length)
|
|
1475
1478
|
for (let n of r)
|
|
1476
1479
|
a.emits?.find((c) => c.name === n.name) || a.emits?.push(n);
|
|
1477
1480
|
}
|
|
1478
1481
|
}), a;
|
|
1479
1482
|
}
|
|
1480
|
-
function
|
|
1483
|
+
function Le(e) {
|
|
1481
1484
|
const u = /import\s+{(.+?)}\s+from\s+['"](.+?)['"]/g, t = /import\s+(.+?)\s+from\s+['"](.+?)['"]/g, a = /^{(.+?)}$/, i = [];
|
|
1482
1485
|
let s;
|
|
1483
1486
|
const r = e.replace(/\n/g, " ");
|
|
@@ -1485,19 +1488,19 @@ function Ce(e) {
|
|
|
1485
1488
|
const n = s[2] === "@element-plus/icons-vue" ? "@vtj/icons" : s[2];
|
|
1486
1489
|
i.push({
|
|
1487
1490
|
from: n,
|
|
1488
|
-
imports: s[1].split(",").map((
|
|
1491
|
+
imports: s[1].split(",").map((f) => f.trim())
|
|
1489
1492
|
});
|
|
1490
1493
|
}
|
|
1491
1494
|
for (; (s = t.exec(r)) !== null; ) {
|
|
1492
|
-
const n = s[1],
|
|
1495
|
+
const n = s[1], f = s[2];
|
|
1493
1496
|
n && !a.test(n) && i.push({
|
|
1494
|
-
from:
|
|
1497
|
+
from: f,
|
|
1495
1498
|
imports: n
|
|
1496
1499
|
});
|
|
1497
1500
|
}
|
|
1498
1501
|
return i;
|
|
1499
1502
|
}
|
|
1500
|
-
function
|
|
1503
|
+
function _e(e) {
|
|
1501
1504
|
for (const u of e.body)
|
|
1502
1505
|
if (u.type === "VariableDeclaration" && u.kind == "const") {
|
|
1503
1506
|
const { id: t, init: a } = u.declarations[0];
|
|
@@ -1506,36 +1509,36 @@ function Le(e) {
|
|
|
1506
1509
|
}
|
|
1507
1510
|
return null;
|
|
1508
1511
|
}
|
|
1509
|
-
function
|
|
1510
|
-
const u =
|
|
1512
|
+
function Be(e) {
|
|
1513
|
+
const u = _e(e);
|
|
1511
1514
|
if (!u) return {};
|
|
1512
1515
|
const t = {};
|
|
1513
1516
|
for (const a of u.properties) {
|
|
1514
1517
|
const { key: i, value: s } = a;
|
|
1515
1518
|
if (i.type === "Identifier") {
|
|
1516
|
-
const r =
|
|
1519
|
+
const r = P(s);
|
|
1517
1520
|
t[i.name] = q(r);
|
|
1518
1521
|
}
|
|
1519
1522
|
}
|
|
1520
1523
|
return t;
|
|
1521
1524
|
}
|
|
1522
|
-
function
|
|
1523
|
-
const { key: u, async: t, params: a, body: i } = e, s = a?.map((r) => r.type === "ObjectPattern" ? `{${r.properties.map((
|
|
1525
|
+
function U(e) {
|
|
1526
|
+
const { key: u, async: t, params: a, body: i } = e, s = a?.map((r) => r.type === "ObjectPattern" ? `{${r.properties.map((f) => f.key?.name || f.name).join(",")}}` : r.type === "AssignmentPattern" ? r.left.name + "=" + (r.right?.extra?.raw || "null") : r.name).join(", ");
|
|
1524
1527
|
if (u.type === "Identifier") {
|
|
1525
1528
|
const r = u.name;
|
|
1526
1529
|
let n = "{}";
|
|
1527
|
-
i && (n =
|
|
1528
|
-
const
|
|
1529
|
-
if (
|
|
1530
|
-
let p =
|
|
1530
|
+
i && (n = P(i) || "{}");
|
|
1531
|
+
const f = e.value;
|
|
1532
|
+
if (f && f.type === "CallExpression") {
|
|
1533
|
+
let p = P(f) || "";
|
|
1531
1534
|
p = p.replace("function () {", "() => {"), n = `{ return (${p})}`;
|
|
1532
1535
|
}
|
|
1533
|
-
const
|
|
1536
|
+
const o = `${t ? "async " : ""}(${s}) => ${n}`, l = r.startsWith("watcher_");
|
|
1534
1537
|
return {
|
|
1535
|
-
id:
|
|
1538
|
+
id: l ? r.replace("watcher_", "") : "",
|
|
1536
1539
|
name: r,
|
|
1537
|
-
watcher:
|
|
1538
|
-
exp: fu(
|
|
1540
|
+
watcher: l,
|
|
1541
|
+
exp: fu(o)
|
|
1539
1542
|
};
|
|
1540
1543
|
}
|
|
1541
1544
|
}
|
|
@@ -1543,24 +1546,24 @@ function Cu(e) {
|
|
|
1543
1546
|
if (!e) return {};
|
|
1544
1547
|
const u = {};
|
|
1545
1548
|
for (const t of e.properties) {
|
|
1546
|
-
const a =
|
|
1549
|
+
const a = U(t);
|
|
1547
1550
|
a && !a.watcher && !a.exp.value.includes("this.provider.createMock") && !a.exp.value.includes("this.provider.apis") && (u[a.name] = a.exp);
|
|
1548
1551
|
}
|
|
1549
1552
|
return u;
|
|
1550
1553
|
}
|
|
1551
|
-
function
|
|
1554
|
+
function Fe(e, u) {
|
|
1552
1555
|
if (!e) return {};
|
|
1553
1556
|
const t = {}, a = /apis\[\'([\w]*)\'\]/, i = /\.then\(([\w\W]*)\)/;
|
|
1554
1557
|
for (const s of e.properties) {
|
|
1555
|
-
const r =
|
|
1558
|
+
const r = U(s), n = s.body.body?.[0], f = (n?.leadingComments?.[0].value || "").trim(), c = xe(f);
|
|
1556
1559
|
if (r && r.exp.value.includes("this.provider.apis")) {
|
|
1557
|
-
const
|
|
1558
|
-
if (!
|
|
1559
|
-
const m =
|
|
1560
|
+
const l = (r.exp.value.match(a) || [])[1];
|
|
1561
|
+
if (!l) continue;
|
|
1562
|
+
const m = Xe(u, l);
|
|
1560
1563
|
if (!m) continue;
|
|
1561
1564
|
const p = r.exp.value.match(i)?.[1];
|
|
1562
1565
|
t[r.name] = {
|
|
1563
|
-
ref:
|
|
1566
|
+
ref: l,
|
|
1564
1567
|
name: r.name,
|
|
1565
1568
|
test: c?.test || {
|
|
1566
1569
|
type: "JSFunction",
|
|
@@ -1580,7 +1583,7 @@ function Be(e, u) {
|
|
|
1580
1583
|
};
|
|
1581
1584
|
}
|
|
1582
1585
|
if (r && r.exp.value.includes("this.provider.createMock")) {
|
|
1583
|
-
const
|
|
1586
|
+
const o = n?.declarations?.[0]?.init?.arguments?.[0], l = r.exp.value.match(i)?.[1];
|
|
1584
1587
|
t[r.name] = {
|
|
1585
1588
|
ref: "",
|
|
1586
1589
|
name: r.name,
|
|
@@ -1594,26 +1597,26 @@ function Be(e, u) {
|
|
|
1594
1597
|
label: c?.label || "",
|
|
1595
1598
|
transform: c?.transform || {
|
|
1596
1599
|
type: "JSFunction",
|
|
1597
|
-
value:
|
|
1600
|
+
value: l || `(res) => {
|
|
1598
1601
|
return res;
|
|
1599
1602
|
}`
|
|
1600
1603
|
},
|
|
1601
1604
|
mockTemplate: c?.mockTemplate || {
|
|
1602
1605
|
type: "JSFunction",
|
|
1603
|
-
value:
|
|
1606
|
+
value: o ? P(o) : ""
|
|
1604
1607
|
}
|
|
1605
1608
|
};
|
|
1606
1609
|
}
|
|
1607
1610
|
}
|
|
1608
1611
|
return t;
|
|
1609
1612
|
}
|
|
1610
|
-
function
|
|
1613
|
+
function $e(e) {
|
|
1611
1614
|
const u = Cu(e), t = /\_([\w]{5,})$/, a = {};
|
|
1612
1615
|
for (const i of Object.keys(u))
|
|
1613
1616
|
t.test(i) || (a[i] = u[i]);
|
|
1614
1617
|
return a;
|
|
1615
1618
|
}
|
|
1616
|
-
function
|
|
1619
|
+
function Oe(e) {
|
|
1617
1620
|
if (!e) return {};
|
|
1618
1621
|
const u = {}, t = /\_([\w]{5,})$/;
|
|
1619
1622
|
for (const a of e.properties) {
|
|
@@ -1621,23 +1624,23 @@ function $e(e) {
|
|
|
1621
1624
|
if (t.test(i))
|
|
1622
1625
|
try {
|
|
1623
1626
|
if (a.body.body[0]?.argument) {
|
|
1624
|
-
const s =
|
|
1627
|
+
const s = P(
|
|
1625
1628
|
a.body.body[0].argument.callee.object
|
|
1626
1629
|
);
|
|
1627
1630
|
u[i] = fu(s);
|
|
1628
1631
|
} else
|
|
1629
|
-
u[i] =
|
|
1632
|
+
u[i] = U(a)?.exp;
|
|
1630
1633
|
} catch (s) {
|
|
1631
1634
|
console.warn(s);
|
|
1632
1635
|
}
|
|
1633
1636
|
}
|
|
1634
1637
|
return u;
|
|
1635
1638
|
}
|
|
1636
|
-
function
|
|
1639
|
+
function Me(e) {
|
|
1637
1640
|
if (!e) return {};
|
|
1638
1641
|
const u = {};
|
|
1639
1642
|
for (const t of e.properties) {
|
|
1640
|
-
const a =
|
|
1643
|
+
const a = U(t);
|
|
1641
1644
|
a && a.watcher && (u[a.name] = a.exp);
|
|
1642
1645
|
}
|
|
1643
1646
|
return u;
|
|
@@ -1655,9 +1658,9 @@ function Nu(e, u) {
|
|
|
1655
1658
|
(a) => a.key?.name === u
|
|
1656
1659
|
);
|
|
1657
1660
|
if (t)
|
|
1658
|
-
return
|
|
1661
|
+
return U(t)?.exp;
|
|
1659
1662
|
}
|
|
1660
|
-
function
|
|
1663
|
+
function Pe(e, u = {}) {
|
|
1661
1664
|
const t = [];
|
|
1662
1665
|
for (const a of e.properties) {
|
|
1663
1666
|
const { key: i, value: s } = a, r = i.value || i.name || "";
|
|
@@ -1678,7 +1681,7 @@ function Me(e, u = {}) {
|
|
|
1678
1681
|
},
|
|
1679
1682
|
deep: !1,
|
|
1680
1683
|
immediate: !1,
|
|
1681
|
-
handler:
|
|
1684
|
+
handler: U(a)?.exp
|
|
1682
1685
|
}), a.type === "ObjectProperty") {
|
|
1683
1686
|
const n = s.properties;
|
|
1684
1687
|
t.push({
|
|
@@ -1695,18 +1698,18 @@ function Me(e, u = {}) {
|
|
|
1695
1698
|
}
|
|
1696
1699
|
return t;
|
|
1697
1700
|
}
|
|
1698
|
-
function
|
|
1701
|
+
function Ue(e) {
|
|
1699
1702
|
const u = {};
|
|
1700
1703
|
for (const t of e) {
|
|
1701
1704
|
const a = t.key.name;
|
|
1702
|
-
if (
|
|
1703
|
-
const i =
|
|
1705
|
+
if (fe.includes(a)) {
|
|
1706
|
+
const i = U(t);
|
|
1704
1707
|
i && (u[i.name] = i.exp);
|
|
1705
1708
|
}
|
|
1706
1709
|
}
|
|
1707
1710
|
return u;
|
|
1708
1711
|
}
|
|
1709
|
-
function
|
|
1712
|
+
function He(e) {
|
|
1710
1713
|
const u = e?.find(
|
|
1711
1714
|
(t) => t.key?.name === "type"
|
|
1712
1715
|
);
|
|
@@ -1718,9 +1721,9 @@ function _u(e) {
|
|
|
1718
1721
|
(t) => t.key?.name === "default"
|
|
1719
1722
|
);
|
|
1720
1723
|
if (u)
|
|
1721
|
-
return q(
|
|
1724
|
+
return q(P(u.value));
|
|
1722
1725
|
}
|
|
1723
|
-
function
|
|
1726
|
+
function Ge(e) {
|
|
1724
1727
|
if (!e) return [];
|
|
1725
1728
|
let u = [];
|
|
1726
1729
|
return e.type === "ArrayExpression" ? u = e.elements.map((t) => t.value) : e.type === "ObjectExpression" && (u = e.properties?.map((t) => {
|
|
@@ -1728,12 +1731,12 @@ function He(e) {
|
|
|
1728
1731
|
return {
|
|
1729
1732
|
name: a.name,
|
|
1730
1733
|
required: X(s, "required"),
|
|
1731
|
-
type:
|
|
1734
|
+
type: He(s),
|
|
1732
1735
|
default: _u(s)
|
|
1733
1736
|
};
|
|
1734
1737
|
})), u;
|
|
1735
1738
|
}
|
|
1736
|
-
function
|
|
1739
|
+
function We(e) {
|
|
1737
1740
|
const u = [];
|
|
1738
1741
|
if (e.callee.type === "MemberExpression" && e.callee.property?.name === "$emit") {
|
|
1739
1742
|
const [a, ...i] = (e.arguments || []).map(
|
|
@@ -1746,24 +1749,24 @@ function Ge(e) {
|
|
|
1746
1749
|
}
|
|
1747
1750
|
return u;
|
|
1748
1751
|
}
|
|
1749
|
-
function
|
|
1752
|
+
function ze(e) {
|
|
1750
1753
|
let u = [];
|
|
1751
1754
|
return e.type === "ObjectExpression" && (u = e.properties?.map((t) => {
|
|
1752
|
-
const { key: a, value: i } = t, s = i.properties, r = a.name, n = Lu(s, "from"),
|
|
1755
|
+
const { key: a, value: i } = t, s = i.properties, r = a.name, n = Lu(s, "from"), f = _u(s);
|
|
1753
1756
|
return {
|
|
1754
1757
|
name: r,
|
|
1755
1758
|
from: n || r,
|
|
1756
|
-
default:
|
|
1759
|
+
default: f
|
|
1757
1760
|
};
|
|
1758
1761
|
})), u;
|
|
1759
1762
|
}
|
|
1760
|
-
function
|
|
1763
|
+
function Je(e) {
|
|
1761
1764
|
return e && e.elements ? e.elements.map((u) => u?.type === "StringLiteral" ? u.value : "").filter((u) => !!u) : [];
|
|
1762
1765
|
}
|
|
1763
|
-
function
|
|
1766
|
+
function Xe(e, u) {
|
|
1764
1767
|
return (e.apis || []).find((t) => t.id === u || t.name === u);
|
|
1765
1768
|
}
|
|
1766
|
-
function
|
|
1769
|
+
function Ze(e) {
|
|
1767
1770
|
if (!e?.properties) return {};
|
|
1768
1771
|
const u = {};
|
|
1769
1772
|
for (const t of e.properties) {
|
|
@@ -1776,7 +1779,7 @@ function Xe(e) {
|
|
|
1776
1779
|
return u;
|
|
1777
1780
|
}
|
|
1778
1781
|
let cu = [], K = {}, Bu = {}, Fu = {}, $u = {}, Y = "web", Ou = [];
|
|
1779
|
-
function
|
|
1782
|
+
function Qe(e, u, t = "", a) {
|
|
1780
1783
|
return cu = [], K = {}, Bu = a?.handlers || {}, $u = a?.styles || {}, Y = a?.platform || "web", Ou = a?.imports || [], Fu = a?.directives || {}, {
|
|
1781
1784
|
nodes: (qu({
|
|
1782
1785
|
id: e,
|
|
@@ -1784,12 +1787,12 @@ function Ze(e, u, t = "", a) {
|
|
|
1784
1787
|
source: t,
|
|
1785
1788
|
isProd: !0,
|
|
1786
1789
|
slotted: !0
|
|
1787
|
-
}).ast?.children || []).map((n) =>
|
|
1790
|
+
}).ast?.children || []).map((n) => W(n)).filter((n) => !!n),
|
|
1788
1791
|
slots: cu,
|
|
1789
1792
|
context: K
|
|
1790
1793
|
};
|
|
1791
1794
|
}
|
|
1792
|
-
function
|
|
1795
|
+
function Ke(e) {
|
|
1793
1796
|
if (e.name === "slot") {
|
|
1794
1797
|
let u = "default";
|
|
1795
1798
|
const t = [];
|
|
@@ -1801,12 +1804,12 @@ function Qe(e) {
|
|
|
1801
1804
|
});
|
|
1802
1805
|
}
|
|
1803
1806
|
}
|
|
1804
|
-
function
|
|
1807
|
+
function Ye(e) {
|
|
1805
1808
|
const u = {};
|
|
1806
1809
|
for (const t of e) {
|
|
1807
1810
|
if (t.type === x.ATTRIBUTE)
|
|
1808
1811
|
if (t.name === "class") {
|
|
1809
|
-
const a = t.value?.content || "", i = /[\w]+_[\w]{5,}/, s = a.match(i)?.[0] || "", r = a.split(" ").filter((
|
|
1812
|
+
const a = t.value?.content || "", i = /[\w]+_[\w]{5,}/, s = a.match(i)?.[0] || "", r = a.split(" ").filter((f) => f !== s), n = $u[`.${s}`];
|
|
1810
1813
|
n && (u.style = n), r.length && (u.class = r.join(" "));
|
|
1811
1814
|
} else if (t.name === "style") {
|
|
1812
1815
|
const a = t.value?.content || "";
|
|
@@ -1815,7 +1818,7 @@ function Ke(e) {
|
|
|
1815
1818
|
u[t.name] = t.value?.content || "";
|
|
1816
1819
|
if (t.type === x.DIRECTIVE && t.name === "bind" && (t.exp?.type === x.SIMPLE_EXPRESSION && t.arg?.type === x.SIMPLE_EXPRESSION && (u[t.arg.content] = q(`(${t.exp.content})`)), t.exp?.type === x.COMPOUND_EXPRESSION && t.arg?.type === x.SIMPLE_EXPRESSION))
|
|
1817
1820
|
if (t.arg.content === "class" && u.class) {
|
|
1818
|
-
const a = t.exp.ast.type, i =
|
|
1821
|
+
const a = t.exp.ast.type, i = me(
|
|
1819
1822
|
u.class,
|
|
1820
1823
|
t.exp.loc.source,
|
|
1821
1824
|
a
|
|
@@ -1828,39 +1831,39 @@ function Ke(e) {
|
|
|
1828
1831
|
}
|
|
1829
1832
|
return u;
|
|
1830
1833
|
}
|
|
1831
|
-
function
|
|
1834
|
+
function u0(e = {}) {
|
|
1832
1835
|
const u = {};
|
|
1833
1836
|
for (const [t, a] of Object.entries(e))
|
|
1834
1837
|
u[t === "tap" ? "click" : t] = a;
|
|
1835
1838
|
return u;
|
|
1836
1839
|
}
|
|
1837
|
-
function
|
|
1840
|
+
function e0(e, u = {}) {
|
|
1838
1841
|
const t = {};
|
|
1839
1842
|
for (const a of e)
|
|
1840
1843
|
if (a.type === x.DIRECTIVE && a.name === "on" && a.arg?.type === x.SIMPLE_EXPRESSION) {
|
|
1841
1844
|
const i = a.modifiers.reduce(
|
|
1842
|
-
(
|
|
1845
|
+
(o, l) => (l.content && (o[l.content] = !0), o),
|
|
1843
1846
|
{}
|
|
1844
1847
|
);
|
|
1845
1848
|
let s = a.exp?.loc.source || "";
|
|
1846
1849
|
/\)$/.test(s) && (s = `($event) => { ${s} } `), s || (s = "() => {}");
|
|
1847
|
-
const n = new RegExp(`${a.arg.content}_[\\w]{5,}`),
|
|
1848
|
-
if (
|
|
1850
|
+
const n = new RegExp(`${a.arg.content}_[\\w]{5,}`), f = s.match(n)?.[0] || "", c = u[f];
|
|
1851
|
+
if (f && c)
|
|
1849
1852
|
t[a.arg.content] = {
|
|
1850
1853
|
name: a.arg.content,
|
|
1851
1854
|
handler: c,
|
|
1852
1855
|
modifiers: i
|
|
1853
1856
|
};
|
|
1854
1857
|
else {
|
|
1855
|
-
const
|
|
1858
|
+
const o = a.exp?.ast?.type === "AssignmentExpression";
|
|
1856
1859
|
t[a.arg.content] = {
|
|
1857
1860
|
name: a.arg.content,
|
|
1858
|
-
handler: fu(
|
|
1861
|
+
handler: fu(o ? `()=> {${s}}` : `(${s})`),
|
|
1859
1862
|
modifiers: i
|
|
1860
1863
|
};
|
|
1861
1864
|
}
|
|
1862
1865
|
}
|
|
1863
|
-
return
|
|
1866
|
+
return u0(t);
|
|
1864
1867
|
}
|
|
1865
1868
|
function Z(e, u) {
|
|
1866
1869
|
const t = [], a = ["if", "for", "model", "show", "bind", "html"];
|
|
@@ -1871,9 +1874,9 @@ function Z(e, u) {
|
|
|
1871
1874
|
name: r,
|
|
1872
1875
|
value: r === "vElse" ? !0 : q(n)
|
|
1873
1876
|
});
|
|
1874
|
-
const
|
|
1875
|
-
if (
|
|
1876
|
-
const c = Z(
|
|
1877
|
+
const f = e.children?.[0];
|
|
1878
|
+
if (f) {
|
|
1879
|
+
const c = Z(f);
|
|
1877
1880
|
t.push(...c);
|
|
1878
1881
|
}
|
|
1879
1882
|
}
|
|
@@ -1886,41 +1889,41 @@ function Z(e, u) {
|
|
|
1886
1889
|
}
|
|
1887
1890
|
}), e.type === x.ELEMENT) {
|
|
1888
1891
|
const i = e.props.filter(
|
|
1889
|
-
(
|
|
1890
|
-
), s = i.filter((
|
|
1891
|
-
s.length && s.forEach((
|
|
1892
|
+
(o) => o.type === x.DIRECTIVE
|
|
1893
|
+
), s = i.filter((o) => o.name === "model");
|
|
1894
|
+
s.length && s.forEach((o) => {
|
|
1892
1895
|
t.push({
|
|
1893
1896
|
name: "vModel",
|
|
1894
|
-
arg:
|
|
1895
|
-
value: q(
|
|
1897
|
+
arg: o.arg?.content,
|
|
1898
|
+
value: q(o.exp?.loc.source || "")
|
|
1896
1899
|
});
|
|
1897
1900
|
});
|
|
1898
|
-
const r = i.find((
|
|
1901
|
+
const r = i.find((o) => o.name === "show");
|
|
1899
1902
|
r && t.push({
|
|
1900
1903
|
name: "vShow",
|
|
1901
1904
|
value: q(r.exp?.loc.source || "")
|
|
1902
1905
|
});
|
|
1903
|
-
const n = i.find((
|
|
1906
|
+
const n = i.find((o) => o.name === "bind" && !o.arg);
|
|
1904
1907
|
n && t.push({
|
|
1905
1908
|
name: "vBind",
|
|
1906
1909
|
value: q(n.exp?.loc.source || "")
|
|
1907
1910
|
});
|
|
1908
|
-
const
|
|
1909
|
-
|
|
1911
|
+
const f = i.find((o) => o.name === "html");
|
|
1912
|
+
f && t.push({
|
|
1910
1913
|
name: "vHtml",
|
|
1911
|
-
value: q(
|
|
1914
|
+
value: q(f.exp?.loc.source || "")
|
|
1912
1915
|
});
|
|
1913
|
-
const c = i.filter((
|
|
1914
|
-
for (const
|
|
1915
|
-
const
|
|
1916
|
+
const c = i.filter((o) => !a.includes(o.name));
|
|
1917
|
+
for (const o of c) {
|
|
1918
|
+
const l = (o.modifiers || []).reduce(
|
|
1916
1919
|
(v, A) => (v[A.content] = !0, v),
|
|
1917
1920
|
{}
|
|
1918
|
-
), m =
|
|
1921
|
+
), m = o.arg?.content || void 0, p = Fu[o.name];
|
|
1919
1922
|
p && t.push({
|
|
1920
1923
|
name: p,
|
|
1921
|
-
value: q(
|
|
1924
|
+
value: q(o.exp?.loc.source || ""),
|
|
1922
1925
|
arg: m,
|
|
1923
|
-
modifiers:
|
|
1926
|
+
modifiers: l
|
|
1924
1927
|
});
|
|
1925
1928
|
}
|
|
1926
1929
|
}
|
|
@@ -1941,7 +1944,7 @@ function Mu(e) {
|
|
|
1941
1944
|
}
|
|
1942
1945
|
return u || su();
|
|
1943
1946
|
}
|
|
1944
|
-
function
|
|
1947
|
+
function t0(e) {
|
|
1945
1948
|
const u = /\.\/(.+?)\.vue/;
|
|
1946
1949
|
for (const { from: t, imports: a } of Ou) {
|
|
1947
1950
|
if (Array.isArray(a) && a.includes(e))
|
|
@@ -1973,23 +1976,23 @@ function nu(e, u) {
|
|
|
1973
1976
|
function iu(e, u, t, a) {
|
|
1974
1977
|
const i = {
|
|
1975
1978
|
name: ju(e.tag, Y),
|
|
1976
|
-
from:
|
|
1977
|
-
props:
|
|
1978
|
-
events:
|
|
1979
|
+
from: t0(e.tag),
|
|
1980
|
+
props: Ye(e.props),
|
|
1981
|
+
events: e0(e.props, Bu),
|
|
1979
1982
|
directives: Z(t || e, a)
|
|
1980
1983
|
};
|
|
1981
1984
|
i.id = Mu(e), nu(i, u);
|
|
1982
1985
|
const s = uu(i, e.children);
|
|
1983
|
-
return nu(i, u),
|
|
1986
|
+
return nu(i, u), Ke(s), s;
|
|
1984
1987
|
}
|
|
1985
|
-
function
|
|
1986
|
-
return e.map((t) =>
|
|
1988
|
+
function a0(e, u) {
|
|
1989
|
+
return e.map((t) => W(t, u, e));
|
|
1987
1990
|
}
|
|
1988
|
-
function
|
|
1991
|
+
function W(e, u, t) {
|
|
1989
1992
|
if (e.type === x.ELEMENT)
|
|
1990
1993
|
return iu(e, u);
|
|
1991
1994
|
if (e.type === x.IF)
|
|
1992
|
-
return
|
|
1995
|
+
return i0(e);
|
|
1993
1996
|
if (t && e.type === x.IF_BRANCH) {
|
|
1994
1997
|
const a = e.children.find(
|
|
1995
1998
|
(i) => i.type === x.ELEMENT || i.type === x.FOR
|
|
@@ -2052,14 +2055,14 @@ function uu(e, u = []) {
|
|
|
2052
2055
|
for (const s of a.children) {
|
|
2053
2056
|
const r = s.type === x.TEXT || s.type === x.TEXT_CALL ? {
|
|
2054
2057
|
name: "span",
|
|
2055
|
-
children:
|
|
2056
|
-
} :
|
|
2057
|
-
r && (Array.isArray(r) ? r : [r]).forEach((
|
|
2058
|
-
|
|
2058
|
+
children: W(s, e)
|
|
2059
|
+
} : W(s, e);
|
|
2060
|
+
r && (Array.isArray(r) ? r : [r]).forEach((f) => {
|
|
2061
|
+
ne(f) && i?.type === x.DIRECTIVE && (f.id = Mu(s), f.slot = {
|
|
2059
2062
|
name: i.arg?.content || "default",
|
|
2060
2063
|
params: i.exp?.identifiers || [],
|
|
2061
2064
|
scope: i.exp?.type === x.SIMPLE_EXPRESSION ? i.exp.content : ""
|
|
2062
|
-
}, nu(
|
|
2065
|
+
}, nu(f, e)), t.push(f);
|
|
2063
2066
|
});
|
|
2064
2067
|
}
|
|
2065
2068
|
} else if (a.type === x.JS_CALL_EXPRESSION) {
|
|
@@ -2069,10 +2072,10 @@ function uu(e, u = []) {
|
|
|
2069
2072
|
t.push(...s);
|
|
2070
2073
|
}
|
|
2071
2074
|
} else if (a.type === x.TEXT_CALL) {
|
|
2072
|
-
const i =
|
|
2075
|
+
const i = W(a, e);
|
|
2073
2076
|
i && (Array.isArray(i) ? t.push(...i) : t.push(i));
|
|
2074
2077
|
} else {
|
|
2075
|
-
const i =
|
|
2078
|
+
const i = W(a, e);
|
|
2076
2079
|
i && (Array.isArray(i) ? t.push(...i) : t.push(i));
|
|
2077
2080
|
}
|
|
2078
2081
|
if (t.length === 1) {
|
|
@@ -2082,24 +2085,24 @@ function uu(e, u = []) {
|
|
|
2082
2085
|
e.children = t.map((a) => typeof a == "string" ? { name: "span", children: a } : a);
|
|
2083
2086
|
return e;
|
|
2084
2087
|
}
|
|
2085
|
-
function
|
|
2088
|
+
function i0(e) {
|
|
2086
2089
|
const u = e.branches || [], t = u[0], a = t.children || [];
|
|
2087
2090
|
if (t?.isTemplateIf || a.length > 1 || a[0].type !== x.ELEMENT) {
|
|
2088
2091
|
const s = { name: "span", directives: Z(t, u) };
|
|
2089
2092
|
return uu(s, t.children);
|
|
2090
2093
|
} else
|
|
2091
|
-
return
|
|
2094
|
+
return a0(u);
|
|
2092
2095
|
}
|
|
2093
|
-
function
|
|
2096
|
+
function s0(e) {
|
|
2094
2097
|
const u = [], t = {}, a = [];
|
|
2095
2098
|
try {
|
|
2096
|
-
const i =
|
|
2099
|
+
const i = re.compileString(e, { charset: !1 })?.css || "", s = se.parse(i), r = /^.[\w]+_[\w]{5,}/;
|
|
2097
2100
|
for (const n of s.nodes)
|
|
2098
2101
|
if (n.type === "rule") {
|
|
2099
|
-
const
|
|
2102
|
+
const f = {};
|
|
2100
2103
|
r.test(n.selector) ? (n.nodes.forEach((c) => {
|
|
2101
|
-
c.type === "decl" && (
|
|
2102
|
-
}), t[n.selector] =
|
|
2104
|
+
c.type === "decl" && (f[c.prop] = c.value);
|
|
2105
|
+
}), t[n.selector] = f) : a.push(n.toString());
|
|
2103
2106
|
} else
|
|
2104
2107
|
a.push(n.toString());
|
|
2105
2108
|
} catch (i) {
|
|
@@ -2115,10 +2118,10 @@ function i0(e) {
|
|
|
2115
2118
|
}
|
|
2116
2119
|
const Pu = "arrow-double-left, arrow-double-right, contact, notes, records, cash-back-record, newspaper, discount, completed, user, description, list-switch, list-switching, link-o, miniprogram-o, qq, wechat-moments, weibo, cash-o, guide-o, invitation, shield-o, exchange, eye, enlarge, expand-o, eye-o, expand, filter-o, fire, fail, failure, fire-o, flag-o, font, font-o, gem-o, flower-o, gem, gift-card, friends, friends-o, gold-coin, gold-coin-o, good-job-o, gift, gift-o, gift-card-o, good-job, home-o, goods-collect, graphic, goods-collect-o, hot-o, info, hotel-o, info-o, hot-sale-o, hot, like, idcard, like-o, hot-sale, location-o, location, label, lock, label-o, map-marked, logistics, manager, more, live, manager-o, medal, more-o, music-o, music, new-arrival-o, medal-o, new-o, free-postage, newspaper-o, new-arrival, minus, orders-o, new, paid, notes-o, other-pay, pause-circle, pause, pause-circle-o, peer-pay, pending-payment, passed, plus, phone-circle-o, phone-o, printer, photo-fail, phone, photo-o, play-circle, play, phone-circle, point-gift-o, point-gift, play-circle-o, shrink, photo, qr, qr-invalid, question-o, revoke, replay, service, question, search, refund-o, service-o, scan, share, send-gift-o, share-o, setting, points, photograph, shop, shop-o, shop-collect-o, shop-collect, smile, shopping-cart-o, sign, sort, star-o, smile-comment-o, stop, stop-circle-o, smile-o, star, success, stop-circle, records-o, shopping-cart, tosend, todo-list, thumb-circle-o, thumb-circle, umbrella-circle, underway, upgrade, todo-list-o, tv-o, underway-o, user-o, vip-card-o, vip-card, send-gift, wap-home, wap-nav, volume-o, video, wap-home-o, volume, warning, weapp-nav, wechat-pay, wechat, setting-o, youzan-shield, warn-o, smile-comment, user-circle-o, video-o, add-square, add, arrow-down, arrow-up, arrow, after-sale, add-o, alipay, ascending, apps-o, aim, award, arrow-left, award-o, audio, bag-o, balance-list, back-top, bag, balance-pay, balance-o, bar-chart-o, bars, balance-list-o, birthday-cake-o, bookmark, bill, bell, browsing-history-o, browsing-history, bookmark-o, bulb-o, bullhorn-o, bill-o, calendar-o, brush-o, card, cart-o, cart-circle, cart-circle-o, cart, cash-on-deliver, cash-back-record-o, cashier-o, chart-trending-o, certificate, chat, clear, chat-o, checked, clock, clock-o, close, closed-eye, circle, cluster-o, column, comment-circle-o, cluster, comment, comment-o, comment-circle, completed-o, credit-pay, coupon, debit-pay, coupon-o, contact-o, descending, desktop-o, diamond-o, description-o, delete, diamond, delete-o, cross, edit, ellipsis, down, discount-o, ecard-pay, envelop-o".split(
|
|
2117
2120
|
", "
|
|
2118
|
-
),
|
|
2121
|
+
), r0 = "AddLocation, Aim, AlarmClock, Apple, ArrowDownBold, ArrowDown, ArrowLeftBold, ArrowLeft, ArrowRightBold, ArrowRight, ArrowUpBold, ArrowUp, Avatar, Back, Baseball, Basketball, BellFilled, Bell, Bicycle, BottomLeft, BottomRight, Bottom, Bowl, Box, Briefcase, BrushFilled, Brush, Burger, Calendar, CameraFilled, Camera, CaretBottom, CaretLeft, CaretRight, CaretTop, Cellphone, ChatDotRound, ChatDotSquare, ChatLineRound, ChatLineSquare, ChatRound, ChatSquare, Check, Checked, Cherry, Chicken, ChromeFilled, CircleCheckFilled, CircleCheck, CircleCloseFilled, CircleClose, CirclePlusFilled, CirclePlus, Clock, CloseBold, Close, Cloudy, CoffeeCup, Coffee, Coin, ColdDrink, CollectionTag, Collection, Comment, Compass, Connection, Coordinate, CopyDocument, Cpu, CreditCard, Crop, DArrowLeft, DArrowRight, DCaret, DataAnalysis, DataBoard, DataLine, DeleteFilled, DeleteLocation, Delete, Dessert, Discount, DishDot, Dish, DocumentAdd, DocumentChecked, DocumentCopy, DocumentDelete, DocumentRemove, Document, Download, Drizzling, EditPen, Edit, ElemeFilled, Eleme, ElementPlus, Expand, Failed, Female, Files, Film, Filter, Finished, FirstAidKit, Flag, Fold, FolderAdd, FolderChecked, FolderDelete, FolderOpened, FolderRemove, Folder, Food, Football, ForkSpoon, Fries, FullScreen, GobletFull, GobletSquareFull, GobletSquare, Goblet, GoldMedal, GoodsFilled, Goods, Grape, Grid, Guide, Handbag, Headset, HelpFilled, Help, Hide, Histogram, HomeFilled, HotWater, House, IceCreamRound, IceCreamSquare, IceCream, IceDrink, IceTea, InfoFilled, Iphone, Key, KnifeFork, Lightning, Link, List, Loading, LocationFilled, LocationInformation, Location, Lock, Lollipop, MagicStick, Magnet, Male, Management, MapLocation, Medal, Memo, Menu, MessageBox, Message, Mic, Microphone, MilkTea, Minus, Money, Monitor, MoonNight, Moon, MoreFilled, More, MostlyCloudy, Mouse, Mug, MuteNotification, Mute, NoSmoking, Notebook, Notification, Odometer, OfficeBuilding, Open, Operation, Opportunity, Orange, Paperclip, PartlyCloudy, Pear, PhoneFilled, Phone, PictureFilled, PictureRounded, Picture, PieChart, Place, Platform, Plus, Pointer, Position, Postcard, Pouring, Present, PriceTag, Printer, Promotion, QuartzWatch, QuestionFilled, Rank, ReadingLamp, Reading, RefreshLeft, RefreshRight, Refresh, Refrigerator, RemoveFilled, Remove, Right, ScaleToOriginal, School, Scissor, Search, Select, Sell, SemiSelect, Service, SetUp, Setting, Share, Ship, Shop, ShoppingBag, ShoppingCartFull, ShoppingCart, ShoppingTrolley, Smoking, Soccer, SoldOut, SortDown, SortUp, Sort, Stamp, StarFilled, Star, Stopwatch, SuccessFilled, Sugar, SuitcaseLine, Suitcase, Sunny, Sunrise, Sunset, SwitchButton, SwitchFilled, Switch, TakeawayBox, Ticket, Tickets, Timer, ToiletPaper, Tools, TopLeft, TopRight, Top, TrendCharts, TrophyBase, Trophy, TurnOff, Umbrella, Unlock, UploadFilled, Upload, UserFilled, User, Van, VideoCameraFilled, VideoCamera, VideoPause, VideoPlay, View, WalletFilled, Wallet, WarnTriangleFilled, WarningFilled, Warning, Watch, Watermelon, WindPower, ZoomIn, ZoomOut, VtjIconChatRecord, VtjIconNewChat, VtjIconAi, VtjIconUniapp, VtjIconWindowMax, VtjIconWindowMin, VtjIconWindowClose, VtjIconWindowNormal, VtjIconWindowDown, VtjIconWindowUp, VtjIconNpSave, VtjIconNpFile, VtjIconNpEdit, VtjIconNpShare, VtjIconNpSearch, VtjIconNpExport, VtjIconNpImport, VtjIconNpList, VtjIconNpPrint, VtjIconNpCancel, VtjIconNpConfirm, VtjIconNpReset, VtjIconNpReturnAll, VtjIconNpReturn, VtjIconNpRemove, VtjIconNpRemoveRow, VtjIconNpDelete, VtjIconNpExit, VtjIconNpRefresh, VtjIconNpAdd, VtjIconNpSelect, VtjIconNpAddRow, VtjIconNpExtend, VtjIconNpClose, VtjIconNpSubmit, VtjIconDeps, VtjIconBack, VtjIconHome, VtjIconApi, VtjIconExport, VtjIconImport, VtjIconGreater, VtjIconSmaller, VtjIconCheck, VtjIconSwitch, VtjIconCopy, VtjIconLock, VtjIconUnlock, VtjIconLayers, VtjIconConsole, VtjIconTeam, VtjIconPublish, VtjIconPreview, VtjIconSave, VtjIconPc, VtjIconPhone, VtjIconPad, VtjIconRedo, VtjIconRefresh, VtjIconUndo, VtjIconCategory, VtjIconProject, VtjIconNotice, VtjIconFav, VtjIconBug, VtjIconFile, VtjIconFolder, VtjIconUpload, VtjIconDownload, VtjIconUser, VtjIconSetting, VtjIconArrowRight, VtjIconArrowLeft, VtjIconArrowDown, VtjIconArrowUp, VtjIconShare, VtjIconData, VtjIconTemplate, VtjIconExitFullscreen, VtjIconFullscreen, VtjIconEdit, VtjIconRemove, VtjIconJs, VtjIconDatabase, VtjIconInfo, VtjIconPlus, VtjIconMinus, VtjIconHelp, VtjIconVars, VtjIconOutline, VtjIconVisible, VtjIconInvisible, VtjIconDocument, VtjIconHistory, VtjIconFixed, VtjIconUnfixed, VtjIconSearch, VtjIconMore, VtjIconClose, VtjIconComponents, VtjIconBlock".split(
|
|
2119
2122
|
", "
|
|
2120
|
-
),
|
|
2121
|
-
class
|
|
2123
|
+
), c0 = "user", j = "User";
|
|
2124
|
+
class n0 {
|
|
2122
2125
|
validate(u) {
|
|
2123
2126
|
const t = {
|
|
2124
2127
|
valid: !0,
|
|
@@ -2142,7 +2145,7 @@ class c0 {
|
|
|
2142
2145
|
let t = "";
|
|
2143
2146
|
try {
|
|
2144
2147
|
const a = D(u);
|
|
2145
|
-
|
|
2148
|
+
z(a.script);
|
|
2146
2149
|
} catch (a) {
|
|
2147
2150
|
a instanceof SyntaxError && (t = a.message);
|
|
2148
2151
|
}
|
|
@@ -2179,7 +2182,7 @@ class c0 {
|
|
|
2179
2182
|
checkVtjIcons(u) {
|
|
2180
2183
|
const t = this.findVtjIcons(u), a = [];
|
|
2181
2184
|
for (const i of t)
|
|
2182
|
-
|
|
2185
|
+
r0.includes(i) || a.push(i);
|
|
2183
2186
|
return a;
|
|
2184
2187
|
}
|
|
2185
2188
|
hasUnchangedComment(u) {
|
|
@@ -2194,7 +2197,7 @@ class c0 {
|
|
|
2194
2197
|
);
|
|
2195
2198
|
}
|
|
2196
2199
|
}
|
|
2197
|
-
function
|
|
2200
|
+
function o0(e) {
|
|
2198
2201
|
const u = [];
|
|
2199
2202
|
let t = e;
|
|
2200
2203
|
const a = D(e);
|
|
@@ -2205,14 +2208,14 @@ function n0(e) {
|
|
|
2205
2208
|
fixedCode: e,
|
|
2206
2209
|
changes: []
|
|
2207
2210
|
};
|
|
2208
|
-
const i =
|
|
2211
|
+
const i = d0(a.script), s = a.template;
|
|
2209
2212
|
let r = s;
|
|
2210
|
-
const n = [],
|
|
2213
|
+
const n = [], f = /\{\{([^}]+)\}\}/g;
|
|
2211
2214
|
let c;
|
|
2212
|
-
for (; (c =
|
|
2213
|
-
const b = c[0], S = c[1], I =
|
|
2215
|
+
for (; (c = f.exec(s)) !== null; ) {
|
|
2216
|
+
const b = c[0], S = c[1], I = O(S, i);
|
|
2214
2217
|
if (I !== S) {
|
|
2215
|
-
const g =
|
|
2218
|
+
const g = $(s, c.index);
|
|
2216
2219
|
n.push({
|
|
2217
2220
|
start: c.index,
|
|
2218
2221
|
end: c.index + b.length,
|
|
@@ -2229,11 +2232,11 @@ function n0(e) {
|
|
|
2229
2232
|
});
|
|
2230
2233
|
}
|
|
2231
2234
|
}
|
|
2232
|
-
const
|
|
2233
|
-
for (; (c =
|
|
2234
|
-
const b = c[0], S = c[1], I = c[2], g =
|
|
2235
|
+
const o = /:(\w+)="([^"]+)"/g;
|
|
2236
|
+
for (; (c = o.exec(s)) !== null; ) {
|
|
2237
|
+
const b = c[0], S = c[1], I = c[2], g = O(I, i);
|
|
2235
2238
|
if (g !== I) {
|
|
2236
|
-
const w =
|
|
2239
|
+
const w = $(s, c.index);
|
|
2237
2240
|
n.push({
|
|
2238
2241
|
start: c.index,
|
|
2239
2242
|
end: c.index + b.length,
|
|
@@ -2250,11 +2253,11 @@ function n0(e) {
|
|
|
2250
2253
|
});
|
|
2251
2254
|
}
|
|
2252
2255
|
}
|
|
2253
|
-
const
|
|
2254
|
-
for (; (c =
|
|
2255
|
-
const b = c[0], S = c[1], I = c[2], g =
|
|
2256
|
+
const l = /v-(if|else-if|show)="([^"]+)"/g;
|
|
2257
|
+
for (; (c = l.exec(s)) !== null; ) {
|
|
2258
|
+
const b = c[0], S = c[1], I = c[2], g = O(I, i);
|
|
2256
2259
|
if (g !== I) {
|
|
2257
|
-
const w =
|
|
2260
|
+
const w = $(s, c.index);
|
|
2258
2261
|
n.push({
|
|
2259
2262
|
start: c.index,
|
|
2260
2263
|
end: c.index + b.length,
|
|
@@ -2275,22 +2278,22 @@ function n0(e) {
|
|
|
2275
2278
|
for (; (c = m.exec(s)) !== null; ) {
|
|
2276
2279
|
const b = c[0], I = c[1].match(/^(.+)\s+in\s+(.+)$/);
|
|
2277
2280
|
if (I) {
|
|
2278
|
-
const [, g, w] = I, R =
|
|
2281
|
+
const [, g, w] = I, R = O(
|
|
2279
2282
|
w,
|
|
2280
2283
|
i
|
|
2281
2284
|
);
|
|
2282
2285
|
if (R !== w) {
|
|
2283
|
-
const
|
|
2286
|
+
const H = $(s, c.index), tu = `v-for="${g} in ${R}"`;
|
|
2284
2287
|
n.push({
|
|
2285
2288
|
start: c.index,
|
|
2286
2289
|
end: c.index + b.length,
|
|
2287
2290
|
original: b,
|
|
2288
2291
|
replacement: tu,
|
|
2289
|
-
line:
|
|
2290
|
-
column:
|
|
2292
|
+
line: H.line,
|
|
2293
|
+
column: H.column
|
|
2291
2294
|
}), u.push({
|
|
2292
|
-
line:
|
|
2293
|
-
column:
|
|
2295
|
+
line: H.line + 1,
|
|
2296
|
+
column: H.column,
|
|
2294
2297
|
original: w,
|
|
2295
2298
|
fixed: R,
|
|
2296
2299
|
message: "修复 v-for 指令:添加 state. 前缀"
|
|
@@ -2300,9 +2303,9 @@ function n0(e) {
|
|
|
2300
2303
|
}
|
|
2301
2304
|
const p = /v-model="([^"]+)"/g;
|
|
2302
2305
|
for (; (c = p.exec(s)) !== null; ) {
|
|
2303
|
-
const b = c[0], S = c[1], I =
|
|
2306
|
+
const b = c[0], S = c[1], I = O(S, i);
|
|
2304
2307
|
if (I !== S) {
|
|
2305
|
-
const g =
|
|
2308
|
+
const g = $(s, c.index);
|
|
2306
2309
|
n.push({
|
|
2307
2310
|
start: c.index,
|
|
2308
2311
|
end: c.index + b.length,
|
|
@@ -2321,9 +2324,9 @@ function n0(e) {
|
|
|
2321
2324
|
}
|
|
2322
2325
|
const v = /v-bind="([^"]+)"/g;
|
|
2323
2326
|
for (; (c = v.exec(s)) !== null; ) {
|
|
2324
|
-
const b = c[0], S = c[1], I =
|
|
2327
|
+
const b = c[0], S = c[1], I = O(S, i);
|
|
2325
2328
|
if (I !== S) {
|
|
2326
|
-
const g =
|
|
2329
|
+
const g = $(s, c.index);
|
|
2327
2330
|
n.push({
|
|
2328
2331
|
start: c.index,
|
|
2329
2332
|
end: c.index + b.length,
|
|
@@ -2342,9 +2345,9 @@ function n0(e) {
|
|
|
2342
2345
|
}
|
|
2343
2346
|
const A = /v-(text|html)="([^"]+)"/g;
|
|
2344
2347
|
for (; (c = A.exec(s)) !== null; ) {
|
|
2345
|
-
const b = c[0], S = c[1], I = c[2], g =
|
|
2348
|
+
const b = c[0], S = c[1], I = c[2], g = O(I, i);
|
|
2346
2349
|
if (g !== I) {
|
|
2347
|
-
const w =
|
|
2350
|
+
const w = $(s, c.index);
|
|
2348
2351
|
n.push({
|
|
2349
2352
|
start: c.index,
|
|
2350
2353
|
end: c.index + b.length,
|
|
@@ -2363,9 +2366,9 @@ function n0(e) {
|
|
|
2363
2366
|
}
|
|
2364
2367
|
const y = /(@|v-on:)(\w+)="([^"]+)"/g;
|
|
2365
2368
|
for (; (c = y.exec(s)) !== null; ) {
|
|
2366
|
-
const b = c[0], S = c[1], I = c[2], g = c[3], w =
|
|
2369
|
+
const b = c[0], S = c[1], I = c[2], g = c[3], w = f0(g, i);
|
|
2367
2370
|
if (w !== g) {
|
|
2368
|
-
const R =
|
|
2371
|
+
const R = $(s, c.index);
|
|
2369
2372
|
n.push({
|
|
2370
2373
|
start: c.index,
|
|
2371
2374
|
end: c.index + b.length,
|
|
@@ -2397,10 +2400,10 @@ function n0(e) {
|
|
|
2397
2400
|
changes: u
|
|
2398
2401
|
};
|
|
2399
2402
|
}
|
|
2400
|
-
function
|
|
2403
|
+
function d0(e) {
|
|
2401
2404
|
const u = /* @__PURE__ */ new Set();
|
|
2402
2405
|
try {
|
|
2403
|
-
const t =
|
|
2406
|
+
const t = z(e);
|
|
2404
2407
|
eu(t, {
|
|
2405
2408
|
CallExpression(a) {
|
|
2406
2409
|
if (a.node.callee.type === "Identifier" && a.node.callee.name === "reactive" && a.node.arguments.length > 0 && a.node.arguments[0].type === "ObjectExpression") {
|
|
@@ -2416,14 +2419,14 @@ function o0(e) {
|
|
|
2416
2419
|
}
|
|
2417
2420
|
return u;
|
|
2418
2421
|
}
|
|
2419
|
-
function
|
|
2422
|
+
function O(e, u) {
|
|
2420
2423
|
let t = e.trim();
|
|
2421
2424
|
return u.forEach((a) => {
|
|
2422
2425
|
const i = new RegExp(`(?<![\\w.])${a}(?![\\w])`, "g");
|
|
2423
2426
|
i.test(t) && !t.includes(`state.${a}`) && (t = t.replace(i, `state.${a}`));
|
|
2424
2427
|
}), t;
|
|
2425
2428
|
}
|
|
2426
|
-
function
|
|
2429
|
+
function f0(e, u) {
|
|
2427
2430
|
let t = e.trim();
|
|
2428
2431
|
return u.forEach((a) => {
|
|
2429
2432
|
const i = new RegExp(
|
|
@@ -2434,9 +2437,9 @@ function d0(e, u) {
|
|
|
2434
2437
|
"g"
|
|
2435
2438
|
);
|
|
2436
2439
|
t.includes(`state.${a}`) || (t = t.replace(i, `state.${a}$1`), t = t.replace(s, (r, n) => n ? `${n}state.${a}` : r.includes(a) && !r.includes("state.") ? `state.${a}` : r));
|
|
2437
|
-
}),
|
|
2440
|
+
}), O(t, u);
|
|
2438
2441
|
}
|
|
2439
|
-
function
|
|
2442
|
+
function $(e, u) {
|
|
2440
2443
|
const t = e.substring(0, u).split(`
|
|
2441
2444
|
`);
|
|
2442
2445
|
return {
|
|
@@ -2444,15 +2447,15 @@ function B(e, u) {
|
|
|
2444
2447
|
column: t[t.length - 1].length
|
|
2445
2448
|
};
|
|
2446
2449
|
}
|
|
2447
|
-
class
|
|
2450
|
+
class l0 {
|
|
2448
2451
|
fixBasedOnValidation(u, t) {
|
|
2449
2452
|
let a = u;
|
|
2450
|
-
return t.illegalVantIcons.length && (a = this.fixVantIcons(a)), t.illegalVtjIcons.length && (a = this.fixVtjIcons(a, t.illegalVtjIcons)),
|
|
2453
|
+
return t.illegalVantIcons.length && (a = this.fixVantIcons(a)), t.illegalVtjIcons.length && (a = this.fixVtjIcons(a, t.illegalVtjIcons)), o0(a).fixedCode;
|
|
2451
2454
|
}
|
|
2452
2455
|
fixVantIcons(u) {
|
|
2453
2456
|
const t = D(u), a = t.template.replace(
|
|
2454
2457
|
/<(?:VanIcon|van-icon)\s+[^>]*name="([^"]+)"[^>]*>/g,
|
|
2455
|
-
(i, s) => Pu.includes(s) ? i : i.replace(s,
|
|
2458
|
+
(i, s) => Pu.includes(s) ? i : i.replace(s, c0)
|
|
2456
2459
|
);
|
|
2457
2460
|
return this.reconstructSFC(t, a, t.script);
|
|
2458
2461
|
}
|
|
@@ -2461,31 +2464,31 @@ class f0 {
|
|
|
2461
2464
|
a.script = Ru(a.script, {
|
|
2462
2465
|
ImportDeclaration(r) {
|
|
2463
2466
|
if (r.node.source.value === "@vtj/icons") {
|
|
2464
|
-
const n = r.node.specifiers,
|
|
2467
|
+
const n = r.node.specifiers, f = [];
|
|
2465
2468
|
let c = !1;
|
|
2466
|
-
for (const
|
|
2467
|
-
const
|
|
2468
|
-
|
|
2469
|
-
V.importSpecifier(
|
|
2469
|
+
for (const o of n) {
|
|
2470
|
+
const l = o.imported?.name;
|
|
2471
|
+
l === j && (c = !0), t.includes(l) || f.push(
|
|
2472
|
+
V.importSpecifier(o.local, o.imported)
|
|
2470
2473
|
);
|
|
2471
2474
|
}
|
|
2472
|
-
c ||
|
|
2475
|
+
c || f.push(
|
|
2473
2476
|
V.importSpecifier(
|
|
2474
2477
|
V.identifier(j),
|
|
2475
2478
|
V.identifier(j)
|
|
2476
2479
|
)
|
|
2477
|
-
), r.node.specifiers =
|
|
2480
|
+
), r.node.specifiers = f;
|
|
2478
2481
|
}
|
|
2479
2482
|
},
|
|
2480
2483
|
ObjectMethod(r) {
|
|
2481
2484
|
if (r.node.key.name === "setup") {
|
|
2482
2485
|
const n = r.node.body.body;
|
|
2483
|
-
for (const
|
|
2484
|
-
if (V.isReturnStatement(
|
|
2485
|
-
const c =
|
|
2486
|
-
|
|
2487
|
-
(
|
|
2488
|
-
),
|
|
2486
|
+
for (const f of n)
|
|
2487
|
+
if (V.isReturnStatement(f) && V.isObjectExpression(f.argument)) {
|
|
2488
|
+
const c = f.argument.properties || [];
|
|
2489
|
+
f.argument.properties = c.filter(
|
|
2490
|
+
(o) => !t.includes(o.key.name)
|
|
2491
|
+
), f.argument.properties.push(
|
|
2489
2492
|
V.objectProperty(
|
|
2490
2493
|
V.identifier(j),
|
|
2491
2494
|
V.identifier(j),
|
|
@@ -2499,7 +2502,7 @@ class f0 {
|
|
|
2499
2502
|
ObjectProperty(r) {
|
|
2500
2503
|
if (V.isIdentifier(r.node.value) && t.includes(r.node.value.name) && (r.node.value = V.identifier(j)), V.isArrayExpression(r.node.value)) {
|
|
2501
2504
|
const n = r.node.value.elements;
|
|
2502
|
-
r.node.value.elements = n.map((
|
|
2505
|
+
r.node.value.elements = n.map((f) => V.isIdentifier(f) && t.includes(f.name) ? V.identifier(j) : f);
|
|
2503
2506
|
}
|
|
2504
2507
|
},
|
|
2505
2508
|
AssignmentExpression(r) {
|
|
@@ -2510,8 +2513,8 @@ class f0 {
|
|
|
2510
2513
|
if (s)
|
|
2511
2514
|
for (const r of s) {
|
|
2512
2515
|
let n = r;
|
|
2513
|
-
for (const
|
|
2514
|
-
n = n.replace(new RegExp(
|
|
2516
|
+
for (const f of t)
|
|
2517
|
+
n = n.replace(new RegExp(f, "g"), j);
|
|
2515
2518
|
a.template = a.template.replace(r, n);
|
|
2516
2519
|
}
|
|
2517
2520
|
for (const r of t)
|
|
@@ -2540,22 +2543,22 @@ ${a}
|
|
|
2540
2543
|
}), i;
|
|
2541
2544
|
}
|
|
2542
2545
|
}
|
|
2543
|
-
async function
|
|
2544
|
-
const { id: u, name: t, source: a, project: i } = e, s =
|
|
2546
|
+
async function k0(e) {
|
|
2547
|
+
const { id: u, name: t, source: a, project: i } = e, s = oe(a, t);
|
|
2545
2548
|
if (s)
|
|
2546
2549
|
return Promise.reject(s);
|
|
2547
|
-
const { dependencies: r = [], platform: n = "web" } = i || {},
|
|
2548
|
-
let
|
|
2549
|
-
if (!
|
|
2550
|
-
return
|
|
2551
|
-
const m = c.fixBasedOnValidation(a,
|
|
2550
|
+
const { dependencies: r = [], platform: n = "web" } = i || {}, f = new n0(), c = new l0(), o = f.validate(a);
|
|
2551
|
+
let l = [];
|
|
2552
|
+
if (!o.valid)
|
|
2553
|
+
return l = o.errors, Promise.reject(l);
|
|
2554
|
+
const m = c.fixBasedOnValidation(a, o), p = D(m), {
|
|
2552
2555
|
styles: v,
|
|
2553
2556
|
css: A,
|
|
2554
2557
|
errors: y
|
|
2555
|
-
} =
|
|
2558
|
+
} = s0(p.styles.join(`
|
|
2556
2559
|
`));
|
|
2557
|
-
if (
|
|
2558
|
-
return Promise.reject(
|
|
2560
|
+
if (l.push(...y), l.length)
|
|
2561
|
+
return Promise.reject(l);
|
|
2559
2562
|
const {
|
|
2560
2563
|
state: b,
|
|
2561
2564
|
watch: S,
|
|
@@ -2563,14 +2566,14 @@ async function N0(e) {
|
|
|
2563
2566
|
computed: g,
|
|
2564
2567
|
methods: w,
|
|
2565
2568
|
props: R,
|
|
2566
|
-
emits:
|
|
2569
|
+
emits: H,
|
|
2567
2570
|
expose: tu,
|
|
2568
2571
|
inject: Uu,
|
|
2569
2572
|
handlers: Hu,
|
|
2570
2573
|
imports: lu,
|
|
2571
2574
|
dataSources: Gu,
|
|
2572
2575
|
directives: Wu
|
|
2573
|
-
} =
|
|
2576
|
+
} = Ce(p.script, i), { nodes: zu, slots: Ju, context: Xu } = Qe(u, t, p.template, {
|
|
2574
2577
|
platform: n,
|
|
2575
2578
|
handlers: Hu,
|
|
2576
2579
|
styles: v,
|
|
@@ -2588,11 +2591,13 @@ async function N0(e) {
|
|
|
2588
2591
|
methods: w,
|
|
2589
2592
|
dataSources: Gu,
|
|
2590
2593
|
slots: Ju,
|
|
2591
|
-
emits:
|
|
2594
|
+
emits: H,
|
|
2592
2595
|
expose: tu,
|
|
2593
2596
|
nodes: zu,
|
|
2594
2597
|
css: A
|
|
2595
|
-
}, Zu = Object.keys(g || {}), Qu = [
|
|
2598
|
+
}, Zu = Object.keys(g || {}), Qu = (R || []).map(
|
|
2599
|
+
(_) => typeof _ == "string" ? _ : _.name
|
|
2600
|
+
), Ku = [
|
|
2596
2601
|
"$el",
|
|
2597
2602
|
"$emit",
|
|
2598
2603
|
"$nextTick",
|
|
@@ -2609,30 +2614,31 @@ async function N0(e) {
|
|
|
2609
2614
|
"$props",
|
|
2610
2615
|
"props",
|
|
2611
2616
|
...Object.keys(w || {})
|
|
2612
|
-
], { libs:
|
|
2617
|
+
], { libs: Yu } = p0(lu, r), hu = {
|
|
2613
2618
|
platform: n,
|
|
2614
2619
|
context: Xu,
|
|
2615
2620
|
computed: Zu,
|
|
2616
|
-
libs:
|
|
2617
|
-
members:
|
|
2621
|
+
libs: Yu,
|
|
2622
|
+
members: Ku,
|
|
2623
|
+
props: Qu
|
|
2618
2624
|
};
|
|
2619
|
-
return await
|
|
2625
|
+
return await b0(
|
|
2620
2626
|
bu,
|
|
2621
|
-
async (
|
|
2622
|
-
await
|
|
2627
|
+
async (_) => {
|
|
2628
|
+
await h0(_, async (J) => {
|
|
2623
2629
|
if (du(J)) {
|
|
2624
|
-
const
|
|
2625
|
-
J.value = yu(
|
|
2630
|
+
const ue = await xu(J.value);
|
|
2631
|
+
J.value = yu(ue, _.id, hu);
|
|
2626
2632
|
}
|
|
2627
2633
|
});
|
|
2628
2634
|
},
|
|
2629
|
-
async (
|
|
2630
|
-
const J = await xu(
|
|
2631
|
-
|
|
2635
|
+
async (_) => {
|
|
2636
|
+
const J = await xu(_.value);
|
|
2637
|
+
_.value = yu(J, "", hu);
|
|
2632
2638
|
}
|
|
2633
|
-
), new
|
|
2639
|
+
), new te(bu).toDsl();
|
|
2634
2640
|
}
|
|
2635
|
-
async function
|
|
2641
|
+
async function b0(e, u, t) {
|
|
2636
2642
|
const a = async (p, v) => {
|
|
2637
2643
|
if (await u(p, v), Array.isArray(p?.children))
|
|
2638
2644
|
for (const A of p?.children || [])
|
|
@@ -2651,26 +2657,26 @@ async function l0(e, u, t) {
|
|
|
2651
2657
|
state: s,
|
|
2652
2658
|
watch: r,
|
|
2653
2659
|
computed: n,
|
|
2654
|
-
props:
|
|
2660
|
+
props: f,
|
|
2655
2661
|
dataSources: c,
|
|
2656
|
-
methods:
|
|
2657
|
-
lifeCycles:
|
|
2662
|
+
methods: o,
|
|
2663
|
+
lifeCycles: l,
|
|
2658
2664
|
inject: m
|
|
2659
2665
|
} = e;
|
|
2660
2666
|
if (await i({
|
|
2661
2667
|
state: s,
|
|
2662
2668
|
watch: r,
|
|
2663
2669
|
computed: n,
|
|
2664
|
-
props:
|
|
2670
|
+
props: f,
|
|
2665
2671
|
dataSources: c,
|
|
2666
|
-
methods:
|
|
2667
|
-
lifeCycles:
|
|
2672
|
+
methods: o,
|
|
2673
|
+
lifeCycles: l,
|
|
2668
2674
|
inject: m
|
|
2669
2675
|
}), Array.isArray(e.nodes))
|
|
2670
2676
|
for (const p of e.nodes)
|
|
2671
2677
|
await a(p);
|
|
2672
2678
|
}
|
|
2673
|
-
async function
|
|
2679
|
+
async function h0(e, u) {
|
|
2674
2680
|
const t = async (a) => {
|
|
2675
2681
|
if (!a || typeof a != "object") return;
|
|
2676
2682
|
if (Array.isArray(a)) {
|
|
@@ -2688,7 +2694,7 @@ async function b0(e, u) {
|
|
|
2688
2694
|
};
|
|
2689
2695
|
await t(e);
|
|
2690
2696
|
}
|
|
2691
|
-
function
|
|
2697
|
+
function p0(e = [], u = []) {
|
|
2692
2698
|
const t = {}, a = u.reduce(
|
|
2693
2699
|
(i, s) => (i[s.package] = s.library, i),
|
|
2694
2700
|
{}
|
|
@@ -2708,12 +2714,12 @@ function h0(e = [], u = []) {
|
|
|
2708
2714
|
};
|
|
2709
2715
|
}
|
|
2710
2716
|
export {
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2717
|
+
l0 as AutoFixer,
|
|
2718
|
+
n0 as ComponentValidator,
|
|
2719
|
+
T0 as VTJ_PARSER_VERSION,
|
|
2714
2720
|
Tu as htmlToNodes,
|
|
2715
|
-
|
|
2716
|
-
|
|
2721
|
+
N0 as parseUniApp,
|
|
2722
|
+
k0 as parseVue,
|
|
2717
2723
|
yu as patchCode,
|
|
2718
|
-
|
|
2724
|
+
B as replacer
|
|
2719
2725
|
};
|