@dxos/timeframe 0.8.3 → 0.8.4-main.05e74ebcff

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -1,8 +1,105 @@
1
- MIT License
2
- Copyright (c) 2022 DXOS
1
+ # Functional Source License, Version 1.1, ALv2 Future License
3
2
 
4
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
3
+ ## Abbreviation
5
4
 
6
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
5
+ FSL-1.1-Apache-2.0
7
6
 
8
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
7
+ ## Notice
8
+
9
+ Copyright 2026 DXOS
10
+
11
+ ## Terms and Conditions
12
+
13
+ ### Licensor ("We")
14
+
15
+ The party offering the Software under these Terms and Conditions.
16
+
17
+ ### The Software
18
+
19
+ The "Software" is each version of the software that we make available under
20
+ these Terms and Conditions, as indicated by our inclusion of these Terms and
21
+ Conditions with the Software.
22
+
23
+ ### License Grant
24
+
25
+ Subject to your compliance with this License Grant and the Patents,
26
+ Redistribution and Trademark clauses below, we hereby grant you the right to
27
+ use, copy, modify, create derivative works, publicly perform, publicly display
28
+ and redistribute the Software for any Permitted Purpose identified below.
29
+
30
+ ### Permitted Purpose
31
+
32
+ A Permitted Purpose is any purpose other than a Competing Use. A Competing Use
33
+ means making the Software available to others in a commercial product or
34
+ service that:
35
+
36
+ 1. substitutes for the Software;
37
+
38
+ 2. substitutes for any other product or service we offer using the Software
39
+ that exists as of the date we make the Software available; or
40
+
41
+ 3. offers the same or substantially similar functionality as the Software.
42
+
43
+ Permitted Purposes specifically include using the Software:
44
+
45
+ 1. for your internal use and access;
46
+
47
+ 2. for non-commercial education;
48
+
49
+ 3. for non-commercial research; and
50
+
51
+ 4. in connection with professional services that you provide to a licensee
52
+ using the Software in accordance with these Terms and Conditions.
53
+
54
+ ### Patents
55
+
56
+ To the extent your use for a Permitted Purpose would necessarily infringe our
57
+ patents, the license grant above includes a license under our patents. If you
58
+ make a claim against any party that the Software infringes or contributes to
59
+ the infringement of any patent, then your patent license to the Software ends
60
+ immediately.
61
+
62
+ ### Redistribution
63
+
64
+ The Terms and Conditions apply to all copies, modifications and derivatives of
65
+ the Software.
66
+
67
+ If you redistribute any copies, modifications or derivatives of the Software,
68
+ you must include a copy of or a link to these Terms and Conditions and not
69
+ remove any copyright notices provided in or with the Software.
70
+
71
+ ### Disclaimer
72
+
73
+ THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTIES OF ANY KIND, EXPRESS OR
74
+ IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES OF FITNESS FOR A PARTICULAR
75
+ PURPOSE, MERCHANTABILITY, TITLE OR NON-INFRINGEMENT.
76
+
77
+ IN NO EVENT WILL WE HAVE ANY LIABILITY TO YOU ARISING OUT OF OR RELATED TO THE
78
+ SOFTWARE, INCLUDING INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES,
79
+ EVEN IF WE HAVE BEEN INFORMED OF THEIR POSSIBILITY IN ADVANCE.
80
+
81
+ ### Trademarks
82
+
83
+ Except for displaying the License Details and identifying us as the origin of
84
+ the Software, you have no right under these Terms and Conditions to use our
85
+ trademarks, trade names, service marks or product names.
86
+
87
+ ## Grant of Future License
88
+
89
+ We hereby irrevocably grant you an additional license to use the Software under
90
+ the Apache License, Version 2.0 that is effective on the second anniversary of
91
+ the date we make the Software available. On or after that date, you may use the
92
+ Software under the Apache License, Version 2.0, in which case the following
93
+ will apply:
94
+
95
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use
96
+ this file except in compliance with the License.
97
+
98
+ You may obtain a copy of the License at
99
+
100
+ http://www.apache.org/licenses/LICENSE-2.0
101
+
102
+ Unless required by applicable law or agreed to in writing, software distributed
103
+ under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
104
+ CONDITIONS OF ANY KIND, either express or implied. See the License for the
105
+ specific language governing permissions and limitations under the License.
package/README.md CHANGED
@@ -18,4 +18,4 @@ pnpm i @dxos/timeframe
18
18
 
