hermes-test 0.2.0
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/bin/hermes-test.js +39 -0
- package/dist/harness.bundle.js +615 -0
- package/index.d.ts +231 -0
- package/package.json +65 -0
- package/src/expect.ts +354 -0
- package/src/fetch.ts +195 -0
- package/src/harness.ts +382 -0
- package/src/hooks.ts +226 -0
- package/src/index.ts +129 -0
- package/src/mock.ts +145 -0
- package/src/polyfills.js +334 -0
- package/src/shims/async-storage.js +54 -0
- package/src/shims/react-i18next.js +20 -0
- package/src/shims/react-native-launch-arguments.js +8 -0
- package/src/shims/react-native.js +168 -0
- package/src/shims/react-redux.js +12 -0
- package/src/shims/react.js +16 -0
- package/src/shims/reduxjs-toolkit.js +11 -0
- package/src/shims/rtk-query.js +44 -0
- package/src/shims/tanstack-query.js +68 -0
- package/src/spy.ts +160 -0
- package/src/store.ts +114 -0
- package/src/timers.ts +141 -0
- package/store.d.ts +43 -0
|
@@ -0,0 +1,615 @@
|
|
|
1
|
+
// Hermes runtime polyfills for hermes-test
|
|
2
|
+
// These run before any bundled code (injected via esbuild banner).
|
|
3
|
+
// Hermes lacks these APIs since they normally come from the RN native runtime.
|
|
4
|
+
|
|
5
|
+
// React checks process.env.NODE_ENV at load time
|
|
6
|
+
if (typeof globalThis.process === 'undefined') {
|
|
7
|
+
globalThis.process = { env: { NODE_ENV: 'test', JEST_WORKER_ID: '1' } };
|
|
8
|
+
} else if (!globalThis.process.env) {
|
|
9
|
+
globalThis.process.env = { NODE_ENV: 'test', JEST_WORKER_ID: '1' };
|
|
10
|
+
} else {
|
|
11
|
+
// Always set JEST_WORKER_ID so RTK Query apiBaseQuery uses the mock domain (apiMockDomain)
|
|
12
|
+
// rather than the real AWS domain. Runs before any bundled module-level code.
|
|
13
|
+
if (!globalThis.process.env.JEST_WORKER_ID) {
|
|
14
|
+
globalThis.process.env.JEST_WORKER_ID = '1';
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
// process.nextTick — many Node.js-style tests use this
|
|
19
|
+
if (typeof globalThis.process.nextTick === 'undefined') {
|
|
20
|
+
globalThis.process.nextTick = function(fn) {
|
|
21
|
+
Promise.resolve().then(fn);
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
// Object.fromEntries — ES2019, may not exist in older Hermes builds
|
|
26
|
+
if (typeof Object.fromEntries === 'undefined') {
|
|
27
|
+
Object.fromEntries = function(iterable) {
|
|
28
|
+
var obj = {};
|
|
29
|
+
if (iterable && typeof iterable[Symbol.iterator] === 'function') {
|
|
30
|
+
var iter = iterable[Symbol.iterator]();
|
|
31
|
+
var next;
|
|
32
|
+
while (!(next = iter.next()).done) {
|
|
33
|
+
obj[next.value[0]] = next.value[1];
|
|
34
|
+
}
|
|
35
|
+
} else if (iterable && typeof iterable.forEach === 'function') {
|
|
36
|
+
iterable.forEach(function(pair) { obj[pair[0]] = pair[1]; });
|
|
37
|
+
}
|
|
38
|
+
return obj;
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
// crypto.getRandomValues — needed by uuid and other crypto-dependent libs
|
|
43
|
+
if (typeof globalThis.crypto === 'undefined') {
|
|
44
|
+
globalThis.crypto = {};
|
|
45
|
+
}
|
|
46
|
+
if (typeof globalThis.crypto.getRandomValues === 'undefined') {
|
|
47
|
+
globalThis.crypto.getRandomValues = function(arr) {
|
|
48
|
+
for (var i = 0; i < arr.length; i++) {
|
|
49
|
+
arr[i] = Math.floor(Math.random() * 256);
|
|
50
|
+
}
|
|
51
|
+
return arr;
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
// MessageChannel polyfill — React 19's scheduler uses it for async work
|
|
56
|
+
if (typeof globalThis.MessageChannel === 'undefined') {
|
|
57
|
+
globalThis.MessageChannel = function() {
|
|
58
|
+
var cb = null;
|
|
59
|
+
this.port1 = { onmessage: null };
|
|
60
|
+
this.port2 = {
|
|
61
|
+
postMessage: function() {
|
|
62
|
+
if (cb) { var fn = cb; cb = null; fn({ data: undefined }); }
|
|
63
|
+
}
|
|
64
|
+
};
|
|
65
|
+
var self = this;
|
|
66
|
+
Object.defineProperty(this.port1, 'onmessage', {
|
|
67
|
+
set: function(fn) { cb = fn; },
|
|
68
|
+
get: function() { return cb; }
|
|
69
|
+
});
|
|
70
|
+
};
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
// Timer polyfills — React scheduler needs these
|
|
74
|
+
(function() {
|
|
75
|
+
var queue = [];
|
|
76
|
+
var timerIdCounter = 1;
|
|
77
|
+
var timers = {};
|
|
78
|
+
|
|
79
|
+
if (typeof globalThis.setImmediate === 'undefined') {
|
|
80
|
+
globalThis.setImmediate = function(fn) { queue.push(fn); };
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// Flush all async work: Hermes microtask queue (promises) + our polyfill queues (timers).
|
|
84
|
+
// The C++ bridge installs a native __HT_drain that calls Hermes's drainMicrotasks().
|
|
85
|
+
// We wrap it to also flush our setImmediate/setTimeout polyfill queues.
|
|
86
|
+
var nativeDrain = globalThis.__HT_drain || function() {};
|
|
87
|
+
globalThis.__HT_drain = function() {
|
|
88
|
+
// 1. Drain Hermes's internal promise/microtask queue
|
|
89
|
+
nativeDrain();
|
|
90
|
+
// 2. Flush our setImmediate queue
|
|
91
|
+
var limit = 1000;
|
|
92
|
+
while (queue.length > 0 && limit-- > 0) { queue.shift()(); }
|
|
93
|
+
// 3. Flush pending timers
|
|
94
|
+
var ids = Object.keys(timers);
|
|
95
|
+
for (var i = 0; i < ids.length; i++) {
|
|
96
|
+
var t = timers[ids[i]];
|
|
97
|
+
if (t) { delete timers[ids[i]]; t(); }
|
|
98
|
+
}
|
|
99
|
+
// 4. Drain again (timer callbacks may have queued more microtasks)
|
|
100
|
+
nativeDrain();
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
if (typeof globalThis.setTimeout === 'undefined') {
|
|
104
|
+
globalThis.setTimeout = function(fn, delay) {
|
|
105
|
+
var id = timerIdCounter++;
|
|
106
|
+
if (!delay || delay <= 0) {
|
|
107
|
+
queue.push(fn);
|
|
108
|
+
} else {
|
|
109
|
+
timers[id] = fn;
|
|
110
|
+
}
|
|
111
|
+
return id;
|
|
112
|
+
};
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
if (typeof globalThis.clearTimeout === 'undefined') {
|
|
116
|
+
globalThis.clearTimeout = function(id) { delete timers[id]; };
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
if (typeof globalThis.console === 'undefined') {
|
|
120
|
+
globalThis.console = {
|
|
121
|
+
log: function() {},
|
|
122
|
+
warn: function() {},
|
|
123
|
+
error: function() {},
|
|
124
|
+
info: function() {},
|
|
125
|
+
debug: function() {},
|
|
126
|
+
};
|
|
127
|
+
}
|
|
128
|
+
})();
|
|
129
|
+
|
|
130
|
+
// Web API polyfills — needed for RTK Query's fetchBaseQuery
|
|
131
|
+
(function() {
|
|
132
|
+
// AbortController / AbortSignal
|
|
133
|
+
if (typeof globalThis.AbortController === 'undefined') {
|
|
134
|
+
function AbortSignal() { this.aborted = false; this._listeners = []; }
|
|
135
|
+
AbortSignal.prototype.addEventListener = function(type, fn) { this._listeners.push(fn); };
|
|
136
|
+
AbortSignal.prototype.removeEventListener = function(type, fn) {
|
|
137
|
+
this._listeners = this._listeners.filter(function(f) { return f !== fn; });
|
|
138
|
+
};
|
|
139
|
+
|
|
140
|
+
function AbortController() { this.signal = new AbortSignal(); }
|
|
141
|
+
AbortController.prototype.abort = function() {
|
|
142
|
+
this.signal.aborted = true;
|
|
143
|
+
for (var i = 0; i < this.signal._listeners.length; i++) {
|
|
144
|
+
try { this.signal._listeners[i](); } catch(e) {}
|
|
145
|
+
}
|
|
146
|
+
};
|
|
147
|
+
|
|
148
|
+
globalThis.AbortController = AbortController;
|
|
149
|
+
globalThis.AbortSignal = AbortSignal;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
// Headers
|
|
153
|
+
if (typeof globalThis.Headers === 'undefined') {
|
|
154
|
+
function Headers(init) {
|
|
155
|
+
this._map = {};
|
|
156
|
+
if (init) {
|
|
157
|
+
if (typeof init.forEach === 'function') {
|
|
158
|
+
init.forEach(function(v, k) { this._map[k.toLowerCase()] = v; }.bind(this));
|
|
159
|
+
} else {
|
|
160
|
+
var keys = Object.keys(init);
|
|
161
|
+
for (var i = 0; i < keys.length; i++) {
|
|
162
|
+
this._map[keys[i].toLowerCase()] = init[keys[i]];
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
Headers.prototype.get = function(k) { return this._map[k.toLowerCase()] || null; };
|
|
168
|
+
Headers.prototype.has = function(k) { return k.toLowerCase() in this._map; };
|
|
169
|
+
Headers.prototype.set = function(k, v) { this._map[k.toLowerCase()] = v; };
|
|
170
|
+
Headers.prototype.append = function(k, v) {
|
|
171
|
+
k = k.toLowerCase();
|
|
172
|
+
this._map[k] = this._map[k] ? this._map[k] + ', ' + v : v;
|
|
173
|
+
};
|
|
174
|
+
Headers.prototype.delete = function(k) { delete this._map[k.toLowerCase()]; };
|
|
175
|
+
Headers.prototype.forEach = function(fn) {
|
|
176
|
+
var keys = Object.keys(this._map);
|
|
177
|
+
for (var i = 0; i < keys.length; i++) fn(this._map[keys[i]], keys[i], this);
|
|
178
|
+
};
|
|
179
|
+
Headers.prototype.entries = function() { return Object.entries(this._map); };
|
|
180
|
+
globalThis.Headers = Headers;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
// URLSearchParams — always install BEFORE URL: native Hermes version may not parse correctly
|
|
184
|
+
{
|
|
185
|
+
function URLSearchParams(init) {
|
|
186
|
+
this._params = [];
|
|
187
|
+
if (typeof init === 'string') {
|
|
188
|
+
init = init.replace(/^\?/, '');
|
|
189
|
+
var pairs = init.split('&');
|
|
190
|
+
for (var i = 0; i < pairs.length; i++) {
|
|
191
|
+
if (!pairs[i]) continue;
|
|
192
|
+
var kv = pairs[i].split('=');
|
|
193
|
+
this._params.push([decodeURIComponent(kv[0]), decodeURIComponent(kv.slice(1).join('='))]);
|
|
194
|
+
}
|
|
195
|
+
} else if (init && typeof init === 'object') {
|
|
196
|
+
if (Array.isArray(init)) {
|
|
197
|
+
// Array of [key, value] pairs
|
|
198
|
+
for (var i = 0; i < init.length; i++) {
|
|
199
|
+
this._params.push([String(init[i][0]), String(init[i][1])]);
|
|
200
|
+
}
|
|
201
|
+
} else if (typeof init[Symbol.iterator] === 'function') {
|
|
202
|
+
// Iterable (e.g. another URLSearchParams instance)
|
|
203
|
+
var iter = init[Symbol.iterator]();
|
|
204
|
+
var next;
|
|
205
|
+
while (!(next = iter.next()).done) {
|
|
206
|
+
this._params.push([String(next.value[0]), String(next.value[1])]);
|
|
207
|
+
}
|
|
208
|
+
} else if (typeof init.forEach === 'function') {
|
|
209
|
+
// URLSearchParams-like with forEach(value, key)
|
|
210
|
+
init.forEach(function(v, k) { this._params.push([String(k), String(v)]); }.bind(this));
|
|
211
|
+
} else {
|
|
212
|
+
// Plain object: { key: value }
|
|
213
|
+
var keys = Object.keys(init);
|
|
214
|
+
for (var i = 0; i < keys.length; i++) {
|
|
215
|
+
this._params.push([keys[i], String(init[keys[i]])]);
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
URLSearchParams.prototype.get = function(k) {
|
|
221
|
+
for (var i = 0; i < this._params.length; i++) {
|
|
222
|
+
if (this._params[i][0] === k) return this._params[i][1];
|
|
223
|
+
}
|
|
224
|
+
return null;
|
|
225
|
+
};
|
|
226
|
+
URLSearchParams.prototype.has = function(k) {
|
|
227
|
+
for (var i = 0; i < this._params.length; i++) {
|
|
228
|
+
if (this._params[i][0] === k) return true;
|
|
229
|
+
}
|
|
230
|
+
return false;
|
|
231
|
+
};
|
|
232
|
+
URLSearchParams.prototype.set = function(k, v) {
|
|
233
|
+
for (var i = 0; i < this._params.length; i++) {
|
|
234
|
+
if (this._params[i][0] === k) { this._params[i][1] = String(v); return; }
|
|
235
|
+
}
|
|
236
|
+
this._params.push([k, String(v)]);
|
|
237
|
+
};
|
|
238
|
+
URLSearchParams.prototype.append = function(k, v) { this._params.push([k, String(v)]); };
|
|
239
|
+
URLSearchParams.prototype['delete'] = function(k) {
|
|
240
|
+
this._params = this._params.filter(function(p) { return p[0] !== k; });
|
|
241
|
+
};
|
|
242
|
+
URLSearchParams.prototype.entries = function() {
|
|
243
|
+
var params = this._params;
|
|
244
|
+
var i = 0;
|
|
245
|
+
return { next: function() {
|
|
246
|
+
if (i < params.length) return { value: [params[i][0], params[i++][1]], done: false };
|
|
247
|
+
return { value: undefined, done: true };
|
|
248
|
+
}};
|
|
249
|
+
};
|
|
250
|
+
URLSearchParams.prototype.keys = function() {
|
|
251
|
+
var params = this._params;
|
|
252
|
+
var i = 0;
|
|
253
|
+
return { next: function() {
|
|
254
|
+
if (i < params.length) return { value: params[i++][0], done: false };
|
|
255
|
+
return { value: undefined, done: true };
|
|
256
|
+
}};
|
|
257
|
+
};
|
|
258
|
+
URLSearchParams.prototype.values = function() {
|
|
259
|
+
var params = this._params;
|
|
260
|
+
var i = 0;
|
|
261
|
+
return { next: function() {
|
|
262
|
+
if (i < params.length) return { value: params[i++][1], done: false };
|
|
263
|
+
return { value: undefined, done: true };
|
|
264
|
+
}};
|
|
265
|
+
};
|
|
266
|
+
URLSearchParams.prototype.forEach = function(fn, thisArg) {
|
|
267
|
+
for (var i = 0; i < this._params.length; i++) {
|
|
268
|
+
fn.call(thisArg, this._params[i][1], this._params[i][0], this);
|
|
269
|
+
}
|
|
270
|
+
};
|
|
271
|
+
URLSearchParams.prototype.toString = function() {
|
|
272
|
+
return this._params.map(function(p) { return encodeURIComponent(p[0]) + '=' + encodeURIComponent(p[1]); }).join('&');
|
|
273
|
+
};
|
|
274
|
+
URLSearchParams.prototype[Symbol.iterator] = URLSearchParams.prototype.entries;
|
|
275
|
+
globalThis.URLSearchParams = URLSearchParams;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
// URL — always install: Hermes has a built-in URL that doesn't parse searchParams correctly
|
|
279
|
+
{
|
|
280
|
+
function URL(url, base) {
|
|
281
|
+
if (base && url.indexOf('://') === -1) {
|
|
282
|
+
url = base.replace(/\/$/, '') + '/' + url.replace(/^\//, '');
|
|
283
|
+
}
|
|
284
|
+
this.href = url;
|
|
285
|
+
var match = url.match(/^(https?:)\/\/([^/:?#]+)(:\d+)?(\/[^?#]*)?(\?[^#]*)?(#.*)?$/);
|
|
286
|
+
if (match) {
|
|
287
|
+
this.protocol = match[1];
|
|
288
|
+
this.hostname = match[2];
|
|
289
|
+
this.port = match[3] ? match[3].slice(1) : '';
|
|
290
|
+
this.pathname = match[4] || '/';
|
|
291
|
+
this.search = match[5] || '';
|
|
292
|
+
this.hash = match[6] || '';
|
|
293
|
+
this.host = this.hostname + (this.port ? ':' + this.port : '');
|
|
294
|
+
this.origin = this.protocol + '//' + this.host;
|
|
295
|
+
} else {
|
|
296
|
+
this.protocol = ''; this.hostname = ''; this.port = '';
|
|
297
|
+
this.pathname = url; this.search = ''; this.hash = '';
|
|
298
|
+
this.host = ''; this.origin = '';
|
|
299
|
+
}
|
|
300
|
+
this.searchParams = new globalThis.URLSearchParams(this.search);
|
|
301
|
+
}
|
|
302
|
+
URL.prototype.toString = function() { return this.href; };
|
|
303
|
+
globalThis.URL = URL;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
// Request (minimal — RTK Query checks typeof Request)
|
|
307
|
+
if (typeof globalThis.Request === 'undefined') {
|
|
308
|
+
globalThis.Request = function Request(url, init) {
|
|
309
|
+
this.url = typeof url === 'string' ? url : url.href;
|
|
310
|
+
this.method = (init && init.method) || 'GET';
|
|
311
|
+
this.headers = new globalThis.Headers(init && init.headers);
|
|
312
|
+
this.body = init && init.body;
|
|
313
|
+
};
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
// Stub fetch (mockFetch will override with handler-based implementation)
|
|
317
|
+
if (typeof globalThis.fetch === 'undefined') {
|
|
318
|
+
globalThis.fetch = function() {
|
|
319
|
+
return Promise.reject(new Error('fetch not configured — use mockFetch() to register handlers'));
|
|
320
|
+
};
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
// Response (minimal)
|
|
324
|
+
if (typeof globalThis.Response === 'undefined') {
|
|
325
|
+
globalThis.Response = function Response(body, init) {
|
|
326
|
+
this.body = body;
|
|
327
|
+
this.status = (init && init.status) || 200;
|
|
328
|
+
this.ok = this.status >= 200 && this.status < 300;
|
|
329
|
+
this.headers = new globalThis.Headers(init && init.headers);
|
|
330
|
+
};
|
|
331
|
+
globalThis.Response.prototype.json = function() { return Promise.resolve(JSON.parse(this.body)); };
|
|
332
|
+
globalThis.Response.prototype.text = function() { return Promise.resolve(String(this.body)); };
|
|
333
|
+
}
|
|
334
|
+
})();
|
|
335
|
+
|
|
336
|
+
"use strict";var __metroTestHarness=(()=>{var fE=Object.create;var dv=Object.defineProperty;var oE=Object.getOwnPropertyDescriptor;var mE=Object.getOwnPropertyNames;var sE=Object.getPrototypeOf,pE=Object.prototype.hasOwnProperty;var lc=(s,h)=>()=>(h||s((h={exports:{}}).exports,h),h.exports),dE=(s,h)=>{for(var z in h)dv(s,z,{get:h[z],enumerable:!0})},n2=(s,h,z,E)=>{if(h&&typeof h=="object"||typeof h=="function")for(let N of mE(h))!pE.call(s,N)&&N!==z&&dv(s,N,{get:()=>h[N],enumerable:!(E=oE(h,N))||E.enumerable});return s};var c2=(s,h,z)=>(z=s!=null?fE(sE(s)):{},n2(h||!s||!s.__esModule?dv(z,"default",{value:s,enumerable:!0}):z,s)),yE=s=>n2(dv({},"__esModule",{value:!0}),s);var G1=lc((VE,o2)=>{"use strict";var vE={get:function(s,h){if(!(h===Symbol.toPrimitive||h==="then")){var z=globalThis.__HT_React;return z?z[h]:void 0}},set:function(s,h,z){var E=globalThis.__HT_React;return E&&(E[h]=z),!0}};o2.exports=new Proxy({},vE)});var z2=lc(zl=>{"use strict";function Z1(s,h){var z=s.length;s.push(h);t:for(;0<z;){var E=z-1>>>1,N=s[E];if(0<yv(N,h))s[E]=h,s[z]=N,z=E;else break t}}function uc(s){return s.length===0?null:s[0]}function hv(s){if(s.length===0)return null;var h=s[0],z=s.pop();if(z!==h){s[0]=z;t:for(var E=0,N=s.length,Q=N>>>1;E<Q;){var r=2*(E+1)-1,yt=s[r],it=r+1,ol=s[it];if(0>yv(yt,z))it<N&&0>yv(ol,yt)?(s[E]=ol,s[it]=z,E=it):(s[E]=yt,s[r]=z,E=r);else if(it<N&&0>yv(ol,z))s[E]=ol,s[it]=z,E=it;else break t}}return h}function yv(s,h){var z=s.sortIndex-h.sortIndex;return z!==0?z:s.id-h.id}zl.unstable_now=void 0;typeof performance=="object"&&typeof performance.now=="function"?(m2=performance,zl.unstable_now=function(){return m2.now()}):(V1=Date,s2=V1.now(),zl.unstable_now=function(){return V1.now()-s2});var m2,V1,s2,ti=[],of=[],hE=1,bu=null,Ja=3,r1=!1,uy=!1,ny=!1,K1=!1,y2=typeof setTimeout=="function"?setTimeout:null,v2=typeof clearTimeout=="function"?clearTimeout:null,p2=typeof setImmediate<"u"?setImmediate:null;function vv(s){for(var h=uc(of);h!==null;){if(h.callback===null)hv(of);else if(h.startTime<=s)hv(of),h.sortIndex=h.expirationTime,Z1(ti,h);else break;h=uc(of)}}function J1(s){if(ny=!1,vv(s),!uy)if(uc(ti)!==null)uy=!0,np||(np=!0,up());else{var h=uc(of);h!==null&&L1(J1,h.startTime-s)}}var np=!1,cy=-1,h2=5,S2=-1;function E2(){return K1?!0:!(zl.unstable_now()-S2<h2)}function x1(){if(K1=!1,np){var s=zl.unstable_now();S2=s;var h=!0;try{t:{uy=!1,ny&&(ny=!1,v2(cy),cy=-1),r1=!0;var z=Ja;try{l:{for(vv(s),bu=uc(ti);bu!==null&&!(bu.expirationTime>s&&E2());){var E=bu.callback;if(typeof E=="function"){bu.callback=null,Ja=bu.priorityLevel;var N=E(bu.expirationTime<=s);if(s=zl.unstable_now(),typeof N=="function"){bu.callback=N,vv(s),h=!0;break l}bu===uc(ti)&&hv(ti),vv(s)}else hv(ti);bu=uc(ti)}if(bu!==null)h=!0;else{var Q=uc(of);Q!==null&&L1(J1,Q.startTime-s),h=!1}}break t}finally{bu=null,Ja=z,r1=!1}h=void 0}}finally{h?up():np=!1}}}var up;typeof p2=="function"?up=function(){p2(x1)}:typeof MessageChannel<"u"?(X1=new MessageChannel,d2=X1.port2,X1.port1.onmessage=x1,up=function(){d2.postMessage(null)}):up=function(){y2(x1,0)};var X1,d2;function L1(s,h){cy=y2(function(){s(zl.unstable_now())},h)}zl.unstable_IdlePriority=5;zl.unstable_ImmediatePriority=1;zl.unstable_LowPriority=4;zl.unstable_NormalPriority=3;zl.unstable_Profiling=null;zl.unstable_UserBlockingPriority=2;zl.unstable_cancelCallback=function(s){s.callback=null};zl.unstable_forceFrameRate=function(s){0>s||125<s?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):h2=0<s?Math.floor(1e3/s):5};zl.unstable_getCurrentPriorityLevel=function(){return Ja};zl.unstable_next=function(s){switch(Ja){case 1:case 2:case 3:var h=3;break;default:h=Ja}var z=Ja;Ja=h;try{return s()}finally{Ja=z}};zl.unstable_requestPaint=function(){K1=!0};zl.unstable_runWithPriority=function(s,h){switch(s){case 1:case 2:case 3:case 4:case 5:break;default:s=3}var z=Ja;Ja=s;try{return h()}finally{Ja=z}};zl.unstable_scheduleCallback=function(s,h,z){var E=zl.unstable_now();switch(typeof z=="object"&&z!==null?(z=z.delay,z=typeof z=="number"&&0<z?E+z:E):z=E,s){case 1:var N=-1;break;case 2:N=250;break;case 5:N=1073741823;break;case 4:N=1e4;break;default:N=5e3}return N=z+N,s={id:hE++,callback:h,priorityLevel:s,startTime:z,expirationTime:N,sortIndex:-1},z>E?(s.sortIndex=z,Z1(of,s),uc(ti)===null&&s===uc(of)&&(ny?(v2(cy),cy=-1):ny=!0,L1(J1,z-E))):(s.sortIndex=N,Z1(ti,s),uy||r1||(uy=!0,np||(np=!0,up()))),s};zl.unstable_shouldYield=E2;zl.unstable_wrapCallback=function(s){var h=Ja;return function(){var z=Ja;Ja=h;try{return s.apply(this,arguments)}finally{Ja=z}}}});var T2=lc(Tl=>{"use strict";process.env.NODE_ENV!=="production"&&(function(){function s(){if(_n=!1,Vt){var K=Tl.unstable_now();ll=K;var ot=!0;try{t:{gn=!1,Bu&&(Bu=!1,df(I),I=-1),we=!0;var vt=$t;try{l:{for(Q(K),gl=z(G);gl!==null&&!(gl.expirationTime>K&&yt());){var Rt=gl.callback;if(typeof Rt=="function"){gl.callback=null,$t=gl.priorityLevel;var xt=Rt(gl.expirationTime<=K);if(K=Tl.unstable_now(),typeof xt=="function"){gl.callback=xt,Q(K),ot=!0;break l}gl===z(G)&&E(G),Q(K)}else E(G);gl=z(G)}if(gl!==null)ot=!0;else{var He=z(tt);He!==null&&it(r,He.startTime-K),ot=!1}}break t}finally{gl=null,$t=vt,we=!1}ot=void 0}}finally{ot?mt():Vt=!1}}}function h(K,ot){var vt=K.length;K.push(ot);t:for(;0<vt;){var Rt=vt-1>>>1,xt=K[Rt];if(0<N(xt,ot))K[Rt]=ot,K[vt]=xt,vt=Rt;else break t}}function z(K){return K.length===0?null:K[0]}function E(K){if(K.length===0)return null;var ot=K[0],vt=K.pop();if(vt!==ot){K[0]=vt;t:for(var Rt=0,xt=K.length,He=xt>>>1;Rt<He;){var Dn=2*(Rt+1)-1,Hn=K[Dn],Ae=Dn+1,Pe=K[Ae];if(0>N(Hn,vt))Ae<xt&&0>N(Pe,Hn)?(K[Rt]=Pe,K[Ae]=vt,Rt=Ae):(K[Rt]=Hn,K[Dn]=vt,Rt=Dn);else if(Ae<xt&&0>N(Pe,vt))K[Rt]=Pe,K[Ae]=vt,Rt=Ae;else break t}}return ot}function N(K,ot){var vt=K.sortIndex-ot.sortIndex;return vt!==0?vt:K.id-ot.id}function Q(K){for(var ot=z(tt);ot!==null;){if(ot.callback===null)E(tt);else if(ot.startTime<=K)E(tt),ot.sortIndex=ot.expirationTime,h(G,ot);else break;ot=z(tt)}}function r(K){if(Bu=!1,Q(K),!gn)if(z(G)!==null)gn=!0,Vt||(Vt=!0,mt());else{var ot=z(tt);ot!==null&&it(r,ot.startTime-K)}}function yt(){return _n?!0:!(Tl.unstable_now()-ll<$l)}function it(K,ot){I=ju(function(){K(Tl.unstable_now())},ot)}if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart=="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error()),Tl.unstable_now=void 0,typeof performance=="object"&&typeof performance.now=="function"){var ol=performance;Tl.unstable_now=function(){return ol.now()}}else{var k=Date,Ft=k.now();Tl.unstable_now=function(){return k.now()-Ft}}var G=[],tt=[],ne=1,gl=null,$t=3,we=!1,gn=!1,Bu=!1,_n=!1,ju=typeof setTimeout=="function"?setTimeout:null,df=typeof clearTimeout=="function"?clearTimeout:null,De=typeof setImmediate<"u"?setImmediate:null,Vt=!1,I=-1,$l=5,ll=-1;if(typeof De=="function")var mt=function(){De(s)};else if(typeof MessageChannel<"u"){var Jo=new MessageChannel,Ea=Jo.port2;Jo.port1.onmessage=s,mt=function(){Ea.postMessage(null)}}else mt=function(){ju(s,0)};Tl.unstable_IdlePriority=5,Tl.unstable_ImmediatePriority=1,Tl.unstable_LowPriority=4,Tl.unstable_NormalPriority=3,Tl.unstable_Profiling=null,Tl.unstable_UserBlockingPriority=2,Tl.unstable_cancelCallback=function(K){K.callback=null},Tl.unstable_forceFrameRate=function(K){0>K||125<K?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):$l=0<K?Math.floor(1e3/K):5},Tl.unstable_getCurrentPriorityLevel=function(){return $t},Tl.unstable_next=function(K){switch($t){case 1:case 2:case 3:var ot=3;break;default:ot=$t}var vt=$t;$t=ot;try{return K()}finally{$t=vt}},Tl.unstable_requestPaint=function(){_n=!0},Tl.unstable_runWithPriority=function(K,ot){switch(K){case 1:case 2:case 3:case 4:case 5:break;default:K=3}var vt=$t;$t=K;try{return ot()}finally{$t=vt}},Tl.unstable_scheduleCallback=function(K,ot,vt){var Rt=Tl.unstable_now();switch(typeof vt=="object"&&vt!==null?(vt=vt.delay,vt=typeof vt=="number"&&0<vt?Rt+vt:Rt):vt=Rt,K){case 1:var xt=-1;break;case 2:xt=250;break;case 5:xt=1073741823;break;case 4:xt=1e4;break;default:xt=5e3}return xt=vt+xt,K={id:ne++,callback:ot,priorityLevel:K,startTime:vt,expirationTime:xt,sortIndex:-1},vt>Rt?(K.sortIndex=vt,h(tt,K),z(G)===null&&K===z(tt)&&(Bu?(df(I),I=-1):Bu=!0,it(r,vt-Rt))):(K.sortIndex=xt,h(G,K),gn||we||(gn=!0,Vt||(Vt=!0,mt()))),K},Tl.unstable_shouldYield=yt,Tl.unstable_wrapCallback=function(K){var ot=$t;return function(){var vt=$t;$t=ot;try{return K.apply(this,arguments)}finally{$t=vt}}},typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop=="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error())})()});var F1=lc((ZE,W1)=>{"use strict";process.env.NODE_ENV==="production"?W1.exports=z2():W1.exports=T2()});var g2=lc((rE,iy)=>{"use strict";iy.exports=function(s){function h(a,e,n,i){return new Gm(a,e,n,i)}function z(){}function E(a){var e="https://react.dev/errors/"+a;if(1<arguments.length){e+="?args[]="+encodeURIComponent(arguments[1]);for(var n=2;n<arguments.length;n++)e+="&args[]="+encodeURIComponent(arguments[n])}return"Minified React error #"+a+"; visit "+e+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function N(a){var e=a,n=a;if(a.alternate)for(;e.return;)e=e.return;else{a=e;do e=a,(e.flags&4098)!==0&&(n=e.return),a=e.return;while(a)}return e.tag===3?n:null}function Q(a){if(N(a)!==a)throw Error(E(188))}function r(a){var e=a.alternate;if(!e){if(e=N(a),e===null)throw Error(E(188));return e!==a?null:a}for(var n=a,i=e;;){var m=n.return;if(m===null)break;var p=m.alternate;if(p===null){if(i=m.return,i!==null){n=i;continue}break}if(m.child===p.child){for(p=m.child;p;){if(p===n)return Q(m),a;if(p===i)return Q(m),e;p=p.sibling}throw Error(E(188))}if(n.return!==i.return)n=m,i=p;else{for(var v=!1,T=m.child;T;){if(T===n){v=!0,n=m,i=p;break}if(T===i){v=!0,i=m,n=p;break}T=T.sibling}if(!v){for(T=p.child;T;){if(T===n){v=!0,n=p,i=m;break}if(T===i){v=!0,i=p,n=m;break}T=T.sibling}if(!v)throw Error(E(189))}}if(n.alternate!==i)throw Error(E(190))}if(n.tag!==3)throw Error(E(188));return n.stateNode.current===n?a:e}function yt(a){var e=a.tag;if(e===5||e===26||e===27||e===6)return a;for(a=a.child;a!==null;){if(e=yt(a),e!==null)return e;a=a.sibling}return null}function it(a){var e=a.tag;if(e===5||e===26||e===27||e===6)return a;for(a=a.child;a!==null;){if(a.tag!==4&&(e=it(a),e!==null))return e;a=a.sibling}return null}function ol(a){return a===null||typeof a!="object"?null:(a=td&&a[td]||a["@@iterator"],typeof a=="function"?a:null)}function k(a){if(a==null)return null;if(typeof a=="function")return a.$$typeof===ld?null:a.displayName||a.name||null;if(typeof a=="string")return a;switch(a){case _c:return"Fragment";case eo:return"Profiler";case Pp:return"StrictMode";case Dc:return"Suspense";case Zt:return"SuspenseList";case Jm:return"Activity"}if(typeof a=="object")switch(a.$$typeof){case jn:return"Portal";case ln:return a.displayName||"Context";case Km:return(a._context.displayName||"Context")+".Consumer";case Hi:var e=a.render;return a=a.displayName,a||(a=e.displayName||e.name||"",a=a!==""?"ForwardRef("+a+")":"ForwardRef"),a;case kp:return e=a.displayName||null,e!==null?e:k(a.type)||"Memo";case Qn:e=a._payload,a=a._init;try{return k(a(e))}catch{}}return null}function Ft(a){return{current:a}}function G(a){0>Mi||(a.current=po[Mi],po[Mi]=null,Mi--)}function tt(a,e){Mi++,po[Mi]=a.current,a.current=e}function ne(a){return a>>>=0,a===0?32:31-(_0(a)/D0|0)|0}function gl(a){var e=a&42;if(e!==0)return e;switch(a&-a){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:return 64;case 128:return 128;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:return a&261888;case 262144:case 524288:case 1048576:case 2097152:return a&3932160;case 4194304:case 8388608:case 16777216:case 33554432:return a&62914560;case 67108864:return 67108864;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 0;default:return a}}function $t(a,e,n){var i=a.pendingLanes;if(i===0)return 0;var m=0,p=a.suspendedLanes,v=a.pingedLanes;a=a.warmLanes;var T=i&134217727;return T!==0?(i=T&~p,i!==0?m=gl(i):(v&=T,v!==0?m=gl(v):n||(n=T&~a,n!==0&&(m=gl(n))))):(T=i&~p,T!==0?m=gl(T):v!==0?m=gl(v):n||(n=i&~a,n!==0&&(m=gl(n)))),m===0?0:e!==0&&e!==m&&(e&p)===0&&(p=m&-m,n=e&-e,p>=n||p===32&&(n&4194048)!==0)?e:m}function we(a,e){return(a.pendingLanes&~(a.suspendedLanes&~a.pingedLanes)&e)===0}function gn(a,e){switch(a){case 1:case 2:case 4:case 8:case 64:return e+250;case 16:case 32:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return e+5e3;case 4194304:case 8388608:case 16777216:case 33554432:return-1;case 67108864:case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function Bu(){var a=Oi;return Oi<<=1,(Oi&62914560)===0&&(Oi=4194304),a}function _n(a){for(var e=[],n=0;31>n;n++)e.push(a);return e}function ju(a,e){a.pendingLanes|=e,e!==268435456&&(a.suspendedLanes=0,a.pingedLanes=0,a.warmLanes=0)}function df(a,e,n,i,m,p){var v=a.pendingLanes;a.pendingLanes=n,a.suspendedLanes=0,a.pingedLanes=0,a.warmLanes=0,a.expiredLanes&=n,a.entangledLanes&=n,a.errorRecoveryDisabledLanes&=n,a.shellSuspendCounter=0;var T=a.entanglements,b=a.expirationTimes,Y=a.hiddenUpdates;for(n=v&~n;0<n;){var Z=31-Ya(n),X=1<<Z;T[Z]=0,b[Z]=-1;var J=Y[Z];if(J!==null)for(Y[Z]=null,Z=0;Z<J.length;Z++){var lt=J[Z];lt!==null&&(lt.lane&=-536870913)}n&=~X}i!==0&&De(a,i,0),p!==0&&m===0&&a.tag!==0&&(a.suspendedLanes|=p&~(v&~e))}function De(a,e,n){a.pendingLanes|=e,a.suspendedLanes&=~e;var i=31-Ya(e);a.entangledLanes|=e,a.entanglements[i]=a.entanglements[i]|1073741824|n&261930}function Vt(a,e){var n=a.entangledLanes|=e;for(a=a.entanglements;n;){var i=31-Ya(n),m=1<<i;m&e|a[i]&e&&(a[i]|=e),n&=~m}}function I(a,e){var n=e&-e;return n=(n&42)!==0?1:$l(n),(n&(a.suspendedLanes|e))!==0?0:n}function $l(a){switch(a){case 2:a=1;break;case 8:a=4;break;case 32:a=16;break;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:a=128;break;case 268435456:a=134217728;break;default:a=0}return a}function ll(a){return a&=-a,2<a?8<a?(a&134217727)!==0?32:268435456:8:2}function mt(a){if(typeof is=="function"&&Sd(a),Hl&&typeof Hl.setStrictMode=="function")try{Hl.setStrictMode(Oc,a)}catch{}}function Jo(a,e){return a===e&&(a!==0||1/a===1/e)||a!==a&&e!==e}function Ea(a){if(qi===void 0)try{throw Error()}catch(n){var e=n.stack.trim().match(/\n( *(at )?)/);qi=e&&e[1]||"",Va=-1<n.stack.indexOf(`
|
|
337
|
+
at`)?" (<anonymous>)":-1<n.stack.indexOf("@")?"@unknown:0:0":""}return`
|
|
338
|
+
`+qi+a+Va}function K(a,e){if(!a||ho)return"";ho=!0;var n=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{var i={DetermineComponentFrameRoot:function(){try{if(e){var X=function(){throw Error()};if(Object.defineProperty(X.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(X,[])}catch(lt){var J=lt}Reflect.construct(a,[],X)}else{try{X.call()}catch(lt){J=lt}a.call(X.prototype)}}else{try{throw Error()}catch(lt){J=lt}(X=a())&&typeof X.catch=="function"&&X.catch(function(){})}}catch(lt){if(lt&&J&&typeof lt.stack=="string")return[lt.stack,J.stack]}return[null,null]}};i.DetermineComponentFrameRoot.displayName="DetermineComponentFrameRoot";var m=Object.getOwnPropertyDescriptor(i.DetermineComponentFrameRoot,"name");m&&m.configurable&&Object.defineProperty(i.DetermineComponentFrameRoot,"name",{value:"DetermineComponentFrameRoot"});var p=i.DetermineComponentFrameRoot(),v=p[0],T=p[1];if(v&&T){var b=v.split(`
|
|
339
|
+
`),Y=T.split(`
|
|
340
|
+
`);for(m=i=0;i<b.length&&!b[i].includes("DetermineComponentFrameRoot");)i++;for(;m<Y.length&&!Y[m].includes("DetermineComponentFrameRoot");)m++;if(i===b.length||m===Y.length)for(i=b.length-1,m=Y.length-1;1<=i&&0<=m&&b[i]!==Y[m];)m--;for(;1<=i&&0<=m;i--,m--)if(b[i]!==Y[m]){if(i!==1||m!==1)do if(i--,m--,0>m||b[i]!==Y[m]){var Z=`
|
|
341
|
+
`+b[i].replace(" at new "," at ");return a.displayName&&Z.includes("<anonymous>")&&(Z=Z.replace("<anonymous>",a.displayName)),Z}while(1<=i&&0<=m);break}}}finally{ho=!1,Error.prepareStackTrace=n}return(n=a?a.displayName||a.name:"")?Ea(n):""}function ot(a,e){switch(a.tag){case 26:case 27:case 5:return Ea(a.type);case 16:return Ea("Lazy");case 13:return a.child!==e&&e!==null?Ea("Suspense Fallback"):Ea("Suspense");case 19:return Ea("SuspenseList");case 0:case 15:return K(a.type,!1);case 11:return K(a.type.render,!1);case 1:return K(a.type,!0);case 31:return Ea("Activity");default:return""}}function vt(a){try{var e="",n=null;do e+=ot(a,n),n=a,a=a.return;while(a);return e}catch(i){return`
|
|
342
|
+
Error generating stack: `+i.message+`
|
|
343
|
+
`+i.stack}}function Rt(a,e){if(typeof a=="object"&&a!==null){var n=A0.get(a);return n!==void 0?n:(e={value:a,source:e,stack:vt(e)},A0.set(a,e),e)}return{value:a,source:e,stack:vt(e)}}function xt(a,e){bc[Bi++]=U,bc[Bi++]=Ol,Ol=a,U=e}function He(a,e,n){de[ye++]=Aa,de[ye++]=hu,de[ye++]=fn,fn=a;var i=Aa;a=hu;var m=32-Ya(i)-1;i&=~(1<<m),n+=1;var p=32-Ya(e)+m;if(30<p){var v=m-m%5;p=(i&(1<<v)-1).toString(32),i>>=v,m-=v,Aa=1<<32-Ya(e)+m|n<<m|i,hu=p+a}else Aa=1<<p|n<<m|i,hu=a}function Dn(a){a.return!==null&&(xt(a,1),He(a,1,0))}function Hn(a){for(;a===Ol;)Ol=bc[--Bi],bc[Bi]=null,U=bc[--Bi],bc[Bi]=null;for(;a===fn;)fn=de[--ye],de[ye]=null,hu=de[--ye],de[ye]=null,Aa=de[--ye],de[ye]=null}function Ae(a,e){de[ye++]=Aa,de[ye++]=hu,de[ye++]=fn,Aa=e.id,hu=e.overflow,fn=a}function Pe(a,e){tt(xn,e),tt(So,a),tt(ua,null),a=Cv(e),G(ua),tt(ua,a)}function An(){G(ua),G(So),G(xn)}function Lo(a){a.memoizedState!==null&&tt(os,a);var e=ua.current,n=Qy(e,a.type);e!==n&&(tt(So,a),tt(ua,n))}function yf(a){So.current===a&&(G(ua),G(So)),os.current===a&&(G(os),se?Gn._currentValue=Ha:Gn._currentValue2=Ha)}function Ne(a){var e=Error(E(418,1<arguments.length&&arguments[1]!==void 0&&arguments[1]?"text":"HTML",""));throw Ua(Rt(e,a)),zd}function yy(a,e){if(!la)throw Error(E(175));Ri(a.stateNode,a.type,a.memoizedProps,e,a)||Ne(a,!0)}function al(a){for(Yl=a.return;Yl;)switch(Yl.tag){case 5:case 31:case 13:ve=!1;return;case 27:case 3:ve=!0;return;default:Yl=Yl.return}}function li(a){if(!la||a!==Yl)return!1;if(!Dt)return al(a),Dt=!0,!1;var e=a.tag;if(Ml?e!==3&&e!==27&&(e!==5||S0(a.type)&&!co(a.type,a.memoizedProps))&&ul&&Ne(a):e!==3&&(e!==5||S0(a.type)&&!co(a.type,a.memoizedProps))&&ul&&Ne(a),al(a),e===13){if(!la)throw Error(E(316));if(a=a.memoizedState,a=a!==null?a.dehydrated:null,!a)throw Error(E(317));ul=s0(a)}else if(e===31){if(a=a.memoizedState,a=a!==null?a.dehydrated:null,!a)throw Error(E(317));ul=m0(a)}else ul=Ml&&e===27?n0(a.type,ul):Yl?md(a.stateNode):null;return!0}function nc(){la&&(ul=Yl=null,Dt=!1)}function vf(){var a=on;return a!==null&&(Za===null?Za=a:Za.push.apply(Za,a),on=null),a}function Ua(a){on===null?on=[a]:on.push(a)}function Qu(a,e,n){se?(tt(Su,e._currentValue),e._currentValue=n):(tt(Su,e._currentValue2),e._currentValue2=n)}function Il(a){var e=Su.current;se?a._currentValue=e:a._currentValue2=e,G(Su)}function ce(a,e,n){for(;a!==null;){var i=a.alternate;if((a.childLanes&e)!==e?(a.childLanes|=e,i!==null&&(i.childLanes|=e)):i!==null&&(i.childLanes&e)!==e&&(i.childLanes|=e),a===n)break;a=a.return}}function ai(a,e,n,i){var m=a.child;for(m!==null&&(m.return=a);m!==null;){var p=m.dependencies;if(p!==null){var v=m.child;p=p.firstContext;t:for(;p!==null;){var T=p;p=m;for(var b=0;b<e.length;b++)if(T.context===e[b]){p.lanes|=n,T=p.alternate,T!==null&&(T.lanes|=n),ce(p.return,n,a),i||(v=null);break t}p=T.next}}else if(m.tag===18){if(v=m.return,v===null)throw Error(E(341));v.lanes|=n,p=v.alternate,p!==null&&(p.lanes|=n),ce(v,n,a),v=null}else v=m.child;if(v!==null)v.return=m;else for(v=m;v!==null;){if(v===a){v=null;break}if(m=v.sibling,m!==null){m.return=v.return,v=m;break}v=v.return}m=v}}function Yu(a,e,n,i){a=null;for(var m=e,p=!1;m!==null;){if(!p){if((m.flags&524288)!==0)p=!0;else if((m.flags&262144)!==0)break}if(m.tag===10){var v=m.alternate;if(v===null)throw Error(E(387));if(v=v.memoizedProps,v!==null){var T=m.type;ea(m.pendingProps.value,v.value)||(a!==null?a.push(T):a=[T])}}else if(m===os.current){if(v=m.alternate,v===null)throw Error(E(387));v.memoizedState.memoizedState!==m.memoizedState.memoizedState&&(a!==null?a.push(Gn):a=[Gn])}m=m.return}a!==null&&ai(e,a,n,i),e.flags|=262144}function ei(a){for(a=a.firstContext;a!==null;){var e=a.context;if(!ea(se?e._currentValue:e._currentValue2,a.memoizedValue))return!0;a=a.next}return!1}function ca(a){Na=a,nl=null,a=a.dependencies,a!==null&&(a.firstContext=null)}function wl(a){return sp(Na,a)}function hf(a,e){return Na===null&&ca(a),sp(a,e)}function sp(a,e){var n=se?e._currentValue:e._currentValue2;if(e={context:e,memoizedValue:n,next:null},nl===null){if(a===null)throw Error(E(308));nl=e,a.dependencies={lanes:0,firstContext:e},a.flags|=524288}else nl=nl.next=e;return n}function pp(){return{controller:new Eu,data:new Map,refCount:0}}function cc(a){a.refCount--,a.refCount===0&&da(Zv,function(){a.controller.abort()})}function Wo(){}function Re(a){a!==xa&&a.next===null&&(xa===null?Al=xa=a:xa=xa.next=a),ji=!0,Td||(Td=!0,Nv())}function ic(a,e){if(!qc&&ji){qc=!0;do for(var n=!1,i=Al;i!==null;){if(!e)if(a!==0){var m=i.pendingLanes;if(m===0)var p=0;else{var v=i.suspendedLanes,T=i.pingedLanes;p=(1<<31-Ya(42|a)+1)-1,p&=m&~(v&~T),p=p&201326741?p&201326741|1:p?p|2:0}p!==0&&(n=!0,$o(i,p))}else p=Ut,p=$t(i,i===It?p:0,i.cancelPendingCommit!==null||i.timeoutHandle!==an),(p&3)===0||we(i,p)||(n=!0,$o(i,p));i=i.next}while(n);qc=!1}}function vy(){hy()}function hy(){ji=Td=!1;var a=0;Ke!==0&&nd()&&(a=Ke);for(var e=Xt(),n=null,i=Al;i!==null;){var m=i.next,p=Fo(i,e);p===0?(i.next=null,n===null?Al=m:n.next=m,m===null&&(xa=n)):(n=i,(a!==0||(p&3)!==0)&&(ji=!0)),i=m}Kt!==0&&Kt!==5||ic(a,!1),Ke!==0&&(Ke=0)}function Fo(a,e){for(var n=a.suspendedLanes,i=a.pingedLanes,m=a.expirationTimes,p=a.pendingLanes&-62914561;0<p;){var v=31-Ya(p),T=1<<v,b=m[v];b===-1?((T&n)===0||(T&i)!==0)&&(m[v]=gn(T,e)):b<=e&&(a.expiredLanes|=T),p&=~T}if(e=It,n=Ut,n=$t(a,a===e?n:0,a.cancelPendingCommit!==null||a.timeoutHandle!==an),i=a.callbackNode,n===0||a===e&&(rt===2||rt===9)||a.cancelPendingCommit!==null)return i!==null&&i!==null&&Tt(i),a.callbackNode=null,a.callbackPriority=0;if((n&3)===0||we(a,n)){if(e=n&-n,e===a.callbackPriority)return e;switch(i!==null&&Tt(i),ll(n)){case 2:case 8:n=nn;break;case 32:n=cn;break;case 268435456:n=bi;break;default:n=cn}return i=Ca.bind(null,a),n=cs(n,i),a.callbackPriority=e,a.callbackNode=n,e}return i!==null&&i!==null&&Tt(i),a.callbackPriority=2,a.callbackNode=null,2}function Ca(a,e){if(Kt!==0&&Kt!==5)return a.callbackNode=null,a.callbackPriority=0,null;var n=a.callbackNode;if(Dl()&&a.callbackNode!==n)return null;var i=Ut;return i=$t(a,a===It?i:0,a.cancelPendingCommit!==null||a.timeoutHandle!==an),i===0?null:(xp(a,i,e),Fo(a,Xt()),a.callbackNode!=null&&a.callbackNode===n?Ca.bind(null,a):null)}function $o(a,e){if(Dl())return null;xp(a,e,!0)}function Nv(){Ky?yu(function(){(Ht&6)!==0?cs(H0,vy):hy()}):cs(H0,vy)}function Io(){if(Ke===0){var a=Qi;a===0&&(a=yo,yo<<=1,(yo&261888)===0&&(yo=256)),Ke=a}return Ke}function Sy(a,e){if(Eo===null){var n=Eo=[];gd=0,Qi=Io(),Yi={status:"pending",value:void 0,then:function(i){n.push(i)}}}return gd++,e.then(Ma,Ma),e}function Ma(){if(--gd===0&&Eo!==null){Yi!==null&&(Yi.status="fulfilled");var a=Eo;Eo=null,Qi=0,Yi=null;for(var e=0;e<a.length;e++)(0,a[e])()}}function Gu(a,e){var n=[],i={status:"pending",value:null,reason:null,then:function(m){n.push(m)}};return a.then(function(){i.status="fulfilled",i.value=e;for(var m=0;m<n.length;m++)(0,n[m])(e)},function(m){for(i.status="rejected",i.reason=m,m=0;m<n.length;m++)(0,n[m])(void 0)}),i}function wo(){var a=Xn.current;return a!==null?a:It.pooledCache}function ui(a,e){e===null?tt(Xn,Xn.current):tt(Xn,e.pool)}function Po(){var a=wo();return a===null?null:{parent:se?sl._currentValue:sl._currentValue2,pool:a}}function Sf(a,e){if(ea(a,e))return!0;if(typeof a!="object"||a===null||typeof e!="object"||e===null)return!1;var n=Object.keys(a),i=Object.keys(e);if(n.length!==i.length)return!1;for(i=0;i<n.length;i++){var m=n[i];if(!Ed.call(e,m)||!ea(a[m],e[m]))return!1}return!0}function dp(a){return a=a.status,a==="fulfilled"||a==="rejected"}function Vu(a,e,n){switch(n=a[n],n===void 0?a.push(e):n!==e&&(e.then(Wo,Wo),e=n),e.status){case"fulfilled":return e.value;case"rejected":throw a=e.reason,fc(a),a;default:if(typeof e.status=="string")e.then(Wo,Wo);else{if(a=It,a!==null&&100<a.shellSuspendCounter)throw Error(E(482));a=e,a.status="pending",a.then(function(i){if(e.status==="pending"){var m=e;m.status="fulfilled",m.value=i}},function(i){if(e.status==="pending"){var m=e;m.status="rejected",m.reason=i}})}switch(e.status){case"fulfilled":return e.value;case"rejected":throw a=e.reason,fc(a),a}throw he=e,Gi}}function Oa(a){try{var e=a._init;return e(a._payload)}catch(n){throw n!==null&&typeof n=="object"&&typeof n.then=="function"?(he=n,Gi):n}}function Ef(){if(he===null)throw Error(E(459));var a=he;return he=null,a}function fc(a){if(a===Gi||a===ps)throw Error(E(483))}function La(a){var e=zo;return zo+=1,Se===null&&(Se=[]),Vu(Se,a,e)}function oc(a,e){e=e.props.ref,a.ref=e!==void 0?e:null}function mc(a,e){throw e.$$typeof===rm?Error(E(525)):(a=Object.prototype.toString.call(e),Error(E(31,a==="[object Object]"?"object with keys {"+Object.keys(e).join(", ")+"}":a)))}function yp(a){function e(R,A){if(a){var M=R.deletions;M===null?(R.deletions=[A],R.flags|=16):M.push(A)}}function n(R,A){if(!a)return null;for(;A!==null;)e(R,A),A=A.sibling;return null}function i(R){for(var A=new Map;R!==null;)R.key!==null?A.set(R.key,R):A.set(R.index,R),R=R.sibling;return A}function m(R,A){return R=mu(R,A),R.index=0,R.sibling=null,R}function p(R,A,M){return R.index=M,a?(M=R.alternate,M!==null?(M=M.index,M<A?(R.flags|=67108866,A):M):(R.flags|=67108866,A)):(R.flags|=1048576,A)}function v(R){return a&&R.alternate===null&&(R.flags|=67108866),R}function T(R,A,M,x){return A===null||A.tag!==6?(A=to(M,R.mode,x),A.return=R,A):(A=m(A,M),A.return=R,A)}function b(R,A,M,x){var w=M.type;return w===_c?Z(R,A,M.props.children,x,M.key):A!==null&&(A.elementType===w||typeof w=="object"&&w!==null&&w.$$typeof===Qn&&Oa(w)===A.type)?(A=m(A,M.props),oc(A,M),A.return=R,A):(A=kf(M.type,M.key,M.props,null,R.mode,x),oc(A,M),A.return=R,A)}function Y(R,A,M,x){return A===null||A.tag!==4||A.stateNode.containerInfo!==M.containerInfo||A.stateNode.implementation!==M.implementation?(A=xm(M,R.mode,x),A.return=R,A):(A=m(A,M.children||[]),A.return=R,A)}function Z(R,A,M,x,w){return A===null||A.tag!==7?(A=tn(M,R.mode,x,w),A.return=R,A):(A=m(A,M),A.return=R,A)}function X(R,A,M){if(typeof A=="string"&&A!==""||typeof A=="number"||typeof A=="bigint")return A=to(""+A,R.mode,M),A.return=R,A;if(typeof A=="object"&&A!==null){switch(A.$$typeof){case ao:return M=kf(A.type,A.key,A.props,null,R.mode,M),oc(M,A),M.return=R,M;case jn:return A=xm(A,R.mode,M),A.return=R,A;case Qn:return A=Oa(A),X(R,A,M)}if(Yn(A)||ol(A))return A=tn(A,R.mode,M,null),A.return=R,A;if(typeof A.then=="function")return X(R,La(A),M);if(A.$$typeof===ln)return X(R,hf(R,A),M);mc(R,A)}return null}function J(R,A,M,x){var w=A!==null?A.key:null;if(typeof M=="string"&&M!==""||typeof M=="number"||typeof M=="bigint")return w!==null?null:T(R,A,""+M,x);if(typeof M=="object"&&M!==null){switch(M.$$typeof){case ao:return M.key===w?b(R,A,M,x):null;case jn:return M.key===w?Y(R,A,M,x):null;case Qn:return M=Oa(M),J(R,A,M,x)}if(Yn(M)||ol(M))return w!==null?null:Z(R,A,M,x,null);if(typeof M.then=="function")return J(R,A,La(M),x);if(M.$$typeof===ln)return J(R,A,hf(R,M),x);mc(R,M)}return null}function lt(R,A,M,x,w){if(typeof x=="string"&&x!==""||typeof x=="number"||typeof x=="bigint")return R=R.get(M)||null,T(A,R,""+x,w);if(typeof x=="object"&&x!==null){switch(x.$$typeof){case ao:return R=R.get(x.key===null?M:x.key)||null,b(A,R,x,w);case jn:return R=R.get(x.key===null?M:x.key)||null,Y(A,R,x,w);case Qn:return x=Oa(x),lt(R,A,M,x,w)}if(Yn(x)||ol(x))return R=R.get(M)||null,Z(A,R,x,w,null);if(typeof x.then=="function")return lt(R,A,M,La(x),w);if(x.$$typeof===ln)return lt(R,A,M,hf(A,x),w);mc(A,x)}return null}function cl(R,A,M,x){for(var w=null,pl=null,et=A,Yt=A=0,Ct=null;et!==null&&Yt<M.length;Yt++){et.index>Yt?(Ct=et,et=null):Ct=et.sibling;var bt=J(R,et,M[Yt],x);if(bt===null){et===null&&(et=Ct);break}a&&et&&bt.alternate===null&&e(R,et),A=p(bt,A,Yt),pl===null?w=bt:pl.sibling=bt,pl=bt,et=Ct}if(Yt===M.length)return n(R,et),Dt&&xt(R,Yt),w;if(et===null){for(;Yt<M.length;Yt++)et=X(R,M[Yt],x),et!==null&&(A=p(et,A,Yt),pl===null?w=et:pl.sibling=et,pl=et);return Dt&&xt(R,Yt),w}for(et=i(et);Yt<M.length;Yt++)Ct=lt(et,R,Yt,M[Yt],x),Ct!==null&&(a&&Ct.alternate!==null&&et.delete(Ct.key===null?Yt:Ct.key),A=p(Ct,A,Yt),pl===null?w=Ct:pl.sibling=Ct,pl=Ct);return a&&et.forEach(function(dn){return e(R,dn)}),Dt&&xt(R,Yt),w}function Gl(R,A,M,x){if(M==null)throw Error(E(151));for(var w=null,pl=null,et=A,Yt=A=0,Ct=null,bt=M.next();et!==null&&!bt.done;Yt++,bt=M.next()){et.index>Yt?(Ct=et,et=null):Ct=et.sibling;var dn=J(R,et,bt.value,x);if(dn===null){et===null&&(et=Ct);break}a&&et&&dn.alternate===null&&e(R,et),A=p(dn,A,Yt),pl===null?w=dn:pl.sibling=dn,pl=dn,et=Ct}if(bt.done)return n(R,et),Dt&&xt(R,Yt),w;if(et===null){for(;!bt.done;Yt++,bt=M.next())bt=X(R,bt.value,x),bt!==null&&(A=p(bt,A,Yt),pl===null?w=bt:pl.sibling=bt,pl=bt);return Dt&&xt(R,Yt),w}for(et=i(et);!bt.done;Yt++,bt=M.next())bt=lt(et,R,Yt,bt.value,x),bt!==null&&(a&&bt.alternate!==null&&et.delete(bt.key===null?Yt:bt.key),A=p(bt,A,Yt),pl===null?w=bt:pl.sibling=bt,pl=bt);return a&&et.forEach(function(Ao){return e(R,Ao)}),Dt&&xt(R,Yt),w}function Gc(R,A,M,x){if(typeof M=="object"&&M!==null&&M.type===_c&&M.key===null&&(M=M.props.children),typeof M=="object"&&M!==null){switch(M.$$typeof){case ao:t:{for(var w=M.key;A!==null;){if(A.key===w){if(w=M.type,w===_c){if(A.tag===7){n(R,A.sibling),x=m(A,M.props.children),x.return=R,R=x;break t}}else if(A.elementType===w||typeof w=="object"&&w!==null&&w.$$typeof===Qn&&Oa(w)===A.type){n(R,A.sibling),x=m(A,M.props),oc(x,M),x.return=R,R=x;break t}n(R,A);break}else e(R,A);A=A.sibling}M.type===_c?(x=tn(M.props.children,R.mode,x,M.key),x.return=R,R=x):(x=kf(M.type,M.key,M.props,null,R.mode,x),oc(x,M),x.return=R,R=x)}return v(R);case jn:t:{for(w=M.key;A!==null;){if(A.key===w)if(A.tag===4&&A.stateNode.containerInfo===M.containerInfo&&A.stateNode.implementation===M.implementation){n(R,A.sibling),x=m(A,M.children||[]),x.return=R,R=x;break t}else{n(R,A);break}else e(R,A);A=A.sibling}x=xm(M,R.mode,x),x.return=R,R=x}return v(R);case Qn:return M=Oa(M),Gc(R,A,M,x)}if(Yn(M))return cl(R,A,M,x);if(ol(M)){if(w=ol(M),typeof w!="function")throw Error(E(150));return M=w.call(M),Gl(R,A,M,x)}if(typeof M.then=="function")return Gc(R,A,La(M),x);if(M.$$typeof===ln)return Gc(R,A,hf(R,M),x);mc(R,M)}return typeof M=="string"&&M!==""||typeof M=="number"||typeof M=="bigint"?(M=""+M,A!==null&&A.tag===6?(n(R,A.sibling),x=m(A,M),x.return=R,R=x):(n(R,A),x=to(M,R.mode,x),x.return=R,R=x),v(R)):n(R,A)}return function(R,A,M,x){try{zo=0;var w=Gc(R,A,M,x);return Se=null,w}catch(et){if(et===Gi||et===ps)throw et;var pl=h(29,et,null,R.mode);return pl.lanes=x,pl.return=R,pl}finally{}}}function ia(){for(var a=Je,e=_d=Je=0;e<a;){var n=Ee[e];Ee[e++]=null;var i=Ee[e];Ee[e++]=null;var m=Ee[e];Ee[e++]=null;var p=Ee[e];if(Ee[e++]=null,i!==null&&m!==null){var v=i.pending;v===null?m.next=m:(m.next=v.next,v.next=m),i.pending=m}p!==0&&ni(n,m,p)}}function xu(a,e,n,i){Ee[Je++]=a,Ee[Je++]=e,Ee[Je++]=n,Ee[Je++]=i,_d|=i,a.lanes|=i,a=a.alternate,a!==null&&(a.lanes|=i)}function Xu(a,e,n,i){return xu(a,e,n,i),sc(a)}function Nn(a,e){return xu(a,null,null,e),sc(a)}function ni(a,e,n){a.lanes|=n;var i=a.alternate;i!==null&&(i.lanes|=n);for(var m=!1,p=a.return;p!==null;)p.childLanes|=n,i=p.alternate,i!==null&&(i.childLanes|=n),p.tag===22&&(a=p.stateNode,a===null||a._visibility&1||(m=!0)),a=p,p=p.return;return a.tag===3?(p=a.stateNode,m&&e!==null&&(m=31-Ya(n),a=p.hiddenUpdates,i=a[m],i===null?a[m]=[e]:i.push(e),e.lane=n|536870912),p):null}function sc(a){if(50<Ki)throw Ki=0,Ms=null,Error(E(185));for(var e=a.return;e!==null;)a=e,e=a.return;return a.tag===3?a.stateNode:null}function zf(a){a.updateQueue={baseState:a.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,lanes:0,hiddenCallbacks:null},callbacks:null}}function pc(a,e){a=a.updateQueue,e.updateQueue===a&&(e.updateQueue={baseState:a.baseState,firstBaseUpdate:a.firstBaseUpdate,lastBaseUpdate:a.lastBaseUpdate,shared:a.shared,callbacks:null})}function Wa(a){return{lane:a,tag:0,payload:null,callback:null,next:null}}function ke(a,e,n){var i=a.updateQueue;if(i===null)return null;if(i=i.shared,(Ht&2)!==0){var m=i.pending;return m===null?e.next=e:(e.next=m.next,m.next=e),i.pending=e,e=sc(a),ni(a,null,n),e}return xu(a,i,e,n),sc(a)}function Tf(a,e,n){if(e=e.updateQueue,e!==null&&(e=e.shared,(n&4194048)!==0)){var i=e.lanes;i&=a.pendingLanes,n|=i,e.lanes=n,Vt(a,n)}}function vp(a,e){var n=a.updateQueue,i=a.alternate;if(i!==null&&(i=i.updateQueue,n===i)){var m=null,p=null;if(n=n.firstBaseUpdate,n!==null){do{var v={lane:n.lane,tag:n.tag,payload:n.payload,callback:null,next:null};p===null?m=p=v:p=p.next=v,n=n.next}while(n!==null);p===null?m=p=e:p=p.next=e}else m=p=e;n={baseState:i.baseState,firstBaseUpdate:m,lastBaseUpdate:p,shared:i.shared,callbacks:i.callbacks},a.updateQueue=n;return}a=n.lastBaseUpdate,a===null?n.firstBaseUpdate=e:a.next=e,n.lastBaseUpdate=e}function ci(){if(Dd){var a=Yi;if(a!==null)throw a}}function dc(a,e,n,i){Dd=!1;var m=a.updateQueue;Zn=!1;var p=m.firstBaseUpdate,v=m.lastBaseUpdate,T=m.shared.pending;if(T!==null){m.shared.pending=null;var b=T,Y=b.next;b.next=null,v===null?p=Y:v.next=Y,v=b;var Z=a.alternate;Z!==null&&(Z=Z.updateQueue,T=Z.lastBaseUpdate,T!==v&&(T===null?Z.firstBaseUpdate=Y:T.next=Y,Z.lastBaseUpdate=b))}if(p!==null){var X=m.baseState;v=0,Z=Y=b=null,T=p;do{var J=T.lane&-536870913,lt=J!==T.lane;if(lt?(Ut&J)===J:(i&J)===J){J!==0&&J===Qi&&(Dd=!0),Z!==null&&(Z=Z.next={lane:0,tag:T.tag,payload:T.payload,callback:null,next:null});t:{var cl=a,Gl=T;J=e;var Gc=n;switch(Gl.tag){case 1:if(cl=Gl.payload,typeof cl=="function"){X=cl.call(Gc,X,J);break t}X=cl;break t;case 3:cl.flags=cl.flags&-65537|128;case 0:if(cl=Gl.payload,J=typeof cl=="function"?cl.call(Gc,X,J):cl,J==null)break t;X=$a({},X,J);break t;case 2:Zn=!0}}J=T.callback,J!==null&&(a.flags|=64,lt&&(a.flags|=8192),lt=m.callbacks,lt===null?m.callbacks=[J]:lt.push(J))}else lt={lane:J,tag:T.tag,payload:T.payload,callback:T.callback,next:null},Z===null?(Y=Z=lt,b=X):Z=Z.next=lt,v|=J;if(T=T.next,T===null){if(T=m.shared.pending,T===null)break;lt=T,T=lt.next,lt.next=null,m.lastBaseUpdate=lt,m.shared.pending=null}}while(!0);Z===null&&(b=X),m.baseState=b,m.firstBaseUpdate=Y,m.lastBaseUpdate=Z,p===null&&(m.shared.lanes=0),Jn|=v,a.lanes=v,a.memoizedState=X}}function hp(a,e){if(typeof a!="function")throw Error(E(191,a));a.call(e)}function Ey(a,e){var n=a.callbacks;if(n!==null)for(a.callbacks=null,a=0;a<n.length;a++)hp(n[a],e)}function W(a,e){a=sn,tt(ys,a),tt(zu,e),sn=a|e.baseLanes}function gf(){tt(ys,sn),tt(zu,zu.current)}function Zu(){sn=ys.current,G(zu),G(ys)}function ru(a){var e=a.alternate;tt(Nl,Nl.current&1),tt(wa,a),ze===null&&(e===null||zu.current!==null||e.memoizedState!==null)&&(ze=a)}function ii(a){tt(Nl,Nl.current),tt(wa,a),ze===null&&(ze=a)}function tu(a){a.tag===22?(tt(Nl,Nl.current),tt(wa,a),ze===null&&(ze=a)):Ku(a)}function Ku(){tt(Nl,Nl.current),tt(wa,wa.current)}function ba(a){G(wa),ze===a&&(ze=null),G(Nl)}function Ju(a){for(var e=a;e!==null;){if(e.tag===13){var n=e.memoizedState;if(n!==null&&(n=n.dehydrated,n===null||mo(n)||so(n)))return e}else if(e.tag===19&&(e.memoizedProps.revealOrder==="forwards"||e.memoizedProps.revealOrder==="backwards"||e.memoizedProps.revealOrder==="unstable_legacy-backwards"||e.memoizedProps.revealOrder==="together")){if((e.flags&128)!==0)return e}else if(e.child!==null){e.child.return=e,e=e.child;continue}if(e===a)break;for(;e.sibling===null;){if(e.return===null||e.return===a)return null;e=e.return}e.sibling.return=e.return,e=e.sibling}return null}function ml(){throw Error(E(321))}function Lu(a,e){if(e===null)return!1;for(var n=0;n<e.length&&n<a.length;n++)if(!ea(a[n],e[n]))return!1;return!0}function _f(a,e,n,i,m,p){return mn=p,pt=e,e.memoizedState=null,e.updateQueue=null,e.lanes=0,$.H=a===null||a.memoizedState===null?R0:Hd,jc=!1,p=n(i,m),jc=!1,Vi&&(p=ko(e,n,i,m)),fi(a),p}function fi(a){$.H=To;var e=Lt!==null&&Lt.next!==null;if(mn=0,bl=Lt=pt=null,vs=!1,xi=0,Xi=null,e)throw Error(E(300));a===null||ql||(a=a.dependencies,a!==null&&ei(a)&&(ql=!0))}function ko(a,e,n,i){pt=a;var m=0;do{if(Vi&&(Xi=null),xi=0,Vi=!1,25<=m)throw Error(E(301));if(m+=1,bl=Lt=null,a.updateQueue!=null){var p=a.updateQueue;p.lastEffect=null,p.events=null,p.stores=null,p.memoCache!=null&&(p.memoCache.index=0)}$.H=U0,p=e(n,i)}while(Vi);return p}function tm(){var a=$.H,e=a.useState()[0];return e=typeof e.then=="function"?Ce(e):e,a=a.useState()[0],(Lt!==null?Lt.memoizedState:null)!==a&&(pt.flags|=1024),e}function lu(){var a=hs!==0;return hs=0,a}function Ue(a,e,n){e.updateQueue=a.updateQueue,e.flags&=-2053,a.lanes&=~n}function Df(a){if(vs){for(a=a.memoizedState;a!==null;){var e=a.queue;e!==null&&(e.pending=null),a=a.next}vs=!1}mn=0,bl=Lt=pt=null,Vi=!1,xi=hs=0,Xi=null}function Pl(){var a={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return bl===null?pt.memoizedState=bl=a:bl=bl.next=a,bl}function Pt(){if(Lt===null){var a=pt.alternate;a=a!==null?a.memoizedState:null}else a=Lt.next;var e=bl===null?pt.memoizedState:bl.next;if(e!==null)bl=e,Lt=a;else{if(a===null)throw pt.alternate===null?Error(E(467)):Error(E(310));Lt=a,a={memoizedState:Lt.memoizedState,baseState:Lt.baseState,baseQueue:Lt.baseQueue,queue:Lt.queue,next:null},bl===null?pt.memoizedState=bl=a:bl=bl.next=a}return bl}function yc(){return{lastEffect:null,events:null,stores:null,memoCache:null}}function Ce(a){var e=xi;return xi+=1,Xi===null&&(Xi=[]),a=Vu(Xi,a,e),e=pt,(bl===null?e.memoizedState:bl.next)===null&&(e=e.alternate,$.H=e===null||e.memoizedState===null?R0:Hd),a}function Jt(a){if(a!==null&&typeof a=="object"){if(typeof a.then=="function")return Ce(a);if(a.$$typeof===ln)return wl(a)}throw Error(E(438,String(a)))}function oi(a){var e=null,n=pt.updateQueue;if(n!==null&&(e=n.memoCache),e==null){var i=pt.alternate;i!==null&&(i=i.updateQueue,i!==null&&(i=i.memoCache,i!=null&&(e={data:i.data.map(function(m){return m.slice()}),index:0})))}if(e==null&&(e={data:[],index:0}),n===null&&(n=yc(),pt.updateQueue=n),n.memoCache=e,n=e.data[e.index],n===void 0)for(n=e.data[e.index]=Array(a),i=0;i<a;i++)n[i]=su;return e.index++,n}function au(a,e){return typeof e=="function"?e(a):e}function mi(a){var e=Pt();return Wu(e,Lt,a)}function Wu(a,e,n){var i=a.queue;if(i===null)throw Error(E(311));i.lastRenderedReducer=n;var m=a.baseQueue,p=i.pending;if(p!==null){if(m!==null){var v=m.next;m.next=p.next,p.next=v}e.baseQueue=m=p,i.pending=null}if(p=a.baseState,m===null)a.memoizedState=p;else{e=m.next;var T=v=null,b=null,Y=e,Z=!1;do{var X=Y.lane&-536870913;if(X!==Y.lane?(Ut&X)===X:(mn&X)===X){var J=Y.revertLane;if(J===0)b!==null&&(b=b.next={lane:0,revertLane:0,gesture:null,action:Y.action,hasEagerState:Y.hasEagerState,eagerState:Y.eagerState,next:null}),X===Qi&&(Z=!0);else if((mn&J)===J){Y=Y.next,J===Qi&&(Z=!0);continue}else X={lane:0,revertLane:Y.revertLane,gesture:null,action:Y.action,hasEagerState:Y.hasEagerState,eagerState:Y.eagerState,next:null},b===null?(T=b=X,v=p):b=b.next=X,pt.lanes|=J,Jn|=J;X=Y.action,jc&&n(p,X),p=Y.hasEagerState?Y.eagerState:n(p,X)}else J={lane:X,revertLane:Y.revertLane,gesture:Y.gesture,action:Y.action,hasEagerState:Y.hasEagerState,eagerState:Y.eagerState,next:null},b===null?(T=b=J,v=p):b=b.next=J,pt.lanes|=X,Jn|=X;Y=Y.next}while(Y!==null&&Y!==e);if(b===null?v=p:b.next=T,!ea(p,a.memoizedState)&&(ql=!0,Z&&(n=Yi,n!==null)))throw n;a.memoizedState=p,a.baseState=v,a.baseQueue=b,i.lastRenderedState=p}return m===null&&(i.lanes=0),[a.memoizedState,i.dispatch]}function vc(a){var e=Pt(),n=e.queue;if(n===null)throw Error(E(311));n.lastRenderedReducer=a;var i=n.dispatch,m=n.pending,p=e.memoizedState;if(m!==null){n.pending=null;var v=m=m.next;do p=a(p,v.action),v=v.next;while(v!==m);ea(p,e.memoizedState)||(ql=!0),e.memoizedState=p,e.baseQueue===null&&(e.baseState=p),n.lastRenderedState=p}return[p,i]}function Me(a,e,n){var i=pt,m=Pt(),p=Dt;if(p){if(n===void 0)throw Error(E(407));n=n()}else n=e();var v=!ea((Lt||m).memoizedState,n);if(v&&(m.memoizedState=n,ql=!0),m=m.queue,am(Hf.bind(null,i,m,a),[a]),m.getSnapshot!==e||v||bl!==null&&bl.memoizedState.tag&1){if(i.flags|=2048,Ta(9,{destroy:void 0},eu.bind(null,i,m,n,e),null),It===null)throw Error(E(349));p||(mn&127)!==0||zy(i,e,n)}return n}function zy(a,e,n){a.flags|=16384,a={getSnapshot:e,value:n},e=pt.updateQueue,e===null?(e=yc(),pt.updateQueue=e,e.stores=[a]):(n=e.stores,n===null?e.stores=[a]:n.push(a))}function eu(a,e,n,i){e.value=n,e.getSnapshot=i,si(e)&&Af(a)}function Hf(a,e,n){return n(function(){si(e)&&Af(a)})}function si(a){var e=a.getSnapshot;a=a.value;try{var n=e();return!ea(a,n)}catch{return!0}}function Af(a){var e=Nn(a,2);e!==null&&_a(e,a,2)}function za(a){var e=Pl();if(typeof a=="function"){var n=a;if(a=n(),jc){mt(!0);try{n()}finally{mt(!1)}}}return e.memoizedState=e.baseState=a,e.queue={pending:null,lanes:0,dispatch:null,lastRenderedReducer:au,lastRenderedState:a},e}function qa(a,e,n,i){return a.baseState=n,Wu(a,Lt,typeof i=="function"?i:au)}function uu(a,e,n,i,m){if(Un(a))throw Error(E(485));if(a=e.action,a!==null){var p={payload:m,action:a,next:null,isTransition:!0,status:"pending",value:null,reason:null,listeners:[],then:function(v){p.listeners.push(v)}};$.T!==null?n(!0):p.isTransition=!1,i(p),n=e.pending,n===null?(p.next=e.pending=p,Oe(e,p)):(p.next=n.next,e.pending=n.next=p)}}function Oe(a,e){var n=e.action,i=e.payload,m=a.state;if(e.isTransition){var p=$.T,v={};$.T=v;try{var T=n(m,i),b=$.S;b!==null&&b(v,T),be(a,e,T)}catch(Y){Nf(a,e,Y)}finally{p!==null&&v.types!==null&&(p.types=v.types),$.T=p}}else try{p=n(m,i),be(a,e,p)}catch(Y){Nf(a,e,Y)}}function be(a,e,n){n!==null&&typeof n=="object"&&typeof n.then=="function"?n.then(function(i){qe(a,e,i)},function(i){return Nf(a,e,i)}):qe(a,e,n)}function qe(a,e,n){e.status="fulfilled",e.value=n,lm(e),a.state=n,e=a.pending,e!==null&&(n=e.next,n===e?a.pending=null:(n=n.next,e.next=n,Oe(a,n)))}function Nf(a,e,n){var i=a.pending;if(a.pending=null,i!==null){i=i.next;do e.status="rejected",e.reason=n,lm(e),e=e.next;while(e!==i)}a.action=null}function lm(a){a=a.listeners;for(var e=0;e<a.length;e++)(0,a[e])()}function Sp(a,e){return e}function Be(a,e){if(Dt){var n=It.formState;if(n!==null){t:{var i=pt;if(Dt){if(ul){var m=e0(ul,ve);if(m){ul=md(m),i=u0(m);break t}}Ne(i)}i=!1}i&&(e=n[0])}}n=Pl(),n.memoizedState=n.baseState=e,i={pending:null,lanes:0,dispatch:null,lastRenderedReducer:Sp,lastRenderedState:e},n.queue=i,n=fm.bind(null,pt,i),i.dispatch=n,i=za(!1);var p=di.bind(null,pt,!1,i.queue);return i=Pl(),m={state:e,dispatch:null,action:a,pending:null},i.queue=m,n=uu.bind(null,pt,m,p,n),m.dispatch=n,i.memoizedState=a,[e,n,!1]}function Ep(a){var e=Pt();return je(e,Lt,a)}function je(a,e,n){if(e=Wu(a,e,Sp)[0],a=mi(au)[0],typeof e=="object"&&e!==null&&typeof e.then=="function")try{var i=Ce(e)}catch(v){throw v===Gi?ps:v}else i=e;e=Pt();var m=e.queue,p=m.dispatch;return n!==e.memoizedState&&(pt.flags|=2048,Ta(9,{destroy:void 0},Rf.bind(null,m,n),null)),[i,p,a]}function Rf(a,e){a.action=e}function Uf(a){var e=Pt(),n=Lt;if(n!==null)return je(e,n,a);Pt(),e=e.memoizedState,n=Pt();var i=n.queue.dispatch;return n.memoizedState=a,[e,i,!1]}function Ta(a,e,n,i){return a={tag:a,create:n,deps:i,inst:e,next:null},e=pt.updateQueue,e===null&&(e=yc(),pt.updateQueue=e),n=e.lastEffect,n===null?e.lastEffect=a.next=a:(i=n.next,n.next=a,a.next=i,e.lastEffect=a),a}function hc(){return Pt().memoizedState}function Cf(a,e,n,i){var m=Pl();pt.flags|=a,m.memoizedState=Ta(1|e,{destroy:void 0},n,i===void 0?null:i)}function pi(a,e,n,i){var m=Pt();i=i===void 0?null:i;var p=m.memoizedState.inst;Lt!==null&&i!==null&&Lu(i,Lt.memoizedState.deps)?m.memoizedState=Ta(e,p,n,i):(pt.flags|=a,m.memoizedState=Ta(1|e,p,n,i))}function zp(a,e){Cf(8390656,8,a,e)}function am(a,e){pi(2048,8,a,e)}function Ty(a){pt.flags|=4;var e=pt.updateQueue;if(e===null)e=yc(),pt.updateQueue=e,e.events=[a];else{var n=e.events;n===null?e.events=[a]:n.push(a)}}function em(a){var e=Pt().memoizedState;return Ty({ref:e,nextImpl:a}),function(){if((Ht&2)!==0)throw Error(E(440));return e.impl.apply(void 0,arguments)}}function Tp(a,e){return pi(4,2,a,e)}function um(a,e){return pi(4,4,a,e)}function gy(a,e){if(typeof e=="function"){a=a();var n=e(a);return function(){typeof n=="function"?n():e(null)}}if(e!=null)return a=a(),e.current=a,function(){e.current=null}}function gp(a,e,n){n=n!=null?n.concat([a]):null,pi(4,4,gy.bind(null,e,a),n)}function _p(){}function nm(a,e){var n=Pt();e=e===void 0?null:e;var i=n.memoizedState;return e!==null&&Lu(e,i[1])?i[0]:(n.memoizedState=[a,e],a)}function Mf(a,e){var n=Pt();e=e===void 0?null:e;var i=n.memoizedState;if(e!==null&&Lu(e,i[1]))return i[0];if(i=a(),jc){mt(!0);try{a()}finally{mt(!1)}}return n.memoizedState=[i,e],i}function cm(a,e,n){return n===void 0||(mn&1073741824)!==0&&(Ut&261930)===0?a.memoizedState=e:(a.memoizedState=n,a=Ff(),pt.lanes|=a,Jn|=a,n)}function Of(a,e,n,i){return ea(n,e)?n:zu.current!==null?(a=cm(a,n,i),ea(a,e)||(ql=!0),a):(mn&42)===0||(mn&1073741824)!==0&&(Ut&261930)===0?(ql=!0,a.memoizedState=n):(a=Ff(),pt.lanes|=a,Jn|=a,e)}function Dp(a,e,n,i,m){var p=du();Ql(p!==0&&8>p?p:8);var v=$.T,T={};$.T=T,di(a,!1,e,n);try{var b=m(),Y=$.S;if(Y!==null&&Y(T,b),b!==null&&typeof b=="object"&&typeof b.then=="function"){var Z=Gu(b,i);Rn(a,e,Z,Qa(a))}else Rn(a,e,i,Qa(a))}catch(X){Rn(a,e,{then:function(){},status:"rejected",reason:X},Qa())}finally{Ql(p),v!==null&&T.types!==null&&(v.types=T.types),$.T=v}}function Hp(a){var e=a.memoizedState;if(e!==null)return e;e={memoizedState:Ha,baseState:Ha,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:au,lastRenderedState:Ha},next:null};var n={};return e.next={memoizedState:n,baseState:n,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:au,lastRenderedState:n},next:null},a.memoizedState=e,a=a.alternate,a!==null&&(a.memoizedState=e),e}function im(){return wl(Gn)}function Fu(){return Pt().memoizedState}function Ap(){return Pt().memoizedState}function _y(a){for(var e=a.return;e!==null;){switch(e.tag){case 24:case 3:var n=Qa();a=Wa(n);var i=ke(e,a,n);i!==null&&(_a(i,e,n),Tf(i,e,n)),e={cache:pp()},a.payload=e;return}e=e.return}}function kl(a,e,n){var i=Qa();n={lane:i,revertLane:0,gesture:null,action:n,hasEagerState:!1,eagerState:null,next:null},Un(a)?Np(e,n):(n=Xu(a,e,n,i),n!==null&&(_a(n,a,i),bf(n,e,i)))}function fm(a,e,n){var i=Qa();Rn(a,e,n,i)}function Rn(a,e,n,i){var m={lane:i,revertLane:0,gesture:null,action:n,hasEagerState:!1,eagerState:null,next:null};if(Un(a))Np(e,m);else{var p=a.alternate;if(a.lanes===0&&(p===null||p.lanes===0)&&(p=e.lastRenderedReducer,p!==null))try{var v=e.lastRenderedState,T=p(v,n);if(m.hasEagerState=!0,m.eagerState=T,ea(T,v))return xu(a,e,m,0),It===null&&ia(),!1}catch{}finally{}if(n=Xu(a,e,m,i),n!==null)return _a(n,a,i),bf(n,e,i),!0}return!1}function di(a,e,n,i){if(i={lane:2,revertLane:Io(),gesture:null,action:i,hasEagerState:!1,eagerState:null,next:null},Un(a)){if(e)throw Error(E(479))}else e=Xu(a,n,i,2),e!==null&&_a(e,a,2)}function Un(a){var e=a.alternate;return a===pt||e!==null&&e===pt}function Np(a,e){Vi=vs=!0;var n=a.pending;n===null?e.next=e:(e.next=n.next,n.next=e),a.pending=e}function bf(a,e,n){if((n&4194048)!==0){var i=e.lanes;i&=a.pendingLanes,n|=i,e.lanes=n,Vt(a,n)}}function om(a,e,n,i){e=a.memoizedState,n=n(i,e),n=n==null?e:$a({},e,n),a.memoizedState=n,a.lanes===0&&(a.updateQueue.baseState=n)}function qf(a,e,n,i,m,p,v){return a=a.stateNode,typeof a.shouldComponentUpdate=="function"?a.shouldComponentUpdate(i,p,v):e.prototype&&e.prototype.isPureReactComponent?!Sf(n,i)||!Sf(m,p):!0}function Rp(a,e,n,i){a=e.state,typeof e.componentWillReceiveProps=="function"&&e.componentWillReceiveProps(n,i),typeof e.UNSAFE_componentWillReceiveProps=="function"&&e.UNSAFE_componentWillReceiveProps(n,i),e.state!==a&&Ss.enqueueReplaceState(e,e.state,null)}function nu(a,e){var n=e;if("ref"in e){n={};for(var i in e)i!=="ref"&&(n[i]=e[i])}if(a=a.defaultProps){n===e&&(n=$a({},n));for(var m in a)n[m]===void 0&&(n[m]=a[m])}return n}function Bf(a,e){try{var n=a.onUncaughtError;n(e.value,{componentStack:e.stack})}catch(i){setTimeout(function(){throw i})}}function Up(a,e,n){try{var i=a.onCaughtError;i(n.value,{componentStack:n.stack,errorBoundary:e.tag===1?e.stateNode:null})}catch(m){setTimeout(function(){throw m})}}function yi(a,e,n){return n=Wa(n),n.tag=3,n.payload={element:null},n.callback=function(){Bf(a,e)},n}function jf(a){return a=Wa(a),a.tag=3,a}function mm(a,e,n,i){var m=n.type.getDerivedStateFromError;if(typeof m=="function"){var p=i.value;a.payload=function(){return m(p)},a.callback=function(){Up(e,n,i)}}var v=n.stateNode;v!==null&&typeof v.componentDidCatch=="function"&&(a.callback=function(){Up(e,n,i),typeof m!="function"&&(Ln===null?Ln=new Set([this]):Ln.add(this));var T=i.stack;this.componentDidCatch(i.value,{componentStack:T!==null?T:""})})}function fa(a,e,n,i,m){if(n.flags|=32768,i!==null&&typeof i=="object"&&typeof i.then=="function"){if(e=n.alternate,e!==null&&Yu(e,n,m,!0),n=wa.current,n!==null){switch(n.tag){case 31:case 13:return ze===null?_i():n.alternate===null&&vl===0&&(vl=3),n.flags&=-257,n.flags|=65536,n.lanes=m,i===ds?n.flags|=16384:(e=n.updateQueue,e===null?n.updateQueue=new Set([i]):e.add(i),Qm(a,i,m)),!1;case 22:return n.flags|=65536,i===ds?n.flags|=16384:(e=n.updateQueue,e===null?(e={transitions:null,markerInstances:null,retryQueue:new Set([i])},n.updateQueue=e):(n=e.retryQueue,n===null?e.retryQueue=new Set([i]):n.add(i)),Qm(a,i,m)),!1}throw Error(E(435,n.tag))}return Qm(a,i,m),_i(),!1}if(Dt)return e=wa.current,e!==null?((e.flags&65536)===0&&(e.flags|=256),e.flags|=65536,e.lanes=m,i!==zd&&(a=Error(E(422),{cause:i}),Ua(Rt(a,n)))):(i!==zd&&(e=Error(E(423),{cause:i}),Ua(Rt(e,n))),a=a.current.alternate,a.flags|=65536,m&=-m,a.lanes|=m,i=Rt(i,n),m=yi(a.stateNode,i,m),vp(a,m),vl!==4&&(vl=2)),!1;var p=Error(E(520),{cause:i});if(p=Rt(p,n),Do===null?Do=[p]:Do.push(p),vl!==4&&(vl=2),e===null)return!0;i=Rt(i,n),n=e;do{switch(n.tag){case 3:return n.flags|=65536,a=m&-m,n.lanes|=a,a=yi(n.stateNode,i,a),vp(n,a),!1;case 1:if(e=n.type,p=n.stateNode,(n.flags&128)===0&&(typeof e.getDerivedStateFromError=="function"||p!==null&&typeof p.componentDidCatch=="function"&&(Ln===null||!Ln.has(p))))return n.flags|=65536,m&=-m,n.lanes|=m,m=jf(m),mm(m,a,n,i),vp(n,m),!1}n=n.return}while(n!==null);return!1}function Xl(a,e,n,i){e.child=a===null?N0(e,null,n,i):Bc(e,a.child,n,i)}function Qf(a,e,n,i,m){n=n.render;var p=e.ref;if("ref"in i){var v={};for(var T in i)T!=="ref"&&(v[T]=i[T])}else v=i;return ca(e),i=_f(a,e,n,v,p,m),T=lu(),a!==null&&!ql?(Ue(a,e,m),Ba(a,e,m)):(Dt&&T&&Dn(e),e.flags|=1,Xl(a,e,i,m),e.child)}function sm(a,e,n,i,m){if(a===null){var p=n.type;return typeof p=="function"&&!Pf(p)&&p.defaultProps===void 0&&n.compare===null?(e.tag=15,e.type=p,pm(a,e,p,i,m)):(a=kf(n.type,null,i,e,e.mode,m),a.ref=e.ref,a.return=e,e.child=a)}if(p=a.child,!Si(a,m)){var v=p.memoizedProps;if(n=n.compare,n=n!==null?n:Sf,n(v,i)&&a.ref===e.ref)return Ba(a,e,m)}return e.flags|=1,a=mu(p,i),a.ref=e.ref,a.return=e,e.child=a}function pm(a,e,n,i,m){if(a!==null){var p=a.memoizedProps;if(Sf(p,i)&&a.ref===e.ref)if(ql=!1,e.pendingProps=i=p,Si(a,m))(a.flags&131072)!==0&&(ql=!0);else return e.lanes=a.lanes,Ba(a,e,m)}return Cp(a,e,n,i,m)}function $u(a,e,n,i){var m=i.children,p=a!==null?a.memoizedState:null;if(a===null&&e.stateNode===null&&(e.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),i.mode==="hidden"){if((e.flags&128)!==0){if(p=p!==null?p.baseLanes|n:n,a!==null){for(i=e.child=a.child,m=0;i!==null;)m=m|i.lanes|i.childLanes,i=i.sibling;i=m&~p}else i=0,e.child=null;return vi(a,e,p,n,i)}if((n&536870912)!==0)e.memoizedState={baseLanes:0,cachePool:null},a!==null&&ui(e,p!==null?p.cachePool:null),p!==null?W(e,p):gf(),tu(e);else return i=e.lanes=536870912,vi(a,e,p!==null?p.baseLanes|n:n,n,i)}else p!==null?(ui(e,p.cachePool),W(e,p),Ku(e),e.memoizedState=null):(a!==null&&ui(e,null),gf(),Ku(e));return Xl(a,e,m,n),e.child}function ie(a,e){return a!==null&&a.tag===22||e.stateNode!==null||(e.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),e.sibling}function vi(a,e,n,i,m){var p=wo();return p=p===null?null:{parent:se?sl._currentValue:sl._currentValue2,pool:p},e.memoizedState={baseLanes:n,cachePool:p},a!==null&&ui(e,null),gf(),tu(e),a!==null&&Yu(a,e,i,!0),e.childLanes=m,null}function Sc(a,e){return e=Qe({mode:e.mode,children:e.children},a.mode),e.ref=a.ref,a.child=e,e.return=a,e}function hi(a,e,n){return Bc(e,a.child,null,n),a=Sc(e,e.pendingProps),a.flags|=2,ba(e),e.memoizedState=null,a}function Yf(a,e,n){var i=e.pendingProps,m=(e.flags&128)!==0;if(e.flags&=-129,a===null){if(Dt){if(i.mode==="hidden")return a=Sc(e,i),e.lanes=536870912,ie(null,a);if(ii(e),(a=ul)?(a=f0(a,ve),a!==null&&(e.memoizedState={dehydrated:a,treeContext:fn!==null?{id:Aa,overflow:hu}:null,retryLane:536870912,hydrationErrors:null},n=Vm(a),n.return=e,e.child=n,Yl=e,ul=null)):a=null,a===null)throw Ne(e);return e.lanes=536870912,null}return Sc(e,i)}var p=a.memoizedState;if(p!==null){var v=p.dehydrated;if(ii(e),m)if(e.flags&256)e.flags&=-257,e=hi(a,e,n);else if(e.memoizedState!==null)e.child=a.child,e.flags|=128,e=null;else throw Error(E(558));else if(ql||Yu(a,e,n,!1),m=(n&a.childLanes)!==0,ql||m){if(i=It,i!==null&&(v=I(i,n),v!==0&&v!==p.retryLane))throw p.retryLane=v,Nn(a,v),_a(i,a,v),Es;_i(),e=hi(a,e,n)}else a=p.treeContext,la&&(ul=sd(v),Yl=e,Dt=!0,on=null,ve=!1,a!==null&&Ae(e,a)),e=Sc(e,i),e.flags|=4096;return e}return a=mu(a.child,{mode:i.mode,children:i.children}),a.ref=e.ref,e.child=a,a.return=e,a}function Gf(a,e){var n=e.ref;if(n===null)a!==null&&a.ref!==null&&(e.flags|=4194816);else{if(typeof n!="function"&&typeof n!="object")throw Error(E(284));(a===null||a.ref!==n)&&(e.flags|=4194816)}}function Cp(a,e,n,i,m){return ca(e),n=_f(a,e,n,i,void 0,m),i=lu(),a!==null&&!ql?(Ue(a,e,m),Ba(a,e,m)):(Dt&&i&&Dn(e),e.flags|=1,Xl(a,e,n,m),e.child)}function Mp(a,e,n,i,m,p){return ca(e),e.updateQueue=null,n=ko(e,i,n,m),fi(a),i=lu(),a!==null&&!ql?(Ue(a,e,p),Ba(a,e,p)):(Dt&&i&&Dn(e),e.flags|=1,Xl(a,e,n,p),e.child)}function Op(a,e,n,i,m){if(ca(e),e.stateNode===null){var p=Mc,v=n.contextType;typeof v=="object"&&v!==null&&(p=wl(v)),p=new n(i,p),e.memoizedState=p.state!==null&&p.state!==void 0?p.state:null,p.updater=Ss,e.stateNode=p,p._reactInternals=e,p=e.stateNode,p.props=i,p.state=e.memoizedState,p.refs={},zf(e),v=n.contextType,p.context=typeof v=="object"&&v!==null?wl(v):Mc,p.state=e.memoizedState,v=n.getDerivedStateFromProps,typeof v=="function"&&(om(e,n,v,i),p.state=e.memoizedState),typeof n.getDerivedStateFromProps=="function"||typeof p.getSnapshotBeforeUpdate=="function"||typeof p.UNSAFE_componentWillMount!="function"&&typeof p.componentWillMount!="function"||(v=p.state,typeof p.componentWillMount=="function"&&p.componentWillMount(),typeof p.UNSAFE_componentWillMount=="function"&&p.UNSAFE_componentWillMount(),v!==p.state&&Ss.enqueueReplaceState(p,p.state,null),dc(e,i,p,m),ci(),p.state=e.memoizedState),typeof p.componentDidMount=="function"&&(e.flags|=4194308),i=!0}else if(a===null){p=e.stateNode;var T=e.memoizedProps,b=nu(n,T);p.props=b;var Y=p.context,Z=n.contextType;v=Mc,typeof Z=="object"&&Z!==null&&(v=wl(Z));var X=n.getDerivedStateFromProps;Z=typeof X=="function"||typeof p.getSnapshotBeforeUpdate=="function",T=e.pendingProps!==T,Z||typeof p.UNSAFE_componentWillReceiveProps!="function"&&typeof p.componentWillReceiveProps!="function"||(T||Y!==v)&&Rp(e,p,i,v),Zn=!1;var J=e.memoizedState;p.state=J,dc(e,i,p,m),ci(),Y=e.memoizedState,T||J!==Y||Zn?(typeof X=="function"&&(om(e,n,X,i),Y=e.memoizedState),(b=Zn||qf(e,n,b,i,J,Y,v))?(Z||typeof p.UNSAFE_componentWillMount!="function"&&typeof p.componentWillMount!="function"||(typeof p.componentWillMount=="function"&&p.componentWillMount(),typeof p.UNSAFE_componentWillMount=="function"&&p.UNSAFE_componentWillMount()),typeof p.componentDidMount=="function"&&(e.flags|=4194308)):(typeof p.componentDidMount=="function"&&(e.flags|=4194308),e.memoizedProps=i,e.memoizedState=Y),p.props=i,p.state=Y,p.context=v,i=b):(typeof p.componentDidMount=="function"&&(e.flags|=4194308),i=!1)}else{p=e.stateNode,pc(a,e),v=e.memoizedProps,Z=nu(n,v),p.props=Z,X=e.pendingProps,J=p.context,Y=n.contextType,b=Mc,typeof Y=="object"&&Y!==null&&(b=wl(Y)),T=n.getDerivedStateFromProps,(Y=typeof T=="function"||typeof p.getSnapshotBeforeUpdate=="function")||typeof p.UNSAFE_componentWillReceiveProps!="function"&&typeof p.componentWillReceiveProps!="function"||(v!==X||J!==b)&&Rp(e,p,i,b),Zn=!1,J=e.memoizedState,p.state=J,dc(e,i,p,m),ci();var lt=e.memoizedState;v!==X||J!==lt||Zn||a!==null&&a.dependencies!==null&&ei(a.dependencies)?(typeof T=="function"&&(om(e,n,T,i),lt=e.memoizedState),(Z=Zn||qf(e,n,Z,i,J,lt,b)||a!==null&&a.dependencies!==null&&ei(a.dependencies))?(Y||typeof p.UNSAFE_componentWillUpdate!="function"&&typeof p.componentWillUpdate!="function"||(typeof p.componentWillUpdate=="function"&&p.componentWillUpdate(i,lt,b),typeof p.UNSAFE_componentWillUpdate=="function"&&p.UNSAFE_componentWillUpdate(i,lt,b)),typeof p.componentDidUpdate=="function"&&(e.flags|=4),typeof p.getSnapshotBeforeUpdate=="function"&&(e.flags|=1024)):(typeof p.componentDidUpdate!="function"||v===a.memoizedProps&&J===a.memoizedState||(e.flags|=4),typeof p.getSnapshotBeforeUpdate!="function"||v===a.memoizedProps&&J===a.memoizedState||(e.flags|=1024),e.memoizedProps=i,e.memoizedState=lt),p.props=i,p.state=lt,p.context=b,i=Z):(typeof p.componentDidUpdate!="function"||v===a.memoizedProps&&J===a.memoizedState||(e.flags|=4),typeof p.getSnapshotBeforeUpdate!="function"||v===a.memoizedProps&&J===a.memoizedState||(e.flags|=1024),i=!1)}return p=i,Gf(a,e),i=(e.flags&128)!==0,p||i?(p=e.stateNode,n=i&&typeof n.getDerivedStateFromError!="function"?null:p.render(),e.flags|=1,a!==null&&i?(e.child=Bc(e,a.child,null,m),e.child=Bc(e,null,n,m)):Xl(a,e,n,m),e.memoizedState=p.state,a=e.child):a=Ba(a,e,m),a}function dm(a,e,n,i){return nc(),e.flags|=256,Xl(a,e,n,i),e.child}function Vf(a){return{baseLanes:a,cachePool:Po()}}function cu(a,e,n){return a=a!==null?a.childLanes&~n:0,e&&(a|=ka),a}function ym(a,e,n){var i=e.pendingProps,m=!1,p=(e.flags&128)!==0,v;if((v=p)||(v=a!==null&&a.memoizedState===null?!1:(Nl.current&2)!==0),v&&(m=!0,e.flags&=-129),v=(e.flags&32)!==0,e.flags&=-33,a===null){if(Dt){if(m?ru(e):Ku(e),(a=ul)?(a=Qv(a,ve),a!==null&&(e.memoizedState={dehydrated:a,treeContext:fn!==null?{id:Aa,overflow:hu}:null,retryLane:536870912,hydrationErrors:null},n=Vm(a),n.return=e,e.child=n,Yl=e,ul=null)):a=null,a===null)throw Ne(e);return so(a)?e.lanes=32:e.lanes=536870912,null}var T=i.children;return i=i.fallback,m?(Ku(e),m=e.mode,T=Qe({mode:"hidden",children:T},m),i=tn(i,m,n,null),T.return=e,i.return=e,T.sibling=i,e.child=T,i=e.child,i.memoizedState=Vf(n),i.childLanes=cu(a,v,n),e.memoizedState=zs,ie(null,i)):(ru(e),vm(e,T))}var b=a.memoizedState;if(b!==null&&(T=b.dehydrated,T!==null)){if(p)e.flags&256?(ru(e),e.flags&=-257,e=ga(a,e,n)):e.memoizedState!==null?(Ku(e),e.child=a.child,e.flags|=128,e=null):(Ku(e),T=i.fallback,m=e.mode,i=Qe({mode:"visible",children:i.children},m),T=tn(T,m,n,null),T.flags|=2,i.return=e,T.return=e,i.sibling=T,e.child=i,Bc(e,a.child,null,n),i=e.child,i.memoizedState=Vf(n),i.childLanes=cu(a,v,n),e.memoizedState=zs,e=ie(null,i));else if(ru(e),so(T))v=Rc(T).digest,i=Error(E(419)),i.stack="",i.digest=v,Ua({value:i,source:null,stack:null}),e=ga(a,e,n);else if(ql||Yu(a,e,n,!1),v=(n&a.childLanes)!==0,ql||v){if(v=It,v!==null&&(i=I(v,n),i!==0&&i!==b.retryLane))throw b.retryLane=i,Nn(a,i),_a(v,a,i),Es;mo(T)||_i(),e=ga(a,e,n)}else mo(T)?(e.flags|=192,e.child=a.child,e=null):(a=b.treeContext,la&&(ul=c0(T),Yl=e,Dt=!0,on=null,ve=!1,a!==null&&Ae(e,a)),e=vm(e,i.children),e.flags|=4096);return e}return m?(Ku(e),T=i.fallback,m=e.mode,b=a.child,p=b.sibling,i=mu(b,{mode:"hidden",children:i.children}),i.subtreeFlags=b.subtreeFlags&65011712,p!==null?T=mu(p,T):(T=tn(T,m,n,null),T.flags|=2),T.return=e,i.return=e,i.sibling=T,e.child=i,ie(null,i),i=e.child,T=a.child.memoizedState,T===null?T=Vf(n):(m=T.cachePool,m!==null?(b=se?sl._currentValue:sl._currentValue2,m=m.parent!==b?{parent:b,pool:b}:m):m=Po(),T={baseLanes:T.baseLanes|n,cachePool:m}),i.memoizedState=T,i.childLanes=cu(a,v,n),e.memoizedState=zs,ie(a.child,i)):(ru(e),n=a.child,a=n.sibling,n=mu(n,{mode:"visible",children:i.children}),n.return=e,n.sibling=null,a!==null&&(v=e.deletions,v===null?(e.deletions=[a],e.flags|=16):v.push(a)),e.child=n,e.memoizedState=null,n)}function vm(a,e){return e=Qe({mode:"visible",children:e},a.mode),e.return=a,a.child=e}function Qe(a,e){return a=h(22,a,null,e),a.lanes=0,a}function ga(a,e,n){return Bc(e,a.child,null,n),a=vm(e,e.pendingProps.children),a.flags|=2,e.memoizedState=null,a}function xf(a,e,n){a.lanes|=e;var i=a.alternate;i!==null&&(i.lanes|=e),ce(a.return,e,n)}function st(a,e,n,i,m,p){var v=a.memoizedState;v===null?a.memoizedState={isBackwards:e,rendering:null,renderingStartTime:0,last:i,tail:n,tailMode:m,treeForkCount:p}:(v.isBackwards=e,v.rendering=null,v.renderingStartTime=0,v.last=i,v.tail=n,v.tailMode=m,v.treeForkCount=p)}function V(a,e,n){var i=e.pendingProps,m=i.revealOrder,p=i.tail;i=i.children;var v=Nl.current,T=(v&2)!==0;if(T?(v=v&1|2,e.flags|=128):v&=1,tt(Nl,v),Xl(a,e,i,n),i=Dt?U:0,!T&&a!==null&&(a.flags&128)!==0)t:for(a=e.child;a!==null;){if(a.tag===13)a.memoizedState!==null&&xf(a,n,e);else if(a.tag===19)xf(a,n,e);else if(a.child!==null){a.child.return=a,a=a.child;continue}if(a===e)break t;for(;a.sibling===null;){if(a.return===null||a.return===e)break t;a=a.return}a.sibling.return=a.return,a=a.sibling}switch(m){case"forwards":for(n=e.child,m=null;n!==null;)a=n.alternate,a!==null&&Ju(a)===null&&(m=n),n=n.sibling;n=m,n===null?(m=e.child,e.child=null):(m=n.sibling,n.sibling=null),st(e,!1,m,n,p,i);break;case"backwards":case"unstable_legacy-backwards":for(n=null,m=e.child,e.child=null;m!==null;){if(a=m.alternate,a!==null&&Ju(a)===null){e.child=m;break}a=m.sibling,m.sibling=n,n=m,m=a}st(e,!0,n,null,p,i);break;case"together":st(e,!1,null,null,void 0,i);break;default:e.memoizedState=null}return e.child}function Ba(a,e,n){if(a!==null&&(e.dependencies=a.dependencies),Jn|=e.lanes,(n&e.childLanes)===0)if(a!==null){if(Yu(a,e,n,!1),(n&e.childLanes)===0)return null}else return null;if(a!==null&&e.child!==a.child)throw Error(E(153));if(e.child!==null){for(a=e.child,n=mu(a,a.pendingProps),e.child=n,n.return=e;a.sibling!==null;)a=a.sibling,n=n.sibling=mu(a,a.pendingProps),n.return=e;n.sibling=null}return e.child}function Si(a,e){return(a.lanes&e)!==0?!0:(a=a.dependencies,!!(a!==null&&ei(a)))}function yl(a,e,n){switch(e.tag){case 3:Pe(e,e.stateNode.containerInfo),Qu(e,sl,a.memoizedState.cache),nc();break;case 27:case 5:Lo(e);break;case 4:Pe(e,e.stateNode.containerInfo);break;case 10:Qu(e,e.type,e.memoizedProps.value);break;case 31:if(e.memoizedState!==null)return e.flags|=128,ii(e),null;break;case 13:var i=e.memoizedState;if(i!==null)return i.dehydrated!==null?(ru(e),e.flags|=128,null):(n&e.child.childLanes)!==0?ym(a,e,n):(ru(e),a=Ba(a,e,n),a!==null?a.sibling:null);ru(e);break;case 19:var m=(a.flags&128)!==0;if(i=(n&e.childLanes)!==0,i||(Yu(a,e,n,!1),i=(n&e.childLanes)!==0),m){if(i)return V(a,e,n);e.flags|=128}if(m=e.memoizedState,m!==null&&(m.rendering=null,m.tail=null,m.lastEffect=null),tt(Nl,Nl.current),i)break;return null;case 22:return e.lanes=0,$u(a,e,n,e.pendingProps);case 24:Qu(e,sl,a.memoizedState.cache)}return Ba(a,e,n)}function hm(a,e,n){if(a!==null)if(a.memoizedProps!==e.pendingProps)ql=!0;else{if(!Si(a,n)&&(e.flags&128)===0)return ql=!1,yl(a,e,n);ql=(a.flags&131072)!==0}else ql=!1,Dt&&(e.flags&1048576)!==0&&He(e,U,e.index);switch(e.lanes=0,e.tag){case 16:t:{var i=e.pendingProps;if(a=Oa(e.elementType),e.type=a,typeof a=="function")Pf(a)?(i=nu(a,i),e.tag=1,e=Op(null,e,a,i,n)):(e.tag=0,e=Cp(null,e,a,i,n));else{if(a!=null){var m=a.$$typeof;if(m===Hi){e.tag=11,e=Qf(null,e,a,i,n);break t}else if(m===kp){e.tag=14,e=sm(null,e,a,i,n);break t}}throw e=k(a)||a,Error(E(306,e,""))}}return e;case 0:return Cp(a,e,e.type,e.pendingProps,n);case 1:return i=e.type,m=nu(i,e.pendingProps),Op(a,e,i,m,n);case 3:t:{if(Pe(e,e.stateNode.containerInfo),a===null)throw Error(E(387));var p=e.pendingProps;m=e.memoizedState,i=m.element,pc(a,e),dc(e,p,null,n);var v=e.memoizedState;if(p=v.cache,Qu(e,sl,p),p!==m.cache&&ai(e,[sl],n,!0),ci(),p=v.element,la&&m.isDehydrated)if(m={element:p,isDehydrated:!1,cache:v.cache},e.updateQueue.baseState=m,e.memoizedState=m,e.flags&256){e=dm(a,e,p,n);break t}else if(p!==i){i=Rt(Error(E(424)),e),Ua(i),e=dm(a,e,p,n);break t}else for(la&&(ul=Pm(e.stateNode.containerInfo),Yl=e,Dt=!0,on=null,ve=!0),n=N0(e,null,p,n),e.child=n;n;)n.flags=n.flags&-3|4096,n=n.sibling;else{if(nc(),p===i){e=Ba(a,e,n);break t}Xl(a,e,p,n)}e=e.child}return e;case 26:if(pe)return Gf(a,e),a===null?(n=Ci(e.type,null,e.pendingProps,null))?e.memoizedState=n:Dt||(e.stateNode=T0(e.type,e.pendingProps,xn.current,e)):e.memoizedState=Ci(e.type,a.memoizedProps,e.pendingProps,a.memoizedState),null;case 27:if(Ml)return Lo(e),a===null&&Ml&&Dt&&(i=e.stateNode=es(e.type,e.pendingProps,xn.current,ua.current,!1),Yl=e,ve=!0,ul=Bv(e.type,i,ul)),Xl(a,e,e.pendingProps.children,n),Gf(a,e),a===null&&(e.flags|=4194304),e.child;case 5:return a===null&&Dt&&(Vv(e.type,e.pendingProps,ua.current),(m=i=ul)&&(i=jv(i,e.type,e.pendingProps,ve),i!==null?(e.stateNode=i,Yl=e,ul=wm(i),ve=!1,m=!0):m=!1),m||Ne(e)),Lo(e),m=e.type,p=e.pendingProps,v=a!==null?a.memoizedProps:null,i=p.children,co(m,p)?i=null:v!==null&&co(m,v)&&(e.flags|=32),e.memoizedState!==null&&(m=_f(a,e,tm,null,null,n),se?Gn._currentValue=m:Gn._currentValue2=m),Gf(a,e),Xl(a,e,i,n),e.child;case 6:return a===null&&Dt&&(yd(e.pendingProps,ua.current),(a=n=ul)&&(n=i0(n,e.pendingProps,ve),n!==null?(e.stateNode=n,Yl=e,ul=null,a=!0):a=!1),a||Ne(e)),null;case 13:return ym(a,e,n);case 4:return Pe(e,e.stateNode.containerInfo),i=e.pendingProps,a===null?e.child=Bc(e,null,i,n):Xl(a,e,i,n),e.child;case 11:return Qf(a,e,e.type,e.pendingProps,n);case 7:return Xl(a,e,e.pendingProps,n),e.child;case 8:return Xl(a,e,e.pendingProps.children,n),e.child;case 12:return Xl(a,e,e.pendingProps.children,n),e.child;case 10:return i=e.pendingProps,Qu(e,e.type,i.value),Xl(a,e,i.children,n),e.child;case 9:return m=e.type._context,i=e.pendingProps.children,ca(e),m=wl(m),i=i(m),e.flags|=1,Xl(a,e,i,n),e.child;case 14:return sm(a,e,e.type,e.pendingProps,n);case 15:return pm(a,e,e.type,e.pendingProps,n);case 19:return V(a,e,n);case 31:return Yf(a,e,n);case 22:return $u(a,e,n,e.pendingProps);case 24:return ca(e),i=wl(sl),a===null?(m=wo(),m===null&&(m=It,p=pp(),m.pooledCache=p,p.refCount++,p!==null&&(m.pooledCacheLanes|=n),m=p),e.memoizedState={parent:i,cache:m},zf(e),Qu(e,sl,m)):((a.lanes&n)!==0&&(pc(a,e),dc(e,null,null,n),ci()),m=a.memoizedState,p=e.memoizedState,m.parent!==i?(m={parent:i,cache:i},e.memoizedState=m,e.lanes===0&&(e.memoizedState=e.updateQueue.baseState=m),Qu(e,sl,i)):(i=p.cache,Qu(e,sl,i),i!==m.cache&&ai(e,[sl],n,!0))),Xl(a,e,e.pendingProps.children,n),e.child;case 29:throw e.pendingProps}throw Error(E(156,e.tag))}function Fa(a){a.flags|=4}function Xf(a){Xe&&(a.flags|=8)}function Sm(a,e){if(a!==null&&a.child===e.child)return!1;if((e.flags&16)!==0)return!0;for(a=e.child;a!==null;){if((a.flags&8218)!==0||(a.subtreeFlags&8218)!==0)return!0;a=a.sibling}return!1}function bp(a,e,n,i){if(sa)for(n=e.child;n!==null;){if(n.tag===5||n.tag===6)Lm(a,n.stateNode);else if(!(n.tag===4||Ml&&n.tag===27)&&n.child!==null){n.child.return=n,n=n.child;continue}if(n===e)break;for(;n.sibling===null;){if(n.return===null||n.return===e)return;n=n.return}n.sibling.return=n.return,n=n.sibling}else if(Xe)for(var m=e.child;m!==null;){if(m.tag===5){var p=m.stateNode;n&&i&&(p=en(p,m.type,m.memoizedProps)),Lm(a,p)}else if(m.tag===6)p=m.stateNode,n&&i&&(p=oo(p,m.memoizedProps)),Lm(a,p);else if(m.tag!==4){if(m.tag===22&&m.memoizedState!==null)p=m.child,p!==null&&(p.return=m),bp(a,m,!0,!0);else if(m.child!==null){m.child.return=m,m=m.child;continue}}if(m===e)break;for(;m.sibling===null;){if(m.return===null||m.return===e)return;m=m.return}m.sibling.return=m.return,m=m.sibling}}function Em(a,e,n,i){var m=!1;if(Xe)for(var p=e.child;p!==null;){if(p.tag===5){var v=p.stateNode;n&&i&&(v=en(v,p.type,p.memoizedProps)),od(a,v)}else if(p.tag===6)v=p.stateNode,n&&i&&(v=oo(v,p.memoizedProps)),od(a,v);else if(p.tag!==4){if(p.tag===22&&p.memoizedState!==null)m=p.child,m!==null&&(m.return=p),Em(a,p,!0,!0),m=!0;else if(p.child!==null){p.child.return=p,p=p.child;continue}}if(p===e)break;for(;p.sibling===null;){if(p.return===null||p.return===e)return m;p=p.return}p.sibling.return=p.return,p=p.sibling}return m}function zm(a,e){if(Xe&&Sm(a,e)){a=e.stateNode;var n=a.containerInfo,i=el();Em(i,e,!1,!1),a.pendingChildren=i,Fa(e),l0(n,i)}}function Zf(a,e,n,i){if(sa)a.memoizedProps!==i&&Fa(e);else if(Xe){var m=a.stateNode,p=a.memoizedProps;if((a=Sm(a,e))||p!==i){var v=ua.current;p=t0(m,n,p,i,!a,null),p===m?e.stateNode=m:(Xf(e),Yy(p,n,i,v)&&Fa(e),e.stateNode=p,a&&bp(p,e,!1,!1))}else e.stateNode=m}}function ta(a,e,n,i,m){if((a.mode&32)!==0&&(n===null?Xy(e,i):bv(e,n,i))){if(a.flags|=16777216,(m&335544128)===m||Ai(e,i))if(aa(a.stateNode,e,i))a.flags|=8192;else if(My())a.flags|=8192;else throw he=ds,ss}else a.flags&=-16777217}function Gt(a,e){if(xv(e)){if(a.flags|=16777216,!as(e))if(My())a.flags|=8192;else throw he=ds,ss}else a.flags&=-16777217}function Ec(a,e){e!==null&&(a.flags|=4),a.flags&16384&&(e=a.tag!==22?Bu():536870912,a.lanes|=e,Zi|=e)}function Iu(a,e){if(!Dt)switch(a.tailMode){case"hidden":e=a.tail;for(var n=null;e!==null;)e.alternate!==null&&(n=e),e=e.sibling;n===null?a.tail=null:n.sibling=null;break;case"collapsed":n=a.tail;for(var i=null;n!==null;)n.alternate!==null&&(i=n),n=n.sibling;i===null?e||a.tail===null?a.tail=null:a.tail.sibling=null:i.sibling=null}}function Qt(a){var e=a.alternate!==null&&a.alternate.child===a.child,n=0,i=0;if(e)for(var m=a.child;m!==null;)n|=m.lanes|m.childLanes,i|=m.subtreeFlags&65011712,i|=m.flags&65011712,m.return=a,m=m.sibling;else for(m=a.child;m!==null;)n|=m.lanes|m.childLanes,i|=m.subtreeFlags,i|=m.flags,m.return=a,m=m.sibling;return a.subtreeFlags|=i,a.childLanes=n,e}function zc(a,e,n){var i=e.pendingProps;switch(Hn(e),e.tag){case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return Qt(e),null;case 1:return Qt(e),null;case 3:return n=e.stateNode,i=null,a!==null&&(i=a.memoizedState.cache),e.memoizedState.cache!==i&&(e.flags|=2048),Il(sl),An(),n.pendingContext&&(n.context=n.pendingContext,n.pendingContext=null),(a===null||a.child===null)&&(li(e)?Fa(e):a===null||a.memoizedState.isDehydrated&&(e.flags&256)===0||(e.flags|=1024,vf())),zm(a,e),Qt(e),null;case 26:if(pe){var m=e.type,p=e.memoizedState;return a===null?(Fa(e),p!==null?(Qt(e),Gt(e,p)):(Qt(e),ta(e,m,null,i,n))):p?p!==a.memoizedState?(Fa(e),Qt(e),Gt(e,p)):(Qt(e),e.flags&=-16777217):(p=a.memoizedProps,sa?p!==i&&Fa(e):Zf(a,e,m,i),Qt(e),ta(e,m,p,i,n)),null}case 27:if(Ml){if(yf(e),n=xn.current,m=e.type,a!==null&&e.stateNode!=null)sa?a.memoizedProps!==i&&Fa(e):Zf(a,e,m,i);else{if(!i){if(e.stateNode===null)throw Error(E(166));return Qt(e),null}a=ua.current,li(e)?yy(e,a):(a=es(m,i,n,a,!0),e.stateNode=a,Fa(e))}return Qt(e),null}case 5:if(yf(e),m=e.type,a!==null&&e.stateNode!=null)Zf(a,e,m,i);else{if(!i){if(e.stateNode===null)throw Error(E(166));return Qt(e),null}if(p=ua.current,li(e))yy(e,p),y0(e.stateNode,m,i,p)&&(e.flags|=64);else{var v=pu(m,i,xn.current,p,e);Xf(e),bp(v,e,!1,!1),e.stateNode=v,Yy(v,m,i,p)&&Fa(e)}}return Qt(e),ta(e,e.type,a===null?null:a.memoizedProps,e.pendingProps,n),null;case 6:if(a&&e.stateNode!=null)n=a.memoizedProps,sa?n!==i&&Fa(e):Xe&&(n!==i?(a=xn.current,n=ua.current,Xf(e),e.stateNode=Wm(i,a,n,e)):e.stateNode=a.stateNode);else{if(typeof i!="string"&&e.stateNode===null)throw Error(E(166));if(a=xn.current,n=ua.current,li(e)){if(!la)throw Error(E(176));if(a=e.stateNode,n=e.memoizedProps,i=null,m=Yl,m!==null)switch(m.tag){case 27:case 5:i=m.memoizedProps}km(a,n,e,i)||Ne(e,!0)}else Xf(e),e.stateNode=Wm(i,a,n,e)}return Qt(e),null;case 31:if(n=e.memoizedState,a===null||a.memoizedState!==null){if(i=li(e),n!==null){if(a===null){if(!i)throw Error(E(318));if(!la)throw Error(E(556));if(a=e.memoizedState,a=a!==null?a.dehydrated:null,!a)throw Error(E(557));o0(a,e)}else nc(),(e.flags&128)===0&&(e.memoizedState=null),e.flags|=4;Qt(e),a=!1}else n=vf(),a!==null&&a.memoizedState!==null&&(a.memoizedState.hydrationErrors=n),a=!0;if(!a)return e.flags&256?(ba(e),e):(ba(e),null);if((e.flags&128)!==0)throw Error(E(558))}return Qt(e),null;case 13:if(i=e.memoizedState,a===null||a.memoizedState!==null&&a.memoizedState.dehydrated!==null){if(m=li(e),i!==null&&i.dehydrated!==null){if(a===null){if(!m)throw Error(E(318));if(!la)throw Error(E(344));if(m=e.memoizedState,m=m!==null?m.dehydrated:null,!m)throw Error(E(317));pd(m,e)}else nc(),(e.flags&128)===0&&(e.memoizedState=null),e.flags|=4;Qt(e),m=!1}else m=vf(),a!==null&&a.memoizedState!==null&&(a.memoizedState.hydrationErrors=m),m=!0;if(!m)return e.flags&256?(ba(e),e):(ba(e),null)}return ba(e),(e.flags&128)!==0?(e.lanes=n,e):(n=i!==null,a=a!==null&&a.memoizedState!==null,n&&(i=e.child,m=null,i.alternate!==null&&i.alternate.memoizedState!==null&&i.alternate.memoizedState.cachePool!==null&&(m=i.alternate.memoizedState.cachePool.pool),p=null,i.memoizedState!==null&&i.memoizedState.cachePool!==null&&(p=i.memoizedState.cachePool.pool),p!==m&&(i.flags|=2048)),n!==a&&n&&(e.child.flags|=8192),Ec(e,e.updateQueue),Qt(e),null);case 4:return An(),zm(a,e),a===null&&Ov(e.stateNode.containerInfo),Qt(e),null;case 10:return Il(e.type),Qt(e),null;case 19:if(G(Nl),i=e.memoizedState,i===null)return Qt(e),null;if(m=(e.flags&128)!==0,p=i.rendering,p===null)if(m)Iu(i,!1);else{if(vl!==0||a!==null&&(a.flags&128)!==0)for(a=e.child;a!==null;){if(p=Ju(a),p!==null){for(e.flags|=128,Iu(i,!1),a=p.updateQueue,e.updateQueue=a,Ec(e,a),e.subtreeFlags=0,a=n,n=e.child;n!==null;)Fp(n,a),n=n.sibling;return tt(Nl,Nl.current&1|2),Dt&&xt(e,i.treeForkCount),e.child}a=a.sibling}i.tail!==null&&Xt()>ri&&(e.flags|=128,m=!0,Iu(i,!1),e.lanes=4194304)}else{if(!m)if(a=Ju(p),a!==null){if(e.flags|=128,m=!0,a=a.updateQueue,e.updateQueue=a,Ec(e,a),Iu(i,!0),i.tail===null&&i.tailMode==="hidden"&&!p.alternate&&!Dt)return Qt(e),null}else 2*Xt()-i.renderingStartTime>ri&&n!==536870912&&(e.flags|=128,m=!0,Iu(i,!1),e.lanes=4194304);i.isBackwards?(p.sibling=e.child,e.child=p):(a=i.last,a!==null?a.sibling=p:e.child=p,i.last=p)}return i.tail!==null?(a=i.tail,i.rendering=a,i.tail=a.sibling,i.renderingStartTime=Xt(),a.sibling=null,n=Nl.current,tt(Nl,m?n&1|2:n&1),Dt&&xt(e,i.treeForkCount),a):(Qt(e),null);case 22:case 23:return ba(e),Zu(),i=e.memoizedState!==null,a!==null?a.memoizedState!==null!==i&&(e.flags|=8192):i&&(e.flags|=8192),i?(n&536870912)!==0&&(e.flags&128)===0&&(Qt(e),e.subtreeFlags&6&&(e.flags|=8192)):Qt(e),n=e.updateQueue,n!==null&&Ec(e,n.retryQueue),n=null,a!==null&&a.memoizedState!==null&&a.memoizedState.cachePool!==null&&(n=a.memoizedState.cachePool.pool),i=null,e.memoizedState!==null&&e.memoizedState.cachePool!==null&&(i=e.memoizedState.cachePool.pool),i!==n&&(e.flags|=2048),a!==null&&G(Xn),null;case 24:return n=null,a!==null&&(n=a.memoizedState.cache),e.memoizedState.cache!==n&&(e.flags|=2048),Il(sl),Qt(e),null;case 25:return null;case 30:return null}throw Error(E(156,e.tag))}function Ye(a,e){switch(Hn(e),e.tag){case 1:return a=e.flags,a&65536?(e.flags=a&-65537|128,e):null;case 3:return Il(sl),An(),a=e.flags,(a&65536)!==0&&(a&128)===0?(e.flags=a&-65537|128,e):null;case 26:case 27:case 5:return yf(e),null;case 31:if(e.memoizedState!==null){if(ba(e),e.alternate===null)throw Error(E(340));nc()}return a=e.flags,a&65536?(e.flags=a&-65537|128,e):null;case 13:if(ba(e),a=e.memoizedState,a!==null&&a.dehydrated!==null){if(e.alternate===null)throw Error(E(340));nc()}return a=e.flags,a&65536?(e.flags=a&-65537|128,e):null;case 19:return G(Nl),null;case 4:return An(),null;case 10:return Il(e.type),null;case 22:case 23:return ba(e),Zu(),a!==null&&G(Xn),a=e.flags,a&65536?(e.flags=a&-65537|128,e):null;case 24:return Il(sl),null;case 25:return null;default:return null}}function Tm(a,e){switch(Hn(e),e.tag){case 3:Il(sl),An();break;case 26:case 27:case 5:yf(e);break;case 4:An();break;case 31:e.memoizedState!==null&&ba(e);break;case 13:ba(e);break;case 19:G(Nl);break;case 10:Il(e.type);break;case 22:case 23:ba(e),Zu(),a!==null&&G(Xn);break;case 24:Il(sl)}}function iu(a,e){try{var n=e.updateQueue,i=n!==null?n.lastEffect:null;if(i!==null){var m=i.next;n=m;do{if((n.tag&a)===a){i=void 0;var p=n.create,v=n.inst;i=p(),v.destroy=i}n=n.next}while(n!==m)}}catch(T){qt(e,e.return,T)}}function fu(a,e,n){try{var i=e.updateQueue,m=i!==null?i.lastEffect:null;if(m!==null){var p=m.next;i=p;do{if((i.tag&a)===a){var v=i.inst,T=v.destroy;if(T!==void 0){v.destroy=void 0,m=e;var b=n,Y=T;try{Y()}catch(Z){qt(m,b,Z)}}}i=i.next}while(i!==p)}}catch(Z){qt(e,e.return,Z)}}function Ei(a){var e=a.updateQueue;if(e!==null){var n=a.stateNode;try{Ey(e,n)}catch(i){qt(a,a.return,i)}}}function gm(a,e,n){n.props=nu(a.type,a.memoizedProps),n.state=a.memoizedState;try{n.componentWillUnmount()}catch(i){qt(a,e,i)}}function Cn(a,e){try{var n=a.ref;if(n!==null){switch(a.tag){case 26:case 27:case 5:var i=uo(a.stateNode);break;case 30:i=a.stateNode;break;default:i=a.stateNode}typeof n=="function"?a.refCleanup=n(i):n.current=i}}catch(m){qt(a,e,m)}}function Ge(a,e){var n=a.ref,i=a.refCleanup;if(n!==null)if(typeof i=="function")try{i()}catch(m){qt(a,e,m)}finally{a.refCleanup=null,a=a.alternate,a!=null&&(a.refCleanup=null)}else if(typeof n=="function")try{n(null)}catch(m){qt(a,e,m)}else n.current=null}function qp(a){var e=a.type,n=a.memoizedProps,i=a.stateNode;try{$y(i,e,n,a)}catch(m){qt(a,a.return,m)}}function _m(a,e,n){try{Fm(a.stateNode,a.type,n,e,a)}catch(i){qt(a,a.return,i)}}function Bp(a){return a.tag===5||a.tag===3||(pe?a.tag===26:!1)||(Ml?a.tag===27&&Cc(a.type):!1)||a.tag===4}function Dm(a){t:for(;;){for(;a.sibling===null;){if(a.return===null||Bp(a.return))return null;a=a.return}for(a.sibling.return=a.return,a=a.sibling;a.tag!==5&&a.tag!==6&&a.tag!==18;){if(Ml&&a.tag===27&&Cc(a.type)||a.flags&2||a.child===null||a.tag===4)continue t;a.child.return=a,a=a.child}if(!(a.flags&2))return a.stateNode}}function rf(a,e,n){var i=a.tag;if(i===5||i===6)a=a.stateNode,e?wy(n,a,e):Fy(n,a);else if(i!==4&&(Ml&&i===27&&Cc(a.type)&&(n=a.stateNode,e=null),a=a.child,a!==null))for(rf(a,e,n),a=a.sibling;a!==null;)rf(a,e,n),a=a.sibling}function zi(a,e,n){var i=a.tag;if(i===5||i===6)a=a.stateNode,e?Iy(n,a,e):Wy(n,a);else if(i!==4&&(Ml&&i===27&&Cc(a.type)&&(n=a.stateNode),a=a.child,a!==null))for(zi(a,e,n),a=a.sibling;a!==null;)zi(a,e,n),a=a.sibling}function Hm(a,e,n){a=a.containerInfo;try{a0(a,n)}catch(i){qt(e,e.return,i)}}function jp(a){var e=a.stateNode,n=a.memoizedProps;try{us(a.type,n,e,a)}catch(i){qt(a,a.return,i)}}function Dy(a,e){for(Mv(a.containerInfo),Zl=e;Zl!==null;)if(a=Zl,e=a.child,(a.subtreeFlags&1028)!==0&&e!==null)e.return=a,Zl=e;else for(;Zl!==null;){a=Zl;var n=a.alternate;switch(e=a.flags,a.tag){case 0:if((e&4)!==0&&(e=a.updateQueue,e=e!==null?e.events:null,e!==null))for(var i=0;i<e.length;i++){var m=e[i];m.ref.impl=m.nextImpl}break;case 11:case 15:break;case 1:if((e&1024)!==0&&n!==null){e=void 0,i=a,m=n.memoizedProps,n=n.memoizedState;var p=i.stateNode;try{var v=nu(i.type,m);e=p.getSnapshotBeforeUpdate(v,n),p.__reactInternalSnapshotBeforeUpdate=e}catch(T){qt(i,i.return,T)}}break;case 3:(e&1024)!==0&&sa&&Ia(a.stateNode.containerInfo);break;case 5:case 26:case 27:case 6:case 4:case 17:break;default:if((e&1024)!==0)throw Error(E(163))}if(e=a.sibling,e!==null){e.return=a.return,Zl=e;break}Zl=a.return}}function Qp(a,e,n){var i=n.flags;switch(n.tag){case 0:case 11:case 15:oe(a,n),i&4&&iu(5,n);break;case 1:if(oe(a,n),i&4)if(a=n.stateNode,e===null)try{a.componentDidMount()}catch(v){qt(n,n.return,v)}else{var m=nu(n.type,e.memoizedProps);e=e.memoizedState;try{a.componentDidUpdate(m,e,a.__reactInternalSnapshotBeforeUpdate)}catch(v){qt(n,n.return,v)}}i&64&&Ei(n),i&512&&Cn(n,n.return);break;case 3:if(oe(a,n),i&64&&(i=n.updateQueue,i!==null)){if(a=null,n.child!==null)switch(n.child.tag){case 27:case 5:a=uo(n.child.stateNode);break;case 1:a=n.child.stateNode}try{Ey(i,a)}catch(v){qt(n,n.return,v)}}break;case 27:Ml&&e===null&&i&4&&jp(n);case 26:case 5:if(oe(a,n),e===null){if(i&4)qp(n);else if(i&64){a=n.type,e=n.memoizedProps,m=n.stateNode;try{p0(m,a,e,n)}catch(v){qt(n,n.return,v)}}}i&512&&Cn(n,n.return);break;case 12:oe(a,n);break;case 31:oe(a,n),i&4&&Yp(a,n);break;case 13:oe(a,n),i&4&&Nm(a,n),i&64&&(i=n.memoizedState,i!==null&&(i=i.dehydrated,i!==null&&(n=Ym.bind(null,n),Ni(i,n))));break;case 22:if(i=n.memoizedState!==null||Tu,!i){e=e!==null&&e.memoizedState!==null||Rl,m=Tu;var p=Rl;Tu=i,(Rl=e)&&!p?Ve(a,n,(n.subtreeFlags&8772)!==0):oe(a,n),Tu=m,Rl=p}break;case 30:break;default:oe(a,n)}}function Hy(a){var e=a.alternate;e!==null&&(a.alternate=null,Hy(e)),a.child=null,a.deletions=null,a.sibling=null,a.tag===5&&(e=a.stateNode,e!==null&&xy(e)),a.stateNode=null,a.return=null,a.dependencies=null,a.memoizedProps=null,a.memoizedState=null,a.pendingProps=null,a.stateNode=null,a.updateQueue=null}function fe(a,e,n){for(n=n.child;n!==null;)Am(a,e,n),n=n.sibling}function Am(a,e,n){if(Hl&&typeof Hl.onCommitFiberUnmount=="function")try{Hl.onCommitFiberUnmount(Oc,n)}catch{}switch(n.tag){case 26:if(pe){Rl||Ge(n,e),fe(a,e,n),n.memoizedState?z0(n.memoizedState):n.stateNode&&hd(n.stateNode);break}case 27:if(Ml){Rl||Ge(n,e);var i=Bl,m=Xa;Cc(n.type)&&(Bl=n.stateNode,Xa=!1),fe(a,e,n),Vn(n.stateNode),Bl=i,Xa=m;break}case 5:Rl||Ge(n,e);case 6:if(sa){if(i=Bl,m=Xa,Bl=null,fe(a,e,n),Bl=i,Xa=m,Bl!==null)if(Xa)try{fd(Bl,n.stateNode)}catch(p){qt(n,e,p)}else try{id(Bl,n.stateNode)}catch(p){qt(n,e,p)}}else fe(a,e,n);break;case 18:sa&&Bl!==null&&(Xa?dd(Bl,n.stateNode):Bt(Bl,n.stateNode));break;case 4:sa?(i=Bl,m=Xa,Bl=n.stateNode.containerInfo,Xa=!0,fe(a,e,n),Bl=i,Xa=m):(Xe&&Hm(n.stateNode,n,el()),fe(a,e,n));break;case 0:case 11:case 14:case 15:fu(2,n,e),Rl||fu(4,n,e),fe(a,e,n);break;case 1:Rl||(Ge(n,e),i=n.stateNode,typeof i.componentWillUnmount=="function"&&gm(n,e,i)),fe(a,e,n);break;case 21:fe(a,e,n);break;case 22:Rl=(i=Rl)||n.memoizedState!==null,fe(a,e,n),Rl=i;break;default:fe(a,e,n)}}function Yp(a,e){if(la&&e.memoizedState===null&&(a=e.alternate,a!==null&&(a=a.memoizedState,a!==null))){a=a.dehydrated;try{d0(a)}catch(n){qt(e,e.return,n)}}}function Nm(a,e){if(la&&e.memoizedState===null&&(a=e.alternate,a!==null&&(a=a.memoizedState,a!==null&&(a=a.dehydrated,a!==null))))try{Ui(a)}catch(n){qt(e,e.return,n)}}function Ay(a){switch(a.tag){case 31:case 13:case 19:var e=a.stateNode;return e===null&&(e=a.stateNode=new Ts),e;case 22:return a=a.stateNode,e=a._retryCache,e===null&&(e=a._retryCache=new Ts),e;default:throw Error(E(435,a.tag))}}function Kf(a,e){var n=Ay(a);e.forEach(function(i){if(!n.has(i)){n.add(i);var m=By.bind(null,a,i);i.then(m,m)}})}function _l(a,e){var n=e.deletions;if(n!==null)for(var i=0;i<n.length;i++){var m=n[i],p=a,v=e;if(sa){var T=v;t:for(;T!==null;){switch(T.tag){case 27:if(Ml){if(Cc(T.type)){Bl=T.stateNode,Xa=!1;break t}break}case 5:Bl=T.stateNode,Xa=!1;break t;case 3:case 4:Bl=T.stateNode.containerInfo,Xa=!0;break t}T=T.return}if(Bl===null)throw Error(E(160));Am(p,v,m),Bl=null,Xa=!1}else Am(p,v,m);p=m.alternate,p!==null&&(p.return=null),m.return=null}if(e.subtreeFlags&13886)for(e=e.child;e!==null;)Jf(e,a),e=e.sibling}function Jf(a,e){var n=a.alternate,i=a.flags;switch(a.tag){case 0:case 11:case 14:case 15:_l(e,a),oa(a),i&4&&(fu(3,a,a.return),iu(3,a),fu(5,a,a.return));break;case 1:_l(e,a),oa(a),i&512&&(Rl||n===null||Ge(n,n.return)),i&64&&Tu&&(a=a.updateQueue,a!==null&&(i=a.callbacks,i!==null&&(n=a.shared.hiddenCallbacks,a.shared.hiddenCallbacks=n===null?i:n.concat(i))));break;case 26:if(pe){var m=Le;if(_l(e,a),oa(a),i&512&&(Rl||n===null||Ge(n,n.return)),i&4){i=n!==null?n.memoizedState:null;var p=a.memoizedState;n===null?p===null?a.stateNode===null?a.stateNode=Uc(m,a.type,a.memoizedProps,a):ls(m,a.type,a.stateNode):a.stateNode=E0(m,p,a.memoizedProps):i!==p?(i===null?n.stateNode!==null&&hd(n.stateNode):z0(i),p===null?ls(m,a.type,a.stateNode):E0(m,p,a.memoizedProps)):p===null&&a.stateNode!==null&&_m(a,a.memoizedProps,n.memoizedProps)}break}case 27:if(Ml){_l(e,a),oa(a),i&512&&(Rl||n===null||Ge(n,n.return)),n!==null&&i&4&&_m(a,a.memoizedProps,n.memoizedProps);break}case 5:if(_l(e,a),oa(a),i&512&&(Rl||n===null||Ge(n,n.return)),sa){if(a.flags&32){m=a.stateNode;try{$m(m)}catch(X){qt(a,a.return,X)}}i&4&&a.stateNode!=null&&(m=a.memoizedProps,_m(a,m,n!==null?n.memoizedProps:m)),i&1024&&(go=!0)}else Xe&&a.alternate!==null&&(a.alternate.stateNode=a.stateNode);break;case 6:if(_l(e,a),oa(a),i&4&&sa){if(a.stateNode===null)throw Error(E(162));i=a.memoizedProps,n=n!==null?n.memoizedProps:i,m=a.stateNode;try{fo(m,n,i)}catch(X){qt(a,a.return,X)}}break;case 3:if(pe?(g0(),m=Le,Le=ts(e.containerInfo),_l(e,a),Le=m):_l(e,a),oa(a),i&4){if(sa&&la&&n!==null&&n.memoizedState.isDehydrated)try{Yv(e.containerInfo)}catch(X){qt(a,a.return,X)}if(Xe){i=e.containerInfo,n=e.pendingChildren;try{a0(i,n)}catch(X){qt(a,a.return,X)}}}go&&(go=!1,Ny(a));break;case 4:pe?(n=Le,Le=ts(a.stateNode.containerInfo),_l(e,a),oa(a),Le=n):(_l(e,a),oa(a)),i&4&&Xe&&Hm(a.stateNode,a,a.stateNode.pendingChildren);break;case 12:_l(e,a),oa(a);break;case 31:_l(e,a),oa(a),i&4&&(i=a.updateQueue,i!==null&&(a.updateQueue=null,Kf(a,i)));break;case 13:_l(e,a),oa(a),a.child.flags&8192&&a.memoizedState!==null!=(n!==null&&n.memoizedState!==null)&&(Ho=Xt()),i&4&&(i=a.updateQueue,i!==null&&(a.updateQueue=null,Kf(a,i)));break;case 22:m=a.memoizedState!==null;var v=n!==null&&n.memoizedState!==null,T=Tu,b=Rl;if(Tu=T||m,Rl=b||v,_l(e,a),Rl=b,Tu=T,oa(a),i&8192&&(e=a.stateNode,e._visibility=m?e._visibility&-2:e._visibility|1,m&&(n===null||v||Tu||Rl||me(a)),sa)){t:if(n=null,sa)for(e=a;;){if(e.tag===5||pe&&e.tag===26){if(n===null){v=n=e;try{p=v.stateNode,m?Py(p):qv(v.stateNode,v.memoizedProps)}catch(X){qt(v,v.return,X)}}}else if(e.tag===6){if(n===null){v=e;try{var Y=v.stateNode;m?Im(Y):ky(Y,v.memoizedProps)}catch(X){qt(v,v.return,X)}}}else if(e.tag===18){if(n===null){v=e;try{var Z=v.stateNode;m?Gv(Z):h0(v.stateNode)}catch(X){qt(v,v.return,X)}}}else if((e.tag!==22&&e.tag!==23||e.memoizedState===null||e===a)&&e.child!==null){e.child.return=e,e=e.child;continue}if(e===a)break t;for(;e.sibling===null;){if(e.return===null||e.return===a)break t;n===e&&(n=null),e=e.return}n===e&&(n=null),e.sibling.return=e.return,e=e.sibling}}i&4&&(i=a.updateQueue,i!==null&&(n=i.retryQueue,n!==null&&(i.retryQueue=null,Kf(a,n))));break;case 19:_l(e,a),oa(a),i&4&&(i=a.updateQueue,i!==null&&(a.updateQueue=null,Kf(a,i)));break;case 30:break;case 21:break;default:_l(e,a),oa(a)}}function oa(a){var e=a.flags;if(e&2){try{for(var n,i=a.return;i!==null;){if(Bp(i)){n=i;break}i=i.return}if(sa){if(n==null)throw Error(E(160));switch(n.tag){case 27:if(Ml){var m=n.stateNode,p=Dm(a);zi(a,p,m);break}case 5:var v=n.stateNode;n.flags&32&&($m(v),n.flags&=-33);var T=Dm(a);zi(a,T,v);break;case 3:case 4:var b=n.stateNode.containerInfo,Y=Dm(a);rf(a,Y,b);break;default:throw Error(E(161))}}}catch(Z){qt(a,a.return,Z)}a.flags&=-3}e&4096&&(a.flags&=-4097)}function Ny(a){if(a.subtreeFlags&1024)for(a=a.child;a!==null;){var e=a;Ny(e),e.tag===5&&e.flags&1024&&Hc(e.stateNode),a=a.sibling}}function oe(a,e){if(e.subtreeFlags&8772)for(e=e.child;e!==null;)Qp(a,e.alternate,e),e=e.sibling}function me(a){for(a=a.child;a!==null;){var e=a;switch(e.tag){case 0:case 11:case 14:case 15:fu(4,e,e.return),me(e);break;case 1:Ge(e,e.return);var n=e.stateNode;typeof n.componentWillUnmount=="function"&&gm(e,e.return,n),me(e);break;case 27:Ml&&Vn(e.stateNode);case 26:case 5:Ge(e,e.return),me(e);break;case 22:e.memoizedState===null&&me(e);break;case 30:me(e);break;default:me(e)}a=a.sibling}}function Ve(a,e,n){for(n=n&&(e.subtreeFlags&8772)!==0,e=e.child;e!==null;){var i=e.alternate,m=a,p=e,v=p.flags;switch(p.tag){case 0:case 11:case 15:Ve(m,p,n),iu(4,p);break;case 1:if(Ve(m,p,n),i=p,m=i.stateNode,typeof m.componentDidMount=="function")try{m.componentDidMount()}catch(Y){qt(i,i.return,Y)}if(i=p,m=i.updateQueue,m!==null){var T=i.stateNode;try{var b=m.shared.hiddenCallbacks;if(b!==null)for(m.shared.hiddenCallbacks=null,m=0;m<b.length;m++)hp(b[m],T)}catch(Y){qt(i,i.return,Y)}}n&&v&64&&Ei(p),Cn(p,p.return);break;case 27:Ml&&jp(p);case 26:case 5:Ve(m,p,n),n&&i===null&&v&4&&qp(p),Cn(p,p.return);break;case 12:Ve(m,p,n);break;case 31:Ve(m,p,n),n&&v&4&&Yp(m,p);break;case 13:Ve(m,p,n),n&&v&4&&Nm(m,p);break;case 22:p.memoizedState===null&&Ve(m,p,n),Cn(p,p.return);break;case 30:break;default:Ve(m,p,n)}e=e.sibling}}function wu(a,e){var n=null;a!==null&&a.memoizedState!==null&&a.memoizedState.cachePool!==null&&(n=a.memoizedState.cachePool.pool),a=null,e.memoizedState!==null&&e.memoizedState.cachePool!==null&&(a=e.memoizedState.cachePool.pool),a!==n&&(a!=null&&a.refCount++,n!=null&&cc(n))}function ma(a,e){a=null,e.alternate!==null&&(a=e.alternate.memoizedState.cache),e=e.memoizedState.cache,e!==a&&(e.refCount++,a!=null&&cc(a))}function ja(a,e,n,i){if(e.subtreeFlags&10256)for(e=e.child;e!==null;)Ry(a,e,n,i),e=e.sibling}function Ry(a,e,n,i){var m=e.flags;switch(e.tag){case 0:case 11:case 15:ja(a,e,n,i),m&2048&&iu(9,e);break;case 1:ja(a,e,n,i);break;case 3:ja(a,e,n,i),m&2048&&(a=null,e.alternate!==null&&(a=e.alternate.memoizedState.cache),e=e.memoizedState.cache,e!==a&&(e.refCount++,a!=null&&cc(a)));break;case 12:if(m&2048){ja(a,e,n,i),a=e.stateNode;try{var p=e.memoizedProps,v=p.id,T=p.onPostCommit;typeof T=="function"&&T(v,e.alternate===null?"mount":"update",a.passiveEffectDuration,-0)}catch(b){qt(e,e.return,b)}}else ja(a,e,n,i);break;case 31:ja(a,e,n,i);break;case 13:ja(a,e,n,i);break;case 23:break;case 22:p=e.stateNode,v=e.alternate,e.memoizedState!==null?p._visibility&2?ja(a,e,n,i):On(a,e):p._visibility&2?ja(a,e,n,i):(p._visibility|=2,Mn(a,e,n,i,(e.subtreeFlags&10256)!==0||!1)),m&2048&&wu(v,e);break;case 24:ja(a,e,n,i),m&2048&&ma(e.alternate,e);break;default:ja(a,e,n,i)}}function Mn(a,e,n,i,m){for(m=m&&((e.subtreeFlags&10256)!==0||!1),e=e.child;e!==null;){var p=a,v=e,T=n,b=i,Y=v.flags;switch(v.tag){case 0:case 11:case 15:Mn(p,v,T,b,m),iu(8,v);break;case 23:break;case 22:var Z=v.stateNode;v.memoizedState!==null?Z._visibility&2?Mn(p,v,T,b,m):On(p,v):(Z._visibility|=2,Mn(p,v,T,b,m)),m&&Y&2048&&wu(v.alternate,v);break;case 24:Mn(p,v,T,b,m),m&&Y&2048&&ma(v.alternate,v);break;default:Mn(p,v,T,b,m)}e=e.sibling}}function On(a,e){if(e.subtreeFlags&10256)for(e=e.child;e!==null;){var n=a,i=e,m=i.flags;switch(i.tag){case 22:On(n,i),m&2048&&wu(i.alternate,i);break;case 24:On(n,i),m&2048&&ma(i.alternate,i);break;default:On(n,i)}e=e.sibling}}function Pu(a,e,n){if(a.subtreeFlags&rn)for(a=a.child;a!==null;)Gp(a,e,n),a=a.sibling}function Gp(a,e,n){switch(a.tag){case 26:if(Pu(a,e,n),a.flags&rn)if(a.memoizedState!==null)un(n,Le,a.memoizedState,a.memoizedProps);else{var i=a.stateNode,m=a.type;a=a.memoizedProps,((e&335544128)===e||Ai(m,a))&&pa(n,i,m,a)}break;case 5:Pu(a,e,n),a.flags&rn&&(i=a.stateNode,m=a.type,a=a.memoizedProps,((e&335544128)===e||Ai(m,a))&&pa(n,i,m,a));break;case 3:case 4:pe?(i=Le,Le=ts(a.stateNode.containerInfo),Pu(a,e,n),Le=i):Pu(a,e,n);break;case 22:a.memoizedState===null&&(i=a.alternate,i!==null&&i.memoizedState!==null?(i=rn,rn=16777216,Pu(a,e,n),rn=i):Pu(a,e,n));break;default:Pu(a,e,n)}}function Rm(a){var e=a.alternate;if(e!==null&&(a=e.child,a!==null)){e.child=null;do e=a.sibling,a.sibling=null,a=e;while(a!==null)}}function bn(a){var e=a.deletions;if((a.flags&16)!==0){if(e!==null)for(var n=0;n<e.length;n++){var i=e[n];Zl=i,Cm(i,a)}Rm(a)}if(a.subtreeFlags&10256)for(a=a.child;a!==null;)Um(a),a=a.sibling}function Um(a){switch(a.tag){case 0:case 11:case 15:bn(a),a.flags&2048&&fu(9,a,a.return);break;case 3:bn(a);break;case 12:bn(a);break;case 22:var e=a.stateNode;a.memoizedState!==null&&e._visibility&2&&(a.return===null||a.return.tag!==13)?(e._visibility&=-3,Tc(a)):bn(a);break;default:bn(a)}}function Tc(a){var e=a.deletions;if((a.flags&16)!==0){if(e!==null)for(var n=0;n<e.length;n++){var i=e[n];Zl=i,Cm(i,a)}Rm(a)}for(a=a.child;a!==null;){switch(e=a,e.tag){case 0:case 11:case 15:fu(8,e,e.return),Tc(e);break;case 22:n=e.stateNode,n._visibility&2&&(n._visibility&=-3,Tc(e));break;default:Tc(e)}a=a.sibling}}function Cm(a,e){for(;Zl!==null;){var n=Zl;switch(n.tag){case 0:case 11:case 15:fu(8,n,e);break;case 23:case 22:if(n.memoizedState!==null&&n.memoizedState.cachePool!==null){var i=n.memoizedState.cachePool.pool;i!=null&&i.refCount++}break;case 24:cc(n.memoizedState.cache)}if(i=n.child,i!==null)i.return=n,Zl=i;else t:for(n=a;Zl!==null;){i=Zl;var m=i.sibling,p=i.return;if(Hy(i),i===n){Zl=null;break t}if(m!==null){m.return=p,Zl=m;break t}Zl=p}}}function Ti(a){var e=Vy(a);if(e!=null){if(typeof e.memoizedProps["data-testname"]!="string")throw Error(E(364));return e}if(a=cd(a),a===null)throw Error(E(362));return a.stateNode.current}function Lf(a,e){var n=a.tag;switch(e.$$typeof){case gs:if(a.type===e.value)return!0;break;case _s:t:{for(e=e.value,a=[a,0],n=0;n<a.length;){var i=a[n++],m=i.tag,p=a[n++],v=e[p];if(m!==5&&m!==26&&m!==27||!vu(i)){for(;v!=null&&Lf(i,v);)p++,v=e[p];if(p===e.length){e=!0;break t}else for(i=i.child;i!==null;)a.push(i,p),i=i.sibling}}e=!1}return e;case Ds:if((n===5||n===26||n===27)&&Ly(a.stateNode,e.value))return!0;break;case As:if((n===5||n===6||n===26||n===27)&&(a=Jy(a),a!==null&&0<=a.indexOf(e.value)))return!0;break;case Hs:if((n===5||n===26||n===27)&&(a=a.memoizedProps["data-testname"],typeof a=="string"&&a.toLowerCase()===e.value.toLowerCase()))return!0;break;default:throw Error(E(365))}return!1}function Mm(a){switch(a.$$typeof){case gs:return"<"+(k(a.value)||"Unknown")+">";case _s:return":has("+(Mm(a)||"")+")";case Ds:return'[role="'+a.value+'"]';case As:return'"'+a.value+'"';case Hs:return'[data-testname="'+a.value+'"]';default:throw Error(E(365))}}function Vp(a,e){var n=[];a=[a,0];for(var i=0;i<a.length;){var m=a[i++],p=m.tag,v=a[i++],T=e[v];if(p!==5&&p!==26&&p!==27||!vu(m)){for(;T!=null&&Lf(m,T);)v++,T=e[v];if(v===e.length)n.push(m);else for(m=m.child;m!==null;)a.push(m,v),m=m.sibling}}return n}function Wf(a,e){if(!Ac)throw Error(E(363));a=Ti(a),a=Vp(a,e),e=[],a=Array.from(a);for(var n=0;n<a.length;){var i=a[n++],m=i.tag;if(m===5||m===26||m===27)vu(i)||e.push(i.stateNode);else for(i=i.child;i!==null;)a.push(i),i=i.sibling}return e}function Qa(){return(Ht&2)!==0&&Ut!==0?Ut&-Ut:$.T!==null?Io():Ze()}function Ff(){if(ka===0)if((Ut&536870912)===0||Dt){var a=vo;vo<<=1,(vo&3932160)===0&&(vo=262144),ka=a}else ka=536870912;return a=wa.current,a!==null&&(a.flags|=32),ka}function _a(a,e,n){(a===It&&(rt===2||rt===9)||a.cancelPendingCommit!==null)&&(Bn(a,0),ku(a,Ut,ka,!1)),ju(a,n),((Ht&2)===0||a!==It)&&(a===It&&((Ht&2)===0&&(Yc|=n),vl===4&&ku(a,Ut,ka,!1)),Re(a))}function xp(a,e,n){if((Ht&6)!==0)throw Error(E(327));var i=!n&&(e&127)===0&&(e&a.expiredLanes)===0||we(a,e),m=i?by(a,e):Di(a,e,!0),p=i;do{if(m===0){Qc&&!i&&ku(a,e,0,!1);break}else{if(n=a.current.alternate,p&&!Uy(n)){m=Di(a,e,!1),p=!1;continue}if(m===2){if(p=e,a.errorRecoveryDisabledLanes&p)var v=0;else v=a.pendingLanes&-536870913,v=v!==0?v:v&536870912?536870912:0;if(v!==0){e=v;t:{var T=a;m=Do;var b=la&&T.current.memoizedState.isDehydrated;if(b&&(Bn(T,v).flags|=256),v=Di(T,v,!1),v!==2){if(Ad&&!b){T.errorRecoveryDisabledLanes|=p,Yc|=p,m=4;break t}p=Za,Za=m,p!==null&&(Za===null?Za=p:Za.push.apply(Za,p))}m=v}if(p=!1,m!==2)continue}}if(m===1){Bn(a,0),ku(a,e,0,!0);break}t:{switch(i=a,p=m,p){case 0:case 1:throw Error(E(345));case 4:if((e&4194048)!==e)break;case 6:ku(i,e,ka,!Kn);break t;case 2:Za=null;break;case 3:case 5:break;default:throw Error(E(329))}if((e&62914560)===e&&(m=Ho+300-Xt(),10<m)){if(ku(i,e,ka,!Kn),$t(i,0,!0)!==0)break t;gu=e,i.timeoutHandle=Gy(Om.bind(null,i,n,Za,Rs,Ns,e,ka,Yc,Zi,Kn,p,"Throttled",-0,0),m);break t}Om(i,n,Za,Rs,Ns,e,ka,Yc,Zi,Kn,p,null,-0,0)}}break}while(!0);Re(a)}function Om(a,e,n,i,m,p,v,T,b,Y,Z,X,J,lt){if(a.timeoutHandle=an,X=e.subtreeFlags,X&8192||(X&16785408)===16785408){X=Zy(),Gp(e,p,X);var cl=(p&62914560)===p?Ho-Xt():(p&4194048)===p?Rd-Xt():0;if(cl=ry(X,cl),cl!==null){gu=p,a.cancelPendingCommit=cl(Kp.bind(null,a,e,p,n,i,m,v,T,b,Z,X,null,J,lt)),ku(a,p,v,!Y);return}}Kp(a,e,p,n,i,m,v,T,b)}function Uy(a){for(var e=a;;){var n=e.tag;if((n===0||n===11||n===15)&&e.flags&16384&&(n=e.updateQueue,n!==null&&(n=n.stores,n!==null)))for(var i=0;i<n.length;i++){var m=n[i],p=m.getSnapshot;m=m.value;try{if(!ea(p(),m))return!1}catch{return!1}}if(n=e.child,e.subtreeFlags&16384&&n!==null)n.return=e,e=n;else{if(e===a)break;for(;e.sibling===null;){if(e.return===null||e.return===a)return!0;e=e.return}e.sibling.return=e.return,e=e.sibling}}return!0}function ku(a,e,n,i){e&=~Nd,e&=~Yc,a.suspendedLanes|=e,a.pingedLanes&=~e,i&&(a.warmLanes|=e),i=a.expirationTimes;for(var m=e;0<m;){var p=31-Ya(m),v=1<<p;i[p]=-1,m&=~v}n!==0&&De(a,n,e)}function qn(){return(Ht&6)===0?(ic(0,!1),!1):!0}function $f(){if(At!==null){if(rt===0)var a=At.return;else a=At,nl=Na=null,Df(a),Se=null,zo=0,a=At;for(;a!==null;)Tm(a.alternate,a),a=a.return;At=null}}function Bn(a,e){var n=a.timeoutHandle;n!==an&&(a.timeoutHandle=an,ud(n)),n=a.cancelPendingCommit,n!==null&&(a.cancelPendingCommit=null,n()),gu=0,$f(),It=a,At=n=mu(a.current,null),Ut=e,rt=0,Pa=null,Kn=!1,Qc=we(a,e),Ad=!1,Zi=ka=Nd=Yc=Jn=vl=0,Za=Do=null,Ns=!1,(e&8)!==0&&(e|=e&32);var i=a.entangledLanes;if(i!==0)for(a=a.entanglements,i&=e;0<i;){var m=31-Ya(i),p=1<<m;e|=a[m],i&=~p}return sn=e,ia(),n}function Cy(a,e){pt=null,$.H=To,e===Gi||e===ps?(e=Ef(),rt=3):e===ss?(e=Ef(),rt=4):rt=e===Es?8:e!==null&&typeof e=="object"&&typeof e.then=="function"?6:1,Pa=e,At===null&&(vl=1,Bf(a,Rt(e,a.current)))}function My(){var a=wa.current;return a===null?!0:(Ut&4194048)===Ut?ze===null:(Ut&62914560)===Ut||(Ut&536870912)!==0?a===ze:!1}function Xp(){var a=$.H;return $.H=To,a===null?To:a}function gi(){var a=$.A;return $.A=Kv,a}function _i(){vl=4,Kn||(Ut&4194048)!==Ut&&wa.current!==null||(Qc=!0),(Jn&134217727)===0&&(Yc&134217727)===0||It===null||ku(It,Ut,ka,!1)}function Di(a,e,n){var i=Ht;Ht|=2;var m=Xp(),p=gi();(It!==a||Ut!==e)&&(Rs=null,Bn(a,e)),e=!1;var v=vl;t:do try{if(rt!==0&&At!==null){var T=At,b=Pa;switch(rt){case 8:$f(),v=6;break t;case 3:case 2:case 9:case 6:wa.current===null&&(e=!0);var Y=rt;if(rt=0,Pa=null,gc(a,T,b,Y),n&&Qc){v=0;break t}break;default:Y=rt,rt=0,Pa=null,gc(a,T,b,Y)}}Oy(),v=vl;break}catch(Z){Cy(a,Z)}while(!0);return e&&a.shellSuspendCounter++,nl=Na=null,Ht=i,$.H=m,$.A=p,At===null&&(It=null,Ut=0,ia()),v}function Oy(){for(;At!==null;)bm(At)}function by(a,e){var n=Ht;Ht|=2;var i=Xp(),m=gi();It!==a||Ut!==e?(Rs=null,ri=Xt()+500,Bn(a,e)):Qc=we(a,e);t:do try{if(rt!==0&&At!==null){e=At;var p=Pa;l:switch(rt){case 1:rt=0,Pa=null,gc(a,e,p,1);break;case 2:case 9:if(dp(p)){rt=0,Pa=null,rp(e);break}e=function(){rt!==2&&rt!==9||It!==a||(rt=7),Re(a)},p.then(e,e);break t;case 3:rt=7;break t;case 4:rt=5;break t;case 7:dp(p)?(rt=0,Pa=null,rp(e)):(rt=0,Pa=null,gc(a,e,p,7));break;case 5:var v=null;switch(At.tag){case 26:v=At.memoizedState;case 5:case 27:var T=At,b=T.type,Y=T.pendingProps;if(v?as(v):aa(T.stateNode,b,Y)){rt=0,Pa=null;var Z=T.sibling;if(Z!==null)At=Z;else{var X=T.return;X!==null?(At=X,ou(X)):At=null}break l}}rt=0,Pa=null,gc(a,e,p,5);break;case 6:rt=0,Pa=null,gc(a,e,p,6);break;case 8:$f(),vl=6;break t;default:throw Error(E(462))}}Zp();break}catch(J){Cy(a,J)}while(!0);return nl=Na=null,$.H=i,$.A=m,Ht=n,At!==null?0:(It=null,Ut=0,ia(),vl)}function Zp(){for(;At!==null&&!Xv();)bm(At)}function bm(a){var e=hm(a.alternate,a,sn);a.memoizedProps=a.pendingProps,e===null?ou(a):At=e}function rp(a){var e=a,n=e.alternate;switch(e.tag){case 15:case 0:e=Mp(n,e,e.pendingProps,e.type,void 0,Ut);break;case 11:e=Mp(n,e,e.pendingProps,e.type.render,e.ref,Ut);break;case 5:Df(e);default:Tm(n,e),e=At=Fp(e,sn),e=hm(n,e,sn)}a.memoizedProps=a.pendingProps,e===null?ou(a):At=e}function gc(a,e,n,i){nl=Na=null,Df(e),Se=null,zo=0;var m=e.return;try{if(fa(a,m,e,n,Ut)){vl=1,Bf(a,Rt(n,a.current)),At=null;return}}catch(p){if(m!==null)throw At=m,p;vl=1,Bf(a,Rt(n,a.current)),At=null;return}e.flags&32768?(Dt||i===1?a=!0:Qc||(Ut&536870912)!==0?a=!1:(Kn=a=!0,(i===2||i===9||i===3||i===6)&&(i=wa.current,i!==null&&i.tag===13&&(i.flags|=16384))),If(e,a)):ou(e)}function ou(a){var e=a;do{if((e.flags&32768)!==0){If(e,Kn);return}a=e.return;var n=zc(e.alternate,e,sn);if(n!==null){At=n;return}if(e=e.sibling,e!==null){At=e;return}At=e=a}while(e!==null);vl===0&&(vl=5)}function If(a,e){do{var n=Ye(a.alternate,a);if(n!==null){n.flags&=32767,At=n;return}if(n=a.return,n!==null&&(n.flags|=32768,n.subtreeFlags=0,n.deletions=null),!e&&(a=a.sibling,a!==null)){At=a;return}At=a=n}while(a!==null);vl=6,At=null}function Kp(a,e,n,i,m,p,v,T,b){a.cancelPendingCommit=null;do Dl();while(Kt!==0);if((Ht&6)!==0)throw Error(E(327));if(e!==null){if(e===a.current)throw Error(E(177));if(p=e.lanes|e.childLanes,p|=_d,df(a,n,p,v,T,b),a===It&&(At=It=null,Ut=0),Wn=e,pn=a,gu=n,Us=p,Cs=m,C0=i,(e.subtreeFlags&10256)!==0||(e.flags&10256)!==0?(a.callbackNode=null,a.callbackPriority=0,Rv(cn,function(){return Jp(),null})):(a.callbackNode=null,a.callbackPriority=0),i=(e.flags&13878)!==0,(e.subtreeFlags&13878)!==0||i){i=$.T,$.T=null,m=du(),Ql(2),v=Ht,Ht|=4;try{Dy(a,e,n)}finally{Ht=v,Ql(m),$.T=i}}Kt=1,qm(),Bm(),jm()}}function qm(){if(Kt===1){Kt=0;var a=pn,e=Wn,n=(e.flags&13878)!==0;if((e.subtreeFlags&13878)!==0||n){n=$.T,$.T=null;var i=du();Ql(2);var m=Ht;Ht|=4;try{Jf(e,a),no(a.containerInfo)}finally{Ht=m,Ql(i),$.T=n}}a.current=e,Kt=2}}function Bm(){if(Kt===2){Kt=0;var a=pn,e=Wn,n=(e.flags&8772)!==0;if((e.subtreeFlags&8772)!==0||n){n=$.T,$.T=null;var i=du();Ql(2);var m=Ht;Ht|=4;try{Qp(a,e.alternate,e)}finally{Ht=m,Ql(i),$.T=n}}Kt=3}}function jm(){if(Kt===4||Kt===3){Kt=0,Ga();var a=pn,e=Wn,n=gu,i=C0;(e.subtreeFlags&10256)!==0||(e.flags&10256)!==0?Kt=5:(Kt=0,Wn=pn=null,qy(a,a.pendingLanes));var m=a.pendingLanes;if(m===0&&(Ln=null),ll(n),e=e.stateNode,Hl&&typeof Hl.onCommitFiberRoot=="function")try{Hl.onCommitFiberRoot(Oc,e,void 0,(e.current.flags&128)===128)}catch{}if(i!==null){e=$.T,m=du(),Ql(2),$.T=null;try{for(var p=a.onRecoverableError,v=0;v<i.length;v++){var T=i[v];p(T.value,{componentStack:T.stack})}}finally{$.T=e,Ql(m)}}(gu&3)!==0&&Dl(),Re(a),m=a.pendingLanes,(n&261930)!==0&&(m&42)!==0?a===Ms?Ki++:(Ki=0,Ms=a):Ki=0,la&&v0(),ic(0,!1)}}function qy(a,e){(a.pooledCacheLanes&=e)===0&&(e=a.pooledCache,e!=null&&(a.pooledCache=null,cc(e)))}function Dl(){return qm(),Bm(),jm(),Jp()}function Jp(){if(Kt!==5)return!1;var a=pn,e=Us;Us=0;var n=ll(gu),i=32>n?32:n;n=$.T;var m=du();try{Ql(i),$.T=null,i=Cs,Cs=null;var p=pn,v=gu;if(Kt=0,Wn=pn=null,gu=0,(Ht&6)!==0)throw Error(E(331));var T=Ht;if(Ht|=4,Um(p.current),Ry(p,p.current,v,i),Ht=T,ic(0,!1),Hl&&typeof Hl.onPostCommitFiberRoot=="function")try{Hl.onPostCommitFiberRoot(Oc,p)}catch{}return!0}finally{Ql(m),$.T=n,qy(a,e)}}function Lp(a,e,n){e=Rt(n,e),e=yi(a.stateNode,e,2),a=ke(a,e,2),a!==null&&(ju(a,2),Re(a))}function qt(a,e,n){if(a.tag===3)Lp(a,a,n);else for(;e!==null;){if(e.tag===3){Lp(e,a,n);break}else if(e.tag===1){var i=e.stateNode;if(typeof e.type.getDerivedStateFromError=="function"||typeof i.componentDidCatch=="function"&&(Ln===null||!Ln.has(i))){a=Rt(n,a),n=jf(2),i=ke(e,n,2),i!==null&&(mm(n,i,e,a),ju(i,2),Re(i));break}}e=e.return}}function Qm(a,e,n){var i=a.pingCache;if(i===null){i=a.pingCache=new Jv;var m=new Set;i.set(e,m)}else m=i.get(e),m===void 0&&(m=new Set,i.set(e,m));m.has(n)||(Ad=!0,m.add(n),a=wf.bind(null,a,e,n),e.then(a,a))}function wf(a,e,n){var i=a.pingCache;i!==null&&i.delete(e),a.pingedLanes|=a.suspendedLanes&n,a.warmLanes&=~n,It===a&&(Ut&n)===n&&(vl===4||vl===3&&(Ut&62914560)===Ut&&300>Xt()-Ho?(Ht&2)===0&&Bn(a,0):Nd|=n,Zi===Ut&&(Zi=0)),Re(a)}function Wp(a,e){e===0&&(e=Bu()),a=Nn(a,e),a!==null&&(ju(a,e),Re(a))}function Ym(a){var e=a.memoizedState,n=0;e!==null&&(n=e.retryLane),Wp(a,n)}function By(a,e){var n=0;switch(a.tag){case 31:case 13:var i=a.stateNode,m=a.memoizedState;m!==null&&(n=m.retryLane);break;case 19:i=a.stateNode;break;case 22:i=a.stateNode._retryCache;break;default:throw Error(E(314))}i!==null&&i.delete(e),Wp(a,n)}function Rv(a,e){return cs(a,e)}function Gm(a,e,n,i){this.tag=a,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.refCleanup=this.ref=null,this.pendingProps=e,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=i,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function Pf(a){return a=a.prototype,!(!a||!a.isReactComponent)}function mu(a,e){var n=a.alternate;return n===null?(n=h(a.tag,e,a.key,a.mode),n.elementType=a.elementType,n.type=a.type,n.stateNode=a.stateNode,n.alternate=a,a.alternate=n):(n.pendingProps=e,n.type=a.type,n.flags=0,n.subtreeFlags=0,n.deletions=null),n.flags=a.flags&65011712,n.childLanes=a.childLanes,n.lanes=a.lanes,n.child=a.child,n.memoizedProps=a.memoizedProps,n.memoizedState=a.memoizedState,n.updateQueue=a.updateQueue,e=a.dependencies,n.dependencies=e===null?null:{lanes:e.lanes,firstContext:e.firstContext},n.sibling=a.sibling,n.index=a.index,n.ref=a.ref,n.refCleanup=a.refCleanup,n}function Fp(a,e){a.flags&=65011714;var n=a.alternate;return n===null?(a.childLanes=0,a.lanes=e,a.child=null,a.subtreeFlags=0,a.memoizedProps=null,a.memoizedState=null,a.updateQueue=null,a.dependencies=null,a.stateNode=null):(a.childLanes=n.childLanes,a.lanes=n.lanes,a.child=n.child,a.subtreeFlags=0,a.deletions=null,a.memoizedProps=n.memoizedProps,a.memoizedState=n.memoizedState,a.updateQueue=n.updateQueue,a.type=n.type,e=n.dependencies,a.dependencies=e===null?null:{lanes:e.lanes,firstContext:e.firstContext}),a}function kf(a,e,n,i,m,p){var v=0;if(i=a,typeof a=="function")Pf(a)&&(v=1);else if(typeof a=="string")v=pe&&Ml?vd(a,n,ua.current)?26:ns(a)?27:5:pe?vd(a,n,ua.current)?26:5:Ml&&ns(a)?27:5;else t:switch(a){case Jm:return a=h(31,n,e,m),a.elementType=Jm,a.lanes=p,a;case _c:return tn(n.children,m,p,e);case Pp:v=8,m|=24;break;case eo:return a=h(12,n,e,m|2),a.elementType=eo,a.lanes=p,a;case Dc:return a=h(13,n,e,m),a.elementType=Dc,a.lanes=p,a;case Zt:return a=h(19,n,e,m),a.elementType=Zt,a.lanes=p,a;default:if(typeof a=="object"&&a!==null)switch(a.$$typeof){case ln:v=10;break t;case Km:v=9;break t;case Hi:v=11;break t;case kp:v=14;break t;case Qn:v=16,i=null;break t}v=29,n=Error(E(130,a===null?"null":typeof a,"")),i=null}return e=h(v,n,e,m),e.elementType=a,e.type=i,e.lanes=p,e}function tn(a,e,n,i){return a=h(7,a,i,e),a.lanes=n,a}function to(a,e,n){return a=h(6,a,null,e),a.lanes=n,a}function Vm(a){var e=h(18,null,null,0);return e.stateNode=a,e}function xm(a,e,n){return e=h(4,a.children!==null?a.children:[],a.key,e),e.lanes=n,e.stateNode={containerInfo:a.containerInfo,pendingChildren:null,implementation:a.implementation},e}function $p(a,e,n,i,m,p,v,T,b){this.tag=1,this.containerInfo=a,this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=an,this.callbackNode=this.next=this.pendingContext=this.context=this.cancelPendingCommit=null,this.callbackPriority=0,this.expirationTimes=_n(-1),this.entangledLanes=this.shellSuspendCounter=this.errorRecoveryDisabledLanes=this.expiredLanes=this.warmLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=_n(0),this.hiddenUpdates=_n(null),this.identifierPrefix=i,this.onUncaughtError=m,this.onCaughtError=p,this.onRecoverableError=v,this.pooledCache=null,this.pooledCacheLanes=0,this.formState=b,this.incompleteTransitions=new Map}function lo(a,e,n,i,m,p,v,T,b,Y,Z,X){return a=new $p(a,e,n,v,b,Y,Z,X,T),e=1,p===!0&&(e|=24),p=h(3,null,null,e),a.current=p,p.stateNode=a,e=pp(),e.refCount++,a.pooledCache=e,e.refCount++,p.memoizedState={element:i,isDehydrated:n,cache:e},zf(p),a}function Xm(a){return a?(a=Mc,a):Mc}function Ip(a){var e=a._reactInternals;if(e===void 0)throw typeof a.render=="function"?Error(E(188)):(a=Object.keys(a).join(","),Error(E(268,a)));return a=r(e),a=a!==null?yt(a):null,a===null?null:uo(a.stateNode)}function Zm(a,e,n,i,m,p){m=Xm(m),i.context===null?i.context=m:i.pendingContext=m,i=Wa(e),i.payload={element:n},p=p===void 0?null:p,p!==null&&(i.callback=p),n=ke(a,i,e),n!==null&&(_a(n,a,e),Tf(n,a,e))}function wp(a,e){if(a=a.memoizedState,a!==null&&a.dehydrated!==null){var n=a.retryLane;a.retryLane=n!==0&&n<e?n:e}}function xe(a,e){wp(a,e),(a=a.alternate)&&wp(a,e)}var zt={},Uv=G1(),Da=F1(),$a=Object.assign,rm=Symbol.for("react.element"),ao=Symbol.for("react.transitional.element"),jn=Symbol.for("react.portal"),_c=Symbol.for("react.fragment"),Pp=Symbol.for("react.strict_mode"),eo=Symbol.for("react.profiler"),Km=Symbol.for("react.consumer"),ln=Symbol.for("react.context"),Hi=Symbol.for("react.forward_ref"),Dc=Symbol.for("react.suspense"),Zt=Symbol.for("react.suspense_list"),kp=Symbol.for("react.memo"),Qn=Symbol.for("react.lazy");Symbol.for("react.scope");var Jm=Symbol.for("react.activity");Symbol.for("react.legacy_hidden"),Symbol.for("react.tracing_marker");var su=Symbol.for("react.memo_cache_sentinel");Symbol.for("react.view_transition");var td=Symbol.iterator,ld=Symbol.for("react.client.reference"),Yn=Array.isArray,$=Uv.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,jy=s.rendererVersion,ad=s.rendererPackageName,ed=s.extraDevToolsConfig,uo=s.getPublicInstance,Cv=s.getRootHostContext,Qy=s.getChildHostContext,Mv=s.prepareForCommit,no=s.resetAfterCommit,pu=s.createInstance;s.cloneMutableInstance;var Lm=s.appendInitialChild,Yy=s.finalizeInitialChildren,co=s.shouldSetTextContent,Wm=s.createTextInstance;s.cloneMutableTextInstance;var Gy=s.scheduleTimeout,ud=s.cancelTimeout,an=s.noTimeout,se=s.isPrimaryRenderer;s.warnsIfNotActing;var sa=s.supportsMutation,Xe=s.supportsPersistence,la=s.supportsHydration,Vy=s.getInstanceFromNode;s.beforeActiveInstanceBlur;var Ov=s.preparePortalMount;s.prepareScopeUpdate,s.getInstanceFromScope;var Ql=s.setCurrentUpdatePriority,du=s.getCurrentUpdatePriority,Ze=s.resolveUpdatePriority;s.trackSchedulerEvent,s.resolveEventType,s.resolveEventTimeStamp;var nd=s.shouldAttemptEagerTransition,xy=s.detachDeletedInstance;s.requestPostPaintCallback;var Xy=s.maySuspendCommit,bv=s.maySuspendCommitOnUpdate,Ai=s.maySuspendCommitInSyncRender,aa=s.preloadInstance,Zy=s.startSuspendingCommit,pa=s.suspendInstance;s.suspendOnActiveViewTransition;var ry=s.waitForCommitToBeReady;s.getSuspendedCommitReason;var Ha=s.NotPendingTransition,Gn=s.HostTransitionContext,Hc=s.resetFormInstance;s.bindToConsole;var Ky=s.supportsMicrotasks,yu=s.scheduleMicrotask,Ac=s.supportsTestSelectors,cd=s.findFiberRoot,re=s.getBoundingRect,Jy=s.getTextContent,vu=s.isHiddenSubtree,Ly=s.matchAccessibilityRole,io=s.setFocusIfFocusable,Nc=s.setupIntersectionObserver,Wy=s.appendChild,Fy=s.appendChildToContainer,fo=s.commitTextUpdate,$y=s.commitMount,Fm=s.commitUpdate,Iy=s.insertBefore,wy=s.insertInContainerBefore,id=s.removeChild,fd=s.removeChildFromContainer,$m=s.resetTextContent,Py=s.hideInstance,Im=s.hideTextInstance,qv=s.unhideInstance,ky=s.unhideTextInstance;s.cancelViewTransitionName,s.cancelRootViewTransitionName,s.restoreRootViewTransitionName,s.cloneRootViewTransitionContainer,s.removeRootViewTransitionClone,s.measureClonedInstance,s.hasInstanceChanged,s.hasInstanceAffectedParent,s.startViewTransition,s.startGestureTransition,s.stopViewTransition,s.getCurrentGestureOffset,s.createViewTransitionInstance;var Ia=s.clearContainer;s.createFragmentInstance,s.updateFragmentInstanceFiber,s.commitNewChildToFragmentInstance,s.deleteChildFromFragmentInstance;var t0=s.cloneInstance,el=s.createContainerChildSet,od=s.appendChildToContainerChildSet,l0=s.finalizeContainerChildren,a0=s.replaceContainerChildren,en=s.cloneHiddenInstance,oo=s.cloneHiddenTextInstance,mo=s.isSuspenseInstancePending,so=s.isSuspenseInstanceFallback,Rc=s.getSuspenseInstanceFallbackErrorDetails,Ni=s.registerSuspenseInstanceRetry,e0=s.canHydrateFormStateMarker,u0=s.isFormStateMarkerMatching,md=s.getNextHydratableSibling,n0=s.getNextHydratableSiblingAfterSingleton,wm=s.getFirstHydratableChild,Pm=s.getFirstHydratableChildWithinContainer,sd=s.getFirstHydratableChildWithinActivityInstance,c0=s.getFirstHydratableChildWithinSuspenseInstance,Bv=s.getFirstHydratableChildWithinSingleton,jv=s.canHydrateInstance,i0=s.canHydrateTextInstance,f0=s.canHydrateActivityInstance,Qv=s.canHydrateSuspenseInstance,Ri=s.hydrateInstance,km=s.hydrateTextInstance,o0=s.hydrateActivityInstance,pd=s.hydrateSuspenseInstance,m0=s.getNextHydratableInstanceAfterActivityInstance,s0=s.getNextHydratableInstanceAfterSuspenseInstance,p0=s.commitHydratedInstance,Yv=s.commitHydratedContainer,d0=s.commitHydratedActivityInstance,Ui=s.commitHydratedSuspenseInstance,y0=s.finalizeHydratedChildren,v0=s.flushHydrationEvents;s.clearActivityBoundary;var Bt=s.clearSuspenseBoundary;s.clearActivityBoundaryFromContainer;var dd=s.clearSuspenseBoundaryFromContainer,Gv=s.hideDehydratedBoundary,h0=s.unhideDehydratedBoundary,S0=s.shouldDeleteUnhydratedTailInstances;s.diffHydratedPropsForDevWarnings,s.diffHydratedTextForDevWarnings,s.describeHydratableInstanceForDevWarnings;var Vv=s.validateHydratableInstance,yd=s.validateHydratableTextInstance,pe=s.supportsResources,vd=s.isHostHoistableType,ts=s.getHoistableRoot,Ci=s.getResource,E0=s.acquireResource,z0=s.releaseResource,Uc=s.hydrateHoistable,ls=s.mountHoistable,hd=s.unmountHoistable,T0=s.createHoistableInstance,g0=s.prepareToCommitHoistables,xv=s.mayResourceSuspendCommit,as=s.preloadResource,un=s.suspendResource,Ml=s.supportsSingletons,es=s.resolveSingletonInstance,us=s.acquireSingletonInstance,Vn=s.releaseSingletonInstance,ns=s.isHostSingletonType,Cc=s.isSingletonScope,po=[],Mi=-1,Mc={},Ya=Math.clz32?Math.clz32:ne,_0=Math.log,D0=Math.LN2,yo=256,vo=262144,Oi=4194304,cs=Da.unstable_scheduleCallback,Tt=Da.unstable_cancelCallback,Xv=Da.unstable_shouldYield,Ga=Da.unstable_requestPaint,Xt=Da.unstable_now,H0=Da.unstable_ImmediatePriority,nn=Da.unstable_UserBlockingPriority,cn=Da.unstable_NormalPriority,bi=Da.unstable_IdlePriority,is=Da.log,Sd=Da.unstable_setDisableYieldValue,Oc=null,Hl=null,ea=typeof Object.is=="function"?Object.is:Jo,fs=typeof reportError=="function"?reportError:function(a){if(typeof window=="object"&&typeof window.ErrorEvent=="function"){var e=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:typeof a=="object"&&a!==null&&typeof a.message=="string"?String(a.message):String(a),error:a});if(!window.dispatchEvent(e))return}else if(typeof process=="object"&&typeof process.emit=="function"){process.emit("uncaughtException",a);return}console.error(a)},Ed=Object.prototype.hasOwnProperty,qi,Va,ho=!1,A0=new WeakMap,bc=[],Bi=0,Ol=null,U=0,de=[],ye=0,fn=null,Aa=1,hu="",ua=Ft(null),So=Ft(null),xn=Ft(null),os=Ft(null),Yl=null,ul=null,Dt=!1,on=null,ve=!1,zd=Error(E(519)),Su=Ft(null),Na=null,nl=null,Eu=typeof AbortController<"u"?AbortController:function(){var a=[],e=this.signal={aborted:!1,addEventListener:function(n,i){a.push(i)}};this.abort=function(){e.aborted=!0,a.forEach(function(n){return n()})}},da=Da.unstable_scheduleCallback,Zv=Da.unstable_NormalPriority,sl={$$typeof:ln,Consumer:null,Provider:null,_currentValue:null,_currentValue2:null,_threadCount:0},Al=null,xa=null,Td=!1,ji=!1,qc=!1,Ke=0,Eo=null,gd=0,Qi=0,Yi=null,ms=$.S;$.S=function(a,e){Rd=Xt(),typeof e=="object"&&e!==null&&typeof e.then=="function"&&Sy(a,e),ms!==null&&ms(a,e)};var Xn=Ft(null),Gi=Error(E(460)),ss=Error(E(474)),ps=Error(E(542)),ds={then:function(){}},he=null,Se=null,zo=0,Bc=yp(!0),N0=yp(!1),Ee=[],Je=0,_d=0,Zn=!1,Dd=!1,zu=Ft(null),ys=Ft(0),wa=Ft(null),ze=null,Nl=Ft(0),mn=0,pt=null,Lt=null,bl=null,vs=!1,Vi=!1,jc=!1,hs=0,xi=0,Xi=null,rv=0,To={readContext:wl,use:Jt,useCallback:ml,useContext:ml,useEffect:ml,useImperativeHandle:ml,useLayoutEffect:ml,useInsertionEffect:ml,useMemo:ml,useReducer:ml,useRef:ml,useState:ml,useDebugValue:ml,useDeferredValue:ml,useTransition:ml,useSyncExternalStore:ml,useId:ml,useHostTransitionStatus:ml,useFormState:ml,useActionState:ml,useOptimistic:ml,useMemoCache:ml,useCacheRefresh:ml};To.useEffectEvent=ml;var R0={readContext:wl,use:Jt,useCallback:function(a,e){return Pl().memoizedState=[a,e===void 0?null:e],a},useContext:wl,useEffect:zp,useImperativeHandle:function(a,e,n){n=n!=null?n.concat([a]):null,Cf(4194308,4,gy.bind(null,e,a),n)},useLayoutEffect:function(a,e){return Cf(4194308,4,a,e)},useInsertionEffect:function(a,e){Cf(4,2,a,e)},useMemo:function(a,e){var n=Pl();e=e===void 0?null:e;var i=a();if(jc){mt(!0);try{a()}finally{mt(!1)}}return n.memoizedState=[i,e],i},useReducer:function(a,e,n){var i=Pl();if(n!==void 0){var m=n(e);if(jc){mt(!0);try{n(e)}finally{mt(!1)}}}else m=e;return i.memoizedState=i.baseState=m,a={pending:null,lanes:0,dispatch:null,lastRenderedReducer:a,lastRenderedState:m},i.queue=a,a=a.dispatch=kl.bind(null,pt,a),[i.memoizedState,a]},useRef:function(a){var e=Pl();return a={current:a},e.memoizedState=a},useState:function(a){a=za(a);var e=a.queue,n=fm.bind(null,pt,e);return e.dispatch=n,[a.memoizedState,n]},useDebugValue:_p,useDeferredValue:function(a,e){var n=Pl();return cm(n,a,e)},useTransition:function(){var a=za(!1);return a=Dp.bind(null,pt,a.queue,!0,!1),Pl().memoizedState=a,[!1,a]},useSyncExternalStore:function(a,e,n){var i=pt,m=Pl();if(Dt){if(n===void 0)throw Error(E(407));n=n()}else{if(n=e(),It===null)throw Error(E(349));(Ut&127)!==0||zy(i,e,n)}m.memoizedState=n;var p={value:n,getSnapshot:e};return m.queue=p,zp(Hf.bind(null,i,p,a),[a]),i.flags|=2048,Ta(9,{destroy:void 0},eu.bind(null,i,p,n,e),null),n},useId:function(){var a=Pl(),e=It.identifierPrefix;if(Dt){var n=hu,i=Aa;n=(i&~(1<<32-Ya(i)-1)).toString(32)+n,e="_"+e+"R_"+n,n=hs++,0<n&&(e+="H"+n.toString(32)),e+="_"}else n=rv++,e="_"+e+"r_"+n.toString(32)+"_";return a.memoizedState=e},useHostTransitionStatus:im,useFormState:Be,useActionState:Be,useOptimistic:function(a){var e=Pl();e.memoizedState=e.baseState=a;var n={pending:null,lanes:0,dispatch:null,lastRenderedReducer:null,lastRenderedState:null};return e.queue=n,e=di.bind(null,pt,!0,n),n.dispatch=e,[a,e]},useMemoCache:oi,useCacheRefresh:function(){return Pl().memoizedState=_y.bind(null,pt)},useEffectEvent:function(a){var e=Pl(),n={impl:a};return e.memoizedState=n,function(){if((Ht&2)!==0)throw Error(E(440));return n.impl.apply(void 0,arguments)}}},Hd={readContext:wl,use:Jt,useCallback:nm,useContext:wl,useEffect:am,useImperativeHandle:gp,useInsertionEffect:Tp,useLayoutEffect:um,useMemo:Mf,useReducer:mi,useRef:hc,useState:function(){return mi(au)},useDebugValue:_p,useDeferredValue:function(a,e){var n=Pt();return Of(n,Lt.memoizedState,a,e)},useTransition:function(){var a=mi(au)[0],e=Pt().memoizedState;return[typeof a=="boolean"?a:Ce(a),e]},useSyncExternalStore:Me,useId:Fu,useHostTransitionStatus:im,useFormState:Ep,useActionState:Ep,useOptimistic:function(a,e){var n=Pt();return qa(n,Lt,a,e)},useMemoCache:oi,useCacheRefresh:Ap};Hd.useEffectEvent=em;var U0={readContext:wl,use:Jt,useCallback:nm,useContext:wl,useEffect:am,useImperativeHandle:gp,useInsertionEffect:Tp,useLayoutEffect:um,useMemo:Mf,useReducer:vc,useRef:hc,useState:function(){return vc(au)},useDebugValue:_p,useDeferredValue:function(a,e){var n=Pt();return Lt===null?cm(n,a,e):Of(n,Lt.memoizedState,a,e)},useTransition:function(){var a=vc(au)[0],e=Pt().memoizedState;return[typeof a=="boolean"?a:Ce(a),e]},useSyncExternalStore:Me,useId:Fu,useHostTransitionStatus:im,useFormState:Uf,useActionState:Uf,useOptimistic:function(a,e){var n=Pt();return Lt!==null?qa(n,Lt,a,e):(n.baseState=a,[a,n.queue.dispatch])},useMemoCache:oi,useCacheRefresh:Ap};U0.useEffectEvent=em;var Ss={enqueueSetState:function(a,e,n){a=a._reactInternals;var i=Qa(),m=Wa(i);m.payload=e,n!=null&&(m.callback=n),e=ke(a,m,i),e!==null&&(_a(e,a,i),Tf(e,a,i))},enqueueReplaceState:function(a,e,n){a=a._reactInternals;var i=Qa(),m=Wa(i);m.tag=1,m.payload=e,n!=null&&(m.callback=n),e=ke(a,m,i),e!==null&&(_a(e,a,i),Tf(e,a,i))},enqueueForceUpdate:function(a,e){a=a._reactInternals;var n=Qa(),i=Wa(n);i.tag=2,e!=null&&(i.callback=e),e=ke(a,i,n),e!==null&&(_a(e,a,n),Tf(e,a,n))}},Es=Error(E(461)),ql=!1,zs={dehydrated:null,treeContext:null,retryLane:0,hydrationErrors:null},Tu=!1,Rl=!1,go=!1,Ts=typeof WeakSet=="function"?WeakSet:Set,Zl=null,Bl=null,Xa=!1,Le=null,rn=8192,Kv={getCacheForType:function(a){var e=wl(sl),n=e.data.get(a);return n===void 0&&(n=a(),e.data.set(a,n)),n},cacheSignal:function(){return wl(sl).controller.signal}},gs=0,_s=1,Ds=2,Hs=3,As=4;if(typeof Symbol=="function"&&Symbol.for){var _o=Symbol.for;gs=_o("selector.component"),_s=_o("selector.has_pseudo_class"),Ds=_o("selector.role"),Hs=_o("selector.test_id"),As=_o("selector.text")}var Jv=typeof WeakMap=="function"?WeakMap:Map,Ht=0,It=null,At=null,Ut=0,rt=0,Pa=null,Kn=!1,Qc=!1,Ad=!1,sn=0,vl=0,Jn=0,Yc=0,Nd=0,ka=0,Zi=0,Do=null,Za=null,Ns=!1,Ho=0,Rd=0,ri=1/0,Rs=null,Ln=null,Kt=0,pn=null,Wn=null,gu=0,Us=0,Cs=null,C0=null,Ki=0,Ms=null;return zt.attemptContinuousHydration=function(a){if(a.tag===13||a.tag===31){var e=Nn(a,67108864);e!==null&&_a(e,a,67108864),xe(a,67108864)}},zt.attemptHydrationAtCurrentPriority=function(a){if(a.tag===13||a.tag===31){var e=Qa();e=$l(e);var n=Nn(a,e);n!==null&&_a(n,a,e),xe(a,e)}},zt.attemptSynchronousHydration=function(a){switch(a.tag){case 3:if(a=a.stateNode,a.current.memoizedState.isDehydrated){var e=gl(a.pendingLanes);if(e!==0){for(a.pendingLanes|=2,a.entangledLanes|=2;e;){var n=1<<31-Ya(e);a.entanglements[1]|=n,e&=~n}Re(a),(Ht&6)===0&&(ri=Xt()+500,ic(0,!1))}}break;case 31:case 13:e=Nn(a,2),e!==null&&_a(e,a,2),qn(),xe(a,2)}},zt.batchedUpdates=function(a,e){return a(e)},zt.createComponentSelector=function(a){return{$$typeof:gs,value:a}},zt.createContainer=function(a,e,n,i,m,p,v,T,b,Y){return lo(a,e,!1,null,n,i,p,null,v,T,b,Y)},zt.createHasPseudoClassSelector=function(a){return{$$typeof:_s,value:a}},zt.createHydrationContainer=function(a,e,n,i,m,p,v,T,b,Y,Z,X,J,lt){return a=lo(n,i,!0,a,m,p,T,lt,b,Y,Z,X),a.context=Xm(null),n=a.current,i=Qa(),i=$l(i),m=Wa(i),m.callback=e??null,ke(n,m,i),e=i,a.current.lanes=e,ju(a,e),Re(a),a},zt.createPortal=function(a,e,n){var i=3<arguments.length&&arguments[3]!==void 0?arguments[3]:null;return{$$typeof:jn,key:i==null?null:""+i,children:a,containerInfo:e,implementation:n}},zt.createRoleSelector=function(a){return{$$typeof:Ds,value:a}},zt.createTestNameSelector=function(a){return{$$typeof:Hs,value:a}},zt.createTextSelector=function(a){return{$$typeof:As,value:a}},zt.defaultOnCaughtError=function(a){console.error(a)},zt.defaultOnRecoverableError=function(a){fs(a)},zt.defaultOnUncaughtError=function(a){fs(a)},zt.deferredUpdates=function(a){var e=$.T,n=du();try{return Ql(32),$.T=null,a()}finally{Ql(n),$.T=e}},zt.discreteUpdates=function(a,e,n,i,m){var p=$.T,v=du();try{return Ql(2),$.T=null,a(e,n,i,m)}finally{Ql(v),$.T=p,Ht===0&&(ri=Xt()+500)}},zt.findAllNodes=Wf,zt.findBoundingRects=function(a,e){if(!Ac)throw Error(E(363));e=Wf(a,e),a=[];for(var n=0;n<e.length;n++)a.push(re(e[n]));for(e=a.length-1;0<e;e--){n=a[e];for(var i=n.x,m=i+n.width,p=n.y,v=p+n.height,T=e-1;0<=T;T--)if(e!==T){var b=a[T],Y=b.x,Z=Y+b.width,X=b.y,J=X+b.height;if(i>=Y&&p>=X&&m<=Z&&v<=J){a.splice(e,1);break}else if(i!==Y||n.width!==b.width||J<p||X>v){if(!(p!==X||n.height!==b.height||Z<i||Y>m)){Y>i&&(b.width+=Y-i,b.x=i),Z<m&&(b.width=m-Y),a.splice(e,1);break}}else{X>p&&(b.height+=X-p,b.y=p),J<v&&(b.height=v-X),a.splice(e,1);break}}}return a},zt.findHostInstance=Ip,zt.findHostInstanceWithNoPortals=function(a){return a=r(a),a=a!==null?it(a):null,a===null?null:uo(a.stateNode)},zt.findHostInstanceWithWarning=function(a){return Ip(a)},zt.flushPassiveEffects=Dl,zt.flushSyncFromReconciler=function(a){var e=Ht;Ht|=1;var n=$.T,i=du();try{if(Ql(2),$.T=null,a)return a()}finally{Ql(i),$.T=n,Ht=e,(Ht&6)===0&&ic(0,!1)}},zt.flushSyncWork=qn,zt.focusWithin=function(a,e){if(!Ac)throw Error(E(363));for(a=Ti(a),e=Vp(a,e),e=Array.from(e),a=0;a<e.length;){var n=e[a++],i=n.tag;if(!vu(n)){if((i===5||i===26||i===27)&&io(n.stateNode))return!0;for(n=n.child;n!==null;)e.push(n),n=n.sibling}}return!1},zt.getFindAllNodesFailureDescription=function(a,e){if(!Ac)throw Error(E(363));var n=0,i=[];a=[Ti(a),0];for(var m=0;m<a.length;){var p=a[m++],v=p.tag,T=a[m++],b=e[T];if((v!==5&&v!==26&&v!==27||!vu(p))&&(Lf(p,b)&&(i.push(Mm(b)),T++,T>n&&(n=T)),T<e.length))for(p=p.child;p!==null;)a.push(p,T),p=p.sibling}if(n<e.length){for(a=[];n<e.length;n++)a.push(Mm(e[n]));return`findAllNodes was able to match part of the selector:
|
|
344
|
+
`+(i.join(" > ")+`
|
|
345
|
+
|
|
346
|
+
No matching component was found for:
|
|
347
|
+
`)+a.join(" > ")}return null},zt.getPublicRootInstance=function(a){if(a=a.current,!a.child)return null;switch(a.child.tag){case 27:case 5:return uo(a.child.stateNode);default:return a.child.stateNode}},zt.injectIntoDevTools=function(){var a={bundleType:0,version:jy,rendererPackageName:ad,currentDispatcherRef:$,reconcilerVersion:"19.2.0"};if(ed!==null&&(a.rendererConfig=ed),typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u")a=!1;else{var e=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(e.isDisabled||!e.supportsFiber)a=!0;else{try{Oc=e.inject(a),Hl=e}catch{}a=!!e.checkDCE}}return a},zt.isAlreadyRendering=function(){return(Ht&6)!==0},zt.observeVisibleRects=function(a,e,n,i){if(!Ac)throw Error(E(363));a=Wf(a,e);var m=Nc(a,n,i).disconnect;return{disconnect:function(){m()}}},zt.shouldError=function(){return null},zt.shouldSuspend=function(){return!1},zt.startHostTransition=function(a,e,n,i){if(a.tag!==5)throw Error(E(476));var m=Hp(a).queue;Dp(a,m,e,Ha,n===null?z:function(){var p=Hp(a);return p.next===null&&(p=a.alternate.memoizedState),Rn(a,p.next.queue,{},Qa()),n(i)})},zt.updateContainer=function(a,e,n,i){var m=e.current,p=Qa();return Zm(m,p,a,e,n,i),p},zt.updateContainerSync=function(a,e,n,i){return Zm(e.current,2,a,e,n,i),2},zt};iy.exports.default=iy.exports;Object.defineProperty(iy.exports,"__esModule",{value:!0})});var _2=lc((KE,fy)=>{"use strict";process.env.NODE_ENV!=="production"&&(fy.exports=function(s){function h(t,l){for(t=t.memoizedState;t!==null&&0<l;)t=t.next,l--;return t}function z(t,l,u,c){if(u>=l.length)return c;var f=l[u],o=Ol(t)?t.slice():Xt({},t);return o[f]=z(t[f],l,u+1,c),o}function E(t,l,u){if(l.length!==u.length)console.warn("copyWithRename() expects paths of the same length");else{for(var c=0;c<u.length-1;c++)if(l[c]!==u[c]){console.warn("copyWithRename() expects paths to be the same except for the deepest key");return}return N(t,l,u,0)}}function N(t,l,u,c){var f=l[c],o=Ol(t)?t.slice():Xt({},t);return c+1===l.length?(o[u[c]]=o[f],Ol(o)?o.splice(f,1):delete o[f]):o[f]=N(t[f],l,u,c+1),o}function Q(t,l,u){var c=l[u],f=Ol(t)?t.slice():Xt({},t);return u+1===l.length?(Ol(f)?f.splice(c,1):delete f[c],f):(f[c]=Q(t[c],l,u+1),f)}function r(){return!1}function yt(){return null}function it(t,l,u,c){return new xv(t,l,u,c)}function ol(t,l){t.context===cl&&(D0(l,t,null,null),oo())}function k(t,l){if(Ou!==null){var u=l.staleFamilies;l=l.updatedFamilies,Ui(),g0(t.current,l,u),oo()}}function Ft(t){Ou=t}function G(){console.error("Do not call Hooks inside useEffect(...), useMemo(...), or other built-in Hooks. You can only call Hooks at the top level of your React function. For more information, see https://react.dev/link/rules-of-hooks")}function tt(){console.error("Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().")}function ne(){}function gl(){}function $t(t){var l=[];return t.forEach(function(u){l.push(u)}),l.sort().join(", ")}function we(t){var l=t,u=t;if(t.alternate)for(;l.return;)l=l.return;else{t=l;do l=t,(l.flags&4098)!==0&&(u=l.return),t=l.return;while(t)}return l.tag===3?u:null}function gn(t){if(we(t)!==t)throw Error("Unable to find node on an unmounted component.")}function Bu(t){var l=t.alternate;if(!l){if(l=we(t),l===null)throw Error("Unable to find node on an unmounted component.");return l!==t?null:t}for(var u=t,c=l;;){var f=u.return;if(f===null)break;var o=f.alternate;if(o===null){if(c=f.return,c!==null){u=c;continue}break}if(f.child===o.child){for(o=f.child;o;){if(o===u)return gn(f),t;if(o===c)return gn(f),l;o=o.sibling}throw Error("Unable to find node on an unmounted component.")}if(u.return!==c.return)u=f,c=o;else{for(var d=!1,y=f.child;y;){if(y===u){d=!0,u=f,c=o;break}if(y===c){d=!0,c=f,u=o;break}y=y.sibling}if(!d){for(y=o.child;y;){if(y===u){d=!0,u=o,c=f;break}if(y===c){d=!0,c=o,u=f;break}y=y.sibling}if(!d)throw Error("Child was not found in either parent set. This indicates a bug in React related to the return pointer. Please file an issue.")}}if(u.alternate!==c)throw Error("Return fibers should always be each others' alternates. This error is likely caused by a bug in React. Please file an issue.")}if(u.tag!==3)throw Error("Unable to find node on an unmounted component.");return u.stateNode.current===u?t:l}function _n(t){return t=Bu(t),t!==null?ju(t):null}function ju(t){var l=t.tag;if(l===5||l===26||l===27||l===6)return t;for(t=t.child;t!==null;){if(l=ju(t),l!==null)return l;t=t.sibling}return null}function df(t){var l=t.tag;if(l===5||l===26||l===27||l===6)return t;for(t=t.child;t!==null;){if(t.tag!==4&&(l=df(t),l!==null))return l;t=t.sibling}return null}function De(t){return t===null||typeof t!="object"?null:(t=bc&&t[bc]||t["@@iterator"],typeof t=="function"?t:null)}function Vt(t){if(t==null)return null;if(typeof t=="function")return t.$$typeof===Bi?null:t.displayName||t.name||null;if(typeof t=="string")return t;switch(t){case bi:return"Fragment";case Sd:return"Profiler";case is:return"StrictMode";case fs:return"Suspense";case Ed:return"SuspenseList";case ho:return"Activity"}if(typeof t=="object")switch(typeof t.tag=="number"&&console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),t.$$typeof){case cn:return"Portal";case Hl:return t.displayName||"Context";case Oc:return(t._context.displayName||"Context")+".Consumer";case ea:var l=t.render;return t=t.displayName,t||(t=l.displayName||l.name||"",t=t!==""?"ForwardRef("+t+")":"ForwardRef"),t;case qi:return l=t.displayName||null,l!==null?l:Vt(t.type)||"Memo";case Va:l=t._payload,t=t._init;try{return Vt(t(l))}catch{}}return null}function I(t){var l=t.type;switch(t.tag){case 31:return"Activity";case 24:return"Cache";case 9:return(l._context.displayName||"Context")+".Consumer";case 10:return l.displayName||"Context";case 18:return"DehydratedFragment";case 11:return t=l.render,t=t.displayName||t.name||"",l.displayName||(t!==""?"ForwardRef("+t+")":"ForwardRef");case 7:return"Fragment";case 26:case 27:case 5:return l;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return Vt(l);case 8:return l===is?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 14:case 15:if(typeof l=="function")return l.displayName||l.name||null;if(typeof l=="string")return l;break;case 29:if(l=t._debugInfo,l!=null){for(var u=l.length-1;0<=u;u--)if(typeof l[u].name=="string")return l[u].name}if(t.return!==null)return I(t.return)}return null}function $l(t){return{current:t}}function ll(t,l){0>lt?console.error("Unexpected pop."):(l!==J[lt]&&console.error("Unexpected Fiber popped."),t.current=X[lt],X[lt]=null,J[lt]=null,lt--)}function mt(t,l,u){lt++,X[lt]=t.current,J[lt]=u,t.current=l}function Jo(t){return t>>>=0,t===0?32:31-(Gc(t)/R|0)|0}function Ea(t){var l=t&42;if(l!==0)return l;switch(t&-t){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:return 64;case 128:return 128;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:return t&261888;case 262144:case 524288:case 1048576:case 2097152:return t&3932160;case 4194304:case 8388608:case 16777216:case 33554432:return t&62914560;case 67108864:return 67108864;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 0;default:return console.error("Should have found matching lanes. This is a bug in React."),t}}function K(t,l,u){var c=t.pendingLanes;if(c===0)return 0;var f=0,o=t.suspendedLanes,d=t.pingedLanes;t=t.warmLanes;var y=c&134217727;return y!==0?(c=y&~o,c!==0?f=Ea(c):(d&=y,d!==0?f=Ea(d):u||(u=y&~t,u!==0&&(f=Ea(u))))):(y=c&~o,y!==0?f=Ea(y):d!==0?f=Ea(d):u||(u=c&~t,u!==0&&(f=Ea(u)))),f===0?0:l!==0&&l!==f&&(l&o)===0&&(o=f&-f,u=l&-l,o>=u||o===32&&(u&4194048)!==0)?l:f}function ot(t,l){return(t.pendingLanes&~(t.suspendedLanes&~t.pingedLanes)&l)===0}function vt(t,l){switch(t){case 1:case 2:case 4:case 8:case 64:return l+250;case 16:case 32:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return l+5e3;case 4194304:case 8388608:case 16777216:case 33554432:return-1;case 67108864:case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return console.error("Should have found matching lanes. This is a bug in React."),-1}}function Rt(){var t=x;return x<<=1,(x&62914560)===0&&(x=4194304),t}function xt(t){for(var l=[],u=0;31>u;u++)l.push(t);return l}function He(t,l){t.pendingLanes|=l,l!==268435456&&(t.suspendedLanes=0,t.pingedLanes=0,t.warmLanes=0)}function Dn(t,l,u,c,f,o){var d=t.pendingLanes;t.pendingLanes=u,t.suspendedLanes=0,t.pingedLanes=0,t.warmLanes=0,t.expiredLanes&=u,t.entangledLanes&=u,t.errorRecoveryDisabledLanes&=u,t.shellSuspendCounter=0;var y=t.entanglements,S=t.expirationTimes,D=t.hiddenUpdates;for(u=d&~u;0<u;){var O=31-Gl(u),q=1<<O;y[O]=0,S[O]=-1;var j=D[O];if(j!==null)for(D[O]=null,O=0;O<j.length;O++){var F=j[O];F!==null&&(F.lane&=-536870913)}u&=~q}c!==0&&Hn(t,c,0),o!==0&&f===0&&t.tag!==0&&(t.suspendedLanes|=o&~(d&~l))}function Hn(t,l,u){t.pendingLanes|=l,t.suspendedLanes&=~l;var c=31-Gl(l);t.entangledLanes|=l,t.entanglements[c]=t.entanglements[c]|1073741824|u&261930}function Ae(t,l){var u=t.entangledLanes|=l;for(t=t.entanglements;u;){var c=31-Gl(u),f=1<<c;f&l|t[c]&l&&(t[c]|=l),u&=~f}}function Pe(t,l){var u=l&-l;return u=(u&42)!==0?1:An(u),(u&(t.suspendedLanes|l))!==0?0:u}function An(t){switch(t){case 2:t=1;break;case 8:t=4;break;case 32:t=16;break;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:t=128;break;case 268435456:t=134217728;break;default:t=0}return t}function Lo(t,l,u){if($n)for(t=t.pendingUpdatersLaneMap;0<u;){var c=31-Gl(u),f=1<<c;t[c].add(l),u&=~f}}function yf(t,l){if($n)for(var u=t.pendingUpdatersLaneMap,c=t.memoizedUpdaters;0<l;){var f=31-Gl(l);t=1<<f,f=u[f],0<f.size&&(f.forEach(function(o){var d=o.alternate;d!==null&&c.has(d)||c.add(o)}),f.clear()),l&=~t}}function Ne(t){return t&=-t,2<t?8<t?(t&134217727)!==0?32:268435456:8:2}function yy(t){if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u")return!1;var l=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(l.isDisabled)return!0;if(!l.supportsFiber)return console.error("The installed version of React DevTools is too old and will not work with the current version of React. Please update React DevTools. https://react.dev/link/react-devtools"),!0;try{Os=l.inject(t),ra=l}catch(u){console.error("React instrumentation encountered an error: %o.",u)}return!!l.checkDCE}function al(t){if(typeof X2=="function"&&Z2(t),ra&&typeof ra.setStrictMode=="function")try{ra.setStrictMode(Os,t)}catch(l){Fn||(Fn=!0,console.error("React instrumentation encountered an error: %o",l))}}function li(t,l){return t===l&&(t!==0||1/t===1/l)||t!==t&&l!==l}function nc(t){for(var l=0,u=0;u<t.length;u++){var c=t[u];if(typeof c=="object"&&c!==null)if(Ol(c)&&c.length===2&&typeof c[0]=="string"){if(l!==0&&l!==3)return 1;l=3}else return 1;else{if(typeof c=="function"||typeof c=="string"&&50<c.length||l!==0&&l!==2)return 1;l=2}}return l}function vf(t,l,u,c){for(var f in t)Lv.call(t,f)&&f[0]!=="_"&&Ua(f,t[f],l,u,c)}function Ua(t,l,u,c,f){switch(typeof l){case"object":if(l===null){l="null";break}else{if(l.$$typeof===nn){var o=Vt(l.type)||"\u2026",d=l.key;l=l.props;var y=Object.keys(l),S=y.length;if(d==null&&S===0){l="<"+o+" />";break}if(3>c||S===1&&y[0]==="children"&&d==null){l="<"+o+" \u2026 />";break}u.push([f+"\xA0\xA0".repeat(c)+t,"<"+o]),d!==null&&Ua("key",d,u,c+1,f),t=!1;for(var D in l)D==="children"?l.children!=null&&(!Ol(l.children)||0<l.children.length)&&(t=!0):Lv.call(l,D)&&D[0]!=="_"&&Ua(D,l[D],u,c+1,f);u.push(["",t?">\u2026</"+o+">":"/>"]);return}if(o=Object.prototype.toString.call(l),o=o.slice(8,o.length-1),o==="Array"){if(D=nc(l),D===2||D===0){l=JSON.stringify(l);break}else if(D===3){for(u.push([f+"\xA0\xA0".repeat(c)+t,""]),t=0;t<l.length;t++)o=l[t],Ua(o[0],o[1],u,c+1,f);return}}if(o==="Promise"){if(l.status==="fulfilled"){if(o=u.length,Ua(t,l.value,u,c,f),u.length>o){u=u[o],u[1]="Promise<"+(u[1]||"Object")+">";return}}else if(l.status==="rejected"&&(o=u.length,Ua(t,l.reason,u,c,f),u.length>o)){u=u[o],u[1]="Rejected Promise<"+u[1]+">";return}u.push(["\xA0\xA0".repeat(c)+t,"Promise"]);return}o==="Object"&&(D=Object.getPrototypeOf(l))&&typeof D.constructor=="function"&&(o=D.constructor.name),u.push([f+"\xA0\xA0".repeat(c)+t,o==="Object"?3>c?"":"\u2026":o]),3>c&&vf(l,u,c+1,f);return}case"function":l=l.name===""?"() => {}":l.name+"() {}";break;case"string":l=l==="This object has been omitted by React in the console log to avoid sending too much data from the server. Try logging smaller or more specific objects."?"\u2026":JSON.stringify(l);break;case"undefined":l="undefined";break;case"boolean":l=l?"true":"false";break;default:l=String(l)}u.push([f+"\xA0\xA0".repeat(c)+t,l])}function Qu(t,l,u,c){var f=!0;for(d in t)d in l||(u.push(["\u2013\xA0"+"\xA0\xA0".repeat(c)+d,"\u2026"]),f=!1);for(var o in l)if(o in t){var d=t[o],y=l[o];if(d!==y){if(c===0&&o==="children")f="\xA0\xA0".repeat(c)+o,u.push(["\u2013\xA0"+f,"\u2026"],["+\xA0"+f,"\u2026"]);else{if(!(3<=c)){if(typeof d=="object"&&typeof y=="object"&&d!==null&&y!==null&&d.$$typeof===y.$$typeof)if(y.$$typeof===nn){if(d.type===y.type&&d.key===y.key){d=Vt(y.type)||"\u2026",f="\xA0\xA0".repeat(c)+o,d="<"+d+" \u2026 />",u.push(["\u2013\xA0"+f,d],["+\xA0"+f,d]),f=!1;continue}}else{var S=Object.prototype.toString.call(d),D=Object.prototype.toString.call(y);if(S===D&&(D==="[object Object]"||D==="[object Array]")){S=["\u2007\xA0"+"\xA0\xA0".repeat(c)+o,D==="[object Array]"?"Array":""],u.push(S),D=u.length,Qu(d,y,u,c+1)?D===u.length&&(S[1]="Referentially unequal but deeply equal objects. Consider memoization."):f=!1;continue}}else if(typeof d=="function"&&typeof y=="function"&&d.name===y.name&&d.length===y.length&&(S=Function.prototype.toString.call(d),D=Function.prototype.toString.call(y),S===D)){d=y.name===""?"() => {}":y.name+"() {}",u.push(["\u2007\xA0"+"\xA0\xA0".repeat(c)+o,d+" Referentially unequal function closure. Consider memoization."]);continue}}Ua(o,d,u,c,"\u2013\xA0"),Ua(o,y,u,c,"+\xA0")}f=!1}}else u.push(["+\xA0"+"\xA0\xA0".repeat(c)+o,"\u2026"]),f=!1;return f}function Il(t){Nt=t&63?"Blocking":t&64?"Gesture":t&4194176?"Transition":t&62914560?"Suspense":t&2080374784?"Idle":"Other"}function ce(t,l,u,c){il&&(Li.start=l,Li.end=u,Vc.color="warning",Vc.tooltipText=c,Vc.properties=null,(t=t._debugTask)?t.run(performance.measure.bind(performance,c,Li)):performance.measure(c,Li))}function ai(t,l,u){ce(t,l,u,"Reconnect")}function Yu(t,l,u,c,f){var o=I(t);if(o!==null&&il){var d=t.alternate,y=t.actualDuration;if(d===null||d.child!==t.child)for(var S=t.child;S!==null;S=S.sibling)y-=S.actualDuration;c=.5>y?c?"tertiary-light":"primary-light":10>y?c?"tertiary":"primary":100>y?c?"tertiary-dark":"primary-dark":"error";var D=t.memoizedProps;y=t._debugTask,D!==null&&d!==null&&d.memoizedProps!==D?(S=[J2],D=Qu(d.memoizedProps,D,S,0),1<S.length&&(D&&!Ji&&(d.lanes&f)===0&&100<t.actualDuration?(Ji=!0,S[0]=L2,Vc.color="warning",Vc.tooltipText="This component received deeply equal props. It might benefit from useMemo or the React Compiler in its owner."):(Vc.color=c,Vc.tooltipText=o),Vc.properties=S,Li.start=l,Li.end=u,y!=null?y.run(performance.measure.bind(performance,"\u200B"+o,Li)):performance.measure("\u200B"+o,Li))):y!=null?y.run(console.timeStamp.bind(console,o,l,u,"Components \u269B",void 0,c)):console.timeStamp(o,l,u,"Components \u269B",void 0,c)}}function ei(t,l,u,c){if(il){var f=I(t);if(f!==null){for(var o=null,d=[],y=0;y<c.length;y++){var S=c[y];o==null&&S.source!==null&&(o=S.source._debugTask),S=S.value,d.push(["Error",typeof S=="object"&&S!==null&&typeof S.message=="string"?String(S.message):String(S)])}t.key!==null&&Ua("key",t.key,d,0,""),t.memoizedProps!==null&&vf(t.memoizedProps,d,0,""),o==null&&(o=t._debugTask),t={start:l,end:u,detail:{devtools:{color:"error",track:"Components \u269B",tooltipText:t.tag===13?"Hydration failed":"Error boundary caught an error",properties:d}}},o?o.run(performance.measure.bind(performance,"\u200B"+f,t)):performance.measure("\u200B"+f,t)}}}function ca(t,l,u,c,f){if(f!==null){if(il){var o=I(t);if(o!==null){c=[];for(var d=0;d<f.length;d++){var y=f[d].value;c.push(["Error",typeof y=="object"&&y!==null&&typeof y.message=="string"?String(y.message):String(y)])}t.key!==null&&Ua("key",t.key,c,0,""),t.memoizedProps!==null&&vf(t.memoizedProps,c,0,""),l={start:l,end:u,detail:{devtools:{color:"error",track:"Components \u269B",tooltipText:"A lifecycle or effect errored",properties:c}}},(t=t._debugTask)?t.run(performance.measure.bind(performance,"\u200B"+o,l)):performance.measure("\u200B"+o,l)}}}else o=I(t),o!==null&&il&&(f=1>c?"secondary-light":100>c?"secondary":500>c?"secondary-dark":"error",(t=t._debugTask)?t.run(console.timeStamp.bind(console,o,l,u,"Components \u269B",void 0,f)):console.timeStamp(o,l,u,"Components \u269B",void 0,f))}function wl(t,l,u,c){if(il&&!(l<=t)){var f=(u&738197653)===u?"tertiary-dark":"primary-dark";u=(u&536870912)===u?"Prepared":(u&201326741)===u?"Hydrated":"Render",c?c.run(console.timeStamp.bind(console,u,t,l,Nt,"Scheduler \u269B",f)):console.timeStamp(u,t,l,Nt,"Scheduler \u269B",f)}}function hf(t,l,u,c){!il||l<=t||(u=(u&738197653)===u?"tertiary-dark":"primary-dark",c?c.run(console.timeStamp.bind(console,"Prewarm",t,l,Nt,"Scheduler \u269B",u)):console.timeStamp("Prewarm",t,l,Nt,"Scheduler \u269B",u))}function sp(t,l,u,c){!il||l<=t||(u=(u&738197653)===u?"tertiary-dark":"primary-dark",c?c.run(console.timeStamp.bind(console,"Suspended",t,l,Nt,"Scheduler \u269B",u)):console.timeStamp("Suspended",t,l,Nt,"Scheduler \u269B",u))}function pp(t,l,u,c,f,o){if(il&&!(l<=t)){u=[];for(var d=0;d<c.length;d++){var y=c[d].value;u.push(["Recoverable Error",typeof y=="object"&&y!==null&&typeof y.message=="string"?String(y.message):String(y)])}t={start:t,end:l,detail:{devtools:{color:"primary-dark",track:Nt,trackGroup:"Scheduler \u269B",tooltipText:f?"Hydration Failed":"Recovered after Error",properties:u}}},o?o.run(performance.measure.bind(performance,"Recovered",t)):performance.measure("Recovered",t)}}function cc(t,l,u,c){!il||l<=t||(c?c.run(console.timeStamp.bind(console,"Errored",t,l,Nt,"Scheduler \u269B","error")):console.timeStamp("Errored",t,l,Nt,"Scheduler \u269B","error"))}function Wo(t,l,u,c){!il||l<=t||(c?c.run(console.timeStamp.bind(console,u,t,l,Nt,"Scheduler \u269B","secondary-light")):console.timeStamp(u,t,l,Nt,"Scheduler \u269B","secondary-light"))}function Re(t,l,u,c,f){if(il&&!(l<=t)){for(var o=[],d=0;d<u.length;d++){var y=u[d].value;o.push(["Error",typeof y=="object"&&y!==null&&typeof y.message=="string"?String(y.message):String(y)])}t={start:t,end:l,detail:{devtools:{color:"error",track:Nt,trackGroup:"Scheduler \u269B",tooltipText:c?"Remaining Effects Errored":"Commit Errored",properties:o}}},f?f.run(performance.measure.bind(performance,"Errored",t)):performance.measure("Errored",t)}}function ic(){}function vy(){if(Ud===0){Nh=console.log,Rh=console.info,Uh=console.warn,Ch=console.error,Mh=console.group,Oh=console.groupCollapsed,bh=console.groupEnd;var t={configurable:!0,enumerable:!0,value:ic,writable:!0};Object.defineProperties(console,{info:t,log:t,warn:t,error:t,group:t,groupCollapsed:t,groupEnd:t})}Ud++}function hy(){if(Ud--,Ud===0){var t={configurable:!0,enumerable:!0,writable:!0};Object.defineProperties(console,{log:Xt({},t,{value:Nh}),info:Xt({},t,{value:Rh}),warn:Xt({},t,{value:Uh}),error:Xt({},t,{value:Ch}),group:Xt({},t,{value:Mh}),groupCollapsed:Xt({},t,{value:Oh}),groupEnd:Xt({},t,{value:bh})})}0>Ud&&console.error("disabledDepth fell below zero. This is a bug in React. Please file an issue.")}function Fo(t){var l=Error.prepareStackTrace;if(Error.prepareStackTrace=void 0,t=t.stack,Error.prepareStackTrace=l,t.startsWith(`Error: react-stack-top-frame
|
|
348
|
+
`)&&(t=t.slice(29)),l=t.indexOf(`
|
|
349
|
+
`),l!==-1&&(t=t.slice(l+1)),l=t.indexOf("react_stack_bottom_frame"),l!==-1&&(l=t.lastIndexOf(`
|
|
350
|
+
`,l)),l!==-1)t=t.slice(0,l);else return"";return t}function Ca(t){if(Wv===void 0)try{throw Error()}catch(u){var l=u.stack.trim().match(/\n( *(at )?)/);Wv=l&&l[1]||"",qh=-1<u.stack.indexOf(`
|
|
351
|
+
at`)?" (<anonymous>)":-1<u.stack.indexOf("@")?"@unknown:0:0":""}return`
|
|
352
|
+
`+Wv+t+qh}function $o(t,l){if(!t||Fv)return"";var u=$v.get(t);if(u!==void 0)return u;Fv=!0,u=Error.prepareStackTrace,Error.prepareStackTrace=void 0;var c=null;c=U.H,U.H=null,vy();try{var f={DetermineComponentFrameRoot:function(){try{if(l){var j=function(){throw Error()};if(Object.defineProperty(j.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(j,[])}catch(ft){var F=ft}Reflect.construct(t,[],j)}else{try{j.call()}catch(ft){F=ft}t.call(j.prototype)}}else{try{throw Error()}catch(ft){F=ft}(j=t())&&typeof j.catch=="function"&&j.catch(function(){})}}catch(ft){if(ft&&F&&typeof ft.stack=="string")return[ft.stack,F.stack]}return[null,null]}};f.DetermineComponentFrameRoot.displayName="DetermineComponentFrameRoot";var o=Object.getOwnPropertyDescriptor(f.DetermineComponentFrameRoot,"name");o&&o.configurable&&Object.defineProperty(f.DetermineComponentFrameRoot,"name",{value:"DetermineComponentFrameRoot"});var d=f.DetermineComponentFrameRoot(),y=d[0],S=d[1];if(y&&S){var D=y.split(`
|
|
353
|
+
`),O=S.split(`
|
|
354
|
+
`);for(d=o=0;o<D.length&&!D[o].includes("DetermineComponentFrameRoot");)o++;for(;d<O.length&&!O[d].includes("DetermineComponentFrameRoot");)d++;if(o===D.length||d===O.length)for(o=D.length-1,d=O.length-1;1<=o&&0<=d&&D[o]!==O[d];)d--;for(;1<=o&&0<=d;o--,d--)if(D[o]!==O[d]){if(o!==1||d!==1)do if(o--,d--,0>d||D[o]!==O[d]){var q=`
|
|
355
|
+
`+D[o].replace(" at new "," at ");return t.displayName&&q.includes("<anonymous>")&&(q=q.replace("<anonymous>",t.displayName)),typeof t=="function"&&$v.set(t,q),q}while(1<=o&&0<=d);break}}}finally{Fv=!1,U.H=c,hy(),Error.prepareStackTrace=u}return D=(D=t?t.displayName||t.name:"")?Ca(D):"",typeof t=="function"&&$v.set(t,D),D}function Nv(t,l){switch(t.tag){case 26:case 27:case 5:return Ca(t.type);case 16:return Ca("Lazy");case 13:return t.child!==l&&l!==null?Ca("Suspense Fallback"):Ca("Suspense");case 19:return Ca("SuspenseList");case 0:case 15:return $o(t.type,!1);case 11:return $o(t.type.render,!1);case 1:return $o(t.type,!0);case 31:return Ca("Activity");default:return""}}function Io(t){try{var l="",u=null;do{l+=Nv(t,u);var c=t._debugInfo;if(c)for(var f=c.length-1;0<=f;f--){var o=c[f];if(typeof o.name=="string"){var d=l;t:{var y=o.name,S=o.env,D=o.debugLocation;if(D!=null){var O=Fo(D),q=O.lastIndexOf(`
|
|
356
|
+
`),j=q===-1?O:O.slice(q+1);if(j.indexOf(y)!==-1){var F=`
|
|
357
|
+
`+j;break t}}F=Ca(y+(S?" ["+S+"]":""))}l=d+F}}u=t,t=t.return}while(t);return l}catch(ft){return`
|
|
358
|
+
Error generating stack: `+ft.message+`
|
|
359
|
+
`+ft.stack}}function Sy(t){return(t=t?t.displayName||t.name:"")?Ca(t):""}function Ma(t,l){if(typeof t=="object"&&t!==null){var u=Iv.get(t);return u!==void 0?u:(l={value:t,source:l,stack:Io(l)},Iv.set(t,l),l)}return{value:t,source:l,stack:Io(l)}}function Gu(t,l){Vu(),bs[qs++]=Cd,bs[qs++]=M0,M0=t,Cd=l}function wo(t,l,u){Vu(),_u[Du++]=xc,_u[Du++]=Xc,_u[Du++]=No,No=t;var c=xc;t=Xc;var f=32-Gl(c)-1;c&=~(1<<f),u+=1;var o=32-Gl(l)+f;if(30<o){var d=f-f%5;o=(c&(1<<d)-1).toString(32),c>>=d,f-=d,xc=1<<32-Gl(l)+f|u<<f|c,Xc=o+t}else xc=1<<o|u<<f|c,Xc=t}function ui(t){Vu(),t.return!==null&&(Gu(t,1),wo(t,1,0))}function Po(t){for(;t===M0;)M0=bs[--qs],bs[qs]=null,Cd=bs[--qs],bs[qs]=null;for(;t===No;)No=_u[--Du],_u[Du]=null,Xc=_u[--Du],_u[Du]=null,xc=_u[--Du],_u[Du]=null}function Sf(){return Vu(),No!==null?{id:xc,overflow:Xc}:null}function dp(t,l){Vu(),_u[Du++]=xc,_u[Du++]=Xc,_u[Du++]=No,xc=l.id,Xc=l.overflow,No=t}function Vu(){Mt||console.error("Expected to be hydrating. This is a bug in React. Please file an issue.")}function Oa(t){return t===null&&console.error("Expected host context to exist. This error is likely caused by a bug in React. Please file an issue."),t}function Ef(t,l){mt(Fi,l,t),mt(Md,t,t),mt(Wi,null,t),l=hu(l),ll(Wi,t),mt(Wi,l,t)}function fc(t){ll(Wi,t),ll(Md,t),ll(Fi,t)}function La(){return Oa(Wi.current)}function oc(t){t.memoizedState!==null&&mt(O0,t,t);var l=Oa(Wi.current),u=ua(l,t.type);l!==u&&(mt(Md,t,t),mt(Wi,u,t))}function mc(t){Md.current===t&&(ll(Wi,t),ll(Md,t)),O0.current===t&&(ll(O0,t),Na?Se._currentValue=he:Se._currentValue2=he)}function yp(t,l){return t.serverProps===void 0&&t.serverTail.length===0&&t.children.length===1&&3<t.distanceFromLeaf&&t.distanceFromLeaf>15-l?yp(t.children[0],l):t}function ia(t){return" "+" ".repeat(t)}function xu(t){return"+ "+" ".repeat(t)}function Xu(t){return"- "+" ".repeat(t)}function Nn(t){switch(t.tag){case 26:case 27:case 5:return t.type;case 16:return"Lazy";case 31:return"Activity";case 13:return"Suspense";case 19:return"SuspenseList";case 0:case 15:return t=t.type,t.displayName||t.name||null;case 11:return t=t.type.render,t.displayName||t.name||null;case 1:return t=t.type,t.displayName||t.name||null;default:return null}}function ni(t,l){return Bh.test(t)?(t=JSON.stringify(t),t.length>l-2?8>l?'{"..."}':"{"+t.slice(0,l-7)+'..."}':"{"+t+"}"):t.length>l?5>l?'{"..."}':t.slice(0,l-3)+"...":t}function sc(t,l,u){var c=120-2*u;if(l===null)return xu(u)+ni(t,c)+`
|
|
360
|
+
`;if(typeof l=="string"){for(var f=0;f<l.length&&f<t.length&&l.charCodeAt(f)===t.charCodeAt(f);f++);return f>c-8&&10<f&&(t="..."+t.slice(f-8),l="..."+l.slice(f-8)),xu(u)+ni(t,c)+`
|
|
361
|
+
`+Xu(u)+ni(l,c)+`
|
|
362
|
+
`}return ia(u)+ni(t,c)+`
|
|
363
|
+
`}function zf(t){return Object.prototype.toString.call(t).replace(/^\[object (.*)\]$/,function(l,u){return u})}function pc(t,l){switch(typeof t){case"string":return t=JSON.stringify(t),t.length>l?5>l?'"..."':t.slice(0,l-4)+'..."':t;case"object":if(t===null)return"null";if(Ol(t))return"[...]";if(t.$$typeof===nn)return(l=Vt(t.type))?"<"+l+">":"<...>";var u=zf(t);if(u==="Object"){u="",l-=2;for(var c in t)if(t.hasOwnProperty(c)){var f=JSON.stringify(c);if(f!=='"'+c+'"'&&(c=f),l-=c.length-2,f=pc(t[c],15>l?l:15),l-=f.length,0>l){u+=u===""?"...":", ...";break}u+=(u===""?"":",")+c+":"+f}return"{"+u+"}"}return u;case"function":return(l=t.displayName||t.name)?"function "+l:"function";default:return String(t)}}function Wa(t,l){return typeof t!="string"||Bh.test(t)?"{"+pc(t,l-2)+"}":t.length>l-2?5>l?'"..."':'"'+t.slice(0,l-5)+'..."':'"'+t+'"'}function ke(t,l,u){var c=120-u.length-t.length,f=[],o;for(o in l)if(l.hasOwnProperty(o)&&o!=="children"){var d=Wa(l[o],120-u.length-o.length-1);c-=o.length+d.length+2,f.push(o+"="+d)}return f.length===0?u+"<"+t+`>
|
|
364
|
+
`:0<c?u+"<"+t+" "+f.join(" ")+`>
|
|
365
|
+
`:u+"<"+t+`
|
|
366
|
+
`+u+" "+f.join(`
|
|
367
|
+
`+u+" ")+`
|
|
368
|
+
`+u+`>
|
|
369
|
+
`}function Tf(t,l,u){var c="",f=Xt({},l),o;for(o in t)if(t.hasOwnProperty(o)){delete f[o];var d=120-2*u-o.length-2,y=pc(t[o],d);l.hasOwnProperty(o)?(d=pc(l[o],d),c+=xu(u)+o+": "+y+`
|
|
370
|
+
`,c+=Xu(u)+o+": "+d+`
|
|
371
|
+
`):c+=xu(u)+o+": "+y+`
|
|
372
|
+
`}for(var S in f)f.hasOwnProperty(S)&&(t=pc(f[S],120-2*u-S.length-2),c+=Xu(u)+S+": "+t+`
|
|
373
|
+
`);return c}function vp(t,l,u,c){var f="",o=new Map;for(D in u)u.hasOwnProperty(D)&&o.set(D.toLowerCase(),D);if(o.size===1&&o.has("children"))f+=ke(t,l,ia(c));else{for(var d in l)if(l.hasOwnProperty(d)&&d!=="children"){var y=120-2*(c+1)-d.length-1,S=o.get(d.toLowerCase());if(S!==void 0){o.delete(d.toLowerCase());var D=l[d];S=u[S];var O=Wa(D,y);y=Wa(S,y),typeof D=="object"&&D!==null&&typeof S=="object"&&S!==null&&zf(D)==="Object"&&zf(S)==="Object"&&(2<Object.keys(D).length||2<Object.keys(S).length||-1<O.indexOf("...")||-1<y.indexOf("..."))?f+=ia(c+1)+d+`={{
|
|
374
|
+
`+Tf(D,S,c+2)+ia(c+1)+`}}
|
|
375
|
+
`:(f+=xu(c+1)+d+"="+O+`
|
|
376
|
+
`,f+=Xu(c+1)+d+"="+y+`
|
|
377
|
+
`)}else f+=ia(c+1)+d+"="+Wa(l[d],y)+`
|
|
378
|
+
`}o.forEach(function(q){if(q!=="children"){var j=120-2*(c+1)-q.length-1;f+=Xu(c+1)+q+"="+Wa(u[q],j)+`
|
|
379
|
+
`}}),f=f===""?ia(c)+"<"+t+`>
|
|
380
|
+
`:ia(c)+"<"+t+`
|
|
381
|
+
`+f+ia(c)+`>
|
|
382
|
+
`}return t=u.children,l=l.children,typeof t=="string"||typeof t=="number"||typeof t=="bigint"?(o="",(typeof l=="string"||typeof l=="number"||typeof l=="bigint")&&(o=""+l),f+=sc(o,""+t,c+1)):(typeof l=="string"||typeof l=="number"||typeof l=="bigint")&&(f=t==null?f+sc(""+l,null,c+1):f+sc(""+l,void 0,c+1)),f}function ci(t,l){var u=Nn(t);if(u===null){for(u="",t=t.child;t;)u+=ci(t,l),t=t.sibling;return u}return ia(l)+"<"+u+`>
|
|
383
|
+
`}function dc(t,l){var u=yp(t,l);if(u!==t&&(t.children.length!==1||t.children[0]!==u))return ia(l)+`...
|
|
384
|
+
`+dc(u,l+1);u="";var c=t.fiber._debugInfo;if(c)for(var f=0;f<c.length;f++){var o=c[f].name;typeof o=="string"&&(u+=ia(l)+"<"+o+`>
|
|
385
|
+
`,l++)}if(c="",f=t.fiber.pendingProps,t.fiber.tag===6)c=sc(f,t.serverProps,l),l++;else if(o=Nn(t.fiber),o!==null)if(t.serverProps===void 0){c=l;var d=120-2*c-o.length-2,y="";for(D in f)if(f.hasOwnProperty(D)&&D!=="children"){var S=Wa(f[D],15);if(d-=D.length+S.length+2,0>d){y+=" ...";break}y+=" "+D+"="+S}c=ia(c)+"<"+o+y+`>
|
|
386
|
+
`,l++}else t.serverProps===null?(c=ke(o,f,xu(l)),l++):typeof t.serverProps=="string"?console.error("Should not have matched a non HostText fiber to a Text node. This is a bug in React."):(c=vp(o,f,t.serverProps,l),l++);var D="";for(f=t.fiber.child,o=0;f&&o<t.children.length;)d=t.children[o],d.fiber===f?(D+=dc(d,l),o++):D+=ci(f,l),f=f.sibling;for(f&&0<t.children.length&&(D+=ia(l)+`...
|
|
387
|
+
`),f=t.serverTail,t.serverProps===null&&l--,t=0;t<f.length;t++)o=f[t],D=typeof o=="string"?D+(Xu(l)+ni(o,120-2*l)+`
|
|
388
|
+
`):D+ke(o.type,o.props,Xu(l));return u+c+D}function hp(t){try{return`
|
|
389
|
+
|
|
390
|
+
`+dc(t,0)}catch{return""}}function Ey(){if(Zc===null)return"";var t=Zc;try{var l="";switch(t.tag===6&&(t=t.return),t.tag){case 26:case 27:case 5:l+=Ca(t.type);break;case 13:l+=Ca("Suspense");break;case 19:l+=Ca("SuspenseList");break;case 31:l+=Ca("Activity");break;case 30:case 0:case 15:case 1:t._debugOwner||l!==""||(l+=Sy(t.type));break;case 11:t._debugOwner||l!==""||(l+=Sy(t.type.render))}for(;t;)if(typeof t.tag=="number"){var u=t;t=u._debugOwner;var c=u._debugStack;if(t&&c){var f=Fo(c);f!==""&&(l+=`
|
|
391
|
+
`+f)}}else if(t.debugStack!=null){var o=t.debugStack;(t=t.owner)&&o&&(l+=`
|
|
392
|
+
`+Fo(o))}else break;var d=l}catch(y){d=`
|
|
393
|
+
Error generating stack: `+y.message+`
|
|
394
|
+
`+y.stack}return d}function W(t,l,u,c,f,o,d){var y=Zc;gf(t);try{return t!==null&&t._debugTask?t._debugTask.run(l.bind(null,u,c,f,o,d)):l(u,c,f,o,d)}finally{gf(y)}throw Error("runWithFiberInDEV should never be called in production. This is a bug in React.")}function gf(t){U.getCurrentStack=t===null?null:Ey,In=!1,Zc=t}function Zu(t,l){if(t.return===null){if(We===null)We={fiber:t,children:[],serverProps:void 0,serverTail:[],distanceFromLeaf:l};else{if(We.fiber!==t)throw Error("Saw multiple hydration diff roots in a pass. This is a bug in React.");We.distanceFromLeaf>l&&(We.distanceFromLeaf=l)}return We}var u=Zu(t.return,l+1).children;return 0<u.length&&u[u.length-1].fiber===t?(u=u[u.length-1],u.distanceFromLeaf>l&&(u.distanceFromLeaf=l),u):(l={fiber:t,children:[],serverProps:void 0,serverTail:[],distanceFromLeaf:l},u.push(l),l)}function ru(){Mt&&console.error("We should not be hydrating here. This is a bug in React. Please file a bug.")}function ii(t,l){wn||(t=Zu(t,0),t.serverProps=null,l!==null&&(l=ri(l),t.serverTail.push(l)))}function tu(t){var l=1<arguments.length&&arguments[1]!==void 0?arguments[1]:!1,u="",c=We;throw c!==null&&(We=null,u=hp(c)),fi(Ma(Error("Hydration failed because the server rendered "+(l?"text":"HTML")+` didn't match the client. As a result this tree will be regenerated on the client. This can happen if a SSR-ed Client Component used:
|
|
395
|
+
|
|
396
|
+
- A server/client branch \`if (typeof window !== 'undefined')\`.
|
|
397
|
+
- Variable input such as \`Date.now()\` or \`Math.random()\` which changes each time it's called.
|
|
398
|
+
- Date formatting in a user's locale which doesn't match the server.
|
|
399
|
+
- External changing data without sending a snapshot of it along with the HTML.
|
|
400
|
+
- Invalid HTML tag nesting.
|
|
401
|
+
|
|
402
|
+
It can also happen if the client has a browser extension installed which messes with the HTML before React loaded.
|
|
403
|
+
|
|
404
|
+
https://react.dev/link/hydration-mismatch`+u),t)),wv}function Ku(t,l){if(!da)throw Error("Expected prepareToHydrateHostInstance() to never be called. This error is likely caused by a bug in React. Please file an issue.");At(t.stateNode,t.type,t.memoizedProps,l,t)||tu(t,!0)}function ba(t){for(Ra=t.return;Ra;)switch(Ra.tag){case 5:case 31:case 13:Hu=!1;return;case 27:case 3:Hu=!0;return;default:Ra=Ra.return}}function Ju(t){if(!da||t!==Ra)return!1;if(!Mt)return ba(t),Mt=!0,!1;var l=t.tag;if(p?l!==3&&l!==27&&(l!==5||Ns(t.type)&&!Dt(t.type,t.memoizedProps))&&hl&&(ml(t),tu(t)):l!==3&&(l!==5||Ns(t.type)&&!Dt(t.type,t.memoizedProps))&&hl&&(ml(t),tu(t)),ba(t),l===13){if(!da)throw Error("Expected skipPastDehydratedSuspenseInstance() to never be called. This error is likely caused by a bug in React. Please file an issue.");if(t=t.memoizedState,t=t!==null?t.dehydrated:null,!t)throw Error("Expected to have a hydrated suspense instance. This error is likely caused by a bug in React. Please file an issue.");hl=Qc(t)}else if(l===31){if(t=t.memoizedState,t=t!==null?t.dehydrated:null,!t)throw Error("Expected to have a hydrated suspense instance. This error is likely caused by a bug in React. Please file an issue.");hl=Kn(t)}else hl=p&&l===27?Kv(t.type,hl):Ra?rn(t.stateNode):null;return!0}function ml(t){for(var l=hl;l;){var u=Zu(t,0),c=ri(l);u.serverTail.push(c),l=c.type==="Suspense"?Qc(l):rn(l)}}function Lu(){da&&(hl=Ra=null,wn=Mt=!1)}function _f(){var t=$i;return t!==null&&(ue===null?ue=t:ue.push.apply(ue,t),$i=null),t}function fi(t){$i===null?$i=[t]:$i.push(t)}function ko(){var t=We;if(t!==null){We=null;for(var l=hp(t);0<t.children.length;)t=t.children[0];W(t.fiber,function(){console.error(`A tree hydrated but some attributes of the server rendered HTML didn't match the client properties. This won't be patched up. This can happen if a SSR-ed Client Component used:
|
|
405
|
+
|
|
406
|
+
- A server/client branch \`if (typeof window !== 'undefined')\`.
|
|
407
|
+
- Variable input such as \`Date.now()\` or \`Math.random()\` which changes each time it's called.
|
|
408
|
+
- Date formatting in a user's locale which doesn't match the server.
|
|
409
|
+
- External changing data without sending a snapshot of it along with the HTML.
|
|
410
|
+
- Invalid HTML tag nesting.
|
|
411
|
+
|
|
412
|
+
It can also happen if the client has a browser extension installed which messes with the HTML before React loaded.
|
|
413
|
+
|
|
414
|
+
%s%s`,"https://react.dev/link/hydration-mismatch",l)})}}function tm(){Bs=B0=null,js=!1}function lu(t,l,u){Na?(mt(b0,l._currentValue,t),l._currentValue=u,mt(Pv,l._currentRenderer,t),l._currentRenderer!==void 0&&l._currentRenderer!==null&&l._currentRenderer!==q0&&console.error("Detected multiple renderers concurrently rendering the same context provider. This is currently unsupported."),l._currentRenderer=q0):(mt(b0,l._currentValue2,t),l._currentValue2=u,mt(kv,l._currentRenderer2,t),l._currentRenderer2!==void 0&&l._currentRenderer2!==null&&l._currentRenderer2!==q0&&console.error("Detected multiple renderers concurrently rendering the same context provider. This is currently unsupported."),l._currentRenderer2=q0)}function Ue(t,l){var u=b0.current;Na?(t._currentValue=u,u=Pv.current,ll(Pv,l),t._currentRenderer=u):(t._currentValue2=u,u=kv.current,ll(kv,l),t._currentRenderer2=u),ll(b0,l)}function Df(t,l,u){for(;t!==null;){var c=t.alternate;if((t.childLanes&l)!==l?(t.childLanes|=l,c!==null&&(c.childLanes|=l)):c!==null&&(c.childLanes&l)!==l&&(c.childLanes|=l),t===u)break;t=t.return}t!==u&&console.error("Expected to find the propagation root when scheduling context work. This error is likely caused by a bug in React. Please file an issue.")}function Pl(t,l,u,c){var f=t.child;for(f!==null&&(f.return=t);f!==null;){var o=f.dependencies;if(o!==null){var d=f.child;o=o.firstContext;t:for(;o!==null;){var y=o;o=f;for(var S=0;S<l.length;S++)if(y.context===l[S]){o.lanes|=u,y=o.alternate,y!==null&&(y.lanes|=u),Df(o.return,u,t),c||(d=null);break t}o=y.next}}else if(f.tag===18){if(d=f.return,d===null)throw Error("We just came from a parent so we must have had a parent. This is a bug in React.");d.lanes|=u,o=d.alternate,o!==null&&(o.lanes|=u),Df(d,u,t),d=null}else d=f.child;if(d!==null)d.return=f;else for(d=f;d!==null;){if(d===t){d=null;break}if(f=d.sibling,f!==null){f.return=d.return,d=f;break}d=d.return}f=d}}function Pt(t,l,u,c){t=null;for(var f=l,o=!1;f!==null;){if(!o){if((f.flags&524288)!==0)o=!0;else if((f.flags&262144)!==0)break}if(f.tag===10){var d=f.alternate;if(d===null)throw Error("Should have a current fiber. This is a bug in React.");if(d=d.memoizedProps,d!==null){var y=f.type;te(f.pendingProps.value,d.value)||(t!==null?t.push(y):t=[y])}}else if(f===O0.current){if(d=f.alternate,d===null)throw Error("Should have a current fiber. This is a bug in React.");d.memoizedState.memoizedState!==f.memoizedState.memoizedState&&(t!==null?t.push(Se):t=[Se])}f=f.return}t!==null&&Pl(l,t,u,c),l.flags|=262144}function yc(t){for(t=t.firstContext;t!==null;){var l=t.context;if(!te(Na?l._currentValue:l._currentValue2,t.memoizedValue))return!0;t=t.next}return!1}function Ce(t){B0=t,Bs=null,t=t.dependencies,t!==null&&(t.firstContext=null)}function Jt(t){return js&&console.error("Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo()."),au(B0,t)}function oi(t,l){return B0===null&&Ce(t),au(t,l)}function au(t,l){var u=Na?l._currentValue:l._currentValue2;if(l={context:l,memoizedValue:u,next:null},Bs===null){if(t===null)throw Error("Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().");Bs=l,t.dependencies={lanes:0,firstContext:l,_debugThenableState:null},t.flags|=524288}else Bs=Bs.next=l;return u}function mi(){return{controller:new W2,data:new Map,refCount:0}}function Wu(t){t.controller.signal.aborted&&console.warn("A cache instance was retained after it was already freed. This likely indicates a bug in React."),t.refCount++}function vc(t){t.refCount--,0>t.refCount&&console.warn("A cache instance was released after it was already freed. This likely indicates a bug in React."),t.refCount===0&&F2($2,function(){t.controller.abort()})}function Me(t,l,u){(t&127)!==0?0>Pn&&(Pn=rl(),Od=j0(l),t1=l,u!=null&&(l1=I(u)),mo()&&(Cl=!0,wi=1),t=Ke(),l=qc(),t!==Qs||l!==bd?Qs=-1.1:l!==null&&(wi=1),Co=t,bd=l):(t&4194048)!==0&&0>Au&&(Au=rl(),qd=j0(l),jh=l,u!=null&&(Qh=I(u)),0>Lc)&&(t=Ke(),l=qc(),(t!==ki||l!==Mo)&&(ki=-1.1),Pi=t,Mo=l)}function zy(t){if(0>Pn){Pn=rl(),Od=t._debugTask!=null?t._debugTask:null,mo()&&(wi=1);var l=Ke(),u=qc();l!==Qs||u!==bd?Qs=-1.1:u!==null&&(wi=1),Co=l,bd=u}0>Au&&(Au=rl(),qd=t._debugTask!=null?t._debugTask:null,0>Lc)&&(t=Ke(),l=qc(),(t!==ki||l!==Mo)&&(ki=-1.1),Pi=t,Mo=l)}function eu(){var t=Ro;return Ro=0,t}function Hf(t){var l=Ro;return Ro=t,l}function si(t){var l=Ro;return Ro+=t,l}function Af(){at=P=-1.1}function za(){var t=P;return P=-1.1,t}function qa(t){0<=t&&(P=t)}function uu(){var t=Sl;return Sl=-0,t}function Oe(t){0<=t&&(Sl=t)}function be(){var t=dl;return dl=null,t}function qe(){var t=Cl;return Cl=!1,t}function Nf(t){le=rl(),0>t.actualStartTime&&(t.actualStartTime=le)}function lm(t){if(0<=le){var l=rl()-le;t.actualDuration+=l,t.selfBaseDuration=l,le=-1}}function Sp(t){if(0<=le){var l=rl()-le;t.actualDuration+=l,le=-1}}function Be(){if(0<=le){var t=rl(),l=t-le;le=-1,Ro+=l,Sl+=l,at=t}}function Ep(t){dl===null&&(dl=[]),dl.push(t),Kc===null&&(Kc=[]),Kc.push(t)}function je(){le=rl(),0>P&&(P=le)}function Rf(t){for(var l=t.child;l;)t.actualDuration+=l.actualDuration,l=l.sibling}function Uf(){}function Ta(t){t!==Gs&&t.next===null&&(Gs===null?x0=Gs=t:Gs=Gs.next=t),X0=!0,U.actQueue!==null?u1||(u1=!0,Tp()):e1||(e1=!0,Tp())}function hc(t,l){if(!n1&&X0){n1=!0;do for(var u=!1,c=x0;c!==null;){if(!l)if(t!==0){var f=c.pendingLanes;if(f===0)var o=0;else{var d=c.suspendedLanes,y=c.pingedLanes;o=(1<<31-Gl(42|t)+1)-1,o&=f&~(d&~y),o=o&201326741?o&201326741|1:o?o|2:0}o!==0&&(u=!0,Ty(c,o))}else o=Et,o=K(c,c===tl?o:0,c.cancelPendingCommit!==null||c.timeoutHandle!==Su),(o&3)===0||ot(c,o)||(u=!0,Ty(c,o));c=c.next}while(u);n1=!1}}function Cf(){ji(),pi()}function pi(){X0=u1=e1=!1;var t=0;Oo!==0&&Eo()&&(t=Oo);for(var l=Ct(),u=null,c=x0;c!==null;){var f=c.next,o=zp(c,l);o===0?(c.next=null,u===null?x0=f:u.next=f,f===null&&(Gs=u)):(u=c,(t!==0||(o&3)!==0)&&(X0=!0)),c=f}Fl!==cf&&Fl!==mv||hc(t,!1),Oo!==0&&(Oo=0)}function zp(t,l){for(var u=t.suspendedLanes,c=t.pingedLanes,f=t.expirationTimes,o=t.pendingLanes&-62914561;0<o;){var d=31-Gl(o),y=1<<d,S=f[d];S===-1?((y&u)===0||(y&c)!==0)&&(f[d]=vt(y,l)):S<=l&&(t.expiredLanes|=y),o&=~y}if(l=tl,u=Et,u=K(t,t===l?u:0,t.cancelPendingCommit!==null||t.timeoutHandle!==Su),c=t.callbackNode,u===0||t===l&&(Wt===Vo||Wt===xo)||t.cancelPendingCommit!==null)return c!==null&&em(c),t.callbackNode=null,t.callbackPriority=0;if((u&3)===0||ot(t,u)){if(l=u&-u,l!==t.callbackPriority||U.actQueue!==null&&c!==c1)em(c);else return l;switch(Ne(u)){case 2:case 8:u=dn;break;case 32:u=Ao;break;case 268435456:u=_h;break;default:u=Ao}return c=am.bind(null,t),U.actQueue!==null?(U.actQueue.push(c),u=c1):u=w(u,c),t.callbackPriority=l,t.callbackNode=u,l}return c!==null&&em(c),t.callbackPriority=2,t.callbackNode=null,2}function am(t,l){if(V0=G0=!1,ji(),Fl!==cf&&Fl!==mv)return t.callbackNode=null,t.callbackPriority=0,null;var u=t.callbackNode;if(En===ov&&(En=M1),Ui()&&t.callbackNode!==u)return null;var c=Et;return c=K(t,t===tl?c:0,t.cancelPendingCommit!==null||t.timeoutHandle!==Su),c===0?null:(od(t,c,l),zp(t,Ct()),t.callbackNode!=null&&t.callbackNode===u?am.bind(null,t):null)}function Ty(t,l){if(Ui())return null;G0=V0,V0=!1,od(t,l,!0)}function em(t){t!==c1&&t!==null&&pl(t)}function Tp(){U.actQueue!==null&&U.actQueue.push(function(){return pi(),null}),N0?Ee(function(){(Ot&(ha|Mu))!==va?w(bt,Cf):pi()}):w(bt,Cf)}function um(){if(Oo===0){var t=bo;t===0&&(t=A,A<<=1,(A&261888)===0&&(A=256)),Oo=t}return Oo}function gy(t,l){if(jd===null){var u=jd=[];i1=0,bo=um(),Vs={status:"pending",value:void 0,then:function(c){u.push(c)}}}return i1++,l.then(gp,gp),l}function gp(){if(--i1===0&&(-1<Au||(Lc=-1.1),jd!==null)){Vs!==null&&(Vs.status="fulfilled");var t=jd;jd=null,bo=0,Vs=null;for(var l=0;l<t.length;l++)(0,t[l])()}}function _p(t,l){var u=[],c={status:"pending",value:null,reason:null,then:function(f){u.push(f)}};return t.then(function(){c.status="fulfilled",c.value=l;for(var f=0;f<u.length;f++)(0,u[f])(l)},function(f){for(c.status="rejected",c.reason=f,f=0;f<u.length;f++)(0,u[f])(void 0)}),c}function nm(){var t=qo.current;return t!==null?t:tl.pooledCache}function Mf(t,l){l===null?mt(qo,qo.current,t):mt(qo,l.pool,t)}function cm(){var t=nm();return t===null?null:{parent:Na?Ul._currentValue:Ul._currentValue2,pool:t}}function Of(t,l){if(te(t,l))return!0;if(typeof t!="object"||t===null||typeof l!="object"||l===null)return!1;var u=Object.keys(t),c=Object.keys(l);if(u.length!==c.length)return!1;for(c=0;c<u.length;c++){var f=u[c];if(!Lv.call(l,f)||!te(t[f],l[f]))return!1}return!0}function Dp(){return{didWarnAboutUncachedPromise:!1,thenables:[]}}function Hp(t){return t=t.status,t==="fulfilled"||t==="rejected"}function im(t,l,u){U.actQueue!==null&&(U.didUsePromise=!0);var c=t.thenables;if(u=c[u],u===void 0?c.push(l):u!==l&&(t.didWarnAboutUncachedPromise||(t.didWarnAboutUncachedPromise=!0,console.error("A component was suspended by an uncached promise. Creating promises inside a Client Component or hook is not yet supported, except via a Suspense-compatible library or framework.")),l.then(Uf,Uf),l=u),l._debugInfo===void 0){t=performance.now(),c=l.displayName;var f={name:typeof c=="string"?c:"Promise",start:t,end:t,value:l};l._debugInfo=[{awaited:f}],l.status!=="fulfilled"&&l.status!=="rejected"&&(t=function(){f.end=performance.now()},l.then(t,t))}switch(l.status){case"fulfilled":return l.value;case"rejected":throw t=l.reason,_y(t),t;default:if(typeof l.status=="string")l.then(Uf,Uf);else{if(t=tl,t!==null&&100<t.shellSuspendCounter)throw Error("An unknown Component is an async Client Component. Only Server Components can be async at the moment. This error is often caused by accidentally adding `'use client'` to a module that was originally written for the server.");t=l,t.status="pending",t.then(function(o){if(l.status==="pending"){var d=l;d.status="fulfilled",d.value=o}},function(o){if(l.status==="pending"){var d=l;d.status="rejected",d.reason=o}})}switch(l.status){case"fulfilled":return l.value;case"rejected":throw t=l.reason,_y(t),t}throw jo=l,Zd=!0,xs}}function Fu(t){try{return k2(t)}catch(l){throw l!==null&&typeof l=="object"&&typeof l.then=="function"?(jo=l,Zd=!0,xs):l}}function Ap(){if(jo===null)throw Error("Expected a suspended thenable. This is a bug in React. Please file an issue.");var t=jo;return jo=null,Zd=!1,t}function _y(t){if(t===xs||t===r0)throw Error("Hooks are not supported inside an async component. This error is often caused by accidentally adding `'use client'` to a module that was originally written for the server.")}function kl(t){var l=St;return t!=null&&(St=l===null?t:l.concat(t)),l}function fm(){var t=St;if(t!=null){for(var l=t.length-1;0<=l;l--)if(t[l].name!=null){var u=t[l].debugTask;if(u!=null)return u}}return null}function Rn(t,l,u){for(var c=Object.keys(t.props),f=0;f<c.length;f++){var o=c[f];if(o!=="children"&&o!=="key"){l===null&&(l=us(t,u.mode,0),l._debugInfo=St,l.return=u),W(l,function(d){console.error("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.",d)},o);break}}}function di(t){var l=rd;return rd+=1,Xs===null&&(Xs=Dp()),im(Xs,t,l)}function Un(t,l){l=l.props.ref,t.ref=l!==void 0?l:null}function Np(t,l){throw l.$$typeof===H0?Error(`A React Element from an older version of React was rendered. This is not supported. It can happen if:
|
|
415
|
+
- Multiple copies of the "react" package is used.
|
|
416
|
+
- A library pre-bundled an old copy of "react" or "react/jsx-runtime".
|
|
417
|
+
- A compiler tries to "inline" JSX instead of using the runtime.`):(t=Object.prototype.toString.call(l),Error("Objects are not valid as a React child (found: "+(t==="[object Object]"?"object with keys {"+Object.keys(l).join(", ")+"}":t)+"). If you meant to render a collection of children, use an array instead."))}function bf(t,l){var u=fm();u!==null?u.run(Np.bind(null,t,l)):Np(t,l)}function om(t,l){var u=I(t)||"Component";tS[u]||(tS[u]=!0,l=l.displayName||l.name||"Component",t.tag===3?console.error(`Functions are not valid as a React child. This may happen if you return %s instead of <%s /> from render. Or maybe you meant to call this function rather than return it.
|
|
418
|
+
root.render(%s)`,l,l,l):console.error(`Functions are not valid as a React child. This may happen if you return %s instead of <%s /> from render. Or maybe you meant to call this function rather than return it.
|
|
419
|
+
<%s>{%s}</%s>`,l,l,u,l,u))}function qf(t,l){var u=fm();u!==null?u.run(om.bind(null,t,l)):om(t,l)}function Rp(t,l){var u=I(t)||"Component";lS[u]||(lS[u]=!0,l=String(l),t.tag===3?console.error(`Symbols are not valid as a React child.
|
|
420
|
+
root.render(%s)`,l):console.error(`Symbols are not valid as a React child.
|
|
421
|
+
<%s>%s</%s>`,u,l,u))}function nu(t,l){var u=fm();u!==null?u.run(Rp.bind(null,t,l)):Rp(t,l)}function Bf(t){function l(g,_){if(t){var H=g.deletions;H===null?(g.deletions=[_],g.flags|=16):H.push(_)}}function u(g,_){if(!t)return null;for(;_!==null;)l(g,_),_=_.sibling;return null}function c(g){for(var _=new Map;g!==null;)g.key!==null?_.set(g.key,g):_.set(g.index,g),g=g.sibling;return _}function f(g,_){return g=un(g,_),g.index=0,g.sibling=null,g}function o(g,_,H){return g.index=H,t?(H=g.alternate,H!==null?(H=H.index,H<_?(g.flags|=67108866,_):H):(g.flags|=67108866,_)):(g.flags|=1048576,_)}function d(g){return t&&g.alternate===null&&(g.flags|=67108866),g}function y(g,_,H,B){return _===null||_.tag!==6?(_=ns(H,g.mode,B),_.return=g,_._debugOwner=g,_._debugTask=g._debugTask,_._debugInfo=St,_):(_=f(_,H),_.return=g,_._debugInfo=St,_)}function S(g,_,H,B){var L=H.type;return L===bi?(_=O(g,_,H.props.children,B,H.key),Rn(H,_,g),_):_!==null&&(_.elementType===L||hd(_,H)||typeof L=="object"&&L!==null&&L.$$typeof===Va&&Fu(L)===_.type)?(_=f(_,H.props),Un(_,H),_.return=g,_._debugOwner=H._owner,_._debugInfo=St,_):(_=us(H,g.mode,B),Un(_,H),_.return=g,_._debugInfo=St,_)}function D(g,_,H,B){return _===null||_.tag!==4||_.stateNode.containerInfo!==H.containerInfo||_.stateNode.implementation!==H.implementation?(_=po(H,g.mode,B),_.return=g,_._debugInfo=St,_):(_=f(_,H.children||[]),_.return=g,_._debugInfo=St,_)}function O(g,_,H,B,L){return _===null||_.tag!==7?(_=Vn(H,g.mode,B,L),_.return=g,_._debugOwner=g,_._debugTask=g._debugTask,_._debugInfo=St,_):(_=f(_,H),_.return=g,_._debugInfo=St,_)}function q(g,_,H){if(typeof _=="string"&&_!==""||typeof _=="number"||typeof _=="bigint")return _=ns(""+_,g.mode,H),_.return=g,_._debugOwner=g,_._debugTask=g._debugTask,_._debugInfo=St,_;if(typeof _=="object"&&_!==null){switch(_.$$typeof){case nn:return H=us(_,g.mode,H),Un(H,_),H.return=g,g=kl(_._debugInfo),H._debugInfo=St,St=g,H;case cn:return _=po(_,g.mode,H),_.return=g,_._debugInfo=St,_;case Va:var B=kl(_._debugInfo);return _=Fu(_),g=q(g,_,H),St=B,g}if(Ol(_)||De(_))return H=Vn(_,g.mode,H,null),H.return=g,H._debugOwner=g,H._debugTask=g._debugTask,g=kl(_._debugInfo),H._debugInfo=St,St=g,H;if(typeof _.then=="function")return B=kl(_._debugInfo),g=q(g,di(_),H),St=B,g;if(_.$$typeof===Hl)return q(g,oi(g,_),H);bf(g,_)}return typeof _=="function"&&qf(g,_),typeof _=="symbol"&&nu(g,_),null}function j(g,_,H,B){var L=_!==null?_.key:null;if(typeof H=="string"&&H!==""||typeof H=="number"||typeof H=="bigint")return L!==null?null:y(g,_,""+H,B);if(typeof H=="object"&&H!==null){switch(H.$$typeof){case nn:return H.key===L?(L=kl(H._debugInfo),g=S(g,_,H,B),St=L,g):null;case cn:return H.key===L?D(g,_,H,B):null;case Va:return L=kl(H._debugInfo),H=Fu(H),g=j(g,_,H,B),St=L,g}if(Ol(H)||De(H))return L!==null?null:(L=kl(H._debugInfo),g=O(g,_,H,B,null),St=L,g);if(typeof H.then=="function")return L=kl(H._debugInfo),g=j(g,_,di(H),B),St=L,g;if(H.$$typeof===Hl)return j(g,_,oi(g,H),B);bf(g,H)}return typeof H=="function"&&qf(g,H),typeof H=="symbol"&&nu(g,H),null}function F(g,_,H,B,L){if(typeof B=="string"&&B!==""||typeof B=="number"||typeof B=="bigint")return g=g.get(H)||null,y(_,g,""+B,L);if(typeof B=="object"&&B!==null){switch(B.$$typeof){case nn:return H=g.get(B.key===null?H:B.key)||null,g=kl(B._debugInfo),_=S(_,H,B,L),St=g,_;case cn:return g=g.get(B.key===null?H:B.key)||null,D(_,g,B,L);case Va:var jt=kl(B._debugInfo);return B=Fu(B),_=F(g,_,H,B,L),St=jt,_}if(Ol(B)||De(B))return H=g.get(H)||null,g=kl(B._debugInfo),_=O(_,H,B,L,null),St=g,_;if(typeof B.then=="function")return jt=kl(B._debugInfo),_=F(g,_,H,di(B),L),St=jt,_;if(B.$$typeof===Hl)return F(g,_,H,oi(_,B),L);bf(_,B)}return typeof B=="function"&&qf(_,B),typeof B=="symbol"&&nu(_,B),null}function ft(g,_,H,B){if(typeof H!="object"||H===null)return B;switch(H.$$typeof){case nn:case cn:gl(g,_,H);var L=H.key;if(typeof L!="string")break;if(B===null){B=new Set,B.add(L);break}if(!B.has(L)){B.add(L);break}W(_,function(){console.error("Encountered two children with the same key, `%s`. Keys should be unique so that components maintain their identity across updates. Non-unique keys may cause children to be duplicated and/or omitted \u2014 the behavior is unsupported and could change in a future version.",L)});break;case Va:H=Fu(H),ft(g,_,H,B)}return B}function wt(g,_,H,B){for(var L=null,jt=null,ct=null,dt=_,ht=_=0,fl=null;dt!==null&&ht<H.length;ht++){dt.index>ht?(fl=dt,dt=null):fl=dt.sibling;var xl=j(g,dt,H[ht],B);if(xl===null){dt===null&&(dt=fl);break}L=ft(g,xl,H[ht],L),t&&dt&&xl.alternate===null&&l(g,dt),_=o(xl,_,ht),ct===null?jt=xl:ct.sibling=xl,ct=xl,dt=fl}if(ht===H.length)return u(g,dt),Mt&&Gu(g,ht),jt;if(dt===null){for(;ht<H.length;ht++)dt=q(g,H[ht],B),dt!==null&&(L=ft(g,dt,H[ht],L),_=o(dt,_,ht),ct===null?jt=dt:ct.sibling=dt,ct=dt);return Mt&&Gu(g,ht),jt}for(dt=c(dt);ht<H.length;ht++)fl=F(dt,g,ht,H[ht],B),fl!==null&&(L=ft(g,fl,H[ht],L),t&&fl.alternate!==null&&dt.delete(fl.key===null?ht:fl.key),_=o(fl,_,ht),ct===null?jt=fl:ct.sibling=fl,ct=fl);return t&&dt.forEach(function(kc){return l(g,kc)}),Mt&&Gu(g,ht),jt}function ap(g,_,H,B){if(H==null)throw Error("An iterable object provided no iterator.");for(var L=null,jt=null,ct=_,dt=_=0,ht=null,fl=null,xl=H.next();ct!==null&&!xl.done;dt++,xl=H.next()){ct.index>dt?(ht=ct,ct=null):ht=ct.sibling;var kc=j(g,ct,xl.value,B);if(kc===null){ct===null&&(ct=ht);break}fl=ft(g,kc,xl.value,fl),t&&ct&&kc.alternate===null&&l(g,ct),_=o(kc,_,dt),jt===null?L=kc:jt.sibling=kc,jt=kc,ct=ht}if(xl.done)return u(g,ct),Mt&&Gu(g,dt),L;if(ct===null){for(;!xl.done;dt++,xl=H.next())ct=q(g,xl.value,B),ct!==null&&(fl=ft(g,ct,xl.value,fl),_=o(ct,_,dt),jt===null?L=ct:jt.sibling=ct,jt=ct);return Mt&&Gu(g,dt),L}for(ct=c(ct);!xl.done;dt++,xl=H.next())ht=F(ct,g,dt,xl.value,B),ht!==null&&(fl=ft(g,ht,xl.value,fl),t&&ht.alternate!==null&&ct.delete(ht.key===null?dt:ht.key),_=o(ht,_,dt),jt===null?L=ht:jt.sibling=ht,jt=ht);return t&&ct.forEach(function(iE){return l(g,iE)}),Mt&&Gu(g,dt),L}function zn(g,_,H,B){if(typeof H=="object"&&H!==null&&H.type===bi&&H.key===null&&(Rn(H,null,g),H=H.props.children),typeof H=="object"&&H!==null){switch(H.$$typeof){case nn:var L=kl(H._debugInfo);t:{for(var jt=H.key;_!==null;){if(_.key===jt){if(jt=H.type,jt===bi){if(_.tag===7){u(g,_.sibling),B=f(_,H.props.children),B.return=g,B._debugOwner=H._owner,B._debugInfo=St,Rn(H,B,g),g=B;break t}}else if(_.elementType===jt||hd(_,H)||typeof jt=="object"&&jt!==null&&jt.$$typeof===Va&&Fu(jt)===_.type){u(g,_.sibling),B=f(_,H.props),Un(B,H),B.return=g,B._debugOwner=H._owner,B._debugInfo=St,g=B;break t}u(g,_);break}else l(g,_);_=_.sibling}H.type===bi?(B=Vn(H.props.children,g.mode,B,H.key),B.return=g,B._debugOwner=g,B._debugTask=g._debugTask,B._debugInfo=St,Rn(H,B,g),g=B):(B=us(H,g.mode,B),Un(B,H),B.return=g,B._debugInfo=St,g=B)}return g=d(g),St=L,g;case cn:t:{for(L=H,H=L.key;_!==null;){if(_.key===H)if(_.tag===4&&_.stateNode.containerInfo===L.containerInfo&&_.stateNode.implementation===L.implementation){u(g,_.sibling),B=f(_,L.children||[]),B.return=g,g=B;break t}else{u(g,_);break}else l(g,_);_=_.sibling}B=po(L,g.mode,B),B.return=g,g=B}return d(g);case Va:return L=kl(H._debugInfo),H=Fu(H),g=zn(g,_,H,B),St=L,g}if(Ol(H))return L=kl(H._debugInfo),g=wt(g,_,H,B),St=L,g;if(De(H)){if(L=kl(H._debugInfo),jt=De(H),typeof jt!="function")throw Error("An object is not an iterable. This error is likely caused by a bug in React. Please file an issue.");var ct=jt.call(H);return ct===H?(g.tag!==0||Object.prototype.toString.call(g.type)!=="[object GeneratorFunction]"||Object.prototype.toString.call(ct)!=="[object Generator]")&&(Ph||console.error("Using Iterators as children is unsupported and will likely yield unexpected results because enumerating a generator mutates it. You may convert it to an array with `Array.from()` or the `[...spread]` operator before rendering. You can also use an Iterable that can iterate multiple times over the same items."),Ph=!0):H.entries!==jt||s1||(console.error("Using Maps as children is not supported. Use an array of keyed ReactElements instead."),s1=!0),g=ap(g,_,ct,B),St=L,g}if(typeof H.then=="function")return L=kl(H._debugInfo),g=zn(g,_,di(H),B),St=L,g;if(H.$$typeof===Hl)return zn(g,_,oi(g,H),B);bf(g,H)}return typeof H=="string"&&H!==""||typeof H=="number"||typeof H=="bigint"?(L=""+H,_!==null&&_.tag===6?(u(g,_.sibling),B=f(_,L),B.return=g,g=B):(u(g,_),B=ns(L,g.mode,B),B.return=g,B._debugOwner=g,B._debugTask=g._debugTask,B._debugInfo=St,g=B),d(g)):(typeof H=="function"&&qf(g,H),typeof H=="symbol"&&nu(g,H),u(g,_))}return function(g,_,H,B){var L=St;St=null;try{rd=0;var jt=zn(g,_,H,B);return Xs=null,jt}catch(fl){if(fl===xs||fl===r0)throw fl;var ct=it(29,fl,null,g.mode);ct.lanes=B,ct.return=g;var dt=ct._debugInfo=St;if(ct._debugOwner=g._debugOwner,ct._debugTask=g._debugTask,dt!=null){for(var ht=dt.length-1;0<=ht;ht--)if(typeof dt[ht].stack=="string"){ct._debugOwner=dt[ht],ct._debugTask=dt[ht].debugTask;break}}return ct}finally{St=L}}}function Up(t,l){var u=Ol(t);return t=!u&&typeof De(t)=="function",u||t?(u=u?"array":"iterable",console.error("A nested %s was passed to row #%s in <SuspenseList />. Wrap it in an additional SuspenseList to configure its revealOrder: <SuspenseList revealOrder=...> ... <SuspenseList revealOrder=...>{%s}</SuspenseList> ... </SuspenseList>",u,l,u),!1):!0}function yi(){for(var t=Zs,l=p1=Zs=0;l<t;){var u=Nu[l];Nu[l++]=null;var c=Nu[l];Nu[l++]=null;var f=Nu[l];Nu[l++]=null;var o=Nu[l];if(Nu[l++]=null,c!==null&&f!==null){var d=c.pending;d===null?f.next=f:(f.next=d.next,d.next=f),c.pending=f}o!==0&&Xl(u,f,o)}}function jf(t,l,u,c){Nu[Zs++]=t,Nu[Zs++]=l,Nu[Zs++]=u,Nu[Zs++]=c,p1|=c,t.lanes|=c,t=t.alternate,t!==null&&(t.lanes|=c)}function mm(t,l,u,c){return jf(t,l,u,c),Qf(t)}function fa(t,l){return jf(t,null,null,l),Qf(t)}function Xl(t,l,u){t.lanes|=u;var c=t.alternate;c!==null&&(c.lanes|=u);for(var f=!1,o=t.return;o!==null;)o.childLanes|=u,c=o.alternate,c!==null&&(c.childLanes|=u),o.tag===22&&(t=o.stateNode,t===null||t._visibility&Kd||(f=!0)),t=o,o=o.return;return t.tag===3?(o=t.stateNode,f&&l!==null&&(f=31-Gl(u),t=o.hiddenUpdates,c=t[f],c===null?t[f]=[l]:c.push(l),l.lane=u|536870912),o):null}function Qf(t){if(ay>uE)throw Zo=ay=0,ey=B1=null,Error("Maximum update depth exceeded. This can happen when a component repeatedly calls setState inside componentWillUpdate or componentDidUpdate. React limits the number of nested updates to prevent infinite loops.");Zo>nE&&(Zo=0,ey=null,console.error("Maximum update depth exceeded. This can happen when a component calls setState inside useEffect, but useEffect either doesn't have a dependency array, or one of the dependencies changes on every render.")),t.alternate===null&&(t.flags&4098)!==0&&ts(t);for(var l=t,u=l.return;u!==null;)l.alternate===null&&(l.flags&4098)!==0&&ts(t),l=u,u=l.return;return l.tag===3?l.stateNode:null}function sm(t){t.updateQueue={baseState:t.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,lanes:0,hiddenCallbacks:null},callbacks:null}}function pm(t,l){t=t.updateQueue,l.updateQueue===t&&(l.updateQueue={baseState:t.baseState,firstBaseUpdate:t.firstBaseUpdate,lastBaseUpdate:t.lastBaseUpdate,shared:t.shared,callbacks:null})}function $u(t){return{lane:t,tag:eS,payload:null,callback:null,next:null}}function ie(t,l,u){var c=t.updateQueue;if(c===null)return null;if(c=c.shared,y1===c&&!cS){var f=I(t);console.error(`An update (setState, replaceState, or forceUpdate) was scheduled from inside an update function. Update functions should be pure, with zero side-effects. Consider using componentDidUpdate or a callback.
|
|
422
|
+
|
|
423
|
+
Please update the following component: %s`,f),cS=!0}return(Ot&ha)!==va?(f=c.pending,f===null?l.next=l:(l.next=f.next,f.next=l),c.pending=l,l=Qf(t),Xl(t,null,u),l):(jf(t,c,l,u),Qf(t))}function vi(t,l,u){if(l=l.updateQueue,l!==null&&(l=l.shared,(u&4194048)!==0)){var c=l.lanes;c&=t.pendingLanes,u|=c,l.lanes=u,Ae(t,u)}}function Sc(t,l){var u=t.updateQueue,c=t.alternate;if(c!==null&&(c=c.updateQueue,u===c)){var f=null,o=null;if(u=u.firstBaseUpdate,u!==null){do{var d={lane:u.lane,tag:u.tag,payload:u.payload,callback:null,next:null};o===null?f=o=d:o=o.next=d,u=u.next}while(u!==null);o===null?f=o=l:o=o.next=l}else f=o=l;u={baseState:c.baseState,firstBaseUpdate:f,lastBaseUpdate:o,shared:c.shared,callbacks:c.callbacks},t.updateQueue=u;return}t=u.lastBaseUpdate,t===null?u.firstBaseUpdate=l:t.next=l,u.lastBaseUpdate=l}function hi(){if(v1){var t=Vs;if(t!==null)throw t}}function Yf(t,l,u,c){v1=!1;var f=t.updateQueue;tf=!1,y1=f.shared;var o=f.firstBaseUpdate,d=f.lastBaseUpdate,y=f.shared.pending;if(y!==null){f.shared.pending=null;var S=y,D=S.next;S.next=null,d===null?o=D:d.next=D,d=S;var O=t.alternate;O!==null&&(O=O.updateQueue,y=O.lastBaseUpdate,y!==d&&(y===null?O.firstBaseUpdate=D:y.next=D,O.lastBaseUpdate=S))}if(o!==null){var q=f.baseState;d=0,O=D=S=null,y=o;do{var j=y.lane&-536870913,F=j!==y.lane;if(F?(Et&j)===j:(c&j)===j){j!==0&&j===bo&&(v1=!0),O!==null&&(O=O.next={lane:0,tag:y.tag,payload:y.payload,callback:null,next:null});t:{j=t;var ft=y,wt=l,ap=u;switch(ft.tag){case uS:if(ft=ft.payload,typeof ft=="function"){js=!0;var zn=ft.call(ap,q,wt);if(j.mode&8){al(!0);try{ft.call(ap,q,wt)}finally{al(!1)}}js=!1,q=zn;break t}q=ft;break t;case d1:j.flags=j.flags&-65537|128;case eS:if(zn=ft.payload,typeof zn=="function"){if(js=!0,ft=zn.call(ap,q,wt),j.mode&8){al(!0);try{zn.call(ap,q,wt)}finally{al(!1)}}js=!1}else ft=zn;if(ft==null)break t;q=Xt({},q,ft);break t;case nS:tf=!0}}j=y.callback,j!==null&&(t.flags|=64,F&&(t.flags|=8192),F=f.callbacks,F===null?f.callbacks=[j]:F.push(j))}else F={lane:j,tag:y.tag,payload:y.payload,callback:y.callback,next:null},O===null?(D=O=F,S=q):O=O.next=F,d|=j;if(y=y.next,y===null){if(y=f.shared.pending,y===null)break;F=y,y=F.next,F.next=null,f.lastBaseUpdate=F,f.shared.pending=null}}while(!0);O===null&&(S=q),f.baseState=S,f.firstBaseUpdate=D,f.lastBaseUpdate=O,o===null&&(f.shared.lanes=0),ef|=d,t.lanes=d,t.memoizedState=q}y1=null}function Gf(t,l){if(typeof t!="function")throw Error("Invalid argument passed as callback. Expected a function. Instead received: "+t);t.call(l)}function Cp(t,l){var u=t.shared.hiddenCallbacks;if(u!==null)for(t.shared.hiddenCallbacks=null,t=0;t<u.length;t++)Gf(u[t],l)}function Mp(t,l){var u=t.callbacks;if(u!==null)for(t.callbacks=null,t=0;t<u.length;t++)Gf(u[t],l)}function Op(t,l){var u=tc;mt(J0,u,t),mt(rs,l,t),tc=u|l.baseLanes}function dm(t){mt(J0,tc,t),mt(rs,rs.current,t)}function Vf(t){tc=J0.current,ll(rs,t),ll(J0,t)}function cu(t){var l=t.alternate;mt(Vl,Vl.current&Ks,t),mt(Fe,t,t),Ru===null&&(l===null||rs.current!==null||l.memoizedState!==null)&&(Ru=t)}function ym(t){mt(Vl,Vl.current,t),mt(Fe,t,t),Ru===null&&(Ru=t)}function vm(t){t.tag===22?(mt(Vl,Vl.current,t),mt(Fe,t,t),Ru===null&&(Ru=t)):Qe(t)}function Qe(t){mt(Vl,Vl.current,t),mt(Fe,Fe.current,t)}function ga(t){ll(Fe,t),Ru===t&&(Ru=null),ll(Vl,t)}function xf(t){for(var l=t;l!==null;){if(l.tag===13){var u=l.memoizedState;if(u!==null&&(u=u.dehydrated,u===null||go(u)||Ts(u)))return l}else if(l.tag===19&&(l.memoizedProps.revealOrder==="forwards"||l.memoizedProps.revealOrder==="backwards"||l.memoizedProps.revealOrder==="unstable_legacy-backwards"||l.memoizedProps.revealOrder==="together")){if((l.flags&128)!==0)return l}else if(l.child!==null){l.child.return=l,l=l.child;continue}if(l===t)break;for(;l.sibling===null;){if(l.return===null||l.return===t)return null;l=l.return}l.sibling.return=l.return,l=l.sibling}return null}function st(){var t=C;Cu===null?Cu=[t]:Cu.push(t)}function V(){var t=C;if(Cu!==null&&(Ic++,Cu[Ic]!==t)){var l=I(nt);if(!iS.has(l)&&(iS.add(l),Cu!==null)){for(var u="",c=0;c<=Ic;c++){var f=Cu[c],o=c===Ic?t:f;for(f=c+1+". "+f;30>f.length;)f+=" ";f+=o+`
|
|
424
|
+
`,u+=f}console.error(`React has detected a change in the order of Hooks called by %s. This will lead to bugs and errors if not fixed. For more information, read the Rules of Hooks: https://react.dev/link/rules-of-hooks
|
|
425
|
+
|
|
426
|
+
Previous render Next render
|
|
427
|
+
------------------------------------------------------
|
|
428
|
+
%s ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
429
|
+
`,l,u)}}}function Ba(t){t==null||Ol(t)||console.error("%s received a final argument that is not an array (instead, received `%s`). When specified, the final argument must be an array.",C,typeof t)}function Si(){var t=I(nt);oS.has(t)||(oS.add(t),console.error("ReactDOM.useFormState has been renamed to React.useActionState. Please update %s to use React.useActionState.",t))}function yl(){throw Error(`Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:
|
|
430
|
+
1. You might have mismatching versions of React and the renderer (such as React DOM)
|
|
431
|
+
2. You might be breaking the Rules of Hooks
|
|
432
|
+
3. You might have more than one copy of React in the same app
|
|
433
|
+
See https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem.`)}function hm(t,l){if(Wd)return!1;if(l===null)return console.error("%s received a final argument during this render, but not during the previous render. Even though the final argument is optional, its type cannot change between renders.",C),!1;t.length!==l.length&&console.error(`The final argument passed to %s changed size between renders. The order and size of this array must remain constant.
|
|
434
|
+
|
|
435
|
+
Previous: %s
|
|
436
|
+
Incoming: %s`,C,"["+l.join(", ")+"]","["+t.join(", ")+"]");for(var u=0;u<l.length&&u<t.length;u++)if(!te(t[u],l[u]))return!1;return!0}function Fa(t,l,u,c,f,o){Fc=o,nt=l,Cu=t!==null?t._debugHookTypes:null,Ic=-1,Wd=t!==null&&t.type!==l.type,(Object.prototype.toString.call(u)==="[object AsyncFunction]"||Object.prototype.toString.call(u)==="[object AsyncGeneratorFunction]")&&(o=I(nt),h1.has(o)||(h1.add(o),console.error("%s is an async Client Component. Only Server Components can be async at the moment. This error is often caused by accidentally adding `'use client'` to a module that was originally written for the server.",o===null?"An unknown Component":"<"+o+">"))),l.memoizedState=null,l.updateQueue=null,l.lanes=0,U.H=t!==null&&t.memoizedState!==null?E1:Cu!==null?mS:S1,Yo=o=(l.mode&8)!==ut;var d=f1(u,c,f);if(Yo=!1,Ls&&(d=Sm(l,u,c,f)),o){al(!0);try{d=Sm(l,u,c,f)}finally{al(!1)}}return Xf(t,l),d}function Xf(t,l){l._debugHookTypes=Cu,l.dependencies===null?$c!==null&&(l.dependencies={lanes:0,firstContext:null,_debugThenableState:$c}):l.dependencies._debugThenableState=$c,U.H=Fd;var u=kt!==null&&kt.next!==null;if(Fc=0,Cu=C=Kl=kt=nt=null,Ic=-1,t!==null&&(t.flags&65011712)!==(l.flags&65011712)&&console.error("Internal React error: Expected static flag was missing. Please notify the React team."),W0=!1,Ld=0,$c=null,u)throw Error("Rendered fewer hooks than expected. This may be caused by an accidental early return statement.");t===null||Jl||(t=t.dependencies,t!==null&&yc(t)&&(Jl=!0)),Zd?(Zd=!1,t=!0):t=!1,t&&(l=I(l)||"Unknown",fS.has(l)||h1.has(l)||(fS.add(l),console.error("`use` was called from inside a try/catch block. This is not allowed and can lead to unexpected behavior. To handle errors triggered by `use`, wrap your component in a error boundary.")))}function Sm(t,l,u,c){nt=t;var f=0;do{if(Ls&&($c=null),Ld=0,Ls=!1,f>=lE)throw Error("Too many re-renders. React limits the number of renders to prevent an infinite loop.");if(f+=1,Wd=!1,Kl=kt=null,t.updateQueue!=null){var o=t.updateQueue;o.lastEffect=null,o.events=null,o.stores=null,o.memoCache!=null&&(o.memoCache.index=0)}Ic=-1,U.H=sS,o=f1(l,u,c)}while(Ls);return o}function bp(){var t=U.H,l=t.useState()[0];return l=typeof l.then=="function"?Iu(l):l,t=t.useState()[0],(kt!==null?kt.memoizedState:null)!==t&&(nt.flags|=1024),l}function Em(){var t=F0!==0;return F0=0,t}function zm(t,l,u){l.updateQueue=t.updateQueue,l.flags=(l.mode&16)!==ut?l.flags&-402655237:l.flags&-2053,t.lanes&=~u}function Zf(t){if(W0){for(t=t.memoizedState;t!==null;){var l=t.queue;l!==null&&(l.pending=null),t=t.next}W0=!1}Fc=0,Cu=Kl=kt=nt=null,Ic=-1,C=null,Ls=!1,Ld=F0=0,$c=null}function ta(){var t={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return Kl===null?nt.memoizedState=Kl=t:Kl=Kl.next=t,Kl}function Gt(){if(kt===null){var t=nt.alternate;t=t!==null?t.memoizedState:null}else t=kt.next;var l=Kl===null?nt.memoizedState:Kl.next;if(l!==null)Kl=l,kt=t;else{if(t===null)throw nt.alternate===null?Error("Update hook called on initial render. This is likely a bug in React. Please file an issue."):Error("Rendered more hooks than during the previous render.");kt=t,t={memoizedState:kt.memoizedState,baseState:kt.baseState,baseQueue:kt.baseQueue,queue:kt.queue,next:null},Kl===null?nt.memoizedState=Kl=t:Kl=Kl.next=t}return Kl}function Ec(){return{lastEffect:null,events:null,stores:null,memoCache:null}}function Iu(t){var l=Ld;return Ld+=1,$c===null&&($c=Dp()),t=im($c,t,l),l=nt,(Kl===null?l.memoizedState:Kl.next)===null&&(l=l.alternate,U.H=l!==null&&l.memoizedState!==null?E1:S1),t}function Qt(t){if(t!==null&&typeof t=="object"){if(typeof t.then=="function")return Iu(t);if(t.$$typeof===Hl)return Jt(t)}throw Error("An unsupported type was passed to use(): "+String(t))}function zc(t){var l=null,u=nt.updateQueue;if(u!==null&&(l=u.memoCache),l==null){var c=nt.alternate;c!==null&&(c=c.updateQueue,c!==null&&(c=c.memoCache,c!=null&&(l={data:c.data.map(function(f){return f.slice()}),index:0})))}if(l==null&&(l={data:[],index:0}),u===null&&(u=Ec(),nt.updateQueue=u),u.memoCache=l,u=l.data[l.index],u===void 0||Wd)for(u=l.data[l.index]=Array(t),c=0;c<t;c++)u[c]=A0;else u.length!==t&&console.error("Expected a constant size argument for each invocation of useMemoCache. The previous cache was allocated with size %s but size %s was requested.",u.length,t);return l.index++,u}function Ye(t,l){return typeof l=="function"?l(t):l}function Tm(t,l,u){var c=ta();if(u!==void 0){var f=u(l);if(Yo){al(!0);try{u(l)}finally{al(!1)}}}else f=l;return c.memoizedState=c.baseState=f,t={pending:null,lanes:0,dispatch:null,lastRenderedReducer:t,lastRenderedState:f},c.queue=t,t=t.dispatch=My.bind(null,nt,t),[c.memoizedState,t]}function iu(t){var l=Gt();return fu(l,kt,t)}function fu(t,l,u){var c=t.queue;if(c===null)throw Error("Should have a queue. You are likely calling Hooks conditionally, which is not allowed. (https://react.dev/link/invalid-hook-call)");c.lastRenderedReducer=u;var f=t.baseQueue,o=c.pending;if(o!==null){if(f!==null){var d=f.next;f.next=o.next,o.next=d}l.baseQueue!==f&&console.error("Internal error: Expected work-in-progress queue to be a clone. This is a bug in React."),l.baseQueue=f=o,c.pending=null}if(o=t.baseState,f===null)t.memoizedState=o;else{l=f.next;var y=d=null,S=null,D=l,O=!1;do{var q=D.lane&-536870913;if(q!==D.lane?(Et&q)===q:(Fc&q)===q){var j=D.revertLane;if(j===0)S!==null&&(S=S.next={lane:0,revertLane:0,gesture:null,action:D.action,hasEagerState:D.hasEagerState,eagerState:D.eagerState,next:null}),q===bo&&(O=!0);else if((Fc&j)===j){D=D.next,j===bo&&(O=!0);continue}else q={lane:0,revertLane:D.revertLane,gesture:null,action:D.action,hasEagerState:D.hasEagerState,eagerState:D.eagerState,next:null},S===null?(y=S=q,d=o):S=S.next=q,nt.lanes|=j,ef|=j;q=D.action,Yo&&u(o,q),o=D.hasEagerState?D.eagerState:u(o,q)}else j={lane:q,revertLane:D.revertLane,gesture:D.gesture,action:D.action,hasEagerState:D.hasEagerState,eagerState:D.eagerState,next:null},S===null?(y=S=j,d=o):S=S.next=j,nt.lanes|=q,ef|=q;D=D.next}while(D!==null&&D!==l);if(S===null?d=o:S.next=y,!te(o,t.memoizedState)&&(Jl=!0,O&&(u=Vs,u!==null)))throw u;t.memoizedState=o,t.baseState=d,t.baseQueue=S,c.lastRenderedState=o}return f===null&&(c.lanes=0),[t.memoizedState,c.dispatch]}function Ei(t){var l=Gt(),u=l.queue;if(u===null)throw Error("Should have a queue. You are likely calling Hooks conditionally, which is not allowed. (https://react.dev/link/invalid-hook-call)");u.lastRenderedReducer=t;var c=u.dispatch,f=u.pending,o=l.memoizedState;if(f!==null){u.pending=null;var d=f=f.next;do o=t(o,d.action),d=d.next;while(d!==f);te(o,l.memoizedState)||(Jl=!0),l.memoizedState=o,l.baseQueue===null&&(l.baseState=o),u.lastRenderedState=o}return[o,c]}function gm(t,l,u){var c=nt,f=ta();if(Mt){if(u===void 0)throw Error("Missing getServerSnapshot, which is required for server-rendered content. Will revert to client rendering.");var o=u();Js||o===u()||(console.error("The result of getServerSnapshot should be cached to avoid an infinite loop"),Js=!0)}else{if(o=l(),Js||(u=l(),te(o,u)||(console.error("The result of getSnapshot should be cached to avoid an infinite loop"),Js=!0)),tl===null)throw Error("Expected a work-in-progress root. This is a bug in React. Please file an issue.");(Et&127)!==0||Ge(c,l,o)}return f.memoizedState=o,u={value:o,getSnapshot:l},f.queue=u,ja(_m.bind(null,c,u,t),[t]),c.flags|=2048,me(Uu|ee,{destroy:void 0},qp.bind(null,c,u,o,l),null),o}function Cn(t,l,u){var c=nt,f=Gt(),o=Mt;if(o){if(u===void 0)throw Error("Missing getServerSnapshot, which is required for server-rendered content. Will revert to client rendering.");u=u()}else if(u=l(),!Js){var d=l();te(u,d)||(console.error("The result of getSnapshot should be cached to avoid an infinite loop"),Js=!0)}(d=!te((kt||f).memoizedState,u))&&(f.memoizedState=u,Jl=!0),f=f.queue;var y=_m.bind(null,c,f,t);if(ma(2048,ee,y,[t]),f.getSnapshot!==l||d||Kl!==null&&Kl.memoizedState.tag&Uu){if(c.flags|=2048,me(Uu|ee,{destroy:void 0},qp.bind(null,c,f,u,l),null),tl===null)throw Error("Expected a work-in-progress root. This is a bug in React. Please file an issue.");o||(Fc&127)!==0||Ge(c,l,u)}return u}function Ge(t,l,u){t.flags|=16384,t={getSnapshot:l,value:u},l=nt.updateQueue,l===null?(l=Ec(),nt.updateQueue=l,l.stores=[t]):(u=l.stores,u===null?l.stores=[t]:u.push(t))}function qp(t,l,u,c){l.value=u,l.getSnapshot=c,Bp(l)&&Dm(t)}function _m(t,l,u){return u(function(){Bp(l)&&(Me(2,"updateSyncExternalStore()",t),Dm(t))})}function Bp(t){var l=t.getSnapshot;t=t.value;try{var u=l();return!te(t,u)}catch{return!0}}function Dm(t){var l=fa(t,2);l!==null&&el(l,t,2)}function rf(t){var l=ta();if(typeof t=="function"){var u=t;if(t=u(),Yo){al(!0);try{u()}finally{al(!1)}}}return l.memoizedState=l.baseState=t,l.queue={pending:null,lanes:0,dispatch:null,lastRenderedReducer:Ye,lastRenderedState:t},l}function zi(t){t=rf(t);var l=t.queue,u=Xp.bind(null,nt,l);return l.dispatch=u,[t.memoizedState,u]}function Hm(t){var l=ta();l.memoizedState=l.baseState=t;var u={pending:null,lanes:0,dispatch:null,lastRenderedReducer:null,lastRenderedState:null};return l.queue=u,l=_i.bind(null,nt,!0,u),u.dispatch=l,[t,l]}function jp(t,l){var u=Gt();return Dy(u,kt,t,l)}function Dy(t,l,u,c){return t.baseState=u,fu(t,kt,typeof c=="function"?c:Ye)}function Qp(t,l){var u=Gt();return kt!==null?Dy(u,kt,t,l):(u.baseState=t,[t,u.queue.dispatch])}function Hy(t,l,u,c,f){if(Di(t))throw Error("Cannot update form state while rendering.");if(t=l.action,t!==null){var o={payload:f,action:t,next:null,isTransition:!0,status:"pending",value:null,reason:null,listeners:[],then:function(d){o.listeners.push(d)}};U.T!==null?u(!0):o.isTransition=!1,c(o),u=l.pending,u===null?(o.next=l.pending=o,fe(l,o)):(o.next=u.next,l.pending=u.next=o)}}function fe(t,l){var u=l.action,c=l.payload,f=t.state;if(l.isTransition){var o=U.T,d={};d._updatedFibers=new Set,U.T=d;try{var y=u(f,c),S=U.S;S!==null&&S(d,y),Am(t,l,y)}catch(D){Nm(t,l,D)}finally{o!==null&&d.types!==null&&(o.types!==null&&o.types!==d.types&&console.error("We expected inner Transitions to have transferred the outer types set and that you cannot add to the outer Transition while inside the inner.This is a bug in React."),o.types=d.types),U.T=o,o===null&&d._updatedFibers&&(t=d._updatedFibers.size,d._updatedFibers.clear(),10<t&&console.warn("Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table."))}}else try{d=u(f,c),Am(t,l,d)}catch(D){Nm(t,l,D)}}function Am(t,l,u){u!==null&&typeof u=="object"&&typeof u.then=="function"?(U.asyncTransitions++,u.then(Ff,Ff),u.then(function(c){Yp(t,l,c)},function(c){return Nm(t,l,c)}),l.isTransition||console.error("An async function with useActionState was called outside of a transition. This is likely not what you intended (for example, isPending will not update correctly). Either call the returned function inside startTransition, or pass it to an `action` or `formAction` prop.")):Yp(t,l,u)}function Yp(t,l,u){l.status="fulfilled",l.value=u,Ay(l),t.state=u,l=t.pending,l!==null&&(u=l.next,u===l?t.pending=null:(u=u.next,l.next=u,fe(t,u)))}function Nm(t,l,u){var c=t.pending;if(t.pending=null,c!==null){c=c.next;do l.status="rejected",l.reason=u,Ay(l),l=l.next;while(l!==c)}t.action=null}function Ay(t){t=t.listeners;for(var l=0;l<t.length;l++)(0,t[l])()}function Kf(t,l){return l}function _l(t,l){if(Mt){var u=tl.formState;if(u!==null){t:{var c=nt;if(Mt){if(hl){var f=Xa(hl,Hu);if(f){hl=rn(f),c=Le(f);break t}}tu(c)}c=!1}c&&(l=u[0])}}u=ta(),u.memoizedState=u.baseState=l,c={pending:null,lanes:0,dispatch:null,lastRenderedReducer:Kf,lastRenderedState:l},u.queue=c,u=Xp.bind(null,nt,c),c.dispatch=u,c=rf(!1);var o=_i.bind(null,nt,!1,c.queue);return c=ta(),f={state:l,dispatch:null,action:t,pending:null},c.queue=f,u=Hy.bind(null,nt,f,o,u),f.dispatch=u,c.memoizedState=t,[l,u,!1]}function Jf(t){var l=Gt();return oa(l,kt,t)}function oa(t,l,u){if(l=fu(t,l,Kf)[0],t=iu(Ye)[0],typeof l=="object"&&l!==null&&typeof l.then=="function")try{var c=Iu(l)}catch(d){throw d===xs?r0:d}else c=l;l=Gt();var f=l.queue,o=f.dispatch;return u!==l.memoizedState&&(nt.flags|=2048,me(Uu|ee,{destroy:void 0},Ny.bind(null,f,u),null)),[c,o,t]}function Ny(t,l){t.action=l}function oe(t){var l=Gt(),u=kt;if(u!==null)return oa(l,u,t);Gt(),l=l.memoizedState,u=Gt();var c=u.queue.dispatch;return u.memoizedState=t,[l,c,!1]}function me(t,l,u,c){return t={tag:t,create:u,deps:c,inst:l,next:null},l=nt.updateQueue,l===null&&(l=Ec(),nt.updateQueue=l),u=l.lastEffect,u===null?l.lastEffect=t.next=t:(c=u.next,u.next=t,t.next=c,l.lastEffect=t),t}function Ve(t){var l=ta();return t={current:t},l.memoizedState=t}function wu(t,l,u,c){var f=ta();nt.flags|=t,f.memoizedState=me(Uu|l,{destroy:void 0},u,c===void 0?null:c)}function ma(t,l,u,c){var f=Gt();c=c===void 0?null:c;var o=f.memoizedState.inst;kt!==null&&c!==null&&hm(c,kt.memoizedState.deps)?f.memoizedState=me(l,o,u,c):(nt.flags|=t,f.memoizedState=me(Uu|l,o,u,c))}function ja(t,l){(nt.mode&16)!==ut?wu(276826112,ee,t,l):wu(8390656,ee,t,l)}function Ry(t){nt.flags|=4;var l=nt.updateQueue;if(l===null)l=Ec(),nt.updateQueue=l,l.events=[t];else{var u=l.events;u===null?l.events=[t]:u.push(t)}}function Mn(t){var l=ta(),u={impl:t};return l.memoizedState=u,function(){if((Ot&ha)!==va)throw Error("A function wrapped in useEffectEvent can't be called during rendering.");return u.impl.apply(void 0,arguments)}}function On(t){var l=Gt().memoizedState;return Ry({ref:l,nextImpl:t}),function(){if((Ot&ha)!==va)throw Error("A function wrapped in useEffectEvent can't be called during rendering.");return l.impl.apply(void 0,arguments)}}function Pu(t,l){var u=4194308;return(nt.mode&16)!==ut&&(u|=134217728),wu(u,$e,t,l)}function Gp(t,l){if(typeof l=="function"){t=t();var u=l(t);return function(){typeof u=="function"?u():l(null)}}if(l!=null)return l.hasOwnProperty("current")||console.error("Expected useImperativeHandle() first argument to either be a ref callback or React.createRef() object. Instead received: %s.","an object with keys {"+Object.keys(l).join(", ")+"}"),t=t(),l.current=t,function(){l.current=null}}function Rm(t,l,u){typeof l!="function"&&console.error("Expected useImperativeHandle() second argument to be a function that creates a handle. Instead received: %s.",l!==null?typeof l:"null"),u=u!=null?u.concat([t]):null;var c=4194308;(nt.mode&16)!==ut&&(c|=134217728),wu(c,$e,Gp.bind(null,l,t),u)}function bn(t,l,u){typeof l!="function"&&console.error("Expected useImperativeHandle() second argument to be a function that creates a handle. Instead received: %s.",l!==null?typeof l:"null"),u=u!=null?u.concat([t]):null,ma(4,$e,Gp.bind(null,l,t),u)}function Um(t,l){return ta().memoizedState=[t,l===void 0?null:l],t}function Tc(t,l){var u=Gt();l=l===void 0?null:l;var c=u.memoizedState;return l!==null&&hm(l,c[1])?c[0]:(u.memoizedState=[t,l],t)}function Cm(t,l){var u=ta();l=l===void 0?null:l;var c=t();if(Yo){al(!0);try{t()}finally{al(!1)}}return u.memoizedState=[c,l],c}function Ti(t,l){var u=Gt();l=l===void 0?null:l;var c=u.memoizedState;if(l!==null&&hm(l,c[1]))return c[0];if(c=t(),Yo){al(!0);try{t()}finally{al(!1)}}return u.memoizedState=[c,l],c}function Lf(t,l){var u=ta();return Wf(u,t,l)}function Mm(t,l){var u=Gt();return Qa(u,kt.memoizedState,t,l)}function Vp(t,l){var u=Gt();return kt===null?Wf(u,t,l):Qa(u,kt.memoizedState,t,l)}function Wf(t,l,u){return u===void 0||(Fc&1073741824)!==0&&(Et&261930)===0?t.memoizedState=l:(t.memoizedState=u,t=t0(),nt.lanes|=t,ef|=t,u)}function Qa(t,l,u,c){return te(u,l)?u:rs.current!==null?(t=Wf(t,u,c),te(t,l)||(Jl=!0),t):(Fc&42)===0||(Fc&1073741824)!==0&&(Et&261930)===0?(Jl=!0,t.memoizedState=u):(t=t0(),nt.lanes|=t,ef|=t,l)}function Ff(){U.asyncTransitions--}function _a(t,l,u,c,f){var o=xa();Al(o!==0&&8>o?o:8);var d=U.T,y={};y._updatedFibers=new Set,U.T=y,_i(t,!1,l,u);try{var S=f(),D=U.S;if(D!==null&&D(y,S),S!==null&&typeof S=="object"&&typeof S.then=="function"){U.asyncTransitions++,S.then(Ff,Ff);var O=_p(S,c);gi(t,l,O,Ia(t))}else gi(t,l,c,Ia(t))}catch(q){gi(t,l,{then:function(){},status:"rejected",reason:q},Ia(t))}finally{Al(o),d!==null&&y.types!==null&&(d.types!==null&&d.types!==y.types&&console.error("We expected inner Transitions to have transferred the outer types set and that you cannot add to the outer Transition while inside the inner.This is a bug in React."),d.types=y.types),U.T=d,d===null&&y._updatedFibers&&(t=y._updatedFibers.size,y._updatedFibers.clear(),10<t&&console.warn("Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table."))}}function xp(t){var l=t.memoizedState;if(l!==null)return l;l={memoizedState:he,baseState:he,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:Ye,lastRenderedState:he},next:null};var u={};return l.next={memoizedState:u,baseState:u,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:Ye,lastRenderedState:u},next:null},t.memoizedState=l,t=t.alternate,t!==null&&(t.memoizedState=l),l}function Om(){var t=rf(!1);return t=_a.bind(null,nt,t.queue,!0,!1),ta().memoizedState=t,[!1,t]}function Uy(){var t=iu(Ye)[0],l=Gt().memoizedState;return[typeof t=="boolean"?t:Iu(t),l]}function ku(){var t=Ei(Ye)[0],l=Gt().memoizedState;return[typeof t=="boolean"?t:Iu(t),l]}function qn(){return Jt(Se)}function $f(){var t=ta(),l=tl.identifierPrefix;if(Mt){var u=Xc,c=xc;u=(c&~(1<<32-Gl(c)-1)).toString(32)+u,l="_"+l+"R_"+u,u=F0++,0<u&&(l+="H"+u.toString(32)),l+="_"}else u=tE++,l="_"+l+"r_"+u.toString(32)+"_";return t.memoizedState=l}function Bn(){return ta().memoizedState=Cy.bind(null,nt)}function Cy(t,l){for(var u=t.return;u!==null;){switch(u.tag){case 24:case 3:var c=Ia(u),f=$u(c),o=ie(u,f,c);o!==null&&(Me(c,"refresh()",t),el(o,u,c),vi(o,u,c)),t=mi(),l!=null&&o!==null&&console.error("The seed argument is not enabled outside experimental channels."),f.payload={cache:t};return}u=u.return}}function My(t,l,u){var c=arguments;typeof c[3]=="function"&&console.error("State updates from the useState() and useReducer() Hooks don't support the second callback argument. To execute a side effect after rendering, declare it in the component body with useEffect()."),c=Ia(t);var f={lane:c,revertLane:0,gesture:null,action:u,hasEagerState:!1,eagerState:null,next:null};Di(t)?Oy(l,f):(f=mm(t,l,f,c),f!==null&&(Me(c,"dispatch()",t),el(f,t,c),by(f,l,c)))}function Xp(t,l,u){var c=arguments;typeof c[3]=="function"&&console.error("State updates from the useState() and useReducer() Hooks don't support the second callback argument. To execute a side effect after rendering, declare it in the component body with useEffect()."),c=Ia(t),gi(t,l,u,c)&&Me(c,"setState()",t)}function gi(t,l,u,c){var f={lane:c,revertLane:0,gesture:null,action:u,hasEagerState:!1,eagerState:null,next:null};if(Di(t))Oy(l,f);else{var o=t.alternate;if(t.lanes===0&&(o===null||o.lanes===0)&&(o=l.lastRenderedReducer,o!==null)){var d=U.H;U.H=vn;try{var y=l.lastRenderedState,S=o(y,u);if(f.hasEagerState=!0,f.eagerState=S,te(S,y))return jf(t,l,f,0),tl===null&&yi(),!1}catch{}finally{U.H=d}}if(u=mm(t,l,f,c),u!==null)return el(u,t,c),by(u,l,c),!0}return!1}function _i(t,l,u,c){if(U.T===null&&bo===0&&console.error("An optimistic state update occurred outside a transition or action. To fix, move the update to an action, or wrap with startTransition."),c={lane:2,revertLane:um(),gesture:null,action:c,hasEagerState:!1,eagerState:null,next:null},Di(t)){if(l)throw Error("Cannot update optimistic state while rendering.");console.error("Cannot call startTransition while rendering.")}else l=mm(t,u,c,2),l!==null&&(Me(2,"setOptimistic()",t),el(l,t,2))}function Di(t){var l=t.alternate;return t===nt||l!==null&&l===nt}function Oy(t,l){Ls=W0=!0;var u=t.pending;u===null?l.next=l:(l.next=u.next,u.next=l),t.pending=l}function by(t,l,u){if((u&4194048)!==0){var c=l.lanes;c&=t.pendingLanes,u|=c,l.lanes=u,Ae(t,u)}}function Zp(t){if(t!==null&&typeof t!="function"){var l=String(t);_S.has(l)||(_S.add(l),console.error("Expected the last optional `callback` argument to be a function. Instead received: %s.",t))}}function bm(t,l,u,c){var f=t.memoizedState,o=u(c,f);if(t.mode&8){al(!0);try{o=u(c,f)}finally{al(!1)}}o===void 0&&(l=Vt(l)||"Component",ES.has(l)||(ES.add(l),console.error("%s.getDerivedStateFromProps(): A valid state object (or null) must be returned. You have returned undefined.",l))),f=o==null?f:Xt({},f,o),t.memoizedState=f,t.lanes===0&&(t.updateQueue.baseState=f)}function rp(t,l,u,c,f,o,d){var y=t.stateNode;if(typeof y.shouldComponentUpdate=="function"){if(u=y.shouldComponentUpdate(c,o,d),t.mode&8){al(!0);try{u=y.shouldComponentUpdate(c,o,d)}finally{al(!1)}}return u===void 0&&console.error("%s.shouldComponentUpdate(): Returned undefined instead of a boolean value. Make sure to return true or false.",Vt(l)||"Component"),u}return l.prototype&&l.prototype.isPureReactComponent?!Of(u,c)||!Of(f,o):!0}function gc(t,l,u,c){var f=l.state;typeof l.componentWillReceiveProps=="function"&&l.componentWillReceiveProps(u,c),typeof l.UNSAFE_componentWillReceiveProps=="function"&&l.UNSAFE_componentWillReceiveProps(u,c),l.state!==f&&(t=I(t)||"Component",dS.has(t)||(dS.add(t),console.error("%s.componentWillReceiveProps(): Assigning directly to this.state is deprecated (except inside a component's constructor). Use setState instead.",t)),z1.enqueueReplaceState(l,l.state,null))}function ou(t,l){var u=l;if("ref"in l){u={};for(var c in l)c!=="ref"&&(u[c]=l[c])}if(t=t.defaultProps){u===l&&(u=Xt({},u));for(var f in t)u[f]===void 0&&(u[f]=t[f])}return u}function If(t,l){try{Ws=l.source?I(l.source):null,T1=null;var u=l.value;if(U.actQueue!==null)U.thrownErrors.push(u);else{var c=t.onUncaughtError;c(u,{componentStack:l.stack})}}catch(f){setTimeout(function(){throw f})}}function Kp(t,l,u){try{Ws=u.source?I(u.source):null,T1=I(l);var c=t.onCaughtError;c(u.value,{componentStack:u.stack,errorBoundary:l.tag===1?l.stateNode:null})}catch(f){setTimeout(function(){throw f})}}function qm(t,l,u){return u=$u(u),u.tag=d1,u.payload={element:null},u.callback=function(){W(l.source,If,t,l)},u}function Bm(t){return t=$u(t),t.tag=d1,t}function jm(t,l,u,c){var f=u.type.getDerivedStateFromError;if(typeof f=="function"){var o=c.value;t.payload=function(){return f(o)},t.callback=function(){T0(u),W(c.source,Kp,l,u,c)}}var d=u.stateNode;d!==null&&typeof d.componentDidCatch=="function"&&(t.callback=function(){T0(u),W(c.source,Kp,l,u,c),typeof f!="function"&&(nf===null?nf=new Set([this]):nf.add(this)),I2(this,c),typeof f=="function"||(u.lanes&2)===0&&console.error("%s: Error boundaries should implement getDerivedStateFromError(). In that method, return a state update to display an error message or fallback UI.",I(u)||"Unknown")})}function qy(t,l,u,c,f){if(u.flags|=32768,$n&&Ci(t,f),c!==null&&typeof c=="object"&&typeof c.then=="function"){if(l=u.alternate,l!==null&&Pt(l,u,f,!0),Mt&&(wn=!0),u=Fe.current,u!==null){switch(u.tag){case 31:case 13:return Ru===null?Pm():u.alternate===null&&El===Pc&&(El=ev),u.flags&=-257,u.flags|=65536,u.lanes=f,c===K0?u.flags|=16384:(l=u.updateQueue,l===null?u.updateQueue=new Set([c]):l.add(c),dd(t,c,f)),!1;case 22:return u.flags|=65536,c===K0?u.flags|=16384:(l=u.updateQueue,l===null?(l={transitions:null,markerInstances:null,retryQueue:new Set([c])},u.updateQueue=l):(u=l.retryQueue,u===null?l.retryQueue=new Set([c]):u.add(c)),dd(t,c,f)),!1}throw Error("Unexpected Suspense handler tag ("+u.tag+"). This is a bug in React.")}return dd(t,c,f),Pm(),!1}if(Mt)return wn=!0,l=Fe.current,l!==null?((l.flags&65536)===0&&(l.flags|=256),l.flags|=65536,l.lanes=f,c!==wv&&fi(Ma(Error("There was an error while hydrating but React was able to recover by instead client rendering from the nearest Suspense boundary.",{cause:c}),u))):(c!==wv&&fi(Ma(Error("There was an error while hydrating but React was able to recover by instead client rendering the entire root.",{cause:c}),u)),t=t.current.alternate,t.flags|=65536,f&=-f,t.lanes|=f,c=Ma(c,u),f=qm(t.stateNode,c,f),Sc(t,f),El!==lf&&(El=Go)),!1;var o=Ma(Error("There was an error during concurrent rendering but React was able to recover by instead synchronously rendering the entire root.",{cause:c}),u);if(kd===null?kd=[o]:kd.push(o),El!==lf&&(El=Go),l===null)return!0;c=Ma(c,u),u=l;do{switch(u.tag){case 3:return u.flags|=65536,t=f&-f,u.lanes|=t,t=qm(u.stateNode,c,t),Sc(u,t),!1;case 1:if(l=u.type,o=u.stateNode,(u.flags&128)===0&&(typeof l.getDerivedStateFromError=="function"||o!==null&&typeof o.componentDidCatch=="function"&&(nf===null||!nf.has(o))))return u.flags|=65536,f&=-f,u.lanes|=f,f=Bm(f),jm(f,t,u,c),Sc(u,f),!1}u=u.return}while(u!==null);return!1}function Dl(t,l,u,c){l.child=t===null?aS(l,null,u,c):Qo(l,t.child,u,c)}function Jp(t,l,u,c,f){u=u.render;var o=l.ref;if("ref"in c){var d={};for(var y in c)y!=="ref"&&(d[y]=c[y])}else d=c;return Ce(l),c=Fa(t,l,u,d,o,f),y=Em(),t!==null&&!Jl?(zm(t,l,f),xe(t,l,f)):(Mt&&y&&ui(l),l.flags|=1,Dl(t,l,c,f),l.child)}function Lp(t,l,u,c,f){if(t===null){var o=u.type;return typeof o=="function"&&!as(o)&&o.defaultProps===void 0&&u.compare===null?(u=Uc(o),l.tag=15,l.type=u,tn(l,o),qt(t,l,u,c,f)):(t=es(u.type,null,c,l,l.mode,f),t.ref=l.ref,t.return=l,l.child=t)}if(o=t.child,!zt(t,f)){var d=o.memoizedProps;if(u=u.compare,u=u!==null?u:Of,u(d,c)&&t.ref===l.ref)return xe(t,l,f)}return l.flags|=1,t=un(o,c),t.ref=l.ref,t.return=l,l.child=t}function qt(t,l,u,c,f){if(t!==null){var o=t.memoizedProps;if(Of(o,c)&&t.ref===l.ref&&l.type===t.type)if(Jl=!1,l.pendingProps=c=o,zt(t,f))(t.flags&131072)!==0&&(Jl=!0);else return l.lanes=t.lanes,xe(t,l,f)}return Pf(t,l,u,c,f)}function Qm(t,l,u,c){var f=c.children,o=t!==null?t.memoizedState:null;if(t===null&&l.stateNode===null&&(l.stateNode={_visibility:Kd,_pendingMarkers:null,_retryCache:null,_transitions:null}),c.mode==="hidden"){if((l.flags&128)!==0){if(o=o!==null?o.baseLanes|u:u,t!==null){for(c=l.child=t.child,f=0;c!==null;)f=f|c.lanes|c.childLanes,c=c.sibling;c=f&~o}else c=0,l.child=null;return Wp(t,l,o,u,c)}if((u&536870912)!==0)l.memoizedState={baseLanes:0,cachePool:null},t!==null&&Mf(l,o!==null?o.cachePool:null),o!==null?Op(l,o):dm(l),vm(l);else return c=l.lanes=536870912,Wp(t,l,o!==null?o.baseLanes|u:u,u,c)}else o!==null?(Mf(l,o.cachePool),Op(l,o),Qe(l),l.memoizedState=null):(t!==null&&Mf(l,null),dm(l),Qe(l));return Dl(t,l,f,u),l.child}function wf(t,l){return t!==null&&t.tag===22||l.stateNode!==null||(l.stateNode={_visibility:Kd,_pendingMarkers:null,_retryCache:null,_transitions:null}),l.sibling}function Wp(t,l,u,c,f){var o=nm();return o=o===null?null:{parent:Na?Ul._currentValue:Ul._currentValue2,pool:o},l.memoizedState={baseLanes:u,cachePool:o},t!==null&&Mf(l,null),dm(l),vm(l),t!==null&&Pt(t,l,c,!0),l.childLanes=f,null}function Ym(t,l){var u=l.hidden;return u!==void 0&&console.error(`<Activity> doesn't accept a hidden prop. Use mode="hidden" instead.
|
|
437
|
+
- <Activity %s>
|
|
438
|
+
+ <Activity %s>`,u===!0?"hidden":u===!1?"hidden={false}":"hidden={...}",u?'mode="hidden"':'mode="visible"'),l=lo({mode:l.mode,children:l.children},t.mode),l.ref=t.ref,t.child=l,l.return=t,l}function By(t,l,u){return Qo(l,t.child,null,u),t=Ym(l,l.pendingProps),t.flags|=2,ga(l),l.memoizedState=null,t}function Rv(t,l,u){var c=l.pendingProps,f=(l.flags&128)!==0;if(l.flags&=-129,t===null){if(Mt){if(c.mode==="hidden")return t=Ym(l,c),l.lanes=536870912,wf(null,t);if(ym(l),(t=hl)?(u=Ht(t,Hu),u!==null&&(c={dehydrated:u,treeContext:Sf(),retryLane:536870912,hydrationErrors:null},l.memoizedState=c,c=Cc(u),c.return=l,l.child=c,Ra=l,hl=null)):u=null,u===null)throw ii(l,t),tu(l);return l.lanes=536870912,null}return Ym(l,c)}var o=t.memoizedState;if(o!==null){var d=o.dehydrated;if(ym(l),f)if(l.flags&256)l.flags&=-257,l=By(t,l,u);else if(l.memoizedState!==null)l.child=t.child,l.flags|=128,l=null;else throw Error("Client rendering an Activity suspended it again. This is a bug in React.");else if(ru(),(u&536870912)!==0&&wm(l),Jl||Pt(t,l,u,!1),f=(u&t.childLanes)!==0,Jl||f){if(c=tl,c!==null&&(d=Pe(c,u),d!==0&&d!==o.retryLane))throw o.retryLane=d,fa(t,d),el(c,t,d),g1;Pm(),l=By(t,l,u)}else t=o.treeContext,da&&(hl=Ds(d),Ra=l,Mt=!0,$i=null,wn=!1,We=null,Hu=!1,t!==null&&dp(l,t)),l=Ym(l,c),l.flags|=4096;return l}return o=t.child,c={mode:c.mode,children:c.children},(u&536870912)!==0&&(u&t.lanes)!==0&&wm(l),t=un(o,c),t.ref=l.ref,l.child=t,t.return=l,t}function Gm(t,l){var u=l.ref;if(u===null)t!==null&&t.ref!==null&&(l.flags|=4194816);else{if(typeof u!="function"&&typeof u!="object")throw Error("Expected ref to be a function, an object returned by React.createRef(), or undefined/null.");(t===null||t.ref!==u)&&(l.flags|=4194816)}}function Pf(t,l,u,c,f){if(u.prototype&&typeof u.prototype.render=="function"){var o=Vt(u)||"Unknown";DS[o]||(console.error("The <%s /> component appears to have a render method, but doesn't extend React.Component. This is likely to cause errors. Change %s to extend React.Component instead.",o,o),DS[o]=!0)}return l.mode&8&&yn.recordLegacyContextWarning(l,null),t===null&&(tn(l,l.type),u.contextTypes&&(o=Vt(u)||"Unknown",AS[o]||(AS[o]=!0,console.error("%s uses the legacy contextTypes API which was removed in React 19. Use React.createContext() with React.useContext() instead. (https://react.dev/link/legacy-context)",o)))),Ce(l),u=Fa(t,l,u,c,void 0,f),c=Em(),t!==null&&!Jl?(zm(t,l,f),xe(t,l,f)):(Mt&&c&&ui(l),l.flags|=1,Dl(t,l,u,f),l.child)}function mu(t,l,u,c,f,o){return Ce(l),Ic=-1,Wd=t!==null&&t.type!==l.type,l.updateQueue=null,u=Sm(l,c,u,f),Xf(t,l),c=Em(),t!==null&&!Jl?(zm(t,l,o),xe(t,l,o)):(Mt&&c&&ui(l),l.flags|=1,Dl(t,l,u,o),l.child)}function Fp(t,l,u,c,f){switch(yt(l)){case!1:var o=l.stateNode,d=new l.type(l.memoizedProps,o.context).state;o.updater.enqueueSetState(o,d,null);break;case!0:l.flags|=128,l.flags|=65536,o=Error("Simulated error coming from DevTools");var y=f&-f;if(l.lanes|=y,d=tl,d===null)throw Error("Expected a work-in-progress root. This is a bug in React. Please file an issue.");y=Bm(y),jm(y,d,l,Ma(o,l)),Sc(l,y)}if(Ce(l),l.stateNode===null){if(d=cl,o=u.contextType,"contextType"in u&&o!==null&&(o===void 0||o.$$typeof!==Hl)&&!gS.has(u)&&(gS.add(u),y=o===void 0?" However, it is set to undefined. This can be caused by a typo or by mixing up named and default imports. This can also happen due to a circular dependency, so try moving the createContext() call to a separate file.":typeof o!="object"?" However, it is set to a "+typeof o+".":o.$$typeof===Oc?" Did you accidentally pass the Context.Consumer instead?":" However, it is set to an object with keys {"+Object.keys(o).join(", ")+"}.",console.error("%s defines an invalid contextType. contextType should point to the Context object returned by React.createContext().%s",Vt(u)||"Component",y)),typeof o=="object"&&o!==null&&(d=Jt(o)),o=new u(c,d),l.mode&8){al(!0);try{o=new u(c,d)}finally{al(!1)}}if(d=l.memoizedState=o.state!==null&&o.state!==void 0?o.state:null,o.updater=z1,l.stateNode=o,o._reactInternals=l,o._reactInternalInstance=pS,typeof u.getDerivedStateFromProps=="function"&&d===null&&(d=Vt(u)||"Component",yS.has(d)||(yS.add(d),console.error("`%s` uses `getDerivedStateFromProps` but its initial state is %s. This is not recommended. Instead, define the initial state by assigning an object to `this.state` in the constructor of `%s`. This ensures that `getDerivedStateFromProps` arguments have a consistent shape.",d,o.state===null?"null":"undefined",d))),typeof u.getDerivedStateFromProps=="function"||typeof o.getSnapshotBeforeUpdate=="function"){var S=y=d=null;if(typeof o.componentWillMount=="function"&&o.componentWillMount.__suppressDeprecationWarning!==!0?d="componentWillMount":typeof o.UNSAFE_componentWillMount=="function"&&(d="UNSAFE_componentWillMount"),typeof o.componentWillReceiveProps=="function"&&o.componentWillReceiveProps.__suppressDeprecationWarning!==!0?y="componentWillReceiveProps":typeof o.UNSAFE_componentWillReceiveProps=="function"&&(y="UNSAFE_componentWillReceiveProps"),typeof o.componentWillUpdate=="function"&&o.componentWillUpdate.__suppressDeprecationWarning!==!0?S="componentWillUpdate":typeof o.UNSAFE_componentWillUpdate=="function"&&(S="UNSAFE_componentWillUpdate"),d!==null||y!==null||S!==null){o=Vt(u)||"Component";var D=typeof u.getDerivedStateFromProps=="function"?"getDerivedStateFromProps()":"getSnapshotBeforeUpdate()";hS.has(o)||(hS.add(o),console.error(`Unsafe legacy lifecycles will not be called for components using new component APIs.
|
|
439
|
+
|
|
440
|
+
%s uses %s but also contains the following legacy lifecycles:%s%s%s
|
|
441
|
+
|
|
442
|
+
The above lifecycles should be removed. Learn more about this warning here:
|
|
443
|
+
https://react.dev/link/unsafe-component-lifecycles`,o,D,d!==null?`
|
|
444
|
+
`+d:"",y!==null?`
|
|
445
|
+
`+y:"",S!==null?`
|
|
446
|
+
`+S:""))}}o=l.stateNode,d=Vt(u)||"Component",o.render||(u.prototype&&typeof u.prototype.render=="function"?console.error("No `render` method found on the %s instance: did you accidentally return an object from the constructor?",d):console.error("No `render` method found on the %s instance: you may have forgotten to define `render`.",d)),!o.getInitialState||o.getInitialState.isReactClassApproved||o.state||console.error("getInitialState was defined on %s, a plain JavaScript class. This is only supported for classes created using React.createClass. Did you mean to define a state property instead?",d),o.getDefaultProps&&!o.getDefaultProps.isReactClassApproved&&console.error("getDefaultProps was defined on %s, a plain JavaScript class. This is only supported for classes created using React.createClass. Use a static property to define defaultProps instead.",d),o.contextType&&console.error("contextType was defined as an instance property on %s. Use a static property to define contextType instead.",d),u.childContextTypes&&!TS.has(u)&&(TS.add(u),console.error("%s uses the legacy childContextTypes API which was removed in React 19. Use React.createContext() instead. (https://react.dev/link/legacy-context)",d)),u.contextTypes&&!zS.has(u)&&(zS.add(u),console.error("%s uses the legacy contextTypes API which was removed in React 19. Use React.createContext() with static contextType instead. (https://react.dev/link/legacy-context)",d)),typeof o.componentShouldUpdate=="function"&&console.error("%s has a method called componentShouldUpdate(). Did you mean shouldComponentUpdate()? The name is phrased as a question because the function is expected to return a value.",d),u.prototype&&u.prototype.isPureReactComponent&&typeof o.shouldComponentUpdate<"u"&&console.error("%s has a method called shouldComponentUpdate(). shouldComponentUpdate should not be used when extending React.PureComponent. Please extend React.Component if shouldComponentUpdate is used.",Vt(u)||"A pure component"),typeof o.componentDidUnmount=="function"&&console.error("%s has a method called componentDidUnmount(). But there is no such lifecycle method. Did you mean componentWillUnmount()?",d),typeof o.componentDidReceiveProps=="function"&&console.error("%s has a method called componentDidReceiveProps(). But there is no such lifecycle method. If you meant to update the state in response to changing props, use componentWillReceiveProps(). If you meant to fetch data or run side-effects or mutations after React has updated the UI, use componentDidUpdate().",d),typeof o.componentWillRecieveProps=="function"&&console.error("%s has a method called componentWillRecieveProps(). Did you mean componentWillReceiveProps()?",d),typeof o.UNSAFE_componentWillRecieveProps=="function"&&console.error("%s has a method called UNSAFE_componentWillRecieveProps(). Did you mean UNSAFE_componentWillReceiveProps()?",d),y=o.props!==c,o.props!==void 0&&y&&console.error("When calling super() in `%s`, make sure to pass up the same props that your component's constructor was passed.",d),o.defaultProps&&console.error("Setting defaultProps as an instance property on %s is not supported and will be ignored. Instead, define defaultProps as a static property on %s.",d,d),typeof o.getSnapshotBeforeUpdate!="function"||typeof o.componentDidUpdate=="function"||vS.has(u)||(vS.add(u),console.error("%s: getSnapshotBeforeUpdate() should be used with componentDidUpdate(). This component defines getSnapshotBeforeUpdate() only.",Vt(u))),typeof o.getDerivedStateFromProps=="function"&&console.error("%s: getDerivedStateFromProps() is defined as an instance method and will be ignored. Instead, declare it as a static method.",d),typeof o.getDerivedStateFromError=="function"&&console.error("%s: getDerivedStateFromError() is defined as an instance method and will be ignored. Instead, declare it as a static method.",d),typeof u.getSnapshotBeforeUpdate=="function"&&console.error("%s: getSnapshotBeforeUpdate() is defined as a static method and will be ignored. Instead, declare it as an instance method.",d),(y=o.state)&&(typeof y!="object"||Ol(y))&&console.error("%s.state: must be set to an object or null",d),typeof o.getChildContext=="function"&&typeof u.childContextTypes!="object"&&console.error("%s.getChildContext(): childContextTypes must be defined in order to use getChildContext().",d),o=l.stateNode,o.props=c,o.state=l.memoizedState,o.refs={},sm(l),d=u.contextType,o.context=typeof d=="object"&&d!==null?Jt(d):cl,o.state===c&&(d=Vt(u)||"Component",SS.has(d)||(SS.add(d),console.error("%s: It is not recommended to assign props directly to state because updates to props won't be reflected in state. In most cases, it is better to use props directly.",d))),l.mode&8&&yn.recordLegacyContextWarning(l,o),yn.recordUnsafeLifecycleWarnings(l,o),o.state=l.memoizedState,d=u.getDerivedStateFromProps,typeof d=="function"&&(bm(l,u,d,c),o.state=l.memoizedState),typeof u.getDerivedStateFromProps=="function"||typeof o.getSnapshotBeforeUpdate=="function"||typeof o.UNSAFE_componentWillMount!="function"&&typeof o.componentWillMount!="function"||(d=o.state,typeof o.componentWillMount=="function"&&o.componentWillMount(),typeof o.UNSAFE_componentWillMount=="function"&&o.UNSAFE_componentWillMount(),d!==o.state&&(console.error("%s.componentWillMount(): Assigning directly to this.state is deprecated (except inside a component's constructor). Use setState instead.",I(l)||"Component"),z1.enqueueReplaceState(o,o.state,null)),Yf(l,c,o,f),hi(),o.state=l.memoizedState),typeof o.componentDidMount=="function"&&(l.flags|=4194308),(l.mode&16)!==ut&&(l.flags|=134217728),o=!0}else if(t===null){o=l.stateNode;var O=l.memoizedProps;y=ou(u,O),o.props=y;var q=o.context;S=u.contextType,d=cl,typeof S=="object"&&S!==null&&(d=Jt(S)),D=u.getDerivedStateFromProps,S=typeof D=="function"||typeof o.getSnapshotBeforeUpdate=="function",O=l.pendingProps!==O,S||typeof o.UNSAFE_componentWillReceiveProps!="function"&&typeof o.componentWillReceiveProps!="function"||(O||q!==d)&&gc(l,o,c,d),tf=!1;var j=l.memoizedState;o.state=j,Yf(l,c,o,f),hi(),q=l.memoizedState,O||j!==q||tf?(typeof D=="function"&&(bm(l,u,D,c),q=l.memoizedState),(y=tf||rp(l,u,y,c,j,q,d))?(S||typeof o.UNSAFE_componentWillMount!="function"&&typeof o.componentWillMount!="function"||(typeof o.componentWillMount=="function"&&o.componentWillMount(),typeof o.UNSAFE_componentWillMount=="function"&&o.UNSAFE_componentWillMount()),typeof o.componentDidMount=="function"&&(l.flags|=4194308),(l.mode&16)!==ut&&(l.flags|=134217728)):(typeof o.componentDidMount=="function"&&(l.flags|=4194308),(l.mode&16)!==ut&&(l.flags|=134217728),l.memoizedProps=c,l.memoizedState=q),o.props=c,o.state=q,o.context=d,o=y):(typeof o.componentDidMount=="function"&&(l.flags|=4194308),(l.mode&16)!==ut&&(l.flags|=134217728),o=!1)}else{o=l.stateNode,pm(t,l),d=l.memoizedProps,S=ou(u,d),o.props=S,D=l.pendingProps,j=o.context,q=u.contextType,y=cl,typeof q=="object"&&q!==null&&(y=Jt(q)),O=u.getDerivedStateFromProps,(q=typeof O=="function"||typeof o.getSnapshotBeforeUpdate=="function")||typeof o.UNSAFE_componentWillReceiveProps!="function"&&typeof o.componentWillReceiveProps!="function"||(d!==D||j!==y)&&gc(l,o,c,y),tf=!1,j=l.memoizedState,o.state=j,Yf(l,c,o,f),hi();var F=l.memoizedState;d!==D||j!==F||tf||t!==null&&t.dependencies!==null&&yc(t.dependencies)?(typeof O=="function"&&(bm(l,u,O,c),F=l.memoizedState),(S=tf||rp(l,u,S,c,j,F,y)||t!==null&&t.dependencies!==null&&yc(t.dependencies))?(q||typeof o.UNSAFE_componentWillUpdate!="function"&&typeof o.componentWillUpdate!="function"||(typeof o.componentWillUpdate=="function"&&o.componentWillUpdate(c,F,y),typeof o.UNSAFE_componentWillUpdate=="function"&&o.UNSAFE_componentWillUpdate(c,F,y)),typeof o.componentDidUpdate=="function"&&(l.flags|=4),typeof o.getSnapshotBeforeUpdate=="function"&&(l.flags|=1024)):(typeof o.componentDidUpdate!="function"||d===t.memoizedProps&&j===t.memoizedState||(l.flags|=4),typeof o.getSnapshotBeforeUpdate!="function"||d===t.memoizedProps&&j===t.memoizedState||(l.flags|=1024),l.memoizedProps=c,l.memoizedState=F),o.props=c,o.state=F,o.context=y,o=S):(typeof o.componentDidUpdate!="function"||d===t.memoizedProps&&j===t.memoizedState||(l.flags|=4),typeof o.getSnapshotBeforeUpdate!="function"||d===t.memoizedProps&&j===t.memoizedState||(l.flags|=1024),o=!1)}if(y=o,Gm(t,l),d=(l.flags&128)!==0,y||d){if(y=l.stateNode,gf(l),d&&typeof u.getDerivedStateFromError!="function")u=null,le=-1;else if(u=Zh(y),l.mode&8){al(!0);try{Zh(y)}finally{al(!1)}}l.flags|=1,t!==null&&d?(l.child=Qo(l,t.child,null,f),l.child=Qo(l,null,u,f)):Dl(t,l,u,f),l.memoizedState=y.state,t=l.child}else t=xe(t,l,f);return f=l.stateNode,o&&f.props!==c&&(Fs||console.error("It looks like %s is reassigning its own `this.props` while rendering. This is not supported and can lead to confusing bugs.",I(l)||"a component"),Fs=!0),t}function kf(t,l,u,c){return Lu(),l.flags|=256,Dl(t,l,u,c),l.child}function tn(t,l){l&&l.childContextTypes&&console.error(`childContextTypes cannot be defined on a function component.
|
|
447
|
+
%s.childContextTypes = ...`,l.displayName||l.name||"Component"),typeof l.getDerivedStateFromProps=="function"&&(t=Vt(l)||"Unknown",NS[t]||(console.error("%s: Function components do not support getDerivedStateFromProps.",t),NS[t]=!0)),typeof l.contextType=="object"&&l.contextType!==null&&(l=Vt(l)||"Unknown",HS[l]||(console.error("%s: Function components do not support contextType.",l),HS[l]=!0))}function to(t){return{baseLanes:t,cachePool:cm()}}function Vm(t,l,u){return t=t!==null?t.childLanes&~u:0,l&&(t|=_e),t}function xm(t,l,u){var c=l.pendingProps;r(l)&&(l.flags|=128);var f=!1,o=(l.flags&128)!==0,d;if((d=o)||(d=t!==null&&t.memoizedState===null?!1:(Vl.current&Jd)!==0),d&&(f=!0,l.flags&=-129),d=(l.flags&32)!==0,l.flags&=-33,t===null){if(Mt){if(f?cu(l):Qe(l),(t=hl)?(u=It(t,Hu),u!==null&&(d={dehydrated:u,treeContext:Sf(),retryLane:536870912,hydrationErrors:null},l.memoizedState=d,d=Cc(u),d.return=l,l.child=d,Ra=l,hl=null)):u=null,u===null)throw ii(l,t),tu(l);return Ts(u)?l.lanes=32:l.lanes=536870912,null}var y=c.children;return c=c.fallback,f?(Qe(l),f=l.mode,y=lo({mode:"hidden",children:y},f),c=Vn(c,f,u,null),y.return=l,c.return=l,y.sibling=c,l.child=y,c=l.child,c.memoizedState=to(u),c.childLanes=Vm(t,d,u),l.memoizedState=_1,wf(null,c)):(cu(l),$p(l,y))}var S=t.memoizedState;if(S!==null&&(y=S.dehydrated,y!==null)){if(o)l.flags&256?(cu(l),l.flags&=-257,l=Xm(t,l,u)):l.memoizedState!==null?(Qe(l),l.child=t.child,l.flags|=128,l=null):(Qe(l),y=c.fallback,f=l.mode,c=lo({mode:"visible",children:c.children},f),y=Vn(y,f,u,null),y.flags|=2,c.return=l,y.return=l,c.sibling=y,l.child=c,Qo(l,t.child,null,u),c=l.child,c.memoizedState=to(u),c.childLanes=Vm(t,d,u),l.memoizedState=_1,l=wf(null,c));else if(cu(l),ru(),(u&536870912)!==0&&wm(l),Ts(y))f=Zl(y),d=f.digest,y=f.message,c=f.stack,f=f.componentStack,y=Error(y||"The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering."),y.stack=c||"",y.digest=d,d=f===void 0?null:f,c={value:y,source:null,stack:d},typeof d=="string"&&Iv.set(y,c),fi(c),l=Xm(t,l,u);else if(Jl||Pt(t,l,u,!1),d=(u&t.childLanes)!==0,Jl||d){if(d=tl,d!==null&&(c=Pe(d,u),c!==0&&c!==S.retryLane))throw S.retryLane=c,fa(t,c),el(d,t,c),g1;go(y)||Pm(),l=Xm(t,l,u)}else go(y)?(l.flags|=192,l.child=t.child,l=null):(t=S.treeContext,da&&(hl=Hs(y),Ra=l,Mt=!0,$i=null,wn=!1,We=null,Hu=!1,t!==null&&dp(l,t)),l=$p(l,c.children),l.flags|=4096);return l}return f?(Qe(l),y=c.fallback,f=l.mode,S=t.child,o=S.sibling,c=un(S,{mode:"hidden",children:c.children}),c.subtreeFlags=S.subtreeFlags&65011712,o!==null?y=un(o,y):(y=Vn(y,f,u,null),y.flags|=2),y.return=l,c.return=l,c.sibling=y,l.child=c,wf(null,c),c=l.child,y=t.child.memoizedState,y===null?y=to(u):(f=y.cachePool,f!==null?(S=Na?Ul._currentValue:Ul._currentValue2,f=f.parent!==S?{parent:S,pool:S}:f):f=cm(),y={baseLanes:y.baseLanes|u,cachePool:f}),c.memoizedState=y,c.childLanes=Vm(t,d,u),l.memoizedState=_1,wf(t.child,c)):(S!==null&&(u&62914560)===u&&(u&t.lanes)!==0&&wm(l),cu(l),u=t.child,t=u.sibling,u=un(u,{mode:"visible",children:c.children}),u.return=l,u.sibling=null,t!==null&&(d=l.deletions,d===null?(l.deletions=[t],l.flags|=16):d.push(t)),l.child=u,l.memoizedState=null,u)}function $p(t,l){return l=lo({mode:"visible",children:l},t.mode),l.return=t,t.child=l}function lo(t,l){return t=it(22,t,null,l),t.lanes=0,t}function Xm(t,l,u){return Qo(l,t.child,null,u),t=$p(l,l.pendingProps.children),t.flags|=2,l.memoizedState=null,t}function Ip(t,l,u){t.lanes|=l;var c=t.alternate;c!==null&&(c.lanes|=l),Df(t.return,l,u)}function Zm(t,l,u,c,f,o){var d=t.memoizedState;d===null?t.memoizedState={isBackwards:l,rendering:null,renderingStartTime:0,last:c,tail:u,tailMode:f,treeForkCount:o}:(d.isBackwards=l,d.rendering=null,d.renderingStartTime=0,d.last=c,d.tail=u,d.tailMode=f,d.treeForkCount=o)}function wp(t,l,u){var c=l.pendingProps,f=c.revealOrder,o=c.tail,d=c.children,y=Vl.current;if((c=(y&Jd)!==0)?(y=y&Ks|Jd,l.flags|=128):y&=Ks,mt(Vl,y,l),y=f??"null",f!=="forwards"&&f!=="unstable_legacy-backwards"&&f!=="together"&&f!=="independent"&&!RS[y])if(RS[y]=!0,f==null)console.error('The default for the <SuspenseList revealOrder="..."> prop is changing. To be future compatible you must explictly specify either "independent" (the current default), "together", "forwards" or "legacy_unstable-backwards".');else if(f==="backwards")console.error('The rendering order of <SuspenseList revealOrder="backwards"> is changing. To be future compatible you must specify revealOrder="legacy_unstable-backwards" instead.');else if(typeof f=="string")switch(f.toLowerCase()){case"together":case"forwards":case"backwards":case"independent":console.error('"%s" is not a valid value for revealOrder on <SuspenseList />. Use lowercase "%s" instead.',f,f.toLowerCase());break;case"forward":case"backward":console.error('"%s" is not a valid value for revealOrder on <SuspenseList />. React uses the -s suffix in the spelling. Use "%ss" instead.',f,f.toLowerCase());break;default:console.error('"%s" is not a supported revealOrder on <SuspenseList />. Did you mean "independent", "together", "forwards" or "backwards"?',f)}else console.error('%s is not a supported value for revealOrder on <SuspenseList />. Did you mean "independent", "together", "forwards" or "backwards"?',f);y=o??"null",I0[y]||(o==null?(f==="forwards"||f==="backwards"||f==="unstable_legacy-backwards")&&(I0[y]=!0,console.error('The default for the <SuspenseList tail="..."> prop is changing. To be future compatible you must explictly specify either "visible" (the current default), "collapsed" or "hidden".')):o!=="visible"&&o!=="collapsed"&&o!=="hidden"?(I0[y]=!0,console.error('"%s" is not a supported value for tail on <SuspenseList />. Did you mean "visible", "collapsed" or "hidden"?',o)):f!=="forwards"&&f!=="backwards"&&f!=="unstable_legacy-backwards"&&(I0[y]=!0,console.error('<SuspenseList tail="%s" /> is only valid if revealOrder is "forwards" or "backwards". Did you mean to specify revealOrder="forwards"?',o)));t:if((f==="forwards"||f==="backwards"||f==="unstable_legacy-backwards")&&d!==void 0&&d!==null&&d!==!1)if(Ol(d)){for(y=0;y<d.length;y++)if(!Up(d[y],y))break t}else if(y=De(d),typeof y=="function"){if(y=y.call(d))for(var S=y.next(),D=0;!S.done;S=y.next()){if(!Up(S.value,D))break t;D++}}else console.error('A single row was passed to a <SuspenseList revealOrder="%s" />. This is not useful since it needs multiple rows. Did you mean to pass multiple children or an array?',f);if(Dl(t,l,d,u),Mt?(Vu(),d=Cd):d=0,!c&&t!==null&&(t.flags&128)!==0)t:for(t=l.child;t!==null;){if(t.tag===13)t.memoizedState!==null&&Ip(t,u,l);else if(t.tag===19)Ip(t,u,l);else if(t.child!==null){t.child.return=t,t=t.child;continue}if(t===l)break t;for(;t.sibling===null;){if(t.return===null||t.return===l)break t;t=t.return}t.sibling.return=t.return,t=t.sibling}switch(f){case"forwards":for(u=l.child,f=null;u!==null;)t=u.alternate,t!==null&&xf(t)===null&&(f=u),u=u.sibling;u=f,u===null?(f=l.child,l.child=null):(f=u.sibling,u.sibling=null),Zm(l,!1,f,u,o,d);break;case"backwards":case"unstable_legacy-backwards":for(u=null,f=l.child,l.child=null;f!==null;){if(t=f.alternate,t!==null&&xf(t)===null){l.child=f;break}t=f.sibling,f.sibling=u,u=f,f=t}Zm(l,!0,u,null,o,d);break;case"together":Zm(l,!1,null,null,void 0,d);break;default:l.memoizedState=null}return l.child}function xe(t,l,u){if(t!==null&&(l.dependencies=t.dependencies),le=-1,ef|=l.lanes,(u&l.childLanes)===0)if(t!==null){if(Pt(t,l,u,!1),(u&l.childLanes)===0)return null}else return null;if(t!==null&&l.child!==t.child)throw Error("Resuming work not yet implemented.");if(l.child!==null){for(t=l.child,u=un(t,t.pendingProps),l.child=u,u.return=l;t.sibling!==null;)t=t.sibling,u=u.sibling=un(t,t.pendingProps),u.return=l;u.sibling=null}return l.child}function zt(t,l){return(t.lanes&l)!==0?!0:(t=t.dependencies,!!(t!==null&&yc(t)))}function Uv(t,l,u){switch(l.tag){case 3:Ef(l,l.stateNode.containerInfo),lu(l,Ul,t.memoizedState.cache),Lu();break;case 27:case 5:oc(l);break;case 4:Ef(l,l.stateNode.containerInfo);break;case 10:lu(l,l.type,l.memoizedProps.value);break;case 12:(u&l.childLanes)!==0&&(l.flags|=4),l.flags|=2048;var c=l.stateNode;c.effectDuration=-0,c.passiveEffectDuration=-0;break;case 31:if(l.memoizedState!==null)return l.flags|=128,ym(l),null;break;case 13:if(c=l.memoizedState,c!==null)return c.dehydrated!==null?(cu(l),l.flags|=128,null):(u&l.child.childLanes)!==0?xm(t,l,u):(cu(l),t=xe(t,l,u),t!==null?t.sibling:null);cu(l);break;case 19:var f=(t.flags&128)!==0;if(c=(u&l.childLanes)!==0,c||(Pt(t,l,u,!1),c=(u&l.childLanes)!==0),f){if(c)return wp(t,l,u);l.flags|=128}if(f=l.memoizedState,f!==null&&(f.rendering=null,f.tail=null,f.lastEffect=null),mt(Vl,Vl.current,l),c)break;return null;case 22:return l.lanes=0,Qm(t,l,u,l.pendingProps);case 24:lu(l,Ul,t.memoizedState.cache)}return xe(t,l,u)}function Da(t,l,u){if(l._debugNeedsRemount&&t!==null){u=es(l.type,l.key,l.pendingProps,l._debugOwner||null,l.mode,l.lanes),u._debugStack=l._debugStack,u._debugTask=l._debugTask;var c=l.return;if(c===null)throw Error("Cannot swap the root fiber.");if(t.alternate=null,l.alternate=null,u.index=l.index,u.sibling=l.sibling,u.return=l.return,u.ref=l.ref,u._debugInfo=l._debugInfo,l===c.child)c.child=u;else{var f=c.child;if(f===null)throw Error("Expected parent to have a child.");for(;f.sibling!==l;)if(f=f.sibling,f===null)throw Error("Expected to find the previous sibling.");f.sibling=u}return l=c.deletions,l===null?(c.deletions=[t],c.flags|=16):l.push(t),u.flags|=2,u}if(t!==null)if(t.memoizedProps!==l.pendingProps||l.type!==t.type)Jl=!0;else{if(!zt(t,u)&&(l.flags&128)===0)return Jl=!1,Uv(t,l,u);Jl=(t.flags&131072)!==0}else Jl=!1,(c=Mt)&&(Vu(),c=(l.flags&1048576)!==0),c&&(c=l.index,Vu(),wo(l,Cd,c));switch(l.lanes=0,l.tag){case 16:t:if(c=l.pendingProps,t=Fu(l.elementType),l.type=t,typeof t=="function")as(t)?(c=ou(t,c),l.tag=1,l.type=t=Uc(t),l=Fp(null,l,t,c,u)):(l.tag=0,tn(l,t),l.type=t=Uc(t),l=Pf(null,l,t,c,u));else{if(t!=null){if(f=t.$$typeof,f===ea){l.tag=11,l.type=t=ls(t),l=Jp(null,l,t,c,u);break t}else if(f===qi){l.tag=14,l=Lp(null,l,t,c,u);break t}}throw l="",t!==null&&typeof t=="object"&&t.$$typeof===Va&&(l=" Did you wrap a component in React.lazy() more than once?"),t=Vt(t)||t,Error("Element type is invalid. Received a promise that resolves to: "+t+". Lazy element type must resolve to a class or function."+l)}return l;case 0:return Pf(t,l,l.type,l.pendingProps,u);case 1:return c=l.type,f=ou(c,l.pendingProps),Fp(t,l,c,f,u);case 3:t:{if(Ef(l,l.stateNode.containerInfo),t===null)throw Error("Should have a current fiber. This is a bug in React.");var o=l.pendingProps;f=l.memoizedState,c=f.element,pm(t,l),Yf(l,o,null,u);var d=l.memoizedState;if(o=d.cache,lu(l,Ul,o),o!==f.cache&&Pl(l,[Ul],u,!0),hi(),o=d.element,da&&f.isDehydrated)if(f={element:o,isDehydrated:!1,cache:d.cache},l.updateQueue.baseState=f,l.memoizedState=f,l.flags&256){l=kf(t,l,o,u);break t}else if(o!==c){c=Ma(Error("This root received an early update, before anything was able hydrate. Switched the entire root to client rendering."),l),fi(c),l=kf(t,l,o,u);break t}else for(da&&(hl=_s(l.stateNode.containerInfo),Ra=l,Mt=!0,$i=null,wn=!1,We=null,Hu=!0),t=aS(l,null,o,u),l.child=t;t;)t.flags=t.flags&-3|4096,t=t.sibling;else{if(Lu(),o===c){l=xe(t,l,u);break t}Dl(t,l,o,u)}l=l.child}return l;case 26:if(Kt)return Gm(t,l),t===null?(t=gu(l.type,null,l.pendingProps,null))?l.memoizedState=t:Mt||(l.stateNode=a(l.type,l.pendingProps,Oa(Fi.current),l)):l.memoizedState=gu(l.type,t.memoizedProps,l.pendingProps,t.memoizedState),null;case 27:if(p)return oc(l),t===null&&p&&Mt&&(f=Oa(Fi.current),c=La(),f=l.stateNode=v(l.type,l.pendingProps,f,c,!1),wn||(c=Ho(f,l.type,l.pendingProps,c),c!==null&&(Zu(l,0).serverProps=c)),Ra=l,Hu=!0,hl=As(l.type,f,hl)),Dl(t,l,l.pendingProps.children,u),Gm(t,l),t===null&&(l.flags|=4194304),l.child;case 5:return t===null&&Mt&&(o=La(),c=Rs(l.type,l.pendingProps,o),f=hl,(d=!f)||(d=_o(f,l.type,l.pendingProps,Hu),d!==null?(l.stateNode=d,wn||(o=Ho(d,l.type,l.pendingProps,o),o!==null&&(Zu(l,0).serverProps=o)),Ra=l,hl=gs(d),Hu=!1,o=!0):o=!1,d=!o),d&&(c&&ii(l,f),tu(l))),oc(l),f=l.type,o=l.pendingProps,d=t!==null?t.memoizedProps:null,c=o.children,Dt(f,o)?c=null:d!==null&&Dt(f,d)&&(l.flags|=32),l.memoizedState!==null&&(f=Fa(t,l,bp,null,null,u),Na?Se._currentValue=f:Se._currentValue2=f),Gm(t,l),Dl(t,l,c,u),l.child;case 6:return t===null&&Mt&&(t=l.pendingProps,u=La(),t=Ln(t,u),u=hl,(c=!u)||(c=Jv(u,l.pendingProps,Hu),c!==null?(l.stateNode=c,Ra=l,hl=null,c=!0):c=!1,c=!c),c&&(t&&ii(l,u),tu(l))),null;case 13:return xm(t,l,u);case 4:return Ef(l,l.stateNode.containerInfo),c=l.pendingProps,t===null?l.child=Qo(l,null,c,u):Dl(t,l,c,u),l.child;case 11:return Jp(t,l,l.type,l.pendingProps,u);case 7:return Dl(t,l,l.pendingProps,u),l.child;case 8:return Dl(t,l,l.pendingProps.children,u),l.child;case 12:return l.flags|=4,l.flags|=2048,c=l.stateNode,c.effectDuration=-0,c.passiveEffectDuration=-0,Dl(t,l,l.pendingProps.children,u),l.child;case 10:return c=l.type,f=l.pendingProps,o=f.value,"value"in f||US||(US=!0,console.error("The `value` prop is required for the `<Context.Provider>`. Did you misspell it or forget to pass it?")),lu(l,c,o),Dl(t,l,f.children,u),l.child;case 9:return f=l.type._context,c=l.pendingProps.children,typeof c!="function"&&console.error("A context consumer was rendered with multiple children, or a child that isn't a function. A context consumer expects a single child that is a function. If you did pass a function, make sure there is no trailing or leading whitespace around it."),Ce(l),f=Jt(f),c=f1(c,f,void 0),l.flags|=1,Dl(t,l,c,u),l.child;case 14:return Lp(t,l,l.type,l.pendingProps,u);case 15:return qt(t,l,l.type,l.pendingProps,u);case 19:return wp(t,l,u);case 31:return Rv(t,l,u);case 22:return Qm(t,l,u,l.pendingProps);case 24:return Ce(l),c=Jt(Ul),t===null?(f=nm(),f===null&&(f=tl,o=mi(),f.pooledCache=o,Wu(o),o!==null&&(f.pooledCacheLanes|=u),f=o),l.memoizedState={parent:c,cache:f},sm(l),lu(l,Ul,f)):((t.lanes&u)!==0&&(pm(t,l),Yf(l,null,null,u),hi()),f=t.memoizedState,o=l.memoizedState,f.parent!==c?(f={parent:c,cache:c},l.memoizedState=f,l.lanes===0&&(l.memoizedState=l.updateQueue.baseState=f),lu(l,Ul,c)):(c=o.cache,lu(l,Ul,c),c!==f.cache&&Pl(l,[Ul],u,!0))),Dl(t,l,l.pendingProps.children,u),l.child;case 29:throw l.pendingProps}throw Error("Unknown unit of work tag ("+l.tag+"). This error is likely caused by a bug in React. Please file an issue.")}function $a(t){t.flags|=4}function rm(t){Eu&&(t.flags|=8)}function ao(t,l){if(t!==null&&t.child===l.child)return!1;if((l.flags&16)!==0)return!0;for(t=l.child;t!==null;){if((t.flags&8218)!==0||(t.subtreeFlags&8218)!==0)return!0;t=t.sibling}return!1}function jn(t,l,u,c){if(nl)for(u=l.child;u!==null;){if(u.tag===5||u.tag===6)Yl(t,u.stateNode);else if(!(u.tag===4||p&&u.tag===27)&&u.child!==null){u.child.return=u,u=u.child;continue}if(u===l)break;for(;u.sibling===null;){if(u.return===null||u.return===l)return;u=u.return}u.sibling.return=u.return,u=u.sibling}else if(Eu)for(var f=l.child;f!==null;){if(f.tag===5){var o=f.stateNode;u&&c&&(o=Tu(o,f.type,f.memoizedProps)),Yl(t,o)}else if(f.tag===6)o=f.stateNode,u&&c&&(o=Rl(o,f.memoizedProps)),Yl(t,o);else if(f.tag!==4){if(f.tag===22&&f.memoizedState!==null)o=f.child,o!==null&&(o.return=f),jn(t,f,!0,!0);else if(f.child!==null){f.child.return=f,f=f.child;continue}}if(f===l)break;for(;f.sibling===null;){if(f.return===null||f.return===l)return;f=f.return}f.sibling.return=f.return,f=f.sibling}}function _c(t,l,u,c){var f=!1;if(Eu)for(var o=l.child;o!==null;){if(o.tag===5){var d=o.stateNode;u&&c&&(d=Tu(d,o.type,o.memoizedProps)),Es(t,d)}else if(o.tag===6)d=o.stateNode,u&&c&&(d=Rl(d,o.memoizedProps)),Es(t,d);else if(o.tag!==4){if(o.tag===22&&o.memoizedState!==null)f=o.child,f!==null&&(f.return=o),_c(t,o,!0,!0),f=!0;else if(o.child!==null){o.child.return=o,o=o.child;continue}}if(o===l)break;for(;o.sibling===null;){if(o.return===null||o.return===l)return f;o=o.return}o.sibling.return=o.return,o=o.sibling}return f}function Pp(t,l){if(Eu&&ao(t,l)){t=l.stateNode;var u=t.containerInfo,c=Ss();_c(c,l,!1,!1),t.pendingChildren=c,$a(l),ql(u,c)}}function eo(t,l,u,c){if(nl)t.memoizedProps!==c&&$a(l);else if(Eu){var f=t.stateNode,o=t.memoizedProps;if((t=ao(t,l))||o!==c){var d=La();o=U0(f,u,o,c,!t,null),o===f?l.stateNode=f:(rm(l),ul(o,u,c,d)&&$a(l),l.stateNode=o,t&&jn(o,l,!1,!1))}else l.stateNode=f}}function Km(t,l,u,c,f){if((t.mode&32)!==ut&&(u===null?Qi(l,c):Yi(l,u,c))){if(t.flags|=16777216,(f&335544128)===f||ms(l,c))if(Xn(t.stateNode,l,c))t.flags|=8192;else if(u0())t.flags|=8192;else throw jo=K0,m1}else t.flags&=-16777217}function ln(t,l){if(n(l)){if(t.flags|=16777216,!i(l))if(u0())t.flags|=8192;else throw jo=K0,m1}else t.flags&=-16777217}function Hi(t,l){l!==null&&(t.flags|=4),t.flags&16384&&(l=t.tag!==22?Rt():536870912,t.lanes|=l,Xo|=l)}function Dc(t,l){if(!Mt)switch(t.tailMode){case"hidden":l=t.tail;for(var u=null;l!==null;)l.alternate!==null&&(u=l),l=l.sibling;u===null?t.tail=null:u.sibling=null;break;case"collapsed":u=t.tail;for(var c=null;u!==null;)u.alternate!==null&&(c=u),u=u.sibling;c===null?l||t.tail===null?t.tail=null:t.tail.sibling=null:c.sibling=null}}function Zt(t){var l=t.alternate!==null&&t.alternate.child===t.child,u=0,c=0;if(l)if((t.mode&2)!==ut){for(var f=t.selfBaseDuration,o=t.child;o!==null;)u|=o.lanes|o.childLanes,c|=o.subtreeFlags&65011712,c|=o.flags&65011712,f+=o.treeBaseDuration,o=o.sibling;t.treeBaseDuration=f}else for(f=t.child;f!==null;)u|=f.lanes|f.childLanes,c|=f.subtreeFlags&65011712,c|=f.flags&65011712,f.return=t,f=f.sibling;else if((t.mode&2)!==ut){f=t.actualDuration,o=t.selfBaseDuration;for(var d=t.child;d!==null;)u|=d.lanes|d.childLanes,c|=d.subtreeFlags,c|=d.flags,f+=d.actualDuration,o+=d.treeBaseDuration,d=d.sibling;t.actualDuration=f,t.treeBaseDuration=o}else for(f=t.child;f!==null;)u|=f.lanes|f.childLanes,c|=f.subtreeFlags,c|=f.flags,f.return=t,f=f.sibling;return t.subtreeFlags|=c,t.childLanes=u,l}function kp(t,l,u){var c=l.pendingProps;switch(Po(l),l.tag){case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return Zt(l),null;case 1:return Zt(l),null;case 3:return u=l.stateNode,c=null,t!==null&&(c=t.memoizedState.cache),l.memoizedState.cache!==c&&(l.flags|=2048),Ue(Ul,l),fc(l),u.pendingContext&&(u.context=u.pendingContext,u.pendingContext=null),(t===null||t.child===null)&&(Ju(l)?(ko(),$a(l)):t===null||t.memoizedState.isDehydrated&&(l.flags&256)===0||(l.flags|=1024,_f())),Pp(t,l),Zt(l),null;case 26:if(Kt){var f=l.type,o=l.memoizedState;return t===null?($a(l),o!==null?(Zt(l),ln(l,o)):(Zt(l),Km(l,f,null,c,u))):o?o!==t.memoizedState?($a(l),Zt(l),ln(l,o)):(Zt(l),l.flags&=-16777217):(o=t.memoizedProps,nl?o!==c&&$a(l):eo(t,l,f,c),Zt(l),Km(l,f,o,c,u)),null}case 27:if(p){if(mc(l),u=Oa(Fi.current),f=l.type,t!==null&&l.stateNode!=null)nl?t.memoizedProps!==c&&$a(l):eo(t,l,f,c);else{if(!c){if(l.stateNode===null)throw Error("We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.");return Zt(l),null}t=La(),Ju(l)?Ku(l,t):(t=v(f,c,u,t,!0),l.stateNode=t,$a(l))}return Zt(l),null}case 5:if(mc(l),f=l.type,t!==null&&l.stateNode!=null)eo(t,l,f,c);else{if(!c){if(l.stateNode===null)throw Error("We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.");return Zt(l),null}if(o=La(),Ju(l))Ku(l,o),Yc(l.stateNode,f,c,o)&&(l.flags|=64);else{var d=Oa(Fi.current);d=os(f,c,d,o,l),rm(l),jn(d,l,!1,!1),l.stateNode=d,ul(d,f,c,o)&&$a(l)}}return Zt(l),Km(l,l.type,t===null?null:t.memoizedProps,l.pendingProps,u),null;case 6:if(t&&l.stateNode!=null)u=t.memoizedProps,nl?u!==c&&$a(l):Eu&&(u!==c?(t=Oa(Fi.current),u=La(),rm(l),l.stateNode=on(c,t,u,l)):l.stateNode=t.stateNode);else{if(typeof c!="string"&&l.stateNode===null)throw Error("We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.");if(t=Oa(Fi.current),u=La(),Ju(l)){if(!da)throw Error("Expected prepareToHydrateHostTextInstance() to never be called. This error is likely caused by a bug in React. Please file an issue.");if(t=l.stateNode,u=l.memoizedProps,f=!wn,c=null,o=Ra,o!==null)switch(o.tag){case 3:f&&(f=Rd(t,u,c),f!==null&&(Zu(l,0).serverProps=f));break;case 27:case 5:c=o.memoizedProps,f&&(f=Rd(t,u,c),f!==null&&(Zu(l,0).serverProps=f))}Ut(t,u,l,c)||tu(l,!0)}else rm(l),l.stateNode=on(c,t,u,l)}return Zt(l),null;case 31:if(u=l.memoizedState,t===null||t.memoizedState!==null){if(c=Ju(l),u!==null){if(t===null){if(!c)throw Error("A dehydrated suspense component was completed without a hydrated node. This is probably a bug in React.");if(!da)throw Error("Expected prepareToHydrateHostActivityInstance() to never be called. This error is likely caused by a bug in React. Please file an issue.");if(t=l.memoizedState,t=t!==null?t.dehydrated:null,!t)throw Error("Expected to have a hydrated activity instance. This error is likely caused by a bug in React. Please file an issue.");rt(t,l),Zt(l),(l.mode&2)!==ut&&u!==null&&(t=l.child,t!==null&&(l.treeBaseDuration-=t.treeBaseDuration))}else ko(),Lu(),(l.flags&128)===0&&(u=l.memoizedState=null),l.flags|=4,Zt(l),(l.mode&2)!==ut&&u!==null&&(t=l.child,t!==null&&(l.treeBaseDuration-=t.treeBaseDuration));t=!1}else u=_f(),t!==null&&t.memoizedState!==null&&(t.memoizedState.hydrationErrors=u),t=!0;if(!t)return l.flags&256?(ga(l),l):(ga(l),null);if((l.flags&128)!==0)throw Error("Client rendering an Activity suspended it again. This is a bug in React.")}return Zt(l),null;case 13:if(c=l.memoizedState,t===null||t.memoizedState!==null&&t.memoizedState.dehydrated!==null){if(f=c,o=Ju(l),f!==null&&f.dehydrated!==null){if(t===null){if(!o)throw Error("A dehydrated suspense component was completed without a hydrated node. This is probably a bug in React.");if(!da)throw Error("Expected prepareToHydrateHostSuspenseInstance() to never be called. This error is likely caused by a bug in React. Please file an issue.");if(o=l.memoizedState,o=o!==null?o.dehydrated:null,!o)throw Error("Expected to have a hydrated suspense instance. This error is likely caused by a bug in React. Please file an issue.");Pa(o,l),Zt(l),(l.mode&2)!==ut&&f!==null&&(f=l.child,f!==null&&(l.treeBaseDuration-=f.treeBaseDuration))}else ko(),Lu(),(l.flags&128)===0&&(f=l.memoizedState=null),l.flags|=4,Zt(l),(l.mode&2)!==ut&&f!==null&&(f=l.child,f!==null&&(l.treeBaseDuration-=f.treeBaseDuration));f=!1}else f=_f(),t!==null&&t.memoizedState!==null&&(t.memoizedState.hydrationErrors=f),f=!0;if(!f)return l.flags&256?(ga(l),l):(ga(l),null)}return ga(l),(l.flags&128)!==0?(l.lanes=u,(l.mode&2)!==ut&&Rf(l),l):(u=c!==null,t=t!==null&&t.memoizedState!==null,u&&(c=l.child,f=null,c.alternate!==null&&c.alternate.memoizedState!==null&&c.alternate.memoizedState.cachePool!==null&&(f=c.alternate.memoizedState.cachePool.pool),o=null,c.memoizedState!==null&&c.memoizedState.cachePool!==null&&(o=c.memoizedState.cachePool.pool),o!==f&&(c.flags|=2048)),u!==t&&u&&(l.child.flags|=8192),Hi(l,l.updateQueue),Zt(l),(l.mode&2)!==ut&&u&&(t=l.child,t!==null&&(l.treeBaseDuration-=t.treeBaseDuration)),null);case 4:return fc(l),Pp(t,l),t===null&&sl(l.stateNode.containerInfo),Zt(l),null;case 10:return Ue(l.type,l),Zt(l),null;case 19:if(ll(Vl,l),c=l.memoizedState,c===null)return Zt(l),null;if(f=(l.flags&128)!==0,o=c.rendering,o===null)if(f)Dc(c,!1);else{if(El!==Pc||t!==null&&(t.flags&128)!==0)for(t=l.child;t!==null;){if(o=xf(t),o!==null){for(l.flags|=128,Dc(c,!1),t=o.updateQueue,l.updateQueue=t,Hi(l,t),l.subtreeFlags=0,t=u,u=l.child;u!==null;)Ml(u,t),u=u.sibling;return mt(Vl,Vl.current&Ks|Jd,l),Mt&&Gu(l,c.treeForkCount),l.child}t=t.sibling}c.tail!==null&&Ct()>ty&&(l.flags|=128,f=!0,Dc(c,!1),l.lanes=4194304)}else{if(!f)if(t=xf(o),t!==null){if(l.flags|=128,f=!0,t=t.updateQueue,l.updateQueue=t,Hi(l,t),Dc(c,!0),c.tail===null&&c.tailMode==="hidden"&&!o.alternate&&!Mt)return Zt(l),null}else 2*Ct()-c.renderingStartTime>ty&&u!==536870912&&(l.flags|=128,f=!0,Dc(c,!1),l.lanes=4194304);c.isBackwards?(o.sibling=l.child,l.child=o):(t=c.last,t!==null?t.sibling=o:l.child=o,c.last=o)}return c.tail!==null?(t=c.tail,c.rendering=t,c.tail=t.sibling,c.renderingStartTime=Ct(),t.sibling=null,u=Vl.current,u=f?u&Ks|Jd:u&Ks,mt(Vl,u,l),Mt&&Gu(l,c.treeForkCount),t):(Zt(l),null);case 22:case 23:return ga(l),Vf(l),c=l.memoizedState!==null,t!==null?t.memoizedState!==null!==c&&(l.flags|=8192):c&&(l.flags|=8192),c?(u&536870912)!==0&&(l.flags&128)===0&&(Zt(l),l.subtreeFlags&6&&(l.flags|=8192)):Zt(l),u=l.updateQueue,u!==null&&Hi(l,u.retryQueue),u=null,t!==null&&t.memoizedState!==null&&t.memoizedState.cachePool!==null&&(u=t.memoizedState.cachePool.pool),c=null,l.memoizedState!==null&&l.memoizedState.cachePool!==null&&(c=l.memoizedState.cachePool.pool),c!==u&&(l.flags|=2048),t!==null&&ll(qo,l),null;case 24:return u=null,t!==null&&(u=t.memoizedState.cache),l.memoizedState.cache!==u&&(l.flags|=2048),Ue(Ul,l),Zt(l),null;case 25:return null;case 30:return null}throw Error("Unknown unit of work tag ("+l.tag+"). This error is likely caused by a bug in React. Please file an issue.")}function Qn(t,l){switch(Po(l),l.tag){case 1:return t=l.flags,t&65536?(l.flags=t&-65537|128,(l.mode&2)!==ut&&Rf(l),l):null;case 3:return Ue(Ul,l),fc(l),t=l.flags,(t&65536)!==0&&(t&128)===0?(l.flags=t&-65537|128,l):null;case 26:case 27:case 5:return mc(l),null;case 31:if(l.memoizedState!==null){if(ga(l),l.alternate===null)throw Error("Threw in newly mounted dehydrated component. This is likely a bug in React. Please file an issue.");Lu()}return t=l.flags,t&65536?(l.flags=t&-65537|128,(l.mode&2)!==ut&&Rf(l),l):null;case 13:if(ga(l),t=l.memoizedState,t!==null&&t.dehydrated!==null){if(l.alternate===null)throw Error("Threw in newly mounted dehydrated component. This is likely a bug in React. Please file an issue.");Lu()}return t=l.flags,t&65536?(l.flags=t&-65537|128,(l.mode&2)!==ut&&Rf(l),l):null;case 19:return ll(Vl,l),null;case 4:return fc(l),null;case 10:return Ue(l.type,l),null;case 22:case 23:return ga(l),Vf(l),t!==null&&ll(qo,l),t=l.flags,t&65536?(l.flags=t&-65537|128,(l.mode&2)!==ut&&Rf(l),l):null;case 24:return Ue(Ul,l),null;case 25:return null;default:return null}}function Jm(t,l){switch(Po(l),l.tag){case 3:Ue(Ul,l),fc(l);break;case 26:case 27:case 5:mc(l);break;case 4:fc(l);break;case 31:l.memoizedState!==null&&ga(l);break;case 13:ga(l);break;case 19:ll(Vl,l);break;case 10:Ue(l.type,l);break;case 22:case 23:ga(l),Vf(l),t!==null&&ll(qo,l);break;case 24:Ue(Ul,l)}}function su(t){return(t.mode&2)!==ut}function td(t,l){su(t)?(je(),Yn(l,t),Be()):Yn(l,t)}function ld(t,l,u){su(t)?(je(),$(u,t,l),Be()):$(u,t,l)}function Yn(t,l){try{var u=l.updateQueue,c=u!==null?u.lastEffect:null;if(c!==null){var f=c.next;u=f;do{if((u.tag&t)===t&&(c=void 0,(t&ae)!==L0&&(tp=!0),c=W(l,w2,u),(t&ae)!==L0&&(tp=!1),c!==void 0&&typeof c!="function")){var o=void 0;o=(u.tag&$e)!==0?"useLayoutEffect":(u.tag&ae)!==0?"useInsertionEffect":"useEffect";var d=void 0;d=c===null?" You returned null. If your effect does not require clean up, return undefined (or nothing).":typeof c.then=="function"?`
|
|
448
|
+
|
|
449
|
+
It looks like you wrote `+o+`(async () => ...) or returned a Promise. Instead, write the async function inside your effect and call it immediately:
|
|
450
|
+
|
|
451
|
+
`+o+`(() => {
|
|
452
|
+
async function fetchData() {
|
|
453
|
+
// You can await here
|
|
454
|
+
const response = await MyAPI.getData(someId);
|
|
455
|
+
// ...
|
|
456
|
+
}
|
|
457
|
+
fetchData();
|
|
458
|
+
}, [someId]); // Or [] if effect doesn't need props or state
|
|
459
|
+
|
|
460
|
+
Learn more about data fetching with Hooks: https://react.dev/link/hooks-data-fetching`:" You returned: "+c,W(l,function(y,S){console.error("%s must not return anything besides a function, which is used for clean-up.%s",y,S)},o,d)}u=u.next}while(u!==f)}}catch(y){Bt(l,l.return,y)}}function $(t,l,u){try{var c=l.updateQueue,f=c!==null?c.lastEffect:null;if(f!==null){var o=f.next;c=o;do{if((c.tag&t)===t){var d=c.inst,y=d.destroy;y!==void 0&&(d.destroy=void 0,(t&ae)!==L0&&(tp=!0),f=l,W(f,P2,f,u,y),(t&ae)!==L0&&(tp=!1))}c=c.next}while(c!==o)}}catch(S){Bt(l,l.return,S)}}function jy(t,l){su(t)?(je(),Yn(l,t),Be()):Yn(l,t)}function ad(t,l,u){su(t)?(je(),$(u,t,l),Be()):$(u,t,l)}function ed(t){var l=t.updateQueue;if(l!==null){var u=t.stateNode;t.type.defaultProps||"ref"in t.memoizedProps||Fs||(u.props!==t.memoizedProps&&console.error("Expected %s props to match memoized props before processing the update queue. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.",I(t)||"instance"),u.state!==t.memoizedState&&console.error("Expected %s state to match memoized state before processing the update queue. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.",I(t)||"instance"));try{W(t,Mp,l,u)}catch(c){Bt(t,t.return,c)}}}function uo(t,l,u){return t.getSnapshotBeforeUpdate(l,u)}function Cv(t,l){var u=l.memoizedProps,c=l.memoizedState;l=t.stateNode,t.type.defaultProps||"ref"in t.memoizedProps||Fs||(l.props!==t.memoizedProps&&console.error("Expected %s props to match memoized props before getSnapshotBeforeUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.",I(t)||"instance"),l.state!==t.memoizedState&&console.error("Expected %s state to match memoized state before getSnapshotBeforeUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.",I(t)||"instance"));try{var f=ou(t.type,u),o=W(t,uo,l,f,c);u=CS,o!==void 0||u.has(t.type)||(u.add(t.type),W(t,function(){console.error("%s.getSnapshotBeforeUpdate(): A snapshot value (or null) must be returned. You have returned undefined.",I(t))})),l.__reactInternalSnapshotBeforeUpdate=o}catch(d){Bt(t,t.return,d)}}function Qy(t,l,u){u.props=ou(t.type,t.memoizedProps),u.state=t.memoizedState,su(t)?(je(),W(t,Fh,t,l,u),Be()):W(t,Fh,t,l,u)}function Mv(t){var l=t.ref;if(l!==null){switch(t.tag){case 26:case 27:case 5:var u=Aa(t.stateNode);break;case 30:u=t.stateNode;break;default:u=t.stateNode}if(typeof l=="function")if(su(t))try{je(),t.refCleanup=l(u)}finally{Be()}else t.refCleanup=l(u);else typeof l=="string"?console.error("String refs are no longer supported."):l.hasOwnProperty("current")||console.error("Unexpected ref object provided for %s. Use either a ref-setter function or React.createRef().",I(t)),l.current=u}}function no(t,l){try{W(t,Mv,t)}catch(u){Bt(t,l,u)}}function pu(t,l){var u=t.ref,c=t.refCleanup;if(u!==null)if(typeof c=="function")try{if(su(t))try{je(),W(t,c)}finally{Be(t)}else W(t,c)}catch(f){Bt(t,l,f)}finally{t.refCleanup=null,t=t.alternate,t!=null&&(t.refCleanup=null)}else if(typeof u=="function")try{if(su(t))try{je(),W(t,u,null)}finally{Be(t)}else W(t,u,null)}catch(f){Bt(t,l,f)}else u.current=null}function Lm(t,l,u,c){var f=t.memoizedProps,o=f.id,d=f.onCommit;f=f.onRender,l=l===null?"mount":"update",G0&&(l="nested-update"),typeof f=="function"&&f(o,l,t.actualDuration,t.treeBaseDuration,t.actualStartTime,u),typeof d=="function"&&d(o,l,c,u)}function Yy(t,l,u,c){var f=t.memoizedProps;t=f.id,f=f.onPostCommit,l=l===null?"mount":"update",G0&&(l="nested-update"),typeof f=="function"&&f(t,l,c,u)}function co(t){var l=t.type,u=t.memoizedProps,c=t.stateNode;try{W(t,Lt,c,l,u,t)}catch(f){Bt(t,t.return,f)}}function Wm(t,l,u){try{W(t,bl,t.stateNode,t.type,u,l,t)}catch(c){Bt(t,t.return,c)}}function Gy(t){return t.tag===5||t.tag===3||(Kt?t.tag===26:!1)||(p?t.tag===27&&Z(t.type):!1)||t.tag===4}function ud(t){t:for(;;){for(;t.sibling===null;){if(t.return===null||Gy(t.return))return null;t=t.return}for(t.sibling.return=t.return,t=t.sibling;t.tag!==5&&t.tag!==6&&t.tag!==18;){if(p&&t.tag===27&&Z(t.type)||t.flags&2||t.child===null||t.tag===4)continue t;t.child.return=t,t=t.child}if(!(t.flags&2))return t.stateNode}}function an(t,l,u){var c=t.tag;if(c===5||c===6)t=t.stateNode,l?Vi(u,t,l):mn(u,t);else if(c!==4&&(p&&c===27&&Z(t.type)&&(u=t.stateNode,l=null),t=t.child,t!==null))for(an(t,l,u),t=t.sibling;t!==null;)an(t,l,u),t=t.sibling}function se(t,l,u){var c=t.tag;if(c===5||c===6)t=t.stateNode,l?vs(u,t,l):Nl(u,t);else if(c!==4&&(p&&c===27&&Z(t.type)&&(u=t.stateNode),t=t.child,t!==null))for(se(t,l,u),t=t.sibling;t!==null;)se(t,l,u),t=t.sibling}function sa(t){for(var l,u=t.return;u!==null;){if(Gy(u)){l=u;break}u=u.return}if(nl){if(l==null)throw Error("Expected to find a host parent. This error is likely caused by a bug in React. Please file an issue.");switch(l.tag){case 27:if(p){l=l.stateNode,u=ud(t),se(t,u,l);break}case 5:u=l.stateNode,l.flags&32&&(xi(u),l.flags&=-33),l=ud(t),se(t,l,u);break;case 3:case 4:l=l.stateNode.containerInfo,u=ud(t),an(t,u,l);break;default:throw Error("Invalid host parent fiber. This error is likely caused by a bug in React. Please file an issue.")}}}function Xe(t,l,u){t=t.containerInfo;try{W(l,zs,t,u)}catch(c){Bt(l,l.return,c)}}function la(t){var l=t.stateNode,u=t.memoizedProps;try{W(t,T,t.type,u,l,t)}catch(c){Bt(t,t.return,c)}}function Vy(t,l){return l.tag===31?(l=l.memoizedState,t.memoizedState!==null&&l===null):l.tag===13?(t=t.memoizedState,l=l.memoizedState,t!==null&&t.dehydrated!==null&&(l===null||l.dehydrated===null)):l.tag===3?t.memoizedState.isDehydrated&&(l.flags&256)===0:!1}function Ov(t,l){for(So(t.containerInfo),ya=l;ya!==null;)if(t=ya,l=t.child,(t.subtreeFlags&1028)!==0&&l!==null)l.return=t,ya=l;else for(;ya!==null;){l=t=ya;var u=l.alternate,c=l.flags;switch(l.tag){case 0:if((c&4)!==0&&(l=l.updateQueue,l=l!==null?l.events:null,l!==null))for(u=0;u<l.length;u++)c=l[u],c.ref.impl=c.nextImpl;break;case 11:case 15:break;case 1:(c&1024)!==0&&u!==null&&Cv(l,u);break;case 3:(c&1024)!==0&&nl&&Hd(l.stateNode.containerInfo);break;case 5:case 26:case 27:case 6:case 4:case 17:break;default:if((c&1024)!==0)throw Error("This unit of work tag should not have side-effects. This error is likely caused by a bug in React. Please file an issue.")}if(l=t.sibling,l!==null){l.return=t.return,ya=l;break}ya=t.return}}function Ql(t,l,u){var c=za(),f=uu(),o=be(),d=qe(),y=u.flags;switch(u.tag){case 0:case 11:case 15:Ha(t,u),y&4&&td(u,$e|Uu);break;case 1:if(Ha(t,u),y&4)if(t=u.stateNode,l===null)u.type.defaultProps||"ref"in u.memoizedProps||Fs||(t.props!==u.memoizedProps&&console.error("Expected %s props to match memoized props before componentDidMount. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.",I(u)||"instance"),t.state!==u.memoizedState&&console.error("Expected %s state to match memoized state before componentDidMount. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.",I(u)||"instance")),su(u)?(je(),W(u,o1,u,t),Be()):W(u,o1,u,t);else{var S=ou(u.type,l.memoizedProps);l=l.memoizedState,u.type.defaultProps||"ref"in u.memoizedProps||Fs||(t.props!==u.memoizedProps&&console.error("Expected %s props to match memoized props before componentDidUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.",I(u)||"instance"),t.state!==u.memoizedState&&console.error("Expected %s state to match memoized state before componentDidUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.",I(u)||"instance")),su(u)?(je(),W(u,Jh,u,t,S,l,t.__reactInternalSnapshotBeforeUpdate),Be()):W(u,Jh,u,t,S,l,t.__reactInternalSnapshotBeforeUpdate)}y&64&&ed(u),y&512&&no(u,u.return);break;case 3:if(l=eu(),Ha(t,u),y&64&&(y=u.updateQueue,y!==null)){if(S=null,u.child!==null)switch(u.child.tag){case 27:case 5:S=Aa(u.child.stateNode);break;case 1:S=u.child.stateNode}try{W(u,Mp,y,S)}catch(O){Bt(u,u.return,O)}}t.effectDuration+=Hf(l);break;case 27:p&&l===null&&y&4&&la(u);case 26:case 5:if(Ha(t,u),l===null){if(y&4)co(u);else if(y&64){t=u.type,l=u.memoizedProps,S=u.stateNode;try{W(u,Ad,S,t,l,u)}catch(O){Bt(u,u.return,O)}}}y&512&&no(u,u.return);break;case 12:if(y&4){y=eu(),Ha(t,u),t=u.stateNode,t.effectDuration+=si(y);try{W(u,Lm,u,l,Ii,t.effectDuration)}catch(O){Bt(u,u.return,O)}}else Ha(t,u);break;case 31:Ha(t,u),y&4&&xy(t,u);break;case 13:Ha(t,u),y&4&&Xy(t,u),y&64&&(t=u.memoizedState,t!==null&&(t=t.dehydrated,t!==null&&(y=S0.bind(null,u),Bl(t,y))));break;case 22:if(y=u.memoizedState!==null||wc,!y){l=l!==null&&l.memoizedState!==null||Ll,S=wc;var D=Ll;wc=y,(Ll=l)&&!D?(yu(t,u,(u.subtreeFlags&8772)!==0),(u.mode&2)!==ut&&0<=P&&0<=at&&.05<at-P&&ai(u,P,at)):Ha(t,u),wc=S,Ll=D}break;case 30:break;default:Ha(t,u)}(u.mode&2)!==ut&&0<=P&&0<=at&&((Cl||.05<Sl)&&ca(u,P,at,Sl,dl),u.alternate===null&&u.return!==null&&u.return.alternate!==null&&.05<at-P&&(Vy(u.return.alternate,u.return)||ce(u,P,at,"Mount"))),qa(c),Oe(f),dl=o,Cl=d}function du(t){var l=t.alternate;l!==null&&(t.alternate=null,du(l)),t.child=null,t.deletions=null,t.sibling=null,t.tag===5&&(l=t.stateNode,l!==null&&gd(l)),t.stateNode=null,t._debugOwner=null,t.return=null,t.dependencies=null,t.memoizedProps=null,t.memoizedState=null,t.pendingProps=null,t.stateNode=null,t.updateQueue=null}function Ze(t,l,u){for(u=u.child;u!==null;)nd(t,l,u),u=u.sibling}function nd(t,l,u){if(ra&&typeof ra.onCommitFiberUnmount=="function")try{ra.onCommitFiberUnmount(Os,u)}catch(D){Fn||(Fn=!0,console.error("React instrumentation encountered an error: %o",D))}var c=za(),f=uu(),o=be(),d=qe();switch(u.tag){case 26:if(Kt){Ll||pu(u,l),Ze(t,l,u),u.memoizedState?Cs(u.memoizedState):u.stateNode&&Ms(u.stateNode);break}case 27:if(p){Ll||pu(u,l);var y=Wl,S=Te;Z(u.type)&&(Wl=u.stateNode,Te=!1),Ze(t,l,u),W(u,b,u.stateNode),Wl=y,Te=S;break}case 5:Ll||pu(u,l);case 6:if(nl){if(y=Wl,S=Te,Wl=null,Ze(t,l,u),Wl=y,Te=S,Wl!==null)if(Te)try{W(u,hs,Wl,u.stateNode)}catch(D){Bt(u,l,D)}else try{W(u,jc,Wl,u.stateNode)}catch(D){Bt(u,l,D)}}else Ze(t,l,u);break;case 18:nl&&Wl!==null&&(Te?Zi(Wl,u.stateNode):ka(Wl,u.stateNode));break;case 4:nl?(y=Wl,S=Te,Wl=u.stateNode.containerInfo,Te=!0,Ze(t,l,u),Wl=y,Te=S):(Eu&&Xe(u.stateNode,u,Ss()),Ze(t,l,u));break;case 0:case 11:case 14:case 15:$(ae,u,l),Ll||ld(u,l,$e),Ze(t,l,u);break;case 1:Ll||(pu(u,l),y=u.stateNode,typeof y.componentWillUnmount=="function"&&Qy(u,l,y)),Ze(t,l,u);break;case 21:Ze(t,l,u);break;case 22:Ll=(y=Ll)||u.memoizedState!==null,Ze(t,l,u),Ll=y;break;default:Ze(t,l,u)}(u.mode&2)!==ut&&0<=P&&0<=at&&(Cl||.05<Sl)&&ca(u,P,at,Sl,dl),qa(c),Oe(f),dl=o,Cl=d}function xy(t,l){if(da&&l.memoizedState===null&&(t=l.alternate,t!==null&&(t=t.memoizedState,t!==null))){t=t.dehydrated;try{W(l,vl,t)}catch(u){Bt(l,l.return,u)}}}function Xy(t,l){if(da&&l.memoizedState===null&&(t=l.alternate,t!==null&&(t=t.memoizedState,t!==null&&(t=t.dehydrated,t!==null))))try{W(l,Jn,t)}catch(u){Bt(l,l.return,u)}}function bv(t){switch(t.tag){case 31:case 13:case 19:var l=t.stateNode;return l===null&&(l=t.stateNode=new MS),l;case 22:return t=t.stateNode,l=t._retryCache,l===null&&(l=t._retryCache=new MS),l;default:throw Error("Unexpected Suspense handler tag ("+t.tag+"). This is a bug in React.")}}function Ai(t,l){var u=bv(t);l.forEach(function(c){if(!u.has(c)){if(u.add(c),$n)if($s!==null&&Is!==null)Ci(Is,$s);else throw Error("Expected finished root and lanes to be set. This is a bug in React.");var f=Vv.bind(null,t,c);c.then(f,f)}})}function aa(t,l){var u=l.deletions;if(u!==null)for(var c=0;c<u.length;c++){var f=t,o=l,d=u[c],y=za();if(nl){var S=o;t:for(;S!==null;){switch(S.tag){case 27:if(p){if(Z(S.type)){Wl=S.stateNode,Te=!1;break t}break}case 5:Wl=S.stateNode,Te=!1;break t;case 3:case 4:Wl=S.stateNode.containerInfo,Te=!0;break t}S=S.return}if(Wl===null)throw Error("Expected to find a host parent. This error is likely caused by a bug in React. Please file an issue.");nd(f,o,d),Wl=null,Te=!1}else nd(f,o,d);(d.mode&2)!==ut&&0<=P&&0<=at&&.05<at-P&&ce(d,P,at,"Unmount"),qa(y),f=d,o=f.alternate,o!==null&&(o.return=null),f.return=null}if(l.subtreeFlags&13886)for(l=l.child;l!==null;)Zy(l,t),l=l.sibling}function Zy(t,l){var u=za(),c=uu(),f=be(),o=qe(),d=t.alternate,y=t.flags;switch(t.tag){case 0:case 11:case 14:case 15:aa(l,t),pa(t),y&4&&($(ae|Uu,t,t.return),Yn(ae|Uu,t),ld(t,t.return,$e|Uu));break;case 1:aa(l,t),pa(t),y&512&&(Ll||d===null||pu(d,d.return)),y&64&&wc&&(y=t.updateQueue,y!==null&&(d=y.callbacks,d!==null&&(l=y.shared.hiddenCallbacks,y.shared.hiddenCallbacks=l===null?d:l.concat(d))));break;case 26:if(Kt){var S=hn;aa(l,t),pa(t),y&512&&(Ll||d===null||pu(d,d.return)),y&4&&(y=d!==null?d.memoizedState:null,l=t.memoizedState,d===null?l===null?t.stateNode===null?t.stateNode=C0(S,t.type,t.memoizedProps,t):Ki(S,t.type,t.stateNode):t.stateNode=Us(S,l,t.memoizedProps):y!==l?(y===null?d.stateNode!==null&&Ms(d.stateNode):Cs(y),l===null?Ki(S,t.type,t.stateNode):Us(S,l,t.memoizedProps)):l===null&&t.stateNode!==null&&Wm(t,t.memoizedProps,d.memoizedProps));break}case 27:if(p){aa(l,t),pa(t),y&512&&(Ll||d===null||pu(d,d.return)),d!==null&&y&4&&Wm(t,t.memoizedProps,d.memoizedProps);break}case 5:if(aa(l,t),pa(t),y&512&&(Ll||d===null||pu(d,d.return)),nl){if(t.flags&32){l=t.stateNode;try{W(t,xi,l)}catch(wt){Bt(t,t.return,wt)}}y&4&&t.stateNode!=null&&(l=t.memoizedProps,Wm(t,l,d!==null?d.memoizedProps:l)),y&1024&&(D1=!0,t.type!=="form"&&console.error("Unexpected host component type. Expected a form. This is a bug in React."))}else Eu&&t.alternate!==null&&(t.alternate.stateNode=t.stateNode);break;case 6:if(aa(l,t),pa(t),y&4&&nl){if(t.stateNode===null)throw Error("This should have a text node initialized. This error is likely caused by a bug in React. Please file an issue.");y=t.memoizedProps,d=d!==null?d.memoizedProps:y,l=t.stateNode;try{W(t,pt,l,d,y)}catch(wt){Bt(t,t.return,wt)}}break;case 3:if(S=eu(),Kt){e();var D=hn;hn=Wn(l.containerInfo),aa(l,t),hn=D}else aa(l,t);if(pa(t),y&4){if(nl&&da&&d!==null&&d.memoizedState.isDehydrated)try{W(t,sn,l.containerInfo)}catch(wt){Bt(t,t.return,wt)}if(Eu){y=l.containerInfo,d=l.pendingChildren;try{W(t,zs,y,d)}catch(wt){Bt(t,t.return,wt)}}}D1&&(D1=!1,ry(t)),l.effectDuration+=Hf(S);break;case 4:Kt?(d=hn,hn=Wn(t.stateNode.containerInfo),aa(l,t),pa(t),hn=d):(aa(l,t),pa(t)),y&4&&Eu&&Xe(t.stateNode,t,t.stateNode.pendingChildren);break;case 12:y=eu(),aa(l,t),pa(t),t.stateNode.effectDuration+=si(y);break;case 31:aa(l,t),pa(t),y&4&&(y=t.updateQueue,y!==null&&(t.updateQueue=null,Ai(t,y)));break;case 13:aa(l,t),pa(t),t.child.flags&8192&&t.memoizedState!==null!=(d!==null&&d.memoizedState!==null)&&(fv=Ct()),y&4&&(y=t.updateQueue,y!==null&&(t.updateQueue=null,Ai(t,y)));break;case 22:S=t.memoizedState!==null;var O=d!==null&&d.memoizedState!==null,q=wc,j=Ll;if(wc=q||S,Ll=j||O,aa(l,t),Ll=j,wc=q,O&&!S&&!q&&!j&&(t.mode&2)!==ut&&0<=P&&0<=at&&.05<at-P&&ai(t,P,at),pa(t),y&8192&&(l=t.stateNode,l._visibility=S?l._visibility&~Kd:l._visibility|Kd,!S||d===null||O||wc||Ll||(Hc(t),(t.mode&2)!==ut&&0<=P&&0<=at&&.05<at-P&&ce(t,P,at,"Disconnect")),nl)){t:if(d=null,nl)for(l=t;;){if(l.tag===5||Kt&&l.tag===26){if(d===null){O=d=l;try{D=O.stateNode,S?W(O,Xi,D):W(O,To,O.stateNode,O.memoizedProps)}catch(wt){Bt(O,O.return,wt)}}}else if(l.tag===6){if(d===null){O=l;try{var F=O.stateNode;S?W(O,rv,F):W(O,R0,F,O.memoizedProps)}catch(wt){Bt(O,O.return,wt)}}}else if(l.tag===18){if(d===null){O=l;try{var ft=O.stateNode;S?W(O,Do,ft):W(O,Za,O.stateNode)}catch(wt){Bt(O,O.return,wt)}}}else if((l.tag!==22&&l.tag!==23||l.memoizedState===null||l===t)&&l.child!==null){l.child.return=l,l=l.child;continue}if(l===t)break t;for(;l.sibling===null;){if(l.return===null||l.return===t)break t;d===l&&(d=null),l=l.return}d===l&&(d=null),l.sibling.return=l.return,l=l.sibling}}y&4&&(y=t.updateQueue,y!==null&&(d=y.retryQueue,d!==null&&(y.retryQueue=null,Ai(t,d))));break;case 19:aa(l,t),pa(t),y&4&&(y=t.updateQueue,y!==null&&(t.updateQueue=null,Ai(t,y)));break;case 30:break;case 21:break;default:aa(l,t),pa(t)}(t.mode&2)!==ut&&0<=P&&0<=at&&((Cl||.05<Sl)&&ca(t,P,at,Sl,dl),t.alternate===null&&t.return!==null&&t.return.alternate!==null&&.05<at-P&&(Vy(t.return.alternate,t.return)||ce(t,P,at,"Mount"))),qa(u),Oe(c),dl=f,Cl=o}function pa(t){var l=t.flags;if(l&2){try{W(t,sa,t)}catch(u){Bt(t,t.return,u)}t.flags&=-3}l&4096&&(t.flags&=-4097)}function ry(t){if(t.subtreeFlags&1024)for(t=t.child;t!==null;){var l=t;ry(l),l.tag===5&&l.flags&1024&&zo(l.stateNode),t=t.sibling}}function Ha(t,l){if(l.subtreeFlags&8772)for(l=l.child;l!==null;)Ql(t,l.alternate,l),l=l.sibling}function Gn(t){var l=za(),u=uu(),c=be(),f=qe();switch(t.tag){case 0:case 11:case 14:case 15:ld(t,t.return,$e),Hc(t);break;case 1:pu(t,t.return);var o=t.stateNode;typeof o.componentWillUnmount=="function"&&Qy(t,t.return,o),Hc(t);break;case 27:p&&W(t,b,t.stateNode);case 26:case 5:pu(t,t.return),Hc(t);break;case 22:t.memoizedState===null&&Hc(t);break;case 30:Hc(t);break;default:Hc(t)}(t.mode&2)!==ut&&0<=P&&0<=at&&(Cl||.05<Sl)&&ca(t,P,at,Sl,dl),qa(l),Oe(u),dl=c,Cl=f}function Hc(t){for(t=t.child;t!==null;)Gn(t),t=t.sibling}function Ky(t,l,u,c){var f=za(),o=uu(),d=be(),y=qe(),S=u.flags;switch(u.tag){case 0:case 11:case 15:yu(t,u,c),td(u,$e);break;case 1:if(yu(t,u,c),l=u.stateNode,typeof l.componentDidMount=="function"&&W(u,o1,u,l),l=u.updateQueue,l!==null){t=u.stateNode;try{W(u,Cp,l,t)}catch(D){Bt(u,u.return,D)}}c&&S&64&&ed(u),no(u,u.return);break;case 27:p&&la(u);case 26:case 5:yu(t,u,c),c&&l===null&&S&4&&co(u),no(u,u.return);break;case 12:if(c&&S&4){S=eu(),yu(t,u,c),c=u.stateNode,c.effectDuration+=si(S);try{W(u,Lm,u,l,Ii,c.effectDuration)}catch(D){Bt(u,u.return,D)}}else yu(t,u,c);break;case 31:yu(t,u,c),c&&S&4&&xy(t,u);break;case 13:yu(t,u,c),c&&S&4&&Xy(t,u);break;case 22:u.memoizedState===null&&yu(t,u,c),no(u,u.return);break;case 30:break;default:yu(t,u,c)}(u.mode&2)!==ut&&0<=P&&0<=at&&(Cl||.05<Sl)&&ca(u,P,at,Sl,dl),qa(f),Oe(o),dl=d,Cl=y}function yu(t,l,u){for(u=u&&(l.subtreeFlags&8772)!==0,l=l.child;l!==null;)Ky(t,l.alternate,l,u),l=l.sibling}function Ac(t,l){var u=null;t!==null&&t.memoizedState!==null&&t.memoizedState.cachePool!==null&&(u=t.memoizedState.cachePool.pool),t=null,l.memoizedState!==null&&l.memoizedState.cachePool!==null&&(t=l.memoizedState.cachePool.pool),t!==u&&(t!=null&&Wu(t),u!=null&&vc(u))}function cd(t,l){t=null,l.alternate!==null&&(t=l.alternate.memoizedState.cache),l=l.memoizedState.cache,l!==t&&(Wu(l),t!=null&&vc(t))}function re(t,l,u,c,f){if(l.subtreeFlags&10256||l.actualDuration!==0&&(l.alternate===null||l.alternate.child!==l.child))for(l=l.child;l!==null;){var o=l.sibling;Jy(t,l,u,c,o!==null?o.actualStartTime:f),l=o}}function Jy(t,l,u,c,f){var o=za(),d=uu(),y=be(),S=qe(),D=Ji,O=l.flags;switch(l.tag){case 0:case 11:case 15:(l.mode&2)!==ut&&0<l.actualStartTime&&(l.flags&1)!==0&&Yu(l,l.actualStartTime,f,na,u),re(t,l,u,c,f),O&2048&&jy(l,ee|Uu);break;case 1:(l.mode&2)!==ut&&0<l.actualStartTime&&((l.flags&128)!==0?ei(l,l.actualStartTime,f,[]):(l.flags&1)!==0&&Yu(l,l.actualStartTime,f,na,u)),re(t,l,u,c,f);break;case 3:var q=eu(),j=na;na=l.alternate!==null&&l.alternate.memoizedState.isDehydrated&&(l.flags&256)===0,re(t,l,u,c,f),na=j,O&2048&&(u=null,l.alternate!==null&&(u=l.alternate.memoizedState.cache),c=l.memoizedState.cache,c!==u&&(Wu(c),u!=null&&vc(u))),t.passiveEffectDuration+=Hf(q);break;case 12:if(O&2048){O=eu(),re(t,l,u,c,f),t=l.stateNode,t.passiveEffectDuration+=si(O);try{W(l,Yy,l,l.alternate,Ii,t.passiveEffectDuration)}catch(F){Bt(l,l.return,F)}}else re(t,l,u,c,f);break;case 31:O=na,q=l.alternate!==null?l.alternate.memoizedState:null,j=l.memoizedState,q!==null&&j===null?(j=l.deletions,j!==null&&0<j.length&&j[0].tag===18?(na=!1,q=q.hydrationErrors,q!==null&&ei(l,l.actualStartTime,f,q)):na=!0):na=!1,re(t,l,u,c,f),na=O;break;case 13:O=na,q=l.alternate!==null?l.alternate.memoizedState:null,j=l.memoizedState,q===null||q.dehydrated===null||j!==null&&j.dehydrated!==null?na=!1:(j=l.deletions,j!==null&&0<j.length&&j[0].tag===18?(na=!1,q=q.hydrationErrors,q!==null&&ei(l,l.actualStartTime,f,q)):na=!0),re(t,l,u,c,f),na=O;break;case 23:break;case 22:j=l.stateNode,q=l.alternate,l.memoizedState!==null?j._visibility&Wc?re(t,l,u,c,f):io(t,l,u,c,f):j._visibility&Wc?re(t,l,u,c,f):(j._visibility|=Wc,vu(t,l,u,c,(l.subtreeFlags&10256)!==0||l.actualDuration!==0&&(l.alternate===null||l.alternate.child!==l.child),f),(l.mode&2)===ut||na||(t=l.actualStartTime,0<=t&&.05<f-t&&ai(l,t,f),0<=P&&0<=at&&.05<at-P&&ai(l,P,at))),O&2048&&Ac(q,l);break;case 24:re(t,l,u,c,f),O&2048&&cd(l.alternate,l);break;default:re(t,l,u,c,f)}(l.mode&2)!==ut&&((t=!na&&l.alternate===null&&l.return!==null&&l.return.alternate!==null)&&(u=l.actualStartTime,0<=u&&.05<f-u&&ce(l,u,f,"Mount")),0<=P&&0<=at&&((Cl||.05<Sl)&&ca(l,P,at,Sl,dl),t&&.05<at-P&&ce(l,P,at,"Mount"))),qa(o),Oe(d),dl=y,Cl=S,Ji=D}function vu(t,l,u,c,f,o){for(f=f&&((l.subtreeFlags&10256)!==0||l.actualDuration!==0&&(l.alternate===null||l.alternate.child!==l.child)),l=l.child;l!==null;){var d=l.sibling;Ly(t,l,u,c,f,d!==null?d.actualStartTime:o),l=d}}function Ly(t,l,u,c,f,o){var d=za(),y=uu(),S=be(),D=qe(),O=Ji;f&&(l.mode&2)!==ut&&0<l.actualStartTime&&(l.flags&1)!==0&&Yu(l,l.actualStartTime,o,na,u);var q=l.flags;switch(l.tag){case 0:case 11:case 15:vu(t,l,u,c,f,o),jy(l,ee);break;case 23:break;case 22:var j=l.stateNode;l.memoizedState!==null?j._visibility&Wc?vu(t,l,u,c,f,o):io(t,l,u,c,o):(j._visibility|=Wc,vu(t,l,u,c,f,o)),f&&q&2048&&Ac(l.alternate,l);break;case 24:vu(t,l,u,c,f,o),f&&q&2048&&cd(l.alternate,l);break;default:vu(t,l,u,c,f,o)}(l.mode&2)!==ut&&0<=P&&0<=at&&(Cl||.05<Sl)&&ca(l,P,at,Sl,dl),qa(d),Oe(y),dl=S,Cl=D,Ji=O}function io(t,l,u,c,f){if(l.subtreeFlags&10256||l.actualDuration!==0&&(l.alternate===null||l.alternate.child!==l.child))for(var o=l.child;o!==null;){l=o.sibling;var d=t,y=u,S=c,D=l!==null?l.actualStartTime:f,O=Ji;(o.mode&2)!==ut&&0<o.actualStartTime&&(o.flags&1)!==0&&Yu(o,o.actualStartTime,D,na,y);var q=o.flags;switch(o.tag){case 22:io(d,o,y,S,D),q&2048&&Ac(o.alternate,o);break;case 24:io(d,o,y,S,D),q&2048&&cd(o.alternate,o);break;default:io(d,o,y,S,D)}Ji=O,o=l}}function Nc(t,l,u){if(t.subtreeFlags&ws)for(t=t.child;t!==null;)Wy(t,l,u),t=t.sibling}function Wy(t,l,u){switch(t.tag){case 26:if(Nc(t,l,u),t.flags&ws)if(t.memoizedState!==null)m(u,hn,t.memoizedState,t.memoizedProps);else{var c=t.stateNode,f=t.type;t=t.memoizedProps,((l&335544128)===l||ms(f,t))&&ss(u,c,f,t)}break;case 5:Nc(t,l,u),t.flags&ws&&(c=t.stateNode,f=t.type,t=t.memoizedProps,((l&335544128)===l||ms(f,t))&&ss(u,c,f,t));break;case 3:case 4:Kt?(c=hn,hn=Wn(t.stateNode.containerInfo),Nc(t,l,u),hn=c):Nc(t,l,u);break;case 22:t.memoizedState===null&&(c=t.alternate,c!==null&&c.memoizedState!==null?(c=ws,ws=16777216,Nc(t,l,u),ws=c):Nc(t,l,u));break;default:Nc(t,l,u)}}function Fy(t){var l=t.alternate;if(l!==null&&(t=l.child,t!==null)){l.child=null;do l=t.sibling,t.sibling=null,t=l;while(t!==null)}}function fo(t){var l=t.deletions;if((t.flags&16)!==0){if(l!==null)for(var u=0;u<l.length;u++){var c=l[u],f=za();ya=c,wy(c,t),(c.mode&2)!==ut&&0<=P&&0<=at&&.05<at-P&&ce(c,P,at,"Unmount"),qa(f)}Fy(t)}if(t.subtreeFlags&10256)for(t=t.child;t!==null;)$y(t),t=t.sibling}function $y(t){var l=za(),u=uu(),c=be(),f=qe();switch(t.tag){case 0:case 11:case 15:fo(t),t.flags&2048&&ad(t,t.return,ee|Uu);break;case 3:var o=eu();fo(t),t.stateNode.passiveEffectDuration+=Hf(o);break;case 12:o=eu(),fo(t),t.stateNode.passiveEffectDuration+=si(o);break;case 22:o=t.stateNode,t.memoizedState!==null&&o._visibility&Wc&&(t.return===null||t.return.tag!==13)?(o._visibility&=~Wc,Fm(t),(t.mode&2)!==ut&&0<=P&&0<=at&&.05<at-P&&ce(t,P,at,"Disconnect")):fo(t);break;default:fo(t)}(t.mode&2)!==ut&&0<=P&&0<=at&&(Cl||.05<Sl)&&ca(t,P,at,Sl,dl),qa(l),Oe(u),Cl=f,dl=c}function Fm(t){var l=t.deletions;if((t.flags&16)!==0){if(l!==null)for(var u=0;u<l.length;u++){var c=l[u],f=za();ya=c,wy(c,t),(c.mode&2)!==ut&&0<=P&&0<=at&&.05<at-P&&ce(c,P,at,"Unmount"),qa(f)}Fy(t)}for(t=t.child;t!==null;)Iy(t),t=t.sibling}function Iy(t){var l=za(),u=uu(),c=be(),f=qe();switch(t.tag){case 0:case 11:case 15:ad(t,t.return,ee),Fm(t);break;case 22:var o=t.stateNode;o._visibility&Wc&&(o._visibility&=~Wc,Fm(t));break;default:Fm(t)}(t.mode&2)!==ut&&0<=P&&0<=at&&(Cl||.05<Sl)&&ca(t,P,at,Sl,dl),qa(l),Oe(u),Cl=f,dl=c}function wy(t,l){for(;ya!==null;){var u=ya,c=u,f=l,o=za(),d=uu(),y=be(),S=qe();switch(c.tag){case 0:case 11:case 15:ad(c,f,ee);break;case 23:case 22:c.memoizedState!==null&&c.memoizedState.cachePool!==null&&(f=c.memoizedState.cachePool.pool,f!=null&&Wu(f));break;case 24:vc(c.memoizedState.cache)}if((c.mode&2)!==ut&&0<=P&&0<=at&&(Cl||.05<Sl)&&ca(c,P,at,Sl,dl),qa(o),Oe(d),Cl=S,dl=y,c=u.child,c!==null)c.return=u,ya=c;else t:for(u=t;ya!==null;){if(c=ya,o=c.sibling,d=c.return,du(c),c===u){ya=null;break t}if(o!==null){o.return=d,ya=o;break t}ya=d}}}function id(t){var l=Zv(t);if(l!=null){if(typeof l.memoizedProps["data-testname"]!="string")throw Error("Invalid host root specified. Should be either a React container or a node with a testname attribute.");return l}if(t=_d(t),t===null)throw Error("Could not find React container within specified host subtree.");return t.stateNode.current}function fd(t,l){var u=t.tag;switch(l.$$typeof){case w0:if(t.type===l.value)return!0;break;case P0:t:{for(l=l.value,t=[t,0],u=0;u<t.length;){var c=t[u++],f=c.tag,o=t[u++],d=l[o];if(f!==5&&f!==26&&f!==27||!zu(c)){for(;d!=null&&fd(c,d);)o++,d=l[o];if(o===l.length){l=!0;break t}else for(c=c.child;c!==null;)t.push(c,o),c=c.sibling}}l=!1}return l;case k0:if((u===5||u===26||u===27)&&ys(t.stateNode,l.value))return!0;break;case lv:if((u===5||u===6||u===26||u===27)&&(t=Dd(t),t!==null&&0<=t.indexOf(l.value)))return!0;break;case tv:if((u===5||u===26||u===27)&&(t=t.memoizedProps["data-testname"],typeof t=="string"&&t.toLowerCase()===l.value.toLowerCase()))return!0;break;default:throw Error("Invalid selector type specified.")}return!1}function $m(t){switch(t.$$typeof){case w0:return"<"+(Vt(t.value)||"Unknown")+">";case P0:return":has("+($m(t)||"")+")";case k0:return'[role="'+t.value+'"]';case lv:return'"'+t.value+'"';case tv:return'[data-testname="'+t.value+'"]';default:throw Error("Invalid selector type specified.")}}function Py(t,l){var u=[];t=[t,0];for(var c=0;c<t.length;){var f=t[c++],o=f.tag,d=t[c++],y=l[d];if(o!==5&&o!==26&&o!==27||!zu(f)){for(;y!=null&&fd(f,y);)d++,y=l[d];if(d===l.length)u.push(f);else for(f=f.child;f!==null;)t.push(f,d),f=f.sibling}}return u}function Im(t,l){if(!Je)throw Error("Test selector API is not supported by this renderer.");t=id(t),t=Py(t,l),l=[],t=Array.from(t);for(var u=0;u<t.length;){var c=t[u++],f=c.tag;if(f===5||f===26||f===27)zu(c)||l.push(c.stateNode);else for(c=c.child;c!==null;)t.push(c),c=c.sibling}return l}function qv(){Je&&av.forEach(function(t){return t()})}function ky(){var t=typeof IS_REACT_ACT_ENVIRONMENT<"u"?IS_REACT_ACT_ENVIRONMENT:void 0;return t||U.actQueue===null||console.error("The current testing environment is not configured to support act(...)"),t}function Ia(t){if((Ot&ha)!==va&&Et!==0)return Et&-Et;var l=U.T;return l!==null?(l._updatedFibers||(l._updatedFibers=new Set),l._updatedFibers.add(t),um()):Td()}function t0(){if(_e===0)if((Et&536870912)===0||Mt){var t=M;M<<=1,(M&3932160)===0&&(M=262144),_e=t}else _e=536870912;return t=Fe.current,t!==null&&(t.flags|=32),_e}function el(t,l,u){if(tp&&console.error("useInsertionEffect must not schedule updates."),j1&&(sv=!0),(t===tl&&(Wt===Vo||Wt===xo)||t.cancelPendingCommit!==null)&&(Ni(t,0),en(t,Et,_e,!1)),He(t,u),(Ot&ha)!==va&&t===tl){if(In)switch(l.tag){case 0:case 11:case 15:t=gt&&I(gt)||"Unknown",KS.has(t)||(KS.add(t),l=I(l)||"Unknown",console.error("Cannot update a component (`%s`) while rendering a different component (`%s`). To locate the bad setState() call inside `%s`, follow the stack trace as described in https://react.dev/link/setstate-in-render",l,t,t));break;case 1:rS||(console.error("Cannot update during an existing state transition (such as within `render`). Render methods should be a pure function of props and state."),rS=!0)}}else $n&&Lo(t,l,u),z0(l),t===tl&&((Ot&ha)===va&&(uf|=u),El===lf&&en(t,Et,_e,!1)),Ta(t)}function od(t,l,u){if((Ot&(ha|Mu))!==va)throw Error("Should not already be working.");if(Et!==0&>!==null){var c=gt,f=Ct();switch(Yh){case wd:case Vo:var o=Bd;il&&((c=c._debugTask)?c.run(console.timeStamp.bind(console,"Suspended",o,f,"Components \u269B",void 0,"primary-light")):console.timeStamp("Suspended",o,f,"Components \u269B",void 0,"primary-light"));break;case xo:o=Bd,il&&((c=c._debugTask)?c.run(console.timeStamp.bind(console,"Action",o,f,"Components \u269B",void 0,"primary-light")):console.timeStamp("Action",o,f,"Components \u269B",void 0,"primary-light"));break;default:il&&(c=f-Bd,3>c||console.timeStamp("Blocked",Bd,f,"Components \u269B",void 0,5>c?"primary-light":10>c?"primary":100>c?"primary-dark":"error"))}}o=(u=!u&&(l&127)===0&&(l&t.expiredLanes)===0||ot(t,l))?Bv(t,l):sd(t,l,!0);var d=u;do{if(o===Pc){Ps&&!u&&en(t,l,0,!1),l=Wt,Bd=rl(),Yh=l;break}else{if(c=Ct(),f=t.current.alternate,d&&!a0(f)){Il(l),f=Ka,o=c,!il||o<=f||(jl?jl.run(console.timeStamp.bind(console,"Teared Render",f,o,Nt,"Scheduler \u269B","error")):console.timeStamp("Teared Render",f,o,Nt,"Scheduler \u269B","error")),Rc(l,c),o=sd(t,l,!1),d=!1;continue}if(o===Go){if(d=l,t.errorRecoveryDisabledLanes&d)var y=0;else y=t.pendingLanes&-536870913,y=y!==0?y:y&536870912?536870912:0;if(y!==0){Il(l),cc(Ka,c,l,jl),Rc(l,c),l=y;t:{c=t,o=d,d=kd;var S=da&&c.current.memoizedState.isDehydrated;if(S&&(Ni(c,y).flags|=256),y=sd(c,y,!1),y!==Go){if(N1&&!S){c.errorRecoveryDisabledLanes|=o,uf|=o,o=lf;break t}c=ue,ue=d,c!==null&&(ue===null?ue=c:ue.push.apply(ue,c))}o=y}if(d=!1,o!==Go)continue;c=Ct()}}if(o===Id){Il(l),cc(Ka,c,l,jl),Rc(l,c),Ni(t,0),en(t,l,0,!0);break}t:{switch(u=t,o){case Pc:case Id:throw Error("Root did not complete. This is a bug in React.");case lf:if((l&4194048)!==l)break;case uv:Il(l),hf(Ka,c,l,jl),Rc(l,c),f=l,(f&127)!==0?Q0=c:(f&4194048)!==0&&(Y0=c),en(u,l,_e,!af);break t;case Go:ue=null;break;case ev:case OS:break;default:throw Error("Unknown root exit status.")}if(U.actQueue!==null)pd(u,f,l,ue,ly,iv,_e,uf,Xo,o,null,null,Ka,c);else{if((l&62914560)===l&&(d=fv+BS-Ct(),10<d)){if(en(u,l,_e,!af),K(u,0,!0)!==0)break t;Sn=l,u.timeoutHandle=ve(l0.bind(null,u,f,ue,ly,iv,l,_e,uf,Xo,af,o,"Throttled",Ka,c),d);break t}l0(u,f,ue,ly,iv,l,_e,uf,Xo,af,o,null,Ka,c)}}}break}while(!0);Ta(t)}function l0(t,l,u,c,f,o,d,y,S,D,O,q,j,F){t.timeoutHandle=Su;var ft=l.subtreeFlags,wt=null;if((ft&8192||(ft&16785408)===16785408)&&(wt=Gi(),Wy(l,o,wt),ft=(o&62914560)===o?fv-Ct():(o&4194048)===o?qS-Ct():0,ft=ps(wt,ft),ft!==null)){Sn=o,t.cancelPendingCommit=ft(pd.bind(null,t,l,o,u,c,f,d,y,S,O,wt,ds(wt,t.containerInfo),j,F)),en(t,o,d,!D);return}pd(t,l,o,u,c,f,d,y,S,O,wt,q,j,F)}function a0(t){for(var l=t;;){var u=l.tag;if((u===0||u===11||u===15)&&l.flags&16384&&(u=l.updateQueue,u!==null&&(u=u.stores,u!==null)))for(var c=0;c<u.length;c++){var f=u[c],o=f.getSnapshot;f=f.value;try{if(!te(o(),f))return!1}catch{return!1}}if(u=l.child,l.subtreeFlags&16384&&u!==null)u.return=l,l=u;else{if(l===t)break;for(;l.sibling===null;){if(l.return===null||l.return===t)return!0;l=l.return}l.sibling.return=l.return,l=l.sibling}}return!0}function en(t,l,u,c){l&=~R1,l&=~uf,t.suspendedLanes|=l,t.pingedLanes&=~l,c&&(t.warmLanes|=l),c=t.expirationTimes;for(var f=l;0<f;){var o=31-Gl(f),d=1<<o;c[o]=-1,f&=~d}u!==0&&Hn(t,u,l)}function oo(){return(Ot&(ha|Mu))===va?(hc(0,!1),!1):!0}function mo(){return(Ot&(ha|Mu))!==va}function so(){if(gt!==null){if(Wt===ge)var t=gt.return;else t=gt,tm(),Zf(t),Xs=null,rd=0,t=gt;for(;t!==null;)Jm(t.alternate,t),t=t.return;gt=null}}function Rc(t,l){(t&127)!==0&&(Uo=l),(t&4194048)!==0&&(Jc=l)}function Ni(t,l){il&&(console.timeStamp("Blocking Track",.003,.003,"Blocking","Scheduler \u269B","primary-light"),console.timeStamp("Transition Track",.003,.003,"Transition","Scheduler \u269B","primary-light"),console.timeStamp("Suspense Track",.003,.003,"Suspense","Scheduler \u269B","primary-light"),console.timeStamp("Idle Track",.003,.003,"Idle","Scheduler \u269B","primary-light"));var u=Ka;if(Ka=rl(),Et!==0&&0<u){if(Il(Et),El===ev||El===lf)hf(u,Ka,l,jl);else{var c=Ka,f=jl;if(il&&!(c<=u)){var o=(l&738197653)===l?"tertiary-dark":"primary-dark",d=(l&536870912)===l?"Prewarm":(l&201326741)===l?"Interrupted Hydration":"Interrupted Render";f?f.run(console.timeStamp.bind(console,d,u,c,Nt,"Scheduler \u269B",o)):console.timeStamp(d,u,c,Nt,"Scheduler \u269B",o)}}Rc(Et,Ka)}if(u=jl,jl=null,(l&127)!==0){jl=Od,f=0<=Pn&&Pn<Uo?Uo:Pn,c=0<=Co&&Co<Uo?Uo:Co,o=0<=c?c:0<=f?f:Ka,0<=Q0&&(Il(2),sp(Q0,o,l,u)),u=f;var y=c,S=bd,D=0<Qs,O=wi===1,q=wi===2;if(f=Ka,c=Od,o=t1,d=l1,il){if(Nt="Blocking",0<u?u>f&&(u=f):u=f,0<y?y>u&&(y=u):y=u,S!==null&&u>y){var j=D?"secondary-light":"warning";c?c.run(console.timeStamp.bind(console,D?"Consecutive":"Event: "+S,y,u,Nt,"Scheduler \u269B",j)):console.timeStamp(D?"Consecutive":"Event: "+S,y,u,Nt,"Scheduler \u269B",j)}f>u&&(y=O?"error":(l&738197653)===l?"tertiary-light":"primary-light",O=q?"Promise Resolved":O?"Cascading Update":5<f-u?"Update Blocked":"Update",q=[],d!=null&&q.push(["Component name",d]),o!=null&&q.push(["Method name",o]),u={start:u,end:f,detail:{devtools:{properties:q,track:Nt,trackGroup:"Scheduler \u269B",color:y}}},c?c.run(performance.measure.bind(performance,O,u)):performance.measure(O,u))}Pn=-1.1,wi=0,l1=t1=null,Q0=-1.1,Qs=Co,Co=-1.1,Uo=rl()}if((l&4194048)!==0&&(jl=qd,f=0<=Lc&&Lc<Jc?Jc:Lc,u=0<=Au&&Au<Jc?Jc:Au,c=0<=Pi&&Pi<Jc?Jc:Pi,o=0<=c?c:0<=u?u:Ka,0<=Y0&&(Il(256),sp(Y0,o,l,jl)),q=c,y=Mo,S=0<ki,D=a1===2,o=Ka,c=qd,d=jh,O=Qh,il&&(Nt="Transition",0<u?u>o&&(u=o):u=o,0<f?f>u&&(f=u):f=u,0<q?q>f&&(q=f):q=f,f>q&&y!==null&&(j=S?"secondary-light":"warning",c?c.run(console.timeStamp.bind(console,S?"Consecutive":"Event: "+y,q,f,Nt,"Scheduler \u269B",j)):console.timeStamp(S?"Consecutive":"Event: "+y,q,f,Nt,"Scheduler \u269B",j)),u>f&&(c?c.run(console.timeStamp.bind(console,"Action",f,u,Nt,"Scheduler \u269B","primary-dark")):console.timeStamp("Action",f,u,Nt,"Scheduler \u269B","primary-dark")),o>u&&(f=D?"Promise Resolved":5<o-u?"Update Blocked":"Update",q=[],O!=null&&q.push(["Component name",O]),d!=null&&q.push(["Method name",d]),u={start:u,end:o,detail:{devtools:{properties:q,track:Nt,trackGroup:"Scheduler \u269B",color:"primary-light"}}},c?c.run(performance.measure.bind(performance,f,u)):performance.measure(f,u))),Au=Lc=-1.1,a1=0,Y0=-1.1,ki=Pi,Pi=-1.1,Jc=rl()),u=t.timeoutHandle,u!==Su&&(t.timeoutHandle=Su,zd(u)),u=t.cancelPendingCommit,u!==null&&(t.cancelPendingCommit=null,u()),Sn=0,so(),tl=t,gt=u=un(t.current,null),Et=l,Wt=ge,Ie=null,af=!1,Ps=ot(t,l),N1=!1,El=Pc,Xo=_e=R1=uf=ef=0,ue=kd=null,iv=!1,(l&8)!==0&&(l|=l&32),c=t.entangledLanes,c!==0)for(t=t.entanglements,c&=l;0<c;)f=31-Gl(c),o=1<<f,l|=t[f],c&=~o;return tc=l,yi(),t=Hh(),1e3<t-Dh&&(U.recentlyCreatedOwnerStacks=0,Dh=t),yn.discardPendingWarnings(),u}function e0(t,l){nt=null,U.H=Fd,U.getCurrentStack=null,In=!1,Zc=null,l===xs||l===r0?(l=Ap(),Wt=wd):l===m1?(l=Ap(),Wt=bS):Wt=l===g1?A1:l!==null&&typeof l=="object"&&typeof l.then=="function"?Pd:nv,Ie=l;var u=gt;u===null?(El=Id,If(t,Ma(l,t.current))):u.mode&2&&lm(u)}function u0(){var t=Fe.current;return t===null?!0:(Et&4194048)===Et?Ru===null:(Et&62914560)===Et||(Et&536870912)!==0?t===Ru:!1}function md(){var t=U.H;return U.H=Fd,t===null?Fd:t}function n0(){var t=U.A;return U.A=aE,t}function wm(t){jl===null&&(jl=t._debugTask==null?null:t._debugTask)}function Pm(){El=lf,af||(Et&4194048)!==Et&&Fe.current!==null||(Ps=!0),(ef&134217727)===0&&(uf&134217727)===0||tl===null||en(tl,Et,_e,!1)}function sd(t,l,u){var c=Ot;Ot|=ha;var f=md(),o=n0();if(tl!==t||Et!==l){if($n){var d=t.memoizedUpdaters;0<d.size&&(Ci(t,Et),d.clear()),yf(t,l)}ly=null,Ni(t,l)}l=!1,d=El;t:do try{if(Wt!==ge&>!==null){var y=gt,S=Ie;switch(Wt){case A1:so(),d=uv;break t;case wd:case Vo:case xo:case Pd:Fe.current===null&&(l=!0);var D=Wt;if(Wt=ge,Ie=null,Ri(t,y,S,D),u&&Ps){d=Pc;break t}break;default:D=Wt,Wt=ge,Ie=null,Ri(t,y,S,D)}}c0(),d=El;break}catch(O){e0(t,O)}while(!0);return l&&t.shellSuspendCounter++,tm(),Ot=c,U.H=f,U.A=o,gt===null&&(tl=null,Et=0,yi()),d}function c0(){for(;gt!==null;)i0(gt)}function Bv(t,l){var u=Ot;Ot|=ha;var c=md(),f=n0();if(tl!==t||Et!==l){if($n){var o=t.memoizedUpdaters;0<o.size&&(Ci(t,Et),o.clear()),yf(t,l)}ly=null,ty=Ct()+U1,Ni(t,l)}else Ps=ot(t,l);t:do try{if(Wt!==ge&>!==null)l:switch(l=gt,o=Ie,Wt){case nv:Wt=ge,Ie=null,Ri(t,l,o,nv);break;case Vo:case xo:if(Hp(o)){Wt=ge,Ie=null,f0(l);break}l=function(){Wt!==Vo&&Wt!==xo||tl!==t||(Wt=cv),Ta(t)},o.then(l,l);break t;case wd:Wt=cv;break t;case bS:Wt=H1;break t;case cv:Hp(o)?(Wt=ge,Ie=null,f0(l)):(Wt=ge,Ie=null,Ri(t,l,o,cv));break;case H1:var d=null;switch(gt.tag){case 26:d=gt.memoizedState;case 5:case 27:var y=gt,S=y.type,D=y.pendingProps;if(d?i(d):Xn(y.stateNode,S,D)){Wt=ge,Ie=null;var O=y.sibling;if(O!==null)gt=O;else{var q=y.return;q!==null?(gt=q,km(q)):gt=null}break l}break;default:console.error("Unexpected type of fiber triggered a suspensey commit. This is a bug in React.")}Wt=ge,Ie=null,Ri(t,l,o,H1);break;case Pd:Wt=ge,Ie=null,Ri(t,l,o,Pd);break;case A1:so(),El=uv;break t;default:throw Error("Unexpected SuspendedReason. This is a bug in React.")}U.actQueue!==null?c0():jv();break}catch(j){e0(t,j)}while(!0);return tm(),U.H=c,U.A=f,Ot=u,gt!==null?Pc:(tl=null,Et=0,yi(),El)}function jv(){for(;gt!==null&&!et();)i0(gt)}function i0(t){var l=t.alternate;(t.mode&2)!==ut?(Nf(t),l=W(t,Da,l,t,tc),lm(t)):l=W(t,Da,l,t,tc),t.memoizedProps=t.pendingProps,l===null?km(t):gt=l}function f0(t){var l=W(t,Qv,t);t.memoizedProps=t.pendingProps,l===null?km(t):gt=l}function Qv(t){var l=t.alternate,u=(t.mode&2)!==ut;switch(u&&Nf(t),t.tag){case 15:case 0:l=mu(l,t,t.pendingProps,t.type,void 0,Et);break;case 11:l=mu(l,t,t.pendingProps,t.type.render,t.ref,Et);break;case 5:Zf(t);default:Jm(l,t),t=gt=Ml(t,tc),l=Da(l,t,tc)}return u&&lm(t),l}function Ri(t,l,u,c){tm(),Zf(l),Xs=null,rd=0;var f=l.return;try{if(qy(t,f,l,u,Et)){El=Id,If(t,Ma(u,t.current)),gt=null;return}}catch(o){if(f!==null)throw gt=f,o;El=Id,If(t,Ma(u,t.current)),gt=null;return}l.flags&32768?(Mt||c===nv?t=!0:Ps||(Et&536870912)!==0?t=!1:(af=t=!0,(c===Vo||c===xo||c===wd||c===Pd)&&(c=Fe.current,c!==null&&c.tag===13&&(c.flags|=16384))),o0(l,t)):km(l)}function km(t){var l=t;do{if((l.flags&32768)!==0){o0(l,af);return}var u=l.alternate;if(t=l.return,Nf(l),u=W(l,kp,u,l,tc),(l.mode&2)!==ut&&Sp(l),u!==null){gt=u;return}if(l=l.sibling,l!==null){gt=l;return}gt=l=t}while(l!==null);El===Pc&&(El=OS)}function o0(t,l){do{var u=Qn(t.alternate,t);if(u!==null){u.flags&=32767,gt=u;return}if((t.mode&2)!==ut){Sp(t),u=t.actualDuration;for(var c=t.child;c!==null;)u+=c.actualDuration,c=c.sibling;t.actualDuration=u}if(u=t.return,u!==null&&(u.flags|=32768,u.subtreeFlags=0,u.deletions=null),!l&&(t=t.sibling,t!==null)){gt=t;return}gt=t=u}while(t!==null);El=uv,gt=null}function pd(t,l,u,c,f,o,d,y,S,D,O,q,j,F){t.cancelPendingCommit=null;do Ui();while(Fl!==cf);if(yn.flushLegacyContextWarning(),yn.flushPendingUnsafeLifecycleWarnings(),(Ot&(ha|Mu))!==va)throw Error("Should not already be working.");if(Il(u),D===Go?cc(j,F,u,jl):c!==null?pp(j,F,u,c,l!==null&&l.alternate!==null&&l.alternate.memoizedState.isDehydrated&&(l.flags&256)!==0,jl):wl(j,F,u,jl),l!==null){if(u===0&&console.error("finishedLanes should not be empty during a commit. This is a bug in React."),l===t.current)throw Error("Cannot commit the same tree as before. This error is likely caused by a bug in React. Please file an issue.");if(o=l.lanes|l.childLanes,o|=p1,Dn(t,u,o,d,y,S),t===tl&&(gt=tl=null,Et=0),ks=l,ff=t,Sn=u,O1=o,q1=f,xS=c,b1=F,XS=q,En=ov,ZS=null,l.actualDuration!==0||(l.subtreeFlags&10256)!==0||(l.flags&10256)!==0?(t.callbackNode=null,t.callbackPriority=0,E0(Ao,function(){return ji(),En===ov&&(En=M1),y0(),null})):(t.callbackNode=null,t.callbackPriority=0),Kc=null,Ii=rl(),q!==null&&Wo(F,Ii,q,jl),c=(l.flags&13878)!==0,(l.subtreeFlags&13878)!==0||c){c=U.T,U.T=null,f=xa(),Al(2),d=Ot,Ot|=Mu;try{Ov(t,l,u)}finally{Ot=d,Al(f),U.T=c}}Fl=QS,m0(),s0(),p0()}}function m0(){if(Fl===QS){Fl=cf;var t=ff,l=ks,u=Sn,c=(l.flags&13878)!==0;if((l.subtreeFlags&13878)!==0||c){c=U.T,U.T=null;var f=xa();Al(2);var o=Ot;Ot|=Mu;try{$s=u,Is=t,Af(),Zy(l,t),Is=$s=null,xn(t.containerInfo)}finally{Ot=o,Al(f),U.T=c}}t.current=l,Fl=YS}}function s0(){if(Fl===YS){Fl=cf;var t=ZS;if(t!==null){Ii=rl();var l=rc,u=Ii;!il||u<=l||(Ys?Ys.run(console.timeStamp.bind(console,t,l,u,Nt,"Scheduler \u269B","secondary-light")):console.timeStamp(t,l,u,Nt,"Scheduler \u269B","secondary-light"))}t=ff,l=ks,u=Sn;var c=(l.flags&8772)!==0;if((l.subtreeFlags&8772)!==0||c){c=U.T,U.T=null;var f=xa();Al(2);var o=Ot;Ot|=Mu;try{$s=u,Is=t,Af(),Ql(t,l.alternate,l),Is=$s=null}finally{Ot=o,Al(f),U.T=c}}t=b1,l=XS,rc=rl(),t=l===null?t:Ii,l=rc,u=En===C1,c=jl,Kc!==null?Re(t,l,Kc,!1,c):!il||l<=t||(c?c.run(console.timeStamp.bind(console,u?"Commit Interrupted View Transition":"Commit",t,l,Nt,"Scheduler \u269B",u?"error":"secondary-dark")):console.timeStamp(u?"Commit Interrupted View Transition":"Commit",t,l,Nt,"Scheduler \u269B",u?"error":"secondary-dark")),Fl=GS}}function p0(){if(Fl===VS||Fl===GS){if(Fl===VS){var t=rc;rc=rl();var l=rc,u=En===C1;!il||l<=t||(Ys?Ys.run(console.timeStamp.bind(console,u?"Interrupted View Transition":"Starting Animation",t,l,Nt,"Scheduler \u269B",u?"error":"secondary-light")):console.timeStamp(u?"Interrupted View Transition":"Starting Animation",t,l,Nt,"Scheduler \u269B",u?" error":"secondary-light")),En!==C1&&(En=jS)}Fl=cf,Yt(),t=ff;var c=ks;l=Sn,u=xS;var f=c.actualDuration!==0||(c.subtreeFlags&10256)!==0||(c.flags&10256)!==0;f?Fl=mv:(Fl=cf,ks=ff=null,d0(t,t.pendingLanes),Zo=0,ey=null);var o=t.pendingLanes;if(o===0&&(nf=null),f||vd(t),o=Ne(l),c=c.stateNode,ra&&typeof ra.onCommitFiberRoot=="function")try{var d=(c.current.flags&128)===128;switch(o){case 2:var y=bt;break;case 8:y=dn;break;case 32:y=Ao;break;case 268435456:y=_h;break;default:y=Ao}ra.onCommitFiberRoot(Os,c,y,d)}catch(q){Fn||(Fn=!0,console.error("React instrumentation encountered an error: %o",q))}if($n&&t.memoizedUpdaters.clear(),qv(),u!==null){d=U.T,y=xa(),Al(2),U.T=null;try{var S=t.onRecoverableError;for(c=0;c<u.length;c++){var D=u[c],O=Yv(D.stack);W(D.source,S,D.value,O)}}finally{U.T=d,Al(y)}}(Sn&3)!==0&&Ui(),Ta(t),o=t.pendingLanes,(l&261930)!==0&&(o&42)!==0?(V0=!0,t===B1?ay++:(ay=0,B1=t)):ay=0,f||Rc(l,rc),da&&Nd(),hc(0,!1)}}function Yv(t){return t={componentStack:t},Object.defineProperty(t,"digest",{get:function(){console.error('You are accessing "digest" from the errorInfo object passed to onRecoverableError. This property is no longer provided as part of errorInfo but can be accessed as a property of the Error instance itself.')}}),t}function d0(t,l){(t.pooledCacheLanes&=l)===0&&(l=t.pooledCache,l!=null&&(t.pooledCache=null,vc(l)))}function Ui(){return m0(),s0(),p0(),y0()}function y0(){if(Fl!==mv)return!1;var t=ff,l=O1;O1=0;var u=Ne(Sn),c=32>u?32:u;u=U.T;var f=xa();try{Al(c),U.T=null;var o=q1;q1=null,c=ff;var d=Sn;if(Fl=cf,ks=ff=null,Sn=0,(Ot&(ha|Mu))!==va)throw Error("Cannot flush passive effects while already rendering.");Il(d),j1=!0,sv=!1;var y=0;if(Kc=null,y=Ct(),En===jS){var S=rc,D=y;!il||D<=S||(Ys?Ys.run(console.timeStamp.bind(console,"Animating",S,D,Nt,"Scheduler \u269B","secondary-dark")):console.timeStamp("Animating",S,D,Nt,"Scheduler \u269B","secondary-dark"))}else{S=rc,D=y;var O=En===M1;!il||D<=S||(jl?jl.run(console.timeStamp.bind(console,O?"Waiting for Paint":"Waiting",S,D,Nt,"Scheduler \u269B","secondary-light")):console.timeStamp(O?"Waiting for Paint":"Waiting",S,D,Nt,"Scheduler \u269B","secondary-light"))}S=Ot,Ot|=Mu;var q=c.current;Af(),$y(q);var j=c.current;q=b1,Af(),Jy(c,j,d,o,q),vd(c),Ot=S;var F=Ct();if(j=y,q=jl,Kc!==null?Re(j,F,Kc,!0,q):!il||F<=j||(q?q.run(console.timeStamp.bind(console,"Remaining Effects",j,F,Nt,"Scheduler \u269B","secondary-dark")):console.timeStamp("Remaining Effects",j,F,Nt,"Scheduler \u269B","secondary-dark")),Rc(d,F),hc(0,!1),sv?c===ey?Zo++:(Zo=0,ey=c):Zo=0,sv=j1=!1,ra&&typeof ra.onPostCommitFiberRoot=="function")try{ra.onPostCommitFiberRoot(Os,c)}catch(wt){Fn||(Fn=!0,console.error("React instrumentation encountered an error: %o",wt))}var ft=c.current.stateNode;return ft.effectDuration=0,ft.passiveEffectDuration=0,!0}finally{Al(f),U.T=u,d0(t,l)}}function v0(t,l,u){l=Ma(u,l),Ep(l),l=qm(t.stateNode,l,2),t=ie(t,l,2),t!==null&&(He(t,2),Ta(t))}function Bt(t,l,u){if(tp=!1,t.tag===3)v0(t,t,u);else{for(;l!==null;){if(l.tag===3){v0(l,t,u);return}if(l.tag===1){var c=l.stateNode;if(typeof l.type.getDerivedStateFromError=="function"||typeof c.componentDidCatch=="function"&&(nf===null||!nf.has(c))){t=Ma(u,t),Ep(t),u=Bm(2),c=ie(l,u,2),c!==null&&(jm(u,c,l,t),He(c,2),Ta(c));return}}l=l.return}console.error(`Internal React error: Attempted to capture a commit phase error inside a detached tree. This indicates a bug in React. Potential causes include deleting the same fiber more than once, committing an already-finished tree, or an inconsistent return pointer.
|
|
461
|
+
|
|
462
|
+
Error message:
|
|
463
|
+
|
|
464
|
+
%s`,u)}}function dd(t,l,u){var c=t.pingCache;if(c===null){c=t.pingCache=new eE;var f=new Set;c.set(l,f)}else f=c.get(l),f===void 0&&(f=new Set,c.set(l,f));f.has(u)||(N1=!0,f.add(u),c=Gv.bind(null,t,l,u),$n&&Ci(t,u),l.then(c,c))}function Gv(t,l,u){var c=t.pingCache;c!==null&&c.delete(l),t.pingedLanes|=t.suspendedLanes&u,t.warmLanes&=~u,(u&127)!==0?0>Pn&&(Uo=Pn=rl(),Od=j0("Promise Resolved"),wi=2):(u&4194048)!==0&&0>Au&&(Jc=Au=rl(),qd=j0("Promise Resolved"),a1=2),ky()&&U.actQueue===null&&console.error(`A suspended resource finished loading inside a test, but the event was not wrapped in act(...).
|
|
465
|
+
|
|
466
|
+
When testing, code that resolves suspended data should be wrapped into act(...):
|
|
467
|
+
|
|
468
|
+
act(() => {
|
|
469
|
+
/* finish loading suspended data */
|
|
470
|
+
});
|
|
471
|
+
/* assert on the output */
|
|
472
|
+
|
|
473
|
+
This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act`),tl===t&&(Et&u)===u&&(El===lf||El===ev&&(Et&62914560)===Et&&Ct()-fv<BS?(Ot&ha)===va&&Ni(t,0):R1|=u,Xo===Et&&(Xo=0)),Ta(t)}function h0(t,l){l===0&&(l=Rt()),t=fa(t,l),t!==null&&(He(t,l),Ta(t))}function S0(t){var l=t.memoizedState,u=0;l!==null&&(u=l.retryLane),h0(t,u)}function Vv(t,l){var u=0;switch(t.tag){case 31:case 13:var c=t.stateNode,f=t.memoizedState;f!==null&&(u=f.retryLane);break;case 19:c=t.stateNode;break;case 22:c=t.stateNode._retryCache;break;default:throw Error("Pinged unknown suspense boundary type. This is probably a bug in React.")}c!==null&&c.delete(l),h0(t,u)}function yd(t,l,u){if((l.subtreeFlags&67117056)!==0)for(l=l.child;l!==null;){var c=t,f=l,o=f.type===is;o=u||o,f.tag!==22?f.flags&67108864?o&&W(f,pe,c,f):yd(c,f,o):f.memoizedState===null&&(o&&f.flags&8192?W(f,pe,c,f):f.subtreeFlags&67108864&&W(f,yd,c,f,o)),l=l.sibling}}function pe(t,l){al(!0);try{Gn(l),Iy(l),Ky(t,l.alternate,l,!1),Ly(t,l,0,null,!1,0)}finally{al(!1)}}function vd(t){var l=!0;t.current.mode&24||(l=!1),yd(t,t.current,l)}function ts(t){if((Ot&ha)===va){var l=t.tag;if(l===3||l===1||l===0||l===11||l===14||l===15){if(l=I(t)||"ReactComponent",pv!==null){if(pv.has(l))return;pv.add(l)}else pv=new Set([l]);W(t,function(){console.error("Can't perform a React state update on a component that hasn't mounted yet. This indicates that you have a side-effect in your render function that asynchronously tries to update the component. Move this work to useEffect instead.")})}}}function Ci(t,l){$n&&t.memoizedUpdaters.forEach(function(u){Lo(t,u,l)})}function E0(t,l){var u=U.actQueue;return u!==null?(u.push(l),cE):w(t,l)}function z0(t){ky()&&U.actQueue===null&&W(t,function(){console.error(`An update to %s inside a test was not wrapped in act(...).
|
|
474
|
+
|
|
475
|
+
When testing, code that causes React state updates should be wrapped into act(...):
|
|
476
|
+
|
|
477
|
+
act(() => {
|
|
478
|
+
/* fire events that update state */
|
|
479
|
+
});
|
|
480
|
+
/* assert on the output */
|
|
481
|
+
|
|
482
|
+
This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act`,I(t))})}function Uc(t){if(Ou===null)return t;var l=Ou(t);return l===void 0?t:l.current}function ls(t){if(Ou===null)return t;var l=Ou(t);return l===void 0?t!=null&&typeof t.render=="function"&&(l=Uc(t.render),t.render!==l)?(l={$$typeof:ea,render:l},t.displayName!==void 0&&(l.displayName=t.displayName),l):t:l.current}function hd(t,l){if(Ou===null)return!1;var u=t.elementType;l=l.type;var c=!1,f=typeof l=="object"&&l!==null?l.$$typeof:null;switch(t.tag){case 1:typeof l=="function"&&(c=!0);break;case 0:(typeof l=="function"||f===Va)&&(c=!0);break;case 11:(f===ea||f===Va)&&(c=!0);break;case 14:case 15:(f===qi||f===Va)&&(c=!0);break;default:return!1}return!!(c&&(t=Ou(u),t!==void 0&&t===Ou(l)))}function T0(t){Ou!==null&&typeof WeakSet=="function"&&(lp===null&&(lp=new WeakSet),lp.add(t))}function g0(t,l,u){do{var c=t,f=c.alternate,o=c.child,d=c.sibling,y=c.tag;c=c.type;var S=null;switch(y){case 0:case 15:case 1:S=c;break;case 11:S=c.render}if(Ou===null)throw Error("Expected resolveFamily to be set during hot reload.");var D=!1;if(c=!1,S!==null&&(S=Ou(S),S!==void 0&&(u.has(S)?c=!0:l.has(S)&&(y===1?c=!0:D=!0))),lp!==null&&(lp.has(t)||f!==null&&lp.has(f))&&(c=!0),c&&(t._debugNeedsRemount=!0),(c||D)&&(f=fa(t,2),f!==null&&el(f,t,2)),o===null||c||g0(o,l,u),d===null)break;t=d}while(!0)}function xv(t,l,u,c){this.tag=t,this.key=u,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.refCleanup=this.ref=null,this.pendingProps=l,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=c,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null,this.actualDuration=-0,this.actualStartTime=-1.1,this.treeBaseDuration=this.selfBaseDuration=-0,this._debugTask=this._debugStack=this._debugOwner=this._debugInfo=null,this._debugNeedsRemount=!1,this._debugHookTypes=null,JS||typeof Object.preventExtensions!="function"||Object.preventExtensions(this)}function as(t){return t=t.prototype,!(!t||!t.isReactComponent)}function un(t,l){var u=t.alternate;switch(u===null?(u=it(t.tag,l,t.key,t.mode),u.elementType=t.elementType,u.type=t.type,u.stateNode=t.stateNode,u._debugOwner=t._debugOwner,u._debugStack=t._debugStack,u._debugTask=t._debugTask,u._debugHookTypes=t._debugHookTypes,u.alternate=t,t.alternate=u):(u.pendingProps=l,u.type=t.type,u.flags=0,u.subtreeFlags=0,u.deletions=null,u.actualDuration=-0,u.actualStartTime=-1.1),u.flags=t.flags&65011712,u.childLanes=t.childLanes,u.lanes=t.lanes,u.child=t.child,u.memoizedProps=t.memoizedProps,u.memoizedState=t.memoizedState,u.updateQueue=t.updateQueue,l=t.dependencies,u.dependencies=l===null?null:{lanes:l.lanes,firstContext:l.firstContext,_debugThenableState:l._debugThenableState},u.sibling=t.sibling,u.index=t.index,u.ref=t.ref,u.refCleanup=t.refCleanup,u.selfBaseDuration=t.selfBaseDuration,u.treeBaseDuration=t.treeBaseDuration,u._debugInfo=t._debugInfo,u._debugNeedsRemount=t._debugNeedsRemount,u.tag){case 0:case 15:u.type=Uc(t.type);break;case 1:u.type=Uc(t.type);break;case 11:u.type=ls(t.type)}return u}function Ml(t,l){t.flags&=65011714;var u=t.alternate;return u===null?(t.childLanes=0,t.lanes=l,t.child=null,t.subtreeFlags=0,t.memoizedProps=null,t.memoizedState=null,t.updateQueue=null,t.dependencies=null,t.stateNode=null,t.selfBaseDuration=0,t.treeBaseDuration=0):(t.childLanes=u.childLanes,t.lanes=u.lanes,t.child=u.child,t.subtreeFlags=0,t.deletions=null,t.memoizedProps=u.memoizedProps,t.memoizedState=u.memoizedState,t.updateQueue=u.updateQueue,t.type=u.type,l=u.dependencies,t.dependencies=l===null?null:{lanes:l.lanes,firstContext:l.firstContext,_debugThenableState:l._debugThenableState},t.selfBaseDuration=u.selfBaseDuration,t.treeBaseDuration=u.treeBaseDuration),t}function es(t,l,u,c,f,o){var d=0,y=t;if(typeof t=="function")as(t)&&(d=1),y=Uc(y);else if(typeof t=="string")Kt&&p?(d=La(),d=pn(t,u,d)?26:Y(t)?27:5):Kt?(d=La(),d=pn(t,u,d)?26:5):d=p&&Y(t)?27:5;else t:switch(t){case ho:return l=it(31,u,l,f),l.elementType=ho,l.lanes=o,l;case bi:return Vn(u.children,f,o,l);case is:d=8,f|=24;break;case Sd:return t=u,c=f,typeof t.id!="string"&&console.error('Profiler must specify an "id" of type `string` as a prop. Received the type `%s` instead.',typeof t.id),l=it(12,t,l,c|2),l.elementType=Sd,l.lanes=o,l.stateNode={effectDuration:0,passiveEffectDuration:0},l;case fs:return l=it(13,u,l,f),l.elementType=fs,l.lanes=o,l;case Ed:return l=it(19,u,l,f),l.elementType=Ed,l.lanes=o,l;default:if(typeof t=="object"&&t!==null)switch(t.$$typeof){case Hl:d=10;break t;case Oc:d=9;break t;case ea:d=11,y=ls(y);break t;case qi:d=14;break t;case Va:d=16,y=null;break t}y="",(t===void 0||typeof t=="object"&&t!==null&&Object.keys(t).length===0)&&(y+=" You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports."),t===null?u="null":Ol(t)?u="array":t!==void 0&&t.$$typeof===nn?(u="<"+(Vt(t.type)||"Unknown")+" />",y=" Did you accidentally export a JSX literal instead of a component?"):u=typeof t,d=c?typeof c.tag=="number"?I(c):typeof c.name=="string"?c.name:null:null,d&&(y+=`
|
|
483
|
+
|
|
484
|
+
Check the render method of \``+d+"`."),d=29,u=Error("Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: "+(u+"."+y)),y=null}return l=it(d,u,l,f),l.elementType=t,l.type=y,l.lanes=o,l._debugOwner=c,l}function us(t,l,u){return l=es(t.type,t.key,t.props,t._owner,l,u),l._debugOwner=t._owner,l._debugStack=t._debugStack,l._debugTask=t._debugTask,l}function Vn(t,l,u,c){return t=it(7,t,c,l),t.lanes=u,t}function ns(t,l,u){return t=it(6,t,null,l),t.lanes=u,t}function Cc(t){var l=it(18,null,null,ut);return l.stateNode=t,l}function po(t,l,u){return l=it(4,t.children!==null?t.children:[],t.key,l),l.lanes=u,l.stateNode={containerInfo:t.containerInfo,pendingChildren:null,implementation:t.implementation},l}function Mi(t,l,u,c,f,o,d,y,S){for(this.tag=1,this.containerInfo=t,this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=Su,this.callbackNode=this.next=this.pendingContext=this.context=this.cancelPendingCommit=null,this.callbackPriority=0,this.expirationTimes=xt(-1),this.entangledLanes=this.shellSuspendCounter=this.errorRecoveryDisabledLanes=this.expiredLanes=this.warmLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=xt(0),this.hiddenUpdates=xt(null),this.identifierPrefix=c,this.onUncaughtError=f,this.onCaughtError=o,this.onRecoverableError=d,this.pooledCache=null,this.pooledCacheLanes=0,this.formState=S,this.incompleteTransitions=new Map,this.passiveEffectDuration=this.effectDuration=-0,this.memoizedUpdaters=new Set,t=this.pendingUpdatersLaneMap=[],l=0;31>l;l++)t.push(new Set);this._debugRootType=u?"hydrateRoot()":"createRoot()"}function Mc(t,l,u,c,f,o,d,y,S,D,O,q){return t=new Mi(t,l,u,d,S,D,O,q,y),l=1,o===!0&&(l|=24),o=it(3,null,null,l|2),t.current=o,o.stateNode=t,l=mi(),Wu(l),t.pooledCache=l,Wu(l),o.memoizedState={element:c,isDehydrated:u,cache:l},sm(o),t}function Ya(t){return""+t}function _0(t){return t?(t=cl,t):cl}function D0(t,l,u,c){return yo(l.current,2,t,l,u,c),2}function yo(t,l,u,c,f,o){if(ra&&typeof ra.onScheduleFiberRoot=="function")try{ra.onScheduleFiberRoot(Os,c,u)}catch(d){Fn||(Fn=!0,console.error("React instrumentation encountered an error: %o",d))}f=_0(f),c.context===null?c.context=f:c.pendingContext=f,In&&Zc!==null&&!WS&&(WS=!0,console.error(`Render methods should be a pure function of props and state; triggering nested component updates from render is not allowed. If necessary, trigger nested updates in componentDidUpdate.
|
|
485
|
+
|
|
486
|
+
Check the render method of %s.`,I(Zc)||"Unknown")),c=$u(l),c.payload={element:u},o=o===void 0?null:o,o!==null&&(typeof o!="function"&&console.error("Expected the last optional `callback` argument to be a function. Instead received: %s.",o),c.callback=o),u=ie(t,c,l),u!==null&&(Me(l,"root.render()",null),el(u,t,l),vi(u,t,l))}function vo(t,l){if(t=t.memoizedState,t!==null&&t.dehydrated!==null){var u=t.retryLane;t.retryLane=u!==0&&u<l?u:l}}function Oi(t,l){vo(t,l),(t=t.alternate)&&vo(t,l)}function cs(){return Zc}var Tt={},Xv=G1(),Ga=F1(),Xt=Object.assign,H0=Symbol.for("react.element"),nn=Symbol.for("react.transitional.element"),cn=Symbol.for("react.portal"),bi=Symbol.for("react.fragment"),is=Symbol.for("react.strict_mode"),Sd=Symbol.for("react.profiler"),Oc=Symbol.for("react.consumer"),Hl=Symbol.for("react.context"),ea=Symbol.for("react.forward_ref"),fs=Symbol.for("react.suspense"),Ed=Symbol.for("react.suspense_list"),qi=Symbol.for("react.memo"),Va=Symbol.for("react.lazy");Symbol.for("react.scope");var ho=Symbol.for("react.activity");Symbol.for("react.legacy_hidden"),Symbol.for("react.tracing_marker");var A0=Symbol.for("react.memo_cache_sentinel");Symbol.for("react.view_transition");var bc=Symbol.iterator,Bi=Symbol.for("react.client.reference"),Ol=Array.isArray,U=Xv.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,de=s.rendererVersion,ye=s.rendererPackageName,fn=s.extraDevToolsConfig,Aa=s.getPublicInstance,hu=s.getRootHostContext,ua=s.getChildHostContext,So=s.prepareForCommit,xn=s.resetAfterCommit,os=s.createInstance;s.cloneMutableInstance;var Yl=s.appendInitialChild,ul=s.finalizeInitialChildren,Dt=s.shouldSetTextContent,on=s.createTextInstance;s.cloneMutableTextInstance;var ve=s.scheduleTimeout,zd=s.cancelTimeout,Su=s.noTimeout,Na=s.isPrimaryRenderer;s.warnsIfNotActing;var nl=s.supportsMutation,Eu=s.supportsPersistence,da=s.supportsHydration,Zv=s.getInstanceFromNode;s.beforeActiveInstanceBlur;var sl=s.preparePortalMount;s.prepareScopeUpdate,s.getInstanceFromScope;var Al=s.setCurrentUpdatePriority,xa=s.getCurrentUpdatePriority,Td=s.resolveUpdatePriority,ji=s.trackSchedulerEvent,qc=s.resolveEventType,Ke=s.resolveEventTimeStamp,Eo=s.shouldAttemptEagerTransition,gd=s.detachDeletedInstance;s.requestPostPaintCallback;var Qi=s.maySuspendCommit,Yi=s.maySuspendCommitOnUpdate,ms=s.maySuspendCommitInSyncRender,Xn=s.preloadInstance,Gi=s.startSuspendingCommit,ss=s.suspendInstance;s.suspendOnActiveViewTransition;var ps=s.waitForCommitToBeReady,ds=s.getSuspendedCommitReason,he=s.NotPendingTransition,Se=s.HostTransitionContext,zo=s.resetFormInstance,Bc=s.bindToConsole,N0=s.supportsMicrotasks,Ee=s.scheduleMicrotask,Je=s.supportsTestSelectors,_d=s.findFiberRoot,Zn=s.getBoundingRect,Dd=s.getTextContent,zu=s.isHiddenSubtree,ys=s.matchAccessibilityRole,wa=s.setFocusIfFocusable,ze=s.setupIntersectionObserver,Nl=s.appendChild,mn=s.appendChildToContainer,pt=s.commitTextUpdate,Lt=s.commitMount,bl=s.commitUpdate,vs=s.insertBefore,Vi=s.insertInContainerBefore,jc=s.removeChild,hs=s.removeChildFromContainer,xi=s.resetTextContent,Xi=s.hideInstance,rv=s.hideTextInstance,To=s.unhideInstance,R0=s.unhideTextInstance;s.cancelViewTransitionName,s.cancelRootViewTransitionName,s.restoreRootViewTransitionName,s.cloneRootViewTransitionContainer,s.removeRootViewTransitionClone,s.measureClonedInstance,s.hasInstanceChanged,s.hasInstanceAffectedParent,s.startViewTransition,s.startGestureTransition,s.stopViewTransition,s.getCurrentGestureOffset,s.createViewTransitionInstance;var Hd=s.clearContainer;s.createFragmentInstance,s.updateFragmentInstanceFiber,s.commitNewChildToFragmentInstance,s.deleteChildFromFragmentInstance;var U0=s.cloneInstance,Ss=s.createContainerChildSet,Es=s.appendChildToContainerChildSet,ql=s.finalizeContainerChildren,zs=s.replaceContainerChildren,Tu=s.cloneHiddenInstance,Rl=s.cloneHiddenTextInstance,go=s.isSuspenseInstancePending,Ts=s.isSuspenseInstanceFallback,Zl=s.getSuspenseInstanceFallbackErrorDetails,Bl=s.registerSuspenseInstanceRetry,Xa=s.canHydrateFormStateMarker,Le=s.isFormStateMarkerMatching,rn=s.getNextHydratableSibling,Kv=s.getNextHydratableSiblingAfterSingleton,gs=s.getFirstHydratableChild,_s=s.getFirstHydratableChildWithinContainer,Ds=s.getFirstHydratableChildWithinActivityInstance,Hs=s.getFirstHydratableChildWithinSuspenseInstance,As=s.getFirstHydratableChildWithinSingleton,_o=s.canHydrateInstance,Jv=s.canHydrateTextInstance,Ht=s.canHydrateActivityInstance,It=s.canHydrateSuspenseInstance,At=s.hydrateInstance,Ut=s.hydrateTextInstance,rt=s.hydrateActivityInstance,Pa=s.hydrateSuspenseInstance,Kn=s.getNextHydratableInstanceAfterActivityInstance,Qc=s.getNextHydratableInstanceAfterSuspenseInstance,Ad=s.commitHydratedInstance,sn=s.commitHydratedContainer,vl=s.commitHydratedActivityInstance,Jn=s.commitHydratedSuspenseInstance,Yc=s.finalizeHydratedChildren,Nd=s.flushHydrationEvents;s.clearActivityBoundary;var ka=s.clearSuspenseBoundary;s.clearActivityBoundaryFromContainer;var Zi=s.clearSuspenseBoundaryFromContainer,Do=s.hideDehydratedBoundary,Za=s.unhideDehydratedBoundary,Ns=s.shouldDeleteUnhydratedTailInstances,Ho=s.diffHydratedPropsForDevWarnings,Rd=s.diffHydratedTextForDevWarnings,ri=s.describeHydratableInstanceForDevWarnings,Rs=s.validateHydratableInstance,Ln=s.validateHydratableTextInstance,Kt=s.supportsResources,pn=s.isHostHoistableType,Wn=s.getHoistableRoot,gu=s.getResource,Us=s.acquireResource,Cs=s.releaseResource,C0=s.hydrateHoistable,Ki=s.mountHoistable,Ms=s.unmountHoistable,a=s.createHoistableInstance,e=s.prepareToCommitHoistables,n=s.mayResourceSuspendCommit,i=s.preloadResource,m=s.suspendResource,p=s.supportsSingletons,v=s.resolveSingletonInstance,T=s.acquireSingletonInstance,b=s.releaseSingletonInstance,Y=s.isHostSingletonType,Z=s.isSingletonScope,X=[],J=[],lt=-1,cl={};Object.freeze(cl);var Gl=Math.clz32?Math.clz32:Jo,Gc=Math.log,R=Math.LN2,A=256,M=262144,x=4194304,w=Ga.unstable_scheduleCallback,pl=Ga.unstable_cancelCallback,et=Ga.unstable_shouldYield,Yt=Ga.unstable_requestPaint,Ct=Ga.unstable_now,bt=Ga.unstable_ImmediatePriority,dn=Ga.unstable_UserBlockingPriority,Ao=Ga.unstable_NormalPriority,_h=Ga.unstable_IdlePriority,X2=Ga.log,Z2=Ga.unstable_setDisableYieldValue,Os=null,ra=null,Fn=!1,$n=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u",Dh=0;if(typeof performance=="object"&&typeof performance.now=="function")var r2=performance,Hh=function(){return r2.now()};else{var K2=Date;Hh=function(){return K2.now()}}var te=typeof Object.is=="function"?Object.is:li,Ah=typeof reportError=="function"?reportError:function(t){if(typeof window=="object"&&typeof window.ErrorEvent=="function"){var l=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:typeof t=="object"&&t!==null&&typeof t.message=="string"?String(t.message):String(t),error:t});if(!window.dispatchEvent(l))return}else if(typeof process=="object"&&typeof process.emit=="function"){process.emit("uncaughtException",t);return}console.error(t)},Lv=Object.prototype.hasOwnProperty,il=typeof console<"u"&&typeof console.timeStamp=="function"&&typeof performance<"u"&&typeof performance.measure=="function",Nt="Blocking",Ji=!1,Vc={color:"primary",properties:null,tooltipText:"",track:"Components \u269B"},Li={start:-0,end:-0,detail:{devtools:Vc}},J2=["Changed Props",""],L2=["Changed Props","This component received deeply equal props. It might benefit from useMemo or the React Compiler in its owner."],Ud=0,Nh,Rh,Uh,Ch,Mh,Oh,bh;ic.__reactDisabledLog=!0;var Wv,qh,Fv=!1,$v=new(typeof WeakMap=="function"?WeakMap:Map),Iv=new WeakMap,bs=[],qs=0,M0=null,Cd=0,_u=[],Du=0,No=null,xc=1,Xc="",Wi=$l(null),Md=$l(null),Fi=$l(null),O0=$l(null),Bh=/["'&<>\n\t]|^\s|\s$/,Zc=null,In=!1,Ra=null,hl=null,Mt=!1,wn=!1,We=null,$i=null,Hu=!1,wv=Error("Hydration Mismatch Exception: This is not a real error, and should not leak into userspace. If you're seeing this, it's likely a bug in React."),ut=0,b0=$l(null),Pv=$l(null),kv=$l(null),q0={},B0=null,Bs=null,js=!1,W2=typeof AbortController<"u"?AbortController:function(){var t=[],l=this.signal={aborted:!1,addEventListener:function(u,c){t.push(c)}};this.abort=function(){l.aborted=!0,t.forEach(function(u){return u()})}},F2=Ga.unstable_scheduleCallback,$2=Ga.unstable_NormalPriority,Ul={$$typeof:Hl,Consumer:null,Provider:null,_currentValue:null,_currentValue2:null,_threadCount:0,_currentRenderer:null,_currentRenderer2:null},rl=Ga.unstable_now,j0=console.createTask?console.createTask:function(){return null},Ka=-0,Ii=-0,rc=-0,Kc=null,le=-1.1,Ro=-0,Sl=-0,P=-1.1,at=-1.1,dl=null,Cl=!1,Uo=-0,Pn=-1.1,Od=null,wi=0,t1=null,l1=null,Co=-1.1,bd=null,Qs=-1.1,Q0=-1.1,Jc=-0,Lc=-1.1,Au=-1.1,a1=0,qd=null,jh=null,Qh=null,Pi=-1.1,Mo=null,ki=-1.1,Y0=-1.1,Ys=null,Yh=0,Bd=-1.1,G0=!1,V0=!1,x0=null,Gs=null,e1=!1,u1=!1,X0=!1,n1=!1,Oo=0,c1={},jd=null,i1=0,bo=0,Vs=null,Gh=U.S;U.S=function(t,l){if(qS=Ct(),typeof l=="object"&&l!==null&&typeof l.then=="function"){if(0>Lc&&0>Au){Lc=rl();var u=Ke(),c=qc();(u!==ki||c!==Mo)&&(ki=-1.1),Pi=u,Mo=c}gy(t,l)}Gh!==null&&Gh(t,l)};var qo=$l(null),yn={recordUnsafeLifecycleWarnings:function(){},flushPendingUnsafeLifecycleWarnings:function(){},recordLegacyContextWarning:function(){},flushLegacyContextWarning:function(){},discardPendingWarnings:function(){}},Qd=[],Yd=[],Gd=[],Vd=[],xd=[],Xd=[],Bo=new Set;yn.recordUnsafeLifecycleWarnings=function(t,l){Bo.has(t.type)||(typeof l.componentWillMount=="function"&&l.componentWillMount.__suppressDeprecationWarning!==!0&&Qd.push(t),t.mode&8&&typeof l.UNSAFE_componentWillMount=="function"&&Yd.push(t),typeof l.componentWillReceiveProps=="function"&&l.componentWillReceiveProps.__suppressDeprecationWarning!==!0&&Gd.push(t),t.mode&8&&typeof l.UNSAFE_componentWillReceiveProps=="function"&&Vd.push(t),typeof l.componentWillUpdate=="function"&&l.componentWillUpdate.__suppressDeprecationWarning!==!0&&xd.push(t),t.mode&8&&typeof l.UNSAFE_componentWillUpdate=="function"&&Xd.push(t))},yn.flushPendingUnsafeLifecycleWarnings=function(){var t=new Set;0<Qd.length&&(Qd.forEach(function(y){t.add(I(y)||"Component"),Bo.add(y.type)}),Qd=[]);var l=new Set;0<Yd.length&&(Yd.forEach(function(y){l.add(I(y)||"Component"),Bo.add(y.type)}),Yd=[]);var u=new Set;0<Gd.length&&(Gd.forEach(function(y){u.add(I(y)||"Component"),Bo.add(y.type)}),Gd=[]);var c=new Set;0<Vd.length&&(Vd.forEach(function(y){c.add(I(y)||"Component"),Bo.add(y.type)}),Vd=[]);var f=new Set;0<xd.length&&(xd.forEach(function(y){f.add(I(y)||"Component"),Bo.add(y.type)}),xd=[]);var o=new Set;if(0<Xd.length&&(Xd.forEach(function(y){o.add(I(y)||"Component"),Bo.add(y.type)}),Xd=[]),0<l.size){var d=$t(l);console.error(`Using UNSAFE_componentWillMount in strict mode is not recommended and may indicate bugs in your code. See https://react.dev/link/unsafe-component-lifecycles for details.
|
|
487
|
+
|
|
488
|
+
* Move code with side effects to componentDidMount, and set initial state in the constructor.
|
|
489
|
+
|
|
490
|
+
Please update the following components: %s`,d)}0<c.size&&(d=$t(c),console.error(`Using UNSAFE_componentWillReceiveProps in strict mode is not recommended and may indicate bugs in your code. See https://react.dev/link/unsafe-component-lifecycles for details.
|
|
491
|
+
|
|
492
|
+
* Move data fetching code or side effects to componentDidUpdate.
|
|
493
|
+
* If you're updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://react.dev/link/derived-state
|
|
494
|
+
|
|
495
|
+
Please update the following components: %s`,d)),0<o.size&&(d=$t(o),console.error(`Using UNSAFE_componentWillUpdate in strict mode is not recommended and may indicate bugs in your code. See https://react.dev/link/unsafe-component-lifecycles for details.
|
|
496
|
+
|
|
497
|
+
* Move data fetching code or side effects to componentDidUpdate.
|
|
498
|
+
|
|
499
|
+
Please update the following components: %s`,d)),0<t.size&&(d=$t(t),console.warn(`componentWillMount has been renamed, and is not recommended for use. See https://react.dev/link/unsafe-component-lifecycles for details.
|
|
500
|
+
|
|
501
|
+
* Move code with side effects to componentDidMount, and set initial state in the constructor.
|
|
502
|
+
* Rename componentWillMount to UNSAFE_componentWillMount to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run \`npx react-codemod rename-unsafe-lifecycles\` in your project source folder.
|
|
503
|
+
|
|
504
|
+
Please update the following components: %s`,d)),0<u.size&&(d=$t(u),console.warn(`componentWillReceiveProps has been renamed, and is not recommended for use. See https://react.dev/link/unsafe-component-lifecycles for details.
|
|
505
|
+
|
|
506
|
+
* Move data fetching code or side effects to componentDidUpdate.
|
|
507
|
+
* If you're updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://react.dev/link/derived-state
|
|
508
|
+
* Rename componentWillReceiveProps to UNSAFE_componentWillReceiveProps to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run \`npx react-codemod rename-unsafe-lifecycles\` in your project source folder.
|
|
509
|
+
|
|
510
|
+
Please update the following components: %s`,d)),0<f.size&&(d=$t(f),console.warn(`componentWillUpdate has been renamed, and is not recommended for use. See https://react.dev/link/unsafe-component-lifecycles for details.
|
|
511
|
+
|
|
512
|
+
* Move data fetching code or side effects to componentDidUpdate.
|
|
513
|
+
* Rename componentWillUpdate to UNSAFE_componentWillUpdate to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run \`npx react-codemod rename-unsafe-lifecycles\` in your project source folder.
|
|
514
|
+
|
|
515
|
+
Please update the following components: %s`,d))};var Z0=new Map,Vh=new Set;yn.recordLegacyContextWarning=function(t,l){for(var u=null,c=t;c!==null;)c.mode&8&&(u=c),c=c.return;u===null?console.error("Expected to find a StrictMode component in a strict mode tree. This error is likely caused by a bug in React. Please file an issue."):!Vh.has(t.type)&&(c=Z0.get(u),t.type.contextTypes!=null||t.type.childContextTypes!=null||l!==null&&typeof l.getChildContext=="function")&&(c===void 0&&(c=[],Z0.set(u,c)),c.push(t))},yn.flushLegacyContextWarning=function(){Z0.forEach(function(t){if(t.length!==0){var l=t[0],u=new Set;t.forEach(function(f){u.add(I(f)||"Component"),Vh.add(f.type)});var c=$t(u);W(l,function(){console.error(`Legacy context API has been detected within a strict-mode tree.
|
|
516
|
+
|
|
517
|
+
The old API will be supported in all 16.x releases, but applications using it should migrate to the new version.
|
|
518
|
+
|
|
519
|
+
Please update the following components: %s
|
|
520
|
+
|
|
521
|
+
Learn more about this warning here: https://react.dev/link/legacy-context`,c)})}})},yn.discardPendingWarnings=function(){Qd=[],Yd=[],Gd=[],Vd=[],xd=[],Xd=[],Z0=new Map};var xh={react_stack_bottom_frame:function(t,l,u){var c=In;In=!0;try{return t(l,u)}finally{In=c}}},f1=xh.react_stack_bottom_frame.bind(xh),Xh={react_stack_bottom_frame:function(t){var l=In;In=!0;try{return t.render()}finally{In=l}}},Zh=Xh.react_stack_bottom_frame.bind(Xh),rh={react_stack_bottom_frame:function(t,l){try{l.componentDidMount()}catch(u){Bt(t,t.return,u)}}},o1=rh.react_stack_bottom_frame.bind(rh),Kh={react_stack_bottom_frame:function(t,l,u,c,f){try{l.componentDidUpdate(u,c,f)}catch(o){Bt(t,t.return,o)}}},Jh=Kh.react_stack_bottom_frame.bind(Kh),Lh={react_stack_bottom_frame:function(t,l){var u=l.stack;t.componentDidCatch(l.value,{componentStack:u!==null?u:""})}},I2=Lh.react_stack_bottom_frame.bind(Lh),Wh={react_stack_bottom_frame:function(t,l,u){try{u.componentWillUnmount()}catch(c){Bt(t,l,c)}}},Fh=Wh.react_stack_bottom_frame.bind(Wh),$h={react_stack_bottom_frame:function(t){var l=t.create;return t=t.inst,l=l(),t.destroy=l}},w2=$h.react_stack_bottom_frame.bind($h),Ih={react_stack_bottom_frame:function(t,l,u){try{u()}catch(c){Bt(t,l,c)}}},P2=Ih.react_stack_bottom_frame.bind(Ih),wh={react_stack_bottom_frame:function(t){var l=t._init;return l(t._payload)}},k2=wh.react_stack_bottom_frame.bind(wh),xs=Error("Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."),m1=Error("Suspense Exception: This is not a real error, and should not leak into userspace. If you're seeing this, it's likely a bug in React."),r0=Error("Suspense Exception: This is not a real error! It's an implementation detail of `useActionState` to interrupt the current render. You must either rethrow it immediately, or move the `useActionState` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary."),K0={then:function(){console.error('Internal React error: A listener was unexpectedly attached to a "noop" thenable. This is a bug in React. Please file an issue.')}},jo=null,Zd=!1,Xs=null,rd=0,St=null,s1,Ph=s1=!1,kh={},tS={},lS={};gl=function(t,l,u){if(u!==null&&typeof u=="object"&&u._store&&(!u._store.validated&&u.key==null||u._store.validated===2)){if(typeof u._store!="object")throw Error("React Component in warnForMissingKey should have a _store. This error is likely caused by a bug in React. Please file an issue.");u._store.validated=1;var c=I(t),f=c||"null";if(!kh[f]){kh[f]=!0,u=u._owner,t=t._debugOwner;var o="";t&&typeof t.tag=="number"&&(f=I(t))&&(o=`
|
|
522
|
+
|
|
523
|
+
Check the render method of \``+f+"`."),o||c&&(o=`
|
|
524
|
+
|
|
525
|
+
Check the top-level render call using <`+c+">.");var d="";u!=null&&t!==u&&(c=null,typeof u.tag=="number"?c=I(u):typeof u.name=="string"&&(c=u.name),c&&(d=" It was passed a child from "+c+".")),W(l,function(){console.error('Each child in a list should have a unique "key" prop.%s%s See https://react.dev/link/warning-keys for more information.',o,d)})}}};var Qo=Bf(!0),aS=Bf(!1),Kd=1,Wc=2,Nu=[],Zs=0,p1=0,eS=0,uS=1,nS=2,d1=3,tf=!1,cS=!1,y1=null,v1=!1,rs=$l(null),J0=$l(0),Fe=$l(null),Ru=null,Ks=1,Jd=2,Vl=$l(0),L0=0,Uu=1,ae=2,$e=4,ee=8,Js,iS=new Set,fS=new Set,h1=new Set,oS=new Set,Fc=0,nt=null,kt=null,Kl=null,W0=!1,Ls=!1,Yo=!1,F0=0,Ld=0,$c=null,tE=0,lE=25,C=null,Cu=null,Ic=-1,Wd=!1,Fd={readContext:Jt,use:Qt,useCallback:yl,useContext:yl,useEffect:yl,useImperativeHandle:yl,useLayoutEffect:yl,useInsertionEffect:yl,useMemo:yl,useReducer:yl,useRef:yl,useState:yl,useDebugValue:yl,useDeferredValue:yl,useTransition:yl,useSyncExternalStore:yl,useId:yl,useHostTransitionStatus:yl,useFormState:yl,useActionState:yl,useOptimistic:yl,useMemoCache:yl,useCacheRefresh:yl};Fd.useEffectEvent=yl;var S1=null,mS=null,E1=null,sS=null,kn=null,vn=null,$0=null;S1={readContext:function(t){return Jt(t)},use:Qt,useCallback:function(t,l){return C="useCallback",st(),Ba(l),Um(t,l)},useContext:function(t){return C="useContext",st(),Jt(t)},useEffect:function(t,l){return C="useEffect",st(),Ba(l),ja(t,l)},useImperativeHandle:function(t,l,u){return C="useImperativeHandle",st(),Ba(u),Rm(t,l,u)},useInsertionEffect:function(t,l){C="useInsertionEffect",st(),Ba(l),wu(4,ae,t,l)},useLayoutEffect:function(t,l){return C="useLayoutEffect",st(),Ba(l),Pu(t,l)},useMemo:function(t,l){C="useMemo",st(),Ba(l);var u=U.H;U.H=kn;try{return Cm(t,l)}finally{U.H=u}},useReducer:function(t,l,u){C="useReducer",st();var c=U.H;U.H=kn;try{return Tm(t,l,u)}finally{U.H=c}},useRef:function(t){return C="useRef",st(),Ve(t)},useState:function(t){C="useState",st();var l=U.H;U.H=kn;try{return zi(t)}finally{U.H=l}},useDebugValue:function(){C="useDebugValue",st()},useDeferredValue:function(t,l){return C="useDeferredValue",st(),Lf(t,l)},useTransition:function(){return C="useTransition",st(),Om()},useSyncExternalStore:function(t,l,u){return C="useSyncExternalStore",st(),gm(t,l,u)},useId:function(){return C="useId",st(),$f()},useFormState:function(t,l){return C="useFormState",st(),Si(),_l(t,l)},useActionState:function(t,l){return C="useActionState",st(),_l(t,l)},useOptimistic:function(t){return C="useOptimistic",st(),Hm(t)},useHostTransitionStatus:qn,useMemoCache:zc,useCacheRefresh:function(){return C="useCacheRefresh",st(),Bn()},useEffectEvent:function(t){return C="useEffectEvent",st(),Mn(t)}},mS={readContext:function(t){return Jt(t)},use:Qt,useCallback:function(t,l){return C="useCallback",V(),Um(t,l)},useContext:function(t){return C="useContext",V(),Jt(t)},useEffect:function(t,l){return C="useEffect",V(),ja(t,l)},useImperativeHandle:function(t,l,u){return C="useImperativeHandle",V(),Rm(t,l,u)},useInsertionEffect:function(t,l){C="useInsertionEffect",V(),wu(4,ae,t,l)},useLayoutEffect:function(t,l){return C="useLayoutEffect",V(),Pu(t,l)},useMemo:function(t,l){C="useMemo",V();var u=U.H;U.H=kn;try{return Cm(t,l)}finally{U.H=u}},useReducer:function(t,l,u){C="useReducer",V();var c=U.H;U.H=kn;try{return Tm(t,l,u)}finally{U.H=c}},useRef:function(t){return C="useRef",V(),Ve(t)},useState:function(t){C="useState",V();var l=U.H;U.H=kn;try{return zi(t)}finally{U.H=l}},useDebugValue:function(){C="useDebugValue",V()},useDeferredValue:function(t,l){return C="useDeferredValue",V(),Lf(t,l)},useTransition:function(){return C="useTransition",V(),Om()},useSyncExternalStore:function(t,l,u){return C="useSyncExternalStore",V(),gm(t,l,u)},useId:function(){return C="useId",V(),$f()},useActionState:function(t,l){return C="useActionState",V(),_l(t,l)},useFormState:function(t,l){return C="useFormState",V(),Si(),_l(t,l)},useOptimistic:function(t){return C="useOptimistic",V(),Hm(t)},useHostTransitionStatus:qn,useMemoCache:zc,useCacheRefresh:function(){return C="useCacheRefresh",V(),Bn()},useEffectEvent:function(t){return C="useEffectEvent",V(),Mn(t)}},E1={readContext:function(t){return Jt(t)},use:Qt,useCallback:function(t,l){return C="useCallback",V(),Tc(t,l)},useContext:function(t){return C="useContext",V(),Jt(t)},useEffect:function(t,l){C="useEffect",V(),ma(2048,ee,t,l)},useImperativeHandle:function(t,l,u){return C="useImperativeHandle",V(),bn(t,l,u)},useInsertionEffect:function(t,l){return C="useInsertionEffect",V(),ma(4,ae,t,l)},useLayoutEffect:function(t,l){return C="useLayoutEffect",V(),ma(4,$e,t,l)},useMemo:function(t,l){C="useMemo",V();var u=U.H;U.H=vn;try{return Ti(t,l)}finally{U.H=u}},useReducer:function(t,l,u){C="useReducer",V();var c=U.H;U.H=vn;try{return iu(t,l,u)}finally{U.H=c}},useRef:function(){return C="useRef",V(),Gt().memoizedState},useState:function(){C="useState",V();var t=U.H;U.H=vn;try{return iu(Ye)}finally{U.H=t}},useDebugValue:function(){C="useDebugValue",V()},useDeferredValue:function(t,l){return C="useDeferredValue",V(),Mm(t,l)},useTransition:function(){return C="useTransition",V(),Uy()},useSyncExternalStore:function(t,l,u){return C="useSyncExternalStore",V(),Cn(t,l,u)},useId:function(){return C="useId",V(),Gt().memoizedState},useFormState:function(t){return C="useFormState",V(),Si(),Jf(t)},useActionState:function(t){return C="useActionState",V(),Jf(t)},useOptimistic:function(t,l){return C="useOptimistic",V(),jp(t,l)},useHostTransitionStatus:qn,useMemoCache:zc,useCacheRefresh:function(){return C="useCacheRefresh",V(),Gt().memoizedState},useEffectEvent:function(t){return C="useEffectEvent",V(),On(t)}},sS={readContext:function(t){return Jt(t)},use:Qt,useCallback:function(t,l){return C="useCallback",V(),Tc(t,l)},useContext:function(t){return C="useContext",V(),Jt(t)},useEffect:function(t,l){C="useEffect",V(),ma(2048,ee,t,l)},useImperativeHandle:function(t,l,u){return C="useImperativeHandle",V(),bn(t,l,u)},useInsertionEffect:function(t,l){return C="useInsertionEffect",V(),ma(4,ae,t,l)},useLayoutEffect:function(t,l){return C="useLayoutEffect",V(),ma(4,$e,t,l)},useMemo:function(t,l){C="useMemo",V();var u=U.H;U.H=$0;try{return Ti(t,l)}finally{U.H=u}},useReducer:function(t,l,u){C="useReducer",V();var c=U.H;U.H=$0;try{return Ei(t,l,u)}finally{U.H=c}},useRef:function(){return C="useRef",V(),Gt().memoizedState},useState:function(){C="useState",V();var t=U.H;U.H=$0;try{return Ei(Ye)}finally{U.H=t}},useDebugValue:function(){C="useDebugValue",V()},useDeferredValue:function(t,l){return C="useDeferredValue",V(),Vp(t,l)},useTransition:function(){return C="useTransition",V(),ku()},useSyncExternalStore:function(t,l,u){return C="useSyncExternalStore",V(),Cn(t,l,u)},useId:function(){return C="useId",V(),Gt().memoizedState},useFormState:function(t){return C="useFormState",V(),Si(),oe(t)},useActionState:function(t){return C="useActionState",V(),oe(t)},useOptimistic:function(t,l){return C="useOptimistic",V(),Qp(t,l)},useHostTransitionStatus:qn,useMemoCache:zc,useCacheRefresh:function(){return C="useCacheRefresh",V(),Gt().memoizedState},useEffectEvent:function(t){return C="useEffectEvent",V(),On(t)}},kn={readContext:function(t){return tt(),Jt(t)},use:function(t){return G(),Qt(t)},useCallback:function(t,l){return C="useCallback",G(),st(),Um(t,l)},useContext:function(t){return C="useContext",G(),st(),Jt(t)},useEffect:function(t,l){return C="useEffect",G(),st(),ja(t,l)},useImperativeHandle:function(t,l,u){return C="useImperativeHandle",G(),st(),Rm(t,l,u)},useInsertionEffect:function(t,l){C="useInsertionEffect",G(),st(),wu(4,ae,t,l)},useLayoutEffect:function(t,l){return C="useLayoutEffect",G(),st(),Pu(t,l)},useMemo:function(t,l){C="useMemo",G(),st();var u=U.H;U.H=kn;try{return Cm(t,l)}finally{U.H=u}},useReducer:function(t,l,u){C="useReducer",G(),st();var c=U.H;U.H=kn;try{return Tm(t,l,u)}finally{U.H=c}},useRef:function(t){return C="useRef",G(),st(),Ve(t)},useState:function(t){C="useState",G(),st();var l=U.H;U.H=kn;try{return zi(t)}finally{U.H=l}},useDebugValue:function(){C="useDebugValue",G(),st()},useDeferredValue:function(t,l){return C="useDeferredValue",G(),st(),Lf(t,l)},useTransition:function(){return C="useTransition",G(),st(),Om()},useSyncExternalStore:function(t,l,u){return C="useSyncExternalStore",G(),st(),gm(t,l,u)},useId:function(){return C="useId",G(),st(),$f()},useFormState:function(t,l){return C="useFormState",G(),st(),_l(t,l)},useActionState:function(t,l){return C="useActionState",G(),st(),_l(t,l)},useOptimistic:function(t){return C="useOptimistic",G(),st(),Hm(t)},useMemoCache:function(t){return G(),zc(t)},useHostTransitionStatus:qn,useCacheRefresh:function(){return C="useCacheRefresh",st(),Bn()},useEffectEvent:function(t){return C="useEffectEvent",G(),st(),Mn(t)}},vn={readContext:function(t){return tt(),Jt(t)},use:function(t){return G(),Qt(t)},useCallback:function(t,l){return C="useCallback",G(),V(),Tc(t,l)},useContext:function(t){return C="useContext",G(),V(),Jt(t)},useEffect:function(t,l){C="useEffect",G(),V(),ma(2048,ee,t,l)},useImperativeHandle:function(t,l,u){return C="useImperativeHandle",G(),V(),bn(t,l,u)},useInsertionEffect:function(t,l){return C="useInsertionEffect",G(),V(),ma(4,ae,t,l)},useLayoutEffect:function(t,l){return C="useLayoutEffect",G(),V(),ma(4,$e,t,l)},useMemo:function(t,l){C="useMemo",G(),V();var u=U.H;U.H=vn;try{return Ti(t,l)}finally{U.H=u}},useReducer:function(t,l,u){C="useReducer",G(),V();var c=U.H;U.H=vn;try{return iu(t,l,u)}finally{U.H=c}},useRef:function(){return C="useRef",G(),V(),Gt().memoizedState},useState:function(){C="useState",G(),V();var t=U.H;U.H=vn;try{return iu(Ye)}finally{U.H=t}},useDebugValue:function(){C="useDebugValue",G(),V()},useDeferredValue:function(t,l){return C="useDeferredValue",G(),V(),Mm(t,l)},useTransition:function(){return C="useTransition",G(),V(),Uy()},useSyncExternalStore:function(t,l,u){return C="useSyncExternalStore",G(),V(),Cn(t,l,u)},useId:function(){return C="useId",G(),V(),Gt().memoizedState},useFormState:function(t){return C="useFormState",G(),V(),Jf(t)},useActionState:function(t){return C="useActionState",G(),V(),Jf(t)},useOptimistic:function(t,l){return C="useOptimistic",G(),V(),jp(t,l)},useMemoCache:function(t){return G(),zc(t)},useHostTransitionStatus:qn,useCacheRefresh:function(){return C="useCacheRefresh",V(),Gt().memoizedState},useEffectEvent:function(t){return C="useEffectEvent",G(),V(),On(t)}},$0={readContext:function(t){return tt(),Jt(t)},use:function(t){return G(),Qt(t)},useCallback:function(t,l){return C="useCallback",G(),V(),Tc(t,l)},useContext:function(t){return C="useContext",G(),V(),Jt(t)},useEffect:function(t,l){C="useEffect",G(),V(),ma(2048,ee,t,l)},useImperativeHandle:function(t,l,u){return C="useImperativeHandle",G(),V(),bn(t,l,u)},useInsertionEffect:function(t,l){return C="useInsertionEffect",G(),V(),ma(4,ae,t,l)},useLayoutEffect:function(t,l){return C="useLayoutEffect",G(),V(),ma(4,$e,t,l)},useMemo:function(t,l){C="useMemo",G(),V();var u=U.H;U.H=vn;try{return Ti(t,l)}finally{U.H=u}},useReducer:function(t,l,u){C="useReducer",G(),V();var c=U.H;U.H=vn;try{return Ei(t,l,u)}finally{U.H=c}},useRef:function(){return C="useRef",G(),V(),Gt().memoizedState},useState:function(){C="useState",G(),V();var t=U.H;U.H=vn;try{return Ei(Ye)}finally{U.H=t}},useDebugValue:function(){C="useDebugValue",G(),V()},useDeferredValue:function(t,l){return C="useDeferredValue",G(),V(),Vp(t,l)},useTransition:function(){return C="useTransition",G(),V(),ku()},useSyncExternalStore:function(t,l,u){return C="useSyncExternalStore",G(),V(),Cn(t,l,u)},useId:function(){return C="useId",G(),V(),Gt().memoizedState},useFormState:function(t){return C="useFormState",G(),V(),oe(t)},useActionState:function(t){return C="useActionState",G(),V(),oe(t)},useOptimistic:function(t,l){return C="useOptimistic",G(),V(),Qp(t,l)},useMemoCache:function(t){return G(),zc(t)},useHostTransitionStatus:qn,useCacheRefresh:function(){return C="useCacheRefresh",V(),Gt().memoizedState},useEffectEvent:function(t){return C="useEffectEvent",G(),V(),On(t)}};var pS={},dS=new Set,yS=new Set,vS=new Set,hS=new Set,SS=new Set,ES=new Set,zS=new Set,TS=new Set,gS=new Set,_S=new Set;Object.freeze(pS);var z1={enqueueSetState:function(t,l,u){t=t._reactInternals;var c=Ia(t),f=$u(c);f.payload=l,u!=null&&(Zp(u),f.callback=u),l=ie(t,f,c),l!==null&&(Me(c,"this.setState()",t),el(l,t,c),vi(l,t,c))},enqueueReplaceState:function(t,l,u){t=t._reactInternals;var c=Ia(t),f=$u(c);f.tag=uS,f.payload=l,u!=null&&(Zp(u),f.callback=u),l=ie(t,f,c),l!==null&&(Me(c,"this.replaceState()",t),el(l,t,c),vi(l,t,c))},enqueueForceUpdate:function(t,l){t=t._reactInternals;var u=Ia(t),c=$u(u);c.tag=nS,l!=null&&(Zp(l),c.callback=l),l=ie(t,c,u),l!==null&&(Me(u,"this.forceUpdate()",t),el(l,t,u),vi(l,t,u))}},Ws=null,T1=null,g1=Error("This is not a real error. It's an implementation detail of React's selective hydration feature. If this leaks into userspace, it's a bug in React. Please file an issue."),Jl=!1,DS={},HS={},AS={},NS={},Fs=!1,RS={},I0={},_1={dehydrated:null,treeContext:null,retryLane:0,hydrationErrors:null},US=!1,CS=null;CS=new Set;var wc=!1,Ll=!1,D1=!1,MS=typeof WeakSet=="function"?WeakSet:Set,ya=null,$s=null,Is=null,Wl=null,Te=!1,hn=null,na=!1,ws=8192,aE={getCacheForType:function(t){var l=Jt(Ul),u=l.data.get(t);return u===void 0&&(u=t(),l.data.set(t,u)),u},cacheSignal:function(){return Jt(Ul).controller.signal},getOwner:function(){return Zc}},w0=0,P0=1,k0=2,tv=3,lv=4;if(typeof Symbol=="function"&&Symbol.for){var $d=Symbol.for;w0=$d("selector.component"),P0=$d("selector.has_pseudo_class"),k0=$d("selector.role"),tv=$d("selector.test_id"),lv=$d("selector.text")}var av=[],eE=typeof WeakMap=="function"?WeakMap:Map,va=0,ha=2,Mu=4,Pc=0,Id=1,Go=2,ev=3,lf=4,uv=6,OS=5,Ot=va,tl=null,gt=null,Et=0,ge=0,nv=1,Vo=2,wd=3,bS=4,H1=5,Pd=6,cv=7,A1=8,xo=9,Wt=ge,Ie=null,af=!1,Ps=!1,N1=!1,tc=0,El=Pc,ef=0,uf=0,R1=0,_e=0,Xo=0,kd=null,ue=null,iv=!1,fv=0,qS=0,BS=300,ty=1/0,U1=500,ly=null,jl=null,nf=null,ov=0,C1=1,M1=2,jS=3,cf=0,QS=1,YS=2,GS=3,VS=4,mv=5,Fl=0,ff=null,ks=null,Sn=0,O1=0,b1=-0,q1=null,xS=null,XS=null,En=ov,ZS=null,uE=50,ay=0,B1=null,j1=!1,sv=!1,nE=50,Zo=0,ey=null,tp=!1,pv=null,rS=!1,KS=new Set,cE={},Ou=null,lp=null,JS=!1;try{var LS=Object.preventExtensions({})}catch{JS=!0}var WS=!1,FS={},$S=null,IS=null,wS=null,PS=null,kS=null,t2=null,l2=null,a2=null,e2=null,u2=null;return $S=function(t,l,u,c){l=h(t,l),l!==null&&(u=z(l.memoizedState,u,0,c),l.memoizedState=u,l.baseState=u,t.memoizedProps=Xt({},t.memoizedProps),u=fa(t,2),u!==null&&el(u,t,2))},IS=function(t,l,u){l=h(t,l),l!==null&&(u=Q(l.memoizedState,u,0),l.memoizedState=u,l.baseState=u,t.memoizedProps=Xt({},t.memoizedProps),u=fa(t,2),u!==null&&el(u,t,2))},wS=function(t,l,u,c){l=h(t,l),l!==null&&(u=E(l.memoizedState,u,c),l.memoizedState=u,l.baseState=u,t.memoizedProps=Xt({},t.memoizedProps),u=fa(t,2),u!==null&&el(u,t,2))},PS=function(t,l,u){t.pendingProps=z(t.memoizedProps,l,0,u),t.alternate&&(t.alternate.pendingProps=t.pendingProps),l=fa(t,2),l!==null&&el(l,t,2)},kS=function(t,l){t.pendingProps=Q(t.memoizedProps,l,0),t.alternate&&(t.alternate.pendingProps=t.pendingProps),l=fa(t,2),l!==null&&el(l,t,2)},t2=function(t,l,u){t.pendingProps=E(t.memoizedProps,l,u),t.alternate&&(t.alternate.pendingProps=t.pendingProps),l=fa(t,2),l!==null&&el(l,t,2)},l2=function(t){var l=fa(t,2);l!==null&&el(l,t,2)},a2=function(t){var l=Rt(),u=fa(t,l);u!==null&&el(u,t,l)},e2=function(t){yt=t},u2=function(t){r=t},Tt.attemptContinuousHydration=function(t){if(t.tag===13||t.tag===31){var l=fa(t,67108864);l!==null&&el(l,t,67108864),Oi(t,67108864)}},Tt.attemptHydrationAtCurrentPriority=function(t){if(t.tag===13||t.tag===31){var l=Ia(t);l=An(l);var u=fa(t,l);u!==null&&el(u,t,l),Oi(t,l)}},Tt.attemptSynchronousHydration=function(t){switch(t.tag){case 3:if(t=t.stateNode,t.current.memoizedState.isDehydrated){var l=Ea(t.pendingLanes);if(l!==0){for(t.pendingLanes|=2,t.entangledLanes|=2;l;){var u=1<<31-Gl(l);t.entanglements[1]|=u,l&=~u}Ta(t),(Ot&(ha|Mu))===va&&(ty=Ct()+U1,hc(0,!1))}}break;case 31:case 13:l=fa(t,2),l!==null&&el(l,t,2),oo(),Oi(t,2)}},Tt.batchedUpdates=function(t,l){return t(l)},Tt.createComponentSelector=function(t){return{$$typeof:w0,value:t}},Tt.createContainer=function(t,l,u,c,f,o,d,y,S,D){return Mc(t,l,!1,null,u,c,o,null,d,y,S,D)},Tt.createHasPseudoClassSelector=function(t){return{$$typeof:P0,value:t}},Tt.createHydrationContainer=function(t,l,u,c,f,o,d,y,S,D,O,q,j,F){return t=Mc(u,c,!0,t,f,o,y,F,S,D,O,q),t.context=_0(null),u=t.current,c=Ia(u),c=An(c),f=$u(c),f.callback=l??null,ie(u,f,c),Me(c,"hydrateRoot()",null),l=c,t.current.lanes=l,He(t,l),Ta(t),t},Tt.createPortal=function(t,l,u){var c=3<arguments.length&&arguments[3]!==void 0?arguments[3]:null;try{Ya(c);var f=!1}catch{f=!0}return f&&(console.error("The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",typeof Symbol=="function"&&Symbol.toStringTag&&c[Symbol.toStringTag]||c.constructor.name||"Object"),Ya(c)),{$$typeof:cn,key:c==null?null:""+c,children:t,containerInfo:l,implementation:u}},Tt.createRoleSelector=function(t){return{$$typeof:k0,value:t}},Tt.createTestNameSelector=function(t){return{$$typeof:tv,value:t}},Tt.createTextSelector=function(t){return{$$typeof:lv,value:t}},Tt.defaultOnCaughtError=function(t){var l=Ws?"The above error occurred in the <"+Ws+"> component.":"The above error occurred in one of your React components.",u="React will try to recreate this component tree from scratch using the error boundary you provided, "+((T1||"Anonymous")+".");typeof t=="object"&&t!==null&&typeof t.environmentName=="string"?Bc("error",[`%o
|
|
526
|
+
|
|
527
|
+
%s
|
|
528
|
+
|
|
529
|
+
%s
|
|
530
|
+
`,t,l,u],t.environmentName)():console.error(`%o
|
|
531
|
+
|
|
532
|
+
%s
|
|
533
|
+
|
|
534
|
+
%s
|
|
535
|
+
`,t,l,u)},Tt.defaultOnRecoverableError=function(t){Ah(t)},Tt.defaultOnUncaughtError=function(t){Ah(t),console.warn(`%s
|
|
536
|
+
|
|
537
|
+
%s
|
|
538
|
+
`,Ws?"An error occurred in the <"+Ws+"> component.":"An error occurred in one of your React components.",`Consider adding an error boundary to your tree to customize error handling behavior.
|
|
539
|
+
Visit https://react.dev/link/error-boundaries to learn more about error boundaries.`)},Tt.deferredUpdates=function(t){var l=U.T,u=xa();try{return Al(32),U.T=null,t()}finally{Al(u),U.T=l}},Tt.discreteUpdates=function(t,l,u,c,f){var o=U.T,d=xa();try{return Al(2),U.T=null,t(l,u,c,f)}finally{Al(d),U.T=o,Ot===va&&(ty=Ct()+U1)}},Tt.findAllNodes=Im,Tt.findBoundingRects=function(t,l){if(!Je)throw Error("Test selector API is not supported by this renderer.");l=Im(t,l),t=[];for(var u=0;u<l.length;u++)t.push(Zn(l[u]));for(l=t.length-1;0<l;l--){u=t[l];for(var c=u.x,f=c+u.width,o=u.y,d=o+u.height,y=l-1;0<=y;y--)if(l!==y){var S=t[y],D=S.x,O=D+S.width,q=S.y,j=q+S.height;if(c>=D&&o>=q&&f<=O&&d<=j){t.splice(l,1);break}else if(c!==D||u.width!==S.width||j<o||q>d){if(!(o!==q||u.height!==S.height||O<c||D>f)){D>c&&(S.width+=D-c,S.x=c),O<f&&(S.width=f-D),t.splice(l,1);break}}else{q>o&&(S.height+=q-o,S.y=o),j<d&&(S.height=d-q),t.splice(l,1);break}}}return t},Tt.findHostInstance=function(t){var l=t._reactInternals;if(l===void 0)throw typeof t.render=="function"?Error("Unable to find node on an unmounted component."):(t=Object.keys(t).join(","),Error("Argument appears to not be a ReactComponent. Keys: "+t));return t=_n(l),t===null?null:Aa(t.stateNode)},Tt.findHostInstanceWithNoPortals=function(t){return t=Bu(t),t=t!==null?df(t):null,t===null?null:Aa(t.stateNode)},Tt.findHostInstanceWithWarning=function(t,l){var u=t._reactInternals;if(u===void 0)throw typeof t.render=="function"?Error("Unable to find node on an unmounted component."):(t=Object.keys(t).join(","),Error("Argument appears to not be a ReactComponent. Keys: "+t));if(t=_n(u),t===null)return null;if(t.mode&8){var c=I(u)||"Component";FS[c]||(FS[c]=!0,W(t,function(){u.mode&8?console.error("%s is deprecated in StrictMode. %s was passed an instance of %s which is inside StrictMode. Instead, add a ref directly to the element you want to reference. Learn more about using refs safely here: https://react.dev/link/strict-mode-find-node",l,l,c):console.error("%s is deprecated in StrictMode. %s was passed an instance of %s which renders StrictMode children. Instead, add a ref directly to the element you want to reference. Learn more about using refs safely here: https://react.dev/link/strict-mode-find-node",l,l,c)}))}return Aa(t.stateNode)},Tt.flushPassiveEffects=Ui,Tt.flushSyncFromReconciler=function(t){var l=Ot;Ot|=1;var u=U.T,c=xa();try{if(Al(2),U.T=null,t)return t()}finally{Al(c),U.T=u,Ot=l,(Ot&(ha|Mu))===va&&hc(0,!1)}},Tt.flushSyncWork=oo,Tt.focusWithin=function(t,l){if(!Je)throw Error("Test selector API is not supported by this renderer.");for(t=id(t),l=Py(t,l),l=Array.from(l),t=0;t<l.length;){var u=l[t++],c=u.tag;if(!zu(u)){if((c===5||c===26||c===27)&&wa(u.stateNode))return!0;for(u=u.child;u!==null;)l.push(u),u=u.sibling}}return!1},Tt.getFindAllNodesFailureDescription=function(t,l){if(!Je)throw Error("Test selector API is not supported by this renderer.");var u=0,c=[];t=[id(t),0];for(var f=0;f<t.length;){var o=t[f++],d=o.tag,y=t[f++],S=l[y];if((d!==5&&d!==26&&d!==27||!zu(o))&&(fd(o,S)&&(c.push($m(S)),y++,y>u&&(u=y)),y<l.length))for(o=o.child;o!==null;)t.push(o,y),o=o.sibling}if(u<l.length){for(t=[];u<l.length;u++)t.push($m(l[u]));return`findAllNodes was able to match part of the selector:
|
|
540
|
+
`+(c.join(" > ")+`
|
|
541
|
+
|
|
542
|
+
No matching component was found for:
|
|
543
|
+
`)+t.join(" > ")}return null},Tt.getPublicRootInstance=function(t){if(t=t.current,!t.child)return null;switch(t.child.tag){case 27:case 5:return Aa(t.child.stateNode);default:return t.child.stateNode}},Tt.injectIntoDevTools=function(){var t={bundleType:1,version:de,rendererPackageName:ye,currentDispatcherRef:U,reconcilerVersion:"19.2.0"};return fn!==null&&(t.rendererConfig=fn),t.overrideHookState=$S,t.overrideHookStateDeletePath=IS,t.overrideHookStateRenamePath=wS,t.overrideProps=PS,t.overridePropsDeletePath=kS,t.overridePropsRenamePath=t2,t.scheduleUpdate=l2,t.scheduleRetry=a2,t.setErrorHandler=e2,t.setSuspenseHandler=u2,t.scheduleRefresh=k,t.scheduleRoot=ol,t.setRefreshHandler=Ft,t.getCurrentFiber=cs,yy(t)},Tt.isAlreadyRendering=mo,Tt.observeVisibleRects=function(t,l,u,c){function f(){var D=Im(t,l);o.forEach(function(O){0>D.indexOf(O)&&S(O)}),D.forEach(function(O){0>o.indexOf(O)&&y(O)})}if(!Je)throw Error("Test selector API is not supported by this renderer.");var o=Im(t,l);u=ze(o,u,c);var d=u.disconnect,y=u.observe,S=u.unobserve;return av.push(f),{disconnect:function(){var D=av.indexOf(f);0<=D&&av.splice(D,1),d()}}},Tt.shouldError=function(t){return yt(t)},Tt.shouldSuspend=function(t){return r(t)},Tt.startHostTransition=function(t,l,u,c){if(t.tag!==5)throw Error("Expected the form instance to be a HostComponent. This is a bug in React.");var f=xp(t).queue;zy(t),_a(t,f,l,he,u===null?ne:function(){U.T===null&&console.error("requestFormReset was called outside a transition or action. To fix, move to an action, or wrap with startTransition.");var o=xp(t);return o.next===null&&(o=t.alternate.memoizedState),gi(t,o.next.queue,{},Ia(t)),u(c)})},Tt.updateContainer=function(t,l,u,c){var f=l.current,o=Ia(f);return yo(f,o,t,l,u,c),o},Tt.updateContainerSync=D0,Tt},fy.exports.default=fy.exports,Object.defineProperty(fy.exports,"__esModule",{value:!0}))});var D2=lc((JE,$1)=>{"use strict";process.env.NODE_ENV==="production"?$1.exports=g2():$1.exports=_2()});var H2=lc(mf=>{"use strict";mf.ConcurrentRoot=1;mf.ContinuousEventPriority=8;mf.DefaultEventPriority=32;mf.DiscreteEventPriority=2;mf.IdleEventPriority=268435456;mf.LegacyRoot=0;mf.NoEventPriority=0});var A2=lc(sf=>{"use strict";process.env.NODE_ENV!=="production"&&(sf.ConcurrentRoot=1,sf.ContinuousEventPriority=8,sf.DefaultEventPriority=32,sf.DiscreteEventPriority=2,sf.IdleEventPriority=268435456,sf.LegacyRoot=0,sf.NoEventPriority=0)});var N2=lc((FE,I1)=>{"use strict";process.env.NODE_ENV==="production"?I1.exports=H2():I1.exports=A2()});var jE={};dE(jE,{HttpResponse:()=>nh,act:()=>pf,advanceTimersByTime:()=>Dv,advanceTimersToNextTimer:()=>yh,afterAll:()=>Y2,afterEach:()=>j2,beforeAll:()=>Q2,beforeEach:()=>B2,clearAllMocks:()=>Q1,expect:()=>ec,flushAsync:()=>gh,getTimerCount:()=>dh,group:()=>q2,http:()=>uh,mockFetch:()=>eh,mockFetchClear:()=>fh,mockFetchReset:()=>ih,mockFetchUse:()=>ch,mockModule:()=>th,renderHook:()=>zv,runAllTimers:()=>ph,spy:()=>ro,spyOn:()=>Y1,test:()=>mp,useFakeTimers:()=>mh,useMock:()=>_v,useRealTimers:()=>sh,waitFor:()=>Tv});function ac(s,h){if(h!=null&&typeof h=="object"&&h.__htMatcher&&typeof h.matches=="function")return h.matches(s);if(s!=null&&typeof s=="object"&&s.__htMatcher&&typeof s.matches=="function")return s.matches(h);if(s===h)return!0;if(s==null||h==null)return s===h;if(typeof s!=typeof h)return!1;if(Array.isArray(s))return!Array.isArray(h)||s.length!==h.length?!1:s.every((z,E)=>ac(z,h[E]));if(s instanceof Date&&h instanceof Date)return s.getTime()===h.getTime();if(typeof s=="object"){let z=Object.keys(s).filter(N=>s[N]!==void 0),E=Object.keys(h).filter(N=>h[N]!==void 0);return z.length!==E.length?!1:z.every(N=>ac(s[N],h[N]))}return!1}function _t(s){if(s===void 0)return"undefined";if(s===null)return"null";if(typeof s=="string")return JSON.stringify(s);if(typeof s=="function")return"[Function]";try{return JSON.stringify(s)}catch{return String(s)}}function i2(s,h){function z(N,Q){if(!(h?!N:N))throw new Error(Q)}let E={toBe(N){z(s===N,h?`Expected ${_t(s)} not to be ${_t(N)}`:`Expected ${_t(N)}, got ${_t(s)}`)},toEqual(N){z(ac(s,N),h?`Expected ${_t(s)} not to deeply equal ${_t(N)}`:`Expected deep equal to ${_t(N)}, got ${_t(s)}`)},toBeDefined(){z(s!==void 0,h?`Expected value to be undefined, got ${_t(s)}`:"Expected value to be defined, got undefined")},toBeUndefined(){z(s===void 0,h?"Expected value not to be undefined":`Expected undefined, got ${_t(s)}`)},toBeNull(){z(s===null,h?"Expected value not to be null":`Expected null, got ${_t(s)}`)},toHaveLength(N){let Q=s?.length;z(Q===N,h?`Expected length not to be ${N}, but it was`:`Expected length ${N}, got ${Q}`)},toBeInstanceOf(N){z(s instanceof N,h?`Expected ${_t(s)} not to be instance of ${N?.name??N}`:`Expected instance of ${N?.name??N}, got ${_t(s)}`)},toBeTruthy(){z(!!s,h?`Expected ${_t(s)} to be falsy`:`Expected truthy value, got ${_t(s)}`)},toBeFalsy(){z(!s,h?`Expected ${_t(s)} to be truthy`:`Expected falsy value, got ${_t(s)}`)},toBeGreaterThan(N){z(s>N,h?`Expected ${s} not to be greater than ${N}`:`Expected ${s} to be greater than ${N}`)},toBeLessThan(N){z(s<N,h?`Expected ${s} not to be less than ${N}`:`Expected ${s} to be less than ${N}`)},toContain(N){let Q=Array.isArray(s)?s.some(r=>ac(r,N)):typeof s=="string"?s.includes(N):!1;z(Q,h?`Expected ${_t(s)} not to contain ${_t(N)}`:`Expected ${_t(s)} to contain ${_t(N)}`)},toContainEqual(N){let Q=Array.isArray(s)&&s.some(r=>ac(r,N));z(Q,h?`Expected array not to contain equal ${_t(N)}`:`Expected array to contain equal ${_t(N)}, got ${_t(s)}`)},toBeCloseTo(N,Q=2){let r=Math.abs(s-N)<Math.pow(10,-Q)/2;z(r,h?`Expected ${s} not to be close to ${N}`:`Expected ${s} to be close to ${N} (precision ${Q})`)},toMatch(N){let Q=typeof N=="string"?new RegExp(N):N;z(Q.test(String(s)),h?`Expected ${_t(s)} not to match ${N}`:`Expected ${_t(s)} to match ${N}`)},toThrow(N){let Q=!1,r;try{s()}catch(yt){Q=!0,r=yt}if(N===void 0)z(Q,h?`Expected function not to throw, but it threw ${_t(r)}`:"Expected function to throw, but it did not");else{let yt=r?.message??String(r??""),it=typeof N=="string"?yt.includes(N):N.test(yt);z(Q&&it,h?`Expected function not to throw matching ${N}`:Q?`Expected thrown error to match ${N}, got "${yt}"`:"Expected function to throw, but it did not")}},wasCalled(){z(s.callCount>0,h?`Expected spy not to have been called, but it was called ${s.callCount} times`:"Expected spy to have been called, but it was never called")},wasCalledOnce(){z(s.callCount===1,h?"Expected spy not to have been called once, but it was":`Expected spy to have been called once, but it was called ${s.callCount} times`)},wasCalledTimes(N){z(s.callCount===N,h?`Expected spy not to have been called ${N} times`:`Expected spy to have been called ${N} times, but it was called ${s.callCount} times`)},wasCalledWith(...N){let Q=s,r=Q.calls.some(yt=>ac(yt,N));z(r,h?`Expected spy not to have been called with ${_t(N)}`:`Expected spy to have been called with ${_t(N)}, calls: ${_t(Q.calls)}`)},wasLastCalledWith(...N){let Q=s,r=Q.calls[Q.calls.length-1];z(ac(r,N),h?`Expected last call not to be ${_t(N)}`:`Expected last call to be ${_t(N)}, got ${_t(r)}`)},wasNeverCalled(){z(s.callCount===0,h?"Expected spy to have been called, but it was never called":`Expected spy to never have been called, but it was called ${s.callCount} times`)},toHaveBeenCalled(){return this.wasCalled()},toHaveBeenCalledTimes(N){return this.wasCalledTimes(N)},toHaveBeenCalledWith(...N){return this.wasCalledWith(...N)},toHaveBeenLastCalledWith(...N){return this.wasLastCalledWith(...N)}};return h||(E.not=i2(s,!0)),E}function ep(s){return{__htMatcher:!0,matches:s}}function ec(s){let h=i2(s,!1);return h.resolves={toBeUndefined:async()=>{let z=await s;if(z!==void 0)throw new Error(`Expected undefined, got ${_t(z)}`)},toBe:async z=>{let E=await s;if(E!==z)throw new Error(`Expected ${_t(z)}, got ${_t(E)}`)},toEqual:async z=>{let E=await s;if(!ac(E,z))throw new Error(`Expected deep equal to ${_t(z)}, got ${_t(E)}`)},toBeDefined:async()=>{if(await s===void 0)throw new Error("Expected value to be defined")},toBeTruthy:async()=>{let z=await s;if(!z)throw new Error(`Expected truthy, got ${_t(z)}`)},toBeFalsy:async()=>{let z=await s;if(z)throw new Error(`Expected falsy, got ${_t(z)}`)},toBeNull:async()=>{let z=await s;if(z!==null)throw new Error(`Expected null, got ${_t(z)}`)}},h.rejects={toThrow:async z=>{try{throw await s,new Error("Expected promise to reject")}catch(E){if(z){let N=E?.message??String(E);if(!(typeof z=="string"?N.includes(z):z.test(N)))throw new Error(`Expected rejection matching ${z}, got "${N}"`)}}}},h}ec.anything=()=>ep(s=>s!=null);ec.any=s=>ep(h=>s===String?typeof h=="string":s===Number?typeof h=="number":s===Boolean?typeof h=="boolean":s===Function?typeof h=="function":h instanceof s);ec.objectContaining=s=>ep(h=>typeof h!="object"||h===null?!1:Object.keys(s).every(z=>ac(h[z],s[z])));ec.arrayContaining=s=>ep(h=>Array.isArray(h)?s.every(z=>h.some(E=>ac(E,z))):!1);ec.stringContaining=s=>ep(h=>typeof h=="string"&&h.includes(s));ec.stringMatching=s=>ep(h=>{let z=typeof s=="string"?new RegExp(s):s;return typeof h=="string"&&z.test(h)});var f2=[];function Q1(){for(let s of f2)s.mockClear()}function ro(s){let h=s,z=[],E=[],N=[],Q=function(...r){E.push(r);let yt;return z.length>0?yt=z.shift().apply(this,r):yt=h?h.apply(this,r):void 0,N.push(yt),yt};return Object.defineProperties(Q,{calls:{get:()=>E},callCount:{get:()=>E.length},returnValues:{get:()=>N},_isSpy:{value:!0}}),Q.reset=()=>{E.length=0,N.length=0,z.length=0},Q.setImpl=r=>(h=r,Q),Q.returns=r=>(h=(()=>r),Q),Q.mockImplementation=r=>(h=r,Q),Q.mockImplementationOnce=r=>(z.push(r),Q),Q.mockReturnValue=r=>(h=(()=>r),Q),Q.mockReturnValueOnce=r=>(z.push((()=>r)),Q),Q.mockResolvedValue=r=>(h=(()=>Promise.resolve(r)),Q),Q.mockResolvedValueOnce=r=>(z.push((()=>Promise.resolve(r))),Q),Q.mockRejectedValue=r=>(h=(()=>Promise.reject(r)),Q),Q.mockRejectedValueOnce=r=>(z.push((()=>Promise.reject(r))),Q),Q.mockClear=()=>{E.length=0,N.length=0,z.length=0},Q.mockReset=()=>{E.length=0,N.length=0,z.length=0,h=void 0},Q.mockRestore=()=>{Q.mockReset(),Q._restore&&Q._restore()},f2.push(Q),Q}function Y1(s,h){let z=s[h],E=ro(typeof z=="function"?z.bind(s):void 0);return E._restore=()=>{s[h]=z},s[h]=E,E}var Sv=c2(D2()),oy=c2(N2());function U2(){let s=globalThis.__HT_React;if(!s)throw new Error("React not available. Make sure react is installed in your project.");return s}var w1=oy.NoEventPriority,SE={supportsMutation:!0,supportsPersistence:!1,supportsHydration:!1,supportsMicrotasks:!0,isPrimaryRenderer:!0,warnsIfNotActing:!0,createInstance(){return{children:[]}},createTextInstance(){return{}},appendInitialChild(s,h){s.children.push(h)},appendChild(s,h){s.children.push(h)},appendChildToContainer(s,h){s.children.push(h)},removeChild(s,h){let z=s.children.indexOf(h);z!==-1&&s.children.splice(z,1)},removeChildFromContainer(s,h){let z=s.children.indexOf(h);z!==-1&&s.children.splice(z,1)},insertBefore(s,h,z){let E=s.children.indexOf(z);s.children.splice(E,0,h)},insertInContainerBefore(s,h,z){let E=s.children.indexOf(z);s.children.splice(E,0,h)},commitUpdate(){},commitTextUpdate(){},commitMount(){},prepareForCommit(){return null},resetAfterCommit(){},resetTextContent(){},finalizeInitialChildren(){return!1},shouldSetTextContent(){return!1},getRootHostContext(){return null},getChildHostContext(s){return s},getPublicInstance(s){return s},prepareUpdate(){return{}},clearContainer(s){s.children=[]},scheduleTimeout:globalThis.setTimeout||(s=>s()),cancelTimeout:globalThis.clearTimeout||(()=>{}),noTimeout:-1,scheduleMicrotask:typeof queueMicrotask=="function"?queueMicrotask:s=>Promise.resolve().then(s),getCurrentEventPriority(){return oy.DefaultEventPriority},setCurrentUpdatePriority(s){w1=s},getCurrentUpdatePriority(){return w1},resolveUpdatePriority(){return w1||oy.DefaultEventPriority},shouldAttemptEagerTransition(){return!1},trackSchedulerEvent(){},resolveEventType(){return""},resolveEventTimeStamp(){return-1.1},requestPostPaintCallback(){},maySuspendCommit(){return!1},preloadInstance(){return!0},startSuspendingCommit(){},suspendInstance(){},waitForCommitToBeReady(){return null},NotPendingTransition:null,resetFormInstance(){},hideInstance(){},unhideInstance(){},hideTextInstance(){},unhideTextInstance(){},getInstanceFromNode(){return null},prepareScopeUpdate(){},getInstanceFromScope(){return null},detachDeletedInstance(){},beforeActiveInstanceBlur(){},afterActiveInstanceBlur(){},preparePortalMount(){}};function EE(){return(typeof Sv.default=="function"?Sv.default:Sv.default.default)(SE)}var Ev=globalThis.__HT_drain||(()=>{});function R2(){Ev()}globalThis.IS_REACT_ACT_ENVIRONMENT=!0;function pf(s){let h=U2(),z=h.act||h.unstable_act;if(!z){s(),R2();return}z(()=>{let E=s();if(E&&typeof E.then=="function"){let N=!1,Q;E.then(()=>{N=!0},r=>{N=!0,Q=r});for(let r=0;r<50&&!N;r++)Ev();if(Q)throw Q}}),R2()}function zv(s,h){let z=[],E,N=U2(),Q=EE(),r={children:[]},yt=Q.createContainer(r,0,null,!1,!1,"",k=>{throw k},k=>{throw k},null,()=>{});function it({hookProps:k}){let Ft=s(k);return E=Ft,z.push(Ft),null}function ol(k){let Ft=N.createElement(it,{hookProps:k});return h?.wrapper?N.createElement(h.wrapper,null,Ft):Ft}return pf(()=>{Q.updateContainer(ol(h?.initialProps),yt,null,null)}),{result:{get current(){return E}},get current(){return E},get history(){return z},get renderCount(){return z.length},rerender(k){pf(()=>{Q.updateContainer(ol(k),yt,null,null)})},unmount(){pf(()=>{Q.updateContainer(null,yt,null,null)})}}}function Tv(s,h){let z=h?.timeout??1e3,E=Date.now();for(let N=0;N<100;N++){pf(()=>{Ev()}),Ev();let Q=s();if(Q!==!1&&Q!==null&&Q!==void 0)return Q;if(Date.now()-E>=z)throw new Error(`waitFor timed out after ${z}ms`)}throw new Error("waitFor exceeded max attempts")}var k1=[],C2=globalThis.__HT_mocks||{};globalThis.__HT_mocks=C2;var P1=globalThis.__HT_file_mocks||(globalThis.__HT_file_mocks={}),gv=[];function th(s,h){let z=h(),E=typeof z=="function"?z:O2(z),N=globalThis.__currentTestFile||"__global__";P1[N]||(P1[N]={}),P1[N][s]=E;let Q=C2[s];if(Q&&typeof Q=="object"&&typeof E=="object"){for(let r of Object.keys(E))if(!(r==="default"||r==="__esModule"))try{r in Q&&(gv.push({target:Q,key:r,original:Q[r]}),Q[r]=E[r])}catch{}if("default"in E&&"default"in Q){let r=E.default,yt=Q.default;if(yt&&typeof yt=="object"&&typeof r=="object")for(let it of Object.keys(r))try{it in yt&&(gv.push({target:yt,key:it,original:yt[it]}),yt[it]=r[it])}catch{}}}}function M2(){for(let{target:s,key:h,original:z}of gv)try{s[h]=z}catch{}gv=[]}function O2(s){let h={};for(let z of Object.keys(s)){let E=s[z];typeof E=="function"&&!E._isSpy?h[z]=ro(E):h[z]=E}return h}function _v(s,h){let z=O2(h);for(let E of Object.keys(z)){let N=Object.getOwnPropertyDescriptor(s,E);N&&k1.push({target:s,key:E,desc:N});let Q=z[E];try{Object.defineProperty(s,E,{get:()=>Q,configurable:!0,enumerable:!0})}catch{try{s[E]=Q}catch{}}}return z}function lh(){for(let{target:s,key:h,desc:z}of k1)try{Object.defineProperty(s,h,z)}catch{}k1=[]}var sy=[],cp=[];function b2(s,h){return s instanceof RegExp?s.test(h):h===s||h.startsWith(s+"?")?!0:h.split("?")[0]===s}function zE(s,h){for(let z=cp.length-1;z>=0;z--){let E=cp[z];if(E.method===s.toUpperCase()&&b2(E.url,h))return E.once&&cp.splice(z,1),E}for(let z=sy.length-1;z>=0;z--){let E=sy[z];if(E.method===s.toUpperCase()&&b2(E.url,h))return E.once&&sy.splice(z,1),E}}function ah(s,h){let z;typeof s=="string"?z=s:s&&typeof s=="object"?(z=s.url||s.href||String(s),!h&&s.method&&(h={method:s.method,headers:s.headers,body:s.body})):z=String(s);let E=(h?.method||"GET").toUpperCase(),N=h?.body;if(typeof N=="string")try{N=JSON.parse(N)}catch{}let Q={};h?.headers&&(typeof h.headers.forEach=="function"?h.headers.forEach((G,tt)=>{Q[tt]=G}):Object.assign(Q,h.headers));let r=zE(E,z);if(!r){let G=`[mockFetch] Unhandled ${E} ${z}`;return Promise.resolve({ok:!1,status:500,statusText:G,headers:{get:()=>null,has:()=>!1},json:()=>Promise.resolve({error:G}),text:()=>Promise.resolve(G)})}let yt={method:E,url:z,headers:Q,body:N},it=r.handler(yt),ol=it.status??200,k=it.body,Ft=it.headers||{};return k!==void 0&&!Ft["content-type"]&&(Ft["content-type"]="application/json"),Promise.resolve({ok:ol>=200&&ol<300,status:ol,statusText:it.statusText||(ol===200?"OK":"Error"),headers:{get:G=>Ft[G.toLowerCase()]||null,has:G=>G.toLowerCase()in Ft},json:()=>Promise.resolve(k),text:()=>Promise.resolve(typeof k=="string"?k:JSON.stringify(k)),clone:function(){return this}})}function my(s,h,z,E=!1){return{method:s,url:h,handler:typeof z=="function"?z:()=>z,once:E}}function eh(...s){sy.push(...s),globalThis.fetch=ah}var uh={get(s,h){return my("GET",s,h)},post(s,h){return my("POST",s,h)},put(s,h){return my("PUT",s,h)},delete(s,h){return my("DELETE",s,h)},patch(s,h){return my("PATCH",s,h)}},nh={json(s,h){return{body:s,status:h?.status??200,headers:h?.headers}},text(s,h){return{body:s,status:h?.status??200}},error(){return{status:500,body:{error:"Internal Server Error"}}}};function ch(...s){cp.push(...s),globalThis.fetch!==ah&&(globalThis.fetch=ah)}function ih(){cp.length=0}function fh(){sy.length=0,cp.length=0}var kE=Date.now;var qu=0,oh=1,Sa=[],py=!1,TE=globalThis.setTimeout,gE=globalThis.clearTimeout,_E=globalThis.setInterval,DE=globalThis.clearInterval,ip=globalThis.Date;function HE(s,h=0){let z=oh++;return Sa.push({id:z,fn:s,delay:h,fireAt:qu+h,type:"timeout",interval:0}),z}function AE(s){Sa=Sa.filter(h=>h.id!==s)}function NE(s,h){let z=oh++;return Sa.push({id:z,fn:s,delay:h,fireAt:qu+h,type:"interval",interval:h}),z}function RE(s){Sa=Sa.filter(h=>h.id!==s)}function mh(s){qu=s??0,oh=1,Sa=[],py=!0,globalThis.setTimeout=HE,globalThis.clearTimeout=AE,globalThis.setInterval=NE,globalThis.clearInterval=RE,globalThis.Date=function(...h){return h.length===0?new ip(qu):new ip(...h)},globalThis.Date.now=()=>qu,globalThis.Date.parse=ip.parse,globalThis.Date.UTC=ip.UTC,globalThis.Date.prototype=ip.prototype}function sh(){py=!1,Sa=[],globalThis.setTimeout=TE,globalThis.clearTimeout=gE,globalThis.setInterval=_E,globalThis.clearInterval=DE,globalThis.Date=ip}function Dv(s){if(!py)throw new Error("advanceTimersByTime called without useFakeTimers()");let h=qu+s;for(;qu<h;){let z=Sa.filter(N=>N.fireAt<=h).sort((N,Q)=>N.fireAt-Q.fireAt);if(z.length===0){qu=h;break}let E=z[0];qu=E.fireAt,E.type==="timeout"?(Sa=Sa.filter(N=>N.id!==E.id),E.fn()):(E.fireAt+=E.interval,E.fn())}qu=h}function ph(){if(!py)throw new Error("runAllTimers called without useFakeTimers()");let s=1e3;for(;Sa.length>0&&s-- >0;){let h=Sa.reduce((z,E)=>E.fireAt<z.fireAt?E:z);qu=h.fireAt,h.type==="timeout"?(Sa=Sa.filter(z=>z.id!==h.id),h.fn()):(h.fireAt+=h.interval,h.fn())}}function dh(){return Sa.length}function yh(){if(!py||Sa.length===0)return;let s=Sa.reduce((h,z)=>z.fireAt<h.fireAt?z:h);Dv(s.fireAt-qu)}var op=[],Eh=[],Av=[],zh=[],Th=[],Tn;function mp(s,h,z){op.push({name:Tn?`${Tn} > ${s}`:s,fn:h,options:z??{},group:Tn,file:globalThis.__currentTestFile})}mp.only=function(s,h){mp(s,h,{only:!0})};mp.skip=function(s,h){mp(s,h,{skip:!0})};function q2(s,h){let z=Tn;Tn=z?`${z} > ${s}`:s,h(),Tn=z}function B2(s){Eh.push({fn:s,group:Tn})}function j2(s){Av.push({fn:s,group:Tn})}function Q2(s){zh.push({fn:s,group:Tn})}function Y2(s){Th.push({fn:s,group:Tn})}function Hv(s,h){return s.group===void 0?!0:h===void 0?!1:h===s.group||h.startsWith(s.group+" > ")}var UE=globalThis.__HT_drain||(()=>{}),dy=0,G2=0,V2=0,CE=0,ME=1;function vh(){if(dy>0&&++G2>=dy)throw new Error("Test timed out after "+V2+"ms")}function gh(s){if(!s||typeof s.then!="function")return s;let h,z,E=!1;s.then(N=>{h=N,E=!0},N=>{z=N,E=!0});for(let N=0;N<100&&!E;N++)UE(),vh();if(!E)throw new Error("flushAsync: promise did not resolve after 100 drain cycles");if(z)throw z;return h}function fp(s){s&&typeof s.then=="function"&&gh(s)}var Ko=globalThis.__HT_print||(()=>{}),hh=0,Sh=0,x2=0;function OE(s,h,z,E){let N=h+z,Q=E>0?` \x1B[2m(${E}ms)\x1B[0m`:"";hh++,Sh+=N,z>0?(globalThis.__HT_coverage&&Ko("\r\x1B[K"),Ko(` \x1B[31mFAIL\x1B[0m ${s} \x1B[2m(${h} passed, ${z} failed)\x1B[0m${Q}
|
|
544
|
+
`)):globalThis.__HT_coverage?Ko(`\r\x1B[K \x1B[2mRunning...\x1B[0m ${hh}/${x2} files (${Sh} tests)`):Ko(` \x1B[32mPASS\x1B[0m ${s} \x1B[2m(${N} tests)\x1B[0m${Q}
|
|
545
|
+
`)}function bE(){let s=[],h=op.some(k=>k.options.only);x2=new Set(op.map(k=>k.file)).size,hh=0,Sh=0;let E,N=0,Q=0,r=Date.now(),yt=[];function it(){if(E&&N+Q>0){OE(E,N,Q,Date.now()-r);for(let k of yt)Ko(` \x1B[31m\u2717 ${k.name}\x1B[0m
|
|
546
|
+
`),k.error&&Ko(` \x1B[2m${k.error}\x1B[0m
|
|
547
|
+
`)}N=0,Q=0,yt=[],r=Date.now()}let ol=new Set;for(let k of op){if(k.file!==E&&(it(),E=k.file),globalThis.__currentTestFile=k.file,k.options.skip||h&&!k.options.only){s.push({name:k.name,status:"skip",duration:0,file:k.file});continue}for(let tt of zh)!ol.has(tt)&&Hv(tt,k.group)&&(ol.add(tt),fp(tt.fn()));let Ft=k.options.timeout??CE;V2=Ft,G2=0,dy=Ft>0?Ft*ME:0;let G=Date.now();try{for(let ne of Eh)Hv(ne,k.group)&&(fp(ne.fn()),vh());let tt={expect:ec,spy:ro,useMock:_v,renderHook:zv,act:pf,waitFor:Tv};fp(k.fn(tt)),vh();for(let ne of Av)Hv(ne,k.group)&&fp(ne.fn());lh(),dy=0,N++,s.push({name:k.name,status:"pass",duration:Date.now()-G,file:k.file})}catch(tt){dy=0;for(let ne of Av)if(Hv(ne,k.group))try{fp(ne.fn())}catch{}lh(),Q++,yt.push({name:k.name,error:tt?.message??String(tt)}),s.push({name:k.name,status:"fail",error:tt?.message??String(tt),duration:Date.now()-G,file:k.file})}}it(),globalThis.__HT_coverage&&Ko("\r\x1B[K");for(let k of Th)try{fp(k.fn())}catch{}return s}function qE(s,h){op.push({name:`[CRASH] ${s}`,fn:()=>{throw new Error(h)},options:{},file:s})}function BE(){op.length=0,Eh.length=0,Av.length=0,zh.length=0,Th.length=0,Tn=void 0}globalThis.__HT={test:mp,expect:ec,spy:ro,spyOn:Y1,clearAllMocks:Q1,group:q2,beforeEach:B2,afterEach:j2,beforeAll:Q2,afterAll:Y2,runTests:bE,renderHook:zv,act:pf,waitFor:Tv,useMock:_v,mockModule:th,mockFetch:eh,mockFetchUse:ch,mockFetchReset:ih,mockFetchClear:fh,http:uh,HttpResponse:nh,flushAsync:gh,registerCrash:qE,resetRegistry:BE,resetMockModulePatches:M2,useFakeTimers:mh,useRealTimers:sh,advanceTimersByTime:Dv,runAllTimers:ph,getTimerCount:dh,advanceTimersToNextTimer:yh};return yE(jE);})();
|
|
548
|
+
/*! Bundled license information:
|
|
549
|
+
|
|
550
|
+
scheduler/cjs/scheduler.production.js:
|
|
551
|
+
(**
|
|
552
|
+
* @license React
|
|
553
|
+
* scheduler.production.js
|
|
554
|
+
*
|
|
555
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
556
|
+
*
|
|
557
|
+
* This source code is licensed under the MIT license found in the
|
|
558
|
+
* LICENSE file in the root directory of this source tree.
|
|
559
|
+
*)
|
|
560
|
+
|
|
561
|
+
scheduler/cjs/scheduler.development.js:
|
|
562
|
+
(**
|
|
563
|
+
* @license React
|
|
564
|
+
* scheduler.development.js
|
|
565
|
+
*
|
|
566
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
567
|
+
*
|
|
568
|
+
* This source code is licensed under the MIT license found in the
|
|
569
|
+
* LICENSE file in the root directory of this source tree.
|
|
570
|
+
*)
|
|
571
|
+
|
|
572
|
+
react-reconciler/cjs/react-reconciler.production.js:
|
|
573
|
+
(**
|
|
574
|
+
* @license React
|
|
575
|
+
* react-reconciler.production.js
|
|
576
|
+
*
|
|
577
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
578
|
+
*
|
|
579
|
+
* This source code is licensed under the MIT license found in the
|
|
580
|
+
* LICENSE file in the root directory of this source tree.
|
|
581
|
+
*)
|
|
582
|
+
|
|
583
|
+
react-reconciler/cjs/react-reconciler.development.js:
|
|
584
|
+
(**
|
|
585
|
+
* @license React
|
|
586
|
+
* react-reconciler.development.js
|
|
587
|
+
*
|
|
588
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
589
|
+
*
|
|
590
|
+
* This source code is licensed under the MIT license found in the
|
|
591
|
+
* LICENSE file in the root directory of this source tree.
|
|
592
|
+
*)
|
|
593
|
+
|
|
594
|
+
react-reconciler/cjs/react-reconciler-constants.production.js:
|
|
595
|
+
(**
|
|
596
|
+
* @license React
|
|
597
|
+
* react-reconciler-constants.production.js
|
|
598
|
+
*
|
|
599
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
600
|
+
*
|
|
601
|
+
* This source code is licensed under the MIT license found in the
|
|
602
|
+
* LICENSE file in the root directory of this source tree.
|
|
603
|
+
*)
|
|
604
|
+
|
|
605
|
+
react-reconciler/cjs/react-reconciler-constants.development.js:
|
|
606
|
+
(**
|
|
607
|
+
* @license React
|
|
608
|
+
* react-reconciler-constants.development.js
|
|
609
|
+
*
|
|
610
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
611
|
+
*
|
|
612
|
+
* This source code is licensed under the MIT license found in the
|
|
613
|
+
* LICENSE file in the root directory of this source tree.
|
|
614
|
+
*)
|
|
615
|
+
*/
|