svelte 5.42.1 → 5.42.3

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.
Files changed (31) hide show
  1. package/compiler/index.js +1 -1
  2. package/package.json +1 -1
  3. package/src/compiler/phases/1-parse/state/element.js +8 -9
  4. package/src/compiler/phases/1-parse/state/tag.js +9 -9
  5. package/src/compiler/phases/2-analyze/index.js +6 -6
  6. package/src/compiler/phases/2-analyze/visitors/CallExpression.js +2 -2
  7. package/src/compiler/phases/2-analyze/visitors/RenderTag.js +2 -2
  8. package/src/compiler/phases/2-analyze/visitors/shared/utils.js +4 -1
  9. package/src/compiler/phases/3-transform/client/visitors/CallExpression.js +11 -0
  10. package/src/compiler/phases/3-transform/client/visitors/ExpressionStatement.js +0 -10
  11. package/src/compiler/phases/3-transform/client/visitors/RegularElement.js +27 -19
  12. package/src/compiler/phases/3-transform/client/visitors/RenderTag.js +1 -1
  13. package/src/compiler/phases/3-transform/client/visitors/SlotElement.js +1 -1
  14. package/src/compiler/phases/3-transform/client/visitors/SvelteHead.js +3 -0
  15. package/src/compiler/phases/3-transform/client/visitors/shared/component.js +3 -3
  16. package/src/compiler/phases/3-transform/client/visitors/shared/element.js +7 -10
  17. package/src/compiler/phases/3-transform/client/visitors/shared/events.js +2 -1
  18. package/src/compiler/phases/3-transform/client/visitors/shared/utils.js +15 -6
  19. package/src/compiler/phases/3-transform/server/transform-server.js +12 -12
  20. package/src/compiler/phases/3-transform/server/visitors/SvelteHead.js +10 -1
  21. package/src/compiler/phases/3-transform/server/visitors/shared/element.js +4 -8
  22. package/src/compiler/phases/3-transform/server/visitors/shared/utils.js +3 -2
  23. package/src/compiler/phases/nodes.js +27 -14
  24. package/src/compiler/phases/scope.js +2 -2
  25. package/src/internal/client/dom/blocks/await.js +6 -2
  26. package/src/internal/client/dom/blocks/svelte-head.js +10 -19
  27. package/src/internal/client/reactivity/async.js +2 -3
  28. package/src/internal/client/render.js +1 -9
  29. package/src/internal/server/index.js +4 -3
  30. package/src/version.js +1 -1
  31. package/types/index.d.ts.map +1 -1
@@ -1,4 +1,4 @@
1
- /** @import { Program, Property, Statement, VariableDeclarator } from 'estree' */
1
+ /** @import * as ESTree from 'estree' */
2
2
  /** @import { AST, ValidatedCompileOptions, ValidatedModuleCompileOptions } from '#compiler' */
3
3
  /** @import { ComponentServerTransformState, ComponentVisitors, ServerTransformState, Visitors } from './types.js' */
4
4
  /** @import { Analysis, ComponentAnalysis } from '../../types.js' */
