@vue-lynx-example/hello-world 0.1.1 → 0.2.1
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/LICENSE +190 -0
- package/dist/main.lynx.bundle +0 -0
- package/dist/main.web.bundle +1 -1
- package/lynx.config.ts +7 -0
- package/package.json +8 -8
package/LICENSE
ADDED
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to the Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by the Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding any notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
Copyright 2026-present Xuan Huang (huxpro)
|
|
179
|
+
|
|
180
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
181
|
+
you may not use this file except in compliance with the License.
|
|
182
|
+
You may obtain a copy of the License at
|
|
183
|
+
|
|
184
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
185
|
+
|
|
186
|
+
Unless required by applicable law or agreed to in writing, software
|
|
187
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
188
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
189
|
+
See the License for the specific language governing permissions and
|
|
190
|
+
limitations under the License.
|
package/dist/main.lynx.bundle
CHANGED
|
Binary file
|
package/dist/main.web.bundle
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"styleInfo":{"0":{"content":["@keyframes Logo--vue-spin {0% {transform:rotateY(0deg);} to {transform:rotateY(1turn);}}\n@keyframes Logo--spin {0% {transform:rotate(0deg);} to {transform:rotate(1turn);}}\n@keyframes Logo--shake {0% {transform:scale(1);} 50% {transform:scale(.9);} to {transform:scale(1);}}"],"rules":[{"sel":[[["[lynx-tag=\"page\"]"],[],[],[]]],"decl":[["background-color","#000"],["--color-text","#fff"]]},{"sel":[[[".Background"],[],[],[]]],"decl":[["background","radial-gradient(71.43% 62.3%at 46.43% 36.43%,rgba(18,229,229,0) 15%,rgba(239,155,255,.3) 56.35%,#ff6448 100%)"],["border-radius","50%"],["box-shadow","inset 0 12.93px 28.74px 0#ffd28db2"],["height","200vw"],["left","-14.27vw"],["position","fixed"],["top","-60vw"],["transform","rotate(15.25deg)"],["width","200vw"]]},{"sel":[[[".App"],[],[],[]]],"decl":[["align-items","center"],["display","flex"],["flex-direction","column"],["justify-content","center"],["min-height","100vh"],["position","relative"]]},{"sel":[[["[lynx-tag=\"text\"]"],[],[],[]]],"decl":[["color","var(--color-text)"]]},{"sel":[[[".Banner"],[],[],[]]],"decl":[["display","flex"],["flex","5"],["z-index","100"]]},{"sel":[[[".Banner"],[],[],[]],[[".Logo"],[],[],[]]],"decl":[["align-items","center"],["flex-direction","column"],["justify-content","center"]]},{"sel":[[[".Logo"],[],[],[]]],"decl":[["margin-bottom","8px"]]},{"sel":[[[".Logo--react"],[],[],[]]],"decl":[["animation","Logo--spin 20s linear infinite"],["height","100px"],["width","100px"]]},{"sel":[[[".Logo--lynx"],[],[],[]]],"decl":[["animation","Logo--shake .5s ease infinite"]]},{"sel":[[[".Logo--lynx"],[],[],[]],[[".Logo--vue"],[],[],[]]],"decl":[["height","100px"],["width","100px"]]},{"sel":[[[".Logo--vue"],[],[],[]]],"decl":[["animation","Logo--vue-spin 3.2s linear infinite"]]},{"sel":[[[".Content"],[],[],[]]],"decl":[["align-items","center"],["display","flex"],["flex-direction","column"],["justify-content","center"]]},{"sel":[[[".Arrow"],[],[],[]]],"decl":[["height","24px"],["width","24px"]]},{"sel":[[[".Title"],[],[],[]]],"decl":[["font-size","36px"],["font-weight","700"]]},{"sel":[[[".Subtitle"],[],[],[]]],"decl":[["font-size","22px"],["font-style","italic"],["font-weight","600"],["margin-bottom","8px"]]},{"sel":[[[".Description"],[],[],[]]],"decl":[["color","hsla(0,0%,100%,.85)"],["font-size","20px"],["margin","15rpx"]]},{"sel":[[[".Hint"],[],[],[]]],"decl":[["color","hsla(0,0%,100%,.65)"],["font-size","12px"],["margin","5px"]]}]}},"manifest":{"/app-service.js":"\"use strict\";let e;var t,l,n={86(e,t,l){l.d(t,{KA:()=>a,ht:()=>o,kz:()=>i,mY:()=>s});let n=\"__VUE_LYNX_EVENT_REGISTRY__\";function r(){let e=globalThis;let t=e[n];return t||Object.defineProperty(e,n,{value:t={signCounter:0,handlers:new Map},configurable:!0,enumerable:!1,writable:!0}),t}function i(e){let t=r();let l=`vue:${t.signCounter++}`;return t.handlers.set(l,e),l}function s(e,t){r().handlers.set(e,t)}function o(e){r().handlers.delete(e)}function a(e,t){var l;null==(l=r().handlers.get(e))||l(t)}}};var r={};function i(e){var t=r[e];if(void 0!==t)return t.exports;var l=r[e]={exports:{}};return n[e](l,l.exports,i),l.exports}i.d=(e,t)=>{for(var l in t)i.o(t,l)&&!i.o(e,l)&&Object.defineProperty(e,l,{enumerable:!0,get:t[l]})},i.g=(()=>{if(\"object\"==typeof globalThis)return globalThis;try{return this||Function(\"return this\")()}catch(e){if(\"object\"==typeof window)return window}})(),i.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),i.p=\"/\",l=i(86),e=globalThis,\"u\">typeof lynxCoreInject&&(null==(t=lynxCoreInject)?void 0:t.tt)&&(lynxCoreInject.tt.publishEvent=l.KA,lynxCoreInject.tt.publicComponentEvent=(e,t,n)=>{(0,l.KA)(t,n)}),e.publishEvent=l.KA,e.updatePage=function(e){},(()=>{let e,t,l,n,r,s,o,a,u,c;function f(e){let t=Object.create(null);for(let l of e.split(\",\"))t[l]=1;return e=>e in t}let p={};let d=[];let h=()=>{};let g=()=>!1;let _=e=>111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97);let y=e=>e.startsWith(\"onUpdate:\");let m=Object.assign;let b=Object.prototype.hasOwnProperty;let x=(e,t)=>b.call(e,t);let S=Array.isArray;let w=e=>\"function\"==typeof e;let C=e=>\"string\"==typeof e;let k=e=>\"symbol\"==typeof e;let O=e=>null!==e&&\"object\"==typeof e;let j=e=>(O(e)||w(e))&&w(e.then)&&w(e.catch);let T=Object.prototype.toString;let P=e=>C(e)&&\"NaN\"!==e&&\"-\"!==e[0]&&\"\"+parseInt(e,10)===e;let F=f(\",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted\");let E=e=>{let t=Object.create(null);return l=>t[l]||(t[l]=e(l))};let A=/-\\w/g;let M=E(e=>e.replace(A,e=>e.slice(1).toUpperCase()));let I=/\\B([A-Z])/g;let D=E(e=>e.replace(I,\"-$1\").toLowerCase());let R=E(e=>e.charAt(0).toUpperCase()+e.slice(1));let L=E(e=>e?`on${R(e)}`:\"\");let $=(e,...t)=>{for(let l=0;l<e.length;l++)e[l](...t)};let V=(e,t,l,n=!1)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:n,value:l})};let U=e=>{let t=parseFloat(e);return isNaN(t)?e:t};let N=()=>e||(e=\"u\">typeof globalThis?globalThis:\"u\">typeof self?self:\"u\">typeof window?window:void 0!==i.g?i.g:{});function B(e){if(S(e)){let t={};for(let l=0;l<e.length;l++){let n=e[l];let r=C(n)?function(e){let t={};return e.replace(z,\"\").split(W).forEach(e=>{if(e){let l=e.split(H);l.length>1&&(t[l[0].trim()]=l[1].trim())}}),t}(n):B(n);if(r)for(let e in r)t[e]=r[e]}return t}if(C(e)||O(e))return e}let W=/;(?![^(]*\\))/g;let H=/:([^]+)/;let z=/\\/\\*[^]*?\\*\\//g;function J(e){let t=\"\";if(C(e))t=e;else if(S(e))for(let l=0;l<e.length;l++){let n=J(e[l]);n&&(t+=n+\" \")}else if(O(e))for(let l in e)e[l]&&(t+=l+\" \");return t.trim()}let K=e=>!!(e&&!0===e.__v_isRef);let Y=e=>C(e)?e:null==e?\"\":S(e)||O(e)&&(e.toString===T||!w(e.toString))?K(e)?Y(e.value):JSON.stringify(e,G,2):String(e);let G=(e,t)=>{let l;if(K(t))return G(e,t.value);if(\"[object Map]\"===(l=t,T.call(l)))return{[`Map(${t.size})`]:[...t.entries()].reduce((e,[t,l],n)=>(e[q(t,n)+\" =>\"]=l,e),{})};{let e;if(\"[object Set]\"===(e=t,T.call(e)))return{[`Set(${t.size})`]:[...t.values()].map(e=>q(e))};else{if(k(t))return q(t);let e;if(O(t)&&!S(t)&&\"[object Object]\"!==(e=t,T.call(e)))return String(t)}}return t};let q=(e,t=\"\")=>{var l;return k(e)?`Symbol(${null!=(l=e.description)?l:t})`:e};class Z{get active(){return this._active}pause(){if(this._active){let e,t;if(this._isPaused=!0,this.scopes)for(e=0,t=this.scopes.length;e<t;e++)this.scopes[e].pause();for(e=0,t=this.effects.length;e<t;e++)this.effects[e].pause()}}resume(){if(this._active&&this._isPaused){let e,t;if(this._isPaused=!1,this.scopes)for(e=0,t=this.scopes.length;e<t;e++)this.scopes[e].resume();for(e=0,t=this.effects.length;e<t;e++)this.effects[e].resume()}}run(e){if(this._active){let l=t;try{return t=this,e()}finally{t=l}}}on(){1===++this._on&&(this.prevScope=t,t=this)}off(){this._on>0&&0===--this._on&&(t=this.prevScope,this.prevScope=void 0)}stop(e){if(this._active){let t,l;for(t=0,this._active=!1,l=this.effects.length;t<l;t++)this.effects[t].stop();for(t=0,this.effects.length=0,l=this.cleanups.length;t<l;t++)this.cleanups[t]();if(this.cleanups.length=0,this.scopes){for(t=0,l=this.scopes.length;t<l;t++)this.scopes[t].stop(!0);this.scopes.length=0}if(!this.detached&&this.parent&&!e){let e=this.parent.scopes.pop();e&&e!==this&&(this.parent.scopes[this.index]=e,e.index=this.index)}this.parent=void 0}}constructor(e=!1){this.detached=e,this._active=!0,this._on=0,this.effects=[],this.cleanups=[],this._isPaused=!1,this.__v_skip=!0,this.parent=t,!e&&t&&(this.index=(t.scopes||(t.scopes=[])).push(this)-1)}}let Q=new WeakSet;class X{pause(){this.flags|=64}resume(){64&this.flags&&(this.flags&=-65,Q.has(this)&&(Q.delete(this),this.trigger()))}notify(){(!(2&this.flags)||32&this.flags)&&(8&this.flags||function(e,t=!1){if(e.flags|=8,t){e.next=r,r=e;return}e.next=n,n=e}(this))}run(){if(!(1&this.flags))return this.fn();this.flags|=2,ec(this),el(this);let e=l;let t=es;l=this,es=!0;try{return this.fn()}finally{en(this),l=e,es=t,this.flags&=-3}}stop(){if(1&this.flags){for(let e=this.deps;e;e=e.nextDep)ei(e);this.deps=this.depsTail=void 0,ec(this),this.onStop&&this.onStop(),this.flags&=-2}}trigger(){64&this.flags?Q.add(this):this.scheduler?this.scheduler():this.runIfDirty()}runIfDirty(){er(this)&&this.run()}get dirty(){return er(this)}constructor(e){this.fn=e,this.deps=void 0,this.depsTail=void 0,this.flags=5,this.next=void 0,this.cleanup=void 0,this.scheduler=void 0,t&&t.active&&t.effects.push(this)}}let ee=0;function et(){let e;if(!(--ee>0)){if(r){let e=r;for(r=void 0;e;){let t=e.next;e.next=void 0,e.flags&=-9,e=t}}for(;n;){let t=n;for(n=void 0;t;){let l=t.next;if(t.next=void 0,t.flags&=-9,1&t.flags)try{t.trigger()}catch(t){e||(e=t)}t=l}}if(e)throw e}}function el(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function en(e){let t;let l=e.depsTail;let n=l;for(;n;){let e=n.prevDep;-1===n.version?(n===l&&(l=e),ei(n),function(e){let{prevDep:t,nextDep:l}=e;t&&(t.nextDep=l,e.prevDep=void 0),l&&(l.prevDep=t,e.nextDep=void 0)}(n)):t=n,n.dep.activeLink=n.prevActiveLink,n.prevActiveLink=void 0,n=e}e.deps=t,e.depsTail=l}function er(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&(function(e){if(4&e.flags&&!(16&e.flags)||(e.flags&=-17,e.globalVersion===ef)||(e.globalVersion=ef,!e.isSSR&&128&e.flags&&(!e.deps&&!e._dirty||!er(e))))return;e.flags|=2;let t=e.dep;let n=l;let r=es;l=e,es=!0;try{let l;el(e);let n=e.fn(e._value);(0===t.version||(l=e._value,!Object.is(n,l)))&&(e.flags|=128,e._value=n,t.version++)}catch(e){throw t.version++,e}finally{l=n,es=r,en(e),e.flags&=-3}}(t.dep.computed)||t.dep.version!==t.version))return!0;return!!e._dirty}function ei(e,t=!1){let{dep:l,prevSub:n,nextSub:r}=e;if(n&&(n.nextSub=r,e.prevSub=void 0),r&&(r.prevSub=n,e.nextSub=void 0),l.subs===e&&(l.subs=n,!n&&l.computed)){l.computed.flags&=-5;for(let e=l.computed.deps;e;e=e.nextDep)ei(e,!0)}t||--l.sc||!l.map||l.map.delete(l.key)}let es=!0;let eo=[];function ea(){eo.push(es),es=!1}function eu(){let e=eo.pop();es=void 0===e||e}function ec(e){let{cleanup:t}=e;if(e.cleanup=void 0,t){let e=l;l=void 0;try{t()}finally{l=e}}}let ef=0;class ep{constructor(e,t){this.sub=e,this.dep=t,this.version=t.version,this.nextDep=this.prevDep=this.nextSub=this.prevSub=this.prevActiveLink=void 0}}class ed{track(e){if(!l||!es||l===this.computed)return;let t=this.activeLink;if(void 0===t||t.sub!==l)t=this.activeLink=new ep(l,this),l.deps?(t.prevDep=l.depsTail,l.depsTail.nextDep=t,l.depsTail=t):l.deps=l.depsTail=t,function e(t){if(t.dep.sc++,4&t.sub.flags){let l=t.dep.computed;if(l&&!t.dep.subs){l.flags|=20;for(let t=l.deps;t;t=t.nextDep)e(t)}let n=t.dep.subs;n!==t&&(t.prevSub=n,n&&(n.nextSub=t)),t.dep.subs=t}}(t);else if(-1===t.version&&(t.version=this.version,t.nextDep)){let e=t.nextDep;e.prevDep=t.prevDep,t.prevDep&&(t.prevDep.nextDep=e),t.prevDep=l.depsTail,t.nextDep=void 0,l.depsTail.nextDep=t,l.depsTail=t,l.deps===t&&(l.deps=e)}return t}trigger(e){this.version++,ef++,this.notify(e)}notify(e){ee++;try{for(let e=this.subs;e;e=e.prevSub)e.sub.notify()&&e.sub.dep.notify()}finally{et()}}constructor(e){this.computed=e,this.version=0,this.activeLink=void 0,this.subs=void 0,this.map=void 0,this.key=void 0,this.sc=0,this.__v_skip=!0}}let eh=new WeakMap;let ev=Symbol(\"\");let eg=Symbol(\"\");let e_=Symbol(\"\");function ey(e,t,n){if(es&&l){let t=eh.get(e);t||eh.set(e,t=new Map);let l=t.get(n);l||(t.set(n,l=new ed),l.map=t,l.key=n),l.track()}}function em(e,t,l,n,r,i){let s=eh.get(e);if(!s)return void ef++;let o=e=>{e&&e.trigger()};if(ee++,\"clear\"===t)s.forEach(o);else{let r=S(e);let i=r&&P(l);if(r&&\"length\"===l){let e=Number(n);s.forEach((t,l)=>{(\"length\"===l||l===e_||!k(l)&&l>=e)&&o(t)})}else switch((void 0!==l||s.has(void 0))&&o(s.get(l)),i&&o(s.get(e_)),t){case\"add\":if(r)i&&o(s.get(\"length\"));else{let t;o(s.get(ev));\"[object Map]\"===(t=e,T.call(t))&&o(s.get(eg))}break;case\"delete\":if(!r){let t;o(s.get(ev));\"[object Map]\"===(t=e,T.call(t))&&o(s.get(eg))}break;case\"set\":let a;\"[object Map]\"===(a=e,T.call(a))&&o(s.get(ev))}}et()}function eb(e){let t=e2(e);return t===e?t:(ey(t,\"iterate\",e_),e0(e)?t:t.map(e6))}function ex(e){return ey(e=e2(e),\"iterate\",e_),e}function eS(e,t){return eX(e)?eQ(e)?e8(e6(t)):e8(t):e6(t)}let ew={__proto__:null,[Symbol.iterator](){return eC(this,Symbol.iterator,e=>eS(this,e))},concat(...e){return eb(this).concat(...e.map(e=>S(e)?eb(e):e))},entries(){return eC(this,\"entries\",e=>(e[1]=eS(this,e[1]),e))},every(e,t){return eO(this,\"every\",e,t,void 0,arguments)},filter(e,t){return eO(this,\"filter\",e,t,e=>e.map(e=>eS(this,e)),arguments)},find(e,t){return eO(this,\"find\",e,t,e=>eS(this,e),arguments)},findIndex(e,t){return eO(this,\"findIndex\",e,t,void 0,arguments)},findLast(e,t){return eO(this,\"findLast\",e,t,e=>eS(this,e),arguments)},findLastIndex(e,t){return eO(this,\"findLastIndex\",e,t,void 0,arguments)},forEach(e,t){return eO(this,\"forEach\",e,t,void 0,arguments)},includes(...e){return eT(this,\"includes\",e)},indexOf(...e){return eT(this,\"indexOf\",e)},join(e){return eb(this).join(e)},lastIndexOf(...e){return eT(this,\"lastIndexOf\",e)},map(e,t){return eO(this,\"map\",e,t,void 0,arguments)},pop(){return eP(this,\"pop\")},push(...e){return eP(this,\"push\",e)},reduce(e,...t){return ej(this,\"reduce\",e,t)},reduceRight(e,...t){return ej(this,\"reduceRight\",e,t)},shift(){return eP(this,\"shift\")},some(e,t){return eO(this,\"some\",e,t,void 0,arguments)},splice(...e){return eP(this,\"splice\",e)},toReversed(){return eb(this).toReversed()},toSorted(e){return eb(this).toSorted(e)},toSpliced(...e){return eb(this).toSpliced(...e)},unshift(...e){return eP(this,\"unshift\",e)},values(){return eC(this,\"values\",e=>eS(this,e))}};function eC(e,t,l){let n=ex(e);let r=n[t]();return n===e||e0(e)||(r._next=r.next,r.next=()=>{let e=r._next();return e.done||(e.value=l(e.value)),e}),r}let ek=Array.prototype;function eO(e,t,l,n,r,i){let s=ex(e);let o=s!==e&&!e0(e);let a=s[t];if(a!==ek[t]){let t=a.apply(e,i);return o?e6(t):t}let u=l;s!==e&&(o?u=function(t,n){return l.call(this,eS(e,t),n,e)}:l.length>2&&(u=function(t,n){return l.call(this,t,n,e)}));let c=a.call(s,u,n);return o&&r?r(c):c}function ej(e,t,l,n){let r=ex(e);let i=r!==e&&!e0(e);let s=l;let o=!1;r!==e&&(i?(o=0===n.length,s=function(t,n,r){return o&&(o=!1,t=eS(e,t)),l.call(this,t,eS(e,n),r,e)}):l.length>3&&(s=function(t,n,r){return l.call(this,t,n,r,e)}));let a=r[t](s,...n);return o?eS(e,a):a}function eT(e,t,l){let n=e2(e);ey(n,\"iterate\",e_);let r=n[t](...l);return(-1===r||!1===r)&&e1(l[0])?(l[0]=e2(l[0]),n[t](...l)):r}function eP(e,t,l=[]){ea(),ee++;let n=e2(e)[t].apply(e,l);return et(),eu(),n}let eF=f(\"__proto__,__v_isRef,__isVue\");let eE=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>\"arguments\"!==e&&\"caller\"!==e).map(e=>Symbol[e]).filter(k));function eA(e){k(e)||(e=String(e));let t=e2(this);return ey(t,\"has\",e),t.hasOwnProperty(e)}class eM{get(e,t,l){if(\"__v_skip\"===t)return e.__v_skip;let n=this._isReadonly,r=this._isShallow;if(\"__v_isReactive\"===t)return!n;if(\"__v_isReadonly\"===t)return n;if(\"__v_isShallow\"===t)return r;if(\"__v_raw\"===t)return l===(n?r?eY:eK:r?eJ:ez).get(e)||Object.getPrototypeOf(e)===Object.getPrototypeOf(l)?e:void 0;let i=S(e);if(!n){let e;if(i&&(e=ew[t]))return e;if(\"hasOwnProperty\"===t)return eA}let s=Reflect.get(e,t,e4(e)?e:l);if((k(t)?eE.has(t):eF(t))||(n||ey(e,\"get\",t),r))return s;if(e4(s)){let e=i&&P(t)?s:s.value;return n&&O(e)?eq(e):e}return O(s)?n?eq(s):eG(s):s}constructor(e=!1,t=!1){this._isReadonly=e,this._isShallow=t}}class eI extends eM{set(e,t,l,n){let r=e[t];let i=S(e)&&P(t);if(!this._isShallow){let e=eX(r);if(e0(l)||eX(l)||(r=e2(r),l=e2(l)),!i&&e4(r)&&!e4(l))if(e)return!0;else return r.value=l,!0}let s=i?Number(t)<e.length:x(e,t);let o=Reflect.set(e,t,l,e4(e)?e:n);return e===e2(n)&&(s?Object.is(l,r)||em(e,\"set\",t,l,r):em(e,\"add\",t,l)),o}deleteProperty(e,t){let l=x(e,t);let n=e[t];let r=Reflect.deleteProperty(e,t);return r&&l&&em(e,\"delete\",t,void 0,n),r}has(e,t){let l=Reflect.has(e,t);return k(t)&&eE.has(t)||ey(e,\"has\",t),l}ownKeys(e){return ey(e,\"iterate\",S(e)?\"length\":ev),Reflect.ownKeys(e)}constructor(e=!1){super(!1,e)}}class eD extends eM{set(e,t){return!0}deleteProperty(e,t){return!0}constructor(e=!1){super(!0,e)}}let eR=new eI;let eL=new eD;let e$=new eI(!0);let eV=e=>e;function eU(e){return function(){return\"delete\"!==e&&(\"clear\"===e?void 0:this)}}function eN(e,t){let l;let n=(m(l={get(l){let n=this.__v_raw;let r=e2(n);let i=e2(l);e||(Object.is(l,i)||ey(r,\"get\",l),ey(r,\"get\",i));let{has:s}=Reflect.getPrototypeOf(r);let o=t?eV:e?e8:e6;return s.call(r,l)?o(n.get(l)):s.call(r,i)?o(n.get(i)):void(n!==r&&n.get(l))},get size(){let t=this.__v_raw;return e||ey(e2(t),\"iterate\",ev),t.size},has(t){let l=this.__v_raw;let n=e2(l);let r=e2(t);return e||(Object.is(t,r)||ey(n,\"has\",t),ey(n,\"has\",r)),t===r?l.has(t):l.has(t)||l.has(r)},forEach(l,n){let r=this;let i=r.__v_raw;let s=e2(i);let o=t?eV:e?e8:e6;return e||ey(s,\"iterate\",ev),i.forEach((e,t)=>l.call(n,o(e),o(t),r))}},e?{add:eU(\"add\"),set:eU(\"set\"),delete:eU(\"delete\"),clear:eU(\"clear\")}:{add(e){let l=e2(this);let n=Reflect.getPrototypeOf(l);let r=e2(e);let i=t||e0(e)||eX(e)?e:r;return n.has.call(l,i)||!Object.is(e,i)&&n.has.call(l,e)||!Object.is(r,i)&&n.has.call(l,r)||(l.add(i),em(l,\"add\",i,i)),this},set(e,l){t||e0(l)||eX(l)||(l=e2(l));let n=e2(this);let{has:r,get:i}=Reflect.getPrototypeOf(n);let s=r.call(n,e);s||(e=e2(e),s=r.call(n,e));let o=i.call(n,e);return(n.set(e,l),s)?Object.is(l,o)||em(n,\"set\",e,l,o):em(n,\"add\",e,l),this},delete(e){let t=e2(this);let{has:l,get:n}=Reflect.getPrototypeOf(t);let r=l.call(t,e);r||(e=e2(e),r=l.call(t,e));let i=n?n.call(t,e):void 0;let s=t.delete(e);return r&&em(t,\"delete\",e,void 0,i),s},clear(){let e=e2(this);let t=0!==e.size;let l=e.clear();return t&&em(e,\"clear\",void 0,void 0,void 0),l}}),[\"keys\",\"values\",\"entries\",Symbol.iterator].forEach(n=>{l[n]=function(...l){let r,i=this.__v_raw;let s=e2(i);let o=\"[object Map]\"===(r=s,T.call(r));let a=\"entries\"===n||n===Symbol.iterator&&o;let u=i[n](...l);let c=t?eV:e?e8:e6;return e||ey(s,\"iterate\",\"keys\"===n&&o?eg:ev),m(Object.create(u),{next(){let{value:e,done:t}=u.next();return t?{value:e,done:t}:{value:a?[c(e[0]),c(e[1])]:c(e),done:t}}})}}),l);return(t,l,r)=>\"__v_isReactive\"===l?!e:\"__v_isReadonly\"===l?e:\"__v_raw\"===l?t:Reflect.get(x(n,l)&&l in t?n:t,l,r)}let eB={get:eN(!1,!1)};let eW={get:eN(!1,!0)};let eH={get:eN(!0,!1)};let ez=new WeakMap;let eJ=new WeakMap;let eK=new WeakMap;let eY=new WeakMap;function eG(e){return eX(e)?e:eZ(e,!1,eR,eB,ez)}function eq(e){return eZ(e,!0,eL,eH,eK)}function eZ(e,t,l,n,r){var i;let s;if(!O(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;let o=(i=e).__v_skip||!Object.isExtensible(i)?0:function(e){switch(e){case\"Object\":case\"Array\":return 1;case\"Map\":case\"Set\":case\"WeakMap\":case\"WeakSet\":return 2;default:return 0}}((s=i,T.call(s)).slice(8,-1));if(0===o)return e;let a=r.get(e);if(a)return a;let u=new Proxy(e,2===o?n:l);return r.set(e,u),u}function eQ(e){return eX(e)?eQ(e.__v_raw):!!(e&&e.__v_isReactive)}function eX(e){return!!(e&&e.__v_isReadonly)}function e0(e){return!!(e&&e.__v_isShallow)}function e1(e){return!!e&&!!e.__v_raw}function e2(e){let t=e&&e.__v_raw;return t?e2(t):e}let e6=e=>O(e)?eG(e):e;let e8=e=>O(e)?eq(e):e;function e4(e){return!!e&&!0===e.__v_isRef}class e3{get value(){return this.dep.track(),this._value}set value(e){let t=this._rawValue;let l=this.__v_isShallow||e0(e)||eX(e);Object.is(e=l?e:e2(e),t)||(this._rawValue=e,this._value=l?e:e6(e),this.dep.trigger())}constructor(e,t){this.dep=new ed,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=t?e:e2(e),this._value=t?e:e6(e),this.__v_isShallow=t}}function e5(e){return e4(e)?e.value:e}let e9={get:(e,t,l)=>\"__v_raw\"===t?e:e5(Reflect.get(e,t,l)),set:(e,t,l,n)=>{let r=e[t];return e4(r)&&!e4(l)?(r.value=l,!0):Reflect.set(e,t,l,n)}};function e7(e){return eQ(e)?e:new Proxy(e,e9)}function te(e,t,l,n){try{return n?e(...n):e()}catch(e){tl(e,t,l)}}function tt(e,t,l,n){if(w(e)){let r=te(e,t,l,n);return r&&j(r)&&r.catch(e=>{tl(e,t,l)}),r}if(S(e)){let r=[];for(let i=0;i<e.length;i++)r.push(tt(e[i],t,l,n));return r}}function tl(e,t,l,n=!0){t&&t.vnode;let{errorHandler:r,throwUnhandledErrorInProduction:i}=t&&t.appContext.config||p;if(t){let n=t.parent;let i=t.proxy;let s=`https://vuejs.org/error-reference/#runtime-${l}`;for(;n;){let t=n.ec;if(t){for(let l=0;l<t.length;l++)if(!1===t[l](e,i,s))return}n=n.parent}if(r){ea(),te(r,null,10,[e,i,s]),eu();return}}(function(e,t=!0,l=!1){if(l)throw e;console.error(e)})(e,n,i)}let tn=[];let tr=-1;let ti=[];let ts=null;let to=0;let ta=Promise.resolve();let tu=null;function tc(e){let t=tu||ta;return e?t.then(this?e.bind(this):e):t}function tf(e){if(!(1&e.flags)){let t=tg(e);let l=tn[tn.length-1];!l||!(2&e.flags)&&t>=tg(l)?tn.push(e):tn.splice(function(e){let t=tr+1;let l=tn.length;for(;t<l;){let n=t+l>>>1;let r=tn[n];let i=tg(r);i<e||i===e&&2&r.flags?t=n+1:l=n}return t}(t),0,e),e.flags|=1,tp()}}function tp(){tu||(tu=ta.then(function e(t){try{for(tr=0;tr<tn.length;tr++){let e=tn[tr];e&&!(8&e.flags)&&(4&e.flags&&(e.flags&=-2),te(e,e.i,e.i?15:14),4&e.flags||(e.flags&=-2))}}finally{for(;tr<tn.length;tr++){let e=tn[tr];e&&(e.flags&=-2)}tr=-1,tn.length=0,tv(t),tu=null,(tn.length||ti.length)&&e(t)}}))}function td(e){S(e)?ti.push(...e):ts&&-1===e.id?ts.splice(to+1,0,e):1&e.flags||(ti.push(e),e.flags|=1),tp()}function th(e,t,l=tr+1){for(;l<tn.length;l++){let t=tn[l];if(t&&2&t.flags){if(e&&t.id!==e.uid)continue;tn.splice(l,1),l--,4&t.flags&&(t.flags&=-2),t(),4&t.flags||(t.flags&=-2)}}}function tv(e){if(ti.length){let e=[...new Set(ti)].sort((e,t)=>tg(e)-tg(t));if(ti.length=0,ts)return void ts.push(...e);for(to=0,ts=e;to<ts.length;to++){let e=ts[to];4&e.flags&&(e.flags&=-2),8&e.flags||e(),e.flags&=-2}ts=null,to=0}}let tg=e=>null==e.id?2&e.flags?-1:1/0:e.id;let t_=null;let ty=null;function tm(e){let t=t_;return t_=e,ty=e&&e.type.__scopeId||null,t}function tb(e,t,l,n){let r=e.dirs;let i=t&&t.dirs;for(let s=0;s<r.length;s++){let o=r[s];i&&(o.oldValue=i[s].value);let a=o.dir[n];a&&(ea(),tt(a,l,8,[e.el,o,e,t]),eu())}}let tx=Symbol(\"_vte\");let tS=Symbol(\"_leaveCb\");let tw=Symbol(\"_enterCb\");function tC(){let e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return t$(()=>{e.isMounted=!0}),tV(()=>{e.isUnmounting=!0}),e}let tk=e=>{let t=e.subTree;return t.component?tk(t.component):t};function tO(e,t){let{leavingVNodes:l}=e;let n=l.get(t.type);return n||(n=Object.create(null),l.set(t.type,n)),n}function tj(e,t,l,n,r){let{appear:i,mode:s,persisted:o=!1,onBeforeEnter:a,onEnter:u,onAfterEnter:c,onEnterCancelled:f,onBeforeLeave:p,onLeave:d,onAfterLeave:h,onLeaveCancelled:g,onBeforeAppear:_,onAppear:y,onAfterAppear:m,onAppearCancelled:b}=t;let x=String(e.key);let w=tO(l,e);let C=(e,t)=>{e&&tt(e,n,9,t)};let k=(e,t)=>{let l=t[1];C(e,t),S(e)?e.every(e=>e.length<=1)&&l():e.length<=1&&l()};let O={mode:s,persisted:o,beforeEnter(t){let n=a;if(!l.isMounted)if(!i)return;else n=_||a;t[tS]&&t[tS](!0);let r=w[x];r&&lg(e,r)&&r.el[tS]&&r.el[tS](),C(n,[t])},enter(t){if(w[x]===e)return;let n=u;let r=c;let s=f;if(!l.isMounted)if(!i)return;else n=y||u,r=m||c,s=b||f;let o=!1;t[tw]=e=>{o||(o=!0,e?C(s,[t]):C(r,[t]),O.delayedLeave&&O.delayedLeave(),t[tw]=void 0)};let a=t[tw].bind(null,!1);n?k(n,[t,a]):a()},leave(t,n){let r=String(e.key);if(t[tw]&&t[tw](!0),l.isUnmounting)return n();C(p,[t]);let i=!1;t[tS]=l=>{i||(i=!0,n(),l?C(g,[t]):C(h,[t]),t[tS]=void 0,w[r]===e&&delete w[r])};let s=t[tS].bind(null,!1);w[r]=e,d?k(d,[t,s]):s()},clone(e){let i=tj(e,t,l,n,r);return r&&r(i),i}};return O}function tT(e,t){6&e.shapeFlag&&e.component?(e.transition=t,tT(e.component.subTree,t)):128&e.shapeFlag?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function tP(e,t=!1,l){let n=[];let r=0;for(let i=0;i<e.length;i++){let s=e[i];let o=null==l?s.key:String(l)+String(null!=s.key?s.key:i);s.type===lo?(128&s.patchFlag&&r++,n=n.concat(tP(s.children,t,o))):(t||s.type!==lu)&&n.push(null!=o?lx(s,{key:o}):s)}if(r>1)for(let e=0;e<n.length;e++)n[e].patchFlag=-2;return n}function tF(e,t){return w(e)?m({name:e.name},t,{setup:e}):e}function tE(e,t){let l;return!!((l=Object.getOwnPropertyDescriptor(e,t))&&!l.configurable)}let tA=new WeakMap;function tM(e,t,l,n,r=!1){if(S(e))return void e.forEach((e,i)=>tM(e,t&&(S(t)?t[i]:t),l,n,r));if(tD(n)&&!r){512&n.shapeFlag&&n.type.__asyncResolved&&n.component.subTree.component&&tM(e,t,l,n.component.subTree);return}let i=4&n.shapeFlag?l$(n.component):n.el;let s=r?null:i;let{i:o,r:a}=e;let u=t&&t.r;let c=o.refs===p?o.refs={}:o.refs;let f=o.setupState;let d=e2(f);let h=f===p?g:e=>!tE(c,e)&&x(d,e);let _=(e,t)=>!(t&&tE(c,t));if(null!=u&&u!==a&&(tI(t),C(u)?(c[u]=null,h(u)&&(f[u]=null)):e4(u)&&(_(u,t.k)&&(u.value=null),t.k&&(c[t.k]=null))),w(a))te(a,o,12,[s,c]);else{let t=C(a);let n=e4(a);if(t||n){let o=()=>{if(e.f){let n=t?h(a)?f[a]:c[a]:_(a)||!e.k?a.value:c[e.k];if(r){var l,o;let e;S(n)&&(l=n,o=i,(e=l.indexOf(o))>-1&&l.splice(e,1))}else if(S(n))n.includes(i)||n.push(i);else if(t)c[a]=[i],h(a)&&(f[a]=c[a]);else{let t=[i];_(a,e.k)&&(a.value=t),e.k&&(c[e.k]=t)}}else t?(c[a]=s,h(a)&&(f[a]=s)):n&&(_(a,e.k)&&(a.value=s),e.k&&(c[e.k]=s))};if(s){let t=()=>{o(),tA.delete(e)};t.id=-1,tA.set(e,t),ln(t,l)}else tI(e),o()}}}function tI(e){let t=tA.get(e);t&&(t.flags|=8,tA.delete(e))}N().requestIdleCallback,N().cancelIdleCallback;let tD=e=>!!e.type.__asyncLoader;let tR=e=>e.type.__isKeepAlive;let tL=e=>(t,l=lP)=>{lI&&\"sp\"!==e||function(e,t,l=lP,n=!1){if(l){let r=l[e]||(l[e]=[]);let i=t.__weh||(t.__weh=(...n)=>{ea();let r=lE(l);let i=tt(t,l,e,n);return r(),eu(),i});return n?r.unshift(i):r.push(i),i}}(e,(...e)=>t(...e),l)};tL(\"bm\");let t$=tL(\"m\");tL(\"bu\"),tL(\"u\");let tV=tL(\"bum\");let tU=tL(\"um\");tL(\"sp\"),tL(\"rtg\"),tL(\"rtc\");let tN=Symbol.for(\"v-ndc\");let tB=e=>e?lM(e)?l$(e):tB(e.parent):null;let tW=m(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>tB(e.parent),$root:e=>tB(e.root),$host:e=>e.ce,$emit:e=>e.emit,$options:e=>e.type,$forceUpdate:e=>e.f||(e.f=()=>{tf(e.update)}),$nextTick:e=>e.n||(e.n=tc.bind(e.proxy)),$watch:e=>h});let tH=(e,t)=>e!==p&&!e.__isScriptSetup&&x(e,t);let tz={get({_:e},t){let l,n;if(\"__v_skip\"===t)return!0;let{ctx:r,setupState:i,data:s,props:o,accessCache:a,type:u,appContext:c}=e;if(\"$\"!==t[0]){let e=a[t];if(void 0!==e)switch(e){case 1:return i[t];case 2:return s[t];case 4:return r[t];case 3:return o[t]}else if(tH(i,t))return a[t]=1,i[t];else if(1)if(x(o,t))return a[t]=3,o[t];else{if(r!==p&&x(r,t))return a[t]=4,r[t];a[t]=0}}let f=tW[t];return f?(\"$attrs\"===t&&ey(e.attrs,\"get\",\"\"),f(e)):(l=u.__cssModules)&&(l=l[t])?l:r!==p&&x(r,t)?(a[t]=4,r[t]):x(n=c.config.globalProperties,t)?n[t]:void 0},set({_:e},t,l){let{data:n,setupState:r,ctx:i}=e;if(tH(r,t))return r[t]=l,!0;if(1&&x(e.props,t))return!1;return!(\"$\"===t[0]&&t.slice(1)in e)&&(i[t]=l,!0)},has({_:{data:e,setupState:t,accessCache:l,ctx:n,appContext:r,props:i,type:s}},o){let a;return!!(l[o]||tH(t,o)||x(i,o)||x(n,o)||x(tW,o)||x(r.config.globalProperties,o)||(a=s.__cssModules)&&a[o])},defineProperty(e,t,l){return null!=l.get?e._.accessCache[t]=0:x(l,\"value\")&&this.set(e,t,l.value,null),Reflect.defineProperty(e,t,l)}};function tJ(){return{app:null,config:{isNativeTag:g,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let tK=0;let tY=null;function tG(e,t,...l){let n;if(e.isUnmounted)return;let r=e.vnode.props||p;let i=l;let s=t.startsWith(\"update:\");let o;let a=s&&(\"modelValue\"===(o=t.slice(7))||\"model-value\"===o?r.modelModifiers:r[`${o}Modifiers`]||r[`${M(o)}Modifiers`]||r[`${D(o)}Modifiers`]);a&&(a.trim&&(i=l.map(e=>C(e)?e.trim():e)),a.number&&(i=l.map(U)));let u=r[n=L(t)]||r[n=L(M(t))];!u&&s&&(u=r[n=L(D(t))]),u&&tt(u,e,6,i);let c=r[n+\"Once\"];if(c){if(e.emitted){if(e.emitted[n])return}else e.emitted={};e.emitted[n]=!0,tt(c,e,6,i)}}function tq(e,t){return!!e&&!!_(t)&&(x(e,(t=t.slice(2).replace(/Once$/,\"\"))[0].toLowerCase()+t.slice(1))||x(e,D(t))||x(e,t))}function tZ(e){let t,l;let{type:n,vnode:r,proxy:i,withProxy:s,propsOptions:[o],slots:a,attrs:u,emit:c,render:f,renderCache:p,props:d,data:h,setupState:g,ctx:_,inheritAttrs:m}=e;let b=tm(e);try{if(4&r.shapeFlag){let e=s||i;t=lw(f.call(e,e,p,d,g,h,_)),l=u}else t=lw(n.length>1?n(d,{attrs:u,slots:a,emit:c}):n(d,null)),l=n.props?u:tQ(u)}catch(l){lf.length=0,tl(l,e,1),t=lb(lu)}let x=t;if(l&&!1!==m){let e=Object.keys(l);let{shapeFlag:t}=x;e.length&&7&t&&(o&&e.some(y)&&(l=tX(l,o)),x=lx(x,l,!1,!0))}return r.dirs&&((x=lx(x,null,!1,!0)).dirs=x.dirs?x.dirs.concat(r.dirs):r.dirs),r.transition&&tT(x,r.transition),t=x,tm(b),t}let tQ=e=>{let t;for(let l in e)(\"class\"===l||\"style\"===l||_(l))&&((t||(t={}))[l]=e[l]);return t};let tX=(e,t)=>{let l={};for(let n in e)y(n)&&n.slice(9)in t||(l[n]=e[n]);return l};function t0(e,t,l){let n=Object.keys(t);if(n.length!==Object.keys(e).length)return!0;for(let r=0;r<n.length;r++){let i=n[r];if(t1(t,e,i)&&!tq(l,i))return!0}return!1}function t1(e,t,l){let n=e[l];let r=t[l];return\"style\"===l&&O(n)&&O(r)?!function e(t,l){let n,r;if(t===l)return!0;let i=\"[object Date]\"===(n=t,T.call(n));let s=\"[object Date]\"===(r=l,T.call(r));if(i||s)return!!i&&!!s&&t.getTime()===l.getTime();if(i=k(t),s=k(l),i||s)return t===l;if(i=S(t),s=S(l),i||s)return!!i&&!!s&&function(t,l){if(t.length!==l.length)return!1;let n=!0;for(let r=0;n&&r<t.length;r++)n=e(t[r],l[r]);return n}(t,l);if(i=O(t),s=O(l),i||s){if(!i||!s||Object.keys(t).length!==Object.keys(l).length)return!1;for(let n in t){let r=t.hasOwnProperty(n);let i=l.hasOwnProperty(n);if(r&&!i||!r&&i||!e(t[n],l[n]))return!1}}return String(t)===String(l)}(n,r):n!==r}let t2={};let t6=e=>Object.getPrototypeOf(e)===t2;function t8(e,t,l,n){let r;let[i,s]=e.propsOptions;let o=!1;if(t)for(let a in t){let u;if(F(a))continue;let c=t[a];i&&x(i,u=M(a))?s&&s.includes(u)?(r||(r={}))[u]=c:l[u]=c:tq(e.emitsOptions,a)||a in n&&c===n[a]||(n[a]=c,o=!0)}if(s){let t=e2(l);let n=r||p;for(let r=0;r<s.length;r++){let o=s[r];l[o]=t4(i,t,o,n[o],e,!x(n,o))}}return o}function t4(e,t,l,n,r,i){let s=e[l];if(null!=s){let e=x(s,\"default\");if(e&&void 0===n){let e=s.default;if(s.type!==Function&&!s.skipFactory&&w(e)){let{propsDefaults:i}=r;if(l in i)n=i[l];else{let s=lE(r);n=i[l]=e.call(null,t),s()}}else n=e;r.ce&&r.ce._setProp(l,n)}s[0]&&(i&&!e?n=!1:s[1]&&(\"\"===n||n===D(l))&&(n=!0))}return n}function t3(e){return!(\"$\"===e[0]||F(e))}let t5=e=>\"_\"===e||\"_ctx\"===e||\"$stable\"===e;let t9=e=>S(e)?e.map(lw):[lw(e)];let t7=(e,t,l)=>{if(t._n)return t;let n=function(e,t=t_){if(!t||e._n)return e;let l=(...n)=>{let r;l._d&&lh(-1);let i=tm(t);try{r=e(...n)}finally{tm(i),l._d&&lh(1)}return r};return l._n=!0,l._c=!0,l._d=!0,l}((...e)=>t9(t(...e)),l);return n._c=!1,n};let le=(e,t,l)=>{let n=e._ctx;for(let l in e){if(t5(l))continue;let r=e[l];if(w(r))t[l]=t7(l,r,n);else if(null!=r){let e=t9(r);t[l]=()=>e}}};let lt=(e,t)=>{let l=t9(t);e.slots.default=()=>l};let ll=(e,t,l)=>{for(let n in t)(l||!t5(n))&&(e[n]=t[n])};let ln=function(e,t){t&&t.pendingBranch?S(e)?t.effects.push(...e):t.effects.push(e):td(e)};function lr({type:e,props:t},l){return\"svg\"===l&&\"foreignObject\"===e||\"mathml\"===l&&\"annotation-xml\"===e&&t&&t.encoding&&t.encoding.includes(\"html\")?void 0:l}function li({effect:e,job:t},l){l?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function ls(e){if(e)for(let t=0;t<e.length;t++)e[t].flags|=8}let lo=Symbol.for(\"v-fgt\");let la=Symbol.for(\"v-txt\");let lu=Symbol.for(\"v-cmt\");let lc=Symbol.for(\"v-stc\");let lf=[];let lp=null;let ld=1;function lh(e,t=!1){ld+=e,e<0&&lp&&t&&(lp.hasOnce=!0)}function lv(e){return!!e&&!0===e.__v_isVNode}function lg(e,t){return e.type===t.type&&e.key===t.key}let l_=({key:e})=>null!=e?e:null;let ly=({ref:e,ref_key:t,ref_for:l})=>(\"number\"==typeof e&&(e=\"\"+e),null!=e?C(e)||e4(e)||w(e)?{i:t_,r:e,k:t,f:!!l}:e:null);function lm(e,t=null,l=null,n=0,r=null,i=+(e!==lo),s=!1,o=!1){let a={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&l_(t),ref:t&&ly(t),scopeId:ty,slotScopeIds:null,children:l,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetStart:null,targetAnchor:null,staticCount:0,shapeFlag:i,patchFlag:n,dynamicProps:r,dynamicChildren:null,appContext:null,ctx:t_};return o?(lk(a,l),128&i&&e.normalize(a)):l&&(a.shapeFlag|=C(l)?8:16),ld>0&&!s&&lp&&(a.patchFlag>0||6&i)&&32!==a.patchFlag&&lp.push(a),a}let lb=function(e,t=null,l=null,n=0,r=null,i=!1){var s,o;if(e&&e!==tN||(e=lu),lv(e)){let n=lx(e,t,!0);return l&&lk(n,l),ld>0&&!i&&lp&&(6&n.shapeFlag?lp[lp.indexOf(e)]=n:lp.push(n)),n.patchFlag=-2,n}if(w(s=e)&&\"__vccOpts\"in s&&(e=e.__vccOpts),t){let{class:e,style:l}=t=(o=t)?e1(o)||t6(o)?m({},o):o:null;e&&!C(e)&&(t.class=J(e)),O(l)&&(e1(l)&&!S(l)&&(l=m({},l)),t.style=B(l))}let a=C(e)?1:e.__isSuspense?128:e.__isTeleport?64:O(e)?4:2*!!w(e);return lm(e,t,l,n,r,a,i,!0)};function lx(e,t,l=!1,n=!1){let{props:r,ref:i,patchFlag:s,children:o,transition:a}=e;let u=t?function(...e){let t={};for(let l=0;l<e.length;l++){let n=e[l];for(let e in n)if(\"class\"===e)t.class!==n.class&&(t.class=J([t.class,n.class]));else if(\"style\"===e)t.style=B([t.style,n.style]);else if(_(e)){let l=t[e];let r=n[e];r&&l!==r&&!(S(l)&&l.includes(r))&&(t[e]=l?[].concat(l,r):r)}else\"\"!==e&&(t[e]=n[e])}return t}(r||{},t):r;let c={__v_isVNode:!0,__v_skip:!0,type:e.type,props:u,key:u&&l_(u),ref:t&&t.ref?l&&i?S(i)?i.concat(ly(t)):[i,ly(t)]:ly(t):i,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:o,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==lo?-1===s?16:16|s:s,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:a,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&lx(e.ssContent),ssFallback:e.ssFallback&&lx(e.ssFallback),placeholder:e.placeholder,el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return a&&n&&tT(c,a.clone(c)),c}function lS(e=\" \",t=0){return lb(la,null,e,t)}function lw(e){return null==e||\"boolean\"==typeof e?lb(lu):S(e)?lb(lo,null,e.slice()):lv(e)?lC(e):lb(la,null,String(e))}function lC(e){return null===e.el&&-1!==e.patchFlag||e.memo?e:lx(e)}function lk(e,t){let l=0;let{shapeFlag:n}=e;if(null==t)t=null;else if(S(t))l=16;else if(\"object\"==typeof t)if(65&n){let l=t.default;l&&(l._c&&(l._d=!1),lk(e,l()),l._c&&(l._d=!0));return}else{l=32;let n=t._;n||t6(t)?3===n&&t_&&(1===t_.slots._?t._=1:(t._=2,e.patchFlag|=1024)):t._ctx=t_}else w(t)?(t={default:t,_ctx:t_},l=32):(t=String(t),64&n?(l=16,t=[lS(t)]):l=8);e.children=t,e.shapeFlag|=l}function lO(e,t,l,n=null){tt(e,t,7,[l,n])}let lj=tJ();let lT=0;let lP=null;let lF=()=>lP||t_;{let e=N();let t=(t,l)=>{let n;return(n=e[t])||(n=e[t]=[]),n.push(l),e=>{n.length>1?n.forEach(t=>t(e)):n[0](e)}};s=t(\"__VUE_INSTANCE_SETTERS__\",e=>lP=e),o=t(\"__VUE_SSR_SETTERS__\",e=>lI=e)}let lE=e=>{let t=lP;return s(e),e.scope.on(),()=>{e.scope.off(),s(t)}};let lA=()=>{lP&&lP.scope.off(),s(null)};function lM(e){return 4&e.vnode.shapeFlag}let lI=!1;function lD(e,t,l){w(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:O(t)&&(e.setupState=e7(t)),lR(e,l)}function lR(e,t,l){let n=e.type;if(!e.render){if(!t&&a&&!n.render){let t=n.template||!1;if(t){let{isCustomElement:l,compilerOptions:r}=e.appContext.config;let{delimiters:i,compilerOptions:s}=n;n.render=a(t,m(m({isCustomElement:l,delimiters:i},r),s))}}e.render=n.render||h,u&&u(e)}}let lL={get:(e,t)=>(ey(e,\"get\",\"\"),e[t])};function l$(e){var t;return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(e7((!x(t=e.exposed,\"__v_skip\")&&Object.isExtensible(t)&&V(t,\"__v_skip\",!0),t)),{get:(t,l)=>l in t?t[l]:l in tW?tW[l](e):void 0,has:(e,t)=>t in e||t in tW})):e.proxy}function lV(e,t,l){return t in e?Object.defineProperty(e,t,{value:l,enumerable:!0,configurable:!0,writable:!0}):e[t]=l,e}class lU{add(e){let t=++this.lastIndex;return this.map.set(t,e),t}get(e){return this.map.get(e)}remove(e){this.map.delete(e)}constructor(){lV(this,\"lastIndex\",0),lV(this,\"map\",new Map)}}class lN extends lU{add(e){let t=super.add(e);return e._execId=t,t}findJsFnHandle(e,t){let l=this.get(e);if(!l)return;let n=new Set;let r=e=>{if(null!==e&&\"object\"==typeof e&&!n.has(e)){if(n.add(e),\"_jsFnId\"in e&&e._jsFnId===t)return e;for(let t in e){let l=r(e[t]);if(l)return l}}};return r(l)}}function lB(e){let t=JSON.parse(e.data);let l=c.findJsFnHandle(t.obj._execId,t.obj._jsFnId);if(!(null==l?void 0:l._fn))throw Error(`runOnBackground: JS function not found (execId=${t.obj._execId}, fnId=${t.obj._jsFnId})`);let n=l._fn(...t.params);lynx.getCoreContext().dispatchEvent({type:\"Lynx.Worklet.FunctionCallRet\",data:JSON.stringify({resolveId:t.resolveId,returnValue:n})})}let lW=[];function lH(...e){for(let t of e)lW.push(t)}let lz=!1;let lJ=null;let lK=null;function lY(){return null!=lK?lK:Promise.resolve()}function lG(){lz||(lz=!0,td(lq))}function lq(){var e,t,l;let n;lz=!1;let r=(n=lW,lW=[],n);if(0===r.length)return;lK=new Promise(e=>{lJ=e});let i=null==(t=lynx)||null==(e=t.getNativeApp)?void 0:e.call(t);null==i||null==(l=i.callLepusMethod)||l.call(i,\"vuePatchUpdate\",{data:JSON.stringify(r)},()=>{null==lJ||lJ(),lJ=null,lK=null})}var lZ=i(86);class lQ{get _selector(){return`[vue-ref-${this.id}]`}_select(){return lynx.createSelectorQuery().select(this._selector)}invoke(e){return this._select().invoke(e)}setNativeProps(e){return this._select().setNativeProps(e)}fields(e,t){return this._select().fields(e,t)}path(e){return this._select().path(e)}animate(e){return this._select().animate(e)}playAnimation(e){return this._select().playAnimation(e)}pauseAnimation(e){return this._select().pauseAnimation(e)}cancelAnimation(e){return this._select().cancelAnimation(e)}insertBefore(e,t){if(e.parent&&e.parent.removeChild(e),e.parent=this,t){let l=t.prev;e.next=t,e.prev=l,t.prev=e,l?l.next=e:this.firstChild=e}else this.lastChild?(this.lastChild.next=e,e.prev=this.lastChild):(this.firstChild=e,e.prev=null),this.lastChild=e,e.next=null}removeChild(e){let t=e.prev;let l=e.next;t?t.next=l:this.firstChild=l,l?l.prev=t:this.lastChild=t,e.parent=null,e.prev=null,e.next=null}constructor(e,t){lV(this,\"id\",void 0),lV(this,\"type\",void 0),lV(this,\"parent\",null),lV(this,\"firstChild\",null),lV(this,\"lastChild\",null),lV(this,\"prev\",null),lV(this,\"next\",null),lV(this,\"_style\",{}),lV(this,\"_vShowHidden\",!1),lV(this,\"_baseClass\",\"\"),lV(this,\"_transitionClasses\",new Set),void 0===t?this.id=lQ.nextId++:this.id=t,this.type=e}}lV(lQ,\"nextId\",2);let lX=new Set([\"flex\",\"flexGrow\",\"flexShrink\",\"flexOrder\",\"order\",\"opacity\",\"zIndex\",\"aspectRatio\",\"fontWeight\",\"lineClamp\"]);function l0(e){return e.startsWith(\"global-bind\")?{type:\"bindGlobalEvent\",name:e.slice(11)}:e.startsWith(\"global-catch\")?{type:\"catchGlobalEvent\",name:e.slice(12)}:e.startsWith(\"catch\")?{type:\"catchEvent\",name:e.slice(5)}:/^bind(?!ingx)/.test(e)?{type:\"bindEvent\",name:e.slice(4)}:/^on[A-Z]/.test(e)?{type:\"bindEvent\",name:e.slice(2,3).toLowerCase()+e.slice(3)}:null}let l1=new Map;function l2(e){if(0===e._transitionClasses.size)return e._baseClass;let t=[];for(let l of(e._baseClass&&t.push(e._baseClass),e._transitionClasses))t.push(l);return t.join(\" \")}function l6(e,t){e._transitionClasses.add(t),lH(9,e.id,l2(e)),lG()}function l8(e,t){e._transitionClasses.delete(t),lH(9,e.id,l2(e)),lG()}function l4(e){td(()=>{lY().then(()=>{\"function\"==typeof requestAnimationFrame?requestAnimationFrame(e):e()})})}function l3(e,t,l){let n=\"animation\"===t?\"animationend\":\"transitionend\";let r=!1;let i=(0,lZ.kz)(t=>{r||(r=!0,(0,lZ.ht)(i),lH(7,e.id,\"bindEvent\",n),lG(),l())});lH(6,e.id,\"bindEvent\",n,i),lG()}function l5(e){return\"number\"==typeof e?{enter:e,leave:e}:e&&\"object\"==typeof e?{enter:e.enter,leave:e.leave}:{enter:0,leave:0}}function l9(e){return null!=e.duration}function l7(e,t){e&&e(...t)}tF({name:\"TransitionGroup\",props:{tag:{type:String,default:\"view\"},name:{type:String,default:\"v\"},type:{type:String},duration:{type:[Number,Object]},appear:Boolean,persisted:Boolean,enterFromClass:String,enterActiveClass:String,enterToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,moveClass:String},setup(e,{slots:t}){let l=lF();let n=tC();return()=>{let r=tP(t.default?t.default():[]);let i=e.name||\"v\";let s=e.enterFromClass||`${i}-enter-from`;let o=e.enterActiveClass||`${i}-enter-active`;let a=e.enterToClass||`${i}-enter-to`;let u=e.leaveFromClass||`${i}-leave-from`;let c=e.leaveActiveClass||`${i}-leave-active`;let f=e.leaveToClass||`${i}-leave-to`;for(let t of r){if(null==t.key)continue;let r=tj(t,{mode:void 0,appear:!n.isMounted&&!!e.appear,persisted:!1,onBeforeEnter(t){l7(e.onBeforeEnter,[t]),l6(t,s),l6(t,o)},onEnter(t,l){l4(()=>{l8(t,s),l6(t,a),l9(e)?setTimeout(l,l5(e.duration).enter):l3(t,e.type,l)}),l7(e.onEnter,[t,l])},onAfterEnter(t){l8(t,o),l8(t,a),l7(e.onAfterEnter,[t])},onEnterCancelled(t){l8(t,s),l8(t,o),l8(t,a),l7(e.onEnterCancelled,[t])},onBeforeLeave(t){l7(e.onBeforeLeave,[t]),l6(t,u),l6(t,c)},onLeave(t,l){l4(()=>{l8(t,u),l6(t,f),l9(e)?setTimeout(l,l5(e.duration).leave):l3(t,e.type,l)}),l7(e.onLeave,[t,l])},onAfterLeave(t){l8(t,c),l8(t,f),l7(e.onAfterLeave,[t])},onLeaveCancelled(t){l8(t,u),l8(t,c),l8(t,f),l7(e.onLeaveCancelled,[t])}},n,l);tT(t,r)}return function(e,t,l){try{lh(-1);let n=arguments.length;if(2!==n)return n>3?l=Array.prototype.slice.call(arguments,2):3===n&&lv(l)&&(l=[l]),lb(e,t,l);if(!O(t)||S(t))return lb(e,null,t);if(lv(t))return lb(e,null,[t]);return lb(e,t)}finally{lh(1)}}(e.tag,null,r)}}});let ne=function(e){var t;let l,n;N().__VUE__=!0;let{insert:r,remove:i,patchProp:s,createElement:a,createText:u,createComment:c,setText:f,setElementText:g,parentNode:_,nextSibling:y,setScopeId:b=h,insertStaticContent:C}=e;let k=(e,t,l,n=null,r=null,i=null,s,o=null,a=!!t.dynamicChildren)=>{if(e===t)return;e&&!lg(e,t)&&(n=eo(e),el(e,r,i,!0),e=null),-2===t.patchFlag&&(a=!1,t.dynamicChildren=null);let{type:u,ref:c,shapeFlag:f}=t;switch(u){case la:T(e,t,l,n);break;case lu:P(e,t,l,n);break;case lc:null==e&&E(t,l,n,s);break;case lo:H(e,t,l,n,r,i,s,o,a);break;default:1&f?A(e,t,l,n,r,i,s,o,a):6&f?z(e,t,l,n,r,i,s,o,a):(64&f||128&f)&&u.process(e,t,l,n,r,i,s,o,a,ep)}null!=c&&r?tM(c,e&&e.ref,i,t||e,!t):null==c&&e&&null!=e.ref&&tM(e.ref,null,i,e,!0)};let T=(e,t,l,n)=>{if(null==e)r(t.el=u(t.children),l,n);else{let l=t.el=e.el;t.children!==e.children&&f(l,t.children)}};let P=(e,t,l,n)=>{null==e?r(t.el=c(t.children||\"\"),l,n):t.el=e.el};let E=(e,t,l,n)=>{[e.el,e.anchor]=C(e.children,t,l,n,e.el,e.anchor)};let A=(e,t,l,n,r,i,s,o,a)=>{if(\"svg\"===t.type?s=\"svg\":\"math\"===t.type&&(s=\"mathml\"),null==e)I(t,l,n,r,i,s,o,a);else{let l=e.el&&e.el._isVueCE?e.el:null;try{l&&l._beginPatch(),U(e,t,r,i,s,o,a)}finally{l&&l._endPatch()}}};let I=(e,t,l,n,i,o,u,c)=>{var f,p;let d;let h;let{props:_,shapeFlag:y,transition:m,dirs:b}=e;if(d=e.el=a(e.type,o,_&&_.is,_),8&y?g(d,e.children):16&y&&L(e.children,d,null,n,i,lr(e,o),u,c),b&&tb(e,null,n,\"created\"),R(d,e,e.scopeId,u,n),_){for(let e in _)\"value\"===e||F(e)||s(d,e,null,_[e],o,n);\"value\"in _&&s(d,\"value\",null,_.value,o),(h=_.onVnodeBeforeMount)&&lO(h,n,e)}b&&tb(e,null,n,\"beforeMount\");let x=(f=i,p=m,(!f||f&&!f.pendingBranch)&&p&&!p.persisted);x&&m.beforeEnter(d),r(d,t,l),((h=_&&_.onVnodeMounted)||x||b)&&ln(()=>{h&&lO(h,n,e),x&&m.enter(d),b&&tb(e,null,n,\"mounted\")},i)};let R=(e,t,l,n,r)=>{if(l&&b(e,l),n)for(let t=0;t<n.length;t++)b(e,n[t]);if(r){let l=r.subTree;if(t===l||l.type.__isSuspense&&(l.ssContent===t||l.ssFallback===t)){let t=r.vnode;R(e,t,t.scopeId,t.slotScopeIds,r.parent)}}};let L=(e,t,l,n,r,i,s,o,a=0)=>{for(let u=a;u<e.length;u++)k(null,e[u]=o?lC(e[u]):lw(e[u]),t,l,n,r,i,s,o)};let U=(e,t,l,n,r,i,o)=>{let a;let u=t.el=e.el;let{patchFlag:c,dynamicChildren:f,dirs:d}=t;c|=16&e.patchFlag;let h=e.props||p;let _=t.props||p;if(l&&li(l,!1),(a=_.onVnodeBeforeUpdate)&&lO(a,l,t,e),d&&tb(t,e,l,\"beforeUpdate\"),l&&li(l,!0),(h.innerHTML&&null==_.innerHTML||h.textContent&&null==_.textContent)&&g(u,\"\"),f?B(e.dynamicChildren,f,u,l,n,lr(t,r),i):o||q(e,t,u,null,l,n,lr(t,r),i,!1),c>0){if(16&c)W(u,h,_,l,r);else if(2&c&&h.class!==_.class&&s(u,\"class\",null,_.class,r),4&c&&s(u,\"style\",h.style,_.style,r),8&c){let e=t.dynamicProps;for(let t=0;t<e.length;t++){let n=e[t];let i=h[n];let o=_[n];(o!==i||\"value\"===n)&&s(u,n,i,o,r,l)}}1&c&&e.children!==t.children&&g(u,t.children)}else o||null!=f||W(u,h,_,l,r);((a=_.onVnodeUpdated)||d)&&ln(()=>{a&&lO(a,l,t,e),d&&tb(t,e,l,\"updated\")},n)};let B=(e,t,l,n,r,i,s)=>{for(let o=0;o<t.length;o++){let a=e[o];let u=t[o];let c=a.el&&(a.type===lo||!lg(a,u)||198&a.shapeFlag)?_(a.el):l;k(a,u,c,null,n,r,i,s,!0)}};let W=(e,t,l,n,r)=>{if(t!==l){if(t!==p)for(let i in t)F(i)||i in l||s(e,i,t[i],null,r,n);for(let i in l){if(F(i))continue;let o=l[i];let a=t[i];o!==a&&\"value\"!==i&&s(e,i,a,o,r,n)}\"value\"in l&&s(e,\"value\",t.value,l.value,r)}};let H=(e,t,l,n,i,s,o,a,c)=>{let f=t.el=e?e.el:u(\"\");let p=t.anchor=e?e.anchor:u(\"\");let{patchFlag:d,dynamicChildren:h,slotScopeIds:g}=t;(g&&(a=a?a.concat(g):g),null==e)?(r(f,l,n),r(p,l,n),L(t.children||[],l,p,i,s,o,a,c)):d>0&&64&d&&h&&e.dynamicChildren&&e.dynamicChildren.length===h.length?(B(e.dynamicChildren,h,l,i,s,o,a),(null!=t.key||i&&t===i.subTree)&&function e(t,l,n=!1){let r=t.children;let i=l.children;if(S(r)&&S(i))for(let t=0;t<r.length;t++){let l=r[t];let s=i[t];1&s.shapeFlag&&!s.dynamicChildren&&((s.patchFlag<=0||32===s.patchFlag)&&((s=i[t]=lC(i[t])).el=l.el),n||-2===s.patchFlag||e(l,s)),s.type===la&&(-1===s.patchFlag&&(s=i[t]=lC(s)),s.el=l.el),s.type!==lu||s.el||(s.el=l.el)}}(e,t,!0)):q(e,t,l,p,i,s,o,a,c)};let z=(e,t,l,n,r,i,s,o,a)=>{t.slotScopeIds=o,null==e?512&t.shapeFlag?r.ctx.activate(t,l,n,s,a):J(t,l,n,r,i,s,a):K(e,t,a)};let J=(e,t,l,n,r,i,s)=>{var a,u,c;let f,h,g;let _=(a=e,u=n,c=r,f=a.type,h=(u?u.appContext:a.appContext)||lj,(g={uid:lT++,vnode:a,type:f,parent:u,appContext:h,root:null,next:null,subTree:null,effect:null,update:null,job:null,scope:new Z(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:u?u.provides:Object.create(h.provides),ids:u?u.ids:[\"\",0,0],accessCache:null,renderCache:[],components:null,directives:null,propsOptions:function(e,t){let l=t.propsCache;let n=l.get(e);if(n)return n;let r=e.props;let i={};let s=[];if(!r)return O(e)&&l.set(e,d),d;if(S(r))for(let e=0;e<r.length;e++){let t=M(r[e]);t3(t)&&(i[t]=p)}else if(r)for(let e in r){let t=M(e);if(t3(t)){let l=r[e];let n=i[t]=S(l)||w(l)?{type:l}:m({},l);let o=n.type;let a=!1;let u=!0;if(S(o))for(let e=0;e<o.length;++e){let t=o[e];let l=w(t)&&t.name;if(\"Boolean\"===l){a=!0;break}\"String\"===l&&(u=!1)}else a=w(o)&&\"Boolean\"===o.name;n[0]=a,n[1]=u,(a||x(n,\"default\"))&&s.push(t)}}let o=[i,s];return O(e)&&l.set(e,o),o}(f,h),emitsOptions:function(e,t){let l=t.emitsCache;let n=l.get(e);if(void 0!==n)return n;let r=e.emits;let i={};return r?(S(r)?r.forEach(e=>i[e]=null):m(i,r),O(e)&&l.set(e,i),i):(O(e)&&l.set(e,null),null)}(f,h),emit:null,emitted:null,propsDefaults:p,inheritAttrs:f.inheritAttrs,ctx:p,data:p,props:p,attrs:p,slots:p,refs:p,setupState:p,setupContext:null,suspense:c,suspenseId:c?c.pendingId:0,asyncDep:null,asyncResolved:!1,isMounted:!1,isUnmounted:!1,isDeactivated:!1,bc:null,c:null,bm:null,m:null,bu:null,u:null,um:null,bum:null,da:null,a:null,rtg:null,rtc:null,ec:null,sp:null}).ctx={_:g},g.root=u?u.root:g,g.emit=tG.bind(null,g),a.ce&&a.ce(g),e.component=g);if(tR(e)&&(_.ctx.renderer=ep),function(e,t=!1,l=!1){t&&o(t);let{props:n,children:r}=e.vnode;let i=lM(e);(function(e,t,l,n=!1){let r={};let i=Object.create(t2);for(let l in e.propsDefaults=Object.create(null),t8(e,t,r,i),e.propsOptions[0])l in r||(r[l]=void 0);l?e.props=n?r:eZ(r,!1,e$,eW,eJ):e.type.props?e.props=r:e.props=i,e.attrs=i})(e,n,i,t);var s=l||t;let a=e.slots=Object.create(t2);if(32&e.vnode.shapeFlag){let e=r._;e?(ll(a,r,s),s&&V(a,\"_\",e,!0)):le(r,a)}else r&<(e,r);let u=i?function(e,t){let l=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,tz);let{setup:n}=l;if(n){var r;ea();let l=e.setupContext=n.length>1?{attrs:new Proxy((r=e).attrs,lL),slots:r.slots,emit:r.emit,expose:e=>{r.exposed=e||{}}}:null;let i=lE(e);let s=te(n,e,0,[e.props,l]);let o=j(s);if(eu(),i(),(o||e.sp)&&!tD(e)&&(e.ids=[e.ids[0]+e.ids[2]+++\"-\",0,0]),o){if(s.then(lA,lA),t)return s.then(l=>{lD(e,l,t)}).catch(t=>{tl(t,e,0)});e.asyncDep=s}else lD(e,s,t)}else lR(e,t)}(e,t):void 0;return t&&o(!1),u}(_,!1,s),_.asyncDep){if(r&&r.registerDep(_,Y,s),!e.el){let n=_.subTree=lb(lu);P(null,n,t,l),e.placeholder=n.el}}else Y(_,e,t,l,r,i,s)};let K=(e,t,l)=>{let n=t.component=e.component;if(function(e,t,l){let{props:n,children:r,component:i}=e;let{props:s,children:o,patchFlag:a}=t;let u=i.emitsOptions;if(t.dirs||t.transition)return!0;if(!l||!(a>=0))return(!!r||!!o)&&(!o||!o.$stable)||n!==s&&(n?!s||t0(n,s,u):!!s);if(1024&a)return!0;if(16&a)return n?t0(n,s,u):!!s;if(8&a){let e=t.dynamicProps;for(let t=0;t<e.length;t++){let l=e[t];if(t1(s,n,l)&&!tq(u,l))return!0}}return!1}(e,t,l))if(n.asyncDep&&!n.asyncResolved)return void G(n,t,l);else n.next=t,n.update();else t.el=e.el,n.vnode=t};let Y=(e,t,l,r,i,s,o)=>{e.scope.on();let a=e.effect=new X(()=>{if(e.isMounted){let t,{next:l,bu:n,u:r,parent:a,vnode:c}=e;{let t=function e(t){let l=t.subTree.component;if(l)if(l.asyncDep&&!l.asyncResolved)return l;else return e(l)}(e);if(t){l&&(l.el=c.el,G(e,l,o)),t.asyncDep.then(()=>{ln(()=>{e.isUnmounted||u()},i)});return}}let f=l;li(e,!1),l?(l.el=c.el,G(e,l,o)):l=c,n&&$(n),(t=l.props&&l.props.onVnodeBeforeUpdate)&&lO(t,a,l,c),li(e,!0);let p=tZ(e);let d=e.subTree;e.subTree=p,k(d,p,_(d.el),eo(d),e,i,s),l.el=p.el,null===f&&function({vnode:e,parent:t},l){for(;t;){let n=t.subTree;if(n.suspense&&n.suspense.activeBranch===e&&(n.el=e.el),n===e)(e=t.vnode).el=l,t=t.parent;else break}}(e,p.el),r&&ln(r,i),(t=l.props&&l.props.onVnodeUpdated)&&ln(()=>lO(t,a,l,c),i)}else{let o;let{el:a,props:u}=t;let{bm:c,m:f,parent:p,root:d,type:h}=e;let g=tD(t);if(li(e,!1),c&&$(c),!g&&(o=u&&u.onVnodeBeforeMount)&&lO(o,p,t),li(e,!0),a&&n){let t=()=>{e.subTree=tZ(e),n(a,e.subTree,e,i,null)};g&&h.__asyncHydrate?h.__asyncHydrate(a,e,t):t()}else{d.ce&&d.ce._hasShadowRoot()&&d.ce._injectChildStyle(h,e.parent?e.parent.type:void 0);let n=e.subTree=tZ(e);k(null,n,l,r,e,i,s),t.el=n.el}if(f&&ln(f,i),!g&&(o=u&&u.onVnodeMounted)){let e=t;ln(()=>lO(o,p,e),i)}(256&t.shapeFlag||p&&tD(p.vnode)&&256&p.vnode.shapeFlag)&&e.a&&ln(e.a,i),e.isMounted=!0,t=l=r=null}});e.scope.off();let u=e.update=a.run.bind(a);let c=e.job=a.runIfDirty.bind(a);c.i=e,c.id=e.uid,a.scheduler=()=>tf(c),li(e,!0),u()};let G=(e,t,l)=>{t.component=e;let n=e.vnode.props;e.vnode=t,e.next=null,function(e,t,l,n){let{props:r,attrs:i,vnode:{patchFlag:s}}=e;let o=e2(r);let[a]=e.propsOptions;let u=!1;if((n||s>0)&&!(16&s)){if(8&s){let l=e.vnode.dynamicProps;for(let n=0;n<l.length;n++){let s=l[n];if(tq(e.emitsOptions,s))continue;let c=t[s];if(a)if(x(i,s))c!==i[s]&&(i[s]=c,u=!0);else{let t=M(s);r[t]=t4(a,o,t,c,e,!1)}else c!==i[s]&&(i[s]=c,u=!0)}}}else{let n;for(let s in t8(e,t,r,i)&&(u=!0),o)t&&(x(t,s)||(n=D(s))!==s&&x(t,n))||(a?l&&(void 0!==l[s]||void 0!==l[n])&&(r[s]=t4(a,o,s,void 0,e,!0)):delete r[s]);if(i!==o)for(let e in i)t&&x(t,e)||(delete i[e],u=!0)}u&&em(e.attrs,\"set\",\"\")}(e,t.props,n,l),((e,t,l)=>{let{vnode:n,slots:r}=e;let i=!0;let s=p;if(32&n.shapeFlag){let e=t._;e?l&&1===e?i=!1:ll(r,t,l):(i=!t.$stable,le(t,r)),s=t}else t&&(lt(e,t),s={default:1});if(i)for(let e in r)t5(e)||null!=s[e]||delete r[e]})(e,t.children,l),ea(),th(e),eu()};let q=(e,t,l,n,r,i,s,o,a=!1)=>{let u=e&&e.children;let c=e?e.shapeFlag:0;let f=t.children;let{patchFlag:p,shapeFlag:d}=t;if(p>0){if(128&p)return void ee(u,f,l,n,r,i,s,o,a);else if(256&p)return void Q(u,f,l,n,r,i,s,o,a)}8&d?(16&c&&es(u,r,i),f!==u&&g(l,f)):16&c?16&d?ee(u,f,l,n,r,i,s,o,a):es(u,r,i,!0):(8&c&&g(l,\"\"),16&d&&L(f,l,n,r,i,s,o,a))};let Q=(e,t,l,n,r,i,s,o,a)=>{let u;e=e||d,t=t||d;let c=e.length;let f=t.length;let p=Math.min(c,f);for(u=0;u<p;u++){let n=t[u]=a?lC(t[u]):lw(t[u]);k(e[u],n,l,null,r,i,s,o,a)}c>f?es(e,r,i,!0,!1,p):L(t,l,n,r,i,s,o,a,p)};let ee=(e,t,l,n,r,i,s,o,a)=>{let u=0;let c=t.length;let f=e.length-1;let p=c-1;for(;u<=f&&u<=p;){let n=e[u];let c=t[u]=a?lC(t[u]):lw(t[u]);if(lg(n,c))k(n,c,l,null,r,i,s,o,a);else break;u++}for(;u<=f&&u<=p;){let n=e[f];let u=t[p]=a?lC(t[p]):lw(t[p]);if(lg(n,u))k(n,u,l,null,r,i,s,o,a);else break;f--,p--}if(u>f){if(u<=p){let e=p+1;let f=e<c?t[e].el:n;for(;u<=p;)k(null,t[u]=a?lC(t[u]):lw(t[u]),l,f,r,i,s,o,a),u++}}else if(u>p)for(;u<=f;)el(e[u],r,i,!0),u++;else{let h;let g=u;let _=u;let y=new Map;for(u=_;u<=p;u++){let e=t[u]=a?lC(t[u]):lw(t[u]);null!=e.key&&y.set(e.key,u)}let m=0;let b=p-_+1;let x=!1;let S=0;let w=Array(b);for(u=0;u<b;u++)w[u]=0;for(u=g;u<=f;u++){let n;let c=e[u];if(m>=b){el(c,r,i,!0);continue}if(null!=c.key)n=y.get(c.key);else for(h=_;h<=p;h++)if(0===w[h-_]&&lg(c,t[h])){n=h;break}void 0===n?el(c,r,i,!0):(w[n-_]=u+1,n>=S?S=n:x=!0,k(c,t[n],l,null,r,i,s,o,a),m++)}let C=x?function(e){let t,l,n,r,i;let s=e.slice();let o=[0];let a=e.length;for(t=0;t<a;t++){let a=e[t];if(0!==a){if(e[l=o[o.length-1]]<a){s[t]=l,o.push(t);continue}for(n=0,r=o.length-1;n<r;)e[o[i=n+r>>1]]<a?n=i+1:r=i;a<e[o[n]]&&(n>0&&(s[t]=o[n-1]),o[n]=t)}}for(n=o.length,r=o[n-1];n-- >0;)o[n]=r,r=s[r];return o}(w):d;for(h=C.length-1,u=b-1;u>=0;u--){let e=_+u;let f=t[e];let p=t[e+1];let d=e+1<c?p.el||function e(t){if(t.placeholder)return t.placeholder;let l=t.component;return l?e(l.subTree):null}(p):n;0===w[u]?k(null,f,l,d,r,i,s,o,a):x&&(h<0||u!==C[h]?et(f,l,d,2):h--)}}};let et=(e,t,l,n,s=null)=>{let{el:o,type:a,transition:u,children:c,shapeFlag:f}=e;if(6&f)return void et(e.component.subTree,t,l,n);if(128&f)return void e.suspense.move(t,l,n);if(64&f)return void a.move(e,t,l,ep);if(a===lo){r(o,t,l);for(let e=0;e<c.length;e++)et(c[e],t,l,n);r(e.anchor,t,l);return}if(a===lc)return void(({el:e,anchor:t},l,n)=>{let i;for(;e&&e!==t;)i=y(e),r(e,l,n),e=i;r(t,l,n)})(e,t,l);if(2!==n&&1&f&&u)if(0===n)u.beforeEnter(o),r(o,t,l),ln(()=>u.enter(o),s);else{let{leave:n,delayLeave:s,afterLeave:a}=u;let c=()=>{e.ctx.isUnmounted?i(o):r(o,t,l)};let f=()=>{o._isLeaving&&o[tS](!0),n(o,()=>{c(),a&&a()})};s?s(o,c,f):f()}else r(o,t,l)};let el=(e,t,l,n=!1,r=!1)=>{let i;let{type:s,props:o,ref:a,children:u,dynamicChildren:c,shapeFlag:f,patchFlag:p,dirs:d,cacheIndex:h}=e;if(-2===p&&(r=!1),null!=a&&(ea(),tM(a,null,l,e,!0),eu()),null!=h&&(t.renderCache[h]=void 0),256&f)return void t.ctx.deactivate(e);let g=1&f&&d;let _=!tD(e);if(_&&(i=o&&o.onVnodeBeforeUnmount)&&lO(i,t,e),6&f)ei(e.component,l,n);else{if(128&f)return void e.suspense.unmount(l,n);g&&tb(e,null,t,\"beforeUnmount\"),64&f?e.type.remove(e,t,l,ep,n):c&&!c.hasOnce&&(s!==lo||p>0&&64&p)?es(c,t,l,!1,!0):(s===lo&&384&p||!r&&16&f)&&es(u,t,l),n&&en(e)}(_&&(i=o&&o.onVnodeUnmounted)||g)&&ln(()=>{i&&lO(i,t,e),g&&tb(e,null,t,\"unmounted\")},l)};let en=e=>{let{type:t,el:l,anchor:n,transition:r}=e;if(t===lo)return void er(l,n);if(t===lc)return void(({el:e,anchor:t})=>{let l;for(;e&&e!==t;)l=y(e),i(e),e=l;i(t)})(e);let s=()=>{i(l),r&&!r.persisted&&r.afterLeave&&r.afterLeave()};if(1&e.shapeFlag&&r&&!r.persisted){let{leave:t,delayLeave:n}=r;let i=()=>t(l,s);n?n(e.el,s,i):i()}else s()};let er=(e,t)=>{let l;for(;e!==t;)l=y(e),i(e),e=l;i(t)};let ei=(e,t,l)=>{let{bum:n,scope:r,job:i,subTree:s,um:o,m:a,a:u}=e;ls(a),ls(u),n&&$(n),r.stop(),i&&(i.flags|=8,el(s,e,t,l)),o&&ln(o,t),ln(()=>{e.isUnmounted=!0},t)};let es=(e,t,l,n=!1,r=!1,i=0)=>{for(let s=i;s<e.length;s++)el(e[s],t,l,n,r)};let eo=e=>{if(6&e.shapeFlag)return eo(e.component.subTree);if(128&e.shapeFlag)return e.suspense.next();let t=y(e.anchor||e.el);let l=t&&t[tx];return l?y(l):t};let ec=!1;let ef=(e,t,l)=>{let n;null==e?t._vnode&&(el(t._vnode,null,null,!0),n=t._vnode.component):k(t._vnode||null,e,t,null,null,null,l),t._vnode=e,ec||(ec=!0,th(n),tv(),ec=!1)};let ep={p:k,um:el,m:et,r:en,mt:J,mc:L,pc:q,pbc:B,n:eo,o:e};return{render:ef,hydrate:l,createApp:(t=l,function(e,l=null){w(e)||(e=m({},e)),null==l||O(l)||(l=null);let n=tJ();let r=new WeakSet;let i=[];let s=!1;let o=n.app={_uid:tK++,_component:e,_props:l,_container:null,_context:n,_instance:null,version:\"3.5.30\",get config(){return n.config},set config(v){},use:(e,...t)=>(r.has(e)||(e&&w(e.install)?(r.add(e),e.install(o,...t)):w(e)&&(r.add(e),e(o,...t))),o),mixin:e=>o,component:(e,t)=>t?(n.components[e]=t,o):n.components[e],directive:(e,t)=>t?(n.directives[e]=t,o):n.directives[e],mount(r,i,a){if(s);else{let u=o._ceVNode||lb(e,l);return u.appContext=n,!0===a?a=\"svg\":!1===a&&(a=void 0),i&&t?t(u,r):ef(u,r,a),s=!0,o._container=r,r.__vue_app__=o,l$(u.component)}},onUnmount(e){i.push(e)},unmount(){s&&(tt(i,o._instance,16),ef(null,o._container),delete o._container.__vue_app__)},provide:(e,t)=>(n.provides[e]=t,o),runWithContext(e){let t=tY;tY=o;try{return e()}finally{tY=t}}};return o})}}({createElement(e){let t=new lQ(e);return lH(0,t.id,e),lG(),t},createText(e){let t=new lQ(\"#text\");return lH(1,t.id),e&&lH(5,t.id,e),lG(),t},createComment(e){let t=new lQ(\"#comment\");return lH(0,t.id,\"__comment\"),lG(),t},setText(e,t){lH(5,e.id,t),lG()},setElementText(e,t){for(;e.firstChild;){let t=e.firstChild;e.removeChild(t),lH(3,e.id,t.id)}lH(5,e.id,t),lG()},insert(e,t,l){if(t.insertBefore(e,null!=l?l:null),\"list\"===t.type&&(\"#comment\"===e.type||\"#text\"===e.type))return;let n=null!=l?l:null;if(\"list\"===t.type)for(;n&&(\"#comment\"===n.type||\"#text\"===n.type);)n=n.next;let r=n?n.id:-1;lH(2,t.id,e.id,r),lG()},remove(e){if(e.parent){let t=e.parent.id;e.parent.removeChild(e),lH(3,t,e.id),lG()}},patchProp(e,t,l,n){var r,i;if(t.startsWith(\"main-thread-\")){let l=t.slice(12);if(\"ref\"===l)null!=n&&\"object\"==typeof n&&\"_wvid\"in n&&lH(12,e.id,n.toJSON());else{let t=l0(l);t&&null!=n?(c||(c=new lN,lynx.getCoreContext().addEventListener(\"Lynx.Worklet.runOnBackground\",lB)),c.add(n),lH(11,e.id,t.type,t.name,n)):t&&lH(7,e.id,t.type,t.name)}lG();return}let s=l0(t);if(s){let l=l1.get(e.id);let r=null==l?void 0:l.get(t);if(null!=n)if(r)(0,lZ.mY)(r,n);else{let r=(0,lZ.kz)(n);l||(l=new Map,l1.set(e.id,l)),l.set(t,r),lH(6,e.id,s.type,s.name,r)}else r&&((0,lZ.ht)(r),l.delete(t),lH(7,e.id,s.type,s.name))}else if(\"style\"===t){let t=null!=n&&\"object\"==typeof n?function(e){let t={};for(let l of Object.keys(e)){let n=e[l];\"number\"!=typeof n||lX.has(l)?t[l]=n:t[l]=0===n?0:`${n}px`}return t}(n):{};e._style=t;let l=e._vShowHidden?(r=function(e){for(var t=1;t<arguments.length;t++){var l=null!=arguments[t]?arguments[t]:{};var n=Object.keys(l);\"function\"==typeof Object.getOwnPropertySymbols&&(n=n.concat(Object.getOwnPropertySymbols(l).filter(function(e){return Object.getOwnPropertyDescriptor(l,e).enumerable}))),n.forEach(function(t){lV(e,t,l[t])})}return e}({},t),i=i={display:\"none\"},Object.getOwnPropertyDescriptors?Object.defineProperties(r,Object.getOwnPropertyDescriptors(i)):(function(e){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t.push.apply(t,l)}return t})(Object(i)).forEach(function(e){Object.defineProperty(r,e,Object.getOwnPropertyDescriptor(i,e))}),r):t;lH(8,e.id,l)}else\"class\"===t?(e._baseClass=null!=n?n:\"\",lH(9,e.id,l2(e))):\"id\"===t?lH(10,e.id,n):lH(4,e.id,t,n);lG()},parentNode:e=>e.parent,nextSibling:e=>e.next}).createApp;Symbol.for(\"v-stc\");var nt=function(e,t,l,n,r,i){var s;return(s=lm(e,t,l,n,r,i,!0)).dynamicChildren=ld>0?lp||d:null,lf.pop(),lp=lf[lf.length-1]||null,ld>0&&lp&&lp.push(s),s};var nl=function(e=!1){lf.push(lp=e?null:[])};var nn=function(e){var t,l;return l=!1,e4(t=e)?t:new e3(t,l)};let nr=i.p+\"static/image/arrow.aee54ba7.png\";let ni=i.p+\"static/image/lynx-logo.620eb8d1.png\";let ns=i.p+\"static/image/vue-logo.9b1ed2e1.png\";let no;let na;(no=ne(tF({__name:\"App\",setup(e){let t,l,n=nn(!1);let{y:r,jump:i}=(t=nn(0),l=function(e,t={}){let{gravity:l=.6,jumpForce:n=-12,stackFactor:r=.6,frameMs:i=16}=t;let s=0;let o=0;let a=null;return{jump:function(){o=Math.min(o+n*r,n),a||function t(){if(o+=l,(s+=o)>=0){o=0,a=null,e(s=0);return}e(s),a=setTimeout(t,i)}()},getY:()=>s,destroy:function(){a&&(clearTimeout(a),a=null)}}}(e=>{t.value=e},void 0),tU(()=>{l.destroy()}),{y:t,jump:()=>l.jump()});function s(){n.value=!n.value}return t$(()=>{console.info(\"Hello, Vue Lynx\")}),(e,t)=>(nl(),nt(\"view\",{onTap:t[0]||(t[0]=(...e)=>e5(i)&&e5(i)(...e))},[lm(\"view\",{class:\"Background\"}),lm(\"view\",{class:\"App\"},[lm(\"view\",{class:\"Banner\"},[lm(\"view\",{class:\"Logo\",style:B({transform:`translateY(${e5(r)}px)`}),onTap:s},[lm(\"image\",{src:e5(n)?e5(ns):e5(ni),class:J(e5(n)?\"Logo--vue\":\"Logo--lynx\")},null,10,[\"src\"])],36),lm(\"text\",{class:\"Title\"},\"Vue\"),lm(\"text\",{class:\"Subtitle\"},\"on Lynx\")]),lm(\"view\",{class:\"Content\"},[lm(\"image\",{src:e5(nr),class:\"Arrow\"},null,8,[\"src\"]),lm(\"text\",{class:\"Description\"},\"Tap the logo and have fun!\"),lm(\"text\",{class:\"Hint\"},[lS(\" Edit\"),lm(\"text\",{style:{fontStyle:\"italic\",color:\"rgba(255, 255, 255, 0.85)\"}},Y(\" src/App.vue \")),lS(\"to see updates! \")])]),lm(\"view\",{style:{flex:1}})])],32))}}),void 0),na={get config(){return no.config},use:(e,...t)=>(no.use(e,...t),na),provide:(e,t)=>(no.provide(e,t),na),mount(){let e=new lQ(\"page\",1);no.mount(e)},unmount(){no.unmount()}}).mount()})();"},"cardType":"react","appType":"card","pageConfig":{"enableFiberArch":true,"useLepusNG":true,"enableReuseContext":true,"bundleModuleMode":"ReturnByFunction","templateDebugUrl":"","debugInfoOutside":true,"defaultDisplayLinear":true,"enableCSSInvalidation":true,"enableCSSSelector":true,"enableLepusDebug":false,"enableRemoveCSSScope":true,"targetSdkVersion":"3.2","defaultOverflowVisible":true,"lepusStrict":true,"useNewSwiper":true,"enableNewIntersectionObserver":true,"enableNativeList":true,"enableA11y":true,"enableAccessibilityElement":false,"enableCSSInheritance":false,"enableNewGesture":false,"removeDescendantSelectorScope":true},"lepusCode":{"worklet-runtime":"(()=>{\"use strict\";var e,t,n;let r,l,i;function o(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}class a{cancel(){return __ElementAnimate(this.effect.target.element,[3,this.id])}pause(){return __ElementAnimate(this.effect.target.element,[2,this.id])}play(){return __ElementAnimate(this.effect.target.element,[1,this.id])}start(){return __ElementAnimate(this.effect.target.element,[0,this.id,this.effect.keyframes,this.effect.options])}constructor(e){o(this,\"effect\",void 0),o(this,\"id\",void 0),this.effect=e,this.id=\"__lynx-inner-js-animation-\"+a.count++,this.start()}}function u(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}o(a,\"count\",0);class s{constructor(e,t,n){u(this,\"target\",void 0),u(this,\"keyframes\",void 0),u(this,\"options\",void 0),this.target=e,this.keyframes=t,this.options=n}}function c(e,t){var n;let r=(null!=(n=SystemInfo.lynxSdkVersion)?n:\"1.0\").split(\".\");return Number(r[0])>e||Number(r[0])==e&&Number(r[1])>t}let d=!1,f=!0;class y{setAttribute(e,t){__SetAttribute(this.element,e,t),this.flushElementTree()}setStyleProperty(e,t){__AddInlineStyle(this.element,e,t),this.flushElementTree()}setStyleProperties(e){for(let t in e)__AddInlineStyle(this.element,t,e[t]);this.flushElementTree()}getAttribute(e){return __GetAttributeByName(this.element,e)}getAttributeNames(){return __GetAttributeNames(this.element)}querySelector(e){let t=__QuerySelector(this.element,e,{});return t?new y(t):null}querySelectorAll(e){return __QuerySelectorAll(this.element,e,{}).map(e=>new y(e))}getComputedStyleProperty(e){if(!c(3,4))throw Error(\"getComputedStyleProperty requires Lynx sdk version 3.5\");if(!e)throw Error(\"getComputedStyleProperty: key is required\");return __GetComputedStyleByKey(this.element,e)}animate(e,t){return new a(new s(this,e,\"number\"==typeof t?{duration:t}:null!=t?t:{}))}invoke(e,t){return new Promise((n,r)=>{__InvokeUIMethod(this.element,e,null!=t?t:{},e=>{0===e.code?n(e.data):r(Error(\"UI method invoke: \"+JSON.stringify(e)))}),this.flushElementTree()})}flushElementTree(){!d&&f&&(d=!0,Promise.resolve().then(()=>{d=!1,__FlushElementTree()}))}constructor(e){!function(e,t,n){t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n}(this,\"element\",void 0),Object.defineProperty(this,\"element\",{get:()=>e})}}class m{static get(){return null!=m.pageElement||(m.pageElement=__GetPageElement()),m.pageElement}}function h(e,t,n){let r;try{r=runWorklet(e,t)}finally{lynx.getJSContext().dispatchEvent({type:\"Lynx.Worklet.FunctionCallRet\",data:JSON.stringify({resolveId:n,returnValue:r})})}}t=void 0,(e=\"pageElement\")in m?Object.defineProperty(m,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):m[e]=t;let _=(e,t)=>({current:t,_wvid:e}),p=e=>{let t,n=e._wvid;return n<0?(t=r._firstScreenWorkletRefMap[n])||(t=r._firstScreenWorkletRefMap[n]=_(n,e._initValue)):t=r._workletRefMap[n],t};function k(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function g(e,t,n){lynxWorkletImpl._workletMap[t]=n}let v=new WeakMap;function I(e,t){if(\"object\"!=typeof e||null===e)return e;if(t){let t=v.get(e);if(t)return t}let n={main:e};return x(n,0,e),t&&v.set(e,n.main),n.main}let x=(e,t,n)=>{if(++t>=1e3)throw Error(\"Depth of value exceeds limit of 1000.\");if(\"object\"==typeof e&&null!==e)for(let l in e){let i=e[l];if(\"object\"==typeof i&&null!==i){if(\"elementRefptr\"in i){e[l]=new y(i.elementRefptr);continue}if(!(i instanceof y)){if(x(i,t,n),\"_wvid\"in i){e[l]=p(i);continue}if(\"_wkltId\"in i){e[l]=lynxWorkletImpl._workletMap[i._wkltId].bind({...i}),e[l].ctx=i;continue}if(\"_jsFnId\"in i){var r;i._execId=n._execId,null==(r=lynxWorkletImpl._jsFunctionLifecycleManager)||r.addRef(n._execId,i);continue}}}}};if(void 0===globalThis.lynxWorkletImpl){let e,t;globalThis.lynxWorkletImpl={_workletMap:{},_refImpl:r={_workletRefMap:{},_firstScreenWorkletRefMap:{},updateWorkletRef:function(e,t){p(e).current=t?new y(t):null},updateWorkletRefInitValueChanges:function(e){e.forEach(([e,t])=>{r._workletRefMap[e]||(r._workletRefMap[e]=_(e,t))})},clearFirstScreenWorkletRefMap:function(){r._firstScreenWorkletRefMap={}}},_runOnBackgroundDelayImpl:l={delayedBackgroundFunctionArray:[],delayRunOnBackground:function(e,t){var n;l.delayedBackgroundFunctionArray.push({task:t}),(null!=(n=e._delayIndices)?n:e._delayIndices=[]).push(l.delayedBackgroundFunctionArray.length-1)},runDelayedBackgroundFunctions:function(){for(let e of l.delayedBackgroundFunctionArray)e.jsFnHandle&&e.task(e.jsFnHandle._jsFnId,e.jsFnHandle._execId);l.delayedBackgroundFunctionArray.length=0}},_hydrateCtx:function(e,t){!function e(t,n,r){if(t&&\"object\"==typeof t&&n&&\"object\"==typeof n&&(!t._wkltId||t._wkltId===n._wkltId))for(let o in t)if(\"_wvid\"===o){var l,i;l=t[o],\"_initValue\"in(i=n)||(lynxWorkletImpl._refImpl._workletRefMap[l]=i)}else if(\"_jsFn\"===o)!function(e,t,n){for(let r in e){let l=e[r],i=t[r];if(!(null==i?void 0:i._delayIndices)){i&&(i._isFirstScreen=!1,i._execId=n,Object.assign(i,l));continue}for(let e of i._delayIndices){let t=lynxWorkletImpl._runOnBackgroundDelayImpl.delayedBackgroundFunctionArray[e];l._execId=n,t.jsFnHandle=l}}}(t[o],n[o],r);else{let l=\"function\"==typeof n[o]?n[o].ctx:n[o];e(t[o],l,r)}}(e,t,e._execId)},_eventDelayImpl:i={_delayedWorkletParamsMap:new Map,runDelayedWorklet:function(e,t){(()=>{let n=i._delayedWorkletParamsMap.get(e._wkltId);if(void 0===n)return;let r=[];n.forEach(n=>{var l;let i=n[0];(null==i||null==(l=i.currentTarget)?void 0:l.elementRefptr)===t?setTimeout(()=>{runWorklet(e,n)},0):r.push(n)}),i._delayedWorkletParamsMap.set(e._wkltId,r)})()},clearDelayedWorklets:function(){i._delayedWorkletParamsMap.clear()}},_eomImpl:{setShouldFlush:function(e){f=e}},_runRunOnMainThreadTask:h},c(2,15)&&(globalThis.lynxWorkletImpl._jsFunctionLifecycleManager=new class e{addRef(e,t){var n;this.execIdRefCount.set(e,(null!=(n=this.execIdRefCount.get(e))?n:0)+1),this.registry.register(t,e)}removeRef(e){let t=this.execIdRefCount.get(e);t>1?this.execIdRefCount.set(e,t-1):(this.execIdRefCount.delete(e),this.execIdSetToFire.add(e),this.willFire||(this.willFire=!0,Promise.resolve().then(()=>{this.fire()})))}fire(){lynx.getJSContext().dispatchEvent({type:\"Lynx.Worklet.releaseBackgroundWorkletCtx\",data:Array.from(this.execIdSetToFire)}),this.execIdSetToFire.clear(),this.willFire=!1}constructor(){k(this,\"execIdRefCount\",new Map),k(this,\"execIdSetToFire\",new Set),k(this,\"willFire\",!1),k(this,\"registry\",void 0),this.registry=new FinalizationRegistry(this.removeRef.bind(this))}}),globalThis.registerWorklet=g,globalThis.registerWorkletInternal=g,globalThis.runWorklet=function(e,t,n){var r,l,o;let a,u;return\"object\"==typeof(r=e)&&null!==r&&(\"_wkltId\"in r||\"_lepusWorkletHash\"in r)?\"_lepusWorkletHash\"in e?void(l=e._lepusWorkletHash,o=t,(u=(a=i._delayedWorkletParamsMap).get(l))?u.push(o):a.set(l,[o])):function(e,t,n){let r=(e._wkltId,I(e,!0)),l=I(t||[],!1),[i,o]=function(e,t){if(!Array.isArray(e)||\"object\"!=typeof e[0]||null===e[0]||(!t||1!==t.source)&&1)return[!1,{}];let n={},r=e[0];return r.stopPropagation=function(){var e;n._eventReturnResult=(null!=(e=n._eventReturnResult)?e:0)|1},r.stopImmediatePropagation=function(){var e;n._eventReturnResult=(null!=(e=n._eventReturnResult)?e:0)|2},[!0,n]}(l,n),a=r(...l);return i?{returnValue:a,eventReturnResult:o._eventReturnResult}:a}(e,t,n):void console.warn(\"MainThreadFunction: Invalid function object: \"+JSON.stringify(e))},lynx.querySelector=function(e){let t=__QuerySelector(m.get(),e,{});return t?new y(t):null},lynx.querySelectorAll=function(e){return __QuerySelectorAll(m.get(),e,{}).map(e=>new y(e))},globalThis.setTimeout=lynx.setTimeout,globalThis.setInterval=lynx.setInterval,globalThis.clearTimeout=lynx.clearTimeout,globalThis.clearInterval=null!=(n=lynx.clearInterval)?n:lynx.clearTimeInterval,e=lynx.requestAnimationFrame,lynx.requestAnimationFrame=globalThis.requestAnimationFrame=t=>{if(!c(2,15))throw Error(\"requestAnimationFrame in main thread script requires Lynx sdk version 2.16\");return e(t)},globalThis.cancelAnimationFrame=lynx.cancelAnimationFrame,(t=lynx.getJSContext()).addEventListener(\"Lynx.Worklet.runWorkletCtx\",e=>{let t=JSON.parse(e.data);h(t.worklet,t.params,t.resolveId)}),t.addEventListener(\"Lynx.Worklet.releaseWorkletRef\",e=>{var t;t=e.data.id,delete r._workletRefMap[t]})}})();","root":"\"use strict\";var e={306(){var e;let t;let n=new Map;let l=1;let r=new Map;let o=new Set;let a=new Map;let i=new Set([\"item-key\",\"estimated-main-axis-size-px\",\"estimated-height-px\",\"estimated-height\",\"reuse-identifier\",\"full-span\",\"sticky-top\",\"sticky-bottom\",\"recyclable\"]);let u=new Map;let s=new Map;function _(){}function c(){if(\"u\">typeof globalThis&&\"lynxWorkletImpl\"in globalThis)return globalThis.lynxWorkletImpl}function p(e,t,n,l,r,o,a){try{var i=e[o](a);var u=i.value}catch(e){n(e);return}i.done?t(u):Promise.resolve(u).then(l,r)}let d=1;function f(e,t,n,l){lynx.getJSContext().dispatchEvent({type:\"Lynx.Worklet.runOnBackground\",data:JSON.stringify({obj:{_jsFnId:e,_execId:n},params:t,resolveId:l})})}let m=globalThis;if(m.SystemInfo=null!=(e=\"u\">typeof lynx&&lynx.SystemInfo)?e:{},m.runOnBackground=function(e){return(...n)=>{var l;return(l=function*(){return new Promise(l=>{var r;t||(t=new Map,lynx.getJSContext().addEventListener(\"Lynx.Worklet.FunctionCallRet\",e=>{let{resolveId:n,returnValue:l}=JSON.parse(e.data);let r=t.get(n);r&&(t.delete(n),r(l))}));let o=d++;(t.set(o,l),e._isFirstScreen&&\"u\">typeof lynxWorkletImpl&&(null==(r=lynxWorkletImpl)?void 0:r._runOnBackgroundDelayImpl))?lynxWorkletImpl._runOnBackgroundDelayImpl.delayRunOnBackground(e,(e,t)=>{f(e,n,t,o)}):f(e._jsFnId,n,e._execId,o)})},function(){var e=this,t=arguments;return new Promise(function(n,r){var o=l.apply(e,t);function a(e){p(o,n,r,a,i,\"next\",e)}function i(e){p(o,n,r,a,i,\"throw\",e)}a(void 0)})})()}},\"u\"<typeof __LoadLepusChunk)console.warn(\"[vue-mt] __LoadLepusChunk not available, worklet events will not work\");else{let e={chunkType:0};\"u\">typeof globDynamicComponentEntry&&(e.dynamicComponentEntry=globDynamicComponentEntry),__LoadLepusChunk(\"worklet-runtime\",e)?console.info(\"[vue-mt] worklet-runtime chunk loaded\"):console.error('[vue-mt] __LoadLepusChunk(\"worklet-runtime\") returned false — registerWorkletInternal will not be available. Check browser console for loadScriptSync errors.')}m.processData=function(e,t){return null!=e?e:{}},m.renderPage=function(e){console.info(\"[vue-mt] renderPage called\"),n.clear(),l=1,r.clear(),o.clear(),a.clear(),u.clear(),s.clear();let t=__CreatePage(\"0\",0);let i=__CreateComponent(__GetElementUniqueID(t),\"vue-root\",0,\"u\">typeof globDynamicComponentEntry?globDynamicComponentEntry:\"\",\"vue-root\",\"/\",null,null);__AppendElement(t,i),l=__GetElementUniqueID(i),n.set(1,i),__FlushElementTree(t),console.info(\"[vue-mt] renderPage done, page root id=1 stored\")},m.updatePage=function(e){},m.updateGlobalProps=function(e){},m.vuePatchUpdate=function({data:e}){(function(e){let t=e.length;if(0===t)return;if(t>=3&&0===e[0]){let t=e[1];if(n.has(t))return}let p=0;for(;p<t;)switch(e[p++]){case 0:{let t;let a=e[p++];let i=e[p++];\"__comment\"===i?t=__CreateRawText(\"\"):\"list\"===i?t=function(e){o.add(e),r.set(e,[]),s.set(e,0);let t={componentAtIndex:(t,n,l,o)=>{let a=r.get(e);if(!a||l<0||l>=a.length)return;let i=a[l].el;__AppendElement(t,i);let u=__GetElementUniqueID(i);return __FlushElementTree(i,{triggerLayout:!0,operationID:o,elementID:u,listID:n}),u},enqueueComponent:_,componentAtIndexes:(t,n,l,o)=>{let a=r.get(e);if(!a)return;let i=[];for(let e=0;e<l.length;e++){let n=l[e];if(o[e],n<0||n>=a.length){i.push(-1);continue}let r=a[n].el;__AppendElement(t,r);let u=__GetElementUniqueID(r);i.push(u)}__FlushElementTree(t,{triggerLayout:!0,operationIDs:o,elementIDs:i,listID:n})}};let n=__CreateList(l,t.componentAtIndex,t.enqueueComponent,{},t.componentAtIndexes);return __SetCSSId([n],0),n}(a):__SetCSSId([t=function(e,t){switch(e){case\"view\":return __CreateView(t);case\"text\":return __CreateText(t);case\"image\":return __CreateImage(t);case\"scroll-view\":return __CreateScrollView(t);default:return __CreateElement(e,t)}}(i,l)],0),n.set(a,t),\"__comment\"!==i&&__SetAttribute(t,`vue-ref-${a}`,1);break}case 1:{let t=e[p++];let r=__CreateText(l);__SetCSSId([r],0),n.set(t,r),__SetAttribute(r,`vue-ref-${t}`,1);break}case 2:{let t=e[p++];let l=e[p++];let a=e[p++];let i=n.get(t);let u=n.get(l);if(i&&u)if(o.has(t))(function(e,t,n){let l=r.get(e);l&&l.push({el:t,bgId:n})})(t,u,l);else if(-1===a)__AppendElement(i,u);else{let e=n.get(a);e&&__InsertElementBefore(i,u,e)}break}case 3:{let t=e[p++];let l=e[p++];let r=n.get(t);let o=n.get(l);r&&o&&__RemoveElement(r,o);break}case 4:{let t=e[p++];let l=e[p++];let r=e[p++];if(i.has(l))(function(e,t,n){let l=u.get(e);l?l[t]=n:u.set(e,{[t]:n}),\"item-key\"===t&&a.set(e,String(n))})(t,l,r);else{let e=n.get(t);e&&__SetAttribute(e,l,r)}break}case 5:{let t=e[p++];let l=e[p++];let r=n.get(t);r&&__SetAttribute(r,\"text\",l);break}case 6:{let t=e[p++];let l=e[p++];let r=e[p++];let o=e[p++];let a=n.get(t);console.info(\"[vue-mt] SET_EVENT id=\",t,\"type=\",l,\"name=\",r,\"sign=\",o,\"el found=\",null!=a),a&&__AddEvent(a,l,r,o);break}case 7:{let t=e[p++];let l=e[p++];let r=e[p++];let o=n.get(t);o&&__AddEvent(o,l,r,void 0);break}case 8:{let t=e[p++];let l=e[p++];let r=n.get(t);r&&__SetInlineStyles(r,l);break}case 9:{let t=e[p++];let l=e[p++];let r=n.get(t);r&&__SetClasses(r,l);break}case 10:{let t=e[p++];let l=e[p++];let r=n.get(t);r&&__SetID(r,null!=l?l:void 0);break}case 11:(function(e,t,l,r){let o=n.get(e);console.info(\"[vue-mt] SET_WORKLET_EVENT id=\",e,\"type=\",t,\"name=\",l,\"ctx=\",r,\"el found=\",null!=o),o&&(r._workletType=\"main-thread\",__AddEvent(o,t,l,{type:\"worklet\",value:r}))})(e[p++],e[p++],e[p++],e[p++]);break;case 12:(function(e,t){let l=n.get(e);if(console.info(\"[vue-mt] SET_MT_REF id=\",e,\"refImpl=\",t,\"el found=\",null!=l),l){let e=c();if((null==e?void 0:e._refImpl)&&null!=t._wvid){var r;let n=e._refImpl._workletRefMap;!n||t._wvid in n||(n[t._wvid]={current:null!=(r=t._initValue)?r:null,_wvid:t._wvid}),e._refImpl.updateWorkletRef(t,l)}}})(e[p++],e[p++]);break;case 13:(function(e,t){let n=c();if(null==n?void 0:n._refImpl){let l=n._refImpl._workletRefMap;!l||e in l||(l[e]={current:t,_wvid:e})}})(e[p++],e[p++])}(function(){for(let[l,o]of r){var e,t;let r=null!=(e=s.get(l))?e:0;if(o.length<=r)continue;let i=n.get(l);if(!i)continue;let _=[];for(let e=r;e<o.length;e++){let n=o[e];let l={position:e,type:\"list-item\",\"item-key\":null!=(t=a.get(n.bgId))?t:String(e)};let r=u.get(n.bgId);r&&Object.assign(l,r),_.push(l)}__SetAttribute(i,\"update-list-info\",{insertAction:_,removeAction:[],updateAction:[]}),s.set(l,o.length)}})(),__FlushElementTree()})(JSON.parse(e))}},586(e,t,n){n.p,n.p,n.p}};var t={};function n(l){var r=t[l];if(void 0!==r)return r.exports;var o=t[l]={exports:{}};return e[l](o,o.exports,n),o.exports}n.x=()=>(n(306),n(586)),n.p=\"/\",n.x();"},"customSections":{},"elementTemplates":{}}
|
|
1
|
+
{"styleInfo":{"0":{"content":["@keyframes Logo--vue-spin {0% {transform:rotateY(0deg);} to {transform:rotateY(1turn);}}\n@keyframes Logo--spin {0% {transform:rotate(0deg);} to {transform:rotate(1turn);}}\n@keyframes Logo--shake {0% {transform:scale(1);} 50% {transform:scale(.9);} to {transform:scale(1);}}"],"rules":[{"sel":[[["[lynx-tag=\"page\"]"],[],[],[]]],"decl":[["background-color","#000"],["--color-text","#fff"]]},{"sel":[[[".Background"],[],[],[]]],"decl":[["background","radial-gradient(71.43% 62.3%at 46.43% 36.43%,rgba(18,229,229,0) 15%,rgba(239,155,255,.3) 56.35%,#ff6448 100%)"],["border-radius","50%"],["box-shadow","inset 0 12.93px 28.74px 0#ffd28db2"],["height","200vw"],["left","-14.27vw"],["position","fixed"],["top","-60vw"],["transform","rotate(15.25deg)"],["width","200vw"]]},{"sel":[[[".App"],[],[],[]]],"decl":[["align-items","center"],["display","flex"],["flex-direction","column"],["justify-content","center"],["min-height","100vh"],["position","relative"]]},{"sel":[[["[lynx-tag=\"text\"]"],[],[],[]]],"decl":[["color","var(--color-text)"]]},{"sel":[[[".Banner"],[],[],[]]],"decl":[["display","flex"],["flex","5"],["z-index","100"]]},{"sel":[[[".Banner"],[],[],[]],[[".Logo"],[],[],[]]],"decl":[["align-items","center"],["flex-direction","column"],["justify-content","center"]]},{"sel":[[[".Logo"],[],[],[]]],"decl":[["margin-bottom","8px"]]},{"sel":[[[".Logo--react"],[],[],[]]],"decl":[["animation","Logo--spin 20s linear infinite"],["height","100px"],["width","100px"]]},{"sel":[[[".Logo--lynx"],[],[],[]]],"decl":[["animation","Logo--shake .5s ease infinite"]]},{"sel":[[[".Logo--lynx"],[],[],[]],[[".Logo--vue"],[],[],[]]],"decl":[["height","100px"],["width","100px"]]},{"sel":[[[".Logo--vue"],[],[],[]]],"decl":[["animation","Logo--vue-spin 3.2s linear infinite"]]},{"sel":[[[".Content"],[],[],[]]],"decl":[["align-items","center"],["display","flex"],["flex-direction","column"],["justify-content","center"]]},{"sel":[[[".Arrow"],[],[],[]]],"decl":[["height","24px"],["width","24px"]]},{"sel":[[[".Title"],[],[],[]]],"decl":[["font-size","36px"],["font-weight","700"]]},{"sel":[[[".Subtitle"],[],[],[]]],"decl":[["font-size","22px"],["font-style","italic"],["font-weight","600"],["margin-bottom","8px"]]},{"sel":[[[".Description"],[],[],[]]],"decl":[["color","hsla(0,0%,100%,.85)"],["font-size","20px"],["margin","15rpx"]]},{"sel":[[[".Hint"],[],[],[]]],"decl":[["color","hsla(0,0%,100%,.65)"],["font-size","12px"],["margin","5px"]]}]}},"manifest":{"/app-service.js":"\"use strict\";let e;var t,l,n={86(e,t,l){l.d(t,{KA:()=>a,ht:()=>o,kz:()=>i,mY:()=>s});let n=\"__VUE_LYNX_EVENT_REGISTRY__\";function r(){let e=globalThis;let t=e[n];return t||Object.defineProperty(e,n,{value:t={signCounter:0,handlers:new Map},configurable:!0,enumerable:!1,writable:!0}),t}function i(e){let t=r();let l=`vue:${t.signCounter++}`;return t.handlers.set(l,e),l}function s(e,t){r().handlers.set(e,t)}function o(e){r().handlers.delete(e)}function a(e,t){var l;null==(l=r().handlers.get(e))||l(t)}}};var r={};function i(e){var t=r[e];if(void 0!==t)return t.exports;var l=r[e]={exports:{}};return n[e](l,l.exports,i),l.exports}i.d=(e,t)=>{for(var l in t)i.o(t,l)&&!i.o(e,l)&&Object.defineProperty(e,l,{enumerable:!0,get:t[l]})},i.g=(()=>{if(\"object\"==typeof globalThis)return globalThis;try{return this||Function(\"return this\")()}catch(e){if(\"object\"==typeof window)return window}})(),i.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),i.p=\"https://vue.lynxjs.org/examples/hello-world/dist/\",l=i(86),e=globalThis,\"u\">typeof lynxCoreInject&&(null==(t=lynxCoreInject)?void 0:t.tt)&&(lynxCoreInject.tt.publishEvent=l.KA,lynxCoreInject.tt.publicComponentEvent=(e,t,n)=>{(0,l.KA)(t,n)}),e.publishEvent=l.KA,e.updatePage=function(e){},(()=>{let e,t,l,n,r,s,o,a,u,c;function f(e){let t=Object.create(null);for(let l of e.split(\",\"))t[l]=1;return e=>e in t}let p={};let d=[];let h=()=>{};let g=()=>!1;let _=e=>111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97);let y=e=>e.startsWith(\"onUpdate:\");let m=Object.assign;let b=Object.prototype.hasOwnProperty;let x=(e,t)=>b.call(e,t);let S=Array.isArray;let w=e=>\"function\"==typeof e;let C=e=>\"string\"==typeof e;let k=e=>\"symbol\"==typeof e;let O=e=>null!==e&&\"object\"==typeof e;let j=e=>(O(e)||w(e))&&w(e.then)&&w(e.catch);let T=Object.prototype.toString;let P=e=>C(e)&&\"NaN\"!==e&&\"-\"!==e[0]&&\"\"+parseInt(e,10)===e;let F=f(\",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted\");let E=e=>{let t=Object.create(null);return l=>t[l]||(t[l]=e(l))};let A=/-\\w/g;let M=E(e=>e.replace(A,e=>e.slice(1).toUpperCase()));let I=/\\B([A-Z])/g;let D=E(e=>e.replace(I,\"-$1\").toLowerCase());let R=E(e=>e.charAt(0).toUpperCase()+e.slice(1));let $=E(e=>e?`on${R(e)}`:\"\");let L=(e,...t)=>{for(let l=0;l<e.length;l++)e[l](...t)};let V=(e,t,l,n=!1)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:n,value:l})};let U=e=>{let t=parseFloat(e);return isNaN(t)?e:t};let N=()=>e||(e=\"u\">typeof globalThis?globalThis:\"u\">typeof self?self:\"u\">typeof window?window:void 0!==i.g?i.g:{});function B(e){if(S(e)){let t={};for(let l=0;l<e.length;l++){let n=e[l];let r=C(n)?function(e){let t={};return e.replace(z,\"\").split(W).forEach(e=>{if(e){let l=e.split(H);l.length>1&&(t[l[0].trim()]=l[1].trim())}}),t}(n):B(n);if(r)for(let e in r)t[e]=r[e]}return t}if(C(e)||O(e))return e}let W=/;(?![^(]*\\))/g;let H=/:([^]+)/;let z=/\\/\\*[^]*?\\*\\//g;function J(e){let t=\"\";if(C(e))t=e;else if(S(e))for(let l=0;l<e.length;l++){let n=J(e[l]);n&&(t+=n+\" \")}else if(O(e))for(let l in e)e[l]&&(t+=l+\" \");return t.trim()}let K=e=>!!(e&&!0===e.__v_isRef);let Y=e=>C(e)?e:null==e?\"\":S(e)||O(e)&&(e.toString===T||!w(e.toString))?K(e)?Y(e.value):JSON.stringify(e,G,2):String(e);let G=(e,t)=>{let l;if(K(t))return G(e,t.value);if(\"[object Map]\"===(l=t,T.call(l)))return{[`Map(${t.size})`]:[...t.entries()].reduce((e,[t,l],n)=>(e[q(t,n)+\" =>\"]=l,e),{})};{let e;if(\"[object Set]\"===(e=t,T.call(e)))return{[`Set(${t.size})`]:[...t.values()].map(e=>q(e))};else{if(k(t))return q(t);let e;if(O(t)&&!S(t)&&\"[object Object]\"!==(e=t,T.call(e)))return String(t)}}return t};let q=(e,t=\"\")=>{var l;return k(e)?`Symbol(${null!=(l=e.description)?l:t})`:e};class Z{get active(){return this._active}pause(){if(this._active){let e,t;if(this._isPaused=!0,this.scopes)for(e=0,t=this.scopes.length;e<t;e++)this.scopes[e].pause();for(e=0,t=this.effects.length;e<t;e++)this.effects[e].pause()}}resume(){if(this._active&&this._isPaused){let e,t;if(this._isPaused=!1,this.scopes)for(e=0,t=this.scopes.length;e<t;e++)this.scopes[e].resume();for(e=0,t=this.effects.length;e<t;e++)this.effects[e].resume()}}run(e){if(this._active){let l=t;try{return t=this,e()}finally{t=l}}}on(){1===++this._on&&(this.prevScope=t,t=this)}off(){this._on>0&&0===--this._on&&(t=this.prevScope,this.prevScope=void 0)}stop(e){if(this._active){let t,l;for(t=0,this._active=!1,l=this.effects.length;t<l;t++)this.effects[t].stop();for(t=0,this.effects.length=0,l=this.cleanups.length;t<l;t++)this.cleanups[t]();if(this.cleanups.length=0,this.scopes){for(t=0,l=this.scopes.length;t<l;t++)this.scopes[t].stop(!0);this.scopes.length=0}if(!this.detached&&this.parent&&!e){let e=this.parent.scopes.pop();e&&e!==this&&(this.parent.scopes[this.index]=e,e.index=this.index)}this.parent=void 0}}constructor(e=!1){this.detached=e,this._active=!0,this._on=0,this.effects=[],this.cleanups=[],this._isPaused=!1,this.__v_skip=!0,this.parent=t,!e&&t&&(this.index=(t.scopes||(t.scopes=[])).push(this)-1)}}let Q=new WeakSet;class X{pause(){this.flags|=64}resume(){64&this.flags&&(this.flags&=-65,Q.has(this)&&(Q.delete(this),this.trigger()))}notify(){(!(2&this.flags)||32&this.flags)&&(8&this.flags||function(e,t=!1){if(e.flags|=8,t){e.next=r,r=e;return}e.next=n,n=e}(this))}run(){if(!(1&this.flags))return this.fn();this.flags|=2,ec(this),el(this);let e=l;let t=es;l=this,es=!0;try{return this.fn()}finally{en(this),l=e,es=t,this.flags&=-3}}stop(){if(1&this.flags){for(let e=this.deps;e;e=e.nextDep)ei(e);this.deps=this.depsTail=void 0,ec(this),this.onStop&&this.onStop(),this.flags&=-2}}trigger(){64&this.flags?Q.add(this):this.scheduler?this.scheduler():this.runIfDirty()}runIfDirty(){er(this)&&this.run()}get dirty(){return er(this)}constructor(e){this.fn=e,this.deps=void 0,this.depsTail=void 0,this.flags=5,this.next=void 0,this.cleanup=void 0,this.scheduler=void 0,t&&t.active&&t.effects.push(this)}}let ee=0;function et(){let e;if(!(--ee>0)){if(r){let e=r;for(r=void 0;e;){let t=e.next;e.next=void 0,e.flags&=-9,e=t}}for(;n;){let t=n;for(n=void 0;t;){let l=t.next;if(t.next=void 0,t.flags&=-9,1&t.flags)try{t.trigger()}catch(t){e||(e=t)}t=l}}if(e)throw e}}function el(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function en(e){let t;let l=e.depsTail;let n=l;for(;n;){let e=n.prevDep;-1===n.version?(n===l&&(l=e),ei(n),function(e){let{prevDep:t,nextDep:l}=e;t&&(t.nextDep=l,e.prevDep=void 0),l&&(l.prevDep=t,e.nextDep=void 0)}(n)):t=n,n.dep.activeLink=n.prevActiveLink,n.prevActiveLink=void 0,n=e}e.deps=t,e.depsTail=l}function er(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&(function(e){if(4&e.flags&&!(16&e.flags)||(e.flags&=-17,e.globalVersion===ef)||(e.globalVersion=ef,!e.isSSR&&128&e.flags&&(!e.deps&&!e._dirty||!er(e))))return;e.flags|=2;let t=e.dep;let n=l;let r=es;l=e,es=!0;try{let l;el(e);let n=e.fn(e._value);(0===t.version||(l=e._value,!Object.is(n,l)))&&(e.flags|=128,e._value=n,t.version++)}catch(e){throw t.version++,e}finally{l=n,es=r,en(e),e.flags&=-3}}(t.dep.computed)||t.dep.version!==t.version))return!0;return!!e._dirty}function ei(e,t=!1){let{dep:l,prevSub:n,nextSub:r}=e;if(n&&(n.nextSub=r,e.prevSub=void 0),r&&(r.prevSub=n,e.nextSub=void 0),l.subs===e&&(l.subs=n,!n&&l.computed)){l.computed.flags&=-5;for(let e=l.computed.deps;e;e=e.nextDep)ei(e,!0)}t||--l.sc||!l.map||l.map.delete(l.key)}let es=!0;let eo=[];function ea(){eo.push(es),es=!1}function eu(){let e=eo.pop();es=void 0===e||e}function ec(e){let{cleanup:t}=e;if(e.cleanup=void 0,t){let e=l;l=void 0;try{t()}finally{l=e}}}let ef=0;class ep{constructor(e,t){this.sub=e,this.dep=t,this.version=t.version,this.nextDep=this.prevDep=this.nextSub=this.prevSub=this.prevActiveLink=void 0}}class ed{track(e){if(!l||!es||l===this.computed)return;let t=this.activeLink;if(void 0===t||t.sub!==l)t=this.activeLink=new ep(l,this),l.deps?(t.prevDep=l.depsTail,l.depsTail.nextDep=t,l.depsTail=t):l.deps=l.depsTail=t,function e(t){if(t.dep.sc++,4&t.sub.flags){let l=t.dep.computed;if(l&&!t.dep.subs){l.flags|=20;for(let t=l.deps;t;t=t.nextDep)e(t)}let n=t.dep.subs;n!==t&&(t.prevSub=n,n&&(n.nextSub=t)),t.dep.subs=t}}(t);else if(-1===t.version&&(t.version=this.version,t.nextDep)){let e=t.nextDep;e.prevDep=t.prevDep,t.prevDep&&(t.prevDep.nextDep=e),t.prevDep=l.depsTail,t.nextDep=void 0,l.depsTail.nextDep=t,l.depsTail=t,l.deps===t&&(l.deps=e)}return t}trigger(e){this.version++,ef++,this.notify(e)}notify(e){ee++;try{for(let e=this.subs;e;e=e.prevSub)e.sub.notify()&&e.sub.dep.notify()}finally{et()}}constructor(e){this.computed=e,this.version=0,this.activeLink=void 0,this.subs=void 0,this.map=void 0,this.key=void 0,this.sc=0,this.__v_skip=!0}}let eh=new WeakMap;let ev=Symbol(\"\");let eg=Symbol(\"\");let e_=Symbol(\"\");function ey(e,t,n){if(es&&l){let t=eh.get(e);t||eh.set(e,t=new Map);let l=t.get(n);l||(t.set(n,l=new ed),l.map=t,l.key=n),l.track()}}function em(e,t,l,n,r,i){let s=eh.get(e);if(!s)return void ef++;let o=e=>{e&&e.trigger()};if(ee++,\"clear\"===t)s.forEach(o);else{let r=S(e);let i=r&&P(l);if(r&&\"length\"===l){let e=Number(n);s.forEach((t,l)=>{(\"length\"===l||l===e_||!k(l)&&l>=e)&&o(t)})}else switch((void 0!==l||s.has(void 0))&&o(s.get(l)),i&&o(s.get(e_)),t){case\"add\":if(r)i&&o(s.get(\"length\"));else{let t;o(s.get(ev));\"[object Map]\"===(t=e,T.call(t))&&o(s.get(eg))}break;case\"delete\":if(!r){let t;o(s.get(ev));\"[object Map]\"===(t=e,T.call(t))&&o(s.get(eg))}break;case\"set\":let a;\"[object Map]\"===(a=e,T.call(a))&&o(s.get(ev))}}et()}function eb(e){let t=e2(e);return t===e?t:(ey(t,\"iterate\",e_),e0(e)?t:t.map(e6))}function ex(e){return ey(e=e2(e),\"iterate\",e_),e}function eS(e,t){return eX(e)?eQ(e)?e8(e6(t)):e8(t):e6(t)}let ew={__proto__:null,[Symbol.iterator](){return eC(this,Symbol.iterator,e=>eS(this,e))},concat(...e){return eb(this).concat(...e.map(e=>S(e)?eb(e):e))},entries(){return eC(this,\"entries\",e=>(e[1]=eS(this,e[1]),e))},every(e,t){return eO(this,\"every\",e,t,void 0,arguments)},filter(e,t){return eO(this,\"filter\",e,t,e=>e.map(e=>eS(this,e)),arguments)},find(e,t){return eO(this,\"find\",e,t,e=>eS(this,e),arguments)},findIndex(e,t){return eO(this,\"findIndex\",e,t,void 0,arguments)},findLast(e,t){return eO(this,\"findLast\",e,t,e=>eS(this,e),arguments)},findLastIndex(e,t){return eO(this,\"findLastIndex\",e,t,void 0,arguments)},forEach(e,t){return eO(this,\"forEach\",e,t,void 0,arguments)},includes(...e){return eT(this,\"includes\",e)},indexOf(...e){return eT(this,\"indexOf\",e)},join(e){return eb(this).join(e)},lastIndexOf(...e){return eT(this,\"lastIndexOf\",e)},map(e,t){return eO(this,\"map\",e,t,void 0,arguments)},pop(){return eP(this,\"pop\")},push(...e){return eP(this,\"push\",e)},reduce(e,...t){return ej(this,\"reduce\",e,t)},reduceRight(e,...t){return ej(this,\"reduceRight\",e,t)},shift(){return eP(this,\"shift\")},some(e,t){return eO(this,\"some\",e,t,void 0,arguments)},splice(...e){return eP(this,\"splice\",e)},toReversed(){return eb(this).toReversed()},toSorted(e){return eb(this).toSorted(e)},toSpliced(...e){return eb(this).toSpliced(...e)},unshift(...e){return eP(this,\"unshift\",e)},values(){return eC(this,\"values\",e=>eS(this,e))}};function eC(e,t,l){let n=ex(e);let r=n[t]();return n===e||e0(e)||(r._next=r.next,r.next=()=>{let e=r._next();return e.done||(e.value=l(e.value)),e}),r}let ek=Array.prototype;function eO(e,t,l,n,r,i){let s=ex(e);let o=s!==e&&!e0(e);let a=s[t];if(a!==ek[t]){let t=a.apply(e,i);return o?e6(t):t}let u=l;s!==e&&(o?u=function(t,n){return l.call(this,eS(e,t),n,e)}:l.length>2&&(u=function(t,n){return l.call(this,t,n,e)}));let c=a.call(s,u,n);return o&&r?r(c):c}function ej(e,t,l,n){let r=ex(e);let i=r!==e&&!e0(e);let s=l;let o=!1;r!==e&&(i?(o=0===n.length,s=function(t,n,r){return o&&(o=!1,t=eS(e,t)),l.call(this,t,eS(e,n),r,e)}):l.length>3&&(s=function(t,n,r){return l.call(this,t,n,r,e)}));let a=r[t](s,...n);return o?eS(e,a):a}function eT(e,t,l){let n=e2(e);ey(n,\"iterate\",e_);let r=n[t](...l);return(-1===r||!1===r)&&e1(l[0])?(l[0]=e2(l[0]),n[t](...l)):r}function eP(e,t,l=[]){ea(),ee++;let n=e2(e)[t].apply(e,l);return et(),eu(),n}let eF=f(\"__proto__,__v_isRef,__isVue\");let eE=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>\"arguments\"!==e&&\"caller\"!==e).map(e=>Symbol[e]).filter(k));function eA(e){k(e)||(e=String(e));let t=e2(this);return ey(t,\"has\",e),t.hasOwnProperty(e)}class eM{get(e,t,l){if(\"__v_skip\"===t)return e.__v_skip;let n=this._isReadonly,r=this._isShallow;if(\"__v_isReactive\"===t)return!n;if(\"__v_isReadonly\"===t)return n;if(\"__v_isShallow\"===t)return r;if(\"__v_raw\"===t)return l===(n?r?eY:eK:r?eJ:ez).get(e)||Object.getPrototypeOf(e)===Object.getPrototypeOf(l)?e:void 0;let i=S(e);if(!n){let e;if(i&&(e=ew[t]))return e;if(\"hasOwnProperty\"===t)return eA}let s=Reflect.get(e,t,e4(e)?e:l);if((k(t)?eE.has(t):eF(t))||(n||ey(e,\"get\",t),r))return s;if(e4(s)){let e=i&&P(t)?s:s.value;return n&&O(e)?eq(e):e}return O(s)?n?eq(s):eG(s):s}constructor(e=!1,t=!1){this._isReadonly=e,this._isShallow=t}}class eI extends eM{set(e,t,l,n){let r=e[t];let i=S(e)&&P(t);if(!this._isShallow){let e=eX(r);if(e0(l)||eX(l)||(r=e2(r),l=e2(l)),!i&&e4(r)&&!e4(l))if(e)return!0;else return r.value=l,!0}let s=i?Number(t)<e.length:x(e,t);let o=Reflect.set(e,t,l,e4(e)?e:n);return e===e2(n)&&(s?Object.is(l,r)||em(e,\"set\",t,l,r):em(e,\"add\",t,l)),o}deleteProperty(e,t){let l=x(e,t);let n=e[t];let r=Reflect.deleteProperty(e,t);return r&&l&&em(e,\"delete\",t,void 0,n),r}has(e,t){let l=Reflect.has(e,t);return k(t)&&eE.has(t)||ey(e,\"has\",t),l}ownKeys(e){return ey(e,\"iterate\",S(e)?\"length\":ev),Reflect.ownKeys(e)}constructor(e=!1){super(!1,e)}}class eD extends eM{set(e,t){return!0}deleteProperty(e,t){return!0}constructor(e=!1){super(!0,e)}}let eR=new eI;let e$=new eD;let eL=new eI(!0);let eV=e=>e;function eU(e){return function(){return\"delete\"!==e&&(\"clear\"===e?void 0:this)}}function eN(e,t){let l;let n=(m(l={get(l){let n=this.__v_raw;let r=e2(n);let i=e2(l);e||(Object.is(l,i)||ey(r,\"get\",l),ey(r,\"get\",i));let{has:s}=Reflect.getPrototypeOf(r);let o=t?eV:e?e8:e6;return s.call(r,l)?o(n.get(l)):s.call(r,i)?o(n.get(i)):void(n!==r&&n.get(l))},get size(){let t=this.__v_raw;return e||ey(e2(t),\"iterate\",ev),t.size},has(t){let l=this.__v_raw;let n=e2(l);let r=e2(t);return e||(Object.is(t,r)||ey(n,\"has\",t),ey(n,\"has\",r)),t===r?l.has(t):l.has(t)||l.has(r)},forEach(l,n){let r=this;let i=r.__v_raw;let s=e2(i);let o=t?eV:e?e8:e6;return e||ey(s,\"iterate\",ev),i.forEach((e,t)=>l.call(n,o(e),o(t),r))}},e?{add:eU(\"add\"),set:eU(\"set\"),delete:eU(\"delete\"),clear:eU(\"clear\")}:{add(e){let l=e2(this);let n=Reflect.getPrototypeOf(l);let r=e2(e);let i=t||e0(e)||eX(e)?e:r;return n.has.call(l,i)||!Object.is(e,i)&&n.has.call(l,e)||!Object.is(r,i)&&n.has.call(l,r)||(l.add(i),em(l,\"add\",i,i)),this},set(e,l){t||e0(l)||eX(l)||(l=e2(l));let n=e2(this);let{has:r,get:i}=Reflect.getPrototypeOf(n);let s=r.call(n,e);s||(e=e2(e),s=r.call(n,e));let o=i.call(n,e);return(n.set(e,l),s)?Object.is(l,o)||em(n,\"set\",e,l,o):em(n,\"add\",e,l),this},delete(e){let t=e2(this);let{has:l,get:n}=Reflect.getPrototypeOf(t);let r=l.call(t,e);r||(e=e2(e),r=l.call(t,e));let i=n?n.call(t,e):void 0;let s=t.delete(e);return r&&em(t,\"delete\",e,void 0,i),s},clear(){let e=e2(this);let t=0!==e.size;let l=e.clear();return t&&em(e,\"clear\",void 0,void 0,void 0),l}}),[\"keys\",\"values\",\"entries\",Symbol.iterator].forEach(n=>{l[n]=function(...l){let r,i=this.__v_raw;let s=e2(i);let o=\"[object Map]\"===(r=s,T.call(r));let a=\"entries\"===n||n===Symbol.iterator&&o;let u=i[n](...l);let c=t?eV:e?e8:e6;return e||ey(s,\"iterate\",\"keys\"===n&&o?eg:ev),m(Object.create(u),{next(){let{value:e,done:t}=u.next();return t?{value:e,done:t}:{value:a?[c(e[0]),c(e[1])]:c(e),done:t}}})}}),l);return(t,l,r)=>\"__v_isReactive\"===l?!e:\"__v_isReadonly\"===l?e:\"__v_raw\"===l?t:Reflect.get(x(n,l)&&l in t?n:t,l,r)}let eB={get:eN(!1,!1)};let eW={get:eN(!1,!0)};let eH={get:eN(!0,!1)};let ez=new WeakMap;let eJ=new WeakMap;let eK=new WeakMap;let eY=new WeakMap;function eG(e){return eX(e)?e:eZ(e,!1,eR,eB,ez)}function eq(e){return eZ(e,!0,e$,eH,eK)}function eZ(e,t,l,n,r){var i;let s;if(!O(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;let o=(i=e).__v_skip||!Object.isExtensible(i)?0:function(e){switch(e){case\"Object\":case\"Array\":return 1;case\"Map\":case\"Set\":case\"WeakMap\":case\"WeakSet\":return 2;default:return 0}}((s=i,T.call(s)).slice(8,-1));if(0===o)return e;let a=r.get(e);if(a)return a;let u=new Proxy(e,2===o?n:l);return r.set(e,u),u}function eQ(e){return eX(e)?eQ(e.__v_raw):!!(e&&e.__v_isReactive)}function eX(e){return!!(e&&e.__v_isReadonly)}function e0(e){return!!(e&&e.__v_isShallow)}function e1(e){return!!e&&!!e.__v_raw}function e2(e){let t=e&&e.__v_raw;return t?e2(t):e}let e6=e=>O(e)?eG(e):e;let e8=e=>O(e)?eq(e):e;function e4(e){return!!e&&!0===e.__v_isRef}class e3{get value(){return this.dep.track(),this._value}set value(e){let t=this._rawValue;let l=this.__v_isShallow||e0(e)||eX(e);Object.is(e=l?e:e2(e),t)||(this._rawValue=e,this._value=l?e:e6(e),this.dep.trigger())}constructor(e,t){this.dep=new ed,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=t?e:e2(e),this._value=t?e:e6(e),this.__v_isShallow=t}}function e5(e){return e4(e)?e.value:e}let e9={get:(e,t,l)=>\"__v_raw\"===t?e:e5(Reflect.get(e,t,l)),set:(e,t,l,n)=>{let r=e[t];return e4(r)&&!e4(l)?(r.value=l,!0):Reflect.set(e,t,l,n)}};function e7(e){return eQ(e)?e:new Proxy(e,e9)}function te(e,t,l,n){try{return n?e(...n):e()}catch(e){tl(e,t,l)}}function tt(e,t,l,n){if(w(e)){let r=te(e,t,l,n);return r&&j(r)&&r.catch(e=>{tl(e,t,l)}),r}if(S(e)){let r=[];for(let i=0;i<e.length;i++)r.push(tt(e[i],t,l,n));return r}}function tl(e,t,l,n=!0){t&&t.vnode;let{errorHandler:r,throwUnhandledErrorInProduction:i}=t&&t.appContext.config||p;if(t){let n=t.parent;let i=t.proxy;let s=`https://vuejs.org/error-reference/#runtime-${l}`;for(;n;){let t=n.ec;if(t){for(let l=0;l<t.length;l++)if(!1===t[l](e,i,s))return}n=n.parent}if(r){ea(),te(r,null,10,[e,i,s]),eu();return}}(function(e,t=!0,l=!1){if(l)throw e;console.error(e)})(e,n,i)}let tn=[];let tr=-1;let ti=[];let ts=null;let to=0;let ta=Promise.resolve();let tu=null;function tc(e){let t=tu||ta;return e?t.then(this?e.bind(this):e):t}function tf(e){if(!(1&e.flags)){let t=tg(e);let l=tn[tn.length-1];!l||!(2&e.flags)&&t>=tg(l)?tn.push(e):tn.splice(function(e){let t=tr+1;let l=tn.length;for(;t<l;){let n=t+l>>>1;let r=tn[n];let i=tg(r);i<e||i===e&&2&r.flags?t=n+1:l=n}return t}(t),0,e),e.flags|=1,tp()}}function tp(){tu||(tu=ta.then(function e(t){try{for(tr=0;tr<tn.length;tr++){let e=tn[tr];e&&!(8&e.flags)&&(4&e.flags&&(e.flags&=-2),te(e,e.i,e.i?15:14),4&e.flags||(e.flags&=-2))}}finally{for(;tr<tn.length;tr++){let e=tn[tr];e&&(e.flags&=-2)}tr=-1,tn.length=0,tv(t),tu=null,(tn.length||ti.length)&&e(t)}}))}function td(e){S(e)?ti.push(...e):ts&&-1===e.id?ts.splice(to+1,0,e):1&e.flags||(ti.push(e),e.flags|=1),tp()}function th(e,t,l=tr+1){for(;l<tn.length;l++){let t=tn[l];if(t&&2&t.flags){if(e&&t.id!==e.uid)continue;tn.splice(l,1),l--,4&t.flags&&(t.flags&=-2),t(),4&t.flags||(t.flags&=-2)}}}function tv(e){if(ti.length){let e=[...new Set(ti)].sort((e,t)=>tg(e)-tg(t));if(ti.length=0,ts)return void ts.push(...e);for(to=0,ts=e;to<ts.length;to++){let e=ts[to];4&e.flags&&(e.flags&=-2),8&e.flags||e(),e.flags&=-2}ts=null,to=0}}let tg=e=>null==e.id?2&e.flags?-1:1/0:e.id;let t_=null;let ty=null;function tm(e){let t=t_;return t_=e,ty=e&&e.type.__scopeId||null,t}function tb(e,t,l,n){let r=e.dirs;let i=t&&t.dirs;for(let s=0;s<r.length;s++){let o=r[s];i&&(o.oldValue=i[s].value);let a=o.dir[n];a&&(ea(),tt(a,l,8,[e.el,o,e,t]),eu())}}let tx=Symbol(\"_vte\");let tS=Symbol(\"_leaveCb\");let tw=Symbol(\"_enterCb\");function tC(){let e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return tL(()=>{e.isMounted=!0}),tV(()=>{e.isUnmounting=!0}),e}let tk=e=>{let t=e.subTree;return t.component?tk(t.component):t};function tO(e,t){let{leavingVNodes:l}=e;let n=l.get(t.type);return n||(n=Object.create(null),l.set(t.type,n)),n}function tj(e,t,l,n,r){let{appear:i,mode:s,persisted:o=!1,onBeforeEnter:a,onEnter:u,onAfterEnter:c,onEnterCancelled:f,onBeforeLeave:p,onLeave:d,onAfterLeave:h,onLeaveCancelled:g,onBeforeAppear:_,onAppear:y,onAfterAppear:m,onAppearCancelled:b}=t;let x=String(e.key);let w=tO(l,e);let C=(e,t)=>{e&&tt(e,n,9,t)};let k=(e,t)=>{let l=t[1];C(e,t),S(e)?e.every(e=>e.length<=1)&&l():e.length<=1&&l()};let O={mode:s,persisted:o,beforeEnter(t){let n=a;if(!l.isMounted)if(!i)return;else n=_||a;t[tS]&&t[tS](!0);let r=w[x];r&&lg(e,r)&&r.el[tS]&&r.el[tS](),C(n,[t])},enter(t){if(w[x]===e)return;let n=u;let r=c;let s=f;if(!l.isMounted)if(!i)return;else n=y||u,r=m||c,s=b||f;let o=!1;t[tw]=e=>{o||(o=!0,e?C(s,[t]):C(r,[t]),O.delayedLeave&&O.delayedLeave(),t[tw]=void 0)};let a=t[tw].bind(null,!1);n?k(n,[t,a]):a()},leave(t,n){let r=String(e.key);if(t[tw]&&t[tw](!0),l.isUnmounting)return n();C(p,[t]);let i=!1;t[tS]=l=>{i||(i=!0,n(),l?C(g,[t]):C(h,[t]),t[tS]=void 0,w[r]===e&&delete w[r])};let s=t[tS].bind(null,!1);w[r]=e,d?k(d,[t,s]):s()},clone(e){let i=tj(e,t,l,n,r);return r&&r(i),i}};return O}function tT(e,t){6&e.shapeFlag&&e.component?(e.transition=t,tT(e.component.subTree,t)):128&e.shapeFlag?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function tP(e,t=!1,l){let n=[];let r=0;for(let i=0;i<e.length;i++){let s=e[i];let o=null==l?s.key:String(l)+String(null!=s.key?s.key:i);s.type===lo?(128&s.patchFlag&&r++,n=n.concat(tP(s.children,t,o))):(t||s.type!==lu)&&n.push(null!=o?lx(s,{key:o}):s)}if(r>1)for(let e=0;e<n.length;e++)n[e].patchFlag=-2;return n}function tF(e,t){return w(e)?m({name:e.name},t,{setup:e}):e}function tE(e,t){let l;return!!((l=Object.getOwnPropertyDescriptor(e,t))&&!l.configurable)}let tA=new WeakMap;function tM(e,t,l,n,r=!1){if(S(e))return void e.forEach((e,i)=>tM(e,t&&(S(t)?t[i]:t),l,n,r));if(tD(n)&&!r){512&n.shapeFlag&&n.type.__asyncResolved&&n.component.subTree.component&&tM(e,t,l,n.component.subTree);return}let i=4&n.shapeFlag?lL(n.component):n.el;let s=r?null:i;let{i:o,r:a}=e;let u=t&&t.r;let c=o.refs===p?o.refs={}:o.refs;let f=o.setupState;let d=e2(f);let h=f===p?g:e=>!tE(c,e)&&x(d,e);let _=(e,t)=>!(t&&tE(c,t));if(null!=u&&u!==a&&(tI(t),C(u)?(c[u]=null,h(u)&&(f[u]=null)):e4(u)&&(_(u,t.k)&&(u.value=null),t.k&&(c[t.k]=null))),w(a))te(a,o,12,[s,c]);else{let t=C(a);let n=e4(a);if(t||n){let o=()=>{if(e.f){let n=t?h(a)?f[a]:c[a]:_(a)||!e.k?a.value:c[e.k];if(r){var l,o;let e;S(n)&&(l=n,o=i,(e=l.indexOf(o))>-1&&l.splice(e,1))}else if(S(n))n.includes(i)||n.push(i);else if(t)c[a]=[i],h(a)&&(f[a]=c[a]);else{let t=[i];_(a,e.k)&&(a.value=t),e.k&&(c[e.k]=t)}}else t?(c[a]=s,h(a)&&(f[a]=s)):n&&(_(a,e.k)&&(a.value=s),e.k&&(c[e.k]=s))};if(s){let t=()=>{o(),tA.delete(e)};t.id=-1,tA.set(e,t),ln(t,l)}else tI(e),o()}}}function tI(e){let t=tA.get(e);t&&(t.flags|=8,tA.delete(e))}N().requestIdleCallback,N().cancelIdleCallback;let tD=e=>!!e.type.__asyncLoader;let tR=e=>e.type.__isKeepAlive;let t$=e=>(t,l=lP)=>{lI&&\"sp\"!==e||function(e,t,l=lP,n=!1){if(l){let r=l[e]||(l[e]=[]);let i=t.__weh||(t.__weh=(...n)=>{ea();let r=lE(l);let i=tt(t,l,e,n);return r(),eu(),i});return n?r.unshift(i):r.push(i),i}}(e,(...e)=>t(...e),l)};t$(\"bm\");let tL=t$(\"m\");t$(\"bu\"),t$(\"u\");let tV=t$(\"bum\");let tU=t$(\"um\");t$(\"sp\"),t$(\"rtg\"),t$(\"rtc\");let tN=Symbol.for(\"v-ndc\");let tB=e=>e?lM(e)?lL(e):tB(e.parent):null;let tW=m(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>tB(e.parent),$root:e=>tB(e.root),$host:e=>e.ce,$emit:e=>e.emit,$options:e=>e.type,$forceUpdate:e=>e.f||(e.f=()=>{tf(e.update)}),$nextTick:e=>e.n||(e.n=tc.bind(e.proxy)),$watch:e=>h});let tH=(e,t)=>e!==p&&!e.__isScriptSetup&&x(e,t);let tz={get({_:e},t){let l,n;if(\"__v_skip\"===t)return!0;let{ctx:r,setupState:i,data:s,props:o,accessCache:a,type:u,appContext:c}=e;if(\"$\"!==t[0]){let e=a[t];if(void 0!==e)switch(e){case 1:return i[t];case 2:return s[t];case 4:return r[t];case 3:return o[t]}else if(tH(i,t))return a[t]=1,i[t];else if(1)if(x(o,t))return a[t]=3,o[t];else{if(r!==p&&x(r,t))return a[t]=4,r[t];a[t]=0}}let f=tW[t];return f?(\"$attrs\"===t&&ey(e.attrs,\"get\",\"\"),f(e)):(l=u.__cssModules)&&(l=l[t])?l:r!==p&&x(r,t)?(a[t]=4,r[t]):x(n=c.config.globalProperties,t)?n[t]:void 0},set({_:e},t,l){let{data:n,setupState:r,ctx:i}=e;if(tH(r,t))return r[t]=l,!0;if(1&&x(e.props,t))return!1;return!(\"$\"===t[0]&&t.slice(1)in e)&&(i[t]=l,!0)},has({_:{data:e,setupState:t,accessCache:l,ctx:n,appContext:r,props:i,type:s}},o){let a;return!!(l[o]||tH(t,o)||x(i,o)||x(n,o)||x(tW,o)||x(r.config.globalProperties,o)||(a=s.__cssModules)&&a[o])},defineProperty(e,t,l){return null!=l.get?e._.accessCache[t]=0:x(l,\"value\")&&this.set(e,t,l.value,null),Reflect.defineProperty(e,t,l)}};function tJ(){return{app:null,config:{isNativeTag:g,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let tK=0;let tY=null;function tG(e,t,...l){let n;if(e.isUnmounted)return;let r=e.vnode.props||p;let i=l;let s=t.startsWith(\"update:\");let o;let a=s&&(\"modelValue\"===(o=t.slice(7))||\"model-value\"===o?r.modelModifiers:r[`${o}Modifiers`]||r[`${M(o)}Modifiers`]||r[`${D(o)}Modifiers`]);a&&(a.trim&&(i=l.map(e=>C(e)?e.trim():e)),a.number&&(i=l.map(U)));let u=r[n=$(t)]||r[n=$(M(t))];!u&&s&&(u=r[n=$(D(t))]),u&&tt(u,e,6,i);let c=r[n+\"Once\"];if(c){if(e.emitted){if(e.emitted[n])return}else e.emitted={};e.emitted[n]=!0,tt(c,e,6,i)}}function tq(e,t){return!!e&&!!_(t)&&(x(e,(t=t.slice(2).replace(/Once$/,\"\"))[0].toLowerCase()+t.slice(1))||x(e,D(t))||x(e,t))}function tZ(e){let t,l;let{type:n,vnode:r,proxy:i,withProxy:s,propsOptions:[o],slots:a,attrs:u,emit:c,render:f,renderCache:p,props:d,data:h,setupState:g,ctx:_,inheritAttrs:m}=e;let b=tm(e);try{if(4&r.shapeFlag){let e=s||i;t=lw(f.call(e,e,p,d,g,h,_)),l=u}else t=lw(n.length>1?n(d,{attrs:u,slots:a,emit:c}):n(d,null)),l=n.props?u:tQ(u)}catch(l){lf.length=0,tl(l,e,1),t=lb(lu)}let x=t;if(l&&!1!==m){let e=Object.keys(l);let{shapeFlag:t}=x;e.length&&7&t&&(o&&e.some(y)&&(l=tX(l,o)),x=lx(x,l,!1,!0))}return r.dirs&&((x=lx(x,null,!1,!0)).dirs=x.dirs?x.dirs.concat(r.dirs):r.dirs),r.transition&&tT(x,r.transition),t=x,tm(b),t}let tQ=e=>{let t;for(let l in e)(\"class\"===l||\"style\"===l||_(l))&&((t||(t={}))[l]=e[l]);return t};let tX=(e,t)=>{let l={};for(let n in e)y(n)&&n.slice(9)in t||(l[n]=e[n]);return l};function t0(e,t,l){let n=Object.keys(t);if(n.length!==Object.keys(e).length)return!0;for(let r=0;r<n.length;r++){let i=n[r];if(t1(t,e,i)&&!tq(l,i))return!0}return!1}function t1(e,t,l){let n=e[l];let r=t[l];return\"style\"===l&&O(n)&&O(r)?!function e(t,l){let n,r;if(t===l)return!0;let i=\"[object Date]\"===(n=t,T.call(n));let s=\"[object Date]\"===(r=l,T.call(r));if(i||s)return!!i&&!!s&&t.getTime()===l.getTime();if(i=k(t),s=k(l),i||s)return t===l;if(i=S(t),s=S(l),i||s)return!!i&&!!s&&function(t,l){if(t.length!==l.length)return!1;let n=!0;for(let r=0;n&&r<t.length;r++)n=e(t[r],l[r]);return n}(t,l);if(i=O(t),s=O(l),i||s){if(!i||!s||Object.keys(t).length!==Object.keys(l).length)return!1;for(let n in t){let r=t.hasOwnProperty(n);let i=l.hasOwnProperty(n);if(r&&!i||!r&&i||!e(t[n],l[n]))return!1}}return String(t)===String(l)}(n,r):n!==r}let t2={};let t6=e=>Object.getPrototypeOf(e)===t2;function t8(e,t,l,n){let r;let[i,s]=e.propsOptions;let o=!1;if(t)for(let a in t){let u;if(F(a))continue;let c=t[a];i&&x(i,u=M(a))?s&&s.includes(u)?(r||(r={}))[u]=c:l[u]=c:tq(e.emitsOptions,a)||a in n&&c===n[a]||(n[a]=c,o=!0)}if(s){let t=e2(l);let n=r||p;for(let r=0;r<s.length;r++){let o=s[r];l[o]=t4(i,t,o,n[o],e,!x(n,o))}}return o}function t4(e,t,l,n,r,i){let s=e[l];if(null!=s){let e=x(s,\"default\");if(e&&void 0===n){let e=s.default;if(s.type!==Function&&!s.skipFactory&&w(e)){let{propsDefaults:i}=r;if(l in i)n=i[l];else{let s=lE(r);n=i[l]=e.call(null,t),s()}}else n=e;r.ce&&r.ce._setProp(l,n)}s[0]&&(i&&!e?n=!1:s[1]&&(\"\"===n||n===D(l))&&(n=!0))}return n}function t3(e){return!(\"$\"===e[0]||F(e))}let t5=e=>\"_\"===e||\"_ctx\"===e||\"$stable\"===e;let t9=e=>S(e)?e.map(lw):[lw(e)];let t7=(e,t,l)=>{if(t._n)return t;let n=function(e,t=t_){if(!t||e._n)return e;let l=(...n)=>{let r;l._d&&lh(-1);let i=tm(t);try{r=e(...n)}finally{tm(i),l._d&&lh(1)}return r};return l._n=!0,l._c=!0,l._d=!0,l}((...e)=>t9(t(...e)),l);return n._c=!1,n};let le=(e,t,l)=>{let n=e._ctx;for(let l in e){if(t5(l))continue;let r=e[l];if(w(r))t[l]=t7(l,r,n);else if(null!=r){let e=t9(r);t[l]=()=>e}}};let lt=(e,t)=>{let l=t9(t);e.slots.default=()=>l};let ll=(e,t,l)=>{for(let n in t)(l||!t5(n))&&(e[n]=t[n])};let ln=function(e,t){t&&t.pendingBranch?S(e)?t.effects.push(...e):t.effects.push(e):td(e)};function lr({type:e,props:t},l){return\"svg\"===l&&\"foreignObject\"===e||\"mathml\"===l&&\"annotation-xml\"===e&&t&&t.encoding&&t.encoding.includes(\"html\")?void 0:l}function li({effect:e,job:t},l){l?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function ls(e){if(e)for(let t=0;t<e.length;t++)e[t].flags|=8}let lo=Symbol.for(\"v-fgt\");let la=Symbol.for(\"v-txt\");let lu=Symbol.for(\"v-cmt\");let lc=Symbol.for(\"v-stc\");let lf=[];let lp=null;let ld=1;function lh(e,t=!1){ld+=e,e<0&&lp&&t&&(lp.hasOnce=!0)}function lv(e){return!!e&&!0===e.__v_isVNode}function lg(e,t){return e.type===t.type&&e.key===t.key}let l_=({key:e})=>null!=e?e:null;let ly=({ref:e,ref_key:t,ref_for:l})=>(\"number\"==typeof e&&(e=\"\"+e),null!=e?C(e)||e4(e)||w(e)?{i:t_,r:e,k:t,f:!!l}:e:null);function lm(e,t=null,l=null,n=0,r=null,i=+(e!==lo),s=!1,o=!1){let a={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&l_(t),ref:t&&ly(t),scopeId:ty,slotScopeIds:null,children:l,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetStart:null,targetAnchor:null,staticCount:0,shapeFlag:i,patchFlag:n,dynamicProps:r,dynamicChildren:null,appContext:null,ctx:t_};return o?(lk(a,l),128&i&&e.normalize(a)):l&&(a.shapeFlag|=C(l)?8:16),ld>0&&!s&&lp&&(a.patchFlag>0||6&i)&&32!==a.patchFlag&&lp.push(a),a}let lb=function(e,t=null,l=null,n=0,r=null,i=!1){var s,o;if(e&&e!==tN||(e=lu),lv(e)){let n=lx(e,t,!0);return l&&lk(n,l),ld>0&&!i&&lp&&(6&n.shapeFlag?lp[lp.indexOf(e)]=n:lp.push(n)),n.patchFlag=-2,n}if(w(s=e)&&\"__vccOpts\"in s&&(e=e.__vccOpts),t){let{class:e,style:l}=t=(o=t)?e1(o)||t6(o)?m({},o):o:null;e&&!C(e)&&(t.class=J(e)),O(l)&&(e1(l)&&!S(l)&&(l=m({},l)),t.style=B(l))}let a=C(e)?1:e.__isSuspense?128:e.__isTeleport?64:O(e)?4:2*!!w(e);return lm(e,t,l,n,r,a,i,!0)};function lx(e,t,l=!1,n=!1){let{props:r,ref:i,patchFlag:s,children:o,transition:a}=e;let u=t?function(...e){let t={};for(let l=0;l<e.length;l++){let n=e[l];for(let e in n)if(\"class\"===e)t.class!==n.class&&(t.class=J([t.class,n.class]));else if(\"style\"===e)t.style=B([t.style,n.style]);else if(_(e)){let l=t[e];let r=n[e];r&&l!==r&&!(S(l)&&l.includes(r))&&(t[e]=l?[].concat(l,r):r)}else\"\"!==e&&(t[e]=n[e])}return t}(r||{},t):r;let c={__v_isVNode:!0,__v_skip:!0,type:e.type,props:u,key:u&&l_(u),ref:t&&t.ref?l&&i?S(i)?i.concat(ly(t)):[i,ly(t)]:ly(t):i,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:o,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==lo?-1===s?16:16|s:s,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:a,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&lx(e.ssContent),ssFallback:e.ssFallback&&lx(e.ssFallback),placeholder:e.placeholder,el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return a&&n&&tT(c,a.clone(c)),c}function lS(e=\" \",t=0){return lb(la,null,e,t)}function lw(e){return null==e||\"boolean\"==typeof e?lb(lu):S(e)?lb(lo,null,e.slice()):lv(e)?lC(e):lb(la,null,String(e))}function lC(e){return null===e.el&&-1!==e.patchFlag||e.memo?e:lx(e)}function lk(e,t){let l=0;let{shapeFlag:n}=e;if(null==t)t=null;else if(S(t))l=16;else if(\"object\"==typeof t)if(65&n){let l=t.default;l&&(l._c&&(l._d=!1),lk(e,l()),l._c&&(l._d=!0));return}else{l=32;let n=t._;n||t6(t)?3===n&&t_&&(1===t_.slots._?t._=1:(t._=2,e.patchFlag|=1024)):t._ctx=t_}else w(t)?(t={default:t,_ctx:t_},l=32):(t=String(t),64&n?(l=16,t=[lS(t)]):l=8);e.children=t,e.shapeFlag|=l}function lO(e,t,l,n=null){tt(e,t,7,[l,n])}let lj=tJ();let lT=0;let lP=null;let lF=()=>lP||t_;{let e=N();let t=(t,l)=>{let n;return(n=e[t])||(n=e[t]=[]),n.push(l),e=>{n.length>1?n.forEach(t=>t(e)):n[0](e)}};s=t(\"__VUE_INSTANCE_SETTERS__\",e=>lP=e),o=t(\"__VUE_SSR_SETTERS__\",e=>lI=e)}let lE=e=>{let t=lP;return s(e),e.scope.on(),()=>{e.scope.off(),s(t)}};let lA=()=>{lP&&lP.scope.off(),s(null)};function lM(e){return 4&e.vnode.shapeFlag}let lI=!1;function lD(e,t,l){w(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:O(t)&&(e.setupState=e7(t)),lR(e,l)}function lR(e,t,l){let n=e.type;if(!e.render){if(!t&&a&&!n.render){let t=n.template||!1;if(t){let{isCustomElement:l,compilerOptions:r}=e.appContext.config;let{delimiters:i,compilerOptions:s}=n;n.render=a(t,m(m({isCustomElement:l,delimiters:i},r),s))}}e.render=n.render||h,u&&u(e)}}let l$={get:(e,t)=>(ey(e,\"get\",\"\"),e[t])};function lL(e){var t;return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(e7((!x(t=e.exposed,\"__v_skip\")&&Object.isExtensible(t)&&V(t,\"__v_skip\",!0),t)),{get:(t,l)=>l in t?t[l]:l in tW?tW[l](e):void 0,has:(e,t)=>t in e||t in tW})):e.proxy}function lV(e,t,l){return t in e?Object.defineProperty(e,t,{value:l,enumerable:!0,configurable:!0,writable:!0}):e[t]=l,e}class lU{add(e){let t=++this.lastIndex;return this.map.set(t,e),t}get(e){return this.map.get(e)}remove(e){this.map.delete(e)}constructor(){lV(this,\"lastIndex\",0),lV(this,\"map\",new Map)}}class lN extends lU{add(e){let t=super.add(e);return e._execId=t,t}findJsFnHandle(e,t){let l=this.get(e);if(!l)return;let n=new Set;let r=e=>{if(null!==e&&\"object\"==typeof e&&!n.has(e)){if(n.add(e),\"_jsFnId\"in e&&e._jsFnId===t)return e;for(let t in e){let l=r(e[t]);if(l)return l}}};return r(l)}}function lB(e){let t=JSON.parse(e.data);let l=c.findJsFnHandle(t.obj._execId,t.obj._jsFnId);if(!(null==l?void 0:l._fn))throw Error(`runOnBackground: JS function not found (execId=${t.obj._execId}, fnId=${t.obj._jsFnId})`);let n=l._fn(...t.params);lynx.getCoreContext().dispatchEvent({type:\"Lynx.Worklet.FunctionCallRet\",data:JSON.stringify({resolveId:t.resolveId,returnValue:n})})}let lW=[];function lH(...e){for(let t of e)lW.push(t)}let lz=!1;let lJ=null;let lK=null;function lY(){return null!=lK?lK:Promise.resolve()}function lG(){lz||(lz=!0,td(lq))}function lq(){var e,t,l;let n;lz=!1;let r=(n=lW,lW=[],n);if(0===r.length)return;lK=new Promise(e=>{lJ=e});let i=null==(t=lynx)||null==(e=t.getNativeApp)?void 0:e.call(t);null==i||null==(l=i.callLepusMethod)||l.call(i,\"vuePatchUpdate\",{data:JSON.stringify(r)},()=>{null==lJ||lJ(),lJ=null,lK=null})}var lZ=i(86);class lQ{get _selector(){return`[vue-ref-${this.id}]`}_select(){return lynx.createSelectorQuery().select(this._selector)}invoke(e){return this._select().invoke(e)}setNativeProps(e){return this._select().setNativeProps(e)}fields(e,t){return this._select().fields(e,t)}path(e){return this._select().path(e)}animate(e){return this._select().animate(e)}playAnimation(e){return this._select().playAnimation(e)}pauseAnimation(e){return this._select().pauseAnimation(e)}cancelAnimation(e){return this._select().cancelAnimation(e)}insertBefore(e,t){if(e.parent&&e.parent.removeChild(e),e.parent=this,t){let l=t.prev;e.next=t,e.prev=l,t.prev=e,l?l.next=e:this.firstChild=e}else this.lastChild?(this.lastChild.next=e,e.prev=this.lastChild):(this.firstChild=e,e.prev=null),this.lastChild=e,e.next=null}removeChild(e){let t=e.prev;let l=e.next;t?t.next=l:this.firstChild=l,l?l.prev=t:this.lastChild=t,e.parent=null,e.prev=null,e.next=null}constructor(e,t){lV(this,\"id\",void 0),lV(this,\"type\",void 0),lV(this,\"parent\",null),lV(this,\"firstChild\",null),lV(this,\"lastChild\",null),lV(this,\"prev\",null),lV(this,\"next\",null),lV(this,\"_style\",{}),lV(this,\"_vShowHidden\",!1),lV(this,\"_baseClass\",\"\"),lV(this,\"_transitionClasses\",new Set),void 0===t?this.id=lQ.nextId++:this.id=t,this.type=e}}lV(lQ,\"nextId\",2);let lX=new Set([\"flex\",\"flexGrow\",\"flexShrink\",\"flexOrder\",\"order\",\"opacity\",\"zIndex\",\"aspectRatio\",\"fontWeight\",\"lineClamp\"]);function l0(e){return e.startsWith(\"global-bind\")?{type:\"bindGlobalEvent\",name:e.slice(11)}:e.startsWith(\"global-catch\")?{type:\"catchGlobalEvent\",name:e.slice(12)}:e.startsWith(\"catch\")?{type:\"catchEvent\",name:e.slice(5)}:/^bind(?!ingx)/.test(e)?{type:\"bindEvent\",name:e.slice(4)}:/^on[A-Z]/.test(e)?{type:\"bindEvent\",name:e.slice(2,3).toLowerCase()+e.slice(3)}:null}let l1=new Map;function l2(e){if(0===e._transitionClasses.size)return e._baseClass;let t=[];for(let l of(e._baseClass&&t.push(e._baseClass),e._transitionClasses))t.push(l);return t.join(\" \")}function l6(e,t){e._transitionClasses.add(t),lH(9,e.id,l2(e)),lG()}function l8(e,t){e._transitionClasses.delete(t),lH(9,e.id,l2(e)),lG()}function l4(e){td(()=>{lY().then(()=>{\"function\"==typeof requestAnimationFrame?requestAnimationFrame(e):e()})})}function l3(e,t,l){let n=\"animation\"===t?\"animationend\":\"transitionend\";let r=!1;let i=(0,lZ.kz)(t=>{r||(r=!0,(0,lZ.ht)(i),lH(7,e.id,\"bindEvent\",n),lG(),l())});lH(6,e.id,\"bindEvent\",n,i),lG()}function l5(e){return\"number\"==typeof e?{enter:e,leave:e}:e&&\"object\"==typeof e?{enter:e.enter,leave:e.leave}:{enter:0,leave:0}}function l9(e){return null!=e.duration}function l7(e,t){e&&e(...t)}tF({name:\"TransitionGroup\",props:{tag:{type:String,default:\"view\"},name:{type:String,default:\"v\"},type:{type:String},duration:{type:[Number,Object]},appear:Boolean,persisted:Boolean,enterFromClass:String,enterActiveClass:String,enterToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,moveClass:String},setup(e,{slots:t}){let l=lF();let n=tC();return()=>{let r=tP(t.default?t.default():[]);let i=e.name||\"v\";let s=e.enterFromClass||`${i}-enter-from`;let o=e.enterActiveClass||`${i}-enter-active`;let a=e.enterToClass||`${i}-enter-to`;let u=e.leaveFromClass||`${i}-leave-from`;let c=e.leaveActiveClass||`${i}-leave-active`;let f=e.leaveToClass||`${i}-leave-to`;for(let t of r){if(null==t.key)continue;let r=tj(t,{mode:void 0,appear:!n.isMounted&&!!e.appear,persisted:!1,onBeforeEnter(t){l7(e.onBeforeEnter,[t]),l6(t,s),l6(t,o)},onEnter(t,l){l4(()=>{l8(t,s),l6(t,a),l9(e)?setTimeout(l,l5(e.duration).enter):l3(t,e.type,l)}),l7(e.onEnter,[t,l])},onAfterEnter(t){l8(t,o),l8(t,a),l7(e.onAfterEnter,[t])},onEnterCancelled(t){l8(t,s),l8(t,o),l8(t,a),l7(e.onEnterCancelled,[t])},onBeforeLeave(t){l7(e.onBeforeLeave,[t]),l6(t,u),l6(t,c)},onLeave(t,l){l4(()=>{l8(t,u),l6(t,f),l9(e)?setTimeout(l,l5(e.duration).leave):l3(t,e.type,l)}),l7(e.onLeave,[t,l])},onAfterLeave(t){l8(t,c),l8(t,f),l7(e.onAfterLeave,[t])},onLeaveCancelled(t){l8(t,u),l8(t,c),l8(t,f),l7(e.onLeaveCancelled,[t])}},n,l);tT(t,r)}return function(e,t,l){try{lh(-1);let n=arguments.length;if(2!==n)return n>3?l=Array.prototype.slice.call(arguments,2):3===n&&lv(l)&&(l=[l]),lb(e,t,l);if(!O(t)||S(t))return lb(e,null,t);if(lv(t))return lb(e,null,[t]);return lb(e,t)}finally{lh(1)}}(e.tag,null,r)}}});let ne=function(e){var t;let l,n;N().__VUE__=!0;let{insert:r,remove:i,patchProp:s,createElement:a,createText:u,createComment:c,setText:f,setElementText:g,parentNode:_,nextSibling:y,setScopeId:b=h,insertStaticContent:C}=e;let k=(e,t,l,n=null,r=null,i=null,s,o=null,a=!!t.dynamicChildren)=>{if(e===t)return;e&&!lg(e,t)&&(n=eo(e),el(e,r,i,!0),e=null),-2===t.patchFlag&&(a=!1,t.dynamicChildren=null);let{type:u,ref:c,shapeFlag:f}=t;switch(u){case la:T(e,t,l,n);break;case lu:P(e,t,l,n);break;case lc:null==e&&E(t,l,n,s);break;case lo:H(e,t,l,n,r,i,s,o,a);break;default:1&f?A(e,t,l,n,r,i,s,o,a):6&f?z(e,t,l,n,r,i,s,o,a):(64&f||128&f)&&u.process(e,t,l,n,r,i,s,o,a,ep)}null!=c&&r?tM(c,e&&e.ref,i,t||e,!t):null==c&&e&&null!=e.ref&&tM(e.ref,null,i,e,!0)};let T=(e,t,l,n)=>{if(null==e)r(t.el=u(t.children),l,n);else{let l=t.el=e.el;t.children!==e.children&&f(l,t.children)}};let P=(e,t,l,n)=>{null==e?r(t.el=c(t.children||\"\"),l,n):t.el=e.el};let E=(e,t,l,n)=>{[e.el,e.anchor]=C(e.children,t,l,n,e.el,e.anchor)};let A=(e,t,l,n,r,i,s,o,a)=>{if(\"svg\"===t.type?s=\"svg\":\"math\"===t.type&&(s=\"mathml\"),null==e)I(t,l,n,r,i,s,o,a);else{let l=e.el&&e.el._isVueCE?e.el:null;try{l&&l._beginPatch(),U(e,t,r,i,s,o,a)}finally{l&&l._endPatch()}}};let I=(e,t,l,n,i,o,u,c)=>{var f,p;let d;let h;let{props:_,shapeFlag:y,transition:m,dirs:b}=e;if(d=e.el=a(e.type,o,_&&_.is,_),8&y?g(d,e.children):16&y&&$(e.children,d,null,n,i,lr(e,o),u,c),b&&tb(e,null,n,\"created\"),R(d,e,e.scopeId,u,n),_){for(let e in _)\"value\"===e||F(e)||s(d,e,null,_[e],o,n);\"value\"in _&&s(d,\"value\",null,_.value,o),(h=_.onVnodeBeforeMount)&&lO(h,n,e)}b&&tb(e,null,n,\"beforeMount\");let x=(f=i,p=m,(!f||f&&!f.pendingBranch)&&p&&!p.persisted);x&&m.beforeEnter(d),r(d,t,l),((h=_&&_.onVnodeMounted)||x||b)&&ln(()=>{h&&lO(h,n,e),x&&m.enter(d),b&&tb(e,null,n,\"mounted\")},i)};let R=(e,t,l,n,r)=>{if(l&&b(e,l),n)for(let t=0;t<n.length;t++)b(e,n[t]);if(r){let l=r.subTree;if(t===l||l.type.__isSuspense&&(l.ssContent===t||l.ssFallback===t)){let t=r.vnode;R(e,t,t.scopeId,t.slotScopeIds,r.parent)}}};let $=(e,t,l,n,r,i,s,o,a=0)=>{for(let u=a;u<e.length;u++)k(null,e[u]=o?lC(e[u]):lw(e[u]),t,l,n,r,i,s,o)};let U=(e,t,l,n,r,i,o)=>{let a;let u=t.el=e.el;let{patchFlag:c,dynamicChildren:f,dirs:d}=t;c|=16&e.patchFlag;let h=e.props||p;let _=t.props||p;if(l&&li(l,!1),(a=_.onVnodeBeforeUpdate)&&lO(a,l,t,e),d&&tb(t,e,l,\"beforeUpdate\"),l&&li(l,!0),(h.innerHTML&&null==_.innerHTML||h.textContent&&null==_.textContent)&&g(u,\"\"),f?B(e.dynamicChildren,f,u,l,n,lr(t,r),i):o||q(e,t,u,null,l,n,lr(t,r),i,!1),c>0){if(16&c)W(u,h,_,l,r);else if(2&c&&h.class!==_.class&&s(u,\"class\",null,_.class,r),4&c&&s(u,\"style\",h.style,_.style,r),8&c){let e=t.dynamicProps;for(let t=0;t<e.length;t++){let n=e[t];let i=h[n];let o=_[n];(o!==i||\"value\"===n)&&s(u,n,i,o,r,l)}}1&c&&e.children!==t.children&&g(u,t.children)}else o||null!=f||W(u,h,_,l,r);((a=_.onVnodeUpdated)||d)&&ln(()=>{a&&lO(a,l,t,e),d&&tb(t,e,l,\"updated\")},n)};let B=(e,t,l,n,r,i,s)=>{for(let o=0;o<t.length;o++){let a=e[o];let u=t[o];let c=a.el&&(a.type===lo||!lg(a,u)||198&a.shapeFlag)?_(a.el):l;k(a,u,c,null,n,r,i,s,!0)}};let W=(e,t,l,n,r)=>{if(t!==l){if(t!==p)for(let i in t)F(i)||i in l||s(e,i,t[i],null,r,n);for(let i in l){if(F(i))continue;let o=l[i];let a=t[i];o!==a&&\"value\"!==i&&s(e,i,a,o,r,n)}\"value\"in l&&s(e,\"value\",t.value,l.value,r)}};let H=(e,t,l,n,i,s,o,a,c)=>{let f=t.el=e?e.el:u(\"\");let p=t.anchor=e?e.anchor:u(\"\");let{patchFlag:d,dynamicChildren:h,slotScopeIds:g}=t;(g&&(a=a?a.concat(g):g),null==e)?(r(f,l,n),r(p,l,n),$(t.children||[],l,p,i,s,o,a,c)):d>0&&64&d&&h&&e.dynamicChildren&&e.dynamicChildren.length===h.length?(B(e.dynamicChildren,h,l,i,s,o,a),(null!=t.key||i&&t===i.subTree)&&function e(t,l,n=!1){let r=t.children;let i=l.children;if(S(r)&&S(i))for(let t=0;t<r.length;t++){let l=r[t];let s=i[t];1&s.shapeFlag&&!s.dynamicChildren&&((s.patchFlag<=0||32===s.patchFlag)&&((s=i[t]=lC(i[t])).el=l.el),n||-2===s.patchFlag||e(l,s)),s.type===la&&(-1===s.patchFlag&&(s=i[t]=lC(s)),s.el=l.el),s.type!==lu||s.el||(s.el=l.el)}}(e,t,!0)):q(e,t,l,p,i,s,o,a,c)};let z=(e,t,l,n,r,i,s,o,a)=>{t.slotScopeIds=o,null==e?512&t.shapeFlag?r.ctx.activate(t,l,n,s,a):J(t,l,n,r,i,s,a):K(e,t,a)};let J=(e,t,l,n,r,i,s)=>{var a,u,c;let f,h,g;let _=(a=e,u=n,c=r,f=a.type,h=(u?u.appContext:a.appContext)||lj,(g={uid:lT++,vnode:a,type:f,parent:u,appContext:h,root:null,next:null,subTree:null,effect:null,update:null,job:null,scope:new Z(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:u?u.provides:Object.create(h.provides),ids:u?u.ids:[\"\",0,0],accessCache:null,renderCache:[],components:null,directives:null,propsOptions:function(e,t){let l=t.propsCache;let n=l.get(e);if(n)return n;let r=e.props;let i={};let s=[];if(!r)return O(e)&&l.set(e,d),d;if(S(r))for(let e=0;e<r.length;e++){let t=M(r[e]);t3(t)&&(i[t]=p)}else if(r)for(let e in r){let t=M(e);if(t3(t)){let l=r[e];let n=i[t]=S(l)||w(l)?{type:l}:m({},l);let o=n.type;let a=!1;let u=!0;if(S(o))for(let e=0;e<o.length;++e){let t=o[e];let l=w(t)&&t.name;if(\"Boolean\"===l){a=!0;break}\"String\"===l&&(u=!1)}else a=w(o)&&\"Boolean\"===o.name;n[0]=a,n[1]=u,(a||x(n,\"default\"))&&s.push(t)}}let o=[i,s];return O(e)&&l.set(e,o),o}(f,h),emitsOptions:function(e,t){let l=t.emitsCache;let n=l.get(e);if(void 0!==n)return n;let r=e.emits;let i={};return r?(S(r)?r.forEach(e=>i[e]=null):m(i,r),O(e)&&l.set(e,i),i):(O(e)&&l.set(e,null),null)}(f,h),emit:null,emitted:null,propsDefaults:p,inheritAttrs:f.inheritAttrs,ctx:p,data:p,props:p,attrs:p,slots:p,refs:p,setupState:p,setupContext:null,suspense:c,suspenseId:c?c.pendingId:0,asyncDep:null,asyncResolved:!1,isMounted:!1,isUnmounted:!1,isDeactivated:!1,bc:null,c:null,bm:null,m:null,bu:null,u:null,um:null,bum:null,da:null,a:null,rtg:null,rtc:null,ec:null,sp:null}).ctx={_:g},g.root=u?u.root:g,g.emit=tG.bind(null,g),a.ce&&a.ce(g),e.component=g);if(tR(e)&&(_.ctx.renderer=ep),function(e,t=!1,l=!1){t&&o(t);let{props:n,children:r}=e.vnode;let i=lM(e);(function(e,t,l,n=!1){let r={};let i=Object.create(t2);for(let l in e.propsDefaults=Object.create(null),t8(e,t,r,i),e.propsOptions[0])l in r||(r[l]=void 0);l?e.props=n?r:eZ(r,!1,eL,eW,eJ):e.type.props?e.props=r:e.props=i,e.attrs=i})(e,n,i,t);var s=l||t;let a=e.slots=Object.create(t2);if(32&e.vnode.shapeFlag){let e=r._;e?(ll(a,r,s),s&&V(a,\"_\",e,!0)):le(r,a)}else r&<(e,r);let u=i?function(e,t){let l=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,tz);let{setup:n}=l;if(n){var r;ea();let l=e.setupContext=n.length>1?{attrs:new Proxy((r=e).attrs,l$),slots:r.slots,emit:r.emit,expose:e=>{r.exposed=e||{}}}:null;let i=lE(e);let s=te(n,e,0,[e.props,l]);let o=j(s);if(eu(),i(),(o||e.sp)&&!tD(e)&&(e.ids=[e.ids[0]+e.ids[2]+++\"-\",0,0]),o){if(s.then(lA,lA),t)return s.then(l=>{lD(e,l,t)}).catch(t=>{tl(t,e,0)});e.asyncDep=s}else lD(e,s,t)}else lR(e,t)}(e,t):void 0;return t&&o(!1),u}(_,!1,s),_.asyncDep){if(r&&r.registerDep(_,Y,s),!e.el){let n=_.subTree=lb(lu);P(null,n,t,l),e.placeholder=n.el}}else Y(_,e,t,l,r,i,s)};let K=(e,t,l)=>{let n=t.component=e.component;if(function(e,t,l){let{props:n,children:r,component:i}=e;let{props:s,children:o,patchFlag:a}=t;let u=i.emitsOptions;if(t.dirs||t.transition)return!0;if(!l||!(a>=0))return(!!r||!!o)&&(!o||!o.$stable)||n!==s&&(n?!s||t0(n,s,u):!!s);if(1024&a)return!0;if(16&a)return n?t0(n,s,u):!!s;if(8&a){let e=t.dynamicProps;for(let t=0;t<e.length;t++){let l=e[t];if(t1(s,n,l)&&!tq(u,l))return!0}}return!1}(e,t,l))if(n.asyncDep&&!n.asyncResolved)return void G(n,t,l);else n.next=t,n.update();else t.el=e.el,n.vnode=t};let Y=(e,t,l,r,i,s,o)=>{e.scope.on();let a=e.effect=new X(()=>{if(e.isMounted){let t,{next:l,bu:n,u:r,parent:a,vnode:c}=e;{let t=function e(t){let l=t.subTree.component;if(l)if(l.asyncDep&&!l.asyncResolved)return l;else return e(l)}(e);if(t){l&&(l.el=c.el,G(e,l,o)),t.asyncDep.then(()=>{ln(()=>{e.isUnmounted||u()},i)});return}}let f=l;li(e,!1),l?(l.el=c.el,G(e,l,o)):l=c,n&&L(n),(t=l.props&&l.props.onVnodeBeforeUpdate)&&lO(t,a,l,c),li(e,!0);let p=tZ(e);let d=e.subTree;e.subTree=p,k(d,p,_(d.el),eo(d),e,i,s),l.el=p.el,null===f&&function({vnode:e,parent:t},l){for(;t;){let n=t.subTree;if(n.suspense&&n.suspense.activeBranch===e&&(n.el=e.el),n===e)(e=t.vnode).el=l,t=t.parent;else break}}(e,p.el),r&&ln(r,i),(t=l.props&&l.props.onVnodeUpdated)&&ln(()=>lO(t,a,l,c),i)}else{let o;let{el:a,props:u}=t;let{bm:c,m:f,parent:p,root:d,type:h}=e;let g=tD(t);if(li(e,!1),c&&L(c),!g&&(o=u&&u.onVnodeBeforeMount)&&lO(o,p,t),li(e,!0),a&&n){let t=()=>{e.subTree=tZ(e),n(a,e.subTree,e,i,null)};g&&h.__asyncHydrate?h.__asyncHydrate(a,e,t):t()}else{d.ce&&d.ce._hasShadowRoot()&&d.ce._injectChildStyle(h,e.parent?e.parent.type:void 0);let n=e.subTree=tZ(e);k(null,n,l,r,e,i,s),t.el=n.el}if(f&&ln(f,i),!g&&(o=u&&u.onVnodeMounted)){let e=t;ln(()=>lO(o,p,e),i)}(256&t.shapeFlag||p&&tD(p.vnode)&&256&p.vnode.shapeFlag)&&e.a&&ln(e.a,i),e.isMounted=!0,t=l=r=null}});e.scope.off();let u=e.update=a.run.bind(a);let c=e.job=a.runIfDirty.bind(a);c.i=e,c.id=e.uid,a.scheduler=()=>tf(c),li(e,!0),u()};let G=(e,t,l)=>{t.component=e;let n=e.vnode.props;e.vnode=t,e.next=null,function(e,t,l,n){let{props:r,attrs:i,vnode:{patchFlag:s}}=e;let o=e2(r);let[a]=e.propsOptions;let u=!1;if((n||s>0)&&!(16&s)){if(8&s){let l=e.vnode.dynamicProps;for(let n=0;n<l.length;n++){let s=l[n];if(tq(e.emitsOptions,s))continue;let c=t[s];if(a)if(x(i,s))c!==i[s]&&(i[s]=c,u=!0);else{let t=M(s);r[t]=t4(a,o,t,c,e,!1)}else c!==i[s]&&(i[s]=c,u=!0)}}}else{let n;for(let s in t8(e,t,r,i)&&(u=!0),o)t&&(x(t,s)||(n=D(s))!==s&&x(t,n))||(a?l&&(void 0!==l[s]||void 0!==l[n])&&(r[s]=t4(a,o,s,void 0,e,!0)):delete r[s]);if(i!==o)for(let e in i)t&&x(t,e)||(delete i[e],u=!0)}u&&em(e.attrs,\"set\",\"\")}(e,t.props,n,l),((e,t,l)=>{let{vnode:n,slots:r}=e;let i=!0;let s=p;if(32&n.shapeFlag){let e=t._;e?l&&1===e?i=!1:ll(r,t,l):(i=!t.$stable,le(t,r)),s=t}else t&&(lt(e,t),s={default:1});if(i)for(let e in r)t5(e)||null!=s[e]||delete r[e]})(e,t.children,l),ea(),th(e),eu()};let q=(e,t,l,n,r,i,s,o,a=!1)=>{let u=e&&e.children;let c=e?e.shapeFlag:0;let f=t.children;let{patchFlag:p,shapeFlag:d}=t;if(p>0){if(128&p)return void ee(u,f,l,n,r,i,s,o,a);else if(256&p)return void Q(u,f,l,n,r,i,s,o,a)}8&d?(16&c&&es(u,r,i),f!==u&&g(l,f)):16&c?16&d?ee(u,f,l,n,r,i,s,o,a):es(u,r,i,!0):(8&c&&g(l,\"\"),16&d&&$(f,l,n,r,i,s,o,a))};let Q=(e,t,l,n,r,i,s,o,a)=>{let u;e=e||d,t=t||d;let c=e.length;let f=t.length;let p=Math.min(c,f);for(u=0;u<p;u++){let n=t[u]=a?lC(t[u]):lw(t[u]);k(e[u],n,l,null,r,i,s,o,a)}c>f?es(e,r,i,!0,!1,p):$(t,l,n,r,i,s,o,a,p)};let ee=(e,t,l,n,r,i,s,o,a)=>{let u=0;let c=t.length;let f=e.length-1;let p=c-1;for(;u<=f&&u<=p;){let n=e[u];let c=t[u]=a?lC(t[u]):lw(t[u]);if(lg(n,c))k(n,c,l,null,r,i,s,o,a);else break;u++}for(;u<=f&&u<=p;){let n=e[f];let u=t[p]=a?lC(t[p]):lw(t[p]);if(lg(n,u))k(n,u,l,null,r,i,s,o,a);else break;f--,p--}if(u>f){if(u<=p){let e=p+1;let f=e<c?t[e].el:n;for(;u<=p;)k(null,t[u]=a?lC(t[u]):lw(t[u]),l,f,r,i,s,o,a),u++}}else if(u>p)for(;u<=f;)el(e[u],r,i,!0),u++;else{let h;let g=u;let _=u;let y=new Map;for(u=_;u<=p;u++){let e=t[u]=a?lC(t[u]):lw(t[u]);null!=e.key&&y.set(e.key,u)}let m=0;let b=p-_+1;let x=!1;let S=0;let w=Array(b);for(u=0;u<b;u++)w[u]=0;for(u=g;u<=f;u++){let n;let c=e[u];if(m>=b){el(c,r,i,!0);continue}if(null!=c.key)n=y.get(c.key);else for(h=_;h<=p;h++)if(0===w[h-_]&&lg(c,t[h])){n=h;break}void 0===n?el(c,r,i,!0):(w[n-_]=u+1,n>=S?S=n:x=!0,k(c,t[n],l,null,r,i,s,o,a),m++)}let C=x?function(e){let t,l,n,r,i;let s=e.slice();let o=[0];let a=e.length;for(t=0;t<a;t++){let a=e[t];if(0!==a){if(e[l=o[o.length-1]]<a){s[t]=l,o.push(t);continue}for(n=0,r=o.length-1;n<r;)e[o[i=n+r>>1]]<a?n=i+1:r=i;a<e[o[n]]&&(n>0&&(s[t]=o[n-1]),o[n]=t)}}for(n=o.length,r=o[n-1];n-- >0;)o[n]=r,r=s[r];return o}(w):d;for(h=C.length-1,u=b-1;u>=0;u--){let e=_+u;let f=t[e];let p=t[e+1];let d=e+1<c?p.el||function e(t){if(t.placeholder)return t.placeholder;let l=t.component;return l?e(l.subTree):null}(p):n;0===w[u]?k(null,f,l,d,r,i,s,o,a):x&&(h<0||u!==C[h]?et(f,l,d,2):h--)}}};let et=(e,t,l,n,s=null)=>{let{el:o,type:a,transition:u,children:c,shapeFlag:f}=e;if(6&f)return void et(e.component.subTree,t,l,n);if(128&f)return void e.suspense.move(t,l,n);if(64&f)return void a.move(e,t,l,ep);if(a===lo){r(o,t,l);for(let e=0;e<c.length;e++)et(c[e],t,l,n);r(e.anchor,t,l);return}if(a===lc)return void(({el:e,anchor:t},l,n)=>{let i;for(;e&&e!==t;)i=y(e),r(e,l,n),e=i;r(t,l,n)})(e,t,l);if(2!==n&&1&f&&u)if(0===n)u.beforeEnter(o),r(o,t,l),ln(()=>u.enter(o),s);else{let{leave:n,delayLeave:s,afterLeave:a}=u;let c=()=>{e.ctx.isUnmounted?i(o):r(o,t,l)};let f=()=>{o._isLeaving&&o[tS](!0),n(o,()=>{c(),a&&a()})};s?s(o,c,f):f()}else r(o,t,l)};let el=(e,t,l,n=!1,r=!1)=>{let i;let{type:s,props:o,ref:a,children:u,dynamicChildren:c,shapeFlag:f,patchFlag:p,dirs:d,cacheIndex:h}=e;if(-2===p&&(r=!1),null!=a&&(ea(),tM(a,null,l,e,!0),eu()),null!=h&&(t.renderCache[h]=void 0),256&f)return void t.ctx.deactivate(e);let g=1&f&&d;let _=!tD(e);if(_&&(i=o&&o.onVnodeBeforeUnmount)&&lO(i,t,e),6&f)ei(e.component,l,n);else{if(128&f)return void e.suspense.unmount(l,n);g&&tb(e,null,t,\"beforeUnmount\"),64&f?e.type.remove(e,t,l,ep,n):c&&!c.hasOnce&&(s!==lo||p>0&&64&p)?es(c,t,l,!1,!0):(s===lo&&384&p||!r&&16&f)&&es(u,t,l),n&&en(e)}(_&&(i=o&&o.onVnodeUnmounted)||g)&&ln(()=>{i&&lO(i,t,e),g&&tb(e,null,t,\"unmounted\")},l)};let en=e=>{let{type:t,el:l,anchor:n,transition:r}=e;if(t===lo)return void er(l,n);if(t===lc)return void(({el:e,anchor:t})=>{let l;for(;e&&e!==t;)l=y(e),i(e),e=l;i(t)})(e);let s=()=>{i(l),r&&!r.persisted&&r.afterLeave&&r.afterLeave()};if(1&e.shapeFlag&&r&&!r.persisted){let{leave:t,delayLeave:n}=r;let i=()=>t(l,s);n?n(e.el,s,i):i()}else s()};let er=(e,t)=>{let l;for(;e!==t;)l=y(e),i(e),e=l;i(t)};let ei=(e,t,l)=>{let{bum:n,scope:r,job:i,subTree:s,um:o,m:a,a:u}=e;ls(a),ls(u),n&&L(n),r.stop(),i&&(i.flags|=8,el(s,e,t,l)),o&&ln(o,t),ln(()=>{e.isUnmounted=!0},t)};let es=(e,t,l,n=!1,r=!1,i=0)=>{for(let s=i;s<e.length;s++)el(e[s],t,l,n,r)};let eo=e=>{if(6&e.shapeFlag)return eo(e.component.subTree);if(128&e.shapeFlag)return e.suspense.next();let t=y(e.anchor||e.el);let l=t&&t[tx];return l?y(l):t};let ec=!1;let ef=(e,t,l)=>{let n;null==e?t._vnode&&(el(t._vnode,null,null,!0),n=t._vnode.component):k(t._vnode||null,e,t,null,null,null,l),t._vnode=e,ec||(ec=!0,th(n),tv(),ec=!1)};let ep={p:k,um:el,m:et,r:en,mt:J,mc:$,pc:q,pbc:B,n:eo,o:e};return{render:ef,hydrate:l,createApp:(t=l,function(e,l=null){w(e)||(e=m({},e)),null==l||O(l)||(l=null);let n=tJ();let r=new WeakSet;let i=[];let s=!1;let o=n.app={_uid:tK++,_component:e,_props:l,_container:null,_context:n,_instance:null,version:\"3.5.30\",get config(){return n.config},set config(v){},use:(e,...t)=>(r.has(e)||(e&&w(e.install)?(r.add(e),e.install(o,...t)):w(e)&&(r.add(e),e(o,...t))),o),mixin:e=>o,component:(e,t)=>t?(n.components[e]=t,o):n.components[e],directive:(e,t)=>t?(n.directives[e]=t,o):n.directives[e],mount(r,i,a){if(s);else{let u=o._ceVNode||lb(e,l);return u.appContext=n,!0===a?a=\"svg\":!1===a&&(a=void 0),i&&t?t(u,r):ef(u,r,a),s=!0,o._container=r,r.__vue_app__=o,lL(u.component)}},onUnmount(e){i.push(e)},unmount(){s&&(tt(i,o._instance,16),ef(null,o._container),delete o._container.__vue_app__)},provide:(e,t)=>(n.provides[e]=t,o),runWithContext(e){let t=tY;tY=o;try{return e()}finally{tY=t}}};return o})}}({createElement(e){let t=new lQ(e);return lH(0,t.id,e),lG(),t},createText(e){let t=new lQ(\"#text\");return lH(1,t.id),e&&lH(5,t.id,e),lG(),t},createComment(e){let t=new lQ(\"#comment\");return lH(0,t.id,\"__comment\"),lG(),t},setText(e,t){lH(5,e.id,t),lG()},setElementText(e,t){for(;e.firstChild;){let t=e.firstChild;e.removeChild(t),lH(3,e.id,t.id)}lH(5,e.id,t),lG()},insert(e,t,l){if(t.insertBefore(e,null!=l?l:null),\"list\"===t.type&&(\"#comment\"===e.type||\"#text\"===e.type))return;let n=null!=l?l:null;if(\"list\"===t.type)for(;n&&(\"#comment\"===n.type||\"#text\"===n.type);)n=n.next;let r=n?n.id:-1;lH(2,t.id,e.id,r),lG()},remove(e){if(e.parent){let t=e.parent.id;e.parent.removeChild(e),lH(3,t,e.id),lG()}},patchProp(e,t,l,n){var r,i;if(t.startsWith(\"main-thread-\")){let l=t.slice(12);if(\"ref\"===l)null!=n&&\"object\"==typeof n&&\"_wvid\"in n&&lH(12,e.id,n.toJSON());else{let t=l0(l);t&&null!=n?(c||(c=new lN,lynx.getCoreContext().addEventListener(\"Lynx.Worklet.runOnBackground\",lB)),c.add(n),lH(11,e.id,t.type,t.name,n)):t&&lH(7,e.id,t.type,t.name)}lG();return}let s=l0(t);if(s){let l=l1.get(e.id);let r=null==l?void 0:l.get(t);if(null!=n)if(r)(0,lZ.mY)(r,n);else{let r=(0,lZ.kz)(n);l||(l=new Map,l1.set(e.id,l)),l.set(t,r),lH(6,e.id,s.type,s.name,r)}else r&&((0,lZ.ht)(r),l.delete(t),lH(7,e.id,s.type,s.name))}else if(\"style\"===t){let t=null!=n&&\"object\"==typeof n?function(e){let t={};for(let l of Object.keys(e)){let n=e[l];\"flex\"===l&&\"number\"==typeof n?t[l]=`${n}`:\"number\"!=typeof n||lX.has(l)?t[l]=n:t[l]=0===n?0:`${n}px`}return t}(n):{};e._style=t;let l=e._vShowHidden?(r=function(e){for(var t=1;t<arguments.length;t++){var l=null!=arguments[t]?arguments[t]:{};var n=Object.keys(l);\"function\"==typeof Object.getOwnPropertySymbols&&(n=n.concat(Object.getOwnPropertySymbols(l).filter(function(e){return Object.getOwnPropertyDescriptor(l,e).enumerable}))),n.forEach(function(t){lV(e,t,l[t])})}return e}({},t),i=i={display:\"none\"},Object.getOwnPropertyDescriptors?Object.defineProperties(r,Object.getOwnPropertyDescriptors(i)):(function(e){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t.push.apply(t,l)}return t})(Object(i)).forEach(function(e){Object.defineProperty(r,e,Object.getOwnPropertyDescriptor(i,e))}),r):t;lH(8,e.id,l)}else if(\"class\"===t){e._baseClass=null!=n?n:\"\";let t=l2(e);lH(9,e.id,t)}else\"id\"===t?lH(10,e.id,n):lH(4,e.id,t,n);lG()},parentNode:e=>e.parent,nextSibling:e=>e.next}).createApp;Symbol.for(\"v-stc\");var nt=function(e,t,l,n,r,i){var s;return(s=lm(e,t,l,n,r,i,!0)).dynamicChildren=ld>0?lp||d:null,lf.pop(),lp=lf[lf.length-1]||null,ld>0&&lp&&lp.push(s),s};var nl=function(e=!1){lf.push(lp=e?null:[])};var nn=function(e){var t,l;return l=!1,e4(t=e)?t:new e3(t,l)};let nr=i.p+\"static/image/arrow.aee54ba7.png\";let ni=i.p+\"static/image/lynx-logo.620eb8d1.png\";let ns=i.p+\"static/image/vue-logo.9b1ed2e1.png\";let no;let na;(no=ne(tF({__name:\"App\",setup(e){let t,l,n=nn(!1);let{y:r,jump:i}=(t=nn(0),l=function(e,t={}){let{gravity:l=.6,jumpForce:n=-12,stackFactor:r=.6,frameMs:i=16}=t;let s=0;let o=0;let a=null;return{jump:function(){o=Math.min(o+n*r,n),a||function t(){if(o+=l,(s+=o)>=0){o=0,a=null,e(s=0);return}e(s),a=setTimeout(t,i)}()},getY:()=>s,destroy:function(){a&&(clearTimeout(a),a=null)}}}(e=>{t.value=e},void 0),tU(()=>{l.destroy()}),{y:t,jump:()=>l.jump()});function s(){n.value=!n.value}return tL(()=>{console.info(\"Hello, Vue Lynx\")}),(e,t)=>(nl(),nt(\"view\",{onTap:t[0]||(t[0]=(...e)=>e5(i)&&e5(i)(...e))},[lm(\"view\",{class:\"Background\"}),lm(\"view\",{class:\"App\"},[lm(\"view\",{class:\"Banner\"},[lm(\"view\",{class:\"Logo\",style:B({transform:`translateY(${e5(r)}px)`}),onTap:s},[lm(\"image\",{src:e5(n)?e5(ns):e5(ni),class:J(e5(n)?\"Logo--vue\":\"Logo--lynx\")},null,10,[\"src\"])],36),lm(\"text\",{class:\"Title\"},\"Vue\"),lm(\"text\",{class:\"Subtitle\"},\"on Lynx\")]),lm(\"view\",{class:\"Content\"},[lm(\"image\",{src:e5(nr),class:\"Arrow\"},null,8,[\"src\"]),lm(\"text\",{class:\"Description\"},\"Tap the logo and have fun!\"),lm(\"text\",{class:\"Hint\"},[lS(\" Edit\"),lm(\"text\",{style:{fontStyle:\"italic\",color:\"rgba(255, 255, 255, 0.85)\"}},Y(\" src/App.vue \")),lS(\"to see updates! \")])]),lm(\"view\",{style:{flex:1}})])],32))}}),void 0),na={get config(){return no.config},use:(e,...t)=>(no.use(e,...t),na),provide:(e,t)=>(no.provide(e,t),na),mount(){let e=new lQ(\"page\",1);no.mount(e)},unmount(){no.unmount()}}).mount()})();"},"cardType":"react","appType":"card","pageConfig":{"enableFiberArch":true,"useLepusNG":true,"enableReuseContext":true,"bundleModuleMode":"ReturnByFunction","templateDebugUrl":"https://vue.lynxjs.org/examples/hello-world/dist/main/debug-info.json","debugInfoOutside":true,"defaultDisplayLinear":true,"enableCSSInvalidation":true,"enableCSSSelector":true,"enableLepusDebug":false,"enableRemoveCSSScope":true,"targetSdkVersion":"3.2","defaultOverflowVisible":true,"lepusStrict":true,"useNewSwiper":true,"enableNewIntersectionObserver":true,"enableNativeList":true,"enableA11y":true,"enableAccessibilityElement":false,"enableCSSInheritance":false,"enableNewGesture":false,"removeDescendantSelectorScope":true},"lepusCode":{"root":"\"use strict\";var e={306(){var e;let t;let n=new Map;let l=1;let r=new Map;let i=new Set;let o=new Map;let a=new Set([\"item-key\",\"estimated-main-axis-size-px\",\"estimated-height-px\",\"estimated-height\",\"reuse-identifier\",\"full-span\",\"sticky-top\",\"sticky-bottom\",\"recyclable\"]);let u=new Map;let s=new Map;function c(){}function d(){if(\"u\">typeof globalThis&&\"lynxWorkletImpl\"in globalThis)return globalThis.lynxWorkletImpl}function f(e,t,n,l,r,i,o){try{var a=e[i](o);var u=a.value}catch(e){n(e);return}a.done?t(u):Promise.resolve(u).then(l,r)}let _=1;function p(e,t,n,l){lynx.getJSContext().dispatchEvent({type:\"Lynx.Worklet.runOnBackground\",data:JSON.stringify({obj:{_jsFnId:e,_execId:n},params:t,resolveId:l})})}let m=globalThis;m.SystemInfo=null!=(e=\"u\">typeof lynx&&lynx.SystemInfo)?e:{},m.runOnBackground=function(e){return(...n)=>{var l;return(l=function*(){return new Promise(l=>{var r;t||(t=new Map,lynx.getJSContext().addEventListener(\"Lynx.Worklet.FunctionCallRet\",e=>{let{resolveId:n,returnValue:l}=JSON.parse(e.data);let r=t.get(n);r&&(t.delete(n),r(l))}));let i=_++;(t.set(i,l),e._isFirstScreen&&\"u\">typeof lynxWorkletImpl&&(null==(r=lynxWorkletImpl)?void 0:r._runOnBackgroundDelayImpl))?lynxWorkletImpl._runOnBackgroundDelayImpl.delayRunOnBackground(e,(e,t)=>{p(e,n,t,i)}):p(e._jsFnId,n,e._execId,i)})},function(){var e=this,t=arguments;return new Promise(function(n,r){var i=l.apply(e,t);function o(e){f(i,n,r,o,a,\"next\",e)}function a(e){f(i,n,r,o,a,\"throw\",e)}o(void 0)})})()}},m.processData=function(e,t){return null!=e?e:{}},m.renderPage=function(e){n.clear(),l=1,r.clear(),i.clear(),o.clear(),u.clear(),s.clear();let t=__CreatePage(\"0\",0);__SetCSSId([t],0),l=__GetElementUniqueID(t),n.set(1,t),__FlushElementTree(t)},m.updatePage=function(e){},m.updateGlobalProps=function(e){},m.vuePatchUpdate=function({data:e}){(function(e){let t=e.length;if(0===t)return;if(t>=3&&0===e[0]){let t=e[1];if(n.has(t))return}let f=0;for(;f<t;)switch(e[f++]){case 0:{let t;let o=e[f++];let a=e[f++];\"__comment\"===a?t=__CreateRawText(\"\"):\"list\"===a?t=function(e){i.add(e),r.set(e,[]),s.set(e,0);let t={componentAtIndex:(t,n,l,i)=>{let o=r.get(e);if(!o||l<0||l>=o.length)return;let a=o[l].el;__AppendElement(t,a);let u=__GetElementUniqueID(a);return __FlushElementTree(a,{triggerLayout:!0,operationID:i,elementID:u,listID:n}),u},enqueueComponent:c,componentAtIndexes:(t,n,l,i)=>{let o=r.get(e);if(!o)return;let a=[];for(let e=0;e<l.length;e++){let n=l[e];if(i[e],n<0||n>=o.length){a.push(-1);continue}let r=o[n].el;__AppendElement(t,r);let u=__GetElementUniqueID(r);a.push(u)}__FlushElementTree(t,{triggerLayout:!0,operationIDs:i,elementIDs:a,listID:n})}};let n=__CreateList(l,t.componentAtIndex,t.enqueueComponent,{},t.componentAtIndexes);return __SetCSSId([n],0),n}(o):__SetCSSId([t=function(e,t){switch(e){case\"view\":return __CreateView(t);case\"text\":return __CreateText(t);case\"image\":return __CreateImage(t);case\"scroll-view\":return __CreateScrollView(t);default:return __CreateElement(e,t)}}(a,l)],0),n.set(o,t),\"__comment\"!==a&&__SetAttribute(t,`vue-ref-${o}`,1);break}case 1:{let t=e[f++];let r=__CreateText(l);__SetCSSId([r],0),n.set(t,r),__SetAttribute(r,`vue-ref-${t}`,1);break}case 2:{let t=e[f++];let l=e[f++];let o=e[f++];let a=n.get(t);let u=n.get(l);if(a&&u)if(i.has(t))(function(e,t,n){let l=r.get(e);l&&l.push({el:t,bgId:n})})(t,u,l);else if(-1===o)__AppendElement(a,u);else{let e=n.get(o);e&&__InsertElementBefore(a,u,e)}break}case 3:{let t=e[f++];let l=e[f++];let r=n.get(t);let i=n.get(l);r&&i&&__RemoveElement(r,i);break}case 4:{let t=e[f++];let l=e[f++];let r=e[f++];if(a.has(l))(function(e,t,n){let l=u.get(e);l?l[t]=n:u.set(e,{[t]:n}),\"item-key\"===t&&o.set(e,String(n))})(t,l,r);else{let e=n.get(t);e&&__SetAttribute(e,l,r)}break}case 5:{let t=e[f++];let l=e[f++];let r=n.get(t);r&&__SetAttribute(r,\"text\",l);break}case 6:{let t=e[f++];let l=e[f++];let r=e[f++];let i=e[f++];let o=n.get(t);o&&__AddEvent(o,l,r,i);break}case 7:{let t=e[f++];let l=e[f++];let r=e[f++];let i=n.get(t);i&&__AddEvent(i,l,r,void 0);break}case 8:{let t=e[f++];let l=e[f++];let r=n.get(t);r&&__SetInlineStyles(r,l);break}case 9:{let t=e[f++];let l=e[f++];let r=n.get(t);r&&__SetClasses(r,l);break}case 10:{let t=e[f++];let l=e[f++];let r=n.get(t);r&&__SetID(r,null!=l?l:void 0);break}case 11:(function(e,t,l,r){let i=n.get(e);i&&(r._workletType=\"main-thread\",__AddEvent(i,t,l,{type:\"worklet\",value:r}))})(e[f++],e[f++],e[f++],e[f++]);break;case 12:(function(e,t){let l=n.get(e);if(l){let e=d();if((null==e?void 0:e._refImpl)&&null!=t._wvid){var r;let n=e._refImpl._workletRefMap;!n||t._wvid in n||(n[t._wvid]={current:null!=(r=t._initValue)?r:null,_wvid:t._wvid}),e._refImpl.updateWorkletRef(t,l)}}})(e[f++],e[f++]);break;case 13:(function(e,t){let n=d();if(null==n?void 0:n._refImpl){let l=n._refImpl._workletRefMap;!l||e in l||(l[e]={current:t,_wvid:e})}})(e[f++],e[f++])}(function(){for(let[l,i]of r){var e,t;let r=null!=(e=s.get(l))?e:0;if(i.length<=r)continue;let a=n.get(l);if(!a)continue;let c=[];for(let e=r;e<i.length;e++){let n=i[e];let l={position:e,type:\"list-item\",\"item-key\":null!=(t=o.get(n.bgId))?t:String(e)};let r=u.get(n.bgId);r&&Object.assign(l,r),c.push(l)}__SetAttribute(a,\"update-list-info\",{insertAction:c,removeAction:[],updateAction:[]}),s.set(l,i.length)}})(),__FlushElementTree()})(JSON.parse(e))}},390(e,t,n){var l=n(720);(()=>{var e,t,n;let r,i,o;function a(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}class u{cancel(){return __ElementAnimate(this.effect.target.element,[3,this.id])}pause(){return __ElementAnimate(this.effect.target.element,[2,this.id])}play(){return __ElementAnimate(this.effect.target.element,[1,this.id])}start(){return __ElementAnimate(this.effect.target.element,[0,this.id,this.effect.keyframes,this.effect.options])}constructor(e){a(this,\"effect\",void 0),a(this,\"id\",void 0),this.effect=e,this.id=\"__lynx-inner-js-animation-\"+u.count++,this.start()}}function s(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}a(u,\"count\",0);class c{constructor(e,t,n){s(this,\"target\",void 0),s(this,\"keyframes\",void 0),s(this,\"options\",void 0),this.target=e,this.keyframes=t,this.options=n}}function d(e,t){var n;let l=(null!=(n=SystemInfo.lynxSdkVersion)?n:\"1.0\").split(\".\");return Number(l[0])>e||Number(l[0])==e&&Number(l[1])>t}let f=!1,_=!0;class p{setAttribute(e,t){__SetAttribute(this.element,e,t),this.flushElementTree()}setStyleProperty(e,t){__AddInlineStyle(this.element,e,t),this.flushElementTree()}setStyleProperties(e){for(let t in e)__AddInlineStyle(this.element,t,e[t]);this.flushElementTree()}getAttribute(e){return __GetAttributeByName(this.element,e)}getAttributeNames(){return __GetAttributeNames(this.element)}querySelector(e){let t=__QuerySelector(this.element,e,{});return t?new p(t):null}querySelectorAll(e){return __QuerySelectorAll(this.element,e,{}).map(e=>new p(e))}getComputedStyleProperty(e){if(!d(3,4))throw Error(\"getComputedStyleProperty requires Lynx sdk version 3.5\");if(!e)throw Error(\"getComputedStyleProperty: key is required\");return __GetComputedStyleByKey(this.element,e)}animate(e,t){return new u(new c(this,e,\"number\"==typeof t?{duration:t}:null!=t?t:{}))}invoke(e,t){return new Promise((n,l)=>{__InvokeUIMethod(this.element,e,null!=t?t:{},e=>{0===e.code?n(e.data):l(Error(\"UI method invoke: \"+JSON.stringify(e)))}),this.flushElementTree()})}flushElementTree(){!f&&_&&(f=!0,Promise.resolve().then(()=>{f=!1,__FlushElementTree()}))}constructor(e){var t,n;n=void 0,(t=\"element\")in this?Object.defineProperty(this,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):this[t]=n,Object.defineProperty(this,\"element\",{get:()=>e})}}class m{static get(){return null!=m.pageElement||(m.pageElement=__GetPageElement()),m.pageElement}}function y(e,t,n){let l;try{l=runWorklet(e,t)}finally{lynx.getJSContext().dispatchEvent({type:\"Lynx.Worklet.FunctionCallRet\",data:JSON.stringify({resolveId:n,returnValue:l})})}}t=void 0,(e=\"pageElement\")in m?Object.defineProperty(m,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):m[e]=t;let h=(e,t)=>({current:t,_wvid:e}),g=e=>{let t,n=e._wvid;return n<0?(t=r._firstScreenWorkletRefMap[n])||(t=r._firstScreenWorkletRefMap[n]=h(n,e._initValue)):t=r._workletRefMap[n],t};function k(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function v(e,t,n){lynxWorkletImpl._workletMap[t]=n}let b=new WeakMap;function I(e,t){if(\"object\"!=typeof e||null===e)return e;if(t){let t=b.get(e);if(t)return t}let n={main:e};return x(n,0,e),t&&b.set(e,n.main),n.main}let x=(e,t,n)=>{if(++t>=1e3)throw Error(\"Depth of value exceeds limit of 1000.\");if(\"object\"==typeof e&&null!==e)for(let i in e){let o=e[i];if(\"object\"==typeof o&&null!==o){if(\"elementRefptr\"in o){e[i]=new p(o.elementRefptr);continue}if(!(o instanceof p)){if(x(o,t,n),\"_wvid\"in o){e[i]=g(o);continue}if(\"_wkltId\"in o){e[i]=lynxWorkletImpl._workletMap[o._wkltId].bind(l._({},o)),e[i].ctx=o;continue}if(\"_jsFnId\"in o){var r;o._execId=n._execId,null==(r=lynxWorkletImpl._jsFunctionLifecycleManager)||r.addRef(n._execId,o);continue}}}}};if(void 0===globalThis.lynxWorkletImpl){let e,t;globalThis.lynxWorkletImpl={_workletMap:{},_refImpl:r={_workletRefMap:{},_firstScreenWorkletRefMap:{},updateWorkletRef:function(e,t){g(e).current=t?new p(t):null},updateWorkletRefInitValueChanges:function(e){e.forEach(([e,t])=>{r._workletRefMap[e]||(r._workletRefMap[e]=h(e,t))})},clearFirstScreenWorkletRefMap:function(){r._firstScreenWorkletRefMap={}}},_runOnBackgroundDelayImpl:i={delayedBackgroundFunctionArray:[],delayRunOnBackground:function(e,t){var n;i.delayedBackgroundFunctionArray.push({task:t}),(null!=(n=e._delayIndices)?n:e._delayIndices=[]).push(i.delayedBackgroundFunctionArray.length-1)},runDelayedBackgroundFunctions:function(){for(let e of i.delayedBackgroundFunctionArray)e.jsFnHandle&&e.task(e.jsFnHandle._jsFnId,e.jsFnHandle._execId);i.delayedBackgroundFunctionArray.length=0}},_hydrateCtx:function(e,t){!function e(t,n,l){if(t&&\"object\"==typeof t&&n&&\"object\"==typeof n&&(!t._wkltId||t._wkltId===n._wkltId))for(let i in t)if(\"_wvid\"===i){var r;r=t[i],\"_initValue\"in n||(lynxWorkletImpl._refImpl._workletRefMap[r]=n)}else if(\"_jsFn\"===i)!function(e,t,n){for(let l in e){let r=e[l],i=t[l];if(!(null==i?void 0:i._delayIndices)){i&&(i._isFirstScreen=!1,i._execId=n,Object.assign(i,r));continue}for(let e of i._delayIndices){let t=lynxWorkletImpl._runOnBackgroundDelayImpl.delayedBackgroundFunctionArray[e];r._execId=n,t.jsFnHandle=r}}}(t[i],n[i],l);else{let r=\"function\"==typeof n[i]?n[i].ctx:n[i];e(t[i],r,l)}}(e,t,e._execId)},_eventDelayImpl:o={_delayedWorkletParamsMap:new Map,runDelayedWorklet:function(e,t){(()=>{let n=o._delayedWorkletParamsMap.get(e._wkltId);if(void 0===n)return;let l=[];n.forEach(n=>{var r;let i=n[0];(null==i||null==(r=i.currentTarget)?void 0:r.elementRefptr)===t?setTimeout(()=>{runWorklet(e,n)},0):l.push(n)}),o._delayedWorkletParamsMap.set(e._wkltId,l)})()},clearDelayedWorklets:function(){o._delayedWorkletParamsMap.clear()}},_eomImpl:{setShouldFlush:function(e){_=e}},_runRunOnMainThreadTask:y},d(2,15)&&(globalThis.lynxWorkletImpl._jsFunctionLifecycleManager=new class{addRef(e,t){var n;this.execIdRefCount.set(e,(null!=(n=this.execIdRefCount.get(e))?n:0)+1),this.registry.register(t,e)}removeRef(e){let t=this.execIdRefCount.get(e);t>1?this.execIdRefCount.set(e,t-1):(this.execIdRefCount.delete(e),this.execIdSetToFire.add(e),this.willFire||(this.willFire=!0,Promise.resolve().then(()=>{this.fire()})))}fire(){lynx.getJSContext().dispatchEvent({type:\"Lynx.Worklet.releaseBackgroundWorkletCtx\",data:Array.from(this.execIdSetToFire)}),this.execIdSetToFire.clear(),this.willFire=!1}constructor(){k(this,\"execIdRefCount\",new Map),k(this,\"execIdSetToFire\",new Set),k(this,\"willFire\",!1),k(this,\"registry\",void 0),this.registry=new FinalizationRegistry(this.removeRef.bind(this))}}),globalThis.registerWorklet=v,globalThis.registerWorkletInternal=v,globalThis.runWorklet=function(e,t,n){var l;let r,i;return\"object\"==typeof e&&null!==e&&(\"_wkltId\"in e||\"_lepusWorkletHash\"in e)?\"_lepusWorkletHash\"in e?void(l=e._lepusWorkletHash,(i=(r=o._delayedWorkletParamsMap).get(l))?i.push(t):r.set(l,[t])):function(e,t,n){let l=(e._wkltId,I(e,!0)),r=I(t||[],!1),[i,o]=function(e,t){if(!Array.isArray(e)||\"object\"!=typeof e[0]||null===e[0]||(!t||1!==t.source)&&1)return[!1,{}];let n={},l=e[0];return l.stopPropagation=function(){var e;n._eventReturnResult=(null!=(e=n._eventReturnResult)?e:0)|1},l.stopImmediatePropagation=function(){var e;n._eventReturnResult=(null!=(e=n._eventReturnResult)?e:0)|2},[!0,n]}(r,n),a=l(...r);return i?{returnValue:a,eventReturnResult:o._eventReturnResult}:a}(e,t,n):void console.warn(\"MainThreadFunction: Invalid function object: \"+JSON.stringify(e))},lynx.querySelector=function(e){let t=__QuerySelector(m.get(),e,{});return t?new p(t):null},lynx.querySelectorAll=function(e){return __QuerySelectorAll(m.get(),e,{}).map(e=>new p(e))},globalThis.setTimeout=lynx.setTimeout,globalThis.setInterval=lynx.setInterval,globalThis.clearTimeout=lynx.clearTimeout,globalThis.clearInterval=null!=(n=lynx.clearInterval)?n:lynx.clearTimeInterval,e=lynx.requestAnimationFrame,lynx.requestAnimationFrame=globalThis.requestAnimationFrame=t=>{if(!d(2,15))throw Error(\"requestAnimationFrame in main thread script requires Lynx sdk version 2.16\");return e(t)},globalThis.cancelAnimationFrame=lynx.cancelAnimationFrame,(t=lynx.getJSContext()).addEventListener(\"Lynx.Worklet.runWorkletCtx\",e=>{let t=JSON.parse(e.data);y(t.worklet,t.params,t.resolveId)}),t.addEventListener(\"Lynx.Worklet.releaseWorkletRef\",e=>{var t;t=e.data.id,delete r._workletRefMap[t]})}})()},720(e,t,n){n.r(t),n.d(t,{_:()=>l});function l(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};var l=Object.keys(n);\"function\"==typeof Object.getOwnPropertySymbols&&(l=l.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),l.forEach(function(t){var l;l=n[t],t in e?Object.defineProperty(e,t,{value:l,enumerable:!0,configurable:!0,writable:!0}):e[t]=l})}return e}},586(e,t,n){n.p,n.p,n.p}};var t={};function n(l){var r=t[l];if(void 0!==r)return r.exports;var i=t[l]={exports:{}};return e[l](i,i.exports,n),i.exports}n.x=()=>(n(306),n(390),n(586)),n.d=(e,t)=>{for(var l in t)n.o(t,l)&&!n.o(e,l)&&Object.defineProperty(e,l,{enumerable:!0,get:t[l]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{\"u\">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.p=\"https://vue.lynxjs.org/examples/hello-world/dist/\",n.x();"},"customSections":{},"elementTemplates":{}}
|
package/lynx.config.ts
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
|
+
import path from 'node:path';
|
|
2
|
+
import { fileURLToPath } from 'node:url';
|
|
1
3
|
import { defineConfig } from '@lynx-js/rspeedy';
|
|
2
4
|
import { pluginVueLynx } from 'vue-lynx/plugin';
|
|
3
5
|
|
|
6
|
+
const exampleName = path.basename(path.dirname(fileURLToPath(import.meta.url)));
|
|
7
|
+
|
|
4
8
|
export default defineConfig({
|
|
5
9
|
environments: {
|
|
6
10
|
web: {},
|
|
7
11
|
lynx: {},
|
|
8
12
|
},
|
|
13
|
+
output: {
|
|
14
|
+
assetPrefix: `https://vue.lynxjs.org/examples/${exampleName}/dist/`,
|
|
15
|
+
},
|
|
9
16
|
source: {
|
|
10
17
|
entry: {
|
|
11
18
|
main: './src/index.ts',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue-lynx-example/hello-world",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -14,13 +14,8 @@
|
|
|
14
14
|
"url": "https://github.com/Huxpro/vue-lynx",
|
|
15
15
|
"directory": "examples/hello-world"
|
|
16
16
|
},
|
|
17
|
-
"scripts": {
|
|
18
|
-
"build": "rspeedy build",
|
|
19
|
-
"dev": "rspeedy dev",
|
|
20
|
-
"preview": "rspeedy preview"
|
|
21
|
-
},
|
|
22
17
|
"dependencies": {
|
|
23
|
-
"vue-lynx": "
|
|
18
|
+
"vue-lynx": "0.1.0-pre-alpha.2"
|
|
24
19
|
},
|
|
25
20
|
"devDependencies": {
|
|
26
21
|
"@lynx-js/qrcode-rsbuild-plugin": "^0.4.6",
|
|
@@ -30,5 +25,10 @@
|
|
|
30
25
|
},
|
|
31
26
|
"engines": {
|
|
32
27
|
"node": ">=18"
|
|
28
|
+
},
|
|
29
|
+
"scripts": {
|
|
30
|
+
"build": "rspeedy build",
|
|
31
|
+
"dev": "rspeedy dev",
|
|
32
|
+
"preview": "rspeedy preview"
|
|
33
33
|
}
|
|
34
|
-
}
|
|
34
|
+
}
|