@vue-lynx-example/vue-router 0.1.1 → 0.2.2
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/lynx.config.ts +7 -0
- package/package.json +8 -8
- package/dist/main.lynx.bundle +0 -0
- package/dist/main.web.bundle +0 -1
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/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/vue-router",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Vue-Lynx + Vue Router demo using createMemoryHistory",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -16,13 +16,9 @@
|
|
|
16
16
|
"url": "https://github.com/Huxpro/vue-lynx",
|
|
17
17
|
"directory": "examples/vue-router"
|
|
18
18
|
},
|
|
19
|
-
"scripts": {
|
|
20
|
-
"build": "rspeedy build",
|
|
21
|
-
"dev": "rspeedy dev"
|
|
22
|
-
},
|
|
23
19
|
"dependencies": {
|
|
24
|
-
"vue-
|
|
25
|
-
"vue-
|
|
20
|
+
"vue-router": "^4.5.0",
|
|
21
|
+
"vue-lynx": "0.2.0"
|
|
26
22
|
},
|
|
27
23
|
"devDependencies": {
|
|
28
24
|
"@lynx-js/rspeedy": "^0.13.5",
|
|
@@ -31,5 +27,9 @@
|
|
|
31
27
|
},
|
|
32
28
|
"engines": {
|
|
33
29
|
"node": ">=18"
|
|
30
|
+
},
|
|
31
|
+
"scripts": {
|
|
32
|
+
"build": "rspeedy build",
|
|
33
|
+
"dev": "rspeedy dev"
|
|
34
34
|
}
|
|
35
|
-
}
|
|
35
|
+
}
|
package/dist/main.lynx.bundle
DELETED
|
Binary file
|
package/dist/main.web.bundle
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"styleInfo":{},"manifest":{"/app-service.js":"\"use strict\";var e,t={};t.g=(()=>{if(\"object\"==typeof globalThis)return globalThis;try{return this||Function(\"return this\")()}catch(e){if(\"object\"==typeof window)return window}})();let l=\"__VUE_LYNX_EVENT_REGISTRY__\";function n(e,t){var n;let r,i;null==(n=(!(i=(r=globalThis)[l])&&Object.defineProperty(r,l,{value:i={signCounter:0,handlers:new Map},configurable:!0,enumerable:!1,writable:!0}),i).handlers.get(e))||n(t)}let r=globalThis;\"u\">typeof lynxCoreInject&&(null==(e=lynxCoreInject)?void 0:e.tt)&&(lynxCoreInject.tt.publishEvent=n,lynxCoreInject.tt.publicComponentEvent=(e,t,l)=>{n(t,l)}),r.publishEvent=n,r.updatePage=function(e){},(()=>{let e,l,n,r,i,o,s,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 m=e=>111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97);let y=e=>e.startsWith(\"onUpdate:\");let _=Object.assign;let b=(e,t)=>{let l=e.indexOf(t);l>-1&&e.splice(l,1)};let x=Object.prototype.hasOwnProperty;let S=(e,t)=>x.call(e,t);let O=Array.isArray;let C=e=>\"function\"==typeof e;let w=e=>\"string\"==typeof e;let E=e=>\"symbol\"==typeof e;let k=e=>null!==e&&\"object\"==typeof e;let A=e=>(k(e)||C(e))&&C(e.then)&&C(e.catch);let R=Object.prototype.toString;let T=e=>w(e)&&\"NaN\"!==e&&\"-\"!==e[0]&&\"\"+parseInt(e,10)===e;let I=f(\",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted\");let P=e=>{let t=Object.create(null);return l=>t[l]||(t[l]=e(l))};let j=/-\\w/g;let N=P(e=>e.replace(j,e=>e.slice(1).toUpperCase()));let D=/\\B([A-Z])/g;let M=P(e=>e.replace(D,\"-$1\").toLowerCase());let V=P(e=>e.charAt(0).toUpperCase()+e.slice(1));let B=P(e=>e?`on${V(e)}`:\"\");let F=(e,...t)=>{for(let l=0;l<e.length;l++)e[l](...t)};let L=(e,t,l,n=!1)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:n,value:l})};let $=e=>{let t=parseFloat(e);return isNaN(t)?e:t};let U=()=>e||(e=\"u\">typeof globalThis?globalThis:\"u\">typeof self?self:\"u\">typeof window?window:void 0!==t.g?t.g:{});function G(e){if(O(e)){let t={};for(let l=0;l<e.length;l++){let n=e[l];let r=w(n)?function(e){let t={};return e.replace(H,\"\").split(W).forEach(e=>{if(e){let l=e.split(z);l.length>1&&(t[l[0].trim()]=l[1].trim())}}),t}(n):G(n);if(r)for(let e in r)t[e]=r[e]}return t}if(w(e)||k(e))return e}let W=/;(?![^(]*\\))/g;let z=/:([^]+)/;let H=/\\/\\*[^]*?\\*\\//g;function q(e){let t=\"\";if(w(e))t=e;else if(O(e))for(let l=0;l<e.length;l++){let n=q(e[l]);n&&(t+=n+\" \")}else if(k(e))for(let l in e)e[l]&&(t+=l+\" \");return t.trim()}let J=e=>!!(e&&!0===e.__v_isRef);let K=e=>w(e)?e:null==e?\"\":O(e)||k(e)&&(e.toString===R||!C(e.toString))?J(e)?K(e.value):JSON.stringify(e,Y,2):String(e);let Y=(e,t)=>{let l;if(J(t))return Y(e,t.value);if(\"[object Map]\"===(l=t,R.call(l)))return{[`Map(${t.size})`]:[...t.entries()].reduce((e,[t,l],n)=>(e[X(t,n)+\" =>\"]=l,e),{})};{let e;if(\"[object Set]\"===(e=t,R.call(e)))return{[`Set(${t.size})`]:[...t.values()].map(e=>X(e))};else{if(E(t))return X(t);let e;if(k(t)&&!O(t)&&\"[object Object]\"!==(e=t,R.call(e)))return String(t)}}return t};let X=(e,t=\"\")=>{var l;return E(e)?`Symbol(${null!=(l=e.description)?l:t})`:e};class Q{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 t=l;try{return l=this,e()}finally{l=t}}}on(){1===++this._on&&(this.prevScope=l,l=this)}off(){this._on>0&&0===--this._on&&(l=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=l,!e&&l&&(this.index=(l.scopes||(l.scopes=[])).push(this)-1)}}let Z=new WeakSet;class ee{pause(){this.flags|=64}resume(){64&this.flags&&(this.flags&=-65,Z.has(this)&&(Z.delete(this),this.trigger()))}notify(){(!(2&this.flags)||32&this.flags)&&(8&this.flags||el(this))}run(){if(!(1&this.flags))return this.fn();this.flags|=2,ed(this),er(this);let e=n;let t=eu;n=this,eu=!0;try{return this.fn()}finally{ei(this),n=e,eu=t,this.flags&=-3}}stop(){if(1&this.flags){for(let e=this.deps;e;e=e.nextDep)ea(e);this.deps=this.depsTail=void 0,ed(this),this.onStop&&this.onStop(),this.flags&=-2}}trigger(){64&this.flags?Z.add(this):this.scheduler?this.scheduler():this.runIfDirty()}runIfDirty(){eo(this)&&this.run()}get dirty(){return eo(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,l&&l.active&&l.effects.push(this)}}let et=0;function el(e,t=!1){if(e.flags|=8,t){e.next=i,i=e;return}e.next=r,r=e}function en(){let e;if(!(--et>0)){if(i){let e=i;for(i=void 0;e;){let t=e.next;e.next=void 0,e.flags&=-9,e=t}}for(;r;){let t=r;for(r=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 er(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function ei(e){let t;let l=e.depsTail;let n=l;for(;n;){let e=n.prevDep;-1===n.version?(n===l&&(l=e),ea(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 eo(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&(es(t.dep.computed)||t.dep.version!==t.version))return!0;return!!e._dirty}function es(e){if(4&e.flags&&!(16&e.flags)||(e.flags&=-17,e.globalVersion===eh)||(e.globalVersion=eh,!e.isSSR&&128&e.flags&&(!e.deps&&!e._dirty||!eo(e))))return;e.flags|=2;let t=e.dep;let l=n;let r=eu;n=e,eu=!0;try{let l;er(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{n=l,eu=r,ei(e),e.flags&=-3}}function ea(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)ea(e,!0)}t||--l.sc||!l.map||l.map.delete(l.key)}let eu=!0;let ec=[];function ef(){ec.push(eu),eu=!1}function ep(){let e=ec.pop();eu=void 0===e||e}function ed(e){let{cleanup:t}=e;if(e.cleanup=void 0,t){let e=n;n=void 0;try{t()}finally{n=e}}}let eh=0;class eg{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 ev{track(e){if(!n||!eu||n===this.computed)return;let t=this.activeLink;if(void 0===t||t.sub!==n)t=this.activeLink=new eg(n,this),n.deps?(t.prevDep=n.depsTail,n.depsTail.nextDep=t,n.depsTail=t):n.deps=n.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=n.depsTail,t.nextDep=void 0,n.depsTail.nextDep=t,n.depsTail=t,n.deps===t&&(n.deps=e)}return t}trigger(e){this.version++,eh++,this.notify(e)}notify(e){et++;try{for(let e=this.subs;e;e=e.prevSub)e.sub.notify()&&e.sub.dep.notify()}finally{en()}}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 em=new WeakMap;let ey=Symbol(\"\");let e_=Symbol(\"\");let eb=Symbol(\"\");function ex(e,t,l){if(eu&&n){let t=em.get(e);t||em.set(e,t=new Map);let n=t.get(l);n||(t.set(l,n=new ev),n.map=t,n.key=l),n.track()}}function eS(e,t,l,n,r,i){let o=em.get(e);if(!o)return void eh++;let s=e=>{e&&e.trigger()};if(et++,\"clear\"===t)o.forEach(s);else{let r=O(e);let i=r&&T(l);if(r&&\"length\"===l){let e=Number(n);o.forEach((t,l)=>{(\"length\"===l||l===eb||!E(l)&&l>=e)&&s(t)})}else switch((void 0!==l||o.has(void 0))&&s(o.get(l)),i&&s(o.get(eb)),t){case\"add\":if(r)i&&s(o.get(\"length\"));else{let t;s(o.get(ey));\"[object Map]\"===(t=e,R.call(t))&&s(o.get(e_))}break;case\"delete\":if(!r){let t;s(o.get(ey));\"[object Map]\"===(t=e,R.call(t))&&s(o.get(e_))}break;case\"set\":let a;\"[object Map]\"===(a=e,R.call(a))&&s(o.get(ey))}}en()}function eO(e){let t=e4(e);return t===e?t:(ex(t,\"iterate\",eb),e8(e)?t:t.map(e5))}function eC(e){return ex(e=e4(e),\"iterate\",eb),e}function ew(e,t){return e6(e)?e2(e)?e7(e5(t)):e7(t):e5(t)}let eE={__proto__:null,[Symbol.iterator](){return ek(this,Symbol.iterator,e=>ew(this,e))},concat(...e){return eO(this).concat(...e.map(e=>O(e)?eO(e):e))},entries(){return ek(this,\"entries\",e=>(e[1]=ew(this,e[1]),e))},every(e,t){return eR(this,\"every\",e,t,void 0,arguments)},filter(e,t){return eR(this,\"filter\",e,t,e=>e.map(e=>ew(this,e)),arguments)},find(e,t){return eR(this,\"find\",e,t,e=>ew(this,e),arguments)},findIndex(e,t){return eR(this,\"findIndex\",e,t,void 0,arguments)},findLast(e,t){return eR(this,\"findLast\",e,t,e=>ew(this,e),arguments)},findLastIndex(e,t){return eR(this,\"findLastIndex\",e,t,void 0,arguments)},forEach(e,t){return eR(this,\"forEach\",e,t,void 0,arguments)},includes(...e){return eI(this,\"includes\",e)},indexOf(...e){return eI(this,\"indexOf\",e)},join(e){return eO(this).join(e)},lastIndexOf(...e){return eI(this,\"lastIndexOf\",e)},map(e,t){return eR(this,\"map\",e,t,void 0,arguments)},pop(){return eP(this,\"pop\")},push(...e){return eP(this,\"push\",e)},reduce(e,...t){return eT(this,\"reduce\",e,t)},reduceRight(e,...t){return eT(this,\"reduceRight\",e,t)},shift(){return eP(this,\"shift\")},some(e,t){return eR(this,\"some\",e,t,void 0,arguments)},splice(...e){return eP(this,\"splice\",e)},toReversed(){return eO(this).toReversed()},toSorted(e){return eO(this).toSorted(e)},toSpliced(...e){return eO(this).toSpliced(...e)},unshift(...e){return eP(this,\"unshift\",e)},values(){return ek(this,\"values\",e=>ew(this,e))}};function ek(e,t,l){let n=eC(e);let r=n[t]();return n===e||e8(e)||(r._next=r.next,r.next=()=>{let e=r._next();return e.done||(e.value=l(e.value)),e}),r}let eA=Array.prototype;function eR(e,t,l,n,r,i){let o=eC(e);let s=o!==e&&!e8(e);let a=o[t];if(a!==eA[t]){let t=a.apply(e,i);return s?e5(t):t}let u=l;o!==e&&(s?u=function(t,n){return l.call(this,ew(e,t),n,e)}:l.length>2&&(u=function(t,n){return l.call(this,t,n,e)}));let c=a.call(o,u,n);return s&&r?r(c):c}function eT(e,t,l,n){let r=eC(e);let i=r!==e&&!e8(e);let o=l;let s=!1;r!==e&&(i?(s=0===n.length,o=function(t,n,r){return s&&(s=!1,t=ew(e,t)),l.call(this,t,ew(e,n),r,e)}):l.length>3&&(o=function(t,n,r){return l.call(this,t,n,r,e)}));let a=r[t](o,...n);return s?ew(e,a):a}function eI(e,t,l){let n=e4(e);ex(n,\"iterate\",eb);let r=n[t](...l);return(-1===r||!1===r)&&e3(l[0])?(l[0]=e4(l[0]),n[t](...l)):r}function eP(e,t,l=[]){ef(),et++;let n=e4(e)[t].apply(e,l);return en(),ep(),n}let ej=f(\"__proto__,__v_isRef,__isVue\");let eN=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>\"arguments\"!==e&&\"caller\"!==e).map(e=>Symbol[e]).filter(E));function eD(e){E(e)||(e=String(e));let t=e4(this);return ex(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?eX:eY:r?eK:eJ).get(e)||Object.getPrototypeOf(e)===Object.getPrototypeOf(l)?e:void 0;let i=O(e);if(!n){let e;if(i&&(e=eE[t]))return e;if(\"hasOwnProperty\"===t)return eD}let o=Reflect.get(e,t,e9(e)?e:l);if((E(t)?eN.has(t):ej(t))||(n||ex(e,\"get\",t),r))return o;if(e9(o)){let e=i&&T(t)?o:o.value;return n&&k(e)?e0(e):e}return k(o)?n?e0(o):eQ(o):o}constructor(e=!1,t=!1){this._isReadonly=e,this._isShallow=t}}class eV extends eM{set(e,t,l,n){let r=e[t];let i=O(e)&&T(t);if(!this._isShallow){let e=e6(r);if(e8(l)||e6(l)||(r=e4(r),l=e4(l)),!i&&e9(r)&&!e9(l))if(e)return!0;else return r.value=l,!0}let o=i?Number(t)<e.length:S(e,t);let s=Reflect.set(e,t,l,e9(e)?e:n);return e===e4(n)&&(o?Object.is(l,r)||eS(e,\"set\",t,l,r):eS(e,\"add\",t,l)),s}deleteProperty(e,t){let l=S(e,t);let n=e[t];let r=Reflect.deleteProperty(e,t);return r&&l&&eS(e,\"delete\",t,void 0,n),r}has(e,t){let l=Reflect.has(e,t);return E(t)&&eN.has(t)||ex(e,\"has\",t),l}ownKeys(e){return ex(e,\"iterate\",O(e)?\"length\":ey),Reflect.ownKeys(e)}constructor(e=!1){super(!1,e)}}class eB extends eM{set(e,t){return!0}deleteProperty(e,t){return!0}constructor(e=!1){super(!0,e)}}let eF=new eV;let eL=new eB;let e$=new eV(!0);let eU=e=>e;function eG(e){return function(){return\"delete\"!==e&&(\"clear\"===e?void 0:this)}}function eW(e,t){let l;let n=(_(l={get(l){let n=this.__v_raw;let r=e4(n);let i=e4(l);e||(Object.is(l,i)||ex(r,\"get\",l),ex(r,\"get\",i));let{has:o}=Reflect.getPrototypeOf(r);let s=t?eU:e?e7:e5;return o.call(r,l)?s(n.get(l)):o.call(r,i)?s(n.get(i)):void(n!==r&&n.get(l))},get size(){let t=this.__v_raw;return e||ex(e4(t),\"iterate\",ey),t.size},has(t){let l=this.__v_raw;let n=e4(l);let r=e4(t);return e||(Object.is(t,r)||ex(n,\"has\",t),ex(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 o=e4(i);let s=t?eU:e?e7:e5;return e||ex(o,\"iterate\",ey),i.forEach((e,t)=>l.call(n,s(e),s(t),r))}},e?{add:eG(\"add\"),set:eG(\"set\"),delete:eG(\"delete\"),clear:eG(\"clear\")}:{add(e){let l=e4(this);let n=Reflect.getPrototypeOf(l);let r=e4(e);let i=t||e8(e)||e6(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),eS(l,\"add\",i,i)),this},set(e,l){t||e8(l)||e6(l)||(l=e4(l));let n=e4(this);let{has:r,get:i}=Reflect.getPrototypeOf(n);let o=r.call(n,e);o||(e=e4(e),o=r.call(n,e));let s=i.call(n,e);return(n.set(e,l),o)?Object.is(l,s)||eS(n,\"set\",e,l,s):eS(n,\"add\",e,l),this},delete(e){let t=e4(this);let{has:l,get:n}=Reflect.getPrototypeOf(t);let r=l.call(t,e);r||(e=e4(e),r=l.call(t,e));let i=n?n.call(t,e):void 0;let o=t.delete(e);return r&&eS(t,\"delete\",e,void 0,i),o},clear(){let e=e4(this);let t=0!==e.size;let l=e.clear();return t&&eS(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 o=e4(i);let s=\"[object Map]\"===(r=o,R.call(r));let a=\"entries\"===n||n===Symbol.iterator&&s;let u=i[n](...l);let c=t?eU:e?e7:e5;return e||ex(o,\"iterate\",\"keys\"===n&&s?e_:ey),_(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(S(n,l)&&l in t?n:t,l,r)}let ez={get:eW(!1,!1)};let eH={get:eW(!1,!0)};let eq={get:eW(!0,!1)};let eJ=new WeakMap;let eK=new WeakMap;let eY=new WeakMap;let eX=new WeakMap;function eQ(e){return e6(e)?e:e1(e,!1,eF,ez,eJ)}function eZ(e){return e1(e,!1,e$,eH,eK)}function e0(e){return e1(e,!0,eL,eq,eY)}function e1(e,t,l,n,r){var i;let o;if(!k(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;let s=(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}}((o=i,R.call(o)).slice(8,-1));if(0===s)return e;let a=r.get(e);if(a)return a;let u=new Proxy(e,2===s?n:l);return r.set(e,u),u}function e2(e){return e6(e)?e2(e.__v_raw):!!(e&&e.__v_isReactive)}function e6(e){return!!(e&&e.__v_isReadonly)}function e8(e){return!!(e&&e.__v_isShallow)}function e3(e){return!!e&&!!e.__v_raw}function e4(e){let t=e&&e.__v_raw;return t?e4(t):e}let e5=e=>k(e)?eQ(e):e;let e7=e=>k(e)?e0(e):e;function e9(e){return!!e&&!0===e.__v_isRef}function te(e,t){return e9(e)?e:new tt(e,t)}class tt{get value(){return this.dep.track(),this._value}set value(e){let t=this._rawValue;let l=this.__v_isShallow||e8(e)||e6(e);Object.is(e=l?e:e4(e),t)||(this._rawValue=e,this._value=l?e:e5(e),this.dep.trigger())}constructor(e,t){this.dep=new ev,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=t?e:e4(e),this._value=t?e:e5(e),this.__v_isShallow=t}}function tl(e){return e9(e)?e.value:e}let tn={get:(e,t,l)=>\"__v_raw\"===t?e:tl(Reflect.get(e,t,l)),set:(e,t,l,n)=>{let r=e[t];return e9(r)&&!e9(l)?(r.value=l,!0):Reflect.set(e,t,l,n)}};function tr(e){return e2(e)?e:new Proxy(e,tn)}class ti{notify(){if(this.flags|=16,!(8&this.flags)&&n!==this)return el(this,!0),!0}get value(){let e=this.dep.track();return es(this),e&&(e.version=this.dep.version),this._value}set value(e){this.setter&&this.setter(e)}constructor(e,t,l){this.fn=e,this.setter=t,this._value=void 0,this.dep=new ev(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=eh-1,this.next=void 0,this.effect=this,this.__v_isReadonly=!t,this.isSSR=l}}let to={};let ts=new WeakMap;let ta;function tu(e,t=1/0,l){if(t<=0||!k(e)||e.__v_skip||((l=l||new Map).get(e)||0)>=t)return e;if(l.set(e,t),t--,e9(e))tu(e.value,t,l);else if(O(e))for(let n=0;n<e.length;n++)tu(e[n],t,l);else{let n;let r;if(\"[object Set]\"===(n=e,R.call(n))||\"[object Map]\"===(r=e,R.call(r)))e.forEach(e=>{tu(e,t,l)});else{let n;if(\"[object Object]\"===(n=e,R.call(n))){for(let n in e)tu(e[n],t,l);for(let n of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,n)&&tu(e[n],t,l)}}}return e}function tc(e,t,l,n){try{return n?e(...n):e()}catch(e){tp(e,t,l)}}function tf(e,t,l,n){if(C(e)){let r=tc(e,t,l,n);return r&&A(r)&&r.catch(e=>{tp(e,t,l)}),r}if(O(e)){let r=[];for(let i=0;i<e.length;i++)r.push(tf(e[i],t,l,n));return r}}function tp(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 o=`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,o))return}n=n.parent}if(r){ef(),tc(r,null,10,[e,i,o]),ep();return}}(function(e,t=!0,l=!1){if(l)throw e;console.error(e)})(e,n,i)}let td=[];let th=-1;let tg=[];let tv=null;let tm=0;let ty=Promise.resolve();let t_=null;function tb(e){let t=t_||ty;return e?t.then(this?e.bind(this):e):t}function tx(e){if(!(1&e.flags)){let t=tE(e);let l=td[td.length-1];!l||!(2&e.flags)&&t>=tE(l)?td.push(e):td.splice(function(e){let t=th+1;let l=td.length;for(;t<l;){let n=t+l>>>1;let r=td[n];let i=tE(r);i<e||i===e&&2&r.flags?t=n+1:l=n}return t}(t),0,e),e.flags|=1,tS()}}function tS(){t_||(t_=ty.then(function e(t){try{for(th=0;th<td.length;th++){let e=td[th];e&&!(8&e.flags)&&(4&e.flags&&(e.flags&=-2),tc(e,e.i,e.i?15:14),4&e.flags||(e.flags&=-2))}}finally{for(;th<td.length;th++){let e=td[th];e&&(e.flags&=-2)}th=-1,td.length=0,tw(t),t_=null,(td.length||tg.length)&&e(t)}}))}function tO(e){O(e)?tg.push(...e):tv&&-1===e.id?tv.splice(tm+1,0,e):1&e.flags||(tg.push(e),e.flags|=1),tS()}function tC(e,t,l=th+1){for(;l<td.length;l++){let t=td[l];if(t&&2&t.flags){if(e&&t.id!==e.uid)continue;td.splice(l,1),l--,4&t.flags&&(t.flags&=-2),t(),4&t.flags||(t.flags&=-2)}}}function tw(e){if(tg.length){let e=[...new Set(tg)].sort((e,t)=>tE(e)-tE(t));if(tg.length=0,tv)return void tv.push(...e);for(tm=0,tv=e;tm<tv.length;tm++){let e=tv[tm];4&e.flags&&(e.flags&=-2),8&e.flags||e(),e.flags&=-2}tv=null,tm=0}}let tE=e=>null==e.id?2&e.flags?-1:1/0:e.id;let tk=null;let tA=null;function tR(e){let t=tk;return tk=e,tA=e&&e.type.__scopeId||null,t}function tT(e,t=tk,l){if(!t||e._n)return e;let n=(...l)=>{let r;n._d&&lA(-1);let i=tR(t);try{r=e(...l)}finally{tR(i),n._d&&lA(1)}return r};return n._n=!0,n._c=!0,n._d=!0,n}function tI(e,t,l,n){let r=e.dirs;let i=t&&t.dirs;for(let o=0;o<r.length;o++){let s=r[o];i&&(s.oldValue=i[o].value);let a=s.dir[n];a&&(ef(),tf(a,l,8,[e.el,s,e,t]),ep())}}function tP(e,t){if(lW){let l=lW.provides;let n=lW.parent&&lW.parent.provides;n===l&&(l=lW.provides=Object.create(n)),l[e]=t}}function tj(e,t,l=!1){let n=lz();if(n||t5){let r=t5?t5._context.provides:n?null==n.parent||n.ce?n.vnode.appContext&&n.vnode.appContext.provides:n.parent.provides:void 0;if(r&&e in r)return r[e];if(arguments.length>1)return l&&C(t)?t.call(n&&n.proxy):t}}let tN=Symbol.for(\"v-scx\");let tD=Symbol(\"_vte\");let tM=Symbol(\"_leaveCb\");let tV=Symbol(\"_enterCb\");function tB(){let e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return tQ(()=>{e.isMounted=!0}),tZ(()=>{e.isUnmounting=!0}),e}let tF=e=>{let t=e.subTree;return t.component?tF(t.component):t};function tL(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 t$(e,t,l,n,r){let{appear:i,mode:o,persisted:s=!1,onBeforeEnter:a,onEnter:u,onAfterEnter:c,onEnterCancelled:f,onBeforeLeave:p,onLeave:d,onAfterLeave:h,onLeaveCancelled:g,onBeforeAppear:m,onAppear:y,onAfterAppear:_,onAppearCancelled:b}=t;let x=String(e.key);let S=tL(l,e);let C=(e,t)=>{e&&tf(e,n,9,t)};let w=(e,t)=>{let l=t[1];C(e,t),O(e)?e.every(e=>e.length<=1)&&l():e.length<=1&&l()};let E={mode:o,persisted:s,beforeEnter(t){let n=a;if(!l.isMounted)if(!i)return;else n=m||a;t[tM]&&t[tM](!0);let r=S[x];r&&lP(e,r)&&r.el[tM]&&r.el[tM](),C(n,[t])},enter(t){if(S[x]===e)return;let n=u;let r=c;let o=f;if(!l.isMounted)if(!i)return;else n=y||u,r=_||c,o=b||f;let s=!1;t[tV]=e=>{s||(s=!0,e?C(o,[t]):C(r,[t]),E.delayedLeave&&E.delayedLeave(),t[tV]=void 0)};let a=t[tV].bind(null,!1);n?w(n,[t,a]):a()},leave(t,n){let r=String(e.key);if(t[tV]&&t[tV](!0),l.isUnmounting)return n();C(p,[t]);let i=!1;t[tM]=l=>{i||(i=!0,n(),l?C(g,[t]):C(h,[t]),t[tM]=void 0,S[r]===e&&delete S[r])};let o=t[tM].bind(null,!1);S[r]=e,d?w(d,[t,o]):o()},clone(e){let i=t$(e,t,l,n,r);return r&&r(i),i}};return E}function tU(e,t){6&e.shapeFlag&&e.component?(e.transition=t,tU(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 tG(e,t=!1,l){let n=[];let r=0;for(let i=0;i<e.length;i++){let o=e[i];let s=null==l?o.key:String(l)+String(null!=o.key?o.key:i);o.type===lb?(128&o.patchFlag&&r++,n=n.concat(tG(o.children,t,s))):(t||o.type!==lS)&&n.push(null!=s?lV(o,{key:s}):o)}if(r>1)for(let e=0;e<n.length;e++)n[e].patchFlag=-2;return n}function tW(e,t){return C(e)?_({name:e.name},t,{setup:e}):e}function tz(e,t){let l;return!!((l=Object.getOwnPropertyDescriptor(e,t))&&!l.configurable)}let tH=new WeakMap;function tq(e,t,l,n,r=!1){if(O(e))return void e.forEach((e,i)=>tq(e,t&&(O(t)?t[i]:t),l,n,r));if(tK(n)&&!r){512&n.shapeFlag&&n.type.__asyncResolved&&n.component.subTree.component&&tq(e,t,l,n.component.subTree);return}let i=4&n.shapeFlag?lZ(n.component):n.el;let o=r?null:i;let{i:s,r:a}=e;let u=t&&t.r;let c=s.refs===p?s.refs={}:s.refs;let f=s.setupState;let d=e4(f);let h=f===p?g:e=>!tz(c,e)&&S(d,e);let m=(e,t)=>!(t&&tz(c,t));if(null!=u&&u!==a&&(tJ(t),w(u)?(c[u]=null,h(u)&&(f[u]=null)):e9(u)&&(m(u,t.k)&&(u.value=null),t.k&&(c[t.k]=null))),C(a))tc(a,s,12,[o,c]);else{let t=w(a);let n=e9(a);if(t||n){let s=()=>{if(e.f){let l=t?h(a)?f[a]:c[a]:m(a)||!e.k?a.value:c[e.k];if(r)O(l)&&b(l,i);else if(O(l))l.includes(i)||l.push(i);else if(t)c[a]=[i],h(a)&&(f[a]=c[a]);else{let t=[i];m(a,e.k)&&(a.value=t),e.k&&(c[e.k]=t)}}else t?(c[a]=o,h(a)&&(f[a]=o)):n&&(m(a,e.k)&&(a.value=o),e.k&&(c[e.k]=o))};if(o){let t=()=>{s(),tH.delete(e)};t.id=-1,tH.set(e,t),lv(t,l)}else tJ(e),s()}}}function tJ(e){let t=tH.get(e);t&&(t.flags|=8,tH.delete(e))}U().requestIdleCallback,U().cancelIdleCallback;let tK=e=>!!e.type.__asyncLoader;let tY=e=>e.type.__isKeepAlive;let tX=e=>(t,l=lW)=>{lK&&\"sp\"!==e||function(e,t,l=lW,n=!1){if(l){let r=l[e]||(l[e]=[]);let i=t.__weh||(t.__weh=(...n)=>{ef();let r=lH(l);let i=tf(t,l,e,n);return r(),ep(),i});return n?r.unshift(i):r.push(i),i}}(e,(...e)=>t(...e),l)};tX(\"bm\");let tQ=tX(\"m\");tX(\"bu\"),tX(\"u\");let tZ=tX(\"bum\");tX(\"um\"),tX(\"sp\"),tX(\"rtg\"),tX(\"rtc\");let t0=Symbol.for(\"v-ndc\");let t1=e=>e?lJ(e)?lZ(e):t1(e.parent):null;let t2=_(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=>t1(e.parent),$root:e=>t1(e.root),$host:e=>e.ce,$emit:e=>e.emit,$options:e=>e.type,$forceUpdate:e=>e.f||(e.f=()=>{tx(e.update)}),$nextTick:e=>e.n||(e.n=tb.bind(e.proxy)),$watch:e=>h});let t6=(e,t)=>e!==p&&!e.__isScriptSetup&&S(e,t);let t8={get({_:e},t){let l,n;if(\"__v_skip\"===t)return!0;let{ctx:r,setupState:i,data:o,props:s,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 o[t];case 4:return r[t];case 3:return s[t]}else if(t6(i,t))return a[t]=1,i[t];else if(1)if(S(s,t))return a[t]=3,s[t];else{if(r!==p&&S(r,t))return a[t]=4,r[t];a[t]=0}}let f=t2[t];return f?(\"$attrs\"===t&&ex(e.attrs,\"get\",\"\"),f(e)):(l=u.__cssModules)&&(l=l[t])?l:r!==p&&S(r,t)?(a[t]=4,r[t]):S(n=c.config.globalProperties,t)?n[t]:void 0},set({_:e},t,l){let{data:n,setupState:r,ctx:i}=e;if(t6(r,t))return r[t]=l,!0;if(1&&S(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:o}},s){let a;return!!(l[s]||t6(t,s)||S(i,s)||S(n,s)||S(t2,s)||S(r.config.globalProperties,s)||(a=o.__cssModules)&&a[s])},defineProperty(e,t,l){return null!=l.get?e._.accessCache[t]=0:S(l,\"value\")&&this.set(e,t,l.value,null),Reflect.defineProperty(e,t,l)}};function t3(){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 t4=0;let t5=null;function t7(e,t,...l){let n;if(e.isUnmounted)return;let r=e.vnode.props||p;let i=l;let o=t.startsWith(\"update:\");let s;let a=o&&(\"modelValue\"===(s=t.slice(7))||\"model-value\"===s?r.modelModifiers:r[`${s}Modifiers`]||r[`${N(s)}Modifiers`]||r[`${M(s)}Modifiers`]);a&&(a.trim&&(i=l.map(e=>w(e)?e.trim():e)),a.number&&(i=l.map($)));let u=r[n=B(t)]||r[n=B(N(t))];!u&&o&&(u=r[n=B(M(t))]),u&&tf(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,tf(c,e,6,i)}}function t9(e,t){return!!e&&!!m(t)&&(S(e,(t=t.slice(2).replace(/Once$/,\"\"))[0].toLowerCase()+t.slice(1))||S(e,M(t))||S(e,t))}function le(e){let t,l;let{type:n,vnode:r,proxy:i,withProxy:o,propsOptions:[s],slots:a,attrs:u,emit:c,render:f,renderCache:p,props:d,data:h,setupState:g,ctx:m,inheritAttrs:_}=e;let b=tR(e);try{if(4&r.shapeFlag){let e=o||i;t=lB(f.call(e,e,p,d,g,h,m)),l=u}else t=lB(n.length>1?n(d,{attrs:u,slots:a,emit:c}):n(d,null)),l=n.props?u:lt(u)}catch(l){lC.length=0,tp(l,e,1),t=lM(lS)}let x=t;if(l&&!1!==_){let e=Object.keys(l);let{shapeFlag:t}=x;e.length&&7&t&&(s&&e.some(y)&&(l=ll(l,s)),x=lV(x,l,!1,!0))}return r.dirs&&((x=lV(x,null,!1,!0)).dirs=x.dirs?x.dirs.concat(r.dirs):r.dirs),r.transition&&tU(x,r.transition),t=x,tR(b),t}let lt=e=>{let t;for(let l in e)(\"class\"===l||\"style\"===l||m(l))&&((t||(t={}))[l]=e[l]);return t};let ll=(e,t)=>{let l={};for(let n in e)y(n)&&n.slice(9)in t||(l[n]=e[n]);return l};function ln(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(lr(t,e,i)&&!t9(l,i))return!0}return!1}function lr(e,t,l){let n=e[l];let r=t[l];return\"style\"===l&&k(n)&&k(r)?!function e(t,l){let n,r;if(t===l)return!0;let i=\"[object Date]\"===(n=t,R.call(n));let o=\"[object Date]\"===(r=l,R.call(r));if(i||o)return!!i&&!!o&&t.getTime()===l.getTime();if(i=E(t),o=E(l),i||o)return t===l;if(i=O(t),o=O(l),i||o)return!!i&&!!o&&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=k(t),o=k(l),i||o){if(!i||!o||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 li={};let lo=e=>Object.getPrototypeOf(e)===li;function ls(e,t,l,n){let r;let[i,o]=e.propsOptions;let s=!1;if(t)for(let a in t){let u;if(I(a))continue;let c=t[a];i&&S(i,u=N(a))?o&&o.includes(u)?(r||(r={}))[u]=c:l[u]=c:t9(e.emitsOptions,a)||a in n&&c===n[a]||(n[a]=c,s=!0)}if(o){let t=e4(l);let n=r||p;for(let r=0;r<o.length;r++){let s=o[r];l[s]=la(i,t,s,n[s],e,!S(n,s))}}return s}function la(e,t,l,n,r,i){let o=e[l];if(null!=o){let e=S(o,\"default\");if(e&&void 0===n){let e=o.default;if(o.type!==Function&&!o.skipFactory&&C(e)){let{propsDefaults:i}=r;if(l in i)n=i[l];else{let o=lH(r);n=i[l]=e.call(null,t),o()}}else n=e;r.ce&&r.ce._setProp(l,n)}o[0]&&(i&&!e?n=!1:o[1]&&(\"\"===n||n===M(l))&&(n=!0))}return n}function lu(e){return!(\"$\"===e[0]||I(e))}let lc=e=>\"_\"===e||\"_ctx\"===e||\"$stable\"===e;let lf=e=>O(e)?e.map(lB):[lB(e)];let lp=(e,t,l)=>{if(t._n)return t;let n=tT((...e)=>lf(t(...e)),l);return n._c=!1,n};let ld=(e,t,l)=>{let n=e._ctx;for(let l in e){if(lc(l))continue;let r=e[l];if(C(r))t[l]=lp(l,r,n);else if(null!=r){let e=lf(r);t[l]=()=>e}}};let lh=(e,t)=>{let l=lf(t);e.slots.default=()=>l};let lg=(e,t,l)=>{for(let n in t)(l||!lc(n))&&(e[n]=t[n])};let lv=function(e,t){t&&t.pendingBranch?O(e)?t.effects.push(...e):t.effects.push(e):tO(e)};function lm({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 ly({effect:e,job:t},l){l?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function l_(e){if(e)for(let t=0;t<e.length;t++)e[t].flags|=8}let lb=Symbol.for(\"v-fgt\");let lx=Symbol.for(\"v-txt\");let lS=Symbol.for(\"v-cmt\");let lO=Symbol.for(\"v-stc\");let lC=[];let lw=null;function lE(e=!1){lC.push(lw=e?null:[])}let lk=1;function lA(e,t=!1){lk+=e,e<0&&lw&&t&&(lw.hasOnce=!0)}function lR(e){return e.dynamicChildren=lk>0?lw||d:null,lC.pop(),lw=lC[lC.length-1]||null,lk>0&&lw&&lw.push(e),e}function lT(e,t,l,n,r,i){return lR(lD(e,t,l,n,r,i,!0))}function lI(e){return!!e&&!0===e.__v_isVNode}function lP(e,t){return e.type===t.type&&e.key===t.key}let lj=({key:e})=>null!=e?e:null;let lN=({ref:e,ref_key:t,ref_for:l})=>(\"number\"==typeof e&&(e=\"\"+e),null!=e?w(e)||e9(e)||C(e)?{i:tk,r:e,k:t,f:!!l}:e:null);function lD(e,t=null,l=null,n=0,r=null,i=+(e!==lb),o=!1,s=!1){let a={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&lj(t),ref:t&&lN(t),scopeId:tA,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:tk};return s?(lL(a,l),128&i&&e.normalize(a)):l&&(a.shapeFlag|=w(l)?8:16),lk>0&&!o&&lw&&(a.patchFlag>0||6&i)&&32!==a.patchFlag&&lw.push(a),a}let lM=function(e,t=null,l=null,n=0,r=null,i=!1){var o,s;if(e&&e!==t0||(e=lS),lI(e)){let n=lV(e,t,!0);return l&&lL(n,l),lk>0&&!i&&lw&&(6&n.shapeFlag?lw[lw.indexOf(e)]=n:lw.push(n)),n.patchFlag=-2,n}if(C(o=e)&&\"__vccOpts\"in o&&(e=e.__vccOpts),t){let{class:e,style:l}=t=(s=t)?e3(s)||lo(s)?_({},s):s:null;e&&!w(e)&&(t.class=q(e)),k(l)&&(e3(l)&&!O(l)&&(l=_({},l)),t.style=G(l))}let a=w(e)?1:e.__isSuspense?128:e.__isTeleport?64:k(e)?4:2*!!C(e);return lD(e,t,l,n,r,a,i,!0)};function lV(e,t,l=!1,n=!1){let{props:r,ref:i,patchFlag:o,children:s,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=q([t.class,n.class]));else if(\"style\"===e)t.style=G([t.style,n.style]);else if(m(e)){let l=t[e];let r=n[e];r&&l!==r&&!(O(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&&lj(u),ref:t&&t.ref?l&&i?O(i)?i.concat(lN(t)):[i,lN(t)]:lN(t):i,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:s,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==lb?-1===o?16:16|o:o,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:a,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&lV(e.ssContent),ssFallback:e.ssFallback&&lV(e.ssFallback),placeholder:e.placeholder,el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return a&&n&&tU(c,a.clone(c)),c}function lB(e){return null==e||\"boolean\"==typeof e?lM(lS):O(e)?lM(lb,null,e.slice()):lI(e)?lF(e):lM(lx,null,String(e))}function lF(e){return null===e.el&&-1!==e.patchFlag||e.memo?e:lV(e)}function lL(e,t){let l=0;let{shapeFlag:n}=e;if(null==t)t=null;else if(O(t))l=16;else if(\"object\"==typeof t)if(65&n){let l=t.default;l&&(l._c&&(l._d=!1),lL(e,l()),l._c&&(l._d=!0));return}else{l=32;let n=t._;n||lo(t)?3===n&&tk&&(1===tk.slots._?t._=1:(t._=2,e.patchFlag|=1024)):t._ctx=tk}else C(t)?(t={default:t,_ctx:tk},l=32):(t=String(t),64&n?(l=16,t=[function(e=\" \",t=0){return lM(lx,null,e,t)}(t)]):l=8);e.children=t,e.shapeFlag|=l}function l$(e,t,l,n=null){tf(e,t,7,[l,n])}let lU=t3();let lG=0;let lW=null;let lz=()=>lW||tk;{let e=U();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)}};o=t(\"__VUE_INSTANCE_SETTERS__\",e=>lW=e),s=t(\"__VUE_SSR_SETTERS__\",e=>lK=e)}let lH=e=>{let t=lW;return o(e),e.scope.on(),()=>{e.scope.off(),o(t)}};let lq=()=>{lW&&lW.scope.off(),o(null)};function lJ(e){return 4&e.vnode.shapeFlag}let lK=!1;function lY(e,t,l){C(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:k(t)&&(e.setupState=tr(t)),lX(e,l)}function lX(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:o}=n;n.render=a(t,_(_({isCustomElement:l,delimiters:i},r),o))}}e.render=n.render||h,u&&u(e)}}let lQ={get:(e,t)=>(ex(e,\"get\",\"\"),e[t])};function lZ(e){var t;return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(tr((!S(t=e.exposed,\"__v_skip\")&&Object.isExtensible(t)&&L(t,\"__v_skip\",!0),t)),{get:(t,l)=>l in t?t[l]:l in t2?t2[l](e):void 0,has:(e,t)=>t in e||t in t2})):e.proxy}let l0=(e,t)=>(function(e,t=!1){let l;let n;return C(e)?l=e:(l=e.get,n=e.set),new ti(l,n,t)})(e,lK);function l1(e,t,l){try{lA(-1);let n=arguments.length;if(2!==n)return n>3?l=Array.prototype.slice.call(arguments,2):3===n&&lI(l)&&(l=[l]),lM(e,t,l);if(!k(t)||O(t))return lM(e,null,t);if(lI(t))return lM(e,null,[t]);return lM(e,t)}finally{lA(1)}}let l2=[];function l6(...e){for(let t of e)l2.push(t)}let l8=!1;let l3=null;let l4=null;function l5(){return null!=l4?l4:Promise.resolve()}function l7(){l8||(l8=!0,tO(l9))}function l9(){var e,t;let l;l8=!1;let n=(l=l2,l2=[],l);if(0===n.length)return;l4=new Promise(e=>{l3=e});let r=null==lynx||null==(e=lynx.getNativeApp)?void 0:e.call(lynx);null==r||null==(t=r.callLepusMethod)||t.call(r,\"vuePatchUpdate\",{data:JSON.stringify(n)},()=>{null==l3||l3(),l3=null,l4=null})}function ne(e,t,l){return t in e?Object.defineProperty(e,t,{value:l,enumerable:!0,configurable:!0,writable:!0}):e[t]=l,e}let nt=\"__VUE_LYNX_EVENT_REGISTRY__\";function nl(){let e=globalThis;let t=e[nt];return t||Object.defineProperty(e,nt,{value:t={signCounter:0,handlers:new Map},configurable:!0,enumerable:!1,writable:!0}),t}function nn(e){let t=nl();let l=`vue:${t.signCounter++}`;return t.handlers.set(l,e),l}function nr(e){nl().handlers.delete(e)}class ni{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(){ne(this,\"lastIndex\",0),ne(this,\"map\",new Map)}}class no extends ni{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 ns(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})})}class na{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){ne(this,\"id\",void 0),ne(this,\"type\",void 0),ne(this,\"parent\",null),ne(this,\"firstChild\",null),ne(this,\"lastChild\",null),ne(this,\"prev\",null),ne(this,\"next\",null),ne(this,\"_style\",{}),ne(this,\"_vShowHidden\",!1),ne(this,\"_baseClass\",\"\"),ne(this,\"_transitionClasses\",new Set),void 0===t?this.id=na.nextId++:this.id=t,this.type=e}}ne(na,\"nextId\",2);let nu=new Set([\"flex\",\"flexGrow\",\"flexShrink\",\"flexOrder\",\"order\",\"opacity\",\"zIndex\",\"aspectRatio\",\"fontWeight\",\"lineClamp\"]);function nc(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 nf=new Map;function np(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 nd(e,t){e._transitionClasses.add(t),l6(9,e.id,np(e)),l7()}function nh(e,t){e._transitionClasses.delete(t),l6(9,e.id,np(e)),l7()}function ng(e){tO(()=>{l5().then(()=>{\"function\"==typeof requestAnimationFrame?requestAnimationFrame(e):e()})})}function nv(e,t,l){let n=\"animation\"===t?\"animationend\":\"transitionend\";let r=!1;let i=nn(t=>{r||(r=!0,nr(i),l6(7,e.id,\"bindEvent\",n),l7(),l())});l6(6,e.id,\"bindEvent\",n,i),l7()}function nm(e){return\"number\"==typeof e?{enter:e,leave:e}:e&&\"object\"==typeof e?{enter:e.enter,leave:e.leave}:{enter:0,leave:0}}function ny(e){return null!=e.duration}function n_(e,t){e&&e(...t)}tW({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=lz();let n=tB();return()=>{let r=tG(t.default?t.default():[]);let i=e.name||\"v\";let o=e.enterFromClass||`${i}-enter-from`;let s=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=t$(t,{mode:void 0,appear:!n.isMounted&&!!e.appear,persisted:!1,onBeforeEnter(t){n_(e.onBeforeEnter,[t]),nd(t,o),nd(t,s)},onEnter(t,l){ng(()=>{nh(t,o),nd(t,a),ny(e)?setTimeout(l,nm(e.duration).enter):nv(t,e.type,l)}),n_(e.onEnter,[t,l])},onAfterEnter(t){nh(t,s),nh(t,a),n_(e.onAfterEnter,[t])},onEnterCancelled(t){nh(t,o),nh(t,s),nh(t,a),n_(e.onEnterCancelled,[t])},onBeforeLeave(t){n_(e.onBeforeLeave,[t]),nd(t,u),nd(t,c)},onLeave(t,l){ng(()=>{nh(t,u),nd(t,f),ny(e)?setTimeout(l,nm(e.duration).leave):nv(t,e.type,l)}),n_(e.onLeave,[t,l])},onAfterLeave(t){nh(t,c),nh(t,f),n_(e.onAfterLeave,[t])},onLeaveCancelled(t){nh(t,u),nh(t,c),nh(t,f),n_(e.onLeaveCancelled,[t])}},n,l);tU(t,r)}return l1(e.tag,null,r)}}});let nb=function(e){var t;let l,n;U().__VUE__=!0;let{insert:r,remove:i,patchProp:o,createElement:a,createText:u,createComment:c,setText:f,setElementText:g,parentNode:m,nextSibling:y,setScopeId:b=h,insertStaticContent:x}=e;let w=(e,t,l,n=null,r=null,i=null,o,s=null,a=!!t.dynamicChildren)=>{if(e===t)return;e&&!lP(e,t)&&(n=es(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 lx:E(e,t,l,n);break;case lS:R(e,t,l,n);break;case lO:null==e&&T(t,l,n,o);break;case lb:W(e,t,l,n,r,i,o,s,a);break;default:1&f?P(e,t,l,n,r,i,o,s,a):6&f?z(e,t,l,n,r,i,o,s,a):(64&f||128&f)&&u.process(e,t,l,n,r,i,o,s,a,ec)}null!=c&&r?tq(c,e&&e.ref,i,t||e,!t):null==c&&e&&null!=e.ref&&tq(e.ref,null,i,e,!0)};let E=(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 R=(e,t,l,n)=>{null==e?r(t.el=c(t.children||\"\"),l,n):t.el=e.el};let T=(e,t,l,n)=>{[e.el,e.anchor]=x(e.children,t,l,n,e.el,e.anchor)};let P=(e,t,l,n,r,i,o,s,a)=>{if(\"svg\"===t.type?o=\"svg\":\"math\"===t.type&&(o=\"mathml\"),null==e)j(t,l,n,r,i,o,s,a);else{let l=e.el&&e.el._isVueCE?e.el:null;try{l&&l._beginPatch(),B(e,t,r,i,o,s,a)}finally{l&&l._endPatch()}}};let j=(e,t,l,n,i,s,u,c)=>{var f,p;let d;let h;let{props:m,shapeFlag:y,transition:_,dirs:b}=e;if(d=e.el=a(e.type,s,m&&m.is,m),8&y?g(d,e.children):16&y&&V(e.children,d,null,n,i,lm(e,s),u,c),b&&tI(e,null,n,\"created\"),D(d,e,e.scopeId,u,n),m){for(let e in m)\"value\"===e||I(e)||o(d,e,null,m[e],s,n);\"value\"in m&&o(d,\"value\",null,m.value,s),(h=m.onVnodeBeforeMount)&&l$(h,n,e)}b&&tI(e,null,n,\"beforeMount\");let x=(f=i,p=_,(!f||f&&!f.pendingBranch)&&p&&!p.persisted);x&&_.beforeEnter(d),r(d,t,l),((h=m&&m.onVnodeMounted)||x||b)&&lv(()=>{h&&l$(h,n,e),x&&_.enter(d),b&&tI(e,null,n,\"mounted\")},i)};let D=(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;D(e,t,t.scopeId,t.slotScopeIds,r.parent)}}};let V=(e,t,l,n,r,i,o,s,a=0)=>{for(let u=a;u<e.length;u++)w(null,e[u]=s?lF(e[u]):lB(e[u]),t,l,n,r,i,o,s)};let B=(e,t,l,n,r,i,s)=>{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 m=t.props||p;if(l&&ly(l,!1),(a=m.onVnodeBeforeUpdate)&&l$(a,l,t,e),d&&tI(t,e,l,\"beforeUpdate\"),l&&ly(l,!0),(h.innerHTML&&null==m.innerHTML||h.textContent&&null==m.textContent)&&g(u,\"\"),f?$(e.dynamicChildren,f,u,l,n,lm(t,r),i):s||Y(e,t,u,null,l,n,lm(t,r),i,!1),c>0){if(16&c)G(u,h,m,l,r);else if(2&c&&h.class!==m.class&&o(u,\"class\",null,m.class,r),4&c&&o(u,\"style\",h.style,m.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 s=m[n];(s!==i||\"value\"===n)&&o(u,n,i,s,r,l)}}1&c&&e.children!==t.children&&g(u,t.children)}else s||null!=f||G(u,h,m,l,r);((a=m.onVnodeUpdated)||d)&&lv(()=>{a&&l$(a,l,t,e),d&&tI(t,e,l,\"updated\")},n)};let $=(e,t,l,n,r,i,o)=>{for(let s=0;s<t.length;s++){let a=e[s];let u=t[s];let c=a.el&&(a.type===lb||!lP(a,u)||198&a.shapeFlag)?m(a.el):l;w(a,u,c,null,n,r,i,o,!0)}};let G=(e,t,l,n,r)=>{if(t!==l){if(t!==p)for(let i in t)I(i)||i in l||o(e,i,t[i],null,r,n);for(let i in l){if(I(i))continue;let s=l[i];let a=t[i];s!==a&&\"value\"!==i&&o(e,i,a,s,r,n)}\"value\"in l&&o(e,\"value\",t.value,l.value,r)}};let W=(e,t,l,n,i,o,s,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),V(t.children||[],l,p,i,o,s,a,c)):d>0&&64&d&&h&&e.dynamicChildren&&e.dynamicChildren.length===h.length?($(e.dynamicChildren,h,l,i,o,s,a),(null!=t.key||i&&t===i.subTree)&&function e(t,l,n=!1){let r=t.children;let i=l.children;if(O(r)&&O(i))for(let t=0;t<r.length;t++){let l=r[t];let o=i[t];1&o.shapeFlag&&!o.dynamicChildren&&((o.patchFlag<=0||32===o.patchFlag)&&((o=i[t]=lF(i[t])).el=l.el),n||-2===o.patchFlag||e(l,o)),o.type===lx&&(-1===o.patchFlag&&(o=i[t]=lF(o)),o.el=l.el),o.type!==lS||o.el||(o.el=l.el)}}(e,t,!0)):Y(e,t,l,p,i,o,s,a,c)};let z=(e,t,l,n,r,i,o,s,a)=>{t.slotScopeIds=s,null==e?512&t.shapeFlag?r.ctx.activate(t,l,n,o,a):H(t,l,n,r,i,o,a):q(e,t,a)};let H=(e,t,l,n,r,i,o)=>{var a,u,c;let f,h,g;let m=(a=e,u=n,c=r,f=a.type,h=(u?u.appContext:a.appContext)||lU,(g={uid:lG++,vnode:a,type:f,parent:u,appContext:h,root:null,next:null,subTree:null,effect:null,update:null,job:null,scope:new Q(!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 o=[];if(!r)return k(e)&&l.set(e,d),d;if(O(r))for(let e=0;e<r.length;e++){let t=N(r[e]);lu(t)&&(i[t]=p)}else if(r)for(let e in r){let t=N(e);if(lu(t)){let l=r[e];let n=i[t]=O(l)||C(l)?{type:l}:_({},l);let s=n.type;let a=!1;let u=!0;if(O(s))for(let e=0;e<s.length;++e){let t=s[e];let l=C(t)&&t.name;if(\"Boolean\"===l){a=!0;break}\"String\"===l&&(u=!1)}else a=C(s)&&\"Boolean\"===s.name;n[0]=a,n[1]=u,(a||S(n,\"default\"))&&o.push(t)}}let s=[i,o];return k(e)&&l.set(e,s),s}(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?(O(r)?r.forEach(e=>i[e]=null):_(i,r),k(e)&&l.set(e,i),i):(k(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=t7.bind(null,g),a.ce&&a.ce(g),e.component=g);if(tY(e)&&(m.ctx.renderer=ec),function(e,t=!1,l=!1){t&&s(t);let{props:n,children:r}=e.vnode;let i=lJ(e);(function(e,t,l,n=!1){let r={};let i=Object.create(li);for(let l in e.propsDefaults=Object.create(null),ls(e,t,r,i),e.propsOptions[0])l in r||(r[l]=void 0);l?e.props=n?r:eZ(r):e.type.props?e.props=r:e.props=i,e.attrs=i})(e,n,i,t);var o=l||t;let a=e.slots=Object.create(li);if(32&e.vnode.shapeFlag){let e=r._;e?(lg(a,r,o),o&&L(a,\"_\",e,!0)):ld(r,a)}else r&&lh(e,r);let u=i?function(e,t){let l=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,t8);let{setup:n}=l;if(n){var r;ef();let l=e.setupContext=n.length>1?{attrs:new Proxy((r=e).attrs,lQ),slots:r.slots,emit:r.emit,expose:e=>{r.exposed=e||{}}}:null;let i=lH(e);let o=tc(n,e,0,[e.props,l]);let s=A(o);if(ep(),i(),(s||e.sp)&&!tK(e)&&(e.ids=[e.ids[0]+e.ids[2]+++\"-\",0,0]),s){if(o.then(lq,lq),t)return o.then(l=>{lY(e,l,t)}).catch(t=>{tp(t,e,0)});e.asyncDep=o}else lY(e,o,t)}else lX(e,t)}(e,t):void 0;return t&&s(!1),u}(m,!1,o),m.asyncDep){if(r&&r.registerDep(m,J,o),!e.el){let n=m.subTree=lM(lS);R(null,n,t,l),e.placeholder=n.el}}else J(m,e,t,l,r,i,o)};let q=(e,t,l)=>{let n=t.component=e.component;if(function(e,t,l){let{props:n,children:r,component:i}=e;let{props:o,children:s,patchFlag:a}=t;let u=i.emitsOptions;if(t.dirs||t.transition)return!0;if(!l||!(a>=0))return(!!r||!!s)&&(!s||!s.$stable)||n!==o&&(n?!o||ln(n,o,u):!!o);if(1024&a)return!0;if(16&a)return n?ln(n,o,u):!!o;if(8&a){let e=t.dynamicProps;for(let t=0;t<e.length;t++){let l=e[t];if(lr(o,n,l)&&!t9(u,l))return!0}}return!1}(e,t,l))if(n.asyncDep&&!n.asyncResolved)return void K(n,t,l);else n.next=t,n.update();else t.el=e.el,n.vnode=t};let J=(e,t,l,r,i,o,s)=>{e.scope.on();let a=e.effect=new ee(()=>{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,K(e,l,s)),t.asyncDep.then(()=>{lv(()=>{e.isUnmounted||u()},i)});return}}let f=l;ly(e,!1),l?(l.el=c.el,K(e,l,s)):l=c,n&&F(n),(t=l.props&&l.props.onVnodeBeforeUpdate)&&l$(t,a,l,c),ly(e,!0);let p=le(e);let d=e.subTree;e.subTree=p,w(d,p,m(d.el),es(d),e,i,o),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&&lv(r,i),(t=l.props&&l.props.onVnodeUpdated)&&lv(()=>l$(t,a,l,c),i)}else{let s;let{el:a,props:u}=t;let{bm:c,m:f,parent:p,root:d,type:h}=e;let g=tK(t);if(ly(e,!1),c&&F(c),!g&&(s=u&&u.onVnodeBeforeMount)&&l$(s,p,t),ly(e,!0),a&&n){let t=()=>{e.subTree=le(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=le(e);w(null,n,l,r,e,i,o),t.el=n.el}if(f&&lv(f,i),!g&&(s=u&&u.onVnodeMounted)){let e=t;lv(()=>l$(s,p,e),i)}(256&t.shapeFlag||p&&tK(p.vnode)&&256&p.vnode.shapeFlag)&&e.a&&lv(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=()=>tx(c),ly(e,!0),u()};let K=(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:o}}=e;let s=e4(r);let[a]=e.propsOptions;let u=!1;if((n||o>0)&&!(16&o)){if(8&o){let l=e.vnode.dynamicProps;for(let n=0;n<l.length;n++){let o=l[n];if(t9(e.emitsOptions,o))continue;let c=t[o];if(a)if(S(i,o))c!==i[o]&&(i[o]=c,u=!0);else{let t=N(o);r[t]=la(a,s,t,c,e,!1)}else c!==i[o]&&(i[o]=c,u=!0)}}}else{let n;for(let o in ls(e,t,r,i)&&(u=!0),s)t&&(S(t,o)||(n=M(o))!==o&&S(t,n))||(a?l&&(void 0!==l[o]||void 0!==l[n])&&(r[o]=la(a,s,o,void 0,e,!0)):delete r[o]);if(i!==s)for(let e in i)t&&S(t,e)||(delete i[e],u=!0)}u&&eS(e.attrs,\"set\",\"\")}(e,t.props,n,l),((e,t,l)=>{let{vnode:n,slots:r}=e;let i=!0;let o=p;if(32&n.shapeFlag){let e=t._;e?l&&1===e?i=!1:lg(r,t,l):(i=!t.$stable,ld(t,r)),o=t}else t&&(lh(e,t),o={default:1});if(i)for(let e in r)lc(e)||null!=o[e]||delete r[e]})(e,t.children,l),ef(),tC(e),ep()};let Y=(e,t,l,n,r,i,o,s,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 Z(u,f,l,n,r,i,o,s,a);else if(256&p)return void X(u,f,l,n,r,i,o,s,a)}8&d?(16&c&&eo(u,r,i),f!==u&&g(l,f)):16&c?16&d?Z(u,f,l,n,r,i,o,s,a):eo(u,r,i,!0):(8&c&&g(l,\"\"),16&d&&V(f,l,n,r,i,o,s,a))};let X=(e,t,l,n,r,i,o,s,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?lF(t[u]):lB(t[u]);w(e[u],n,l,null,r,i,o,s,a)}c>f?eo(e,r,i,!0,!1,p):V(t,l,n,r,i,o,s,a,p)};let Z=(e,t,l,n,r,i,o,s,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?lF(t[u]):lB(t[u]);if(lP(n,c))w(n,c,l,null,r,i,o,s,a);else break;u++}for(;u<=f&&u<=p;){let n=e[f];let u=t[p]=a?lF(t[p]):lB(t[p]);if(lP(n,u))w(n,u,l,null,r,i,o,s,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;)w(null,t[u]=a?lF(t[u]):lB(t[u]),l,f,r,i,o,s,a),u++}}else if(u>p)for(;u<=f;)el(e[u],r,i,!0),u++;else{let h;let g=u;let m=u;let y=new Map;for(u=m;u<=p;u++){let e=t[u]=a?lF(t[u]):lB(t[u]);null!=e.key&&y.set(e.key,u)}let _=0;let b=p-m+1;let x=!1;let S=0;let O=Array(b);for(u=0;u<b;u++)O[u]=0;for(u=g;u<=f;u++){let n;let c=e[u];if(_>=b){el(c,r,i,!0);continue}if(null!=c.key)n=y.get(c.key);else for(h=m;h<=p;h++)if(0===O[h-m]&&lP(c,t[h])){n=h;break}void 0===n?el(c,r,i,!0):(O[n-m]=u+1,n>=S?S=n:x=!0,w(c,t[n],l,null,r,i,o,s,a),_++)}let C=x?function(e){let t,l,n,r,i;let o=e.slice();let s=[0];let a=e.length;for(t=0;t<a;t++){let a=e[t];if(0!==a){if(e[l=s[s.length-1]]<a){o[t]=l,s.push(t);continue}for(n=0,r=s.length-1;n<r;)e[s[i=n+r>>1]]<a?n=i+1:r=i;a<e[s[n]]&&(n>0&&(o[t]=s[n-1]),s[n]=t)}}for(n=s.length,r=s[n-1];n-- >0;)s[n]=r,r=o[r];return s}(O):d;for(h=C.length-1,u=b-1;u>=0;u--){let e=m+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===O[u]?w(null,f,l,d,r,i,o,s,a):x&&(h<0||u!==C[h]?et(f,l,d,2):h--)}}};let et=(e,t,l,n,o=null)=>{let{el:s,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,ec);if(a===lb){r(s,t,l);for(let e=0;e<c.length;e++)et(c[e],t,l,n);r(e.anchor,t,l);return}if(a===lO)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(s),r(s,t,l),lv(()=>u.enter(s),o);else{let{leave:n,delayLeave:o,afterLeave:a}=u;let c=()=>{e.ctx.isUnmounted?i(s):r(s,t,l)};let f=()=>{s._isLeaving&&s[tM](!0),n(s,()=>{c(),a&&a()})};o?o(s,c,f):f()}else r(s,t,l)};let el=(e,t,l,n=!1,r=!1)=>{let i;let{type:o,props:s,ref:a,children:u,dynamicChildren:c,shapeFlag:f,patchFlag:p,dirs:d,cacheIndex:h}=e;if(-2===p&&(r=!1),null!=a&&(ef(),tq(a,null,l,e,!0),ep()),null!=h&&(t.renderCache[h]=void 0),256&f)return void t.ctx.deactivate(e);let g=1&f&&d;let m=!tK(e);if(m&&(i=s&&s.onVnodeBeforeUnmount)&&l$(i,t,e),6&f)ei(e.component,l,n);else{if(128&f)return void e.suspense.unmount(l,n);g&&tI(e,null,t,\"beforeUnmount\"),64&f?e.type.remove(e,t,l,ec,n):c&&!c.hasOnce&&(o!==lb||p>0&&64&p)?eo(c,t,l,!1,!0):(o===lb&&384&p||!r&&16&f)&&eo(u,t,l),n&&en(e)}(m&&(i=s&&s.onVnodeUnmounted)||g)&&lv(()=>{i&&l$(i,t,e),g&&tI(e,null,t,\"unmounted\")},l)};let en=e=>{let{type:t,el:l,anchor:n,transition:r}=e;if(t===lb)return void er(l,n);if(t===lO)return void(({el:e,anchor:t})=>{let l;for(;e&&e!==t;)l=y(e),i(e),e=l;i(t)})(e);let o=()=>{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,o);n?n(e.el,o,i):i()}else o()};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:o,um:s,m:a,a:u}=e;l_(a),l_(u),n&&F(n),r.stop(),i&&(i.flags|=8,el(o,e,t,l)),s&&lv(s,t),lv(()=>{e.isUnmounted=!0},t)};let eo=(e,t,l,n=!1,r=!1,i=0)=>{for(let o=i;o<e.length;o++)el(e[o],t,l,n,r)};let es=e=>{if(6&e.shapeFlag)return es(e.component.subTree);if(128&e.shapeFlag)return e.suspense.next();let t=y(e.anchor||e.el);let l=t&&t[tD];return l?y(l):t};let ea=!1;let eu=(e,t,l)=>{let n;null==e?t._vnode&&(el(t._vnode,null,null,!0),n=t._vnode.component):w(t._vnode||null,e,t,null,null,null,l),t._vnode=e,ea||(ea=!0,tC(n),tw(),ea=!1)};let ec={p:w,um:el,m:et,r:en,mt:H,mc:V,pc:Y,pbc:$,n:es,o:e};return{render:eu,hydrate:l,createApp:(t=l,function(e,l=null){C(e)||(e=_({},e)),null==l||k(l)||(l=null);let n=t3();let r=new WeakSet;let i=[];let o=!1;let s=n.app={_uid:t4++,_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&&C(e.install)?(r.add(e),e.install(s,...t)):C(e)&&(r.add(e),e(s,...t))),s),mixin:e=>s,component:(e,t)=>t?(n.components[e]=t,s):n.components[e],directive:(e,t)=>t?(n.directives[e]=t,s):n.directives[e],mount(r,i,a){if(o);else{let u=s._ceVNode||lM(e,l);return u.appContext=n,!0===a?a=\"svg\":!1===a&&(a=void 0),i&&t?t(u,r):eu(u,r,a),o=!0,s._container=r,r.__vue_app__=s,lZ(u.component)}},onUnmount(e){i.push(e)},unmount(){o&&(tf(i,s._instance,16),eu(null,s._container),delete s._container.__vue_app__)},provide:(e,t)=>(n.provides[e]=t,s),runWithContext(e){let t=t5;t5=s;try{return e()}finally{t5=t}}};return s})}}({createElement(e){let t=new na(e);return l6(0,t.id,e),l7(),t},createText(e){let t=new na(\"#text\");return l6(1,t.id),e&&l6(5,t.id,e),l7(),t},createComment(e){let t=new na(\"#comment\");return l6(0,t.id,\"__comment\"),l7(),t},setText(e,t){l6(5,e.id,t),l7()},setElementText(e,t){for(;e.firstChild;){let t=e.firstChild;e.removeChild(t),l6(3,e.id,t.id)}l6(5,e.id,t),l7()},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;l6(2,t.id,e.id,r),l7()},remove(e){if(e.parent){let t=e.parent.id;e.parent.removeChild(e),l6(3,t,e.id),l7()}},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&&l6(12,e.id,n.toJSON());else{let t=nc(l);t&&null!=n?(c||(c=new no,lynx.getCoreContext().addEventListener(\"Lynx.Worklet.runOnBackground\",ns)),c.add(n),l6(11,e.id,t.type,t.name,n)):t&&l6(7,e.id,t.type,t.name)}l7();return}let o=nc(t);if(o){let l=nf.get(e.id);let r=null==l?void 0:l.get(t);if(null!=n)if(r)nl().handlers.set(r,n);else{let r=nn(n);l||(l=new Map,nf.set(e.id,l)),l.set(t,r),l6(6,e.id,o.type,o.name,r)}else r&&(nr(r),l.delete(t),l6(7,e.id,o.type,o.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||nu.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){ne(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;l6(8,e.id,l)}else\"class\"===t?(e._baseClass=null!=n?n:\"\",l6(9,e.id,np(e))):\"id\"===t?l6(10,e.id,n):l6(4,e.id,t,n);l7()},parentNode:e=>e.parent,nextSibling:e=>e.next}).createApp;Symbol.for(\"v-stc\");let nx=\"u\">typeof document;function nS(e){return\"object\"==typeof e||\"displayName\"in e||\"props\"in e||\"__vccOpts\"in e}let nO=Object.assign;function nC(e,t){let l={};for(let n in t){let r=t[n];l[n]=nE(r)?r.map(e):e(r)}return l}let nw=()=>{};let nE=Array.isArray;function nk(e,t){let l={};for(let n in e)l[n]=n in t?t[n]:e[n];return l}let nA=/#/g;let nR=/&/g;let nT=/\\//g;let nI=/=/g;let nP=/\\?/g;let nj=/\\+/g;let nN=/%5B/g;let nD=/%5D/g;let nM=/%5E/g;let nV=/%60/g;let nB=/%7B/g;let nF=/%7C/g;let nL=/%7D/g;let n$=/%20/g;function nU(e){return null==e?\"\":encodeURI(\"\"+e).replace(nF,\"|\").replace(nN,\"[\").replace(nD,\"]\")}function nG(e){return nU(e).replace(nj,\"%2B\").replace(n$,\"+\").replace(nA,\"%23\").replace(nR,\"%26\").replace(nV,\"`\").replace(nB,\"{\").replace(nL,\"}\").replace(nM,\"^\")}function nW(e){return nU(e).replace(nA,\"%23\").replace(nP,\"%3F\").replace(nT,\"%2F\")}function nz(e){if(null==e)return null;try{return decodeURIComponent(\"\"+e)}catch(e){}return\"\"+e}let nH=/\\/$/;function nq(e,t,l=\"/\"){let n,r={},i=\"\",o=\"\";let s=t.indexOf(\"#\");let a=t.indexOf(\"?\");return(a=s>=0&&a>s?-1:a)>=0&&(n=t.slice(0,a),r=e((i=t.slice(a,s>0?s:t.length)).slice(1))),s>=0&&(n=n||t.slice(0,s),o=t.slice(s,t.length)),{fullPath:(n=function(e,t){let l,n;if(e.startsWith(\"/\"))return e;if(!e)return t;let r=t.split(\"/\");let i=e.split(\"/\");let o=i[i.length-1];(\"..\"===o||\".\"===o)&&i.push(\"\");let s=r.length-1;for(l=0;l<i.length;l++)if(\".\"!==(n=i[l]))if(\"..\"===n)s>1&&s--;else break;return r.slice(0,s).join(\"/\")+\"/\"+i.slice(l).join(\"/\")}(null!=n?n:t,l))+i+o,path:n,query:r,hash:nz(o)}}function nJ(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function nK(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(var l in e){var n,r;if(n=e[l],r=t[l],nE(n)?!nY(n,r):nE(r)?!nY(r,n):(null==n?void 0:n.valueOf())!==(null==r?void 0:r.valueOf()))return!1}return!0}function nY(e,t){return nE(t)?e.length===t.length&&e.every((e,l)=>e===t[l]):1===e.length&&e[0]===t}let nX={path:\"/\",name:void 0,params:{},query:{},hash:\"\",fullPath:\"/\",matched:[],meta:{},redirectedFrom:void 0};let nQ=((rc={}).pop=\"pop\",rc.push=\"push\",rc);let nZ=((rf={}).back=\"back\",rf.forward=\"forward\",rf.unknown=\"\",rf);let n0=/^[^#]+#/;function n1(e,t){return e.replace(n0,\"#\")+t}function n2(e,t){return(history.state?history.state.position-t:-1)+e}let n6=new Map;function n8(e){return\"string\"==typeof e||\"symbol\"==typeof e}let n3=((rp={})[rp.MATCHER_NOT_FOUND=1]=\"MATCHER_NOT_FOUND\",rp[rp.NAVIGATION_GUARD_REDIRECT=2]=\"NAVIGATION_GUARD_REDIRECT\",rp[rp.NAVIGATION_ABORTED=4]=\"NAVIGATION_ABORTED\",rp[rp.NAVIGATION_CANCELLED=8]=\"NAVIGATION_CANCELLED\",rp[rp.NAVIGATION_DUPLICATED=16]=\"NAVIGATION_DUPLICATED\",rp);let n4=Symbol(\"\");function n5(e,t){return nO(Error(),{type:e,[n4]:!0},t)}function n7(e,t){return e instanceof Error&&n4 in e&&(null==t||!!(e.type&t))}n3.MATCHER_NOT_FOUND,n3.NAVIGATION_GUARD_REDIRECT,n3.NAVIGATION_ABORTED,n3.NAVIGATION_CANCELLED,n3.NAVIGATION_DUPLICATED;function n9(e){let t={};if(\"\"===e||\"?\"===e)return t;let l=(\"?\"===e[0]?e.slice(1):e).split(\"&\");for(let e=0;e<l.length;++e){let n=l[e].replace(nj,\" \");let r=n.indexOf(\"=\");let i=nz(r<0?n:n.slice(0,r));let o=r<0?null:nz(n.slice(r+1));if(i in t){let e=t[i];nE(e)||(e=t[i]=[e]),e.push(o)}else t[i]=o}return t}function re(e){let t=\"\";for(let l in e){let n=e[l];if(l=nG(l).replace(nI,\"%3D\"),null==n){void 0!==n&&(t+=(t.length?\"&\":\"\")+l);continue}(nE(n)?n.map(e=>e&&nG(e)):[n&&nG(n)]).forEach(e=>{void 0!==e&&(t+=(t.length?\"&\":\"\")+l,null!=e&&(t+=\"=\"+e))})}return t}let rt=Symbol(\"\");let rl=Symbol(\"\");let rn=Symbol(\"\");let rr=Symbol(\"\");let ri=Symbol(\"\");function ro(){let e=[];return{add:function(t){return e.push(t),()=>{let l=e.indexOf(t);l>-1&&e.splice(l,1)}},list:()=>e.slice(),reset:function(){e=[]}}}function rs(e,t,l,n,r,i=e=>e()){let o=n&&(n.enterCallbacks[r]=n.enterCallbacks[r]||[]);return()=>new Promise((s,a)=>{let u=e=>{if(!1===e)a(n5(n3.NAVIGATION_ABORTED,{from:l,to:t}));else if(e instanceof Error)a(e);else\"string\"==typeof e||e&&\"object\"==typeof e?a(n5(n3.NAVIGATION_GUARD_REDIRECT,{from:t,to:e})):(o&&n.enterCallbacks[r]===o&&\"function\"==typeof e&&o.push(e),s())};let c=Promise.resolve(i(()=>e.call(n&&n.instances[r],t,l,u)));e.length<3&&(c=c.then(u)),c.catch(e=>a(e))})}function ra(e,t,l,n,r=e=>e()){let i=[];for(let o of e)for(let e in o.components){let s=o.components[e];if(\"beforeRouteEnter\"===t||o.instances[e])if(nS(s)){let a=(s.__vccOpts||s)[t];a&&i.push(rs(a,l,n,o,e,r))}else{let a=s();i.push(()=>a.then(i=>{if(!i)throw Error(`Couldn't resolve component \"${e}\" at \"${o.path}\"`);let s=i.__esModule||\"Module\"===i[Symbol.toStringTag]||i.default&&nS(i.default)?i.default:i;o.mods[e]=i,o.components[e]=s;let a=(s.__vccOpts||s)[t];return a&&rs(a,l,n,o,e,r)()}))}}return i}let ru=((rd={})[rd.Static=0]=\"Static\",rd[rd.Param=1]=\"Param\",rd[rd.Group=2]=\"Group\",rd);var rc,rf,rp,rd,rh,rg,rv=((rh=rv||{})[rh.Static=0]=\"Static\",rh[rh.Param=1]=\"Param\",rh[rh.ParamRegExp=2]=\"ParamRegExp\",rh[rh.ParamRegExpEnd=3]=\"ParamRegExpEnd\",rh[rh.EscapeNext=4]=\"EscapeNext\",rh);let rm={type:ru.Static,value:\"\"};let ry=/[a-zA-Z0-9_]/;let r_=\"[^/]+?\";let rb={sensitive:!1,strict:!1,start:!0,end:!0};var rx=((rg=rx||{})[rg._multiplier=10]=\"_multiplier\",rg[rg.Root=90]=\"Root\",rg[rg.Segment=40]=\"Segment\",rg[rg.SubSegment=30]=\"SubSegment\",rg[rg.Static=40]=\"Static\",rg[rg.Dynamic=20]=\"Dynamic\",rg[rg.BonusCustomRegExp=10]=\"BonusCustomRegExp\",rg[rg.BonusWildcard=-50]=\"BonusWildcard\",rg[rg.BonusRepeatable=-20]=\"BonusRepeatable\",rg[rg.BonusOptional=-8]=\"BonusOptional\",rg[rg.BonusStrict=.7000000000000001]=\"BonusStrict\",rg[rg.BonusCaseSensitive=.25]=\"BonusCaseSensitive\",rg);let rS=/[.+*?^${}()[\\]/\\\\]/g;function rO(e,t){let l=0;let n=e.score;let r=t.score;for(;l<n.length&&l<r.length;){let e=function(e,t){let l=0;for(;l<e.length&&l<t.length;){let n=t[l]-e[l];if(n)return n;l++}return e.length<t.length?1===e.length&&e[0]===rx.Static+rx.Segment?-1:1:e.length>t.length?1===t.length&&t[0]===rx.Static+rx.Segment?1:-1:0}(n[l],r[l]);if(e)return e;l++}if(1===Math.abs(r.length-n.length)){if(rC(n))return 1;if(rC(r))return -1}return r.length-n.length}function rC(e){let t=e[e.length-1];return e.length>0&&t[t.length-1]<0}let rw={strict:!1,end:!0,sensitive:!1};function rE(e,t){let l={};for(let n of t)n in e&&(l[n]=e[n]);return l}function rk(e){let t={path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:e.aliasOf,beforeEnter:e.beforeEnter,props:function(e){let t={};let l=e.props||!1;if(\"component\"in e)t.default=l;else for(let n in e.components)t[n]=\"object\"==typeof l?l[n]:l;return t}(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:\"components\"in e?e.components||null:e.component&&{default:e.component}};return Object.defineProperty(t,\"mods\",{value:{}}),t}function rA(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function rR({record:e}){return!!(e.name||e.components&&Object.keys(e.components).length||e.redirect)}function rT(e){let t=tj(rn);let l=tj(rr);let n=l0(()=>{let l=tl(e.to);return t.resolve(l)});let r=l0(()=>{let{matched:e}=n.value;let{length:t}=e;let r=e[t-1];let i=l.matched;if(!r||!i.length)return -1;let o=i.findIndex(nJ.bind(null,r));if(o>-1)return o;let s=rP(e[t-2]);return t>1&&rP(r)===s&&i[i.length-1].path!==s?i.findIndex(nJ.bind(null,e[t-2])):o});let i=l0(()=>r.value>-1&&function(e,t){for(let l in t){let n=t[l];let r=e[l];if(\"string\"==typeof n){if(n!==r)return!1}else if(!nE(r)||r.length!==n.length||n.some((e,t)=>e.valueOf()!==r[t].valueOf()))return!1}return!0}(l.params,n.value.params));let o=l0(()=>r.value>-1&&r.value===l.matched.length-1&&nK(l.params,n.value.params));return{route:n,href:l0(()=>n.value.href),isActive:i,isExactActive:o,navigate:function(l={}){if(function(e){if(!e.metaKey&&!e.altKey&&!e.ctrlKey&&!e.shiftKey&&!e.defaultPrevented&&(void 0===e.button||0===e.button)){if(e.currentTarget&&e.currentTarget.getAttribute){let t=e.currentTarget.getAttribute(\"target\");if(/\\b_blank\\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}(l)){let l=t[tl(e.replace)?\"replace\":\"push\"](tl(e.to)).catch(nw);return e.viewTransition&&\"u\">typeof document&&\"startViewTransition\"in document&&document.startViewTransition(()=>l),l}return Promise.resolve()}}}let rI=tW({name:\"RouterLink\",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:\"page\"},viewTransition:Boolean},useLink:rT,setup(e,{slots:t}){let l=eQ(rT(e));let{options:n}=tj(rn);let r=l0(()=>({[rj(e.activeClass,n.linkActiveClass,\"router-link-active\")]:l.isActive,[rj(e.exactActiveClass,n.linkExactActiveClass,\"router-link-exact-active\")]:l.isExactActive}));return()=>{var n;let i=t.default&&(1===(n=t.default(l)).length?n[0]:n);return e.custom?i:l1(\"a\",{\"aria-current\":l.isExactActive?e.ariaCurrentValue:null,href:l.href,onClick:l.navigate,class:r.value},i)}}});function rP(e){return e?e.aliasOf?e.aliasOf.path:e.path:\"\"}let rj=(e,t,l)=>null!=e?e:null!=t?t:l;let rN=tW({name:\"RouterView\",inheritAttrs:!1,props:{name:{type:String,default:\"default\"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){let r=tj(ri);let i=l0(()=>e.route||r.value);let o=tj(rl,0);let s=l0(()=>{let e,t=tl(o);let{matched:l}=i.value;for(;(e=l[t])&&!e.components;)t++;return t});let a=l0(()=>i.value.matched[s.value]);tP(rl,l0(()=>s.value+1)),tP(rt,a),tP(ri,i);let u=te(void 0,!1);return function(e,t,n=p){let r;let{immediate:i,deep:o,flush:s,once:a}=n;let u=_({},n);let c=t&&i||!t&&\"post\"!==s;if(lK){if(\"sync\"===s){let e=tj(tN);r=e.__watcherHandles||(e.__watcherHandles=[])}else if(!c){let e=()=>{};return e.stop=h,e.resume=h,e.pause=h,e}}let f=lW;u.call=(e,t,l)=>tf(e,f,t,l);let d=!1;\"post\"===s?u.scheduler=e=>{lv(e,f&&f.suspense)}:\"sync\"!==s&&(d=!0,u.scheduler=(e,t)=>{t?e():tx(e)}),u.augmentJob=e=>{t&&(e.flags|=4),d&&(e.flags|=2,f&&(e.id=f.uid,e.i=f))};let g=function(e,t,n=p){let r,i,o,s;let{immediate:a,deep:u,once:c,scheduler:f,augmentJob:d,call:g}=n;let m=e=>u?e:e8(e)||!1===u||0===u?tu(e,1):tu(e);let y=!1;let _=!1;if(e9(e)?(i=()=>e.value,y=e8(e)):e2(e)?(i=()=>m(e),y=!0):O(e)?(_=!0,y=e.some(e=>e2(e)||e8(e)),i=()=>e.map(e=>e9(e)?e.value:e2(e)?m(e):C(e)?g?g(e,2):e():void 0)):i=C(e)?t?g?()=>g(e,2):e:()=>{if(o){ef();try{o()}finally{ep()}}let t=ta;ta=r;try{return g?g(e,3,[s]):e(s)}finally{ta=t}}:h,t&&u){let e=i;let t=!0===u?1/0:u;i=()=>tu(e(),t)}let x=l;let S=()=>{r.stop(),x&&x.active&&b(x.effects,r)};if(c&&t){let e=t;t=(...t)=>{e(...t),S()}}let w=_?Array(e.length).fill(to):to;let E=e=>{if(1&r.flags&&(r.dirty||e))if(t){let e=r.run();if(u||y||(_?e.some((e,t)=>!Object.is(e,w[t])):!Object.is(e,w))){o&&o();let l=ta;ta=r;try{let l=[e,w===to?void 0:_&&w[0]===to?[]:w,s];w=e,g?g(t,3,l):t(...l)}finally{ta=l}}}else r.run()};return d&&d(E),(r=new ee(i)).scheduler=f?()=>f(E,!1):E,s=e=>(function(e,t=!1,l=ta){if(l){let t=ts.get(l);t||ts.set(l,t=[]),t.push(e)}})(e,!1,r),o=r.onStop=()=>{let e=ts.get(r);if(e){if(g)g(e,4);else for(let t of e)t();ts.delete(r)}},t?a?E(!0):w=r.run():f?f(E.bind(null,!0),!0):r.run(),S.pause=r.pause.bind(r),S.resume=r.resume.bind(r),S.stop=S,S}(e,t,u);return lK&&(r?r.push(g):c&&g()),g}(()=>[u.value,a.value,e.name],([e,t,l],[n,r,i])=>{t&&(t.instances[l]=e,r&&r!==t&&e&&e===n&&(t.leaveGuards.size||(t.leaveGuards=r.leaveGuards),t.updateGuards.size||(t.updateGuards=r.updateGuards))),!e||!t||r&&nJ(t,r)&&n||(t.enterCallbacks[l]||[]).forEach(t=>t(e))},{flush:\"post\"}),()=>{let l=i.value;let r=e.name;let o=a.value;let s=o&&o.components[r];if(!s)return rD(n.default,{Component:s,route:l});let c=o.props[r];let f=l1(s,nO({},c?!0===c?l.params:\"function\"==typeof c?c(l):c:null,t,{onVnodeUnmounted:e=>{e.component.isUnmounted&&(o.instances[r]=null)},ref:u}));return rD(n.default,{Component:f,route:l})||f}}});function rD(e,t){if(!e)return null;let l=e(t);return 1===l.length?l[0]:l}let rM=tW({__name:\"Home\",setup(e){let t=tj(rn);function l(){t.push(\"/users\")}return(e,t)=>(lE(),lT(\"view\",{style:{padding:16}},[lD(\"text\",{style:{fontSize:20,fontWeight:\"bold\",color:\"#111\",marginBottom:8}},\" Home \"),lD(\"text\",{style:{fontSize:14,color:\"#555\",marginBottom:16,lineHeight:20}},\" This example demonstrates Vue Router with createMemoryHistory in Lynx. Since Lynx has no browser navigation APIs, memory history keeps the routing state entirely in-process. \"),lD(\"text\",{onTap:l,style:{fontSize:14,color:\"#1a73e8\",padding:\"8px 16px\",backgroundColor:\"#e8f0fe\",borderRadius:8,alignSelf:\"flex-start\"}},\" Browse Users → \",32)]))}});let rV=tW({__name:\"About\",setup(e){let t=tj(rr);return(e,l)=>(lE(),lT(\"view\",{style:{padding:16}},[lD(\"text\",{style:{fontSize:20,fontWeight:\"bold\",color:\"#111\",marginBottom:8}},\" About \"),lD(\"text\",{style:{fontSize:14,color:\"#555\",lineHeight:20}},\" Vue Router works in Lynx by using createMemoryHistory() instead of createWebHistory(). This avoids any dependency on window.location or the History API. \"),lD(\"text\",{style:{fontSize:12,color:\"#999\",marginTop:12}},\" Current path: \"+K(tl(t).fullPath),1)]))}});let rB=tW({__name:\"UserList\",setup(e){let t=tj(rn);let l=[{id:1,name:\"Alice\",role:\"Engineer\"},{id:2,name:\"Bob\",role:\"Designer\"},{id:3,name:\"Charlie\",role:\"PM\"}];return(e,n)=>(lE(),lT(\"view\",{style:{padding:16}},[lD(\"text\",{style:{fontSize:20,fontWeight:\"bold\",color:\"#111\",marginBottom:12}},\" Users \"),(lE(),lT(lb,null,function(e,t){let l;let n;let r=O(e);if(r||w(e)){let i=r&&e2(e);let o=!1;let s=!1;i&&(o=!e8(e),s=e6(e),e=eC(e)),l=Array(e.length);for(let r=0,i=e.length;r<i;r++)l[r]=t(o?s?e7(e5(e[r])):e5(e[r]):e[r],r,void 0,n&&n[r])}else if(\"number\"==typeof e){l=Array(e);for(let r=0;r<e;r++)l[r]=t(r+1,r,void 0,n&&n[r])}else if(k(e))if(e[Symbol.iterator])l=Array.from(e,(e,l)=>t(e,l,void 0,n&&n[l]));else{let r=Object.keys(e);l=Array(r.length);for(let i=0,o=r.length;i<o;i++){let o=r[i];l[i]=t(e[o],o,i,n&&n[i])}}else l=[];return l}(l,e=>lD(\"view\",{key:e.id,onTap:l=>{var n;return n=e.id,void t.push(`/users/${n}`)},style:{display:\"flex\",flexDirection:\"row\",justifyContent:\"space-between\",alignItems:\"center\",padding:12,marginBottom:8,backgroundColor:\"#fff\",borderRadius:8}},[lD(\"view\",null,[lD(\"text\",{style:{fontSize:15,fontWeight:\"bold\",color:\"#111\"}},K(e.name),1),lD(\"text\",{style:{fontSize:12,color:\"#777\",marginTop:2}},K(e.role),1)]),lD(\"text\",{style:{fontSize:14,color:\"#1a73e8\"}},\"→\")],40,[\"onTap\"])),64))]))}});let rF=tW({__name:\"UserDetail\",setup(e){let t=tj(rr);let l=tj(rn);let n={1:{name:\"Alice\",role:\"Engineer\",bio:\"Builds cross-platform renderers with Vue and Lynx.\"},2:{name:\"Bob\",role:\"Designer\",bio:\"Crafts pixel-perfect interfaces for mobile experiences.\"},3:{name:\"Charlie\",role:\"PM\",bio:\"Coordinates teams to ship features on time.\"}};let r=l0(()=>t.params.id);let i=l0(()=>n[r.value]);function o(){l.back()}return(e,t)=>(lE(),lT(\"view\",{style:{padding:16}},[lD(\"text\",{onTap:o,style:{fontSize:14,color:\"#1a73e8\",marginBottom:12}},\" ← Back to Users \",32),i.value?(lE(),lT(\"view\",{key:0,style:{backgroundColor:\"#fff\",borderRadius:8,padding:16}},[lD(\"text\",{style:{fontSize:22,fontWeight:\"bold\",color:\"#111\"}},K(i.value.name),1),lD(\"text\",{style:{fontSize:13,color:\"#1a73e8\",marginTop:4}},K(i.value.role),1),lD(\"text\",{style:{fontSize:14,color:\"#555\",marginTop:12,lineHeight:20}},K(i.value.bio),1),lD(\"text\",{style:{fontSize:11,color:\"#aaa\",marginTop:16}},\" Route param :id = \"+K(r.value),1)])):(lE(),lT(\"view\",{key:1,style:{padding:16}},[lD(\"text\",{style:{fontSize:14,color:\"#e53935\"}},\" User not found (id: \"+K(r.value)+\") \",1)]))]))}});let rL=function(e){let t,l,n;let r=function(e,t){let l=[];let n=new Map;function r(e,o,s){let a,u;let c=!s;let f=rk(e);f.aliasOf=s&&s.record;let p=nk(t,e);let d=[f];if(\"alias\"in e)for(let t of\"string\"==typeof e.alias?[e.alias]:e.alias)d.push(rk(nO({},f,{components:s?s.record.components:f.components,path:t,aliasOf:s?s.record:f})));for(let t of d){let{path:d}=t;if(o&&\"/\"!==d[0]){let e=o.record.path;let l=\"/\"===e[e.length-1]?\"\":\"/\";t.path=o.record.path+(d&&l+d)}if(a=function(e,t,l){let n=function(e,t){let l=nO({},rb,t);let n=[];let r=l.start?\"^\":\"\";let i=[];for(let t of e){let e=t.length?[]:[rx.Root];l.strict&&!t.length&&(r+=\"/\");for(let n=0;n<t.length;n++){let o=t[n];let s=rx.Segment+(l.sensitive?rx.BonusCaseSensitive:0);if(o.type===ru.Static)n||(r+=\"/\"),r+=o.value.replace(rS,\"\\\\$&\"),s+=rx.Static;else if(o.type===ru.Param){let{value:e,repeatable:l,optional:a,regexp:u}=o;i.push({name:e,repeatable:l,optional:a});let c=u||r_;c!==r_&&(s+=rx.BonusCustomRegExp);let f=l?`((?:${c})(?:/(?:${c}))*)`:`(${c})`;n||(f=a&&t.length<2?`(?:/${f})`:\"/\"+f),a&&(f+=\"?\"),r+=f,s+=rx.Dynamic,a&&(s+=rx.BonusOptional),l&&(s+=rx.BonusRepeatable),\".*\"===c&&(s+=rx.BonusWildcard)}e.push(s)}n.push(e)}if(l.strict&&l.end){let e=n.length-1;n[e][n[e].length-1]+=rx.BonusStrict}l.strict||(r+=\"/?\"),l.end?r+=\"$\":l.strict&&!r.endsWith(\"/\")&&(r+=\"(?:/|$)\");let o=new RegExp(r,l.sensitive?\"\":\"i\");return{re:o,score:n,keys:i,parse:function(e){let t=e.match(o);let l={};if(!t)return null;for(let e=1;e<t.length;e++){let n=t[e]||\"\";let r=i[e-1];l[r.name]=n&&r.repeatable?n.split(\"/\"):n}return l},stringify:function(t){let l=\"\";let n=!1;for(let r of e)for(let e of(n&&l.endsWith(\"/\")||(l+=\"/\"),n=!1,r))if(e.type===ru.Static)l+=e.value;else if(e.type===ru.Param){let{value:i,repeatable:o,optional:s}=e;let a=i in t?t[i]:\"\";if(nE(a)&&!o)throw Error(`Provided param \"${i}\" is an array but it is not repeatable (* or + modifiers)`);let u=nE(a)?a.join(\"/\"):a;if(!u)if(s)r.length<2&&(l.endsWith(\"/\")?l=l.slice(0,-1):n=!0);else throw Error(`Missing required param \"${i}\"`);l+=u}return l||\"/\"}}}(function(e){let t,l;if(!e)return[[]];if(\"/\"===e)return[[rm]];if(!e.startsWith(\"/\"))throw Error(`Invalid path \"${e}\"`);function n(e){throw Error(`ERR (${r})/\"${u}\": ${e}`)}let r=rv.Static;let i=r;let o=[];function s(){t&&o.push(t),t=[]}let a=0;let u=\"\";let c=\"\";function f(){u&&(r===rv.Static?t.push({type:ru.Static,value:u}):r===rv.Param||r===rv.ParamRegExp||r===rv.ParamRegExpEnd?(t.length>1&&(\"*\"===l||\"+\"===l)&&n(`A repeatable param (${u}) must be alone in its segment. eg: '/:ids+.`),t.push({type:ru.Param,value:u,regexp:c,repeatable:\"*\"===l||\"+\"===l,optional:\"*\"===l||\"?\"===l})):n(\"Invalid state to consume buffer\"),u=\"\")}for(;a<e.length;){if(\"\\\\\"===(l=e[a++])&&r!==rv.ParamRegExp){i=r,r=rv.EscapeNext;continue}switch(r){case rv.Static:\"/\"===l?(u&&f(),s()):\":\"===l?(f(),r=rv.Param):u+=l;break;case rv.EscapeNext:u+=l,r=i;break;case rv.Param:\"(\"===l?r=rv.ParamRegExp:ry.test(l)?u+=l:(f(),r=rv.Static,\"*\"!==l&&\"?\"!==l&&\"+\"!==l&&a--);break;case rv.ParamRegExp:\")\"===l?\"\\\\\"==c[c.length-1]?c=c.slice(0,-1)+l:r=rv.ParamRegExpEnd:c+=l;break;case rv.ParamRegExpEnd:f(),r=rv.Static,\"*\"!==l&&\"?\"!==l&&\"+\"!==l&&a--,c=\"\";break;default:n(\"Unknown state\")}}return r===rv.ParamRegExp&&n(`Unfinished custom RegExp for param \"${u}\"`),f(),s(),o}(e.path),l);let r=nO(n,{record:e,parent:t,children:[],alias:[]});return t&&!r.record.aliasOf===!t.record.aliasOf&&t.children.push(r),r}(t,o,p),s?s.alias.push(a):((u=u||a)!==a&&u.alias.push(a),c&&e.name&&!rA(a)&&i(e.name)),rR(a)&&function(e){let t=function(e,t){let l=0;let n=t.length;for(;l!==n;){let r=l+n>>1;rO(e,t[r])<0?n=r:l=r+1}let r=function(e){let t=e;for(;t=t.parent;)if(rR(t)&&0===rO(e,t))return t}(e);return r&&(n=t.lastIndexOf(r,n-1)),n}(e,l);l.splice(t,0,e),e.record.name&&!rA(e)&&n.set(e.record.name,e)}(a),f.children){let e=f.children;for(let t=0;t<e.length;t++)r(e[t],a,s&&s.children[t])}s=s||a}return u?()=>{i(u)}:nw}function i(e){if(n8(e)){let t=n.get(e);t&&(n.delete(e),l.splice(l.indexOf(t),1),t.children.forEach(i),t.alias.forEach(i))}else{let t=l.indexOf(e);t>-1&&(l.splice(t,1),e.record.name&&n.delete(e.record.name),e.children.forEach(i),e.alias.forEach(i))}}return t=nk(rw,t),e.forEach(e=>r(e)),{addRoute:r,resolve:function(e,t){let r;let i={};let o;let s;if(\"name\"in e&&e.name){if(!(r=n.get(e.name)))throw n5(n3.MATCHER_NOT_FOUND,{location:e});s=r.record.name,i=nO(rE(t.params,r.keys.filter(e=>!e.optional).concat(r.parent?r.parent.keys.filter(e=>e.optional):[]).map(e=>e.name)),e.params&&rE(e.params,r.keys.map(e=>e.name))),o=r.stringify(i)}else if(null!=e.path)o=e.path,(r=l.find(e=>e.re.test(o)))&&(i=r.parse(o),s=r.record.name);else{if(!(r=t.name?n.get(t.name):l.find(e=>e.re.test(t.path))))throw n5(n3.MATCHER_NOT_FOUND,{location:e,currentLocation:t});s=r.record.name,i=nO({},t.params,e.params),o=r.stringify(i)}let a=[];let u=r;for(;u;)a.unshift(u.record),u=u.parent;return{name:s,path:o,params:i,matched:a,meta:a.reduce((e,t)=>nO(e,t.meta),{})}},removeRoute:i,clearRoutes:function(){l.length=0,n.clear()},getRoutes:function(){return l},getRecordMatcher:function(e){return n.get(e)}}}(e.routes,e);let i=e.parseQuery||n9;let o=e.stringifyQuery||re;let s=e.history;let a=ro();let u=ro();let c=ro();let f=te(nX,!0);let p=nX;nx&&e.scrollBehavior&&\"scrollRestoration\"in history&&(history.scrollRestoration=\"manual\");let d=nC.bind(null,e=>\"\"+e);let h=nC.bind(null,nW);let g=nC.bind(null,nz);function m(e,t){var l;let n,a;if(t=nO({},t||f.value),\"string\"==typeof e){let l=nq(i,e,t.path);let n=r.resolve({path:l.path},t);let o=s.createHref(l.fullPath);return nO(l,n,{params:g(n.params),hash:nz(l.hash),redirectedFrom:void 0,href:o})}if(null!=e.path)n=nO({},e,{path:nq(i,e.path,t.path).path});else{let l=nO({},e.params);for(let e in l)null==l[e]&&delete l[e];n=nO({},e,{params:h(l)}),t.params=h(t.params)}let u=r.resolve(n,t);let c=e.hash||\"\";u.params=d(g(u.params));let p=(a=(l=nO({},e,{hash:nU(c).replace(nB,\"{\").replace(nL,\"}\").replace(nM,\"^\"),path:u.path})).query?o(l.query):\"\",l.path+(a&&\"?\")+a+(l.hash||\"\"));let m=s.createHref(p);return nO({fullPath:p,hash:c,query:o===re?function(e){let t={};for(let l in e){let n=e[l];void 0!==n&&(t[l]=nE(n)?n.map(e=>null==e?null:\"\"+e):null==n?n:\"\"+n)}return t}(e.query):e.query||{}},u,{redirectedFrom:void 0,href:m})}function y(e){return\"string\"==typeof e?nq(i,e,f.value.path):nO({},e)}function _(e,t){if(p!==e)return n5(n3.NAVIGATION_CANCELLED,{from:t,to:e})}function b(e,t){let l=e.matched[e.matched.length-1];if(l&&l.redirect){let{redirect:n}=l;let r=\"function\"==typeof n?n(e,t):n;return\"string\"==typeof r&&((r=r.includes(\"?\")||r.includes(\"#\")?r=y(r):{path:r}).params={}),nO({query:e.query,hash:e.hash,params:null!=r.path?{}:e.params},r)}}function x(e,t){let l;let n=p=m(e);let r=f.value;let i=e.state;let s=e.force;let a=!0===e.replace;let u=b(n,r);if(u)return x(nO(y(u),{state:\"object\"==typeof u?nO({},i,u.state):i,force:s,replace:a}),t||n);n.redirectedFrom=t;let c;let d;return!s&&(c=r.matched.length-1,d=n.matched.length-1,c>-1&&c===d&&nJ(r.matched[c],n.matched[d])&&nK(r.params,n.params)&&o(r.query)===o(n.query)&&r.hash===n.hash)&&(l=n5(n3.NAVIGATION_DUPLICATED,{to:n,from:r}),I(r,r,!0,!1)),(l?Promise.resolve(l):C(n,r)).catch(e=>n7(e)?n7(e,n3.NAVIGATION_GUARD_REDIRECT)?e:T(e):R(e,n,r)).then(e=>{if(e){if(n7(e,n3.NAVIGATION_GUARD_REDIRECT))return x(nO({replace:a},y(e.to),{state:\"object\"==typeof e.to?nO({},i,e.to.state):i,force:s}),t||n)}else e=E(n,r,!0,a,i);return w(n,r,e),e})}function S(e,t){let l=_(e,t);return l?Promise.reject(l):Promise.resolve()}function O(e){let t=j.values().next().value;return t&&\"function\"==typeof t.runWithContext?t.runWithContext(e):e()}function C(e,t){let l;let[n,r,i]=function(e,t){let l=[];let n=[];let r=[];let i=Math.max(t.matched.length,e.matched.length);for(let o=0;o<i;o++){let i=t.matched[o];i&&(e.matched.find(e=>nJ(e,i))?n.push(i):l.push(i));let s=e.matched[o];s&&!t.matched.find(e=>nJ(e,s))&&r.push(s)}return[l,n,r]}(e,t);for(let r of(l=ra(n.reverse(),\"beforeRouteLeave\",e,t),n))r.leaveGuards.forEach(n=>{l.push(rs(n,e,t))});let o=S.bind(null,e,t);return l.push(o),D(l).then(()=>{for(let n of(l=[],a.list()))l.push(rs(n,e,t));return l.push(o),D(l)}).then(()=>{for(let n of(l=ra(r,\"beforeRouteUpdate\",e,t),r))n.updateGuards.forEach(n=>{l.push(rs(n,e,t))});return l.push(o),D(l)}).then(()=>{for(let n of(l=[],i))if(n.beforeEnter)if(nE(n.beforeEnter))for(let r of n.beforeEnter)l.push(rs(r,e,t));else l.push(rs(n.beforeEnter,e,t));return l.push(o),D(l)}).then(()=>(e.matched.forEach(e=>e.enterCallbacks={}),(l=ra(i,\"beforeRouteEnter\",e,t,O)).push(o),D(l))).then(()=>{for(let n of(l=[],u.list()))l.push(rs(n,e,t));return l.push(o),D(l)}).catch(e=>n7(e,n3.NAVIGATION_CANCELLED)?e:Promise.reject(e))}function w(e,t,l){c.list().forEach(n=>O(()=>n(e,t,l)))}function E(e,t,l,n,r){let i=_(e,t);if(i)return i;let o=t===nX;let a=nx?history.state:{};l&&(n||o?s.replace(e.fullPath,nO({scroll:o&&a&&a.scroll},r)):s.push(e.fullPath,r)),f.value=e,I(e,t,l,o),T()}let k=ro();let A=ro();function R(e,t,l){T(e);let n=A.list();return n.length?n.forEach(n=>n(e,t,l)):console.error(e),Promise.reject(e)}function T(e){return l||(l=!e,t||(t=s.listen((e,t,l)=>{var n,r;if(!N.listening)return;let i=m(e);let o=b(i,N.currentRoute.value);if(o)return void x(nO(o,{replace:!0,force:!0}),i).catch(nw);p=i;let a=f.value;nx&&(n=n2(a.fullPath,l.delta),r={left:window.scrollX,top:window.scrollY},n6.set(n,r)),C(i,a).catch(e=>n7(e,n3.NAVIGATION_ABORTED|n3.NAVIGATION_CANCELLED)?e:n7(e,n3.NAVIGATION_GUARD_REDIRECT)?(x(nO(y(e.to),{force:!0}),i).then(e=>{n7(e,n3.NAVIGATION_ABORTED|n3.NAVIGATION_DUPLICATED)&&!l.delta&&l.type===nQ.pop&&s.go(-1,!1)}).catch(nw),Promise.reject()):(l.delta&&s.go(-l.delta,!1),R(e,i,a))).then(e=>{(e=e||E(i,a,!1))&&(l.delta&&!n7(e,n3.NAVIGATION_CANCELLED)?s.go(-l.delta,!1):l.type===nQ.pop&&n7(e,n3.NAVIGATION_ABORTED|n3.NAVIGATION_DUPLICATED)&&s.go(-1,!1)),w(i,a,e)}).catch(nw)})),k.list().forEach(([t,l])=>e?l(e):t()),k.reset()),e}function I(t,l,n,r){var i;let o,{scrollBehavior:s}=e;if(!nx||!s)return Promise.resolve();let a=!n&&(i=n2(t.fullPath,0),o=n6.get(i),n6.delete(i),o)||(r||!n)&&history.state&&history.state.scroll||null;return tb().then(()=>l5()).then(()=>s(t,l,a)).then(e=>e&&function(e){let t;if(\"el\"in e){let l,n,r=e.el;let i=\"string\"==typeof r&&r.startsWith(\"#\");let o=\"string\"==typeof r?i?document.getElementById(r.slice(1)):document.querySelector(r):r;if(!o)return;l=document.documentElement.getBoundingClientRect(),n=o.getBoundingClientRect(),t={behavior:e.behavior,left:n.left-l.left-(e.left||0),top:n.top-l.top-(e.top||0)}}else t=e;\"scrollBehavior\"in document.documentElement.style?window.scrollTo(t):window.scrollTo(null!=t.left?t.left:window.scrollX,null!=t.top?t.top:window.scrollY)}(e)).catch(e=>R(e,t,l))}let P=e=>s.go(e);let j=new Set;let N={currentRoute:f,listening:!0,addRoute:function(e,t){let l;let n;return n8(e)?(l=r.getRecordMatcher(e),n=t):n=e,r.addRoute(n,l)},removeRoute:function(e){let t=r.getRecordMatcher(e);t&&r.removeRoute(t)},clearRoutes:r.clearRoutes,hasRoute:function(e){return!!r.getRecordMatcher(e)},getRoutes:function(){return r.getRoutes().map(e=>e.record)},resolve:m,options:e,push:function(e){return x(e)},replace:function(e){return x(nO(y(e),{replace:!0}))},go:P,back:()=>P(-1),forward:()=>P(1),beforeEach:a.add,beforeResolve:u.add,afterEach:c.add,onError:A.add,isReady:function(){return l&&f.value!==nX?Promise.resolve():new Promise((e,t)=>{k.add([e,t])})},install(e){e.component(\"RouterLink\",rI),e.component(\"RouterView\",rN),e.config.globalProperties.$router=N,Object.defineProperty(e.config.globalProperties,\"$route\",{enumerable:!0,get:()=>tl(f)}),nx&&!n&&f.value===nX&&(n=!0,x(s.location).catch(e=>{}));let r={};for(let e in nX)Object.defineProperty(r,e,{get:()=>f.value[e],enumerable:!0});e.provide(rn,N),e.provide(rr,eZ(r)),e.provide(ri,f);let i=e.unmount;j.add(e),e.unmount=function(){j.delete(e),j.size<1&&(p=nX,t&&t(),t=null,f.value=nX,n=!1,l=!1),i()}}};function D(e){return e.reduce((e,t)=>e.then(()=>O(t)),Promise.resolve())}return N}({history:function(e=\"\"){let t=[];let l=[[\"\",{}]];let n=0;function r(e,t={}){++n!==l.length&&l.splice(n),l.push([e,t])}let i={location:\"\",state:{},base:e=function(e){if(!e)if(nx){let t=document.querySelector(\"base\");e=(e=t&&t.getAttribute(\"href\")||\"/\").replace(/^\\w+:\\/\\/[^\\/]+/,\"\")}else e=\"/\";return\"/\"!==e[0]&&\"#\"!==e[0]&&(e=\"/\"+e),e.replace(nH,\"\")}(e),createHref:n1.bind(null,e),replace(e,t){l.splice(n--,1),r(e,t)},push(e,t){r(e,t)},listen:e=>(t.push(e),()=>{let l=t.indexOf(e);l>-1&&t.splice(l,1)}),destroy(){t=[],l=[[\"\",{}]],n=0},go(e,r=!0){let i=this.location;let o=e<0?nZ.back:nZ.forward;n=Math.max(0,Math.min(n+e,l.length-1)),r&&function(e,l,{direction:n,delta:r}){let i={direction:n,delta:r,type:nQ.pop};for(let n of t)n(e,l,i)}(this.location,i,{direction:o,delta:e})}};return Object.defineProperty(i,\"location\",{enumerable:!0,get:()=>l[n][0]}),Object.defineProperty(i,\"state\",{enumerable:!0,get:()=>l[n][1]}),i}(),routes:[{path:\"/\",name:\"home\",component:rM},{path:\"/about\",name:\"about\",component:rV},{path:\"/users\",name:\"users\",component:rB},{path:\"/users/:id\",name:\"user-detail\",component:rF}]});let r$=tW({__name:\"NavLink\",props:{to:{},label:{}},setup:e=>(t,l)=>{var n;return lE(),n=tl(rI),lR(lM(n,{to:e.to,custom:\"\"},{default:tT(({navigate:t,isActive:l})=>[lD(\"text\",{onTap:t,style:G({fontSize:14,padding:\"8px 12px\",marginRight:4,borderRadius:16,color:l?\"#fff\":\"#333\",backgroundColor:l?\"#1a73e8\":\"#e8e8e8\"})},K(e.label),45,[\"onTap\"])]),_:1},8,[\"to\"],!0))}});let rU;let rG;let rW=(rU=nb(tW({__name:\"App\",setup:e=>(e,t)=>(lE(),lT(\"view\",{style:{flex:1,display:\"flex\",flexDirection:\"column\",backgroundColor:\"#f5f5f5\"}},[lD(\"text\",{style:{fontSize:18,fontWeight:\"bold\",padding:16,color:\"#111\",backgroundColor:\"#fff\"}},\" Vue Router + Lynx \"),lD(\"view\",{style:{display:\"flex\",flexDirection:\"row\",backgroundColor:\"#fff\",paddingLeft:8,paddingRight:8,paddingBottom:8}},[lM(r$,{to:\"/\",label:\"Home\"}),lM(r$,{to:\"/about\",label:\"About\"}),lM(r$,{to:\"/users\",label:\"Users\"})]),lM(tl(rN))]))}),void 0),rG={get config(){return rU.config},use:(e,...t)=>(rU.use(e,...t),rG),provide:(e,t)=>(rU.provide(e,t),rG),mount(){let e=new na(\"page\",1);rU.mount(e)},unmount(){rU.unmount()}});rW.use(rL),rL.push(\"/\"),rW.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={268(){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 d(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 p=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=p++;(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){d(o,n,r,a,i,\"next\",e)}function i(e){d(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 d=0;for(;d<t;)switch(e[d++]){case 0:{let t;let a=e[d++];let i=e[d++];\"__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[d++];let r=__CreateText(l);__SetCSSId([r],0),n.set(t,r),__SetAttribute(r,`vue-ref-${t}`,1);break}case 2:{let t=e[d++];let l=e[d++];let a=e[d++];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[d++];let l=e[d++];let r=n.get(t);let o=n.get(l);r&&o&&__RemoveElement(r,o);break}case 4:{let t=e[d++];let l=e[d++];let r=e[d++];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[d++];let l=e[d++];let r=n.get(t);r&&__SetAttribute(r,\"text\",l);break}case 6:{let t=e[d++];let l=e[d++];let r=e[d++];let o=e[d++];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[d++];let l=e[d++];let r=e[d++];let o=n.get(t);o&&__AddEvent(o,l,r,void 0);break}case 8:{let t=e[d++];let l=e[d++];let r=n.get(t);r&&__SetInlineStyles(r,l);break}case 9:{let t=e[d++];let l=e[d++];let r=n.get(t);r&&__SetClasses(r,l);break}case 10:{let t=e[d++];let l=e[d++];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[d++],e[d++],e[d++],e[d++]);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[d++],e[d++]);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[d++],e[d++])}(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))}},92(){}};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(268),n(92)),n.x();"},"customSections":{},"elementTemplates":{}}
|