19
19
  Your ideas, issues, and code are most welcome. Please take a look at our [community code of conduct](https://github.com/dxos/dxos/blob/main/CODE_OF_CONDUCT.md), the [issue guide](https://github.com/dxos/dxos/blob/main/CONTRIBUTING.md#submitting-issues), and the [PR contribution guide](https://github.com/dxos/dxos/blob/main/CONTRIBUTING.md#submitting-prs).
20
20
 
21
- License: [MIT](./LICENSE) Copyright 2022 © DXOS
21
+ License: [FSL-1.1-Apache-2.0](./LICENSE) Copyright 2022 © DXOS
@@ -1,11 +1,11 @@
1
1
  import "@dxos/node-std/globals";
2
2
 
3
- // packages/common/timeframe/src/timeframe.ts
3
+ // src/timeframe.ts
4
4
  import { inspect } from "@dxos/node-std/util";
5
5
  import { equalsSymbol } from "@dxos/debug";
6
6
  var Timeframe = class _Timeframe {
7
+ _frames = /* @__PURE__ */ new Map();
7
8
  constructor(frames = []) {
8
- this._frames = /* @__PURE__ */ new Map();
9
9
  for (const [key, seq] of frames) {
10
10
  this.set(key, seq);
11
11
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/timeframe.ts"],
4
- "sourcesContent": ["//\n// Copyright 2020 DXOS.org\n//\n\nimport { inspect } from 'node:util';\n\nimport { equalsSymbol, type Equatable } from '@dxos/debug';\nimport { type PublicKey } from '@dxos/keys';\n\ntype Entry = {\n key: PublicKey;\n seq: number;\n};\n\n/**\n * A vector clock that implements ordering over a set of feed messages.\n */\nexport class Timeframe implements Equatable {\n private readonly _frames = new Map<string, Entry>();\n\n constructor(frames: [PublicKey, number][] = []) {\n for (const [key, seq] of frames) {\n this.set(key, seq);\n }\n }\n\n toJSON(): Record<string, number> {\n return this.frames().reduce((frames: Record<string, number>, [key, seq]) => {\n frames[key.truncate()] = seq;\n return frames;\n }, {});\n }\n\n toString(): string {\n return `(${this.frames()\n .map(([key, seq]) => `${key.truncate()}[${seq}]`)\n .join(', ')})`;\n }\n\n equals(object: Timeframe): boolean {\n return this.size() === object.size() && this.frames().every(([key, seq]) => object.get(key) === seq);\n }\n\n // TODO(burdon): Rename getFrame.\n get(key: PublicKey): number | undefined {\n return this._frames.get(key.toHex())?.seq;\n }\n\n // TODO(burdon): Rename setFrame.\n set(key: PublicKey, seq: number): void {\n const hex = key.toHex();\n this._frames.set(hex, { key, seq });\n }\n\n // TODO(burdon): Change to getter.\n frames(): [PublicKey, number][] {\n return Array.from(this._frames.values()).map(({ key, seq }) => [key, seq]);\n }\n\n // TODO(burdon): Change to getter.\n size(): number {\n return this._frames.size;\n }\n\n // TODO(burdon): Change to getter (empty).\n isEmpty(): boolean {\n return this.size() === 0;\n }\n\n /**\n * Returns a new timeframe with specified keys removed.\n * @param keys\n */\n withoutKeys(keys: PublicKey[]): Timeframe {\n return new Timeframe(this.frames().filter(([frameKey]) => keys.every((key) => !key.equals(frameKey))));\n }\n\n map(fn: (frame: [key: PublicKey, seq: number]) => [PublicKey, number]): Timeframe {\n return new Timeframe(this.frames().map(fn));\n }\n\n /**\n * Returns a total amount of messages represented by this timeframe.\n */\n totalMessages(): number {\n return Array.from(this._frames.values()).reduce((result, { seq }) => result + seq + 1, 0);\n }\n\n /**\n * Returns a total amount of messages that are present in this timeframe but are missing in `base`.\n */\n newMessages(base: Timeframe): number {\n return Array.from(this._frames.entries()).reduce(\n (result, [hex, { seq }]) => result + Math.max(seq - (base._frames.get(hex)?.seq ?? -1), 0),\n 0,\n );\n }\n\n /**\n * Used by NodeJS to get textual representation of this object in `console.log`.\n */\n [inspect.custom](): string {\n return `Timeframe${this.toString()}`;\n }\n\n [equalsSymbol](other: any): boolean {\n if (!(other instanceof Timeframe)) {\n return false;\n }\n\n return this.equals(other);\n }\n\n /**\n * Merges the values, updating the highest sequence numbers.\n * @param timeframes\n */\n static merge(...timeframes: Timeframe[]): Timeframe {\n const result = new Timeframe();\n for (const timeframe of timeframes) {\n for (const [hex, entry] of timeframe._frames) {\n const currentEntry = result._frames.get(hex);\n if (currentEntry === undefined || entry.seq > currentEntry.seq) {\n result._frames.set(hex, entry);\n }\n }\n }\n\n return result;\n }\n\n /**\n * Compares two timeframes and returns an array of frames from the first timeframe where the sequence number\n * is greater than the associated sequence number from the second timeframe.\n */\n static dependencies(tf1: Timeframe, tf2: Timeframe): Timeframe {\n const result = new Timeframe();\n for (const [hex, entry] of tf1._frames) {\n const otherEntry = tf2._frames.get(hex);\n if (otherEntry === undefined || otherEntry.seq < entry.seq) {\n result._frames.set(hex, entry);\n }\n }\n\n return result;\n }\n}\n"],
5
- "mappings": "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",
6
- "names": ["inspect", "equalsSymbol", "Timeframe", "frames", "_frames", "Map", "key", "seq", "set", "toJSON", "reduce", "truncate", "toString", "map", "join", "equals", "object", "size", "every", "get", "toHex", "hex", "Array", "from", "values", "isEmpty", "withoutKeys", "keys", "filter", "frameKey", "fn", "totalMessages", "result", "newMessages", "base", "entries", "Math", "max", "inspect", "custom", "equalsSymbol", "other", "merge", "timeframes", "timeframe", "entry", "currentEntry", "undefined", "dependencies", "tf1", "tf2", "otherEntry"]
4
+ "sourcesContent": ["//\n// Copyright 2020 DXOS.org\n//\n\nimport { inspect } from 'node:util';\n\nimport { type Equatable, equalsSymbol } from '@dxos/debug';\nimport { type PublicKey } from '@dxos/keys';\n\ntype Entry = {\n key: PublicKey;\n seq: number;\n};\n\n/**\n * A vector clock that implements ordering over a set of feed messages.\n */\nexport class Timeframe implements Equatable {\n private readonly _frames = new Map<string, Entry>();\n\n constructor(frames: [PublicKey, number][] = []) {\n for (const [key, seq] of frames) {\n this.set(key, seq);\n }\n }\n\n toJSON(): Record<string, number> {\n return this.frames().reduce((frames: Record<string, number>, [key, seq]) => {\n frames[key.truncate()] = seq;\n return frames;\n }, {});\n }\n\n toString(): string {\n return `(${this.frames()\n .map(([key, seq]) => `${key.truncate()}[${seq}]`)\n .join(', ')})`;\n }\n\n equals(object: Timeframe): boolean {\n return this.size() === object.size() && this.frames().every(([key, seq]) => object.get(key) === seq);\n }\n\n // TODO(burdon): Rename getFrame.\n get(key: PublicKey): number | undefined {\n return this._frames.get(key.toHex())?.seq;\n }\n\n // TODO(burdon): Rename setFrame.\n set(key: PublicKey, seq: number): void {\n const hex = key.toHex();\n this._frames.set(hex, { key, seq });\n }\n\n // TODO(burdon): Change to getter.\n frames(): [PublicKey, number][] {\n return Array.from(this._frames.values()).map(({ key, seq }) => [key, seq]);\n }\n\n // TODO(burdon): Change to getter.\n size(): number {\n return this._frames.size;\n }\n\n // TODO(burdon): Change to getter (empty).\n isEmpty(): boolean {\n return this.size() === 0;\n }\n\n /**\n * Returns a new timeframe with specified keys removed.\n * @param keys\n */\n withoutKeys(keys: PublicKey[]): Timeframe {\n return new Timeframe(this.frames().filter(([frameKey]) => keys.every((key) => !key.equals(frameKey))));\n }\n\n map(fn: (frame: [key: PublicKey, seq: number]) => [PublicKey, number]): Timeframe {\n return new Timeframe(this.frames().map(fn));\n }\n\n /**\n * Returns a total amount of messages represented by this timeframe.\n */\n totalMessages(): number {\n return Array.from(this._frames.values()).reduce((result, { seq }) => result + seq + 1, 0);\n }\n\n /**\n * Returns a total amount of messages that are present in this timeframe but are missing in `base`.\n */\n newMessages(base: Timeframe): number {\n return Array.from(this._frames.entries()).reduce(\n (result, [hex, { seq }]) => result + Math.max(seq - (base._frames.get(hex)?.seq ?? -1), 0),\n 0,\n );\n }\n\n /**\n * Used by NodeJS to get textual representation of this object in `console.log`.\n */\n [inspect.custom](): string {\n return `Timeframe${this.toString()}`;\n }\n\n [equalsSymbol](other: any): boolean {\n if (!(other instanceof Timeframe)) {\n return false;\n }\n\n return this.equals(other);\n }\n\n /**\n * Merges the values, updating the highest sequence numbers.\n * @param timeframes\n */\n static merge(...timeframes: Timeframe[]): Timeframe {\n const result = new Timeframe();\n for (const timeframe of timeframes) {\n for (const [hex, entry] of timeframe._frames) {\n const currentEntry = result._frames.get(hex);\n if (currentEntry === undefined || entry.seq > currentEntry.seq) {\n result._frames.set(hex, entry);\n }\n }\n }\n\n return result;\n }\n\n /**\n * Compares two timeframes and returns an array of frames from the first timeframe where the sequence number\n * is greater than the associated sequence number from the second timeframe.\n */\n static dependencies(tf1: Timeframe, tf2: Timeframe): Timeframe {\n const result = new Timeframe();\n for (const [hex, entry] of tf1._frames) {\n const otherEntry = tf2._frames.get(hex);\n if (otherEntry === undefined || otherEntry.seq < entry.seq) {\n result._frames.set(hex, entry);\n }\n }\n\n return result;\n }\n}\n"],
5
+ "mappings": "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",
6
+ "names": ["inspect", "equalsSymbol", "Timeframe", "_frames", "Map", "frames", "key", "seq", "set", "toJSON", "reduce", "truncate", "toString", "map", "join", "equals", "object", "size", "every", "get", "toHex", "hex", "Array", "from", "values", "isEmpty", "withoutKeys", "keys", "filter", "frameKey", "fn", "totalMessages", "result", "newMessages", "base", "entries", "Math", "max", "custom", "other", "merge", "timeframes", "timeframe", "entry", "currentEntry", "undefined", "dependencies", "tf1", "tf2", "otherEntry"]
7
7
  }
@@ -1 +1 @@
1
- {"inputs":{"packages/common/timeframe/src/timeframe.ts":{"bytes":13817,"imports":[{"path":"@dxos/node-std/util","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true}],"format":"esm"},"packages/common/timeframe/src/index.ts":{"bytes":470,"imports":[{"path":"packages/common/timeframe/src/timeframe.ts","kind":"import-statement","original":"./timeframe"}],"format":"esm"}},"outputs":{"packages/common/timeframe/dist/lib/browser/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":7157},"packages/common/timeframe/dist/lib/browser/index.mjs":{"imports":[{"path":"@dxos/node-std/util","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true}],"exports":["Timeframe"],"entryPoint":"packages/common/timeframe/src/index.ts","inputs":{"packages/common/timeframe/src/timeframe.ts":{"bytesInOutput":3277},"packages/common/timeframe/src/index.ts":{"bytesInOutput":0}},"bytes":3416}}}
1
+ {"inputs":{"src/timeframe.ts":{"bytes":13724,"imports":[{"path":"@dxos/node-std/util","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true}],"format":"esm"},"src/index.ts":{"bytes":377,"imports":[{"path":"src/timeframe.ts","kind":"import-statement","original":"./timeframe"}],"format":"esm"}},"outputs":{"dist/lib/browser/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":7133},"dist/lib/browser/index.mjs":{"imports":[{"path":"@dxos/node-std/util","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true}],"exports":["Timeframe"],"entryPoint":"src/index.ts","inputs":{"src/timeframe.ts":{"bytesInOutput":3270},"src/index.ts":{"bytesInOutput":0}},"bytes":3383}}}
@@ -1,11 +1,11 @@
1
1
  import { createRequire } from 'node:module';const require = createRequire(import.meta.url);
2
2
 
3
- // packages/common/timeframe/src/timeframe.ts
3
+ // src/timeframe.ts
4
4
  import { inspect } from "node:util";
5
5
  import { equalsSymbol } from "@dxos/debug";
6
6
  var Timeframe = class _Timeframe {
7
+ _frames = /* @__PURE__ */ new Map();
7
8
  constructor(frames = []) {
8
- this._frames = /* @__PURE__ */ new Map();
9
9
  for (const [key, seq] of frames) {
10
10
  this.set(key, seq);
11
11
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/timeframe.ts"],
4
- "sourcesContent": ["//\n// Copyright 2020 DXOS.org\n//\n\nimport { inspect } from 'node:util';\n\nimport { equalsSymbol, type Equatable } from '@dxos/debug';\nimport { type PublicKey } from '@dxos/keys';\n\ntype Entry = {\n key: PublicKey;\n seq: number;\n};\n\n/**\n * A vector clock that implements ordering over a set of feed messages.\n */\nexport class Timeframe implements Equatable {\n private readonly _frames = new Map<string, Entry>();\n\n constructor(frames: [PublicKey, number][] = []) {\n for (const [key, seq] of frames) {\n this.set(key, seq);\n }\n }\n\n toJSON(): Record<string, number> {\n return this.frames().reduce((frames: Record<string, number>, [key, seq]) => {\n frames[key.truncate()] = seq;\n return frames;\n }, {});\n }\n\n toString(): string {\n return `(${this.frames()\n .map(([key, seq]) => `${key.truncate()}[${seq}]`)\n .join(', ')})`;\n }\n\n equals(object: Timeframe): boolean {\n return this.size() === object.size() && this.frames().every(([key, seq]) => object.get(key) === seq);\n }\n\n // TODO(burdon): Rename getFrame.\n get(key: PublicKey): number | undefined {\n return this._frames.get(key.toHex())?.seq;\n }\n\n // TODO(burdon): Rename setFrame.\n set(key: PublicKey, seq: number): void {\n const hex = key.toHex();\n this._frames.set(hex, { key, seq });\n }\n\n // TODO(burdon): Change to getter.\n frames(): [PublicKey, number][] {\n return Array.from(this._frames.values()).map(({ key, seq }) => [key, seq]);\n }\n\n // TODO(burdon): Change to getter.\n size(): number {\n return this._frames.size;\n }\n\n // TODO(burdon): Change to getter (empty).\n isEmpty(): boolean {\n return this.size() === 0;\n }\n\n /**\n * Returns a new timeframe with specified keys removed.\n * @param keys\n */\n withoutKeys(keys: PublicKey[]): Timeframe {\n return new Timeframe(this.frames().filter(([frameKey]) => keys.every((key) => !key.equals(frameKey))));\n }\n\n map(fn: (frame: [key: PublicKey, seq: number]) => [PublicKey, number]): Timeframe {\n return new Timeframe(this.frames().map(fn));\n }\n\n /**\n * Returns a total amount of messages represented by this timeframe.\n */\n totalMessages(): number {\n return Array.from(this._frames.values()).reduce((result, { seq }) => result + seq + 1, 0);\n }\n\n /**\n * Returns a total amount of messages that are present in this timeframe but are missing in `base`.\n */\n newMessages(base: Timeframe): number {\n return Array.from(this._frames.entries()).reduce(\n (result, [hex, { seq }]) => result + Math.max(seq - (base._frames.get(hex)?.seq ?? -1), 0),\n 0,\n );\n }\n\n /**\n * Used by NodeJS to get textual representation of this object in `console.log`.\n */\n [inspect.custom](): string {\n return `Timeframe${this.toString()}`;\n }\n\n [equalsSymbol](other: any): boolean {\n if (!(other instanceof Timeframe)) {\n return false;\n }\n\n return this.equals(other);\n }\n\n /**\n * Merges the values, updating the highest sequence numbers.\n * @param timeframes\n */\n static merge(...timeframes: Timeframe[]): Timeframe {\n const result = new Timeframe();\n for (const timeframe of timeframes) {\n for (const [hex, entry] of timeframe._frames) {\n const currentEntry = result._frames.get(hex);\n if (currentEntry === undefined || entry.seq > currentEntry.seq) {\n result._frames.set(hex, entry);\n }\n }\n }\n\n return result;\n }\n\n /**\n * Compares two timeframes and returns an array of frames from the first timeframe where the sequence number\n * is greater than the associated sequence number from the second timeframe.\n */\n static dependencies(tf1: Timeframe, tf2: Timeframe): Timeframe {\n const result = new Timeframe();\n for (const [hex, entry] of tf1._frames) {\n const otherEntry = tf2._frames.get(hex);\n if (otherEntry === undefined || otherEntry.seq < entry.seq) {\n result._frames.set(hex, entry);\n }\n }\n\n return result;\n }\n}\n"],
5
- "mappings": "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",
6
- "names": ["inspect", "equalsSymbol", "Timeframe", "frames", "_frames", "Map", "key", "seq", "set", "toJSON", "reduce", "truncate", "toString", "map", "join", "equals", "object", "size", "every", "get", "toHex", "hex", "Array", "from", "values", "isEmpty", "withoutKeys", "keys", "filter", "frameKey", "fn", "totalMessages", "result", "newMessages", "base", "entries", "Math", "max", "inspect", "custom", "equalsSymbol", "other", "merge", "timeframes", "timeframe", "entry", "currentEntry", "undefined", "dependencies", "tf1", "tf2", "otherEntry"]
4
+ "sourcesContent": ["//\n// Copyright 2020 DXOS.org\n//\n\nimport { inspect } from 'node:util';\n\nimport { type Equatable, equalsSymbol } from '@dxos/debug';\nimport { type PublicKey } from '@dxos/keys';\n\ntype Entry = {\n key: PublicKey;\n seq: number;\n};\n\n/**\n * A vector clock that implements ordering over a set of feed messages.\n */\nexport class Timeframe implements Equatable {\n private readonly _frames = new Map<string, Entry>();\n\n constructor(frames: [PublicKey, number][] = []) {\n for (const [key, seq] of frames) {\n this.set(key, seq);\n }\n }\n\n toJSON(): Record<string, number> {\n return this.frames().reduce((frames: Record<string, number>, [key, seq]) => {\n frames[key.truncate()] = seq;\n return frames;\n }, {});\n }\n\n toString(): string {\n return `(${this.frames()\n .map(([key, seq]) => `${key.truncate()}[${seq}]`)\n .join(', ')})`;\n }\n\n equals(object: Timeframe): boolean {\n return this.size() === object.size() && this.frames().every(([key, seq]) => object.get(key) === seq);\n }\n\n // TODO(burdon): Rename getFrame.\n get(key: PublicKey): number | undefined {\n return this._frames.get(key.toHex())?.seq;\n }\n\n // TODO(burdon): Rename setFrame.\n set(key: PublicKey, seq: number): void {\n const hex = key.toHex();\n this._frames.set(hex, { key, seq });\n }\n\n // TODO(burdon): Change to getter.\n frames(): [PublicKey, number][] {\n return Array.from(this._frames.values()).map(({ key, seq }) => [key, seq]);\n }\n\n // TODO(burdon): Change to getter.\n size(): number {\n return this._frames.size;\n }\n\n // TODO(burdon): Change to getter (empty).\n isEmpty(): boolean {\n return this.size() === 0;\n }\n\n /**\n * Returns a new timeframe with specified keys removed.\n * @param keys\n */\n withoutKeys(keys: PublicKey[]): Timeframe {\n return new Timeframe(this.frames().filter(([frameKey]) => keys.every((key) => !key.equals(frameKey))));\n }\n\n map(fn: (frame: [key: PublicKey, seq: number]) => [PublicKey, number]): Timeframe {\n return new Timeframe(this.frames().map(fn));\n }\n\n /**\n * Returns a total amount of messages represented by this timeframe.\n */\n totalMessages(): number {\n return Array.from(this._frames.values()).reduce((result, { seq }) => result + seq + 1, 0);\n }\n\n /**\n * Returns a total amount of messages that are present in this timeframe but are missing in `base`.\n */\n newMessages(base: Timeframe): number {\n return Array.from(this._frames.entries()).reduce(\n (result, [hex, { seq }]) => result + Math.max(seq - (base._frames.get(hex)?.seq ?? -1), 0),\n 0,\n );\n }\n\n /**\n * Used by NodeJS to get textual representation of this object in `console.log`.\n */\n [inspect.custom](): string {\n return `Timeframe${this.toString()}`;\n }\n\n [equalsSymbol](other: any): boolean {\n if (!(other instanceof Timeframe)) {\n return false;\n }\n\n return this.equals(other);\n }\n\n /**\n * Merges the values, updating the highest sequence numbers.\n * @param timeframes\n */\n static merge(...timeframes: Timeframe[]): Timeframe {\n const result = new Timeframe();\n for (const timeframe of timeframes) {\n for (const [hex, entry] of timeframe._frames) {\n const currentEntry = result._frames.get(hex);\n if (currentEntry === undefined || entry.seq > currentEntry.seq) {\n result._frames.set(hex, entry);\n }\n }\n }\n\n return result;\n }\n\n /**\n * Compares two timeframes and returns an array of frames from the first timeframe where the sequence number\n * is greater than the associated sequence number from the second timeframe.\n */\n static dependencies(tf1: Timeframe, tf2: Timeframe): Timeframe {\n const result = new Timeframe();\n for (const [hex, entry] of tf1._frames) {\n const otherEntry = tf2._frames.get(hex);\n if (otherEntry === undefined || otherEntry.seq < entry.seq) {\n result._frames.set(hex, entry);\n }\n }\n\n return result;\n }\n}\n"],
5
+ "mappings": ";;;AAIA,SAASA,eAAe;AAExB,SAAyBC,oBAAoB;AAWtC,IAAMC,YAAN,MAAMA,WAAAA;EACMC,UAAU,oBAAIC,IAAAA;EAE/B,YAAYC,SAAgC,CAAA,GAAI;AAC9C,eAAW,CAACC,KAAKC,GAAAA,KAAQF,QAAQ;AAC/B,WAAKG,IAAIF,KAAKC,GAAAA;IAChB;EACF;EAEAE,SAAiC;AAC/B,WAAO,KAAKJ,OAAM,EAAGK,OAAO,CAACL,QAAgC,CAACC,KAAKC,GAAAA,MAAI;AACrEF,aAAOC,IAAIK,SAAQ,CAAA,IAAMJ;AACzB,aAAOF;IACT,GAAG,CAAC,CAAA;EACN;EAEAO,WAAmB;AACjB,WAAO,IAAI,KAAKP,OAAM,EACnBQ,IAAI,CAAC,CAACP,KAAKC,GAAAA,MAAS,GAAGD,IAAIK,SAAQ,CAAA,IAAMJ,GAAAA,GAAM,EAC/CO,KAAK,IAAA,CAAA;EACV;EAEAC,OAAOC,QAA4B;AACjC,WAAO,KAAKC,KAAI,MAAOD,OAAOC,KAAI,KAAM,KAAKZ,OAAM,EAAGa,MAAM,CAAC,CAACZ,KAAKC,GAAAA,MAASS,OAAOG,IAAIb,GAAAA,MAASC,GAAAA;EAClG;;EAGAY,IAAIb,KAAoC;AACtC,WAAO,KAAKH,QAAQgB,IAAIb,IAAIc,MAAK,CAAA,GAAKb;EACxC;;EAGAC,IAAIF,KAAgBC,KAAmB;AACrC,UAAMc,MAAMf,IAAIc,MAAK;AACrB,SAAKjB,QAAQK,IAAIa,KAAK;MAAEf;MAAKC;IAAI,CAAA;EACnC;;EAGAF,SAAgC;AAC9B,WAAOiB,MAAMC,KAAK,KAAKpB,QAAQqB,OAAM,CAAA,EAAIX,IAAI,CAAC,EAAEP,KAAKC,IAAG,MAAO;MAACD;MAAKC;KAAI;EAC3E;;EAGAU,OAAe;AACb,WAAO,KAAKd,QAAQc;EACtB;;EAGAQ,UAAmB;AACjB,WAAO,KAAKR,KAAI,MAAO;EACzB;;;;;EAMAS,YAAYC,MAA8B;AACxC,WAAO,IAAIzB,WAAU,KAAKG,OAAM,EAAGuB,OAAO,CAAC,CAACC,QAAAA,MAAcF,KAAKT,MAAM,CAACZ,QAAQ,CAACA,IAAIS,OAAOc,QAAAA,CAAAA,CAAAA,CAAAA;EAC5F;EAEAhB,IAAIiB,IAA8E;AAChF,WAAO,IAAI5B,WAAU,KAAKG,OAAM,EAAGQ,IAAIiB,EAAAA,CAAAA;EACzC;;;;EAKAC,gBAAwB;AACtB,WAAOT,MAAMC,KAAK,KAAKpB,QAAQqB,OAAM,CAAA,EAAId,OAAO,CAACsB,QAAQ,EAAEzB,IAAG,MAAOyB,SAASzB,MAAM,GAAG,CAAA;EACzF;;;;EAKA0B,YAAYC,MAAyB;AACnC,WAAOZ,MAAMC,KAAK,KAAKpB,QAAQgC,QAAO,CAAA,EAAIzB,OACxC,CAACsB,QAAQ,CAACX,KAAK,EAAEd,IAAG,CAAE,MAAMyB,SAASI,KAAKC,IAAI9B,OAAO2B,KAAK/B,QAAQgB,IAAIE,GAAAA,GAAMd,OAAO,KAAK,CAAA,GACxF,CAAA;EAEJ;;;;EAKA,CAACP,QAAQsC,MAAM,IAAY;AACzB,WAAO,YAAY,KAAK1B,SAAQ,CAAA;EAClC;EAEA,CAACX,YAAAA,EAAcsC,OAAqB;AAClC,QAAI,EAAEA,iBAAiBrC,aAAY;AACjC,aAAO;IACT;AAEA,WAAO,KAAKa,OAAOwB,KAAAA;EACrB;;;;;EAMA,OAAOC,SAASC,YAAoC;AAClD,UAAMT,SAAS,IAAI9B,WAAAA;AACnB,eAAWwC,aAAaD,YAAY;AAClC,iBAAW,CAACpB,KAAKsB,KAAAA,KAAUD,UAAUvC,SAAS;AAC5C,cAAMyC,eAAeZ,OAAO7B,QAAQgB,IAAIE,GAAAA;AACxC,YAAIuB,iBAAiBC,UAAaF,MAAMpC,MAAMqC,aAAarC,KAAK;AAC9DyB,iBAAO7B,QAAQK,IAAIa,KAAKsB,KAAAA;QAC1B;MACF;IACF;AAEA,WAAOX;EACT;;;;;EAMA,OAAOc,aAAaC,KAAgBC,KAA2B;AAC7D,UAAMhB,SAAS,IAAI9B,WAAAA;AACnB,eAAW,CAACmB,KAAKsB,KAAAA,KAAUI,IAAI5C,SAAS;AACtC,YAAM8C,aAAaD,IAAI7C,QAAQgB,IAAIE,GAAAA;AACnC,UAAI4B,eAAeJ,UAAaI,WAAW1C,MAAMoC,MAAMpC,KAAK;AAC1DyB,eAAO7B,QAAQK,IAAIa,KAAKsB,KAAAA;MAC1B;IACF;AAEA,WAAOX;EACT;AACF;",
6
+ "names": ["inspect", "equalsSymbol", "Timeframe", "_frames", "Map", "frames", "key", "seq", "set", "toJSON", "reduce", "truncate", "toString", "map", "join", "equals", "object", "size", "every", "get", "toHex", "hex", "Array", "from", "values", "isEmpty", "withoutKeys", "keys", "filter", "frameKey", "fn", "totalMessages", "result", "newMessages", "base", "entries", "Math", "max", "custom", "other", "merge", "timeframes", "timeframe", "entry", "currentEntry", "undefined", "dependencies", "tf1", "tf2", "otherEntry"]
7
7
  }
@@ -1 +1 @@
1
- {"inputs":{"packages/common/timeframe/src/timeframe.ts":{"bytes":13817,"imports":[{"path":"node:util","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true}],"format":"esm"},"packages/common/timeframe/src/index.ts":{"bytes":470,"imports":[{"path":"packages/common/timeframe/src/timeframe.ts","kind":"import-statement","original":"./timeframe"}],"format":"esm"}},"outputs":{"packages/common/timeframe/dist/lib/node-esm/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":7157},"packages/common/timeframe/dist/lib/node-esm/index.mjs":{"imports":[{"path":"node:util","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true}],"exports":["Timeframe"],"entryPoint":"packages/common/timeframe/src/index.ts","inputs":{"packages/common/timeframe/src/timeframe.ts":{"bytesInOutput":3267},"packages/common/timeframe/src/index.ts":{"bytesInOutput":0}},"bytes":3465}}}
1
+ {"inputs":{"src/timeframe.ts":{"bytes":13724,"imports":[{"path":"node:util","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true}],"format":"esm"},"src/index.ts":{"bytes":377,"imports":[{"path":"src/timeframe.ts","kind":"import-statement","original":"./timeframe"}],"format":"esm"}},"outputs":{"dist/lib/node-esm/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":7133},"dist/lib/node-esm/index.mjs":{"imports":[{"path":"node:util","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true}],"exports":["Timeframe"],"entryPoint":"src/index.ts","inputs":{"src/timeframe.ts":{"bytesInOutput":3260},"src/index.ts":{"bytesInOutput":0}},"bytes":3432}}}
@@ -1,5 +1,5 @@
1
1
  import { inspect } from 'node:util';
2
- import { equalsSymbol, type Equatable } from '@dxos/debug';
2
+ import { type Equatable, equalsSymbol } from '@dxos/debug';
3
3
  import { type PublicKey } from '@dxos/keys';
4
4
  /**
5
5
  * A vector clock that implements ordering over a set of feed messages.
@@ -1 +1 @@
1
- {"version":3,"file":"timeframe.d.ts","sourceRoot":"","sources":["../../../src/timeframe.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEpC,OAAO,EAAE,YAAY,EAAE,KAAK,SAAS,EAAE,MAAM,aAAa,CAAC;AAC3D,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,YAAY,CAAC;AAO5C;;GAEG;AACH,qBAAa,SAAU,YAAW,SAAS;IACzC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAA4B;gBAExC,MAAM,GAAE,CAAC,SAAS,EAAE,MAAM,CAAC,EAAO;IAM9C,MAAM,IAAI,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;IAOhC,QAAQ,IAAI,MAAM;IAMlB,MAAM,CAAC,MAAM,EAAE,SAAS,GAAG,OAAO;IAKlC,GAAG,CAAC,GAAG,EAAE,SAAS,GAAG,MAAM,GAAG,SAAS;IAKvC,GAAG,CAAC,GAAG,EAAE,SAAS,EAAE,GAAG,EAAE,MAAM,GAAG,IAAI;IAMtC,MAAM,IAAI,CAAC,SAAS,EAAE,MAAM,CAAC,EAAE;IAK/B,IAAI,IAAI,MAAM;IAKd,OAAO,IAAI,OAAO;IAIlB;;;OAGG;IACH,WAAW,CAAC,IAAI,EAAE,SAAS,EAAE,GAAG,SAAS;IAIzC,GAAG,CAAC,EAAE,EAAE,CAAC,KAAK,EAAE,CAAC,GAAG,EAAE,SAAS,EAAE,GAAG,EAAE,MAAM,CAAC,KAAK,CAAC,SAAS,EAAE,MAAM,CAAC,GAAG,SAAS;IAIjF;;OAEG;IACH,aAAa,IAAI,MAAM;IAIvB;;OAEG;IACH,WAAW,CAAC,IAAI,EAAE,SAAS,GAAG,MAAM;IAOpC;;OAEG;IACH,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,MAAM;IAI1B,CAAC,YAAY,CAAC,CAAC,KAAK,EAAE,GAAG,GAAG,OAAO;IAQnC;;;OAGG;IACH,MAAM,CAAC,KAAK,CAAC,GAAG,UAAU,EAAE,SAAS,EAAE,GAAG,SAAS;IAcnD;;;OAGG;IACH,MAAM,CAAC,YAAY,CAAC,GAAG,EAAE,SAAS,EAAE,GAAG,EAAE,SAAS,GAAG,SAAS;CAW/D"}
1
+ {"version":3,"file":"timeframe.d.ts","sourceRoot":"","sources":["../../../src/timeframe.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEpC,OAAO,EAAE,KAAK,SAAS,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAC3D,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,YAAY,CAAC;AAO5C;;GAEG;AACH,qBAAa,SAAU,YAAW,SAAS;IACzC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAA4B;IAEpD,YAAY,MAAM,GAAE,CAAC,SAAS,EAAE,MAAM,CAAC,EAAO,EAI7C;IAED,MAAM,IAAI,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAK/B;IAED,QAAQ,IAAI,MAAM,CAIjB;IAED,MAAM,CAAC,MAAM,EAAE,SAAS,GAAG,OAAO,CAEjC;IAGD,GAAG,CAAC,GAAG,EAAE,SAAS,GAAG,MAAM,GAAG,SAAS,CAEtC;IAGD,GAAG,CAAC,GAAG,EAAE,SAAS,EAAE,GAAG,EAAE,MAAM,GAAG,IAAI,CAGrC;IAGD,MAAM,IAAI,CAAC,SAAS,EAAE,MAAM,CAAC,EAAE,CAE9B;IAGD,IAAI,IAAI,MAAM,CAEb;IAGD,OAAO,IAAI,OAAO,CAEjB;IAED;;;OAGG;IACH,WAAW,CAAC,IAAI,EAAE,SAAS,EAAE,GAAG,SAAS,CAExC;IAED,GAAG,CAAC,EAAE,EAAE,CAAC,KAAK,EAAE,CAAC,GAAG,EAAE,SAAS,EAAE,GAAG,EAAE,MAAM,CAAC,KAAK,CAAC,SAAS,EAAE,MAAM,CAAC,GAAG,SAAS,CAEhF;IAED;;OAEG;IACH,aAAa,IAAI,MAAM,CAEtB;IAED;;OAEG;IACH,WAAW,CAAC,IAAI,EAAE,SAAS,GAAG,MAAM,CAKnC;IAED;;OAEG;IACH,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,MAAM,CAEzB;IAED,CAAC,YAAY,CAAC,CAAC,KAAK,EAAE,GAAG,GAAG,OAAO,CAMlC;IAED;;;OAGG;IACH,MAAM,CAAC,KAAK,CAAC,GAAG,UAAU,EAAE,SAAS,EAAE,GAAG,SAAS,CAYlD;IAED;;;OAGG;IACH,MAAM,CAAC,YAAY,CAAC,GAAG,EAAE,SAAS,EAAE,GAAG,EAAE,SAAS,GAAG,SAAS,CAU7D;CACF"}
@@ -1 +1 @@
1
- {"version":"5.8.3"}
1
+ {"version":"7.0.0-dev.20260421.2","root":[[477,479],498],"fileNames":["lib.es5.d.ts","lib.es2015.d.ts","lib.es2016.d.ts","lib.es2017.d.ts","lib.es2018.d.ts","lib.es2019.d.ts","lib.es2020.d.ts","lib.es2021.d.ts","lib.es2022.d.ts","lib.es2023.d.ts","lib.es2024.d.ts","lib.es2025.d.ts","lib.esnext.d.ts","lib.dom.d.ts","lib.es2015.core.d.ts","lib.es2015.collection.d.ts","lib.es2015.generator.d.ts","lib.es2015.iterable.d.ts","lib.es2015.promise.d.ts","lib.es2015.proxy.d.ts","lib.es2015.reflect.d.ts","lib.es2015.symbol.d.ts","lib.es2015.symbol.wellknown.d.ts","lib.es2016.array.include.d.ts","lib.es2016.intl.d.ts","lib.es2017.arraybuffer.d.ts","lib.es2017.date.d.ts","lib.es2017.object.d.ts","lib.es2017.sharedmemory.d.ts","lib.es2017.string.d.ts","lib.es2017.intl.d.ts","lib.es2017.typedarrays.d.ts","lib.es2018.asyncgenerator.d.ts","lib.es2018.asynciterable.d.ts","lib.es2018.intl.d.ts","lib.es2018.promise.d.ts","lib.es2018.regexp.d.ts","lib.es2019.array.d.ts","lib.es2019.object.d.ts","lib.es2019.string.d.ts","lib.es2019.symbol.d.ts","lib.es2019.intl.d.ts","lib.es2020.bigint.d.ts","lib.es2020.date.d.ts","lib.es2020.promise.d.ts","lib.es2020.sharedmemory.d.ts","lib.es2020.string.d.ts","lib.es2020.symbol.wellknown.d.ts","lib.es2020.intl.d.ts","lib.es2020.number.d.ts","lib.es2021.promise.d.ts","lib.es2021.string.d.ts","lib.es2021.weakref.d.ts","lib.es2021.intl.d.ts","lib.es2022.array.d.ts","lib.es2022.error.d.ts","lib.es2022.intl.d.ts","lib.es2022.object.d.ts","lib.es2022.string.d.ts","lib.es2022.regexp.d.ts","lib.es2023.array.d.ts","lib.es2023.collection.d.ts","lib.es2023.intl.d.ts","lib.es2024.arraybuffer.d.ts","lib.es2024.collection.d.ts","lib.es2024.object.d.ts","lib.es2024.promise.d.ts","lib.es2024.regexp.d.ts","lib.es2024.sharedmemory.d.ts","lib.es2024.string.d.ts","lib.es2025.collection.d.ts","lib.es2025.float16.d.ts","lib.es2025.intl.d.ts","lib.es2025.iterator.d.ts","lib.es2025.promise.d.ts","lib.es2025.regexp.d.ts","lib.esnext.array.d.ts","lib.esnext.collection.d.ts","lib.esnext.date.d.ts","lib.esnext.decorators.d.ts","lib.esnext.disposable.d.ts","lib.esnext.error.d.ts","lib.esnext.intl.d.ts","lib.esnext.sharedmemory.d.ts","lib.esnext.temporal.d.ts","lib.esnext.typedarrays.d.ts","lib.decorators.d.ts","lib.decorators.legacy.d.ts","../../../../../node_modules/.pnpm/@vitest+pretty-format@4.1.6/node_modules/@vitest/pretty-format/dist/index.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.6/node_modules/@vitest/utils/dist/display.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.6/node_modules/@vitest/utils/dist/types.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.6/node_modules/@vitest/utils/dist/helpers.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.6/node_modules/@vitest/utils/dist/timers.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.6/node_modules/@vitest/utils/dist/index.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.6/node_modules/@vitest/utils/dist/types.d-BCElaP-c.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.6/node_modules/@vitest/utils/dist/diff.d.ts","../../../../../node_modules/.pnpm/@vitest+runner@4.1.6/node_modules/@vitest/runner/dist/tasks.d-DEYaIMIu.d.ts","../../../../../node_modules/.pnpm/@vitest+runner@4.1.6/node_modules/@vitest/runner/dist/index.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/dist/chunks/traces.d.D2T_R8rx.d.ts","../../../../../node_modules/.pnpm/vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2/node_modules/vite/types/hmrPayload.d.ts","../../../../../node_modules/.pnpm/vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2/node_modules/vite/dist/node/chunks/moduleRunnerTransport.d.ts","../../../../../node_modules/.pnpm/vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2/node_modules/vite/types/customEvent.d.ts","../../../../../node_modules/.pnpm/vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2/node_modules/vite/types/hot.d.ts","../../../../../node_modules/.pnpm/vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2/node_modules/vite/dist/node/module-runner.d.ts","../../../../../node_modules/.pnpm/@vitest+snapshot@4.1.6/node_modules/@vitest/snapshot/dist/environment.d-DOJxxZV9.d.ts","../../../../../node_modules/.pnpm/@vitest+snapshot@4.1.6/node_modules/@vitest/snapshot/dist/rawSnapshot.d-D_X3-62x.d.ts","../../../../../node_modules/.pnpm/@vitest+snapshot@4.1.6/node_modules/@vitest/snapshot/dist/index.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/dist/chunks/config.d.A1h_Y6Jt.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/dist/chunks/environment.d.CrsxCzP1.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/dist/chunks/rpc.d.B_8sPU0w.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/dist/chunks/worker.d.ZpHpO4yb.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/dist/chunks/browser.d.BcoexmFG.d.ts","../../../../../node_modules/.pnpm/@vitest+spy@4.1.6/node_modules/@vitest/spy/optional-types.d.ts","../../../../../node_modules/.pnpm/@vitest+spy@4.1.6/node_modules/@vitest/spy/dist/index.d.ts","../../../../../node_modules/.pnpm/tinyrainbow@3.1.0/node_modules/tinyrainbow/dist/index.d.ts","../../../../../node_modules/.pnpm/@standard-schema+spec@1.1.0/node_modules/@standard-schema/spec/dist/index.d.ts","../../../../../node_modules/.pnpm/@types+deep-eql@4.0.2/node_modules/@types/deep-eql/index.d.ts","../../../../../node_modules/.pnpm/@types+chai@5.2.2/node_modules/@types/chai/index.d.ts","../../../../../node_modules/.pnpm/@vitest+expect@4.1.6/node_modules/@vitest/expect/dist/index.d.ts","../../../../../node_modules/.pnpm/@vitest+runner@4.1.6/node_modules/@vitest/runner/dist/utils.d.ts","../../../../../node_modules/.pnpm/tinybench@2.9.0/node_modules/tinybench/dist/index.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/dist/chunks/benchmark.d.DAaHLpsq.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/dist/chunks/global.d.DVsSRdQ5.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/optional-runtime-types.d.ts","../../../../../node_modules/.pnpm/@vitest+mocker@4.1.6_vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2_/node_modules/@vitest/mocker/dist/types.d-BjI5eAwu.d.ts","../../../../../node_modules/.pnpm/@vitest+mocker@4.1.6_vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2_/node_modules/@vitest/mocker/dist/index.d-B41z0AuW.d.ts","../../../../../node_modules/.pnpm/@vitest+mocker@4.1.6_vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2_/node_modules/@vitest/mocker/dist/index.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/dist/chunks/suite.d.udJtyAgw.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/dist/chunks/evaluatedModules.d.BxJ5omdx.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/dist/runners.d.ts","../../../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/utils.d.ts","../../../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/overloads.d.ts","../../../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/branding.d.ts","../../../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/messages.d.ts","../../../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/index.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/dist/index.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/precondition/Pre.d.ts","../../../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/types/generator/RandomGenerator.d.ts","../../../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/types/generator/LinearCongruential.d.ts","../../../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/types/generator/MersenneTwister.d.ts","../../../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/types/generator/XorShift.d.ts","../../../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/types/generator/XoroShiro.d.ts","../../../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/types/distribution/Distribution.d.ts","../../../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/types/distribution/internals/ArrayInt.d.ts","../../../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/types/distribution/UniformArrayIntDistribution.d.ts","../../../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/types/distribution/UniformBigIntDistribution.d.ts","../../../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/types/distribution/UniformIntDistribution.d.ts","../../../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/types/distribution/UnsafeUniformArrayIntDistribution.d.ts","../../../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/types/distribution/UnsafeUniformBigIntDistribution.d.ts","../../../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/types/distribution/UnsafeUniformIntDistribution.d.ts","../../../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/types/pure-rand-default.d.ts","../../../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/types/pure-rand.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/random/generator/Random.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/stream/Stream.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/arbitrary/definition/Value.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/arbitrary/definition/Arbitrary.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/precondition/PreconditionFailure.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/property/IRawProperty.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/_internals/helpers/MaxLengthFromMinLength.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/runner/configuration/RandomType.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/runner/configuration/VerbosityLevel.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/runner/reporter/ExecutionStatus.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/runner/reporter/ExecutionTree.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/runner/reporter/RunDetails.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/runner/configuration/Parameters.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/runner/configuration/GlobalParameters.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/property/AsyncProperty.generic.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/property/AsyncProperty.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/property/Property.generic.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/property/Property.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/runner/Runner.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/runner/Sampler.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/_internals/builders/GeneratorValueBuilder.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/gen.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/_internals/helpers/DepthContext.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/array.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/bigInt.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/bigIntN.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/bigUint.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/bigUintN.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/boolean.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/falsy.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/ascii.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/base64.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/char.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/char16bits.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/fullUnicode.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/hexa.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/unicode.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/constant.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/constantFrom.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/context.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/date.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/clone.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/dictionary.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/emailAddress.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/double.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/float.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/compareBooleanFunc.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/compareFunc.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/func.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/domain.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/integer.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/maxSafeInteger.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/maxSafeNat.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/nat.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/ipV4.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/ipV4Extended.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/ipV6.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/letrec.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/lorem.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/mapToConstant.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/memo.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/mixedCase.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/_shared/StringSharedConstraints.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/string.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/_internals/helpers/QualifiedObjectConstraints.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/object.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/_internals/helpers/JsonConstraintsBuilder.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/json.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/unicodeJson.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/anything.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/unicodeJsonValue.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/jsonValue.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/oneof.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/option.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/record.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/uniqueArray.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/infiniteStream.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/asciiString.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/base64String.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/fullUnicodeString.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/hexaString.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/string16bits.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/stringOf.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/unicodeString.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/subarray.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/shuffledSubarray.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/tuple.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/ulid.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/uuid.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/uuidV.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/webAuthority.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/webFragments.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/webPath.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/webQueryParameters.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/webSegment.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/webUrl.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/model/command/ICommand.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/model/command/AsyncCommand.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/model/command/Command.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/model/commands/CommandsContraints.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/commands.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/_internals/interfaces/Scheduler.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/scheduler.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/model/ModelRunner.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/symbols.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/utils/hash.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/utils/stringify.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/check/runner/utils/RunDetailsFormatter.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/_internals/builders/TypedIntArrayArbitraryBuilder.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/int8Array.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/int16Array.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/int32Array.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/uint8Array.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/uint8ClampedArray.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/uint16Array.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/uint32Array.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/float32Array.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/float64Array.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/sparseArray.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/bigInt64Array.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/bigUint64Array.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/stringMatching.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/noShrink.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/noBias.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/arbitrary/limitShrink.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/fast-check-default.d.ts","../../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/types/fast-check.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/FastCheck.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Arbitrary.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Types.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/HKT.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Equivalence.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Function.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/ChildExecutorDecision.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Hash.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Equal.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/NonEmptyIterable.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Order.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Pipeable.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Predicate.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Unify.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Utils.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Option.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Chunk.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Context.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/HashSet.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/FiberId.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Exit.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Deferred.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Duration.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Clock.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Brand.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/ConfigError.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/HashMap.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/LogLevel.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Redacted.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Secret.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Config.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/ConfigProviderPathPatch.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/ConfigProvider.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Differ.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/List.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/LogSpan.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/ExecutionStrategy.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Scope.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Logger.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/MetricLabel.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Cache.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Request.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/RuntimeFlagsPatch.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/RuntimeFlags.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Console.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Random.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Tracer.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/DefaultServices.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/FiberStatus.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/MutableRef.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/SortedSet.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Supervisor.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Fiber.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Scheduler.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/FiberRef.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Runtime.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/DateTime.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Cron.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Readable.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Ref.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/ScheduleInterval.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/ScheduleIntervals.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/ScheduleDecision.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Schedule.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/ExecutionPlan.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/MutableQueue.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Queue.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Take.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/GroupBy.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/PubSub.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/MergeDecision.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Sink.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/StreamEmit.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/StreamHaltStrategy.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/STM.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/TQueue.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/TPubSub.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Stream.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Layer.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/MergeStrategy.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/SingleProducerAsyncInput.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/UpstreamPullRequest.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/UpstreamPullStrategy.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Channel.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Cause.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/FiberRefsPatch.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/ManagedRuntime.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/MetricBoundaries.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/MetricState.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/MetricKeyType.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/MetricKey.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/MetricPair.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/MetricHook.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/MetricRegistry.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Metric.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/RequestResolver.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/RequestBlock.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Effect.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/FiberRefs.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Inspectable.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Either.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Record.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Array.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Ordering.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/BigDecimal.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/SchemaAST.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/ParseResult.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Pretty.d.ts","../../../../../node_modules/.pnpm/effect@3.20.0/node_modules/effect/dist/dts/Schema.d.ts","../../../debug/dist/types/src/assert.d.ts","../../../debug/dist/types/src/error-handler.d.ts","../../../debug/dist/types/src/error-stream.d.ts","../../../debug/dist/types/src/fail.d.ts","../../../debug/dist/types/src/inspect.d.ts","../../../debug/dist/types/src/log-method.d.ts","../../../debug/dist/types/src/raise.d.ts","../../../debug/dist/types/src/snoop.d.ts","../../../debug/dist/types/src/stack-trace.d.ts","../../../debug/dist/types/src/strings.d.ts","../../../debug/dist/types/src/throw.d.ts","../../../debug/dist/types/src/timeout-warning.d.ts","../../../debug/dist/types/src/todo.d.ts","../../../debug/dist/types/src/devtools-formatter.d.ts","../../../debug/dist/types/src/equality.d.ts","../../../debug/dist/types/src/exposed-modules.d.ts","../../../debug/dist/types/src/inspect-custom.d.ts","../../../debug/dist/types/src/index.d.ts","../../../keys/dist/types/src/object-id.d.ts","../../../keys/dist/types/src/space-id.d.ts","../../../keys/dist/types/src/dxn.d.ts","../../../keys/dist/types/src/identity-did.d.ts","../../../keys/dist/types/src/parse-id.d.ts","../../../keys/dist/types/src/public-key.d.ts","../../../keys/dist/types/src/types.d.ts","../../../keys/dist/types/src/index.d.ts","../../../util/dist/types/src/array-to-hex.d.ts","../../../util/dist/types/src/array.d.ts","../../../util/dist/types/src/assume.d.ts","../../../util/dist/types/src/binder.d.ts","../../../util/dist/types/src/bitfield.d.ts","../../../util/dist/types/src/browser-storage.d.ts","../../../util/dist/types/src/callback-collection.d.ts","../../../util/dist/types/src/callback.d.ts","../../../util/dist/types/src/case.d.ts","../../../util/dist/types/src/chunk-array.d.ts","../../../util/dist/types/src/circular-buffer.d.ts","../../../util/dist/types/src/clear-undefined.d.ts","../../../util/dist/types/src/complex.d.ts","../../../util/dist/types/src/composite-key.d.ts","../../../util/dist/types/src/deep.d.ts","../../../util/dist/types/src/defer-function.d.ts","../../../../../node_modules/.pnpm/@hazae41+symbol-dispose-polyfill@1.1.2/node_modules/@hazae41/symbol-dispose-polyfill/out/mods/symbol-dispose-polyfill/mod.d.ts","../../../../../node_modules/.pnpm/@hazae41+symbol-dispose-polyfill@1.1.2/node_modules/@hazae41/symbol-dispose-polyfill/out/mods/mod.d.ts","../../../../../node_modules/.pnpm/@hazae41+symbol-dispose-polyfill@1.1.2/node_modules/@hazae41/symbol-dispose-polyfill/out/mod.d.ts","../../../util/dist/types/src/defer.d.ts","../../../util/dist/types/src/entry.d.ts","../../../util/dist/types/src/error-format.d.ts","../../../util/dist/types/src/filename.d.ts","../../../util/dist/types/src/for-each-async.d.ts","../../../util/dist/types/src/human-hash.d.ts","../../../util/dist/types/src/id.d.ts","../../../util/dist/types/src/instance-id.d.ts","../../../util/dist/types/src/interval.d.ts","../../../util/dist/types/src/join-tables.d.ts","../../../util/dist/types/src/json.d.ts","../../../util/dist/types/src/map-values.d.ts","../../../util/dist/types/src/map.d.ts","../../../util/dist/types/src/no-infer.d.ts","../../../util/dist/types/src/object.d.ts","../../../util/dist/types/src/order-keys.d.ts","../../../util/dist/types/src/order.d.ts","../../../util/dist/types/src/pick.d.ts","../../../util/dist/types/src/platform.d.ts","../../../util/dist/types/src/position.d.ts","../../../util/dist/types/src/random.d.ts","../../../util/dist/types/src/range.d.ts","../../../util/dist/types/src/reducers.d.ts","../../../util/dist/types/src/remove-undefined-keys.d.ts","../../../util/dist/types/src/retry.d.ts","../../../util/dist/types/src/safe-await.d.ts","../../../util/dist/types/src/safe-instanceof.d.ts","../../../util/dist/types/src/safe-parse.d.ts","../../../util/dist/types/src/safe-stringify.d.ts","../../../util/dist/types/src/sliding-window-summary.d.ts","../../../util/dist/types/src/sort.d.ts","../../../util/dist/types/src/string.d.ts","../../../util/dist/types/src/sum.d.ts","../../../util/dist/types/src/throw-unhandled-error.d.ts","../../../util/dist/types/src/to-fallback.d.ts","../../../util/dist/types/src/tracer.d.ts","../../../util/dist/types/src/tree.d.ts","../../../util/dist/types/src/types.d.ts","../../../util/dist/types/src/uint8array.d.ts","../../../util/dist/types/src/unit.d.ts","../../../util/dist/types/src/url.d.ts","../../../util/dist/types/src/weak.d.ts","../../../util/dist/types/src/index.d.ts","../../src/timeframe.ts","../../src/bench.node.test.ts","../../src/index.ts","../../../log/dist/types/src/meta.d.ts","../../../log/dist/types/src/context.d.ts","../../../log/dist/types/src/config.d.ts","../../../log/dist/types/src/environment.d.ts","../../../log/dist/types/src/jsonl.d.ts","../../../log/dist/types/src/log.d.ts","../../../log/dist/types/src/options.d.ts","../../../log/dist/types/src/processors/browser-processor.d.ts","../../../log/dist/types/src/processors/common.d.ts","../../../log/dist/types/src/processors/console-processor.d.ts","../../../log/dist/types/src/processors/debug-processor.d.ts","../../../log/dist/types/src/processors/file-processor.d.ts","../../../log/dist/types/src/processors/index.d.ts","../../../log/dist/types/src/scope.d.ts","../../../log/dist/types/src/dbg.d.ts","../../../log/dist/types/src/log-buffer.d.ts","../../../log/dist/types/src/experimental/ownership.d.ts","../../../log/dist/types/src/index.d.ts","../../src/timeframe.test.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/compatibility/disposable.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/compatibility/indexable.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/compatibility/iterators.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/compatibility/index.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/globals.typedarray.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/buffer.buffer.d.ts","../../../../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/header.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/readable.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/file.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/fetch.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/formdata.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/connector.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/client.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/errors.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/dispatcher.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/global-dispatcher.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/global-origin.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/pool-stats.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/pool.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/handlers.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/balanced-pool.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/agent.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-interceptor.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-agent.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-client.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-pool.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-errors.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/proxy-agent.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/retry-handler.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/retry-agent.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/api.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/interceptors.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/util.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/cookies.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/patch.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/websocket.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/eventsource.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/filereader.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/content-type.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/cache.d.ts","../../../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/index.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/globals.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/assert.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/assert/strict.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/async_hooks.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/buffer.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/child_process.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/cluster.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/console.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/constants.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/crypto.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/dgram.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/diagnostics_channel.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/dns.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/dns/promises.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/domain.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/dom-events.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/events.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/fs.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/fs/promises.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/http.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/http2.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/https.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/inspector.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/module.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/net.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/os.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/path.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/perf_hooks.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/process.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/punycode.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/querystring.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/readline.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/readline/promises.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/repl.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/sea.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/sqlite.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/stream.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/stream/promises.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/stream/consumers.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/stream/web.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/string_decoder.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/test.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/timers.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/timers/promises.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/tls.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/trace_events.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/tty.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/url.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/util.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/v8.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/vm.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/wasi.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/worker_threads.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/zlib.d.ts","../../../../../node_modules/.pnpm/@types+node@22.10.2/node_modules/@types/node/index.d.ts","../../../../../node_modules/.pnpm/@types+wicg-file-system-access@2020.9.6/node_modules/@types/wicg-file-system-access/index.d.ts"],"fileInfos":[{"version":"a1aa1a5e065d48ef5c7bb99e38412f96","affectsGlobalScope":true,"impliedNodeFormat":1},"d4306fb2e47f74835e8674ffac07d76f","e437c5c1302869326c3bb93da85bbbcf","e4324975a566567b21d350615f1fc6ac","333b1b9a2a9ac3b8497dba5c63b5ba50","6cffacd662b6eb5fa7a36aa2ea366bfa","b4c34f9c23304dbef2d23698637ed638","e5cb86a5fc491796ecd1d2dd348d208f","feb6c6fb19cdb246a5d8acb36a6901c7","9443a7f109277ffaa79d893ed2549995","793cee405385076e27c24f409659dccd","09f69c6610266eaee1ac9e3e30df2c71","62bad718844246b8e17547f37bad6085",{"version":"aae8996e8b5684814785a42cbbefcd79","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"01ac052ec4a79e87229f90466a9645f8","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"edba5df642941aa062a62f6328c6df3d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"6344b55f26a4e81d9608777dbfb877dd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"3c0ed28e53d3695b363e256ec1c023fd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4c2761daba7f17141c25baa0821ac5da","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b87656acabd63e69379ff6ffcfe52fc7","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"597469522da047a5af5222cc6989f405","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"bb3a710cbcda0533bb127712927cbe37","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"55d97a8c6fbf34a30450a7b1e5f7a298","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"0ee05eb59426d33e374226d8dcfa708b","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"e347c14030993906efcfbb88915b6a05","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b0231263857c9b6a03641acdc9280ceb","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"3b15c4a83b598cacb4067676e6f0abed","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b417d97b7934cef63b1889abec0bbfbf","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"09a6cf4032ebba60ce22a501e663f881","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"7a42de379b489e8f7b647455bebfc576","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"e22cc07e3f3cc242ba52fa3f8ea1fc58","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"2c45da767a1bfbb220848df1bc4029e4","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b44c3e0fbaf2130cdcf6ac38b120ffa1","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b612fb5cf8e5d964b92063a75207632a","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"02705151a5e1551b9162a9ed8ab763f7","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"41025e398be9215d32e4337335da8f0b","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"52684c2b1f353a5538e4f275182a54cd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"6dedb6a4f90d1df3a6fbe5693e44886c","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"ca3f36fe3562c07e0f0d71c2bebd3f6d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"409974d6129befbb8226ddd1c6558568","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4d9cfde2a1ae1b4925f1f9bc10848e5d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"7e1daecc66dd564144e3bb1a0266b5fd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a8e1d9bb35fd0637f2f9fd2b2a54f2ec","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4f168501772a6543182765bfd5f2fbfe","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a19c80aad1b2162103496f5ba293a732","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b69afa63cd5d059851c78adb2856ee09","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"ae2fc5d954e9b0f5feee3d481b953c27","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"1cfd3091a071d8b6feec15277643bafe","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"692bcd75364db0f65d428801c7884466","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a0d87491913d843139e0c993650a3235","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4ef72aa378127e7b7abba915b0110b1e","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"3ec74c6a7d4463f0254db3a74cf75646","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"84c2bdfa470d075526cce6322d81b0b6","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"0b3844c2b8c73e4e1ab91431411cad11","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4fc71cf4a15b8d99675a31df77f26e07","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"d1b49564ddaeca3df5b6dbae925d2242","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"6a25be566d60ccfc2d6e8b7bfdeefa83","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"8a20e27646985dfd58c57ca6566553dd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"9969f02ad3cdcbf4f709405cda44167f","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"9c9be4792a7a4f42c15ae7360bf28779","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"8cf777fe00349b71ee9c4b6f3fe7fd19","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"74f96bc192530c9723f572bfff3d3078","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"1df91c56b25955c56387426f378173c5","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"38856f70edcd2115c355d96ec77cc09e","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"de8700156c1275465bcd473c28b359aa","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"d47cfdb6ede40518357bb5a4cd7cd9fb","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"6e5773860cd9e5b15e683113f642ab47","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"30ff5fe1682f7fcd629880476ca3c2e0","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"bf23d7d1b40b9015b694ddc2f011752f","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"2cc585d42e2c548f9f24a30a1989fd33","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"713906ce9d332d2242b7f05ed9304be3","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"0219894bfe5042c7e1aa2d22e4a91ed0","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"6009ffff7e43c93318804d2d28e37fe3","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"03be89b227587594fbb50509fc1c2e45","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b30df52dc24740c0bad7c55c3511df7d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"ab8d3c9b5ed5c2ab8f383607eef439f0","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"d950ec671d0a8e07f3c1a31e94abed86","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"1abef2ace5eccb02d60dd73cd5a5ee4c","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"f5f0a3044029d1cc081b5887eb4deb07","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"d57c697f1446940ec4bfe669c962e2c4","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"be41035d7b941482a1e1ae6a5c5dcca5","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"10f7d9da7564f27f8ddf4a162b6da6d3","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"1d0520af549e0c3581f15173cc713ca1","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"d65083f97fd741cff028472563eddb79","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"da7f24f00653ebac660ac1c0821ed33d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"7cb5ae9e65516ea2235f0721f6aac43c","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"f64453cbf9671f28158677fa5c43967a","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"33f317af5428801f944a478d2c1e38e5","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"ed63d99e1e5c371dc120bef1b84057fc","impliedNodeFormat":99},{"version":"4d3fb552bfc7fb53c9195b2fafb512c0","impliedNodeFormat":99},{"version":"fbf7ba69043f86dc506ba28263e2e783","impliedNodeFormat":99},{"version":"a611eb6935df7737a77b34b01c631a4a","impliedNodeFormat":99},{"version":"6d08f6f1d0ee294c119d0e66f826331a","impliedNodeFormat":99},{"version":"d0abb8fa314728650d85450ff59db909","impliedNodeFormat":99},{"version":"abe007be89c2ad52c4d67fc2b0f6da6b","impliedNodeFormat":99},{"version":"ae1fe3925f3a2c8dfbb269ac2a50f5a6","impliedNodeFormat":99},{"version":"ee8ce731ff781ae7011350481a1af176","impliedNodeFormat":99},{"version":"08dcd98985ae16732a9be03d2b56aea6","impliedNodeFormat":99},{"version":"47f7401876f3c0a5b80bd01fbdfaed2b","impliedNodeFormat":99},{"version":"c5156ca866ebe97e9684210705e65b18","impliedNodeFormat":99},{"version":"cf03c427cb6cbebe8bd7cbad8932b8e3","impliedNodeFormat":99},{"version":"421606974dd976bfc5ae48946dc1afac","impliedNodeFormat":99},{"version":"4aeb817c2b1122f77bdaeb4e884e9479","impliedNodeFormat":99},{"version":"c52142a849d48e8e4286c2eec06173ff","impliedNodeFormat":99},{"version":"0221e2868d1f0d6df8321d945764aadb","impliedNodeFormat":99},{"version":"d2f6ad6f161f0a522886f64842c96a0e","impliedNodeFormat":99},{"version":"618ace1500cc84e42bc2e47c64f8c407","impliedNodeFormat":99},{"version":"9dd3c481cc870c4bf19e59d34f030a27","impliedNodeFormat":99},{"version":"b5c81396e966d59acab5a45f66b70866","impliedNodeFormat":99},{"version":"f94aa434ddb9e71f6e80395de85f6850","impliedNodeFormat":99},{"version":"3486e8f7f01b9874a793ddd451eb62a5","impliedNodeFormat":99},{"version":"cb0e7222aae349c2fb4f89b26efa81bd","impliedNodeFormat":99},{"version":"b9129d694ae6cf810850117dda49d045","impliedNodeFormat":99},{"version":"0d7bbad7f82c886c5f36730065aec119","impliedNodeFormat":99},{"version":"369460c2755240ac2d3d006f09adb5ca","impliedNodeFormat":99},{"version":"4509fca76e721cdf9edb2d028395a117","impliedNodeFormat":99},"548472bfd4ebe2f1c8f494b960a27836",{"version":"31d11e53cef40d113a56c173ad0ac9f4","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"2c51637edf65b89d39356deff680ed36","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"0bf0efdacfd4bfadb631a4376097e382","impliedNodeFormat":99},{"version":"bd01f3bcdc72c9256e5cd5093d132df3","impliedNodeFormat":99},{"version":"b01bdc9acbaf3eb24eef464959e8e627","impliedNodeFormat":99},{"version":"2a75a1a065e5d0439fa1514d9c89b0eb","impliedNodeFormat":99},{"version":"b9129d694ae6cf810850117dda49d045","impliedNodeFormat":99},{"version":"c01d22bc96b89eedc0ed1f11d8c270ab","impliedNodeFormat":99},{"version":"c15bc5b81c64386efb6f85fb596c4349","impliedNodeFormat":99},{"version":"5794a694c1f75a9cc38cb5e9c757224e","impliedNodeFormat":99},{"version":"4040d5640775a803b2ca1aa914f7a1d4","impliedNodeFormat":99},{"version":"5ed96746ee2e7eb084ad54f0e0e518bc","impliedNodeFormat":99},{"version":"eba7786b00a4e551c36bafa71bfb1876","impliedNodeFormat":99},"8d8a98bf45979ce5401d9ca4027940cd","7d98e95d38525423bbe0f05e0a508a41","96920299d013de56061cbc74a1d658b2","439adabdf29be1212ec7acc292679f21","3eb46d20ed056dcbfa5e75bad9014661",{"version":"b46aa1886055db890de9be52a97b301e","impliedNodeFormat":99},{"version":"9f0080ad39cedd2ecd75a4268ac8ce8e","impliedNodeFormat":99},{"version":"6ae59b3e77f7c817c4197b28114fadf5","impliedNodeFormat":99},{"version":"483b3289aa2672f1af2545835793ba54","impliedNodeFormat":99},{"version":"54db61b0af85ef95abe7572923370c99","impliedNodeFormat":99},{"version":"34a56cc36c2ac54b88ad21178bd5fe2d","impliedNodeFormat":99},{"version":"92bfd79bc26f98402cdd0edc4c508025","impliedNodeFormat":99},{"version":"1516265b522baa1c0c9e8b330495b855","impliedNodeFormat":99},{"version":"9a6efec079f32ed80d4514661a35f45e","impliedNodeFormat":99},{"version":"b21621da5001fa89f269345e0df6fb9f","impliedNodeFormat":99},{"version":"162888c4d904000ee0591dd4da857d95","impliedNodeFormat":99},{"version":"d3eccaff3308b3b31e5af168693f9253","impliedNodeFormat":99},{"version":"2a7d74d37c235ffd3e3de95ed9e82f34","impliedNodeFormat":99},{"version":"74a22492ffe06e4fef75d045a4f7308f","impliedNodeFormat":99},{"version":"6585f4dfb699c6e83931a8184df74033","impliedNodeFormat":99},{"version":"7d197e24d1128234932ed98b78e0b297","impliedNodeFormat":99},{"version":"2239d7d16dacc0f259d7dc15d48f1b9c","impliedNodeFormat":99},{"version":"c4f30b07c351b9b62a85a9c67a743771","impliedNodeFormat":99},{"version":"67176bfc386ff0afed5eae525113f104","impliedNodeFormat":99},{"version":"223ae22beef7e7bad4e0fed5f2d48126","impliedNodeFormat":99},{"version":"01632168ea6658852b57a8ec8b012e9a","impliedNodeFormat":99},{"version":"0c62c47a619a136d2cf7bc666be848dd","impliedNodeFormat":99},{"version":"d3e9c3a0caeacde023a2b58808d2b4e4","impliedNodeFormat":99},{"version":"7d47939c0202dc6ebcf76c0acdfd1763","impliedNodeFormat":99},{"version":"85077c3743b271c1fca84d298d823f3b","impliedNodeFormat":99},{"version":"b62560f073e19fc444940b03e67efb53","impliedNodeFormat":99},{"version":"681e96e0cd9bfb39b7b736f19730461a","impliedNodeFormat":99},{"version":"5b2765f39ca665288538391194e51c83","impliedNodeFormat":99},{"version":"a2fb969da3f85d908d2f9ae644d8c048","impliedNodeFormat":99},{"version":"2cc8aebf80ceb8b083b63dc883d1b0fc","impliedNodeFormat":99},{"version":"9d0da3fd3af1296a7ac02dd465b65c67","impliedNodeFormat":99},{"version":"1fb18d6fc7d3df8ee2313a37106bf024","impliedNodeFormat":99},{"version":"4cd1b9b2509fcb88064114f2eec08239","impliedNodeFormat":99},{"version":"4078b5782648e3a0faed0f9499c7ad1e","impliedNodeFormat":99},{"version":"e14349ab452d5cd6591884570f114881","impliedNodeFormat":99},{"version":"06abbf1722a40794fa39c15021753c71","impliedNodeFormat":99},{"version":"f8c80a791228542013e8ad6cf9364913","impliedNodeFormat":99},{"version":"1360ad8f27aab9fdd51aa8872c01688a","impliedNodeFormat":99},{"version":"a0d50064561a0776e071fe8a52691ba4","impliedNodeFormat":99},{"version":"1d9b47c4bd7ea198333120be3ff86b0d","impliedNodeFormat":99},{"version":"7d53434ff5c74d4e4df4aba5ad0bd1d5","impliedNodeFormat":99},{"version":"e7ebdba48459085cbe0ed92ac93d95d0","impliedNodeFormat":99},{"version":"d764a3e619ef4a1d94c37c08f1817e9d","impliedNodeFormat":99},{"version":"2ba21a24c23c46fe0e01d6d9f8f8f7fd","impliedNodeFormat":99},{"version":"dacdad893f4cfade41127a7d50f5bae0","impliedNodeFormat":99},{"version":"7b6d89ff1ed2a852ac374728fb6f1b5d","impliedNodeFormat":99},{"version":"5718886c5969d243429906265cc9bf95","impliedNodeFormat":99},{"version":"1c780d369fb59076ff6a2822e71a9b3b","impliedNodeFormat":99},{"version":"afa185604588618320ff02fc2130923b","impliedNodeFormat":99},{"version":"fc8a32abf62766000008e13fe711c991","impliedNodeFormat":99},{"version":"afbb039d465c55deda6660c8df17a70c","impliedNodeFormat":99},{"version":"085547b3b7015ea764fa8322cfd7c2c7","impliedNodeFormat":99},{"version":"065226b5a1dd6fcf4d9f22f4245dc1f3","impliedNodeFormat":99},{"version":"114b190390b7ac0c8915cf12e47a0b3c","impliedNodeFormat":99},{"version":"ce181d69ba7e3f5a5cd044710069d04f","impliedNodeFormat":99},{"version":"33b4b829310ab72df82f0bbe89179163","impliedNodeFormat":99},{"version":"bf6ba15dc1e129e0711b67de2db73e1b","impliedNodeFormat":99},{"version":"446bbc42b8ecd270373a2393793233bd","impliedNodeFormat":99},{"version":"2f2df861dcab99f53a8ae3a73e92a186","impliedNodeFormat":99},{"version":"1e468a68fe576ade63a445d395dbf920","impliedNodeFormat":99},{"version":"4044769366e7cb2e407d48b8f40a3dc0","impliedNodeFormat":99},{"version":"b74f4ed2ceedafa8a26365b569600212","impliedNodeFormat":99},{"version":"4826f5014a481083089dbfcba81d43e5","impliedNodeFormat":99},{"version":"029881628bfca1bfcc266afbb88bb57c","impliedNodeFormat":99},{"version":"5b97af6af5967f922256193849ac5b9b","impliedNodeFormat":99},{"version":"d7785c95ac0d5de1aea4024dfaabdda5","impliedNodeFormat":99},{"version":"460d3df6a918b6ad44cfffca194038ee","impliedNodeFormat":99},{"version":"26f09d97aa7b9edf98a03bbf762796a0","impliedNodeFormat":99},{"version":"0f70b2d6e5d9f54711d3f1e59eb666e0","impliedNodeFormat":99},{"version":"a6b4f2c629f5177301c62cba96fdc0de","impliedNodeFormat":99},{"version":"452d8e81e38ed5a82ebf5722afcb58a9","impliedNodeFormat":99},{"version":"29b480cddf115fb1076d7b45cf95f2cb","impliedNodeFormat":99},{"version":"c73b9bffbd8504d81d7fce882ff7ba8d","impliedNodeFormat":99},{"version":"164492612b35e39ae8070d6a91369d95","impliedNodeFormat":99},{"version":"e5d32471d1df6c7fc65860fc20a2cab9","impliedNodeFormat":99},{"version":"d128bf8cd15a50c1416ca242f013a331","impliedNodeFormat":99},{"version":"e0b0af2bf8b9fc0d9969367ac7e227f7","impliedNodeFormat":99},{"version":"06ecf3e28b6871bf1070dd53204381c5","impliedNodeFormat":99},{"version":"fb918ba579fdfa0f9353d1f05ff5e738","impliedNodeFormat":99},{"version":"058227b3648cea3ad67ba42e5008f824","impliedNodeFormat":99},{"version":"07b22982b8d81389c95aa081d94501e6","impliedNodeFormat":99},{"version":"9680a4de25e7b4b6eb301c2ca35779c6","impliedNodeFormat":99},{"version":"61a16a59adc2f47b0b7eba6806258cff","impliedNodeFormat":99},{"version":"a1fbdc3e06601b71e011a60ce3b935e8","impliedNodeFormat":99},{"version":"4c9fd9d3de6e7787e715d1c963bdc220","impliedNodeFormat":99},{"version":"7e8048b3d9596459de8368e31831ba8e","impliedNodeFormat":99},{"version":"35c9f36a1ba9dac2ef74bd8098853392","impliedNodeFormat":99},{"version":"6069b68e170139c3cb1e2ab14f261ce7","impliedNodeFormat":99},{"version":"20bb80b9b321fb31b0027f75bf79dc9f","impliedNodeFormat":99},{"version":"c40336e90cbafdd33b1fdd14e72e2a22","impliedNodeFormat":99},{"version":"f3bdccaa6774b3675969eccd34f4e1b9","impliedNodeFormat":99},{"version":"58f0e829970787cbd30097e68dffc145","impliedNodeFormat":99},{"version":"61a332df55be2b22b7a3a35cf7861637","impliedNodeFormat":99},{"version":"454944a3002b59d257b7482125d9e3a3","impliedNodeFormat":99},{"version":"fdbe061d9e32a1f136d50c62216becec","impliedNodeFormat":99},{"version":"c5ca204cb91536e95a9efd31dd77f2c5","impliedNodeFormat":99},{"version":"c811da1ec5ae6d5579e6bf6ed2fbb71b","impliedNodeFormat":99},{"version":"7b44c8905b2a3990f319d89af1480945","impliedNodeFormat":99},{"version":"f8b954343deed8e9c8b725b6ed02cbc6","impliedNodeFormat":99},{"version":"ee559992eca1c3cf4e47c0ec20259ca4","impliedNodeFormat":99},{"version":"f1dedb1cd0a42a0194422312b8cbcaa5","impliedNodeFormat":99},{"version":"eda36246e7fc6a64529b3d339bef8e5f","impliedNodeFormat":99},{"version":"80b3d623242d3718bd17c7a0169fab15","impliedNodeFormat":99},{"version":"49535c05016d5c5f5077274965e12440","impliedNodeFormat":99},{"version":"ba044b545efee1aecd551a32c911fda4","impliedNodeFormat":99},{"version":"6304e15fb62ce94a6b6bd9ee4773b458","impliedNodeFormat":99},{"version":"fb32f9821572cd19d77bea9dcf769c8f","impliedNodeFormat":99},{"version":"375803fcc0e6f1d6c284490ddfa59953","impliedNodeFormat":99},{"version":"b93694c33284e7ace14e2006c4901a2f","impliedNodeFormat":99},{"version":"0a37fb72bc59cbef7aeac7de45d41e53","impliedNodeFormat":99},{"version":"dd6b363f4e2e8ac67287f4d78d5f9233","impliedNodeFormat":99},{"version":"75c2de443dac6aae4ceccb0c43c7b6a1","impliedNodeFormat":99},{"version":"d4fb0e90d3327883a1ef20b0ff72efac","impliedNodeFormat":99},{"version":"1d3dd788791b914288bcd4b397764c57","impliedNodeFormat":99},{"version":"0858866d941a8dd7002c24fead07c431","impliedNodeFormat":99},{"version":"6ff9d31dc97cdfd42d3cac693d287516","impliedNodeFormat":99},{"version":"71afc7d4d3cc3c63fd09559722714d94","impliedNodeFormat":99},{"version":"182ade622a58a6ea52cf70461244e064","impliedNodeFormat":99},{"version":"5d13c9b61619c4f5fad2af4f515a224f","impliedNodeFormat":99},{"version":"aa6902e6a2a3194c7a3c706d44f5d114","impliedNodeFormat":99},{"version":"864c2204d8fb42eeff57c3a8c4167bf2","impliedNodeFormat":99},{"version":"7d67e20984c0c06c082d3c089d3521da","impliedNodeFormat":99},{"version":"911e192fe524fbe5c16817c8a2c13418","impliedNodeFormat":99},{"version":"bc874019e597aad19ec5bb3c39b9a41a","impliedNodeFormat":99},{"version":"38949565cd04ddf2315535e3db6cef00","impliedNodeFormat":99},{"version":"7e55214f4bf7787b18c5f457d78fa7e3","impliedNodeFormat":99},{"version":"15ede5f7b3339b35780e298587129002","impliedNodeFormat":99},{"version":"28045345ec4c2b1a51138227d8e05cc5","impliedNodeFormat":99},{"version":"c714ea19fc1ccc8a7a7d44f27c1c7268","impliedNodeFormat":99},{"version":"5e9d9dea6aab22a23bc238db699b836f","impliedNodeFormat":99},{"version":"20d87b2d6eeb531f6a414d0d9dc1272e","impliedNodeFormat":99},{"version":"27336f70942b4e4d5ec542bafd9f29df","impliedNodeFormat":99},{"version":"ce28b19f16bb85cbe642750e7ef52a37","impliedNodeFormat":99},{"version":"1654c35edbedee314084617c986cf1d7","impliedNodeFormat":99},{"version":"0b690f8939229d076ebdb7b23ca0baa1","impliedNodeFormat":99},{"version":"7143cbfb46f963af90facc3b507f63db","impliedNodeFormat":99},{"version":"03076554c8801a10c0e611c2500e3938","impliedNodeFormat":99},{"version":"640d65f95521fcc5a09e3acb39805461","impliedNodeFormat":99},{"version":"18e44e12be6edd90e735f2acca80b30f","impliedNodeFormat":99},{"version":"22e1e835b148b1c69c926a372bf10ffd","impliedNodeFormat":99},{"version":"430128e2ccf68bdc04af4e23608e0b76","impliedNodeFormat":99},{"version":"ff64809513202566f109228d9c334a60","impliedNodeFormat":99},{"version":"7c882bd8c985df1701f4beddd3e95ef0","impliedNodeFormat":99},{"version":"ceb0225e3d7409d3d378ee095086eb49","impliedNodeFormat":99},"03bcda77a704203f0c95055cdca7caf8","67ac54812838cab82ff1e233b76474c3","ee97c3793310c76a9d5dcee031a44955","dd894bf96a1b62e42c8284d2441ca736","2e80820b3a2e6ebba3a25c128d7e68f4","cd3ad394a6dc29ad1419d73f3bd992a3","816ea1403b94873f4875848a1b03181b","9e5c66c7970235d6a36012f5c761ee58","6d1c2eb9d1cde1406fe7e8aa4353fe1c","a9b923360571b9e0657de80cdfaf073e","1d9812bfcf2b3985aaada86bb9f6ca8d","50f1299d7750a1b598a2a317b391ddeb","98e7a7d5fd7e90117ac9e2048ebc0aee","b3b78e4c99e682168e66e3269ea8baa3","4d12994b2173bed65c472fa9d4673751","b69de7ce1fa254b401da1a084bb1278a","1207d4a22129394545c83a913e0e213a","d1249257a5655d1f5faa97f94e4d3dbb","498ab42cbe9eff54f5a2edc605dbb9e3","f79b112a17eed270aa9cae842f4efa43","e87b181f7c1cedc2c95702a545c5a1e5","58c47c618f65a446906c333b990c4c17","c099d7a81bb87e7a142f946a9c9682d9","07dfdb6b9484a8640f9291dd7ce7627e","d5e08a6a7d7c67295dd11a0ec43bbdaa","f1ac3c87a7610ff869c901545995ee30","78a79500dc3048009cec7ff861b0d55d","d8a1c4e0006604afa567cfb5eeab05ac","15ffb9b9df97713d1aedb3975fcc4b7f","318ddaaf85902feb0f395184d3a173bf","32bcaa58e895d2036dbedf7160b59ea5","414970e5f79e8736db8a3f9281050245","cc823d7068b4dad14a093845c14da225","8ceb71cc0994c6ec9393ec07150960e0","6ef4edb5ec0e9f6d29a8e0ceca55aaed","b748cd32633a728dcc2e51ef6fd38fe3","4f107e1d2b86ee3c98bfb80ade0e6aaa","5881f438b6aeab4abfb5e56143ca2ea2","4bfd7578b4f0e117273e42adc7b7275c","1ef891a481f34fad847d894dee553558","cb58f58e18902d1697441fdfd543ddf5","39b36d189e6cc2caa74781f5e9cf9943","0426eaa9701eceda3955b582318166ac","ed6095704712ef7c0ff78315f596c061","ed473b54ca217d550dbe3ff71d509b2d","e8015e8e420e1e04e9b79e04b42d5241","300cdbf49adea72bef6de7df2917e759","52e38f44ad2cfbf9dd2ae956abec99b3","b07224950bb667cdf9ac64a1e86c26cb","9ef71469717402cccd39e1e4893cc63c","eb0be4be9e5a6080af0ee89d19d620fd","d8e103b7ceb115805260285045ced7dc","365b0565513f750be412a1a579a71d33","0b53e609e06987fc67e5c6865110c12d","ed134fe04dba1d30eacdab126ed04971","2879ffbf49a294f1a66efad665dfeddd","73c6eef64042b352c108c72befbad16c","1430f84214659f9dbf5eceaee82d350d","1a88822b5a54559f585e01cd9e74e46c","8c4c1270663129d99445d5665ad4273c","b6fca257717f12d81189e747eef5d9c1","be9d229bbb48da79b0e64e609ca51ba3","c25cb8b1e960381f2b505630b6815abd","3afa88c4548cd40c101d46f74f4bb3ed","66293834534786a5f13a39852555b4ea","fac1638fff79fa025b72c47d4f18e0b9","4ab373d00b723038004313cb2f80ec31","65c24fdc4f0add0bafbbe2ff6aab84c1","ab989440c07585baee064b038c14726f","d68341a89ff7c5e60f8bba96e19b0aa2","d7cacb59eb41fc7b7eaa5d8d39e11234","73b8ea530e80ba4692f3a4add261b034","921db6b1fd79700db01f7bb0a6c3adfe","515d1f1396901a789eb96fc7a9671da1","2a7ade7b93595a36ab11af6d02f639d3","44b1adcea9673325c8d7807cdc56843b","afbd2f1fc02be22b22eb913d55ab1455","94cc0aae367de82868cef25f61f2b170","fca2023def9bb181b247940a8ce6802e","49b156d6e6cfae72c6825ce03261b4e0","1497c85f70bfd8f88ffcd3cc5daf7d6b","e7772588d3525b0e6749c3453002ecc5","f2c898bc0d89a8d72ef354f0e4101a73","27cd8e28f2106f8be86be7ef38f209ac","ccab10e4601685406ff77b5e417c6541","da6b8975b433c76b0f4f667f6da87c8a","9300dd7e9c5ae31881764868fee38e30","51dbc91c5f74fcb97d963aeb91aa3cb8","8ac7c392f230f54a9928f03fd03c52c3","03c72d4c94d56e6e728d6333eeef32c6","e57a5f4b3c65b0c79ccb7a6ce9354dcc","50d7819ab67f9a1bc95b930023d9191c","488c705bd10c4498dad74d6543cbb473","4ad7f107880e0c150983f68ffb1df6b9","622a1e582eff5aed92e3b9c7399f71d8","4901aa3ffed288be9b8913e16656cc92","2a427b1c62347cb6ba8c72a7964a95c4","d9d6dc5c2691c3024a0fc46d2af64add","aabe1cb72b590c94480ba36bda0ba956","72456724e0b27d8d4085d6a4b9f057d0","6ea2782ff615a5670dc62f744c326aef","2c7551d9a98b0b650983af42ea1294fa","af02eb985aeb162f69212d4435ef8adb","20035c38431f53a768d20352783a3685","0fd89a7feec7f954f9baceee35f2a5a2","e98e7fbe9b4de6446ca162e096fef1c5","06601b4db9c12c5a330259ff29abe71d","9fef7e4e71e47eeb21e3274f97c4939f","d9a5bb9d1be71bff370beae7cc823ef1","a884895b2a26b078e686c8e8a421af3e","a2bacc4496ed5f9b1755febf8647c000","d985bd1ab7a055f3b77a362b298324fb","3ff1f1afc6b408ef3cb4e2d232045723","a4e0b7b7dcc6d75b9e25104497b6fd09","9efcf3731fb6782ba579564b357a3d18","f70c783ce20265ea4158276e39b0cc4f","30906b4d1b110b5ec4edaaed121f0b77","319483327ed4ab0295e96ae66aaa4bb1","cc17ef4c4e92faaae35d7e48e9585a83","b8ed41dc8c504a154ebaeab3844095d2","85ffa61ef16ab204d1951255512b6e19","3e5e125f9a7eaeedc7dcc3569cb36770","067bf7685e2cd9f9e91789db4c36a106","e4e512c1fa94fbc07f02a62ac30701eb","98f153f27f56ef8760eb1f6f18c70744","232493fc54b41d22686a702dab322556","e72fa422a73a03ebec435cba0207b512","94c2e15d07fdf7a49c3d9ae2c60c84af","e4eacf660098eb1cb7791e19d90b9189","e7dd9f4c3a9b0bec26f96f6f304b09bf","3a43390ce2b70a74a5e3e39962ee5ee6","8e577b82a22cfbef02892e71f803b4a1","522c3199dffbab1bc782bff87bef3054","9672267ffc7287a92d1d22bcc4b04dd9","a4281ceca9ad8c6a6262e47c2c833609","3aa244dfdc308fc7793572cc45a2f380","fd051c24edc463cfbbf922ae80f3c3d7","8d96b1b32d6615aea1e83ec77cc65158","87e2f29078050e5c79656d07d6782d94","9e8466f8835b3cda9e9a11425f295e51","c920fde9902b165a97bb267eb98c5e1a","1d515cbba8e214f73b2610ed31cd495b","65b0da58eb6cbf7d73ef9dc89c99bf73","e18575bd470fe15a4d44ce3fd0d9c194","36567afb7d6468026a915d9229a6cbae","e17c86484ba0cdc8dad58540fa108b57","aed5dbef5f1b65f12de4abb495c00616","65b573941e42a01da127f58dc9dcd369","bc356db5cf015d10b673a1afdb30d1bf","6ad876633bed4baa26121d85a2e65289","64109bed9fcb12b5acb80a4733f7afd9",{"version":"abe7d9981d6018efb6b2b794f40a1607","impliedNodeFormat":99},{"version":"e8675c30ce4e012f6857bdc5185f560b","impliedNodeFormat":99},{"version":"d180f90678948ba2a0eb1946c5e39605","impliedNodeFormat":99},"701a2e6b17ac45dc5a9783c759779413","d06a1e90953eb597b25112c2f4bd2b01","79701e6f9a3f2e5b3a3af9c24a4afa31","03b97a47f19271db907bb183dae9fd6d","b98964086871a6225f8eb209794852ed","48ac0ee61acfbbc0b27acbba9d61e915","9e58376fc297d924ee71b9c6731db26b","55d7be629d37a901233f36dd59359898","150c5034e8fd82d7c8ac57e368690f4e","d921840e9e20091db2b82c9a04c1b4a0","9acedbcb812c15a3d492394584e70202","f99e6e1379062e1d9249eff773347095","763fd91fc7cd79da595869b6786ea012","dfea75463c1551a73b04eb4626d120ce","961499582c55f6ab13bc64e06e8d4496","e41bb506e8f293cb648d0b7374b640dd","a3e18a525a8b304358f3313678dd28f3","76169cb7c0b53ead21297c6810c6c043","69e6c1a34622ec03ef971253129e3e18","d7449d93e253750eca3c9aef9f078704","7018fa356cdcd90c20d37d3a15922229","e21ee477607db5ab73f4330acacaf985","8dda25723c5af418203bf001ef686c73","53856537c9a57720542d7d520a86276b","92fcecab359aa4bc438fbac2a4793e30","7f4f5e57220e08f64fcd245a55897c70","691b40d31d509b0ced5090e6aa2a80db","d06d369d074ed42529baaa1263e18dec","e6093f176e2ab12f1374e5bc011d148d","f024519601069429c5c11a0ec0a168ce","3ee66384c8240dac3b76ab6d544648d7","4c1992215695b43c8edbdd75a56c3978","f578e9a68be86fa512b67fa90da7b620","4bb581bbac526a482c0b6dd7f4dbaa6e","1107d22244f595322da16154bae0100f","ee63e758e739dfa9a521a8f3c53bd00b","5ee5a5b6843f7073ad8e3d75ecff8b68","612f088427d4518b6611bbe837f745f2","1e1d994f8a2bd8e5825c9aa2a47a7ca0","f3c3f3dd4d31b9fb890d82a90e897dd3","754cc8fda62b173b5164592808111596","d5957dd58522c4c0c32c49919e922f0e","5f19c147b3a47983fb5ba6d0d357158a",{"version":"ab79117cd90d54b0ce38b9eb4065d67a","signature":"7dc401968eb70b6dd6bde529bf5c4c25","impliedNodeFormat":1},{"version":"5569c3b7c4845059808095a8bc9f8fb6","signature":"abe7d9981d6018efb6b2b794f40a1607","impliedNodeFormat":1},{"version":"4a77a3bb11b59d89a7f82514d4b25936","signature":"3c0ef764032fe443e0dbd32044037425","impliedNodeFormat":1},"43993a7a6c6613ec8afae0180687818a","d7f01d40d685037e06ba6075e6a0ad5e","af2e76846a97d04a3dfa74578cef182d","a4b5487ce5d6962651d8709f08fc3019","15155d16831d0fb300150ef520273467",{"version":"2ea25d8d178d6529454b86f379a0e258","affectsGlobalScope":true,"impliedNodeFormat":1},"1aa1ab7f4d5898f9b904605d96f52643","2e49f77c5a8afcfc3e2cae0d95fe770d","ca5d343142a35aa4676e045f6d69e4ec","aec896e2437e9bc243752a96c750ed9d","2770fd0bb0c338d6ea3fc357d526ca33","8d7a506577b259c053fc871a98cc9b39","a7107cc2e6809019f16c38bdba98ec47","b9f4bcddde9a90e40ab8e988594e5719","835dee12bf73ef57f78c2970f67754d1","cd751cfd470ccefeb5c39ec846e1479e","3ce7ff8c8e41d063dc470f1411c7e46f","5e19c8ff25ce9b5c7e7476629869a5a7",{"version":"71ff5cfebb636173cc27c1717edfb6a4","signature":"abe7d9981d6018efb6b2b794f40a1607","impliedNodeFormat":1},{"version":"90630acdc4134173bcf216f187bd3010","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"f5a82824905a90c7452696b157ccbf8e","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"2514e9a2749c0fc18d2f478e9e1e641e","affectsGlobalScope":true,"impliedNodeFormat":1},"fe51d7a9bcdbcce1e65bbcf39b212298",{"version":"60edda1b5f28f8e7d7a6fae700faef3c","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"d81e6947fba1bc10b8eec34069255664","affectsGlobalScope":true,"impliedNodeFormat":1},"8e91e7228778516936913f666d057c19","628b774b54637325e286752c79c12432","597e516ba8427cccc7f3fe944da2f942","514fd35e5eb35bb2e5cbb908af0a0aa2","ed57ae88565308729f2327f26d684976","dcd932d6b0038f2e250e30dc10125b22","9508c917bd7e458745e222a82dd24ef0","fabf86f455f96b90538cc26320ab2765","14550b4cd9f433e0addd8b6d67614d23","3658d7d7a61e0ebff921a3292f22e90b","35fef7bac8048f583e4ce6eaa0c2a4c0","6752dc653fc7a333027249fd851fdb62","b9ad7e689b46dfba362c1bf174e69018","8b0a2930dfabdf27c69c6bb1eeabcdc8","4513b1ed15523d247040689f37fa9db2","5c0c499eed773a750903d9497beafacd","2377da227d1bac82ff7b3f2081ddf8d3","beef985b474fefeb80d27fb2c8778371","c79fc9d9f09ae598a374ae7c0b5284a4","f2caa3cebb1e6be855519004830a6be0","8ebc9f2a77c900e710801214c5cb994c","ec617a0e0577dd6a3210c3b067ecb325","1db5d06e485bd82d6d5f6e36925a8714","24b864518967840216c779b5e5f00975","8719cd8047700bfb6046798390053823","f2840afb502c94db92dab0fb8d27812f","a7e7d08b372210c203745d3eac61a411","531183cc80535e0e94226d720e5eb038","f627eb958ca52c85e42f04dce4661f86","9a43fc665bce9012a3d5fe1b574ff4dc","13f4b4da6546a34719fd6bde15fb63dd","a589216508844bfc00e62fc2d97fda45","865aea1c3209e31b076cb6fe780e769e","12e64aaf26af0f5c8f1b263dd66e3feb","928971ebbcdf5b093ef37669b33bddf6","b744265d8ad12b7d4d5c5dc35d18d44e","eff32168b8348b822afeed9cbf61afa7","9aafd1f29b4d8861c1c6c34bf83c0721",{"version":"00164cbcc1c01daff01c48524e115ebe","affectsGlobalScope":true,"impliedNodeFormat":1},"75c35382241d634380073a71ae31bc9a","7deced3ef46e082f97d49bb71622526a","71574c6791f69b167ce1ab489b2b61b2",{"version":"6df4dcd8b41052cc26a6af73c6937f86","affectsGlobalScope":true,"impliedNodeFormat":1},"cbae34574fe31d4a5ef3adee146fb6f5","4a7b1858837296766fd68ce1378e74eb",{"version":"9fc8636e70e507ea8d98a7aabd265ee5","affectsGlobalScope":true,"impliedNodeFormat":1},"c57682233d627206c477b36c1c175b7c",{"version":"5cecadfdb3e00997c9616c1d5ce6b8f4","affectsGlobalScope":true,"impliedNodeFormat":1},"c328f7ad3324dad3b014a361b567a205","12c7178deaecc79c215849791e088b34","fb3449da0f8a0403fcb36d2470b68886","57c04b416fb330a87d0a4705e6e37c2f","958d9865bfe33c94973e3d58ac66b1d0",{"version":"7ed47a7721271e796e9756b45734feaf","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"8bc6a5a95cd2df9f0392da0fa4cb03e3","affectsGlobalScope":true,"impliedNodeFormat":1},"775e118d246ffda9283d94772389bc3c","523e9bbd311f55326ac83a7c40fc29bd","fdd14f5f74212b0d9bd023f9f4f61e62","21baad704fab1c96b85de59aa92438b0","4a0ef467ec8fa0206d0e58fed7c6955d","41a388d3894be87ff371e130db43c3e4",{"version":"3f609011f15f3445c65cc543549895cc","affectsGlobalScope":true,"impliedNodeFormat":1},"dceaed506efef02de8922a129914605d","2500b39777a662899066e61fcf737a52","bdbbfddd2833453519a4c6864652469e",{"version":"311fbe00bc63e7cf2dab9d48d54d5e1e","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"e6616c1a81dff896f04c18da7cf5e8a0","affectsGlobalScope":true,"impliedNodeFormat":1},"d1dfd59bf8b7e71f40ee1d3a2f1b5fcf","53c41ffbbc4356e365d72a537ffb9289","e15247d10b79191ac297212d1183ed03","dd0c03e63afe38f86d61b2d54a9ad760","20049c404ad43da435aac0c69c179cc4","9c44db35c5ff2a61538ae34208bbe504","2c7e200709d82fec821e0154eb745d9e","c626f8a955ddf43bfe6785adb1c3ca4d","c8206d568b54e5ea06131963eecd576a","cf3b2ff720e926f366519cc83c99018a",{"version":"776ec94e2f1f2ebbc5b231103a647984","affectsGlobalScope":true,"impliedNodeFormat":1},"c2e6363d164e809228f71291dcc83add",{"version":"0042ce968ec6274197843485333d3134","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"bf9362f571b6cc12cc5a25da6b9a8675","affectsGlobalScope":true,"impliedNodeFormat":1},"9473140d6a11c5887d169fbdfcd0cb41","e5d364c503b63abd949a746cdc6a4066","d63b35c1a5097295f0659f5583c8fb83","3509aa3de97926c2922f378a248ddb48",{"version":"e6099c385b8384a91dc4f1e601769a6f","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"1413cfdb74da5bf264ec30490f261de1","affectsGlobalScope":true,"impliedNodeFormat":1},"e5c06dabd06c35e42950e36d082ba24f","ac26345510b3b253794221bf8c7d7a1d","eb4ea93209a96f6f1a9c85b8d43816fb",{"version":"a0d07c37a8456336ed8d7dfd9522ea99","affectsGlobalScope":true,"impliedNodeFormat":1},"194b317939f5bde463fc9c0f8d27a314","a7106559a4309e79d396f27199eda706",{"version":"4d5383f23e7454f5d255ab5c08546c16","affectsGlobalScope":true,"impliedNodeFormat":1}],"fileIdsList":[[432,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[431,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[117,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[499,500,501,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,542,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,542,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[502,503,504,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595],[90,96,114,115,116,118,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[125,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[125,126,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[94,96,97,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[94,96,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[94,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[89,94,105,106,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[89,94,105,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[113,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[89,95,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[89,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[91,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[89,90,91,92,93,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[280,388,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,283,284,285,290,292,295,354,377,380,381,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[284,288,290,291,295,354,377,379,383,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,292,295,354,377,380,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,292,295,300,302,351,354,357,363,377,380,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,288,291,292,295,296,298,299,326,351,354,357,363,377,379,380,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,285,286,291,292,293,295,296,297,300,301,317,326,339,346,349,350,351,354,357,358,359,360,361,362,364,377,380,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,283,284,288,289,290,291,292,295,354,377,379,380,382,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[297,302,351,354,357,363,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,285,292,295,296,298,302,304,305,306,307,308,309,351,354,357,363,377,380,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[364,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[285,291,297,298,305,310,311,351,354,357,363,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[297,317,351,354,357,358,363,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,285,288,291,293,295,351,354,357,363,377,379,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,284,288,291,295,336,354,364,377,379,380,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[284,285,290,291,295,297,302,351,354,357,358,363,364,377,379,380,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[297,303,312,324,325,326,334,354,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,285,293,295,299,300,351,354,357,363,364,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,288,291,296,297,298,306,354,377,380,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[284,288,290,291,295,354,377,379,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,283,284,285,291,292,293,294,295,296,297,298,299,300,301,302,303,306,307,312,316,317,319,321,322,323,324,325,326,328,331,332,333,334,335,339,343,344,354,358,364,365,366,374,375,376,378,380,382,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,283,284,285,291,292,293,294,295,354,377,379,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[284,287,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[283,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[291,297,343,351,354,357,358,363,377,382,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[285,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,291,292,293,295,299,351,354,357,363,364,377,379,380,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[279,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,290,293,295,297,298,299,300,317,323,326,327,328,331,333,334,351,354,357,363,364,377,378,380,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[288,295,298,354,377,379,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,285,293,295,296,297,298,306,307,313,314,315,317,318,319,321,323,326,331,333,351,354,357,363,364,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[291,295,298,299,334,351,354,357,363,377,382,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[299,334,378,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[288,299,323,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,291,292,346,347,357,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,288,291,295,298,354,377,379,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,288,291,292,379,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[378,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,285,291,295,297,300,303,307,312,317,321,325,326,333,334,335,343,351,354,357,363,364,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,284,288,289,291,292,295,296,354,377,379,380,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[290,291,351,357,363,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,285,291,295,299,302,306,307,314,315,317,351,354,357,358,363,364,377,378,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[293,300,332,335,351,357,358,363,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,300,351,357,363,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,285,291,302,319,351,357,363,367,368,369,370,371,373,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[288,291,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,285,291,368,370,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,288,291,295,302,319,354,367,369,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,288,291,302,367,368,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,291,368,369,370,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[369,370,371,372,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,288,291,295,354,369,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[291,296,379,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[291,379,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,283,284,285,290,291,292,293,294,354,377,379,380,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,285,295,351,354,357,363,364,377,379,380,382,385,388,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,283,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[385,388,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[291,317,346,351,357,363,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,291,293,295,296,301,329,345,351,354,357,363,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[289,296,297,351,354,357,363,364,377,382,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,291,351,357,363,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,283,284,295,354,377,380,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,284,288,291,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,293,295,338,351,354,357,363,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,295,299,300,301,302,320,351,354,357,363,364,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[321,375,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,288,291,297,321,334,351,354,357,363,377,380,382,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[291,297,299,300,317,323,332,333,334,351,354,357,363,364,377,378,379,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[313,322,358,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[323,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,283,285,291,292,293,294,295,297,299,351,357,363,364,377,380,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,285,291,292,295,296,297,302,336,337,339,341,342,351,354,357,363,364,377,380,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[340,341,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[295,302,354,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[296,340,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[332,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[116,281,282,284,285,290,291,295,296,298,299,300,302,304,306,308,310,314,321,330,336,351,354,357,363,364,377,380,382,384,385,386,387,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,284,295,351,354,357,363,377,382,386,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[291,297,300,316,351,354,357,363,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[288,308,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[300,351,354,357,363,364,377,380,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,285,291,292,293,295,296,297,298,300,302,306,317,346,349,350,354,357,363,364,377,380,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,284,288,290,291,292,379,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,283,285,290,291,292,293,295,296,297,300,301,302,317,326,335,343,344,346,347,348,349,351,352,353,354,355,356,358,363,364,377,380,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[295,296,300,351,354,357,363,364,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,295,297,300,329,330,332,351,354,357,358,363,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,317,351,354,355,357,363,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,292,295,354,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,291,295,296,300,351,354,357,363,364,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[285,295,297,300,332,351,354,357,363,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[282,295,354,377,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[131,132,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[131,132,133,134,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[131,133,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[131,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[156,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[159,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[159,216,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[156,159,216,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[156,217,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[156,159,175,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[156,215,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[156,261,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[156,250,251,252,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[156,159,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[156,159,198,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[156,159,197,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[156,173,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[154,156,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[156,219,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[156,254,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[156,159,243,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[153,154,155,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[250,251,255,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[249,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[156,167,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[158,166,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[153,154,155,157,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[156,169,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[158,164,165,168,170,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[156,158,165,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[159,165,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[152,160,161,164,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[162,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[161,163,165,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[164,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[137,153,154,155,156,157,158,159,160,161,162,163,164,165,166,168,170,171,172,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,216,218,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[278,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[152,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[138,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[138,143,144,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[138,143,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[138,144,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[138,139,140,141,142,143,145,146,147,148,149,150,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[151,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,514,518,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,514,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,509,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,511,514,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597],[504,509,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597],[504,506,507,510,513,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,514,521,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,506,512,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,514,535,536,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,510,514,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597],[504,535,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597],[504,508,509,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597],[504,508,509,510,511,512,513,514,515,516,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,536,537,538,539,540,541,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,514,529,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,514,521,522,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,512,514,522,523,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,513,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,506,509,514,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,514,518,522,523,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,518,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,512,514,517,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,506,511,514,521,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[504,509,514,535,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597],[100,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[100,101,102,103,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[102,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[98,120,121,123,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[98,99,111,123,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[89,96,98,99,107,123,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[104,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[89,98,99,107,119,122,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[98,99,104,107,123,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[98,120,121,122,123,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[98,104,108,109,110,123,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[89,94,96,98,99,104,107,108,109,110,111,112,114,119,120,121,122,123,124,127,128,129,130,135,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[89,96,98,99,107,108,120,121,122,123,128,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[388,406,407,408,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[407,408,409,410,411,412,413,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[388,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[407,408,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[406,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[481,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[480,482,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[480,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[476,480,481,482,483,484,485,486,492,493,494,495,496,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[480,481,482,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[481,482,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[487,488,489,490,491,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[136,414,476,477,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[477,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[136,414,477,497,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[406,414,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[433,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[414,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596],[415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,504,544,545,546,547,548,549,550,551,552,553,554,555,556,557,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596]],"options":{"allowJs":false,"composite":true,"emitDeclarationOnly":true,"declaration":true,"declarationMap":true,"experimentalDecorators":true,"jsx":3,"module":200,"noImplicitOverride":true,"noUncheckedSideEffectImports":false,"outDir":"./","rewriteRelativeImportExtensions":true,"skipLibCheck":true,"strict":true,"stripInternal":true,"sourceMap":true,"target":99,"esModuleInterop":true},"referencedMap":[[433,1],[432,2],[431,3],[116,3],[118,4],[117,3],[544,5],[545,6],[546,7],[504,8],[547,9],[548,10],[549,11],[499,3],[502,12],[500,3],[501,3],[550,13],[551,14],[552,15],[553,16],[554,17],[555,18],[556,19],[558,3],[557,20],[559,21],[560,22],[561,23],[543,24],[503,3],[562,25],[563,26],[564,27],[597,28],[565,29],[566,30],[567,31],[568,32],[569,33],[570,34],[571,35],[572,36],[573,37],[574,38],[575,39],[576,40],[577,41],[578,42],[579,43],[581,44],[580,45],[582,46],[583,47],[584,48],[585,49],[586,50],[587,51],[588,52],[589,53],[590,54],[591,55],[592,56],[593,57],[594,58],[595,59],[596,60],[598,3],[87,3],[88,3],[14,3],[16,3],[15,3],[2,3],[17,3],[18,3],[19,3],[20,3],[21,3],[22,3],[23,3],[24,3],[3,3],[25,3],[26,3],[4,3],[27,3],[31,3],[28,3],[29,3],[30,3],[32,3],[33,3],[34,3],[5,3],[35,3],[36,3],[37,3],[38,3],[6,3],[42,3],[39,3],[40,3],[41,3],[43,3],[7,3],[44,3],[49,3],[50,3],[45,3],[46,3],[47,3],[48,3],[8,3],[54,3],[51,3],[52,3],[53,3],[55,3],[9,3],[56,3],[57,3],[58,3],[60,3],[59,3],[61,3],[62,3],[10,3],[63,3],[64,3],[65,3],[11,3],[66,3],[67,3],[68,3],[69,3],[70,3],[71,3],[12,3],[72,3],[73,3],[74,3],[75,3],[76,3],[1,3],[77,3],[78,3],[13,3],[79,3],[80,3],[81,3],[82,3],[83,3],[84,3],[85,3],[86,3],[119,61],[126,62],[127,63],[125,3],[89,3],[98,64],[97,65],[120,64],[105,66],[107,67],[106,68],[114,69],[113,3],[96,70],[90,71],[92,72],[94,73],[93,3],[95,71],[91,3],[505,3],[281,74],[382,75],[384,76],[304,77],[320,78],[364,79],[363,80],[286,3],[296,81],[303,82],[310,83],[305,84],[312,85],[311,3],[324,86],[297,87],[337,88],[336,89],[327,90],[301,91],[313,92],[302,93],[377,94],[380,95],[288,96],[284,97],[344,98],[316,99],[300,100],[280,101],[332,102],[299,103],[334,104],[378,105],[365,106],[328,107],[285,97],[348,108],[283,109],[287,3],[306,110],[298,111],[379,112],[358,113],[314,114],[307,115],[315,3],[318,116],[366,117],[350,118],[359,3],[374,119],[367,120],[372,121],[370,122],[369,123],[319,120],[371,124],[373,125],[368,126],[345,127],[329,128],[289,3],[295,129],[290,97],[383,99],[386,130],[291,109],[292,131],[387,132],[349,133],[346,134],[325,135],[338,136],[381,137],[308,138],[339,139],[321,140],[376,141],[375,142],[335,143],[323,144],[322,145],[354,146],[343,147],[342,148],[340,149],[341,150],[333,151],[388,152],[385,153],[317,154],[309,155],[360,156],[351,157],[330,158],[357,159],[352,160],[353,3],[331,161],[356,162],[355,163],[347,164],[326,165],[282,3],[293,3],[361,109],[362,166],[294,131],[133,167],[135,168],[134,169],[132,170],[131,3],[173,171],[261,172],[175,3],[219,173],[159,3],[217,174],[254,3],[215,172],[222,175],[176,176],[183,171],[230,177],[184,171],[231,177],[177,171],[272,178],[178,171],[179,171],[273,178],[180,171],[181,171],[185,171],[186,171],[194,171],[253,179],[199,171],[200,171],[190,171],[191,171],[192,171],[193,171],[195,176],[202,180],[197,171],[196,180],[182,171],[198,171],[269,181],[270,182],[187,171],[232,177],[201,171],[174,183],[188,171],[233,177],[229,184],[263,178],[264,178],[262,178],[203,171],[207,171],[208,171],[209,171],[220,185],[224,185],[210,171],[277,171],[211,180],[212,171],[204,171],[205,171],[213,171],[214,171],[206,171],[276,171],[275,171],[218,175],[225,176],[226,176],[227,171],[255,186],[238,171],[271,176],[216,177],[234,177],[274,180],[235,177],[237,171],[239,171],[267,178],[268,178],[265,178],[266,178],[240,171],[189,171],[221,185],[223,185],[236,177],[228,176],[241,171],[242,171],[243,180],[244,180],[245,180],[246,180],[247,180],[248,187],[156,188],[155,3],[256,189],[250,190],[251,190],[249,3],[252,172],[137,3],[157,3],[168,191],[167,192],[158,193],[170,194],[169,192],[171,195],[172,196],[166,197],[165,198],[160,3],[161,3],[162,3],[163,199],[164,200],[260,201],[257,3],[278,202],[279,203],[153,204],[154,3],[258,3],[259,3],[143,205],[145,206],[146,207],[147,207],[148,208],[149,205],[150,205],[144,3],[139,205],[140,205],[138,3],[141,205],[142,205],[151,209],[152,210],[121,3],[115,3],[521,211],[531,212],[520,211],[541,213],[512,214],[511,3],[540,215],[534,216],[539,214],[514,217],[528,218],[513,219],[537,220],[509,221],[508,215],[538,222],[510,223],[515,212],[516,3],[519,212],[506,3],[542,224],[532,225],[523,226],[524,227],[526,228],[522,229],[525,230],[535,215],[517,231],[518,232],[527,233],[507,3],[530,225],[529,212],[533,3],[536,234],[101,235],[104,236],[102,235],[100,3],[103,237],[122,238],[112,239],[108,240],[109,66],[129,241],[123,242],[110,243],[128,244],[99,3],[111,245],[136,246],[130,247],[124,3],[389,3],[402,3],[403,3],[390,3],[391,3],[404,3],[392,3],[406,248],[405,3],[393,3],[394,3],[395,3],[396,3],[397,3],[398,3],[399,3],[400,3],[401,3],[409,249],[410,3],[414,250],[407,251],[411,252],[412,253],[408,251],[413,3],[482,254],[481,255],[494,256],[483,3],[496,3],[497,257],[484,254],[495,254],[485,258],[480,3],[486,254],[487,254],[488,3],[489,259],[490,254],[491,259],[492,260],[493,3],[478,261],[479,262],[498,263],[477,264],[415,3],[416,3],[417,3],[418,3],[419,3],[420,3],[421,3],[422,3],[423,3],[424,3],[425,3],[426,3],[427,3],[428,3],[429,3],[430,3],[434,265],[435,3],[436,3],[437,3],[438,3],[439,266],[440,3],[476,267],[441,3],[442,3],[443,3],[444,3],[445,3],[446,3],[447,3],[448,3],[449,3],[450,3],[451,3],[452,3],[453,3],[454,3],[455,3],[456,3],[457,3],[458,3],[459,3],[460,3],[461,3],[462,3],[463,3],[464,3],[465,3],[466,3],[467,3],[468,266],[469,3],[470,3],[471,3],[472,3],[473,3],[474,3],[475,3]],"latestChangedDtsFile":"./src/timeframe.test.d.ts"}
package/package.json CHANGED
@@ -1,37 +1,38 @@
1
1
  {
2
2
  "name": "@dxos/timeframe",
3
- "version": "0.8.3",
3
+ "version": "0.8.4-main.05e74ebcff",
4
4
  "description": "Timeframe vector clock.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
7
- "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/dxos/dxos"
10
+ },
11
+ "license": "FSL-1.1-Apache-2.0",
8
12
  "author": "DXOS.org",
9
- "sideEffects": true,
13
+ "sideEffects": false,
10
14
  "type": "module",
11
15
  "exports": {
12
16
  ".": {
17
+ "types": "./dist/types/src/index.d.ts",
13
18
  "browser": "./dist/lib/browser/index.mjs",
14
19
  "node": {
15
20
  "require": "./dist/lib/node/index.cjs",
16
21
  "default": "./dist/lib/node-esm/index.mjs"
17
- },
18
- "types": "./dist/types/src/index.d.ts"
22
+ }
19
23
  }
20
24
  },
21
25
  "types": "dist/types/src/index.d.ts",
22
- "typesVersions": {
23
- "*": {}
24
- },
25
26
  "files": [
26
27
  "dist",
27
28
  "src"
28
29
  ],
29
30
  "dependencies": {
30
- "@dxos/keys": "0.8.3",
31
- "@dxos/log": "0.8.3",
32
- "@dxos/node-std": "0.8.3",
33
- "@dxos/util": "0.8.3",
34
- "@dxos/debug": "0.8.3"
31
+ "@dxos/debug": "0.8.4-main.05e74ebcff",
32
+ "@dxos/node-std": "0.8.4-main.05e74ebcff",
33
+ "@dxos/util": "0.8.4-main.05e74ebcff",
34
+ "@dxos/log": "0.8.4-main.05e74ebcff",
35
+ "@dxos/keys": "0.8.4-main.05e74ebcff"
35
36
  },
36
37
  "publishConfig": {
37
38
  "access": "public"
package/src/timeframe.ts CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  import { inspect } from 'node:util';
6
6
 
7
- import { equalsSymbol, type Equatable } from '@dxos/debug';
7
+ import { type Equatable, equalsSymbol } from '@dxos/debug';
8
8
  import { type PublicKey } from '@dxos/keys';
9
9
 
10
10
  type Entry = {
@@ -1,141 +0,0 @@
1
- "use strict";
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __hasOwnProp = Object.prototype.hasOwnProperty;
6
- var __export = (target, all) => {
7
- for (var name in all)
8
- __defProp(target, name, { get: all[name], enumerable: true });
9
- };
10
- var __copyProps = (to, from, except, desc) => {
11
- if (from && typeof from === "object" || typeof from === "function") {
12
- for (let key of __getOwnPropNames(from))
13
- if (!__hasOwnProp.call(to, key) && key !== except)
14
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
- }
16
- return to;
17
- };
18
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
- var node_exports = {};
20
- __export(node_exports, {
21
- Timeframe: () => Timeframe
22
- });
23
- module.exports = __toCommonJS(node_exports);
24
- var import_node_util = require("node:util");
25
- var import_debug = require("@dxos/debug");
26
- var Timeframe = class _Timeframe {
27
- constructor(frames = []) {
28
- this._frames = /* @__PURE__ */ new Map();
29
- for (const [key, seq] of frames) {
30
- this.set(key, seq);
31
- }
32
- }
33
- toJSON() {
34
- return this.frames().reduce((frames, [key, seq]) => {
35
- frames[key.truncate()] = seq;
36
- return frames;
37
- }, {});
38
- }
39
- toString() {
40
- return `(${this.frames().map(([key, seq]) => `${key.truncate()}[${seq}]`).join(", ")})`;
41
- }
42
- equals(object) {
43
- return this.size() === object.size() && this.frames().every(([key, seq]) => object.get(key) === seq);
44
- }
45
- // TODO(burdon): Rename getFrame.
46
- get(key) {
47
- return this._frames.get(key.toHex())?.seq;
48
- }
49
- // TODO(burdon): Rename setFrame.
50
- set(key, seq) {
51
- const hex = key.toHex();
52
- this._frames.set(hex, {
53
- key,
54
- seq
55
- });
56
- }
57
- // TODO(burdon): Change to getter.
58
- frames() {
59
- return Array.from(this._frames.values()).map(({ key, seq }) => [
60
- key,
61
- seq
62
- ]);
63
- }
64
- // TODO(burdon): Change to getter.
65
- size() {
66
- return this._frames.size;
67
- }
68
- // TODO(burdon): Change to getter (empty).
69
- isEmpty() {
70
- return this.size() === 0;
71
- }
72
- /**
73
- * Returns a new timeframe with specified keys removed.
74
- * @param keys
75
- */
76
- withoutKeys(keys) {
77
- return new _Timeframe(this.frames().filter(([frameKey]) => keys.every((key) => !key.equals(frameKey))));
78
- }
79
- map(fn) {
80
- return new _Timeframe(this.frames().map(fn));
81
- }
82
- /**
83
- * Returns a total amount of messages represented by this timeframe.
84
- */
85
- totalMessages() {
86
- return Array.from(this._frames.values()).reduce((result, { seq }) => result + seq + 1, 0);
87
- }
88
- /**
89
- * Returns a total amount of messages that are present in this timeframe but are missing in `base`.
90
- */
91
- newMessages(base) {
92
- return Array.from(this._frames.entries()).reduce((result, [hex, { seq }]) => result + Math.max(seq - (base._frames.get(hex)?.seq ?? -1), 0), 0);
93
- }
94
- /**
95
- * Used by NodeJS to get textual representation of this object in `console.log`.
96
- */
97
- [import_node_util.inspect.custom]() {
98
- return `Timeframe${this.toString()}`;
99
- }
100
- [import_debug.equalsSymbol](other) {
101
- if (!(other instanceof _Timeframe)) {
102
- return false;
103
- }
104
- return this.equals(other);
105
- }
106
- /**
107
- * Merges the values, updating the highest sequence numbers.
108
- * @param timeframes
109
- */
110
- static merge(...timeframes) {
111
- const result = new _Timeframe();
112
- for (const timeframe of timeframes) {
113
- for (const [hex, entry] of timeframe._frames) {
114
- const currentEntry = result._frames.get(hex);
115
- if (currentEntry === void 0 || entry.seq > currentEntry.seq) {
116
- result._frames.set(hex, entry);
117
- }
118
- }
119
- }
120
- return result;
121
- }
122
- /**
123
- * Compares two timeframes and returns an array of frames from the first timeframe where the sequence number
124
- * is greater than the associated sequence number from the second timeframe.
125
- */
126
- static dependencies(tf1, tf2) {
127
- const result = new _Timeframe();
128
- for (const [hex, entry] of tf1._frames) {
129
- const otherEntry = tf2._frames.get(hex);
130
- if (otherEntry === void 0 || otherEntry.seq < entry.seq) {
131
- result._frames.set(hex, entry);
132
- }
133
- }
134
- return result;
135
- }
136
- };
137
- // Annotate the CommonJS export names for ESM import in node:
138
- 0 && (module.exports = {
139
- Timeframe
140
- });
141
- //# sourceMappingURL=index.cjs.map
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../../src/timeframe.ts"],
4
- "sourcesContent": ["//\n// Copyright 2020 DXOS.org\n//\n\nimport { inspect } from 'node:util';\n\nimport { equalsSymbol, type Equatable } from '@dxos/debug';\nimport { type PublicKey } from '@dxos/keys';\n\ntype Entry = {\n key: PublicKey;\n seq: number;\n};\n\n/**\n * A vector clock that implements ordering over a set of feed messages.\n */\nexport class Timeframe implements Equatable {\n private readonly _frames = new Map<string, Entry>();\n\n constructor(frames: [PublicKey, number][] = []) {\n for (const [key, seq] of frames) {\n this.set(key, seq);\n }\n }\n\n toJSON(): Record<string, number> {\n return this.frames().reduce((frames: Record<string, number>, [key, seq]) => {\n frames[key.truncate()] = seq;\n return frames;\n }, {});\n }\n\n toString(): string {\n return `(${this.frames()\n .map(([key, seq]) => `${key.truncate()}[${seq}]`)\n .join(', ')})`;\n }\n\n equals(object: Timeframe): boolean {\n return this.size() === object.size() && this.frames().every(([key, seq]) => object.get(key) === seq);\n }\n\n // TODO(burdon): Rename getFrame.\n get(key: PublicKey): number | undefined {\n return this._frames.get(key.toHex())?.seq;\n }\n\n // TODO(burdon): Rename setFrame.\n set(key: PublicKey, seq: number): void {\n const hex = key.toHex();\n this._frames.set(hex, { key, seq });\n }\n\n // TODO(burdon): Change to getter.\n frames(): [PublicKey, number][] {\n return Array.from(this._frames.values()).map(({ key, seq }) => [key, seq]);\n }\n\n // TODO(burdon): Change to getter.\n size(): number {\n return this._frames.size;\n }\n\n // TODO(burdon): Change to getter (empty).\n isEmpty(): boolean {\n return this.size() === 0;\n }\n\n /**\n * Returns a new timeframe with specified keys removed.\n * @param keys\n */\n withoutKeys(keys: PublicKey[]): Timeframe {\n return new Timeframe(this.frames().filter(([frameKey]) => keys.every((key) => !key.equals(frameKey))));\n }\n\n map(fn: (frame: [key: PublicKey, seq: number]) => [PublicKey, number]): Timeframe {\n return new Timeframe(this.frames().map(fn));\n }\n\n /**\n * Returns a total amount of messages represented by this timeframe.\n */\n totalMessages(): number {\n return Array.from(this._frames.values()).reduce((result, { seq }) => result + seq + 1, 0);\n }\n\n /**\n * Returns a total amount of messages that are present in this timeframe but are missing in `base`.\n */\n newMessages(base: Timeframe): number {\n return Array.from(this._frames.entries()).reduce(\n (result, [hex, { seq }]) => result + Math.max(seq - (base._frames.get(hex)?.seq ?? -1), 0),\n 0,\n );\n }\n\n /**\n * Used by NodeJS to get textual representation of this object in `console.log`.\n */\n [inspect.custom](): string {\n return `Timeframe${this.toString()}`;\n }\n\n [equalsSymbol](other: any): boolean {\n if (!(other instanceof Timeframe)) {\n return false;\n }\n\n return this.equals(other);\n }\n\n /**\n * Merges the values, updating the highest sequence numbers.\n * @param timeframes\n */\n static merge(...timeframes: Timeframe[]): Timeframe {\n const result = new Timeframe();\n for (const timeframe of timeframes) {\n for (const [hex, entry] of timeframe._frames) {\n const currentEntry = result._frames.get(hex);\n if (currentEntry === undefined || entry.seq > currentEntry.seq) {\n result._frames.set(hex, entry);\n }\n }\n }\n\n return result;\n }\n\n /**\n * Compares two timeframes and returns an array of frames from the first timeframe where the sequence number\n * is greater than the associated sequence number from the second timeframe.\n */\n static dependencies(tf1: Timeframe, tf2: Timeframe): Timeframe {\n const result = new Timeframe();\n for (const [hex, entry] of tf1._frames) {\n const otherEntry = tf2._frames.get(hex);\n if (otherEntry === undefined || otherEntry.seq < entry.seq) {\n result._frames.set(hex, entry);\n }\n }\n\n return result;\n }\n}\n"],
5
- "mappings": "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",
6
- "names": ["Timeframe", "frames", "_frames", "Map", "key", "seq", "set", "toJSON", "reduce", "truncate", "toString", "map", "join", "equals", "object", "size", "every", "get", "toHex", "hex", "Array", "from", "values", "isEmpty", "withoutKeys", "keys", "filter", "frameKey", "fn", "totalMessages", "result", "newMessages", "base", "entries", "Math", "max", "inspect", "custom", "equalsSymbol", "other", "merge", "timeframes", "timeframe", "entry", "currentEntry", "undefined", "dependencies", "tf1", "tf2", "otherEntry"]
7
- }
@@ -1 +0,0 @@
1
- {"inputs":{"packages/common/timeframe/src/timeframe.ts":{"bytes":13817,"imports":[{"path":"node:util","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true}],"format":"esm"},"packages/common/timeframe/src/index.ts":{"bytes":470,"imports":[{"path":"packages/common/timeframe/src/timeframe.ts","kind":"import-statement","original":"./timeframe"}],"format":"esm"}},"outputs":{"packages/common/timeframe/dist/lib/node/index.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":7155},"packages/common/timeframe/dist/lib/node/index.cjs":{"imports":[{"path":"node:util","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true}],"exports":["Timeframe"],"entryPoint":"packages/common/timeframe/src/index.ts","inputs":{"packages/common/timeframe/src/timeframe.ts":{"bytesInOutput":3267},"packages/common/timeframe/src/index.ts":{"bytesInOutput":0}},"bytes":3372}}}