@aztec/merkle-tree 0.1.0-alpha10
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/.eslintrc.cjs +1 -0
- package/.tsbuildinfo +1 -0
- package/README.md +41 -0
- package/dest/hasher.d.ts +11 -0
- package/dest/hasher.d.ts.map +1 -0
- package/dest/hasher.js +2 -0
- package/dest/index.d.ts +14 -0
- package/dest/index.d.ts.map +1 -0
- package/dest/index.js +14 -0
- package/dest/interfaces/append_only_tree.d.ts +13 -0
- package/dest/interfaces/append_only_tree.d.ts.map +1 -0
- package/dest/interfaces/append_only_tree.js +2 -0
- package/dest/interfaces/indexed_tree.d.ts +63 -0
- package/dest/interfaces/indexed_tree.d.ts.map +1 -0
- package/dest/interfaces/indexed_tree.js +2 -0
- package/dest/interfaces/merkle_tree.d.ts +47 -0
- package/dest/interfaces/merkle_tree.d.ts.map +1 -0
- package/dest/interfaces/merkle_tree.js +2 -0
- package/dest/interfaces/update_only_tree.d.ts +15 -0
- package/dest/interfaces/update_only_tree.d.ts.map +1 -0
- package/dest/interfaces/update_only_tree.js +2 -0
- package/dest/load_tree.d.ts +13 -0
- package/dest/load_tree.d.ts.map +1 -0
- package/dest/load_tree.js +17 -0
- package/dest/new_tree.d.ts +15 -0
- package/dest/new_tree.d.ts.map +1 -0
- package/dest/new_tree.js +16 -0
- package/dest/pedersen.d.ts +42 -0
- package/dest/pedersen.d.ts.map +1 -0
- package/dest/pedersen.js +49 -0
- package/dest/sibling_path/sibling_path.d.ts +92 -0
- package/dest/sibling_path/sibling_path.d.ts.map +1 -0
- package/dest/sibling_path/sibling_path.js +120 -0
- package/dest/sparse_tree/sparse_tree.d.ts +15 -0
- package/dest/sparse_tree/sparse_tree.d.ts.map +1 -0
- package/dest/sparse_tree/sparse_tree.js +31 -0
- package/dest/sparse_tree/sparse_tree.test.d.ts +2 -0
- package/dest/sparse_tree/sparse_tree.test.d.ts.map +1 -0
- package/dest/sparse_tree/sparse_tree.test.js +132 -0
- package/dest/standard_indexed_tree/standard_indexed_tree.d.ts +230 -0
- package/dest/standard_indexed_tree/standard_indexed_tree.d.ts.map +1 -0
- package/dest/standard_indexed_tree/standard_indexed_tree.js +497 -0
- package/dest/standard_indexed_tree/standard_indexed_tree.test.d.ts +2 -0
- package/dest/standard_indexed_tree/standard_indexed_tree.test.d.ts.map +1 -0
- package/dest/standard_indexed_tree/standard_indexed_tree.test.js +316 -0
- package/dest/standard_tree/standard_tree.d.ts +25 -0
- package/dest/standard_tree/standard_tree.d.ts.map +1 -0
- package/dest/standard_tree/standard_tree.js +50 -0
- package/dest/standard_tree/standard_tree.test.d.ts +2 -0
- package/dest/standard_tree/standard_tree.test.d.ts.map +1 -0
- package/dest/standard_tree/standard_tree.test.js +58 -0
- package/dest/test/standard_based_test_suite.d.ts +6 -0
- package/dest/test/standard_based_test_suite.d.ts.map +1 -0
- package/dest/test/standard_based_test_suite.js +86 -0
- package/dest/test/test_suite.d.ts +6 -0
- package/dest/test/test_suite.d.ts.map +1 -0
- package/dest/test/test_suite.js +118 -0
- package/dest/test/utils/append_leaves.d.ts +5 -0
- package/dest/test/utils/append_leaves.d.ts.map +1 -0
- package/dest/test/utils/append_leaves.js +14 -0
- package/dest/test/utils/create_mem_down.d.ts +3 -0
- package/dest/test/utils/create_mem_down.d.ts.map +1 -0
- package/dest/test/utils/create_mem_down.js +3 -0
- package/dest/test/utils/pedersen_with_counter.d.ts +24 -0
- package/dest/test/utils/pedersen_with_counter.d.ts.map +1 -0
- package/dest/test/utils/pedersen_with_counter.js +31 -0
- package/dest/tree_base.d.ts +118 -0
- package/dest/tree_base.d.ts.map +1 -0
- package/dest/tree_base.js +214 -0
- package/package.json +14 -0
- package/package.local.json +3 -0
- package/src/hasher.ts +9 -0
- package/src/index.ts +13 -0
- package/src/interfaces/append_only_tree.ts +12 -0
- package/src/interfaces/indexed_tree.ts +78 -0
- package/src/interfaces/merkle_tree.ts +52 -0
- package/src/interfaces/update_only_tree.ts +15 -0
- package/src/load_tree.ts +24 -0
- package/src/new_tree.ts +26 -0
- package/src/pedersen.ts +58 -0
- package/src/sibling_path/sibling_path.ts +139 -0
- package/src/sparse_tree/sparse_tree.test.ts +177 -0
- package/src/sparse_tree/sparse_tree.ts +32 -0
- package/src/standard_indexed_tree/standard_indexed_tree.test.ts +450 -0
- package/src/standard_indexed_tree/standard_indexed_tree.ts +591 -0
- package/src/standard_tree/standard_tree.test.ts +74 -0
- package/src/standard_tree/standard_tree.ts +54 -0
- package/src/test/standard_based_test_suite.ts +139 -0
- package/src/test/test_suite.ts +162 -0
- package/src/test/utils/append_leaves.ts +15 -0
- package/src/test/utils/create_mem_down.ts +3 -0
- package/src/test/utils/pedersen_with_counter.ts +30 -0
- package/src/tree_base.ts +242 -0
- package/tsconfig.json +17 -0
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
/// <reference types="node" resolution-mode="require"/>
|
|
2
|
+
import { IndexedTree, LeafData } from '../interfaces/indexed_tree.js';
|
|
3
|
+
import { TreeBase } from '../tree_base.js';
|
|
4
|
+
import { SiblingPath } from '../index.js';
|
|
5
|
+
/**
|
|
6
|
+
* All of the data to be return during batch insertion.
|
|
7
|
+
*/
|
|
8
|
+
export interface LowLeafWitnessData<N extends number> {
|
|
9
|
+
/**
|
|
10
|
+
* Preimage of the low nullifier that proves non membership.
|
|
11
|
+
*/
|
|
12
|
+
leafData: LeafData;
|
|
13
|
+
/**
|
|
14
|
+
* Sibling path to prove membership of low nullifier.
|
|
15
|
+
*/
|
|
16
|
+
siblingPath: SiblingPath<N>;
|
|
17
|
+
/**
|
|
18
|
+
* The index of low nullifier.
|
|
19
|
+
*/
|
|
20
|
+
index: bigint;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Indexed merkle tree.
|
|
24
|
+
*/
|
|
25
|
+
export declare class StandardIndexedTree extends TreeBase implements IndexedTree {
|
|
26
|
+
private leaves;
|
|
27
|
+
private cachedLeaves;
|
|
28
|
+
/**
|
|
29
|
+
* Appends the given leaves to the tree.
|
|
30
|
+
* @param leaves - The leaves to append.
|
|
31
|
+
* @returns Empty promise.
|
|
32
|
+
*/
|
|
33
|
+
appendLeaves(leaves: Buffer[]): Promise<void>;
|
|
34
|
+
/**
|
|
35
|
+
* Commits the changes to the database.
|
|
36
|
+
* @returns Empty promise.
|
|
37
|
+
*/
|
|
38
|
+
commit(): Promise<void>;
|
|
39
|
+
/**
|
|
40
|
+
* Rolls back the not-yet-committed changes.
|
|
41
|
+
* @returns Empty promise.
|
|
42
|
+
*/
|
|
43
|
+
rollback(): Promise<void>;
|
|
44
|
+
/**
|
|
45
|
+
* Gets the value of the leaf at the given index.
|
|
46
|
+
* @param index - Index of the leaf of which to obtain the value.
|
|
47
|
+
* @param includeUncommitted - Indicates whether to include uncommitted leaves in the computation.
|
|
48
|
+
* @returns The value of the leaf at the given index or undefined if the leaf is empty.
|
|
49
|
+
*/
|
|
50
|
+
getLeafValue(index: bigint, includeUncommitted: boolean): Promise<Buffer | undefined>;
|
|
51
|
+
/**
|
|
52
|
+
* Finds the index of the largest leaf whose value is less than or equal to the provided value.
|
|
53
|
+
* @param newValue - The new value to be inserted into the tree.
|
|
54
|
+
* @param includeUncommitted - If true, the uncommitted changes are included in the search.
|
|
55
|
+
* @returns The found leaf index and a flag indicating if the corresponding leaf's value is equal to `newValue`.
|
|
56
|
+
*/
|
|
57
|
+
findIndexOfPreviousValue(newValue: bigint, includeUncommitted: boolean): {
|
|
58
|
+
/**
|
|
59
|
+
* The index of the found leaf.
|
|
60
|
+
*/
|
|
61
|
+
index: number;
|
|
62
|
+
/**
|
|
63
|
+
* A flag indicating if the corresponding leaf's value is equal to `newValue`.
|
|
64
|
+
*/
|
|
65
|
+
alreadyPresent: boolean;
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* Gets the latest LeafData copy.
|
|
69
|
+
* @param index - Index of the leaf of which to obtain the LeafData copy.
|
|
70
|
+
* @param includeUncommitted - If true, the uncommitted changes are included in the search.
|
|
71
|
+
* @returns A copy of the leaf data at the given index or undefined if the leaf was not found.
|
|
72
|
+
*/
|
|
73
|
+
getLatestLeafDataCopy(index: number, includeUncommitted: boolean): LeafData | undefined;
|
|
74
|
+
/**
|
|
75
|
+
* Appends the given leaf to the tree.
|
|
76
|
+
* @param leaf - The leaf to append.
|
|
77
|
+
* @returns Empty promise.
|
|
78
|
+
*/
|
|
79
|
+
private appendLeaf;
|
|
80
|
+
/**
|
|
81
|
+
* Finds the index of the minimum value in an array.
|
|
82
|
+
* @param values - The collection of values to be searched.
|
|
83
|
+
* @returns The index of the minimum value in the array.
|
|
84
|
+
*/
|
|
85
|
+
private findMinIndex;
|
|
86
|
+
/**
|
|
87
|
+
* Initializes the tree.
|
|
88
|
+
* @param prefilledSize - A number of leaves that are prefilled with values.
|
|
89
|
+
* @returns Empty promise.
|
|
90
|
+
*/
|
|
91
|
+
init(prefilledSize: number): Promise<void>;
|
|
92
|
+
/**
|
|
93
|
+
* Loads Merkle tree data from a database and assigns them to this object.
|
|
94
|
+
*/
|
|
95
|
+
initFromDb(): Promise<void>;
|
|
96
|
+
/**
|
|
97
|
+
* Commits all the leaves to the database and removes them from a cache.
|
|
98
|
+
*/
|
|
99
|
+
private commitLeaves;
|
|
100
|
+
/**
|
|
101
|
+
* Clears the cache.
|
|
102
|
+
*/
|
|
103
|
+
private clearCachedLeaves;
|
|
104
|
+
/**
|
|
105
|
+
* Updates a leaf in the tree.
|
|
106
|
+
* @param leaf - New contents of the leaf.
|
|
107
|
+
* @param index - Index of the leaf to be updated.
|
|
108
|
+
*/
|
|
109
|
+
private _updateLeaf;
|
|
110
|
+
/**
|
|
111
|
+
* Exposes the underlying tree's update leaf method.
|
|
112
|
+
* @param leaf - The hash to set at the leaf.
|
|
113
|
+
* @param index - The index of the element.
|
|
114
|
+
*/
|
|
115
|
+
updateLeaf(leaf: LeafData, index: bigint): Promise<void>;
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* Each base rollup needs to provide non membership / inclusion proofs for each of the nullifier.
|
|
119
|
+
* This method will return membership proofs and perform partial node updates that will
|
|
120
|
+
* allow the circuit to incrementally update the tree and perform a batch insertion.
|
|
121
|
+
*
|
|
122
|
+
* This offers massive circuit performance savings over doing incremental insertions.
|
|
123
|
+
*
|
|
124
|
+
* A description of the algorithm can be found here: https://colab.research.google.com/drive/1A0gizduSi4FIiIJZ8OylwIpO9-OTqV-R
|
|
125
|
+
*
|
|
126
|
+
* WARNING: This function has side effects, it will insert values into the tree.
|
|
127
|
+
*
|
|
128
|
+
* Assumptions:
|
|
129
|
+
* 1. There are 8 nullifiers provided and they are either unique or empty. (denoted as 0)
|
|
130
|
+
* 2. If kc 0 has 1 nullifier, and kc 1 has 3 nullifiers the layout will assume to be the sparse
|
|
131
|
+
* nullifier layout: [kc0-0, 0, 0, 0, kc1-0, kc1-1, kc1-2, 0]
|
|
132
|
+
*
|
|
133
|
+
* Algorithm overview
|
|
134
|
+
*
|
|
135
|
+
* In general, if we want to batch insert items, we first to update their low nullifier to point to them,
|
|
136
|
+
* then batch insert all of the values as at once in the final step.
|
|
137
|
+
* To update a low nullifier, we provide an insertion proof that the low nullifier currently exists to the
|
|
138
|
+
* circuit, then update the low nullifier.
|
|
139
|
+
* Updating this low nullifier will in turn change the root of the tree. Therefore future low nullifier insertion proofs
|
|
140
|
+
* must be given against this new root.
|
|
141
|
+
* As a result, each low nullifier membership proof will be provided against an intermediate tree state, each with differing
|
|
142
|
+
* roots.
|
|
143
|
+
*
|
|
144
|
+
* This become tricky when two items that are being batch inserted need to update the same low nullifier, or need to use
|
|
145
|
+
* a value that is part of the same batch insertion as their low nullifier. In this case a zero low nullifier path is given
|
|
146
|
+
* to the circuit, and it must determine from the set of batch inserted values if the insertion is valid.
|
|
147
|
+
*
|
|
148
|
+
* The following example will illustrate attempting to insert 2,3,20,19 into a tree already containing 0,5,10,15
|
|
149
|
+
*
|
|
150
|
+
* The example will explore two cases. In each case the values low nullifier will exist within the batch insertion,
|
|
151
|
+
* One where the low nullifier comes before the item in the set (2,3), and one where it comes after (20,19).
|
|
152
|
+
*
|
|
153
|
+
* The original tree: Pending insertion subtree
|
|
154
|
+
*
|
|
155
|
+
* index 0 2 3 4 - - - -
|
|
156
|
+
* ------------------------------------- ----------------------------
|
|
157
|
+
* val 0 5 10 15 - - - -
|
|
158
|
+
* nextIdx 1 2 3 0 - - - -
|
|
159
|
+
* nextVal 5 10 15 0 - - - -
|
|
160
|
+
*
|
|
161
|
+
*
|
|
162
|
+
* Inserting 2: (happy path)
|
|
163
|
+
* 1. Find the low nullifier (0) - provide inclusion proof
|
|
164
|
+
* 2. Update its pointers
|
|
165
|
+
* 3. Insert 2 into the pending subtree
|
|
166
|
+
*
|
|
167
|
+
* index 0 2 3 4 5 - - -
|
|
168
|
+
* ------------------------------------- ----------------------------
|
|
169
|
+
* val 0 5 10 15 2 - - -
|
|
170
|
+
* nextIdx 5 2 3 0 2 - - -
|
|
171
|
+
* nextVal 2 10 15 0 5 - - -
|
|
172
|
+
*
|
|
173
|
+
* Inserting 3: The low nullifier exists within the insertion current subtree
|
|
174
|
+
* 1. When looking for the low nullifier for 3, we will receive 0 again as we have not inserted 2 into the main tree
|
|
175
|
+
* This is problematic, as we cannot use either 0 or 2 as our inclusion proof.
|
|
176
|
+
* Why cant we?
|
|
177
|
+
* - Index 0 has a val 0 and nextVal of 2. This is NOT enough to prove non inclusion of 2.
|
|
178
|
+
* - Our existing tree is in a state where we cannot prove non inclusion of 3.
|
|
179
|
+
* We do not provide a non inclusion proof to out circuit, but prompt it to look within the insertion subtree.
|
|
180
|
+
* 2. Update pending insertion subtree
|
|
181
|
+
* 3. Insert 3 into pending subtree
|
|
182
|
+
*
|
|
183
|
+
* (no inclusion proof provided)
|
|
184
|
+
* index 0 2 3 4 5 6 - -
|
|
185
|
+
* ------------------------------------- ----------------------------
|
|
186
|
+
* val 0 5 10 15 2 3 - -
|
|
187
|
+
* nextIdx 5 2 3 0 6 2 - -
|
|
188
|
+
* nextVal 2 10 15 0 3 5 - -
|
|
189
|
+
*
|
|
190
|
+
* Inserting 20: (happy path)
|
|
191
|
+
* 1. Find the low nullifier (15) - provide inculsion proof
|
|
192
|
+
* 2. Update its pointers
|
|
193
|
+
* 3. Insert 20 into the pending subtree
|
|
194
|
+
*
|
|
195
|
+
* index 0 2 3 4 5 6 7 -
|
|
196
|
+
* ------------------------------------- ----------------------------
|
|
197
|
+
* val 0 5 10 15 2 3 20 -
|
|
198
|
+
* nextIdx 5 2 3 7 6 2 0 -
|
|
199
|
+
* nextVal 2 10 15 20 3 5 0 -
|
|
200
|
+
*
|
|
201
|
+
* Inserting 19:
|
|
202
|
+
* 1. In this case we can find a low nullifier, but we are updating a low nullifier that has already been updated
|
|
203
|
+
* We can provide an inclusion proof of this intermediate tree state.
|
|
204
|
+
* 2. Update its pointers
|
|
205
|
+
* 3. Insert 19 into the pending subtree
|
|
206
|
+
*
|
|
207
|
+
* index 0 2 3 4 5 6 7 8
|
|
208
|
+
* ------------------------------------- ----------------------------
|
|
209
|
+
* val 0 5 10 15 2 3 20 19
|
|
210
|
+
* nextIdx 5 2 3 8 6 2 0 7
|
|
211
|
+
* nextVal 2 10 15 19 3 5 0 20
|
|
212
|
+
*
|
|
213
|
+
* Perform subtree insertion
|
|
214
|
+
*
|
|
215
|
+
* index 0 2 3 4 5 6 7 8
|
|
216
|
+
* ---------------------------------------------------------------------
|
|
217
|
+
* val 0 5 10 15 2 3 20 19
|
|
218
|
+
* nextIdx 5 2 3 8 6 2 0 7
|
|
219
|
+
* nextVal 2 10 15 19 3 5 0 20
|
|
220
|
+
*
|
|
221
|
+
* TODO: this implementation will change once the zero value is changed from h(0,0,0). Changes incoming over the next sprint
|
|
222
|
+
* @param leaves - Values to insert into the tree.
|
|
223
|
+
* @param treeHeight - Height of the tree.
|
|
224
|
+
* @param subtreeHeight - Height of the subtree.
|
|
225
|
+
* @returns The data for the leaves to be updated when inserting the new ones.
|
|
226
|
+
*/
|
|
227
|
+
batchInsert<TreeHeight extends number, SubtreeHeight extends number, SubtreeSiblingPathHeight extends number>(leaves: Buffer[], treeHeight: TreeHeight, subtreeHeight: SubtreeHeight): Promise<[LowLeafWitnessData<TreeHeight>[], SiblingPath<SubtreeSiblingPathHeight>] | [undefined, SiblingPath<SubtreeSiblingPathHeight>]>;
|
|
228
|
+
getSubtreeSiblingPath<SubtreeHeight extends number, SubtreeSiblingPathHeight extends number>(subtreeHeight: SubtreeHeight, includeUncommitted: boolean): Promise<SiblingPath<SubtreeSiblingPathHeight>>;
|
|
229
|
+
}
|
|
230
|
+
//# sourceMappingURL=standard_indexed_tree.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"standard_indexed_tree.d.ts","sourceRoot":"","sources":["../../src/standard_indexed_tree/standard_indexed_tree.ts"],"names":[],"mappings":";AAGA,OAAO,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AACtE,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAC3C,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAc1C;;GAEG;AACH,MAAM,WAAW,kBAAkB,CAAC,CAAC,SAAS,MAAM;IAClD;;OAEG;IACH,QAAQ,EAAE,QAAQ,CAAC;IACnB;;OAEG;IACH,WAAW,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC;IAC5B;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;CACf;AA4CD;;GAEG;AACH,qBAAa,mBAAoB,SAAQ,QAAS,YAAW,WAAW;IACtE,OAAO,CAAC,MAAM,CAAkB;IAChC,OAAO,CAAC,YAAY,CAAmC;IAEvD;;;;OAIG;IACU,YAAY,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IAM1D;;;OAGG;IACU,MAAM,IAAI,OAAO,CAAC,IAAI,CAAC;IAKpC;;;OAGG;IACU,QAAQ,IAAI,OAAO,CAAC,IAAI,CAAC;IAKtC;;;;;OAKG;IACI,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,kBAAkB,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC;IAM5F;;;;;OAKG;IACH,wBAAwB,CACtB,QAAQ,EAAE,MAAM,EAChB,kBAAkB,EAAE,OAAO,GAC1B;QACD;;WAEG;QACH,KAAK,EAAE,MAAM,CAAC;QACd;;WAEG;QACH,cAAc,EAAE,OAAO,CAAC;KACzB;IAuBD;;;;;OAKG;IACI,qBAAqB,CAAC,KAAK,EAAE,MAAM,EAAE,kBAAkB,EAAE,OAAO,GAAG,QAAQ,GAAG,SAAS;IAW9F;;;;OAIG;YACW,UAAU;IAqCxB;;;;OAIG;IACH,OAAO,CAAC,YAAY;IAapB;;;;OAIG;IACU,IAAI,CAAC,aAAa,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAWvD;;OAEG;IACU,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;IA0BxC;;OAEG;YACW,YAAY;IAY1B;;OAEG;IACH,OAAO,CAAC,iBAAiB;IAIzB;;;;OAIG;YAEW,WAAW;IAWzB;;;;OAIG;IAEU,UAAU,CAAC,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAcrE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA8GG;IACU,WAAW,CACtB,UAAU,SAAS,MAAM,EACzB,aAAa,SAAS,MAAM,EAC5B,wBAAwB,SAAS,MAAM,EAEvC,MAAM,EAAE,MAAM,EAAE,EAChB,UAAU,EAAE,UAAU,EACtB,aAAa,EAAE,aAAa,GAC3B,OAAO,CACN,CAAC,kBAAkB,CAAC,UAAU,CAAC,EAAE,EAAE,WAAW,CAAC,wBAAwB,CAAC,CAAC,GACzE,CAAC,SAAS,EAAE,WAAW,CAAC,wBAAwB,CAAC,CAAC,CACrD;IA6GK,qBAAqB,CAAC,aAAa,SAAS,MAAM,EAAE,wBAAwB,SAAS,MAAM,EAC/F,aAAa,EAAE,aAAa,EAC5B,kBAAkB,EAAE,OAAO,GAC1B,OAAO,CAAC,WAAW,CAAC,wBAAwB,CAAC,CAAC;CAOlD"}
|