@@ -86,7 +86,7 @@ const template_visitors = {
86
86
  /**
87
87
  * @param {ComponentAnalysis} analysis
88
88
  * @param {ValidatedCompileOptions} options
89
- * @returns {Program}
89
+ * @returns {ESTree.Program}
90
90
  */
91
91
  export function server_component(analysis, options) {
92
92
  /** @type {ComponentServerTransformState} */
@@ -106,11 +106,11 @@ export function server_component(analysis, options) {
106
106
  skip_hydration_boundaries: false
107
107
  };
108
108
 
109
- const module = /** @type {Program} */ (
109
+ const module = /** @type {ESTree.Program} */ (
110
110
  walk(/** @type {AST.SvelteNode} */ (analysis.module.ast), state, global_visitors)
111
111
  );
112
112
 
113
- const instance = /** @type {Program} */ (
113
+ const instance = /** @type {ESTree.Program} */ (
114
114
  walk(
115
115
  /** @type {AST.SvelteNode} */ (analysis.instance.ast),
116
116
  { ...state, scopes: analysis.instance.scopes },
@@ -131,7 +131,7 @@ export function server_component(analysis, options) {
131
131
  )
132
132
  );
133
133
 
134
- const template = /** @type {Program} */ (
134
+ const template = /** @type {ESTree.Program} */ (
135
135
  walk(
136
136
  /** @type {AST.SvelteNode} */ (analysis.template.ast),
137
137
  { ...state, scopes: analysis.template.scopes },
@@ -140,7 +140,7 @@ export function server_component(analysis, options) {
140
140
  )
141
141
  );
142
142
 
143
- /** @type {VariableDeclarator[]} */
143
+ /** @type {ESTree.VariableDeclarator[]} */
144
144
  const legacy_reactive_declarations = [];
145
145
 
146
146
  for (const [node] of analysis.reactive_statements) {
@@ -192,7 +192,7 @@ export function server_component(analysis, options) {
192
192
  b.function_declaration(
193
193
  b.id('$$render_inner'),
194
194
  [b.id('$$renderer')],
195
- b.block(/** @type {Statement[]} */ (rest))
195
+ b.block(/** @type {ESTree.Statement[]} */ (rest))
196
196
  ),
197
197
  b.do_while(
198
198
  b.unary('!', b.id('$$settled')),
@@ -219,7 +219,7 @@ export function server_component(analysis, options) {
219
219
 
220
220
  // Propagate values of bound props upwards if they're undefined in the parent and have a value.
221
221
  // Don't do this as part of the props retrieval because people could eagerly mutate the prop in the instance script.
222
- /** @type {Property[]} */
222
+ /** @type {ESTree.Property[]} */
223
223
  const props = [];
224
224
 
225
225
  for (const [name, binding] of analysis.instance.scope.declarations) {
@@ -239,8 +239,8 @@ export function server_component(analysis, options) {
239
239
  }
240
240
 
241
241
  let component_block = b.block([
242
- .../** @type {Statement[]} */ (instance.body),
243
- .../** @type {Statement[]} */ (template.body)
242
+ .../** @type {ESTree.Statement[]} */ (instance.body),
243
+ .../** @type {ESTree.Statement[]} */ (template.body)
244
244
  ]);
245
245
 
246
246
  if (analysis.instance.has_await) {
@@ -395,7 +395,7 @@ export function server_component(analysis, options) {
395
395
  /**
396
396
  * @param {Analysis} analysis
397
397
  * @param {ValidatedModuleCompileOptions} options
398
- * @returns {Program}
398
+ * @returns {ESTree.Program}
399
399
  */
400
400
  export function server_module(analysis, options) {
401
401
  /** @type {ServerTransformState} */
@@ -411,7 +411,7 @@ export function server_module(analysis, options) {
411
411
  state_fields: new Map()
412
412
  };
413
413
 
414
- const module = /** @type {Program} */ (
414
+ const module = /** @type {ESTree.Program} */ (
415
415
  walk(/** @type {AST.SvelteNode} */ (analysis.module.ast), state, global_visitors)
416
416
  );
417
417
 
@@ -2,6 +2,8 @@
2
2
  /** @import { AST } from '#compiler' */
3
3
  /** @import { ComponentContext } from '../types.js' */
4
4
  import * as b from '#compiler/builders';
5
+ import { hash } from '../../../../../utils.js';
6
+ import { filename } from '../../../../state.js';
5
7
 
6
8
  /**
7
9
  * @param {AST.SvelteHead} node
@@ -11,6 +13,13 @@ export function SvelteHead(node, context) {
11
13
  const block = /** @type {BlockStatement} */ (context.visit(node.fragment));
12
14
 
13
15
  context.state.template.push(
14
- b.stmt(b.call('$.head', b.id('$$renderer'), b.arrow([b.id('$$renderer')], block)))
16
+ b.stmt(
17
+ b.call(
18
+ '$.head',
19
+ b.literal(hash(filename)),
20
+ b.id('$$renderer'),
21
+ b.arrow([b.id('$$renderer')], block)
22
+ )
23
+ )
15
24
  );
16
25
  }
@@ -1,13 +1,9 @@
1
1
  /** @import { ArrayExpression, Expression, Literal, ObjectExpression } from 'estree' */
2
- /** @import { AST, ExpressionMetadata } from '#compiler' */
2
+ /** @import { AST } from '#compiler' */
3
3
  /** @import { ComponentContext, ComponentServerTransformState } from '../../types.js' */
4
4
  import { is_event_attribute, is_text_attribute } from '../../../../../utils/ast.js';
5
5
  import { binding_properties } from '../../../../bindings.js';
6
- import {
7
- create_attribute,
8
- create_expression_metadata,
9
- is_custom_element_node
10
- } from '../../../../nodes.js';
6
+ import { create_attribute, ExpressionMetadata, is_custom_element_node } from '../../../../nodes.js';
11
7
  import { regex_starts_with_newline } from '../../../../patterns.js';
12
8
  import * as b from '#compiler/builders';
13
9
  import {
@@ -160,7 +156,7 @@ export function build_element_attributes(node, context, transform) {
160
156
  build_attribute_value(value_attribute.value, context, transform)
161
157
  ),
162
158
  metadata: {
163
- expression: create_expression_metadata()
159
+ expression: new ExpressionMetadata()
164
160
  }
165
161
  }
166
162
  ])
@@ -174,7 +170,7 @@ export function build_element_attributes(node, context, transform) {
174
170
  end: -1,
175
171
  expression,
176
172
  metadata: {
177
- expression: create_expression_metadata()
173
+ expression: new ExpressionMetadata()
178
174
  }
179
175
  }
180
176
  ])
@@ -1,5 +1,5 @@
1
- /** @import { AssignmentOperator, Expression, Identifier, Node, Statement, BlockStatement } from 'estree' */
2
- /** @import { AST, ExpressionMetadata } from '#compiler' */
1
+ /** @import { Expression, Identifier, Node, Statement, BlockStatement } from 'estree' */
2
+ /** @import { AST } from '#compiler' */
3
3
  /** @import { ComponentContext, ServerTransformState } from '../../types.js' */
4
4
 
5
5
  import { escape_html } from '../../../../../../escaping.js';
@@ -13,6 +13,7 @@ import * as b from '#compiler/builders';
13
13
  import { sanitize_template_string } from '../../../../../utils/sanitize_template_string.js';
14
14
  import { regex_whitespaces_strict } from '../../../../patterns.js';
15
15
  import { has_await_expression } from '../../../../../utils/ast.js';
16
+ import { ExpressionMetadata } from '../../../../nodes.js';
16
17
 
17
18
  /** Opens an if/each block, so that we can remove nodes in the case of a mismatch */
18
19
  export const block_open = b.literal(BLOCK_OPEN);
@@ -1,5 +1,5 @@
1
1
  /** @import { Expression, PrivateIdentifier } from 'estree' */
2
- /** @import { AST, ExpressionMetadata } from '#compiler' */
2
+ /** @import { AST, Binding } from '#compiler' */
3
3
 
4
4
  /**
5
5
  * All nodes that can appear elsewhere than the top level, have attributes and can contain children
@@ -64,20 +64,33 @@ export function create_attribute(name, start, end, value) {
64
64
  }
65
65
  };
66
66
  }
67
+ export class ExpressionMetadata {
68
+ /** True if the expression references state directly, or _might_ (via member/call expressions) */
69
+ has_state = false;
67
70
 
68
- /**
69
- * @returns {ExpressionMetadata}
70
- */
71
- export function create_expression_metadata() {
72
- return {
73
- dependencies: new Set(),
74
- references: new Set(),
75
- has_state: false,
76
- has_call: false,
77
- has_member_expression: false,
78
- has_assignment: false,
79
- has_await: false
80
- };
71
+ /** True if the expression involves a call expression (often, it will need to be wrapped in a derived) */
72
+ has_call = false;
73
+
74
+ /** True if the expression contains `await` */
75
+ has_await = false;
76
+
77
+ /** True if the expression includes a member expression */
78
+ has_member_expression = false;
79
+
80
+ /** True if the expression includes an assignment or an update */
81
+ has_assignment = false;
82
+
83
+ /**
84
+ * All the bindings that are referenced eagerly (not inside functions) in this expression
85
+ * @type {Set<Binding>}
86
+ */
87
+ dependencies = new Set();
88
+
89
+ /**
90
+ * True if the expression references state directly, or _might_ (via member/call expressions)
91
+ * @type {Set<Binding>}
92
+ */
93
+ references = new Set();
81
94
  }
82
95
 
83
96
  /**
@@ -3,7 +3,7 @@
3
3
  /** @import { AST, BindingKind, DeclarationKind } from '#compiler' */
4
4
  import is_reference from 'is-reference';
5
5
  import { walk } from 'zimmerframe';
6
- import { create_expression_metadata } from './nodes.js';
6
+ import { ExpressionMetadata } from './nodes.js';
7
7
  import * as b from '#compiler/builders';
8
8
  import * as e from '../errors.js';
9
9
  import {
@@ -1201,7 +1201,7 @@ export function create_scopes(ast, root, allow_reactive_declarations, parent) {
1201
1201
  if (node.fallback) visit(node.fallback, { scope });
1202
1202
 
1203
1203
  node.metadata = {
1204
- expression: create_expression_metadata(),
1204
+ expression: new ExpressionMetadata(),
1205
1205
  keyed: false,
1206
1206
  contains_group_binding: false,
1207
1207
  index: scope.root.unique('$$index'),
@@ -12,7 +12,7 @@ import {
12
12
  import { queue_micro_task } from '../task.js';
13
13
  import { HYDRATION_START_ELSE, UNINITIALIZED } from '../../../../constants.js';
14
14
  import { is_runes } from '../../context.js';
15
- import { flushSync, is_flushing_sync } from '../../reactivity/batch.js';
15
+ import { Batch, flushSync, is_flushing_sync } from '../../reactivity/batch.js';
16
16
  import { BranchManager } from './branches.js';
17
17
  import { capture, unset_context } from '../../reactivity/async.js';
18
18
 
@@ -69,7 +69,11 @@ export function await_block(node, get_input, pending_fn, then_fn, catch_fn) {
69
69
  if (destroyed) return;
70
70
 
71
71
  resolved = true;
72
- restore();
72
+ // We don't want to restore the previous batch here; {#await} blocks don't follow the async logic
73
+ // we have elsewhere, instead pending/resolve/fail states are each their own batch so to speak.
74
+ restore(false);
75
+ // Make sure we have a batch, since the branch manager expects one to exist
76
+ Batch.ensure();
73
77
 
74
78
  if (hydrating) {
75
79
  // `restore()` could set `hydrating` to `true`, which we very much
@@ -3,22 +3,13 @@ import { hydrate_node, hydrating, set_hydrate_node, set_hydrating } from '../hyd
3
3
  import { create_text, get_first_child, get_next_sibling } from '../operations.js';
4
4
  import { block } from '../../reactivity/effects.js';
5
5
  import { COMMENT_NODE, HEAD_EFFECT } from '#client/constants';
6
- import { HYDRATION_START } from '../../../../constants.js';
7
-
8
- /**
9
- * @type {Node | undefined}
10
- */
11
- let head_anchor;
12
-
13
- export function reset_head_anchor() {
14
- head_anchor = undefined;
15
- }
16
6
 
17
7
  /**
8
+ * @param {string} hash
18
9
  * @param {(anchor: Node) => void} render_fn
19
10
  * @returns {void}
20
11
  */
21
- export function head(render_fn) {
12
+ export function head(hash, render_fn) {
22
13
  // The head function may be called after the first hydration pass and ssr comment nodes may still be present,
23
14
  // therefore we need to skip that when we detect that we're not in hydration mode.
24
15
  let previous_hydrate_node = null;
@@ -30,15 +21,13 @@ export function head(render_fn) {
30
21
  if (hydrating) {
31
22
  previous_hydrate_node = hydrate_node;
32
23
 
33
- // There might be multiple head blocks in our app, so we need to account for each one needing independent hydration.
34
- if (head_anchor === undefined) {
35
- head_anchor = /** @type {TemplateNode} */ (get_first_child(document.head));
36
- }
24
+ var head_anchor = /** @type {TemplateNode} */ (get_first_child(document.head));
37
25
 
26
+ // There might be multiple head blocks in our app, and they could have been
27
+ // rendered in an arbitrary order — find one corresponding to this component
38
28
  while (
39
29
  head_anchor !== null &&
40
- (head_anchor.nodeType !== COMMENT_NODE ||
41
- /** @type {Comment} */ (head_anchor).data !== HYDRATION_START)
30
+ (head_anchor.nodeType !== COMMENT_NODE || /** @type {Comment} */ (head_anchor).data !== hash)
42
31
  ) {
43
32
  head_anchor = /** @type {TemplateNode} */ (get_next_sibling(head_anchor));
44
33
  }
@@ -48,7 +37,10 @@ export function head(render_fn) {
48
37
  if (head_anchor === null) {
49
38
  set_hydrating(false);
50
39
  } else {
51
- head_anchor = set_hydrate_node(/** @type {TemplateNode} */ (get_next_sibling(head_anchor)));
40
+ var start = /** @type {TemplateNode} */ (get_next_sibling(head_anchor));
41
+ head_anchor.remove(); // in case this component is repeated
42
+
43
+ set_hydrate_node(start);
52
44
  }
53
45
  }
54
46
 
@@ -61,7 +53,6 @@ export function head(render_fn) {
61
53
  } finally {
62
54
  if (was_hydrating) {
63
55
  set_hydrating(true);
64
- head_anchor = hydrate_node; // so that next head block starts from the correct node
65
56
  set_hydrate_node(/** @type {TemplateNode} */ (previous_hydrate_node));
66
57
  }
67
58
  }
@@ -33,7 +33,6 @@ import {
33
33
  set_hydrating,
34
34
  skip_nodes
35
35
  } from '../dom/hydration.js';
36
- import { create_text } from '../dom/operations.js';
37
36
 
38
37
  /**
39
38
  *
@@ -102,11 +101,11 @@ export function capture() {
102
101
  var previous_dev_stack = dev_stack;
103
102
  }
104
103
 
105
- return function restore() {
104
+ return function restore(activate_batch = true) {
106
105
  set_active_effect(previous_effect);
107
106
  set_active_reaction(previous_reaction);
108
107
  set_component_context(previous_component_context);
109
- previous_batch?.activate();
108
+ if (activate_batch) previous_batch?.activate();
110
109
 
111
110
  if (was_hydrating) {
112
111
  set_hydrating(true);
@@ -12,20 +12,13 @@ import { HYDRATION_END, HYDRATION_ERROR, HYDRATION_START } from '../../constants
12
12
  import { active_effect } from './runtime.js';
13
13
  import { push, pop, component_context } from './context.js';
14
14
  import { component_root } from './reactivity/effects.js';
15
- import {
16
- hydrate_next,
17
- hydrate_node,
18
- hydrating,
19
- set_hydrate_node,
20
- set_hydrating
21
- } from './dom/hydration.js';
15
+ import { hydrate_node, hydrating, set_hydrate_node, set_hydrating } from './dom/hydration.js';
22
16
  import { array_from } from '../shared/utils.js';
23
17
  import {
24
18
  all_registered_events,
25
19
  handle_event_propagation,
26
20
  root_event_handles
27
21
  } from './dom/elements/events.js';
28
- import { reset_head_anchor } from './dom/blocks/svelte-head.js';
29
22
  import * as w from './warnings.js';
30
23
  import * as e from './errors.js';
31
24
  import { assign_nodes } from './dom/template.js';
@@ -152,7 +145,6 @@ export function hydrate(component, options) {
152
145
  } finally {
153
146
  set_hydrating(was_hydrating);
154
147
  set_hydrate_node(previous_hydrate_node);
155
- reset_head_anchor();
156
148
  }
157
149
  }
158
150
 
@@ -64,15 +64,16 @@ export function render(component, options = {}) {
64
64
  }
65
65
 
66
66
  /**
67
+ * @param {string} hash
67
68
  * @param {Renderer} renderer
68
69
  * @param {(renderer: Renderer) => Promise<void> | void} fn
69
70
  * @returns {void}
70
71
  */
71
- export function head(renderer, fn) {
72
+ export function head(hash, renderer, fn) {
72
73
  renderer.head((renderer) => {
73
- renderer.push(BLOCK_OPEN);
74
+ renderer.push(`<!--${hash}-->`);
74
75
  renderer.child(fn);
75
- renderer.push(BLOCK_CLOSE);
76
+ renderer.push(EMPTY_COMMENT);
76
77
  });
77
78
  }
78
79
 
package/src/version.js CHANGED
@@ -4,5 +4,5 @@
4
4
  * The current version, as set in package.json.
5
5
  * @type {string}
6
6
  */
7
- export const VERSION = '5.42.1';
7
+ export const VERSION = '5.42.3';
8
8
  export const PUBLIC_VERSION = '5';
@@ -263,6 +263,6 @@
263
263
  null,
264
264
  null
265
265
  ],
266
- "mappings": "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",
266
+ "mappings": ";;;;;;;kBAUiBA,2BAA2BA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAkC/BC,eAAeA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAwEhBC,kBAAkBA;;;;;;;;;;;;;;;;;;;;;;;;kBAwBbC,SAASA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAoCbC,oBAAoBA;;;;;;;;;;;;;;;;;;;;;;;;aAwBrBC,eAAeA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAiCfC,cAAcA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aA6BdC,aAAaA;;;;;;;;;;;;;;;;;;;;;;;kBAuBRC,OAAOA;;;;;;;;;;;;;;;;kBAgBPC,eAAeA;;;;;;;;;;;;;;;;aAgBpBC,YAAYA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA0CPC,IAAIA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBCnSLC,cAAcA;;;;;;;;;;;;iBAsBdC,OAAOA;;;;;;;;iBAwBPC,SAASA;;;;;;;;;;;;;;;;;;;;;;iBA0CTC,qBAAqBA;;;;;;;;;;iBA2CrBC,YAAYA;;;;;;;;;;iBAuBZC,WAAWA;;;;iBCtJXC,gBAAgBA;;;;;MCvEpBC,WAAWA;;;;;iBC4hBPC,SAASA;;;;;;;;;;;;;;;;;;iBA6WTC,IAAIA;;;;;;;;iBC1zBJC,aAAaA;;;;;;;;iBAyBbC,UAAUA;;;;;;;;;;;iBAoBVC,UAAUA;;;;;;iBA2BVC,UAAUA;;;;;;;iBAaVC,cAAcA;;;;;;iBCnGdC,KAAKA;;;;;iBA2BLC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA+MPC,OAAOA;;;;;;iBC6MDC,IAAIA;;;;;;iBAwBVC,OAAOA;;;;;;;;;;;;;;iBAqNPC,OAAOA;MCjuBXC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBCqBFC,YAAYA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA6BZC,MAAMA;;;;;;;;;;;;;;;;;;;;kBCtDNC,eAAeA;;;;;;;;kBAQfC,UAAUA;;;;;;;;;;iBCGXC,IAAIA;;;;;;;;;;;;;;;;kBCLHC,UAAUA;;;;;;;;;;;;;;;;;;;;;;;;;iBCsBXC,mBAAmBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WJHlBN,YAAYA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WA6BZC,MAAMA;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBKnCPM,OAAOA;;;;;;iBA2CPC,aAAaA;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAsGbC,IAAIA;;;;kBClKHC,SAASA;;;;;;;;;;;;;;;;;;;;;;;aAuBdC,kBAAkBA;;;;;;;;;;;;;;aAclBC,YAAYA;;;;;;;;;;;;;;;;;;;;;;kBAsBPC,iBAAiBA;;;;;;;;kBCjDjBC,aAAaA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAsCbC,OAAOA;;kBAEPC,YAAYA;;MAEjBC,aAAaA;;;;;;;kBAWRC,cAAcA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAmIdC,oBAAoBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MC3KzBC,SAASA;;kBAEJC,GAAGA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBCqTUC,UAAUA;;;;;;cC3U3BC,OAAOA;;;;;;iBCqHJC,OAAOA;;;;;;;;;;;;;;;;WCzHNC,IAAIA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBCOLC,MAAMA;;iBAQNC,SAASA;;iBAUTC,MAAMA;;iBASNC,OAAOA;;iBASPC,SAASA;;iBAqBTC,WAAWA;;iBAQXC,QAAQA;;iBAQRC,SAASA;;iBASTC,MAAMA;;iBAQNC,OAAOA;;iBAQPC,UAAUA;;iBAQVC,OAAOA;;iBAQPC,QAAQA;;iBASRC,YAAYA;;iBAaZC,SAASA;;iBAQTC,UAAUA;;iBAQVC,SAASA;;iBAYTC,MAAMA;;iBAQNC,OAAOA;;iBAQPC,SAASA;;iBAWTC,MAAMA;;iBAQNC,OAAOA;;iBAQPC,UAAUA;;iBAQVC,OAAOA;;iBAQPC,QAAQA;;iBAQRC,UAAUA;;iBASVC,OAAOA;;iBAQPC,QAAQA;;iBAQRC,SAASA;;iBAQTC,MAAMA;;iBAUNC,OAAOA;;;;;;;;;;;;;iBC7PPC,oBAAoBA;;;;;;;;;iBAkBpBC,gBAAgBA;;;;;;iBA2IhBC,GAAGA;;;;;iBAuBHC,QAAQA;;;;;iBAqCRC,aAAaA;;;;aAxLkKC,mBAAmBA;;;;;;;;iBCrDlMC,OAAOA;;;;;iBAgBPC,IAAIA;;;;;iBAiBJC,eAAeA;;;;;iBAefC,IAAIA;;;;;iBAkBJC,wBAAwBA;;;;;iBAexBC,cAAcA;;;;;iBAedC,OAAOA;;;;;iBAcPC,UAAUA;;;;;;;;;;;kBClFbC,MAAMA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAANA,MAAMA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA4CFC,OAAOA;;;;;MCjFZC,UAAUA;;;MAGVC,YAAYA;;;WAoBPC,QAAQA;;;;;;;;WCbRC,UAAUA;;;;;;WAMVC,gBAAgBA;;;;;;;;;;;;;;;;;;;MAmBrBC,OAAOA;;WAEFC,cAAcA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cCTlBC,oBAAoBA;;;;;;iBCsCjBC,MAAMA;;;;;;iBCsBNC,OAAOA;;;;;;;;;;;;;;;;;cAyFVC,KAAKA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cCzILC,UAAUA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cCKVC,SAASA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cCMTC,SAASA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cCXTC,SAASA;;;;OCnCTC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;cA4BPC,qBAAqBA;;;;;;;;;;;;;;;;;;;;;;;cCErBC,UAAUA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBCiBPC,gBAAgBA;OChDnBC,aAAaA;;;;;;;;;;;;;;;cCMbC,OAAOA;;;;;cASPC,OAAOA;;;;;cASPC,UAAUA;;;;;cASVC,WAAWA;;;;;cASXC,UAAUA;;;;;cASVC,WAAWA;;;;;cASXC,UAAUA;;;;;cAuBVC,SAASA;;;;;cAuBTC,MAAMA;;;;;;;cAmBNC,gBAAgBA;;;OD7HhBV,aAAaA;;;;;;;;;;;;;;;;iBEEVW,MAAMA;;;;;;;;;;;;;;;;;;;;;;WCSLC,gBAAgBA;;;;;;;;;MASrBC,YAAYA;;;;;;;afxBZhC,UAAUA;;;aAGVC,YAAYA;;;aAGZI,OAAOA;;;;;;;;;;;aAWP4B,iBAAiBA;;;;;;kBAMZ/B,QAAQA;;;;;;;;;;kBAURgC,QAAQA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBgBfTC,QAAQA;;;;;;iBAcRC,QAAQA;;;;;;;;;;;;;;;;;;iBA4JRC,QAAQA;;;;;iBAcRC,GAAGA;;;;;;;;;;;;aC3MPC,cAAcA;;kBAETC,gBAAgBA;;;;;;;;kBAQhBC,UAAUA;;;;;;;;kBAQVC,UAAUA;;;;;;kBAMVC,SAASA;;;;;;;;;kBASTC,WAAWA;;;;;;;kBAOXC,WAAWA;;;;;;;;kBAQXC,UAAUA;;;;;;;kBAOVC,eAAeA;;;;;;;;;iBClBhBC,IAAIA;;;;;iBAwBJC,IAAIA;;;;;iBAiBJC,GAAGA;;;;;iBA6BHC,KAAKA;;;;;iBAmDLC,KAAKA;;;;;iBA2BLC,IAAIA;;;;;;;iBA+CJC,SAASA;;;;;;;;;;;;;;;;;;;iBCrLTC,EAAEA;;;;;;;;;;;iBAAFA,EAAEA;;;;;;;;;;;iBAAFA,EAAEA;;;;;;;;;;;iBAAFA,EAAEA;;;;;;;;;;;iBAAFA,EAAEA;;;;;;;;;;;;a9BzBNrH,kBAAkBA;;aAclBC,YAAYA;;aAsBPC,iBAAiBA;;aA3DjBH,SAASA;;aAuETuH,kBAAkBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aCRlB/G,cAAcA;;aAfdH,OAAOA;;;MAIZE,aAAaA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WA8IRE,oBAAoBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MC3KzBC,SAASA",
267
267
  "ignoreList": []
268
268
  }