react-server-dom-webpack 18.3.0-next-9c54b29b4-20230322 → 18.3.0-next-41b4714f1-20230328
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/cjs/react-server-dom-webpack-client.browser.development.js +10 -10
- package/cjs/react-server-dom-webpack-client.edge.development.js +6 -6
- package/cjs/react-server-dom-webpack-client.node.development.js +6 -6
- package/cjs/react-server-dom-webpack-client.node.unbundled.development.js +6 -6
- package/cjs/react-server-dom-webpack-server.browser.development.js +14 -104
- package/cjs/react-server-dom-webpack-server.browser.production.min.js +15 -17
- package/cjs/react-server-dom-webpack-server.edge.development.js +14 -104
- package/cjs/react-server-dom-webpack-server.edge.production.min.js +17 -19
- package/cjs/react-server-dom-webpack-server.node.development.js +13 -103
- package/cjs/react-server-dom-webpack-server.node.production.min.js +17 -19
- package/cjs/react-server-dom-webpack-server.node.unbundled.development.js +13 -103
- package/cjs/react-server-dom-webpack-server.node.unbundled.production.min.js +17 -19
- package/package.json +3 -3
- package/umd/react-server-dom-webpack-client.browser.development.js +10 -10
- package/umd/react-server-dom-webpack-server.browser.development.js +14 -104
- package/umd/react-server-dom-webpack-server.browser.production.min.js +39 -41
@@ -182,7 +182,7 @@
|
|
182
182
|
var ContextRegistry = ReactSharedInternals.ContextRegistry;
|
183
183
|
function getOrCreateServerContext(globalName) {
|
184
184
|
if (!ContextRegistry[globalName]) {
|
185
|
-
ContextRegistry[globalName] = React.createServerContext(globalName, // $FlowFixMe function signature doesn't reflect the symbol value
|
185
|
+
ContextRegistry[globalName] = React.createServerContext(globalName, // $FlowFixMe[incompatible-call] function signature doesn't reflect the symbol value
|
186
186
|
REACT_SERVER_CONTEXT_DEFAULT_VALUE_NOT_LOADED);
|
187
187
|
}
|
188
188
|
|
@@ -286,17 +286,17 @@
|
|
286
286
|
}
|
287
287
|
|
288
288
|
function createPendingChunk(response) {
|
289
|
-
// $FlowFixMe Flow doesn't support functions as constructors
|
289
|
+
// $FlowFixMe[invalid-constructor] Flow doesn't support functions as constructors
|
290
290
|
return new Chunk(PENDING, null, null, response);
|
291
291
|
}
|
292
292
|
|
293
293
|
function createBlockedChunk(response) {
|
294
|
-
// $FlowFixMe Flow doesn't support functions as constructors
|
294
|
+
// $FlowFixMe[invalid-constructor] Flow doesn't support functions as constructors
|
295
295
|
return new Chunk(BLOCKED, null, null, response);
|
296
296
|
}
|
297
297
|
|
298
298
|
function createErrorChunk(response, error) {
|
299
|
-
// $FlowFixMe Flow doesn't support functions as constructors
|
299
|
+
// $FlowFixMe[invalid-constructor] Flow doesn't support functions as constructors
|
300
300
|
return new Chunk(ERRORED, null, error, response);
|
301
301
|
}
|
302
302
|
|
@@ -345,12 +345,12 @@
|
|
345
345
|
}
|
346
346
|
|
347
347
|
function createResolvedModelChunk(response, value) {
|
348
|
-
// $FlowFixMe Flow doesn't support functions as constructors
|
348
|
+
// $FlowFixMe[invalid-constructor] Flow doesn't support functions as constructors
|
349
349
|
return new Chunk(RESOLVED_MODEL, value, null, response);
|
350
350
|
}
|
351
351
|
|
352
352
|
function createResolvedModuleChunk(response, value) {
|
353
|
-
// $FlowFixMe Flow doesn't support functions as constructors
|
353
|
+
// $FlowFixMe[invalid-constructor] Flow doesn't support functions as constructors
|
354
354
|
return new Chunk(RESOLVED_MODULE, value, null, response);
|
355
355
|
}
|
356
356
|
|
@@ -1301,7 +1301,7 @@
|
|
1301
1301
|
var parent = this;
|
1302
1302
|
|
1303
1303
|
{
|
1304
|
-
// $FlowFixMe
|
1304
|
+
// $FlowFixMe[incompatible-use]
|
1305
1305
|
var originalValue = this[key];
|
1306
1306
|
|
1307
1307
|
if (typeof originalValue === 'object' && originalValue !== value) {
|
@@ -1378,7 +1378,7 @@
|
|
1378
1378
|
}
|
1379
1379
|
}
|
1380
1380
|
}
|
1381
|
-
} // $FlowFixMe
|
1381
|
+
} // $FlowFixMe[incompatible-return]
|
1382
1382
|
|
1383
1383
|
|
1384
1384
|
return value;
|
@@ -1418,11 +1418,11 @@
|
|
1418
1418
|
}
|
1419
1419
|
|
1420
1420
|
if (typeof value === 'symbol') {
|
1421
|
-
// $FlowFixMe `description` might be undefined
|
1421
|
+
// $FlowFixMe[incompatible-type] `description` might be undefined
|
1422
1422
|
var name = value.description;
|
1423
1423
|
|
1424
1424
|
if (Symbol.for(name) !== value) {
|
1425
|
-
throw new Error('Only global symbols received from Symbol.for(...) can be passed to Server Functions. ' + ("The symbol Symbol.for(" + // $FlowFixMe `description` might be undefined
|
1425
|
+
throw new Error('Only global symbols received from Symbol.for(...) can be passed to Server Functions. ' + ("The symbol Symbol.for(" + // $FlowFixMe[incompatible-type] `description` might be undefined
|
1426
1426
|
value.description + ") cannot be found among global symbols."));
|
1427
1427
|
}
|
1428
1428
|
|
@@ -144,7 +144,7 @@
|
|
144
144
|
function closeWithError(destination, error) {
|
145
145
|
// $FlowFixMe[method-unbinding]
|
146
146
|
if (typeof destination.error === 'function') {
|
147
|
-
// $FlowFixMe: This is an Error object or the destination accepts other types.
|
147
|
+
// $FlowFixMe[incompatible-call]: This is an Error object or the destination accepts other types.
|
148
148
|
destination.error(error);
|
149
149
|
} else {
|
150
150
|
// Earlier implementations doesn't support this method. In that environment you're
|
@@ -283,9 +283,6 @@
|
|
283
283
|
// When falsy, it should be removed.
|
284
284
|
|
285
285
|
var NUMERIC = 5; // An attribute that must be positive numeric or parse as a positive numeric.
|
286
|
-
// When falsy, it should be removed.
|
287
|
-
|
288
|
-
var POSITIVE_NUMERIC = 6;
|
289
286
|
|
290
287
|
function PropertyInfoRecord(name, type, mustUseProperty, attributeName, attributeNamespace, sanitizeURL, removeEmptyString) {
|
291
288
|
this.acceptsBooleans = type === BOOLEANISH_STRING || type === BOOLEAN || type === OVERLOADED_BOOLEAN;
|
@@ -297,18 +294,6 @@
|
|
297
294
|
this.sanitizeURL = sanitizeURL;
|
298
295
|
this.removeEmptyString = removeEmptyString;
|
299
296
|
} // When adding attributes to this list, be sure to also add them to
|
300
|
-
// This is a mapping from React prop names to the attribute names.
|
301
|
-
|
302
|
-
[['acceptCharset', 'accept-charset'], ['className', 'class'], ['htmlFor', 'for'], ['httpEquiv', 'http-equiv']].forEach(function (_ref) {
|
303
|
-
var name = _ref[0],
|
304
|
-
attributeName = _ref[1];
|
305
|
-
// $FlowFixMe[invalid-constructor] Flow no longer supports calling new on functions
|
306
|
-
new PropertyInfoRecord(name, STRING, false, // mustUseProperty
|
307
|
-
attributeName, // attributeName
|
308
|
-
null, // attributeNamespace
|
309
|
-
false, // sanitizeURL
|
310
|
-
false);
|
311
|
-
}); // These are "enumerated" HTML attributes that accept "true" and "false".
|
312
297
|
// In React, we let users pass `true` and `false` even though technically
|
313
298
|
// these aren't boolean attributes (they are coerced to strings).
|
314
299
|
|
@@ -320,18 +305,6 @@
|
|
320
305
|
false, // sanitizeURL
|
321
306
|
false);
|
322
307
|
}); // These are "enumerated" SVG attributes that accept "true" and "false".
|
323
|
-
// In React, we let users pass `true` and `false` even though technically
|
324
|
-
// these aren't boolean attributes (they are coerced to strings).
|
325
|
-
// Since these are SVG attributes, their attribute names are case-sensitive.
|
326
|
-
|
327
|
-
['autoReverse', 'externalResourcesRequired', 'focusable', 'preserveAlpha'].forEach(function (name) {
|
328
|
-
// $FlowFixMe[invalid-constructor] Flow no longer supports calling new on functions
|
329
|
-
new PropertyInfoRecord(name, BOOLEANISH_STRING, false, // mustUseProperty
|
330
|
-
name, // attributeName
|
331
|
-
null, // attributeNamespace
|
332
|
-
false, // sanitizeURL
|
333
|
-
false);
|
334
|
-
}); // These are HTML boolean attributes.
|
335
308
|
|
336
309
|
['allowFullScreen', 'async', // Note: there is a special case that prevents it from being written to the DOM
|
337
310
|
// on the client side because the browsers are inconsistent. Instead we call focus().
|
@@ -344,46 +317,6 @@
|
|
344
317
|
false, // sanitizeURL
|
345
318
|
false);
|
346
319
|
}); // These are the few React props that we set as DOM properties
|
347
|
-
// rather than attributes. These are all booleans.
|
348
|
-
|
349
|
-
['checked', // Note: `option.selected` is not updated if `select.multiple` is
|
350
|
-
// disabled with `removeAttribute`. We have special logic for handling this.
|
351
|
-
'multiple', 'muted', 'selected' // NOTE: if you add a camelCased prop to this list,
|
352
|
-
// you'll need to set attributeName to name.toLowerCase()
|
353
|
-
// instead in the assignment below.
|
354
|
-
].forEach(function (name) {
|
355
|
-
// $FlowFixMe[invalid-constructor] Flow no longer supports calling new on functions
|
356
|
-
new PropertyInfoRecord(name, BOOLEAN, true, // mustUseProperty
|
357
|
-
name, // attributeName
|
358
|
-
null, // attributeNamespace
|
359
|
-
false, // sanitizeURL
|
360
|
-
false);
|
361
|
-
}); // These are HTML attributes that are "overloaded booleans": they behave like
|
362
|
-
// booleans, but can also accept a string value.
|
363
|
-
|
364
|
-
['capture', 'download' // NOTE: if you add a camelCased prop to this list,
|
365
|
-
// you'll need to set attributeName to name.toLowerCase()
|
366
|
-
// instead in the assignment below.
|
367
|
-
].forEach(function (name) {
|
368
|
-
// $FlowFixMe[invalid-constructor] Flow no longer supports calling new on functions
|
369
|
-
new PropertyInfoRecord(name, OVERLOADED_BOOLEAN, false, // mustUseProperty
|
370
|
-
name, // attributeName
|
371
|
-
null, // attributeNamespace
|
372
|
-
false, // sanitizeURL
|
373
|
-
false);
|
374
|
-
}); // These are HTML attributes that must be positive numbers.
|
375
|
-
|
376
|
-
['cols', 'rows', 'size', 'span' // NOTE: if you add a camelCased prop to this list,
|
377
|
-
// you'll need to set attributeName to name.toLowerCase()
|
378
|
-
// instead in the assignment below.
|
379
|
-
].forEach(function (name) {
|
380
|
-
// $FlowFixMe[invalid-constructor] Flow no longer supports calling new on functions
|
381
|
-
new PropertyInfoRecord(name, POSITIVE_NUMERIC, false, // mustUseProperty
|
382
|
-
name, // attributeName
|
383
|
-
null, // attributeNamespace
|
384
|
-
false, // sanitizeURL
|
385
|
-
false);
|
386
|
-
}); // These are HTML attributes that must be numbers.
|
387
320
|
|
388
321
|
['rowSpan', 'start'].forEach(function (name) {
|
389
322
|
// $FlowFixMe[invalid-constructor] Flow no longer supports calling new on functions
|
@@ -408,34 +341,21 @@
|
|
408
341
|
// you'll need to set attributeName to name.toLowerCase()
|
409
342
|
// instead in the assignment below.
|
410
343
|
].forEach(function (attributeName) {
|
411
|
-
|
412
|
-
|
413
|
-
new PropertyInfoRecord(name, STRING, false, // mustUseProperty
|
414
|
-
attributeName, null, // attributeNamespace
|
415
|
-
false, // sanitizeURL
|
416
|
-
false);
|
344
|
+
attributeName.replace(CAMELIZE, capitalize); // $FlowFixMe[invalid-constructor] Flow no longer supports calling new on functions
|
417
345
|
}); // String SVG attributes with the xlink namespace.
|
418
346
|
|
419
347
|
['xlink:actuate', 'xlink:arcrole', 'xlink:role', 'xlink:show', 'xlink:title', 'xlink:type' // NOTE: if you add a camelCased prop to this list,
|
420
348
|
// you'll need to set attributeName to name.toLowerCase()
|
421
349
|
// instead in the assignment below.
|
422
350
|
].forEach(function (attributeName) {
|
423
|
-
|
424
|
-
|
425
|
-
new PropertyInfoRecord(name, STRING, false, // mustUseProperty
|
426
|
-
attributeName, 'http://www.w3.org/1999/xlink', false, // sanitizeURL
|
427
|
-
false);
|
351
|
+
attributeName.replace(CAMELIZE, capitalize); // $FlowFixMe[invalid-constructor] Flow no longer supports calling new on functions
|
428
352
|
}); // String SVG attributes with the xml namespace.
|
429
353
|
|
430
354
|
['xml:base', 'xml:lang', 'xml:space' // NOTE: if you add a camelCased prop to this list,
|
431
355
|
// you'll need to set attributeName to name.toLowerCase()
|
432
356
|
// instead in the assignment below.
|
433
357
|
].forEach(function (attributeName) {
|
434
|
-
|
435
|
-
|
436
|
-
new PropertyInfoRecord(name, STRING, false, // mustUseProperty
|
437
|
-
attributeName, 'http://www.w3.org/XML/1998/namespace', false, // sanitizeURL
|
438
|
-
false);
|
358
|
+
attributeName.replace(CAMELIZE, capitalize); // $FlowFixMe[invalid-constructor] Flow no longer supports calling new on functions
|
439
359
|
}); // These attribute exists both in HTML and SVG.
|
440
360
|
// The attribute name is case-sensitive in SVG so we can't just use
|
441
361
|
// the React name like we do for attributes that exist only in HTML.
|
@@ -448,16 +368,6 @@
|
|
448
368
|
false, // sanitizeURL
|
449
369
|
false);
|
450
370
|
}); // These attributes accept URLs. These must not allow javascript: URLS.
|
451
|
-
|
452
|
-
new PropertyInfoRecord('xlinkHref', STRING, false, // mustUseProperty
|
453
|
-
'xlink:href', 'http://www.w3.org/1999/xlink', true, // sanitizeURL
|
454
|
-
false);
|
455
|
-
|
456
|
-
new PropertyInfoRecord('formAction', STRING, false, // mustUseProperty
|
457
|
-
'formaction', // attributeName
|
458
|
-
null, // attributeNamespace
|
459
|
-
true, // sanitizeURL
|
460
|
-
false);
|
461
371
|
['src', 'href', 'action'].forEach(function (attributeName) {
|
462
372
|
// $FlowFixMe[invalid-constructor] Flow no longer supports calling new on functions
|
463
373
|
new PropertyInfoRecord(attributeName, STRING, false, // mustUseProperty
|
@@ -552,7 +462,7 @@
|
|
552
462
|
// Run `yarn generate-inline-fizz-runtime` to generate.
|
553
463
|
var clientRenderBoundary = '$RX=function(b,c,d,e){var a=document.getElementById(b);a&&(b=a.previousSibling,b.data="$!",a=a.dataset,c&&(a.dgst=c),d&&(a.msg=d),e&&(a.stck=e),b._reactRetry&&b._reactRetry())};';
|
554
464
|
var completeBoundary = '$RC=function(b,c,e){c=document.getElementById(c);c.parentNode.removeChild(c);var a=document.getElementById(b);if(a){b=a.previousSibling;if(e)b.data="$!",a.setAttribute("data-dgst",e);else{e=b.parentNode;a=b.nextSibling;var f=0;do{if(a&&8===a.nodeType){var d=a.data;if("/$"===d)if(0===f)break;else f--;else"$"!==d&&"$?"!==d&&"$!"!==d||f++}d=a.nextSibling;e.removeChild(a);a=d}while(a);for(;c.firstChild;)e.insertBefore(c.firstChild,a);b.data="$"}b._reactRetry&&b._reactRetry()}};';
|
555
|
-
var completeBoundaryWithStyles = '$RM=new Map;\n$RR=function(t,
|
465
|
+
var completeBoundaryWithStyles = '$RM=new Map;\n$RR=function(r,t,w){for(var u=$RC,n=$RM,p=new Map,q=document,g,b,h=q.querySelectorAll("link[data-precedence],style[data-precedence]"),v=[],k=0;b=h[k++];)"not all"===b.getAttribute("media")?v.push(b):("LINK"===b.tagName&&n.set(b.getAttribute("href"),b),p.set(b.dataset.precedence,g=b));b=0;h=[];var l,a;for(k=!0;;){if(k){var f=w[b++];if(!f){k=!1;b=0;continue}var c=!1,m=0;var d=f[m++];if(a=n.get(d)){var e=a._p;c=!0}else{a=q.createElement("link");a.href=d;a.rel="stylesheet";for(a.dataset.precedence=\nl=f[m++];e=f[m++];)a.setAttribute(e,f[m++]);e=a._p=new Promise(function(x,y){a.onload=x;a.onerror=y});n.set(d,a)}d=a.getAttribute("media");!e||"l"===e.s||d&&!matchMedia(d).matches||h.push(e);if(c)continue}else{a=v[b++];if(!a)break;l=a.getAttribute("data-precedence");a.removeAttribute("media")}c=p.get(l)||g;c===g&&(g=a);p.set(l,a);c?c.parentNode.insertBefore(a,c.nextSibling):(c=q.head,c.insertBefore(a,c.firstChild))}Promise.all(h).then(u.bind(null,r,t,""),u.bind(null,r,t,"Resource failed to load"))};';
|
556
466
|
var completeSegment = '$RS=function(a,b){a=document.getElementById(a);b=document.getElementById(b);for(a.parentNode.removeChild(a);a.firstChild;)b.parentNode.insertBefore(a.firstChild,b);b.parentNode.removeChild(b)};';
|
557
467
|
|
558
468
|
stringToPrecomputedChunk('"></template>');
|
@@ -790,7 +700,7 @@
|
|
790
700
|
|
791
701
|
if (prev !== next) {
|
792
702
|
if (prev === null) {
|
793
|
-
// $FlowFixMe: This has to be non-null since it's not equal to prev.
|
703
|
+
// $FlowFixMe[incompatible-call]: This has to be non-null since it's not equal to prev.
|
794
704
|
pushAllNext(next);
|
795
705
|
} else if (next === null) {
|
796
706
|
popAllPrevious(prev);
|
@@ -1460,7 +1370,7 @@
|
|
1460
1370
|
var ContextRegistry = ReactSharedInternals.ContextRegistry;
|
1461
1371
|
function getOrCreateServerContext(globalName) {
|
1462
1372
|
if (!ContextRegistry[globalName]) {
|
1463
|
-
ContextRegistry[globalName] = React.createServerContext(globalName, // $FlowFixMe function signature doesn't reflect the symbol value
|
1373
|
+
ContextRegistry[globalName] = React.createServerContext(globalName, // $FlowFixMe[incompatible-call] function signature doesn't reflect the symbol value
|
1464
1374
|
REACT_SERVER_CONTEXT_DEFAULT_VALUE_NOT_LOADED);
|
1465
1375
|
}
|
1466
1376
|
|
@@ -1922,7 +1832,7 @@
|
|
1922
1832
|
var isInsideContextValue = false;
|
1923
1833
|
function resolveModelToJSON(request, parent, key, value) {
|
1924
1834
|
{
|
1925
|
-
// $FlowFixMe
|
1835
|
+
// $FlowFixMe[incompatible-use]
|
1926
1836
|
var originalValue = parent[key];
|
1927
1837
|
|
1928
1838
|
if (typeof originalValue === 'object' && originalValue !== value) {
|
@@ -2079,7 +1989,7 @@
|
|
2079
1989
|
}
|
2080
1990
|
}
|
2081
1991
|
}
|
2082
|
-
} // $FlowFixMe
|
1992
|
+
} // $FlowFixMe[incompatible-return]
|
2083
1993
|
|
2084
1994
|
|
2085
1995
|
return value;
|
@@ -2119,13 +2029,13 @@
|
|
2119
2029
|
|
2120
2030
|
if (existingId !== undefined) {
|
2121
2031
|
return serializeByValueID(existingId);
|
2122
|
-
} // $FlowFixMe `description` might be undefined
|
2032
|
+
} // $FlowFixMe[incompatible-type] `description` might be undefined
|
2123
2033
|
|
2124
2034
|
|
2125
2035
|
var name = value.description;
|
2126
2036
|
|
2127
2037
|
if (Symbol.for(name) !== value) {
|
2128
|
-
throw new Error('Only global symbols received from Symbol.for(...) can be passed to Client Components. ' + ("The symbol Symbol.for(" + // $FlowFixMe `description` might be undefined
|
2038
|
+
throw new Error('Only global symbols received from Symbol.for(...) can be passed to Client Components. ' + ("The symbol Symbol.for(" + // $FlowFixMe[incompatible-type] `description` might be undefined
|
2129
2039
|
value.description + ") cannot be found among global symbols.") + describeObjectForErrorMessage(parent, key));
|
2130
2040
|
}
|
2131
2041
|
|
@@ -2653,7 +2563,7 @@
|
|
2653
2563
|
}
|
2654
2564
|
|
2655
2565
|
function createPendingChunk(response) {
|
2656
|
-
// $FlowFixMe Flow doesn't support functions as constructors
|
2566
|
+
// $FlowFixMe[invalid-constructor] Flow doesn't support functions as constructors
|
2657
2567
|
return new Chunk(PENDING, null, null, response);
|
2658
2568
|
}
|
2659
2569
|
|
@@ -2702,7 +2612,7 @@
|
|
2702
2612
|
}
|
2703
2613
|
|
2704
2614
|
function createResolvedModelChunk(response, value) {
|
2705
|
-
// $FlowFixMe Flow doesn't support functions as constructors
|
2615
|
+
// $FlowFixMe[invalid-constructor] Flow doesn't support functions as constructors
|
2706
2616
|
return new Chunk(RESOLVED_MODEL, value, null, response);
|
2707
2617
|
}
|
2708
2618
|
|
@@ -3012,7 +2922,7 @@
|
|
3012
2922
|
startFlowing(request, controller);
|
3013
2923
|
},
|
3014
2924
|
cancel: function (reason) {}
|
3015
|
-
}, // $FlowFixMe size() methods are not allowed on byte streams.
|
2925
|
+
}, // $FlowFixMe[prop-missing] size() methods are not allowed on byte streams.
|
3016
2926
|
{
|
3017
2927
|
highWaterMark: 0
|
3018
2928
|
});
|
@@ -7,53 +7,51 @@
|
|
7
7
|
* This source code is licensed under the MIT license found in the
|
8
8
|
* LICENSE file in the root directory of this source tree.
|
9
9
|
*/
|
10
|
-
(function(){'use strict';(function(
|
11
|
-
d),
|
10
|
+
(function(){'use strict';(function(w,B){"object"===typeof exports&&"undefined"!==typeof module?B(exports,require("react")):"function"===typeof define&&define.amd?define(["exports","react"],B):(w="undefined"!==typeof globalThis?globalThis:w||self,B(w.ReactServerDOMServer={},w.React))})(this,function(w,B){function X(a,b){if(0!==b.length)if(512<b.length)0<n&&(a.enqueue(new Uint8Array(p.buffer,0,n)),p=new Uint8Array(512),n=0),a.enqueue(b);else{var d=p.length-n;d<b.length&&(0===d?a.enqueue(p):(p.set(b.subarray(0,
|
11
|
+
d),n),a.enqueue(p),b=b.subarray(d)),p=new Uint8Array(512),n=0);p.set(b,n);n+=b.length}return!0}function f(a){return D.encode(a)}function ta(a,b){"function"===typeof a.error?a.error(b):a.close()}function ua(a,b,d){a=K(d,a.toJSON);b=b.toString(16)+":"+a+"\n";return D.encode(b)}function Y(a,b,d){a=K(d);b=b.toString(16)+":"+a+"\n";return D.encode(b)}function E(a,b,d,c,e,g,h){this.acceptsBooleans=2===b||3===b||4===b;this.attributeName=c;this.attributeNamespace=e;this.mustUseProperty=d;this.propertyName=
|
12
12
|
a;this.type=b;this.sanitizeURL=g;this.removeEmptyString=h}function L(a,b){if(a!==b){a.context._currentValue=a.parentValue;a=a.parent;var d=b.parent;if(null===a){if(null!==d)throw Error("The stacks must reach the root at the same time. This is a bug in React.");}else{if(null===d)throw Error("The stacks must reach the root at the same time. This is a bug in React.");L(a,d);b.context._currentValue=b.value}}}function va(a){a.context._currentValue=a.parentValue;a=a.parent;null!==a&&va(a)}function wa(a){var b=
|
13
13
|
a.parent;null!==b&&wa(b);a.context._currentValue=a.value}function xa(a,b){a.context._currentValue=a.parentValue;a=a.parent;if(null===a)throw Error("The depth must equal at least at zero before reaching the root. This is a bug in React.");a.depth===b.depth?L(a,b):xa(a,b)}function ya(a,b){var d=b.parent;if(null===d)throw Error("The depth must equal at least at zero before reaching the root. This is a bug in React.");a.depth===d.depth?L(a,d):ya(a,d);b.context._currentValue=b.value}function Z(a){var b=
|
14
|
-
|
15
|
-
b.status){var e=b;e.status="fulfilled";e.value=c}},function(c){if("pending"===b.status){var e=b;e.status="rejected";e.reason=c}}),b.status){case "fulfilled":return b.value;case "rejected":throw b.reason;}M=b;throw aa;}}function Ba(){if(null===M)throw Error("Expected a suspended thenable. This is a bug in React. Please file an issue.");var a=M;M=null;return a}function Ca(){var a=
|
14
|
+
r;b!==a&&(null===b?wa(a):null===a?va(b):b.depth===a.depth?L(b,a):b.depth>a.depth?xa(b,a):ya(b,a),r=a)}function za(a,b){var d=a._currentValue;a._currentValue=b;var c=r;return r=a={parent:c,depth:null===c?0:c.depth+1,context:a,parentValue:d,value:b}}function Aa(){}function Ta(a,b,d){d=a[d];void 0===d?a.push(b):d!==b&&(b.then(Aa,Aa),b=d);switch(b.status){case "fulfilled":return b.value;case "rejected":throw b.reason;default:if("string"!==typeof b.status)switch(a=b,a.status="pending",a.then(function(c){if("pending"===
|
15
|
+
b.status){var e=b;e.status="fulfilled";e.value=c}},function(c){if("pending"===b.status){var e=b;e.status="rejected";e.reason=c}}),b.status){case "fulfilled":return b.value;case "rejected":throw b.reason;}M=b;throw aa;}}function Ba(){if(null===M)throw Error("Expected a suspended thenable. This is a bug in React. Please file an issue.");var a=M;M=null;return a}function Ca(){var a=x;x=null;return a}function Da(a){return a._currentValue}function q(){throw Error("This Hook is not supported in Server Components.");
|
16
16
|
}function Ua(){throw Error("Refreshing the cache is not supported in Server Components.");}function ba(){return(new AbortController).signal}function Ea(a){return Object.prototype.toString.call(a).replace(/^\[object (.*)\]$/,function(b,d){return d})}function ca(a){switch(typeof a){case "string":return JSON.stringify(10>=a.length?a:a.substr(0,10)+"...");case "object":if(da(a))return"[...]";a=Ea(a);return"Object"===a?"{...}":a;case "function":return"function";default:return String(a)}}function N(a){if("string"===
|
17
|
-
typeof a)return a;switch(a){case Va:return"Suspense";case Wa:return"SuspenseList"}if("object"===typeof a)switch(a.$$typeof){case Fa:return N(a.render);case Ga:return N(a.type);case F:var b=a._payload;a=a._init;try{return N(a(b))}catch(d){}}return""}function
|
18
|
-
e.length+h.length?e+h:e+"..."}e+="]"}else if(a.$$typeof===
|
17
|
+
typeof a)return a;switch(a){case Va:return"Suspense";case Wa:return"SuspenseList"}if("object"===typeof a)switch(a.$$typeof){case Fa:return N(a.render);case Ga:return N(a.type);case F:var b=a._payload;a=a._init;try{return N(a(b))}catch(d){}}return""}function y(a,b){var d=Ea(a);if("Object"!==d&&"Array"!==d)return d;d=-1;var c=0;if(da(a)){var e="[";for(var g=0;g<a.length;g++){0<g&&(e+=", ");var h=a[g];h="object"===typeof h&&null!==h?y(h):ca(h);""+g===b?(d=e.length,c=h.length,e+=h):e=10>h.length&&40>
|
18
|
+
e.length+h.length?e+h:e+"..."}e+="]"}else if(a.$$typeof===m)e="<"+N(a.type)+"/>";else{e="{";g=Object.keys(a);for(h=0;h<g.length;h++){0<h&&(e+=", ");var k=g[h],l=JSON.stringify(k);e+=('"'+k+'"'===l?k:l)+": ";l=a[k];l="object"===typeof l&&null!==l?y(l):ca(l);k===b?(d=e.length,c=l.length,e+=l):e=10>l.length&&40>e.length+l.length?e+l:e+"..."}e+="}"}return void 0===b?e:-1<d&&0<c?(a=" ".repeat(d)+"^".repeat(c),"\n "+e+"\n "+a):"\n "+e}function Xa(a){console.error(a)}function Ya(a,b,d,c,e){if(null!==
|
19
19
|
ea.current&&ea.current!==Ha)throw Error("Currently React only supports one RSC renderer at a time.");ea.current=Ha;var g=new Set,h=[],k={status:0,fatalError:null,destination:null,bundlerConfig:b,cache:new Map,nextChunkId:0,pendingChunks:0,abortableTasks:g,pingedTasks:h,completedImportChunks:[],completedJSONChunks:[],completedErrorChunks:[],writtenSymbols:new Map,writtenClientReferences:new Map,writtenServerReferences:new Map,writtenProviders:new Map,identifierPrefix:e||"",identifierCount:1,onError:void 0===
|
20
|
-
d?Xa:d,toJSON:function(l,
|
21
|
-
e)}))}b.then(function(e){d.model=e;ha(a,d)},function(e){d.status=4;e=
|
22
|
-
a.reason=b)}))}return{$$typeof:F,_payload:a,_init:bb}}function G(a,b,d,c,e,g){if(null!==c&&void 0!==c)throw Error("Refs cannot be used in Server Components, nor passed to Client Components.");if("function"===typeof b){if(b.$$typeof===P)return[
|
23
|
-
P)return[
|
24
|
-
c.add(e);return e}function La(a,b,d,c){var e=c.$$async?c.$$id+"#async":c.$$id,g=a.writtenClientReferences,h=g.get(e);if(void 0!==h)return b[0]===
|
25
|
-
b=a.nextChunkId++,d=
|
26
|
-
a.pendingChunks++;c=a.nextChunkId++;d=
|
27
|
-
c=a.parentValue;a.context._currentValue=c===Ma?a.context._defaultValue:c;
|
28
|
-
void 0!==b?a="$F"+b.toString(16):(b=c.$$bound,e={id:c.$$id,bound:b?Promise.resolve(b):null},a.pendingChunks++,b=a.nextChunkId++,e=ua(a,b,e),a.completedJSONChunks.push(e),d.set(c,b),a="$F"+b.toString(16)),a;if(/^on[A-Z]/.test(d))throw Error("Event handlers cannot be passed to Client Component props."+
|
29
|
-
|
30
|
-
|
31
|
-
b,d){d={digest:d};b=b.toString(16)+":E"+K(d)+"\n";b=
|
32
|
-
k,k=G(h,l.type,l.key,l.ref,l.props,null)}var ia=ua(h,g.id,k);h.completedJSONChunks.push(ia);h.abortableTasks.delete(g);g.status=1}catch(I){var
|
33
|
-
c=0;c<d.length;c++)a.pendingChunks--,X(b,d[c]);d.splice(0,c);var e=a.completedJSONChunks;for(c=0;c<e.length;c++)a.pendingChunks--,X(b,e[c]);e.splice(0,c);var g=a.completedErrorChunks;for(c=0;c<g.length;c++)a.pendingChunks--,X(b,g[c]);g.splice(0,c)}finally{
|
34
|
-
var e=a.nextChunkId++;
|
20
|
+
d?Xa:d,toJSON:function(l,v){return Za(k,this,l,v)}};k.pendingChunks++;b=$a(c);a=fa(k,a,b,g);h.push(a);return k}function ab(a,b){a.pendingChunks++;var d=fa(a,null,r,a.abortableTasks);switch(b.status){case "fulfilled":return d.model=b.value,ha(a,d),d.id;case "rejected":var c=t(a,b.reason);C(a,d.id,c);return d.id;default:"string"!==typeof b.status&&(b.status="pending",b.then(function(e){"pending"===b.status&&(b.status="fulfilled",b.value=e)},function(e){"pending"===b.status&&(b.status="rejected",b.reason=
|
21
|
+
e)}))}b.then(function(e){d.model=e;ha(a,d)},function(e){d.status=4;e=t(a,e);C(a,d.id,e);null!==a.destination&&O(a,a.destination)});return d.id}function bb(a){if("fulfilled"===a.status)return a.value;if("rejected"===a.status)throw a.reason;throw a;}function cb(a){switch(a.status){case "fulfilled":case "rejected":break;default:"string"!==typeof a.status&&(a.status="pending",a.then(function(b){"pending"===a.status&&(a.status="fulfilled",a.value=b)},function(b){"pending"===a.status&&(a.status="rejected",
|
22
|
+
a.reason=b)}))}return{$$typeof:F,_payload:a,_init:bb}}function G(a,b,d,c,e,g){if(null!==c&&void 0!==c)throw Error("Refs cannot be used in Server Components, nor passed to Client Components.");if("function"===typeof b){if(b.$$typeof===P)return[m,b,d,e];Q=0;x=g;e=b(e);return"object"===typeof e&&null!==e&&"function"===typeof e.then?"fulfilled"===e.status?e.value:cb(e):e}if("string"===typeof b)return[m,b,d,e];if("symbol"===typeof b)return b===db?e.children:[m,b,d,e];if(null!=b&&"object"===typeof b){if(b.$$typeof===
|
23
|
+
P)return[m,b,d,e];switch(b.$$typeof){case F:var h=b._init;b=h(b._payload);return G(a,b,d,c,e,g);case Fa:return a=b.render,Q=0,x=g,a(e,void 0);case Ga:return G(a,b.type,d,c,e,g);case Ia:return za(b._context,e.value),[m,b,d,{value:e.value,children:e.children,__pop:Ja}]}}throw Error("Unsupported Server Component type: "+ca(b));}function ha(a,b){var d=a.pingedTasks;d.push(b);1===d.length&&Ka(a)}function fa(a,b,d,c){var e={id:a.nextChunkId++,status:0,model:b,context:d,ping:function(){return ha(a,e)},thenableState:null};
|
24
|
+
c.add(e);return e}function La(a,b,d,c){var e=c.$$async?c.$$id+"#async":c.$$id,g=a.writtenClientReferences,h=g.get(e);if(void 0!==h)return b[0]===m&&"1"===d?"$L"+h.toString(16):"$"+h.toString(16);try{var k=a.bundlerConfig[c.$$id];var l=c.$$async?{id:k.id,chunks:k.chunks,name:k.name,async:!0}:k;a.pendingChunks++;var v=a.nextChunkId++,ia=K(l),z=v.toString(16)+":I"+ia+"\n";var R=D.encode(z);a.completedImportChunks.push(R);g.set(e,v);return b[0]===m&&"1"===d?"$L"+v.toString(16):"$"+v.toString(16)}catch(ja){return a.pendingChunks++,
|
25
|
+
b=a.nextChunkId++,d=t(a,ja),C(a,b,d),"$"+b.toString(16)}}function Za(a,b,d,c){switch(c){case m:return"$"}for(;"object"===typeof c&&null!==c&&(c.$$typeof===m||c.$$typeof===F);)try{switch(c.$$typeof){case m:var e=c;c=G(a,e.type,e.key,e.ref,e.props,null);break;case F:var g=c._init;c=g(c._payload)}}catch(h){d=h===aa?Ba():h;if("object"===typeof d&&null!==d&&"function"===typeof d.then)return a.pendingChunks++,a=fa(a,c,r,a.abortableTasks),c=a.ping,d.then(c,c),a.thenableState=Ca(),"$L"+a.id.toString(16);
|
26
|
+
a.pendingChunks++;c=a.nextChunkId++;d=t(a,d);C(a,c,d);return"$L"+c.toString(16)}if(null===c)return null;if("object"===typeof c){if(c.$$typeof===P)return La(a,b,d,c);if("function"===typeof c.then)return"$@"+ab(a,c).toString(16);if(c.$$typeof===Ia)return c=c._context._globalName,b=a.writtenProviders,d=b.get(d),void 0===d&&(a.pendingChunks++,d=a.nextChunkId++,b.set(c,d),c=Y(a,d,"$P"+c),a.completedJSONChunks.push(c)),"$"+d.toString(16);if(c===Ja){a=r;if(null===a)throw Error("Tried to pop a Context at the root of the app. This is a bug in React.");
|
27
|
+
c=a.parentValue;a.context._currentValue=c===Ma?a.context._defaultValue:c;r=a.parent;return}return!da(c)&&(null===c||"object"!==typeof c?a=null:(a=Na&&c[Na]||c["@@iterator"],a="function"===typeof a?a:null),a)?Array.from(c):c}if("string"===typeof c)return a="$"===c[0]?"$"+c:c,a;if("boolean"===typeof c||"number"===typeof c)return c;if("undefined"===typeof c)return"$undefined";if("function"===typeof c){if(c.$$typeof===P)return La(a,b,d,c);if(c.$$typeof===eb)return d=a.writtenServerReferences,b=d.get(c),
|
28
|
+
void 0!==b?a="$F"+b.toString(16):(b=c.$$bound,e={id:c.$$id,bound:b?Promise.resolve(b):null},a.pendingChunks++,b=a.nextChunkId++,e=ua(a,b,e),a.completedJSONChunks.push(e),d.set(c,b),a="$F"+b.toString(16)),a;if(/^on[A-Z]/.test(d))throw Error("Event handlers cannot be passed to Client Component props."+y(b,d)+"\nIf you need interactivity, consider converting part of this to a Client Component.");throw Error('Functions cannot be passed directly to Client Components unless you explicitly expose it by marking it with "use server".'+
|
29
|
+
y(b,d));}if("symbol"===typeof c){e=a.writtenSymbols;g=e.get(c);if(void 0!==g)return"$"+g.toString(16);g=c.description;if(Symbol.for(g)!==c)throw Error("Only global symbols received from Symbol.for(...) can be passed to Client Components. The symbol Symbol.for("+(c.description+") cannot be found among global symbols.")+y(b,d));a.pendingChunks++;d=a.nextChunkId++;b=Y(a,d,"$S"+g);a.completedImportChunks.push(b);e.set(c,d);return"$"+d.toString(16)}if("bigint"===typeof c)throw Error("BigInt ("+c+") is not yet supported in Client Component props."+
|
30
|
+
y(b,d));throw Error("Type "+typeof c+" is not supported in Client Component props."+y(b,d));}function t(a,b){a=a.onError;b=a(b);if(null!=b&&"string"!==typeof b)throw Error('onError returned something with a type other than "string". onError should return a string and may return null or undefined but must not return anything else. It received something of type "'+typeof b+'" instead');return b||""}function ka(a,b){null!==a.destination?(a.status=2,ta(a.destination,b)):(a.status=1,a.fatalError=b)}function C(a,
|
31
|
+
b,d){d={digest:d};b=b.toString(16)+":E"+K(d)+"\n";b=D.encode(b);a.completedErrorChunks.push(b)}function Ka(a){var b=la.current,d=A;la.current=fb;A=a.cache;H=a;try{var c=a.pingedTasks;a.pingedTasks=[];for(var e=0;e<c.length;e++){var g=c[e];var h=a;if(0===g.status){Z(g.context);try{var k=g.model;if("object"===typeof k&&null!==k&&k.$$typeof===m){var l=k,v=g.thenableState;g.model=k;k=G(h,l.type,l.key,l.ref,l.props,v);for(g.thenableState=null;"object"===typeof k&&null!==k&&k.$$typeof===m;)l=k,g.model=
|
32
|
+
k,k=G(h,l.type,l.key,l.ref,l.props,null)}var ia=ua(h,g.id,k);h.completedJSONChunks.push(ia);h.abortableTasks.delete(g);g.status=1}catch(I){var z=I===aa?Ba():I;if("object"===typeof z&&null!==z&&"function"===typeof z.then){var R=g.ping;z.then(R,R);g.thenableState=Ca()}else{h.abortableTasks.delete(g);g.status=4;var ja=t(h,z);C(h,g.id,ja)}}}}null!==a.destination&&O(a,a.destination)}catch(I){t(a,I),ka(a,I)}finally{la.current=b,A=d,H=null}}function O(a,b){p=new Uint8Array(512);n=0;try{for(var d=a.completedImportChunks,
|
33
|
+
c=0;c<d.length;c++)a.pendingChunks--,X(b,d[c]);d.splice(0,c);var e=a.completedJSONChunks;for(c=0;c<e.length;c++)a.pendingChunks--,X(b,e[c]);e.splice(0,c);var g=a.completedErrorChunks;for(c=0;c<g.length;c++)a.pendingChunks--,X(b,g[c]);g.splice(0,c)}finally{p&&0<n&&(b.enqueue(new Uint8Array(p.buffer,0,n)),p=null,n=0)}0===a.pendingChunks&&b.close()}function Oa(a,b){try{var d=a.abortableTasks;if(0<d.size){var c=t(a,void 0===b?Error("The render was aborted by the server without a reason."):b);a.pendingChunks++;
|
34
|
+
var e=a.nextChunkId++;C(a,e,c);d.forEach(function(g){g.status=3;var h="$"+e.toString(16);g=Y(a,g.id,h);a.completedErrorChunks.push(g)});d.clear()}null!==a.destination&&O(a,a.destination)}catch(g){t(a,g),ka(a,g)}}function $a(a){if(a){var b=r;Z(null);for(var d=0;d<a.length;d++){var c=a[d],e=c[0];c=c[1];ma[e]||(ma[e]=B.createServerContext(e,Ma));za(ma[e],c)}a=r;Z(b);return a}return null}function gb(){}function hb(a){for(var b=a.chunks,d=[],c=0;c<b.length;c++){var e=b[c],g=S.get(e);if(void 0===g){g=__webpack_chunk_load__(e);
|
35
35
|
d.push(g);var h=S.set.bind(S,e,null);g.then(h,gb);S.set(e,g)}else null!==g&&d.push(g)}if(a.async){if(b=na.get(a.id))return"fulfilled"===b.status?null:b;var k=Promise.all(d).then(function(){return __webpack_require__(a.id)});k.then(function(l){k.status="fulfilled";k.value=l},function(l){k.status="rejected";k.reason=l});na.set(a.id,k);return k}return 0<d.length?Promise.all(d):null}function oa(a){if(a.async){var b=na.get(a.id);if("fulfilled"===b.status)b=b.value;else throw b.reason;}else b=__webpack_require__(a.id);
|
36
36
|
return"*"===a.name?b:""===a.name?b.__esModule?b.default:b:b[a.name]}function T(a,b,d,c){this.status=a;this.value=b;this.reason=d;this._response=c}function U(a,b){for(var d=0;d<a.length;d++)(0,a[d])(b)}function Pa(a,b){if("pending"===a.status||"blocked"===a.status){var d=a.reason;a.status="rejected";a.reason=b;null!==d&&U(d,b)}}function ib(a,b,d,c,e,g){var h=a._bundlerConfig[b];a=hb(h);if(d)d=Promise.all([d,a]).then(function(k){k=k[0];var l=oa(h);return l.bind.apply(l,[null].concat(k))});else if(a)d=
|
37
|
-
Promise.resolve(a).then(function(){return oa(h)});else return oa(h);d.then(Qa(c,e,g),Ra(c));return null}function V(a){var b=J,d=
|
38
|
-
null,null,a),d.set(b,c));return c}function Qa(a,b,d){if(
|
37
|
+
Promise.resolve(a).then(function(){return oa(h)});else return oa(h);d.then(Qa(c,e,g),Ra(c));return null}function V(a){var b=J,d=u;J=a;u=null;try{var c=JSON.parse(a.value,a._response._fromJSON);null!==u&&0<u.deps?(u.value=c,a.status="blocked",a.value=null,a.reason=null):(a.status="fulfilled",a.value=c)}catch(e){a.status="rejected",a.reason=e}finally{J=b,u=d}}function jb(a,b){a._chunks.forEach(function(d){"pending"===d.status&&Pa(d,b)})}function W(a,b){var d=a._chunks,c=d.get(b);c||(c=new T("pending",
|
38
|
+
null,null,a),d.set(b,c));return c}function Qa(a,b,d){if(u){var c=u;c.deps++}else c=u={deps:1,value:null};return function(e){b[d]=e;c.deps--;0===c.deps&&"blocked"===a.status&&(e=a.value,a.status="fulfilled",a.value=c.value,null!==e&&U(e,c.value))}}function Ra(a){return function(b){return Pa(a,b)}}function kb(a,b,d,c){if("$"===c[0])switch(c[1]){case "$":return c.substring(1);case "@":return b=parseInt(c.substring(2),16),W(a,b);case "S":return Symbol.for(c.substring(2));case "F":c=parseInt(c.substring(2),
|
39
39
|
16);c=W(a,c);"resolved_model"===c.status&&V(c);if("fulfilled"!==c.status)throw c.reason;c=c.value;return ib(a,c.id,c.bound,J,b,d);case "u":return;default:c=parseInt(c.substring(1),16);a=W(a,c);switch(a.status){case "resolved_model":V(a)}switch(a.status){case "fulfilled":return a.value;case "pending":case "blocked":return c=J,a.then(Qa(c,b,d),Ra(c)),null;default:throw a.reason;}}return c}function lb(a){var b=new Map,d={_bundlerConfig:a,_chunks:b,_fromJSON:function(c,e){return"string"===typeof e?kb(d,
|
40
|
-
this,c,e):e}};return d}function Sa(a,b,d){var c=a._chunks,e=c.get(b);if(e){if("pending"===e.status&&(a=e.value,b=e.reason,e.status="resolved_model",e.value=d,null!==a))switch(V(e),e.status){case "fulfilled":U(a,e.value);break;case "pending":case "blocked":e.value=a;e.reason=b;break;case "rejected":b&&U(b,e.reason)}}else c.set(b,new T("resolved_model",d,null,a))}var
|
41
|
-
db=Symbol.for("react.fragment"),Ia=Symbol.for("react.provider"),mb=Symbol.for("react.server_context"),Fa=Symbol.for("react.forward_ref"),Va=Symbol.for("react.suspense"),Wa=Symbol.for("react.suspense_list"),Ga=Symbol.for("react.memo"),F=Symbol.for("react.lazy"),Ma=Symbol.for("react.default_value"),nb=Symbol.for("react.memo_cache_sentinel"),Na=Symbol.iterator;[
|
42
|
-
null,!1,!1)});["
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
f('
|
48
|
-
f('
|
49
|
-
f('$
|
50
|
-
f('$RC("');f('$RC=function(b,c,e){c=document.getElementById(c);c.parentNode.removeChild(c);var a=document.getElementById(b);if(a){b=a.previousSibling;if(e)b.data="$!",a.setAttribute("data-dgst",e);else{e=b.parentNode;a=b.nextSibling;var f=0;do{if(a&&8===a.nodeType){var d=a.data;if("/$"===d)if(0===f)break;else f--;else"$"!==d&&"$?"!==d&&"$!"!==d||f++}d=a.nextSibling;e.removeChild(a);a=d}while(a);for(;c.firstChild;)e.insertBefore(c.firstChild,a);b.data="$"}b._reactRetry&&b._reactRetry()}};$RM=new Map;\n$RR=function(t,u,y){function v(n){this.s=n}for(var w=$RC,p=$RM,q=new Map,r=document,g,b,h=r.querySelectorAll("link[data-precedence],style[data-precedence]"),x=[],k=0;b=h[k++];)"not all"===b.getAttribute("media")?x.push(b):("LINK"===b.tagName&&p.set(b.getAttribute("href"),b),q.set(b.dataset.precedence,g=b));b=0;h=[];var l,a;for(k=!0;;){if(k){var f=y[b++];if(!f){k=!1;b=0;continue}var c=!1,m=0;var e=f[m++];if(a=p.get(e)){var d=a._p;c=!0}else{a=r.createElement("link");a.href=e;a.rel=\n"stylesheet";for(a.dataset.precedence=l=f[m++];d=f[m++];)a.setAttribute(d,f[m++]);d=a._p=new Promise(function(n,z){a.onload=n;a.onerror=z});d.then(v.bind(d,"l"),v.bind(d,"e"));p.set(e,a)}e=a.getAttribute("media");!d||"l"===d.s||e&&!matchMedia(e).matches||h.push(d);if(c)continue}else{a=x[b++];if(!a)break;l=a.getAttribute("data-precedence");a.removeAttribute("media")}c=q.get(l)||g;c===g&&(g=a);q.set(l,a);c?c.parentNode.insertBefore(a,c.nextSibling):(c=r.head,c.insertBefore(a,c.firstChild))}Promise.all(h).then(w.bind(null,\nt,u,""),w.bind(null,t,u,"Resource failed to load"))};$RR("');
|
51
|
-
f('$RM=new Map;\n$RR=function(t,u,y){function v(n){this.s=n}for(var w=$RC,p=$RM,q=new Map,r=document,g,b,h=r.querySelectorAll("link[data-precedence],style[data-precedence]"),x=[],k=0;b=h[k++];)"not all"===b.getAttribute("media")?x.push(b):("LINK"===b.tagName&&p.set(b.getAttribute("href"),b),q.set(b.dataset.precedence,g=b));b=0;h=[];var l,a;for(k=!0;;){if(k){var f=y[b++];if(!f){k=!1;b=0;continue}var c=!1,m=0;var e=f[m++];if(a=p.get(e)){var d=a._p;c=!0}else{a=r.createElement("link");a.href=e;a.rel=\n"stylesheet";for(a.dataset.precedence=l=f[m++];d=f[m++];)a.setAttribute(d,f[m++]);d=a._p=new Promise(function(n,z){a.onload=n;a.onerror=z});d.then(v.bind(d,"l"),v.bind(d,"e"));p.set(e,a)}e=a.getAttribute("media");!d||"l"===d.s||e&&!matchMedia(e).matches||h.push(d);if(c)continue}else{a=x[b++];if(!a)break;l=a.getAttribute("data-precedence");a.removeAttribute("media")}c=q.get(l)||g;c===g&&(g=a);q.set(l,a);c?c.parentNode.insertBefore(a,c.nextSibling):(c=r.head,c.insertBefore(a,c.firstChild))}Promise.all(h).then(w.bind(null,\nt,u,""),w.bind(null,t,u,"Resource failed to load"))};$RR("');
|
40
|
+
this,c,e):e}};return d}function Sa(a,b,d){var c=a._chunks,e=c.get(b);if(e){if("pending"===e.status&&(a=e.value,b=e.reason,e.status="resolved_model",e.value=d,null!==a))switch(V(e),e.status){case "fulfilled":U(a,e.value);break;case "pending":case "blocked":e.value=a;e.reason=b;break;case "rejected":b&&U(b,e.reason)}}else c.set(b,new T("resolved_model",d,null,a))}var p=null,n=0,D=new TextEncoder,K=JSON.stringify,P=Symbol.for("react.client.reference"),eb=Symbol.for("react.server.reference"),m=Symbol.for("react.element"),
|
41
|
+
db=Symbol.for("react.fragment"),Ia=Symbol.for("react.provider"),mb=Symbol.for("react.server_context"),Fa=Symbol.for("react.forward_ref"),Va=Symbol.for("react.suspense"),Wa=Symbol.for("react.suspense_list"),Ga=Symbol.for("react.memo"),F=Symbol.for("react.lazy"),Ma=Symbol.for("react.default_value"),nb=Symbol.for("react.memo_cache_sentinel"),Na=Symbol.iterator;["contentEditable","draggable","spellCheck","value"].forEach(function(a){new E(a,2,!1,a.toLowerCase(),null,!1,!1)});"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(a){new E(a,
|
42
|
+
3,!1,a.toLowerCase(),null,!1,!1)});["rowSpan","start"].forEach(function(a){new E(a,5,!1,a.toLowerCase(),null,!1,!1)});var pa=/[\-:]([a-z])/g,qa=function(a){return a[1].toUpperCase()};"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering transform-origin underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(a){a.replace(pa,
|
43
|
+
qa)});"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(a){a.replace(pa,qa)});["xml:base","xml:lang","xml:space"].forEach(function(a){a.replace(pa,qa)});["tabIndex","crossOrigin"].forEach(function(a){new E(a,1,!1,a.toLowerCase(),null,!1,!1)});["src","href","action"].forEach(function(a){new E(a,1,!1,a.toLowerCase(),null,!0,!0)});var ra={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,
|
44
|
+
boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,scale:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,
|
45
|
+
strokeOpacity:!0,strokeWidth:!0},ob=["Webkit","ms","Moz","O"];Object.keys(ra).forEach(function(a){ob.forEach(function(b){b=b+a.charAt(0).toUpperCase()+a.substring(1);ra[b]=ra[a]})});var da=Array.isArray;f('"></template>');f("<script>");f("\x3c/script>");f('<script src="');f('<script type="module" src="');f('" integrity="');f('" async="">\x3c/script>');f("\x3c!-- --\x3e");f(' style="');f(":");f(";");f(" ");f('="');f('"');f('=""');f(">");f("/>");f(' selected=""');f("\n");f("<!DOCTYPE html>");f("</");
|
46
|
+
f(">");f('<template id="');f('"></template>');f("\x3c!--$--\x3e");f('\x3c!--$?--\x3e<template id="');f('"></template>');f("\x3c!--$!--\x3e");f("\x3c!--/$--\x3e");f("<template");f('"');f(' data-dgst="');f(' data-msg="');f(' data-stck="');f("></template>");f('<div hidden id="');f('">');f("</div>");f('<svg aria-hidden="true" style="display:none" id="');f('">');f("</svg>");f('<math aria-hidden="true" style="display:none" id="');f('">');f("</math>");f('<table hidden id="');f('">');f("</table>");f('<table hidden><tbody id="');
|
47
|
+
f('">');f("</tbody></table>");f('<table hidden><tr id="');f('">');f("</tr></table>");f('<table hidden><colgroup id="');f('">');f("</colgroup></table>");f('$RS=function(a,b){a=document.getElementById(a);b=document.getElementById(b);for(a.parentNode.removeChild(a);a.firstChild;)b.parentNode.insertBefore(a.firstChild,b);b.parentNode.removeChild(b)};;$RS("');f('$RS("');f('","');f('")\x3c/script>');f('<template data-rsi="" data-sid="');f('" data-pid="');f('$RC=function(b,c,e){c=document.getElementById(c);c.parentNode.removeChild(c);var a=document.getElementById(b);if(a){b=a.previousSibling;if(e)b.data="$!",a.setAttribute("data-dgst",e);else{e=b.parentNode;a=b.nextSibling;var f=0;do{if(a&&8===a.nodeType){var d=a.data;if("/$"===d)if(0===f)break;else f--;else"$"!==d&&"$?"!==d&&"$!"!==d||f++}d=a.nextSibling;e.removeChild(a);a=d}while(a);for(;c.firstChild;)e.insertBefore(c.firstChild,a);b.data="$"}b._reactRetry&&b._reactRetry()}};$RC("');
|
48
|
+
f('$RC("');f('$RC=function(b,c,e){c=document.getElementById(c);c.parentNode.removeChild(c);var a=document.getElementById(b);if(a){b=a.previousSibling;if(e)b.data="$!",a.setAttribute("data-dgst",e);else{e=b.parentNode;a=b.nextSibling;var f=0;do{if(a&&8===a.nodeType){var d=a.data;if("/$"===d)if(0===f)break;else f--;else"$"!==d&&"$?"!==d&&"$!"!==d||f++}d=a.nextSibling;e.removeChild(a);a=d}while(a);for(;c.firstChild;)e.insertBefore(c.firstChild,a);b.data="$"}b._reactRetry&&b._reactRetry()}};$RM=new Map;\n$RR=function(r,t,w){for(var u=$RC,n=$RM,p=new Map,q=document,g,b,h=q.querySelectorAll("link[data-precedence],style[data-precedence]"),v=[],k=0;b=h[k++];)"not all"===b.getAttribute("media")?v.push(b):("LINK"===b.tagName&&n.set(b.getAttribute("href"),b),p.set(b.dataset.precedence,g=b));b=0;h=[];var l,a;for(k=!0;;){if(k){var f=w[b++];if(!f){k=!1;b=0;continue}var c=!1,m=0;var d=f[m++];if(a=n.get(d)){var e=a._p;c=!0}else{a=q.createElement("link");a.href=d;a.rel="stylesheet";for(a.dataset.precedence=\nl=f[m++];e=f[m++];)a.setAttribute(e,f[m++]);e=a._p=new Promise(function(x,y){a.onload=x;a.onerror=y});n.set(d,a)}d=a.getAttribute("media");!e||"l"===e.s||d&&!matchMedia(d).matches||h.push(e);if(c)continue}else{a=v[b++];if(!a)break;l=a.getAttribute("data-precedence");a.removeAttribute("media")}c=p.get(l)||g;c===g&&(g=a);p.set(l,a);c?c.parentNode.insertBefore(a,c.nextSibling):(c=q.head,c.insertBefore(a,c.firstChild))}Promise.all(h).then(u.bind(null,r,t,""),u.bind(null,r,t,"Resource failed to load"))};$RR("');
|
49
|
+
f('$RM=new Map;\n$RR=function(r,t,w){for(var u=$RC,n=$RM,p=new Map,q=document,g,b,h=q.querySelectorAll("link[data-precedence],style[data-precedence]"),v=[],k=0;b=h[k++];)"not all"===b.getAttribute("media")?v.push(b):("LINK"===b.tagName&&n.set(b.getAttribute("href"),b),p.set(b.dataset.precedence,g=b));b=0;h=[];var l,a;for(k=!0;;){if(k){var f=w[b++];if(!f){k=!1;b=0;continue}var c=!1,m=0;var d=f[m++];if(a=n.get(d)){var e=a._p;c=!0}else{a=q.createElement("link");a.href=d;a.rel="stylesheet";for(a.dataset.precedence=\nl=f[m++];e=f[m++];)a.setAttribute(e,f[m++]);e=a._p=new Promise(function(x,y){a.onload=x;a.onerror=y});n.set(d,a)}d=a.getAttribute("media");!e||"l"===e.s||d&&!matchMedia(d).matches||h.push(e);if(c)continue}else{a=v[b++];if(!a)break;l=a.getAttribute("data-precedence");a.removeAttribute("media")}c=p.get(l)||g;c===g&&(g=a);p.set(l,a);c?c.parentNode.insertBefore(a,c.nextSibling):(c=q.head,c.insertBefore(a,c.firstChild))}Promise.all(h).then(u.bind(null,r,t,""),u.bind(null,r,t,"Resource failed to load"))};$RR("');
|
52
50
|
f('$RR("');f('","');f('",');f('"');f(")\x3c/script>");f('<template data-rci="" data-bid="');f('<template data-rri="" data-bid="');f('" data-sid="');f('" data-sty="');f('$RX=function(b,c,d,e){var a=document.getElementById(b);a&&(b=a.previousSibling,b.data="$!",a=a.dataset,c&&(a.dgst=c),d&&(a.msg=d),e&&(a.stck=e),b._reactRetry&&b._reactRetry())};;$RX("');f('$RX("');f('"');f(",");f(")\x3c/script>");f('<template data-rxi="" data-bid="');f('" data-dgst="');f('" data-msg="');f('" data-stck="');f('<style media="not all" data-precedence="');
|
53
|
-
f('" data-href="');f('">');f("</style>");f('<style data-precedence="');f('" data-href="');f(" ");f('">');f("</style>");f("[");f(",[");f(",");f("]");var
|
54
|
-
M=null,H=null,Q=0,
|
55
|
-
useCacheRefresh:function(){return Ua},useMemoCache:function(a){for(var b=Array(a),d=0;d<a;d++)b[d]=nb;return b},use:function(a){if(null!==a&&"object"===typeof a||"function"===typeof a){if("function"===typeof a.then){var b=Q;Q+=1;null===
|
56
|
-
|
57
|
-
b&&(null===this.reason&&(this.reason=[]),this.reason.push(b));break;default:b(this.reason)}};var J=null,
|
58
|
-
else{var g=function(){Oa(c,e.reason);e.removeEventListener("abort",g)};e.addEventListener("abort",g)}}return new ReadableStream({type:"bytes",start:function(h){Ka(c)},pull:function(h){if(1===c.status)c.status=2,ta(h,c.fatalError);else if(2!==c.status&&null===c.destination){c.destination=h;try{O(c,h)}catch(k){
|
51
|
+
f('" data-href="');f('">');f("</style>");f('<style data-precedence="');f('" data-href="');f(" ");f('">');f("</style>");f("[");f(",[");f(",");f("]");var r=null,aa=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`"),
|
52
|
+
M=null,H=null,Q=0,x=null,fb={useMemo:function(a){return a()},useCallback:function(a){return a},useDebugValue:function(){},useDeferredValue:q,useTransition:q,readContext:Da,useContext:Da,useReducer:q,useRef:q,useState:q,useInsertionEffect:q,useLayoutEffect:q,useImperativeHandle:q,useEffect:q,useId:function(){if(null===H)throw Error("useId can only be used while React is rendering");var a=H.identifierCount++;return":"+H.identifierPrefix+"S"+a.toString(32)+":"},useMutableSource:q,useSyncExternalStore:q,
|
53
|
+
useCacheRefresh:function(){return Ua},useMemoCache:function(a){for(var b=Array(a),d=0;d<a;d++)b[d]=nb;return b},use:function(a){if(null!==a&&"object"===typeof a||"function"===typeof a){if("function"===typeof a.then){var b=Q;Q+=1;null===x&&(x=[]);return Ta(x,a,b)}if(a.$$typeof===mb)return a._currentValue}throw Error("An unsupported type was passed to use(): "+String(a));}},Ha={getCacheSignal:function(){var a=A?A:new Map,b=a.get(ba);void 0===b&&(b=ba(),a.set(ba,b));return b},getCacheForType:function(a){var b=
|
54
|
+
A?A:new Map,d=b.get(a);void 0===d&&(d=a(),b.set(a,d));return d}},A=null,sa=B.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,ma=sa.ContextRegistry,la=sa.ReactCurrentDispatcher,ea=sa.ReactCurrentCache,Ja={},S=new Map,na=new Map;T.prototype=Object.create(Promise.prototype);T.prototype.then=function(a,b){switch(this.status){case "resolved_model":V(this)}switch(this.status){case "fulfilled":a(this.value);break;case "pending":case "blocked":a&&(null===this.value&&(this.value=[]),this.value.push(a));
|
55
|
+
b&&(null===this.reason&&(this.reason=[]),this.reason.push(b));break;default:b(this.reason)}};var J=null,u=null;w.decodeReply=function(a,b){var d=lb(b);"string"===typeof a?Sa(d,0,a):a.forEach(function(c,e){if("string"===typeof c)Sa(d,+e,c);else throw Error("Not implemented.");});jb(d,Error("Connection closed."));return W(d,0)};w.renderToReadableStream=function(a,b,d){var c=Ya(a,b,d?d.onError:void 0,d?d.context:void 0,d?d.identifierPrefix:void 0);if(d&&d.signal){var e=d.signal;if(e.aborted)Oa(c,e.reason);
|
56
|
+
else{var g=function(){Oa(c,e.reason);e.removeEventListener("abort",g)};e.addEventListener("abort",g)}}return new ReadableStream({type:"bytes",start:function(h){Ka(c)},pull:function(h){if(1===c.status)c.status=2,ta(h,c.fatalError);else if(2!==c.status&&null===c.destination){c.destination=h;try{O(c,h)}catch(k){t(c,k),ka(c,k)}}},cancel:function(h){}},{highWaterMark:0})}});
|
59
57
|
})();
|