@aastar/paymaster 0.16.7
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 +21 -0
- package/dist/core/src/abis/BLSAggregator.json +686 -0
- package/dist/core/src/abis/BLSValidator.json +42 -0
- package/dist/core/src/abis/DVTValidator.json +368 -0
- package/dist/core/src/abis/EntryPoint.json +1382 -0
- package/dist/core/src/abis/GToken.json +513 -0
- package/dist/core/src/abis/GTokenStaking.json +949 -0
- package/dist/core/src/abis/MySBT.json +1518 -0
- package/dist/core/src/abis/Paymaster.json +1143 -0
- package/dist/core/src/abis/PaymasterFactory.json +640 -0
- package/dist/core/src/abis/Registry.json +1942 -0
- package/dist/core/src/abis/ReputationSystem.json +699 -0
- package/dist/core/src/abis/SimpleAccount.json +560 -0
- package/dist/core/src/abis/SimpleAccountFactory.json +111 -0
- package/dist/core/src/abis/SuperPaymaster.json +1781 -0
- package/dist/core/src/abis/index.d.ts +1126 -0
- package/dist/core/src/abis/index.js +91 -0
- package/dist/core/src/abis/xPNTsFactory.json +718 -0
- package/dist/core/src/abis/xPNTsToken.json +1280 -0
- package/dist/core/src/actions/StateValidator.d.ts +68 -0
- package/dist/core/src/actions/StateValidator.js +187 -0
- package/dist/core/src/actions/account.d.ts +55 -0
- package/dist/core/src/actions/account.js +133 -0
- package/dist/core/src/actions/aggregator.d.ts +17 -0
- package/dist/core/src/actions/aggregator.js +31 -0
- package/dist/core/src/actions/dvt.d.ts +30 -0
- package/dist/core/src/actions/dvt.js +41 -0
- package/dist/core/src/actions/entryPoint.d.ts +90 -0
- package/dist/core/src/actions/entryPoint.js +211 -0
- package/dist/core/src/actions/factory.d.ts +215 -0
- package/dist/core/src/actions/factory.js +442 -0
- package/dist/core/src/actions/faucet.d.ts +48 -0
- package/dist/core/src/actions/faucet.js +337 -0
- package/dist/core/src/actions/gtokenExtended.d.ts +39 -0
- package/dist/core/src/actions/gtokenExtended.js +115 -0
- package/dist/core/src/actions/index.d.ts +15 -0
- package/dist/core/src/actions/index.js +17 -0
- package/dist/core/src/actions/paymasterV4.d.ts +170 -0
- package/dist/core/src/actions/paymasterV4.js +334 -0
- package/dist/core/src/actions/registry.d.ts +246 -0
- package/dist/core/src/actions/registry.js +667 -0
- package/dist/core/src/actions/reputation.d.ts +129 -0
- package/dist/core/src/actions/reputation.js +281 -0
- package/dist/core/src/actions/sbt.d.ts +191 -0
- package/dist/core/src/actions/sbt.js +533 -0
- package/dist/core/src/actions/staking.d.ts +132 -0
- package/dist/core/src/actions/staking.js +330 -0
- package/dist/core/src/actions/superPaymaster.d.ts +237 -0
- package/dist/core/src/actions/superPaymaster.js +644 -0
- package/dist/core/src/actions/tokens.d.ts +229 -0
- package/dist/core/src/actions/tokens.js +415 -0
- package/dist/core/src/branding.d.ts +30 -0
- package/dist/core/src/branding.js +30 -0
- package/dist/core/src/clients/BaseClient.d.ts +25 -0
- package/dist/core/src/clients/BaseClient.js +66 -0
- package/dist/core/src/clients/types.d.ts +60 -0
- package/dist/core/src/clients/types.js +1 -0
- package/dist/core/src/clients.d.ts +5 -0
- package/dist/core/src/clients.js +11 -0
- package/dist/core/src/communities.d.ts +52 -0
- package/dist/core/src/communities.js +73 -0
- package/dist/core/src/config/ContractConfigManager.d.ts +20 -0
- package/dist/core/src/config/ContractConfigManager.js +48 -0
- package/dist/core/src/constants.d.ts +88 -0
- package/dist/core/src/constants.js +125 -0
- package/dist/core/src/contract-addresses.d.ts +110 -0
- package/dist/core/src/contract-addresses.js +99 -0
- package/dist/core/src/contracts.d.ts +424 -0
- package/dist/core/src/contracts.js +343 -0
- package/dist/core/src/crypto/blsSigner.d.ts +64 -0
- package/dist/core/src/crypto/blsSigner.js +98 -0
- package/dist/core/src/crypto/index.d.ts +1 -0
- package/dist/core/src/crypto/index.js +1 -0
- package/dist/core/src/index.d.ts +21 -0
- package/dist/core/src/index.js +21 -0
- package/dist/core/src/networks.d.ts +127 -0
- package/dist/core/src/networks.js +118 -0
- package/dist/core/src/requirementChecker.d.ts +38 -0
- package/dist/core/src/requirementChecker.js +139 -0
- package/dist/core/src/roles.d.ts +204 -0
- package/dist/core/src/roles.js +211 -0
- package/dist/core/src/utils/validation.d.ts +24 -0
- package/dist/core/src/utils/validation.js +56 -0
- package/dist/paymaster/src/SuperPaymaster/index.d.ts +44 -0
- package/dist/paymaster/src/SuperPaymaster/index.js +133 -0
- package/dist/paymaster/src/V4/PaymasterClient.d.ts +79 -0
- package/dist/paymaster/src/V4/PaymasterClient.js +315 -0
- package/dist/paymaster/src/V4/PaymasterClient.test.d.ts +1 -0
- package/dist/paymaster/src/V4/PaymasterClient.test.js +80 -0
- package/dist/paymaster/src/V4/PaymasterOperator.d.ts +41 -0
- package/dist/paymaster/src/V4/PaymasterOperator.js +241 -0
- package/dist/paymaster/src/V4/PaymasterOperator.test.d.ts +1 -0
- package/dist/paymaster/src/V4/PaymasterOperator.test.js +66 -0
- package/dist/paymaster/src/V4/PaymasterUtils.d.ts +55 -0
- package/dist/paymaster/src/V4/PaymasterUtils.js +124 -0
- package/dist/paymaster/src/V4/PaymasterUtils.test.d.ts +1 -0
- package/dist/paymaster/src/V4/PaymasterUtils.test.js +43 -0
- package/dist/paymaster/src/V4/SuperPaymasterClient.d.ts +21 -0
- package/dist/paymaster/src/V4/SuperPaymasterClient.js +73 -0
- package/dist/paymaster/src/V4/SuperPaymasterClient.test.d.ts +1 -0
- package/dist/paymaster/src/V4/SuperPaymasterClient.test.js +53 -0
- package/dist/paymaster/src/V4/index.d.ts +4 -0
- package/dist/paymaster/src/V4/index.js +4 -0
- package/dist/paymaster/src/index.d.ts +2 -0
- package/dist/paymaster/src/index.js +4 -0
- package/package.json +26 -0
|
@@ -0,0 +1,1280 @@
|
|
|
1
|
+
{
|
|
2
|
+
"abi": [
|
|
3
|
+
{
|
|
4
|
+
"type": "constructor",
|
|
5
|
+
"inputs": [
|
|
6
|
+
{
|
|
7
|
+
"name": "name",
|
|
8
|
+
"type": "string",
|
|
9
|
+
"internalType": "string"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"name": "symbol",
|
|
13
|
+
"type": "string",
|
|
14
|
+
"internalType": "string"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"name": "_communityOwner",
|
|
18
|
+
"type": "address",
|
|
19
|
+
"internalType": "address"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"name": "_communityName",
|
|
23
|
+
"type": "string",
|
|
24
|
+
"internalType": "string"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "_communityENS",
|
|
28
|
+
"type": "string",
|
|
29
|
+
"internalType": "string"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "_exchangeRate",
|
|
33
|
+
"type": "uint256",
|
|
34
|
+
"internalType": "uint256"
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
"stateMutability": "nonpayable"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"type": "function",
|
|
41
|
+
"name": "DEFAULT_SPENDING_LIMIT_APNTS",
|
|
42
|
+
"inputs": [],
|
|
43
|
+
"outputs": [
|
|
44
|
+
{
|
|
45
|
+
"name": "",
|
|
46
|
+
"type": "uint256",
|
|
47
|
+
"internalType": "uint256"
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"stateMutability": "view"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"type": "function",
|
|
54
|
+
"name": "DOMAIN_SEPARATOR",
|
|
55
|
+
"inputs": [],
|
|
56
|
+
"outputs": [
|
|
57
|
+
{
|
|
58
|
+
"name": "",
|
|
59
|
+
"type": "bytes32",
|
|
60
|
+
"internalType": "bytes32"
|
|
61
|
+
}
|
|
62
|
+
],
|
|
63
|
+
"stateMutability": "view"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"type": "function",
|
|
67
|
+
"name": "FACTORY",
|
|
68
|
+
"inputs": [],
|
|
69
|
+
"outputs": [
|
|
70
|
+
{
|
|
71
|
+
"name": "",
|
|
72
|
+
"type": "address",
|
|
73
|
+
"internalType": "address"
|
|
74
|
+
}
|
|
75
|
+
],
|
|
76
|
+
"stateMutability": "view"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"type": "function",
|
|
80
|
+
"name": "SUPERPAYMASTER_ADDRESS",
|
|
81
|
+
"inputs": [],
|
|
82
|
+
"outputs": [
|
|
83
|
+
{
|
|
84
|
+
"name": "",
|
|
85
|
+
"type": "address",
|
|
86
|
+
"internalType": "address"
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
"stateMutability": "view"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"type": "function",
|
|
93
|
+
"name": "addAutoApprovedSpender",
|
|
94
|
+
"inputs": [
|
|
95
|
+
{
|
|
96
|
+
"name": "spender",
|
|
97
|
+
"type": "address",
|
|
98
|
+
"internalType": "address"
|
|
99
|
+
}
|
|
100
|
+
],
|
|
101
|
+
"outputs": [],
|
|
102
|
+
"stateMutability": "nonpayable"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"type": "function",
|
|
106
|
+
"name": "allowance",
|
|
107
|
+
"inputs": [
|
|
108
|
+
{
|
|
109
|
+
"name": "owner",
|
|
110
|
+
"type": "address",
|
|
111
|
+
"internalType": "address"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"name": "spender",
|
|
115
|
+
"type": "address",
|
|
116
|
+
"internalType": "address"
|
|
117
|
+
}
|
|
118
|
+
],
|
|
119
|
+
"outputs": [
|
|
120
|
+
{
|
|
121
|
+
"name": "",
|
|
122
|
+
"type": "uint256",
|
|
123
|
+
"internalType": "uint256"
|
|
124
|
+
}
|
|
125
|
+
],
|
|
126
|
+
"stateMutability": "view"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"type": "function",
|
|
130
|
+
"name": "approve",
|
|
131
|
+
"inputs": [
|
|
132
|
+
{
|
|
133
|
+
"name": "spender",
|
|
134
|
+
"type": "address",
|
|
135
|
+
"internalType": "address"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"name": "value",
|
|
139
|
+
"type": "uint256",
|
|
140
|
+
"internalType": "uint256"
|
|
141
|
+
}
|
|
142
|
+
],
|
|
143
|
+
"outputs": [
|
|
144
|
+
{
|
|
145
|
+
"name": "",
|
|
146
|
+
"type": "bool",
|
|
147
|
+
"internalType": "bool"
|
|
148
|
+
}
|
|
149
|
+
],
|
|
150
|
+
"stateMutability": "nonpayable"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"type": "function",
|
|
154
|
+
"name": "autoApprovedSpenders",
|
|
155
|
+
"inputs": [
|
|
156
|
+
{
|
|
157
|
+
"name": "",
|
|
158
|
+
"type": "address",
|
|
159
|
+
"internalType": "address"
|
|
160
|
+
}
|
|
161
|
+
],
|
|
162
|
+
"outputs": [
|
|
163
|
+
{
|
|
164
|
+
"name": "",
|
|
165
|
+
"type": "bool",
|
|
166
|
+
"internalType": "bool"
|
|
167
|
+
}
|
|
168
|
+
],
|
|
169
|
+
"stateMutability": "view"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"type": "function",
|
|
173
|
+
"name": "balanceOf",
|
|
174
|
+
"inputs": [
|
|
175
|
+
{
|
|
176
|
+
"name": "account",
|
|
177
|
+
"type": "address",
|
|
178
|
+
"internalType": "address"
|
|
179
|
+
}
|
|
180
|
+
],
|
|
181
|
+
"outputs": [
|
|
182
|
+
{
|
|
183
|
+
"name": "",
|
|
184
|
+
"type": "uint256",
|
|
185
|
+
"internalType": "uint256"
|
|
186
|
+
}
|
|
187
|
+
],
|
|
188
|
+
"stateMutability": "view"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"type": "function",
|
|
192
|
+
"name": "burn",
|
|
193
|
+
"inputs": [
|
|
194
|
+
{
|
|
195
|
+
"name": "amount",
|
|
196
|
+
"type": "uint256",
|
|
197
|
+
"internalType": "uint256"
|
|
198
|
+
}
|
|
199
|
+
],
|
|
200
|
+
"outputs": [],
|
|
201
|
+
"stateMutability": "nonpayable"
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"type": "function",
|
|
205
|
+
"name": "burn",
|
|
206
|
+
"inputs": [
|
|
207
|
+
{
|
|
208
|
+
"name": "from",
|
|
209
|
+
"type": "address",
|
|
210
|
+
"internalType": "address"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"name": "amount",
|
|
214
|
+
"type": "uint256",
|
|
215
|
+
"internalType": "uint256"
|
|
216
|
+
}
|
|
217
|
+
],
|
|
218
|
+
"outputs": [],
|
|
219
|
+
"stateMutability": "nonpayable"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"type": "function",
|
|
223
|
+
"name": "burnFromWithOpHash",
|
|
224
|
+
"inputs": [
|
|
225
|
+
{
|
|
226
|
+
"name": "from",
|
|
227
|
+
"type": "address",
|
|
228
|
+
"internalType": "address"
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"name": "amount",
|
|
232
|
+
"type": "uint256",
|
|
233
|
+
"internalType": "uint256"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"name": "userOpHash",
|
|
237
|
+
"type": "bytes32",
|
|
238
|
+
"internalType": "bytes32"
|
|
239
|
+
}
|
|
240
|
+
],
|
|
241
|
+
"outputs": [],
|
|
242
|
+
"stateMutability": "nonpayable"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"type": "function",
|
|
246
|
+
"name": "communityENS",
|
|
247
|
+
"inputs": [],
|
|
248
|
+
"outputs": [
|
|
249
|
+
{
|
|
250
|
+
"name": "",
|
|
251
|
+
"type": "string",
|
|
252
|
+
"internalType": "string"
|
|
253
|
+
}
|
|
254
|
+
],
|
|
255
|
+
"stateMutability": "view"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"type": "function",
|
|
259
|
+
"name": "communityName",
|
|
260
|
+
"inputs": [],
|
|
261
|
+
"outputs": [
|
|
262
|
+
{
|
|
263
|
+
"name": "",
|
|
264
|
+
"type": "string",
|
|
265
|
+
"internalType": "string"
|
|
266
|
+
}
|
|
267
|
+
],
|
|
268
|
+
"stateMutability": "view"
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"type": "function",
|
|
272
|
+
"name": "communityOwner",
|
|
273
|
+
"inputs": [],
|
|
274
|
+
"outputs": [
|
|
275
|
+
{
|
|
276
|
+
"name": "",
|
|
277
|
+
"type": "address",
|
|
278
|
+
"internalType": "address"
|
|
279
|
+
}
|
|
280
|
+
],
|
|
281
|
+
"stateMutability": "view"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"type": "function",
|
|
285
|
+
"name": "cumulativeSpent",
|
|
286
|
+
"inputs": [
|
|
287
|
+
{
|
|
288
|
+
"name": "",
|
|
289
|
+
"type": "address",
|
|
290
|
+
"internalType": "address"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"name": "",
|
|
294
|
+
"type": "address",
|
|
295
|
+
"internalType": "address"
|
|
296
|
+
}
|
|
297
|
+
],
|
|
298
|
+
"outputs": [
|
|
299
|
+
{
|
|
300
|
+
"name": "",
|
|
301
|
+
"type": "uint256",
|
|
302
|
+
"internalType": "uint256"
|
|
303
|
+
}
|
|
304
|
+
],
|
|
305
|
+
"stateMutability": "view"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"type": "function",
|
|
309
|
+
"name": "debts",
|
|
310
|
+
"inputs": [
|
|
311
|
+
{
|
|
312
|
+
"name": "",
|
|
313
|
+
"type": "address",
|
|
314
|
+
"internalType": "address"
|
|
315
|
+
}
|
|
316
|
+
],
|
|
317
|
+
"outputs": [
|
|
318
|
+
{
|
|
319
|
+
"name": "",
|
|
320
|
+
"type": "uint256",
|
|
321
|
+
"internalType": "uint256"
|
|
322
|
+
}
|
|
323
|
+
],
|
|
324
|
+
"stateMutability": "view"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"type": "function",
|
|
328
|
+
"name": "decimals",
|
|
329
|
+
"inputs": [],
|
|
330
|
+
"outputs": [
|
|
331
|
+
{
|
|
332
|
+
"name": "",
|
|
333
|
+
"type": "uint8",
|
|
334
|
+
"internalType": "uint8"
|
|
335
|
+
}
|
|
336
|
+
],
|
|
337
|
+
"stateMutability": "view"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"type": "function",
|
|
341
|
+
"name": "eip712Domain",
|
|
342
|
+
"inputs": [],
|
|
343
|
+
"outputs": [
|
|
344
|
+
{
|
|
345
|
+
"name": "fields",
|
|
346
|
+
"type": "bytes1",
|
|
347
|
+
"internalType": "bytes1"
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"name": "name",
|
|
351
|
+
"type": "string",
|
|
352
|
+
"internalType": "string"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"name": "version",
|
|
356
|
+
"type": "string",
|
|
357
|
+
"internalType": "string"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"name": "chainId",
|
|
361
|
+
"type": "uint256",
|
|
362
|
+
"internalType": "uint256"
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"name": "verifyingContract",
|
|
366
|
+
"type": "address",
|
|
367
|
+
"internalType": "address"
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"name": "salt",
|
|
371
|
+
"type": "bytes32",
|
|
372
|
+
"internalType": "bytes32"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"name": "extensions",
|
|
376
|
+
"type": "uint256[]",
|
|
377
|
+
"internalType": "uint256[]"
|
|
378
|
+
}
|
|
379
|
+
],
|
|
380
|
+
"stateMutability": "view"
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"type": "function",
|
|
384
|
+
"name": "exchangeRate",
|
|
385
|
+
"inputs": [],
|
|
386
|
+
"outputs": [
|
|
387
|
+
{
|
|
388
|
+
"name": "",
|
|
389
|
+
"type": "uint256",
|
|
390
|
+
"internalType": "uint256"
|
|
391
|
+
}
|
|
392
|
+
],
|
|
393
|
+
"stateMutability": "view"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"type": "function",
|
|
397
|
+
"name": "getDebt",
|
|
398
|
+
"inputs": [
|
|
399
|
+
{
|
|
400
|
+
"name": "user",
|
|
401
|
+
"type": "address",
|
|
402
|
+
"internalType": "address"
|
|
403
|
+
}
|
|
404
|
+
],
|
|
405
|
+
"outputs": [
|
|
406
|
+
{
|
|
407
|
+
"name": "",
|
|
408
|
+
"type": "uint256",
|
|
409
|
+
"internalType": "uint256"
|
|
410
|
+
}
|
|
411
|
+
],
|
|
412
|
+
"stateMutability": "view"
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"type": "function",
|
|
416
|
+
"name": "getDefaultSpendingLimitXPNTs",
|
|
417
|
+
"inputs": [],
|
|
418
|
+
"outputs": [
|
|
419
|
+
{
|
|
420
|
+
"name": "",
|
|
421
|
+
"type": "uint256",
|
|
422
|
+
"internalType": "uint256"
|
|
423
|
+
}
|
|
424
|
+
],
|
|
425
|
+
"stateMutability": "view"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"type": "function",
|
|
429
|
+
"name": "getMetadata",
|
|
430
|
+
"inputs": [],
|
|
431
|
+
"outputs": [
|
|
432
|
+
{
|
|
433
|
+
"name": "_name",
|
|
434
|
+
"type": "string",
|
|
435
|
+
"internalType": "string"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"name": "_symbol",
|
|
439
|
+
"type": "string",
|
|
440
|
+
"internalType": "string"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"name": "_communityName",
|
|
444
|
+
"type": "string",
|
|
445
|
+
"internalType": "string"
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
"name": "_communityENS",
|
|
449
|
+
"type": "string",
|
|
450
|
+
"internalType": "string"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"name": "_communityOwner",
|
|
454
|
+
"type": "address",
|
|
455
|
+
"internalType": "address"
|
|
456
|
+
}
|
|
457
|
+
],
|
|
458
|
+
"stateMutability": "view"
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"type": "function",
|
|
462
|
+
"name": "mint",
|
|
463
|
+
"inputs": [
|
|
464
|
+
{
|
|
465
|
+
"name": "to",
|
|
466
|
+
"type": "address",
|
|
467
|
+
"internalType": "address"
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
"name": "amount",
|
|
471
|
+
"type": "uint256",
|
|
472
|
+
"internalType": "uint256"
|
|
473
|
+
}
|
|
474
|
+
],
|
|
475
|
+
"outputs": [],
|
|
476
|
+
"stateMutability": "nonpayable"
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
"type": "function",
|
|
480
|
+
"name": "name",
|
|
481
|
+
"inputs": [],
|
|
482
|
+
"outputs": [
|
|
483
|
+
{
|
|
484
|
+
"name": "",
|
|
485
|
+
"type": "string",
|
|
486
|
+
"internalType": "string"
|
|
487
|
+
}
|
|
488
|
+
],
|
|
489
|
+
"stateMutability": "view"
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"type": "function",
|
|
493
|
+
"name": "needsApproval",
|
|
494
|
+
"inputs": [
|
|
495
|
+
{
|
|
496
|
+
"name": "owner",
|
|
497
|
+
"type": "address",
|
|
498
|
+
"internalType": "address"
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"name": "spender",
|
|
502
|
+
"type": "address",
|
|
503
|
+
"internalType": "address"
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
"name": "amount",
|
|
507
|
+
"type": "uint256",
|
|
508
|
+
"internalType": "uint256"
|
|
509
|
+
}
|
|
510
|
+
],
|
|
511
|
+
"outputs": [
|
|
512
|
+
{
|
|
513
|
+
"name": "",
|
|
514
|
+
"type": "bool",
|
|
515
|
+
"internalType": "bool"
|
|
516
|
+
}
|
|
517
|
+
],
|
|
518
|
+
"stateMutability": "view"
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"type": "function",
|
|
522
|
+
"name": "nonces",
|
|
523
|
+
"inputs": [
|
|
524
|
+
{
|
|
525
|
+
"name": "owner",
|
|
526
|
+
"type": "address",
|
|
527
|
+
"internalType": "address"
|
|
528
|
+
}
|
|
529
|
+
],
|
|
530
|
+
"outputs": [
|
|
531
|
+
{
|
|
532
|
+
"name": "",
|
|
533
|
+
"type": "uint256",
|
|
534
|
+
"internalType": "uint256"
|
|
535
|
+
}
|
|
536
|
+
],
|
|
537
|
+
"stateMutability": "view"
|
|
538
|
+
},
|
|
539
|
+
{
|
|
540
|
+
"type": "function",
|
|
541
|
+
"name": "permit",
|
|
542
|
+
"inputs": [
|
|
543
|
+
{
|
|
544
|
+
"name": "owner",
|
|
545
|
+
"type": "address",
|
|
546
|
+
"internalType": "address"
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"name": "spender",
|
|
550
|
+
"type": "address",
|
|
551
|
+
"internalType": "address"
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"name": "value",
|
|
555
|
+
"type": "uint256",
|
|
556
|
+
"internalType": "uint256"
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
"name": "deadline",
|
|
560
|
+
"type": "uint256",
|
|
561
|
+
"internalType": "uint256"
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"name": "v",
|
|
565
|
+
"type": "uint8",
|
|
566
|
+
"internalType": "uint8"
|
|
567
|
+
},
|
|
568
|
+
{
|
|
569
|
+
"name": "r",
|
|
570
|
+
"type": "bytes32",
|
|
571
|
+
"internalType": "bytes32"
|
|
572
|
+
},
|
|
573
|
+
{
|
|
574
|
+
"name": "s",
|
|
575
|
+
"type": "bytes32",
|
|
576
|
+
"internalType": "bytes32"
|
|
577
|
+
}
|
|
578
|
+
],
|
|
579
|
+
"outputs": [],
|
|
580
|
+
"stateMutability": "nonpayable"
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"type": "function",
|
|
584
|
+
"name": "recordDebt",
|
|
585
|
+
"inputs": [
|
|
586
|
+
{
|
|
587
|
+
"name": "user",
|
|
588
|
+
"type": "address",
|
|
589
|
+
"internalType": "address"
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
"name": "amountXPNTs",
|
|
593
|
+
"type": "uint256",
|
|
594
|
+
"internalType": "uint256"
|
|
595
|
+
}
|
|
596
|
+
],
|
|
597
|
+
"outputs": [],
|
|
598
|
+
"stateMutability": "nonpayable"
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
"type": "function",
|
|
602
|
+
"name": "removeAutoApprovedSpender",
|
|
603
|
+
"inputs": [
|
|
604
|
+
{
|
|
605
|
+
"name": "spender",
|
|
606
|
+
"type": "address",
|
|
607
|
+
"internalType": "address"
|
|
608
|
+
}
|
|
609
|
+
],
|
|
610
|
+
"outputs": [],
|
|
611
|
+
"stateMutability": "nonpayable"
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
"type": "function",
|
|
615
|
+
"name": "repayDebt",
|
|
616
|
+
"inputs": [
|
|
617
|
+
{
|
|
618
|
+
"name": "amount",
|
|
619
|
+
"type": "uint256",
|
|
620
|
+
"internalType": "uint256"
|
|
621
|
+
}
|
|
622
|
+
],
|
|
623
|
+
"outputs": [],
|
|
624
|
+
"stateMutability": "nonpayable"
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
"type": "function",
|
|
628
|
+
"name": "setPaymasterLimit",
|
|
629
|
+
"inputs": [
|
|
630
|
+
{
|
|
631
|
+
"name": "spender",
|
|
632
|
+
"type": "address",
|
|
633
|
+
"internalType": "address"
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"name": "limit",
|
|
637
|
+
"type": "uint256",
|
|
638
|
+
"internalType": "uint256"
|
|
639
|
+
}
|
|
640
|
+
],
|
|
641
|
+
"outputs": [],
|
|
642
|
+
"stateMutability": "nonpayable"
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
"type": "function",
|
|
646
|
+
"name": "setSuperPaymasterAddress",
|
|
647
|
+
"inputs": [
|
|
648
|
+
{
|
|
649
|
+
"name": "_spAddress",
|
|
650
|
+
"type": "address",
|
|
651
|
+
"internalType": "address"
|
|
652
|
+
}
|
|
653
|
+
],
|
|
654
|
+
"outputs": [],
|
|
655
|
+
"stateMutability": "nonpayable"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"type": "function",
|
|
659
|
+
"name": "spendingLimits",
|
|
660
|
+
"inputs": [
|
|
661
|
+
{
|
|
662
|
+
"name": "",
|
|
663
|
+
"type": "address",
|
|
664
|
+
"internalType": "address"
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
"name": "",
|
|
668
|
+
"type": "address",
|
|
669
|
+
"internalType": "address"
|
|
670
|
+
}
|
|
671
|
+
],
|
|
672
|
+
"outputs": [
|
|
673
|
+
{
|
|
674
|
+
"name": "",
|
|
675
|
+
"type": "uint256",
|
|
676
|
+
"internalType": "uint256"
|
|
677
|
+
}
|
|
678
|
+
],
|
|
679
|
+
"stateMutability": "view"
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"type": "function",
|
|
683
|
+
"name": "symbol",
|
|
684
|
+
"inputs": [],
|
|
685
|
+
"outputs": [
|
|
686
|
+
{
|
|
687
|
+
"name": "",
|
|
688
|
+
"type": "string",
|
|
689
|
+
"internalType": "string"
|
|
690
|
+
}
|
|
691
|
+
],
|
|
692
|
+
"stateMutability": "view"
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"type": "function",
|
|
696
|
+
"name": "totalSupply",
|
|
697
|
+
"inputs": [],
|
|
698
|
+
"outputs": [
|
|
699
|
+
{
|
|
700
|
+
"name": "",
|
|
701
|
+
"type": "uint256",
|
|
702
|
+
"internalType": "uint256"
|
|
703
|
+
}
|
|
704
|
+
],
|
|
705
|
+
"stateMutability": "view"
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"type": "function",
|
|
709
|
+
"name": "transfer",
|
|
710
|
+
"inputs": [
|
|
711
|
+
{
|
|
712
|
+
"name": "to",
|
|
713
|
+
"type": "address",
|
|
714
|
+
"internalType": "address"
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"name": "value",
|
|
718
|
+
"type": "uint256",
|
|
719
|
+
"internalType": "uint256"
|
|
720
|
+
}
|
|
721
|
+
],
|
|
722
|
+
"outputs": [
|
|
723
|
+
{
|
|
724
|
+
"name": "",
|
|
725
|
+
"type": "bool",
|
|
726
|
+
"internalType": "bool"
|
|
727
|
+
}
|
|
728
|
+
],
|
|
729
|
+
"stateMutability": "nonpayable"
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"type": "function",
|
|
733
|
+
"name": "transferAndCall",
|
|
734
|
+
"inputs": [
|
|
735
|
+
{
|
|
736
|
+
"name": "to",
|
|
737
|
+
"type": "address",
|
|
738
|
+
"internalType": "address"
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
"name": "amount",
|
|
742
|
+
"type": "uint256",
|
|
743
|
+
"internalType": "uint256"
|
|
744
|
+
}
|
|
745
|
+
],
|
|
746
|
+
"outputs": [
|
|
747
|
+
{
|
|
748
|
+
"name": "",
|
|
749
|
+
"type": "bool",
|
|
750
|
+
"internalType": "bool"
|
|
751
|
+
}
|
|
752
|
+
],
|
|
753
|
+
"stateMutability": "nonpayable"
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
"type": "function",
|
|
757
|
+
"name": "transferAndCall",
|
|
758
|
+
"inputs": [
|
|
759
|
+
{
|
|
760
|
+
"name": "to",
|
|
761
|
+
"type": "address",
|
|
762
|
+
"internalType": "address"
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
"name": "amount",
|
|
766
|
+
"type": "uint256",
|
|
767
|
+
"internalType": "uint256"
|
|
768
|
+
},
|
|
769
|
+
{
|
|
770
|
+
"name": "data",
|
|
771
|
+
"type": "bytes",
|
|
772
|
+
"internalType": "bytes"
|
|
773
|
+
}
|
|
774
|
+
],
|
|
775
|
+
"outputs": [
|
|
776
|
+
{
|
|
777
|
+
"name": "",
|
|
778
|
+
"type": "bool",
|
|
779
|
+
"internalType": "bool"
|
|
780
|
+
}
|
|
781
|
+
],
|
|
782
|
+
"stateMutability": "nonpayable"
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
"type": "function",
|
|
786
|
+
"name": "transferCommunityOwnership",
|
|
787
|
+
"inputs": [
|
|
788
|
+
{
|
|
789
|
+
"name": "newOwner",
|
|
790
|
+
"type": "address",
|
|
791
|
+
"internalType": "address"
|
|
792
|
+
}
|
|
793
|
+
],
|
|
794
|
+
"outputs": [],
|
|
795
|
+
"stateMutability": "nonpayable"
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
"type": "function",
|
|
799
|
+
"name": "transferFrom",
|
|
800
|
+
"inputs": [
|
|
801
|
+
{
|
|
802
|
+
"name": "from",
|
|
803
|
+
"type": "address",
|
|
804
|
+
"internalType": "address"
|
|
805
|
+
},
|
|
806
|
+
{
|
|
807
|
+
"name": "to",
|
|
808
|
+
"type": "address",
|
|
809
|
+
"internalType": "address"
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
"name": "value",
|
|
813
|
+
"type": "uint256",
|
|
814
|
+
"internalType": "uint256"
|
|
815
|
+
}
|
|
816
|
+
],
|
|
817
|
+
"outputs": [
|
|
818
|
+
{
|
|
819
|
+
"name": "",
|
|
820
|
+
"type": "bool",
|
|
821
|
+
"internalType": "bool"
|
|
822
|
+
}
|
|
823
|
+
],
|
|
824
|
+
"stateMutability": "nonpayable"
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
"type": "function",
|
|
828
|
+
"name": "updateExchangeRate",
|
|
829
|
+
"inputs": [
|
|
830
|
+
{
|
|
831
|
+
"name": "newRate",
|
|
832
|
+
"type": "uint256",
|
|
833
|
+
"internalType": "uint256"
|
|
834
|
+
}
|
|
835
|
+
],
|
|
836
|
+
"outputs": [],
|
|
837
|
+
"stateMutability": "nonpayable"
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"type": "function",
|
|
841
|
+
"name": "usedOpHashes",
|
|
842
|
+
"inputs": [
|
|
843
|
+
{
|
|
844
|
+
"name": "",
|
|
845
|
+
"type": "bytes32",
|
|
846
|
+
"internalType": "bytes32"
|
|
847
|
+
}
|
|
848
|
+
],
|
|
849
|
+
"outputs": [
|
|
850
|
+
{
|
|
851
|
+
"name": "",
|
|
852
|
+
"type": "bool",
|
|
853
|
+
"internalType": "bool"
|
|
854
|
+
}
|
|
855
|
+
],
|
|
856
|
+
"stateMutability": "view"
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
"type": "function",
|
|
860
|
+
"name": "version",
|
|
861
|
+
"inputs": [],
|
|
862
|
+
"outputs": [
|
|
863
|
+
{
|
|
864
|
+
"name": "",
|
|
865
|
+
"type": "string",
|
|
866
|
+
"internalType": "string"
|
|
867
|
+
}
|
|
868
|
+
],
|
|
869
|
+
"stateMutability": "pure"
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
"type": "event",
|
|
873
|
+
"name": "Approval",
|
|
874
|
+
"inputs": [
|
|
875
|
+
{
|
|
876
|
+
"name": "owner",
|
|
877
|
+
"type": "address",
|
|
878
|
+
"indexed": true,
|
|
879
|
+
"internalType": "address"
|
|
880
|
+
},
|
|
881
|
+
{
|
|
882
|
+
"name": "spender",
|
|
883
|
+
"type": "address",
|
|
884
|
+
"indexed": true,
|
|
885
|
+
"internalType": "address"
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
"name": "value",
|
|
889
|
+
"type": "uint256",
|
|
890
|
+
"indexed": false,
|
|
891
|
+
"internalType": "uint256"
|
|
892
|
+
}
|
|
893
|
+
],
|
|
894
|
+
"anonymous": false
|
|
895
|
+
},
|
|
896
|
+
{
|
|
897
|
+
"type": "event",
|
|
898
|
+
"name": "AutoApprovedSpenderAdded",
|
|
899
|
+
"inputs": [
|
|
900
|
+
{
|
|
901
|
+
"name": "spender",
|
|
902
|
+
"type": "address",
|
|
903
|
+
"indexed": true,
|
|
904
|
+
"internalType": "address"
|
|
905
|
+
}
|
|
906
|
+
],
|
|
907
|
+
"anonymous": false
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
"type": "event",
|
|
911
|
+
"name": "AutoApprovedSpenderRemoved",
|
|
912
|
+
"inputs": [
|
|
913
|
+
{
|
|
914
|
+
"name": "spender",
|
|
915
|
+
"type": "address",
|
|
916
|
+
"indexed": true,
|
|
917
|
+
"internalType": "address"
|
|
918
|
+
}
|
|
919
|
+
],
|
|
920
|
+
"anonymous": false
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"type": "event",
|
|
924
|
+
"name": "CommunityOwnerUpdated",
|
|
925
|
+
"inputs": [
|
|
926
|
+
{
|
|
927
|
+
"name": "oldOwner",
|
|
928
|
+
"type": "address",
|
|
929
|
+
"indexed": true,
|
|
930
|
+
"internalType": "address"
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
"name": "newOwner",
|
|
934
|
+
"type": "address",
|
|
935
|
+
"indexed": true,
|
|
936
|
+
"internalType": "address"
|
|
937
|
+
}
|
|
938
|
+
],
|
|
939
|
+
"anonymous": false
|
|
940
|
+
},
|
|
941
|
+
{
|
|
942
|
+
"type": "event",
|
|
943
|
+
"name": "DebtRecorded",
|
|
944
|
+
"inputs": [
|
|
945
|
+
{
|
|
946
|
+
"name": "user",
|
|
947
|
+
"type": "address",
|
|
948
|
+
"indexed": true,
|
|
949
|
+
"internalType": "address"
|
|
950
|
+
},
|
|
951
|
+
{
|
|
952
|
+
"name": "amount",
|
|
953
|
+
"type": "uint256",
|
|
954
|
+
"indexed": false,
|
|
955
|
+
"internalType": "uint256"
|
|
956
|
+
}
|
|
957
|
+
],
|
|
958
|
+
"anonymous": false
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
"type": "event",
|
|
962
|
+
"name": "DebtRepaid",
|
|
963
|
+
"inputs": [
|
|
964
|
+
{
|
|
965
|
+
"name": "user",
|
|
966
|
+
"type": "address",
|
|
967
|
+
"indexed": true,
|
|
968
|
+
"internalType": "address"
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
"name": "amountRepaid",
|
|
972
|
+
"type": "uint256",
|
|
973
|
+
"indexed": false,
|
|
974
|
+
"internalType": "uint256"
|
|
975
|
+
},
|
|
976
|
+
{
|
|
977
|
+
"name": "remainingDebt",
|
|
978
|
+
"type": "uint256",
|
|
979
|
+
"indexed": false,
|
|
980
|
+
"internalType": "uint256"
|
|
981
|
+
}
|
|
982
|
+
],
|
|
983
|
+
"anonymous": false
|
|
984
|
+
},
|
|
985
|
+
{
|
|
986
|
+
"type": "event",
|
|
987
|
+
"name": "EIP712DomainChanged",
|
|
988
|
+
"inputs": [],
|
|
989
|
+
"anonymous": false
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
"type": "event",
|
|
993
|
+
"name": "ExchangeRateUpdated",
|
|
994
|
+
"inputs": [
|
|
995
|
+
{
|
|
996
|
+
"name": "oldRate",
|
|
997
|
+
"type": "uint256",
|
|
998
|
+
"indexed": false,
|
|
999
|
+
"internalType": "uint256"
|
|
1000
|
+
},
|
|
1001
|
+
{
|
|
1002
|
+
"name": "newRate",
|
|
1003
|
+
"type": "uint256",
|
|
1004
|
+
"indexed": false,
|
|
1005
|
+
"internalType": "uint256"
|
|
1006
|
+
}
|
|
1007
|
+
],
|
|
1008
|
+
"anonymous": false
|
|
1009
|
+
},
|
|
1010
|
+
{
|
|
1011
|
+
"type": "event",
|
|
1012
|
+
"name": "SpendingLimitUpdated",
|
|
1013
|
+
"inputs": [
|
|
1014
|
+
{
|
|
1015
|
+
"name": "user",
|
|
1016
|
+
"type": "address",
|
|
1017
|
+
"indexed": true,
|
|
1018
|
+
"internalType": "address"
|
|
1019
|
+
},
|
|
1020
|
+
{
|
|
1021
|
+
"name": "spender",
|
|
1022
|
+
"type": "address",
|
|
1023
|
+
"indexed": true,
|
|
1024
|
+
"internalType": "address"
|
|
1025
|
+
},
|
|
1026
|
+
{
|
|
1027
|
+
"name": "newLimit",
|
|
1028
|
+
"type": "uint256",
|
|
1029
|
+
"indexed": false,
|
|
1030
|
+
"internalType": "uint256"
|
|
1031
|
+
}
|
|
1032
|
+
],
|
|
1033
|
+
"anonymous": false
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
"type": "event",
|
|
1037
|
+
"name": "SuperPaymasterAddressUpdated",
|
|
1038
|
+
"inputs": [
|
|
1039
|
+
{
|
|
1040
|
+
"name": "newSuperPaymaster",
|
|
1041
|
+
"type": "address",
|
|
1042
|
+
"indexed": true,
|
|
1043
|
+
"internalType": "address"
|
|
1044
|
+
}
|
|
1045
|
+
],
|
|
1046
|
+
"anonymous": false
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
"type": "event",
|
|
1050
|
+
"name": "Transfer",
|
|
1051
|
+
"inputs": [
|
|
1052
|
+
{
|
|
1053
|
+
"name": "from",
|
|
1054
|
+
"type": "address",
|
|
1055
|
+
"indexed": true,
|
|
1056
|
+
"internalType": "address"
|
|
1057
|
+
},
|
|
1058
|
+
{
|
|
1059
|
+
"name": "to",
|
|
1060
|
+
"type": "address",
|
|
1061
|
+
"indexed": true,
|
|
1062
|
+
"internalType": "address"
|
|
1063
|
+
},
|
|
1064
|
+
{
|
|
1065
|
+
"name": "value",
|
|
1066
|
+
"type": "uint256",
|
|
1067
|
+
"indexed": false,
|
|
1068
|
+
"internalType": "uint256"
|
|
1069
|
+
}
|
|
1070
|
+
],
|
|
1071
|
+
"anonymous": false
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
"type": "error",
|
|
1075
|
+
"name": "ECDSAInvalidSignature",
|
|
1076
|
+
"inputs": []
|
|
1077
|
+
},
|
|
1078
|
+
{
|
|
1079
|
+
"type": "error",
|
|
1080
|
+
"name": "ECDSAInvalidSignatureLength",
|
|
1081
|
+
"inputs": [
|
|
1082
|
+
{
|
|
1083
|
+
"name": "length",
|
|
1084
|
+
"type": "uint256",
|
|
1085
|
+
"internalType": "uint256"
|
|
1086
|
+
}
|
|
1087
|
+
]
|
|
1088
|
+
},
|
|
1089
|
+
{
|
|
1090
|
+
"type": "error",
|
|
1091
|
+
"name": "ECDSAInvalidSignatureS",
|
|
1092
|
+
"inputs": [
|
|
1093
|
+
{
|
|
1094
|
+
"name": "s",
|
|
1095
|
+
"type": "bytes32",
|
|
1096
|
+
"internalType": "bytes32"
|
|
1097
|
+
}
|
|
1098
|
+
]
|
|
1099
|
+
},
|
|
1100
|
+
{
|
|
1101
|
+
"type": "error",
|
|
1102
|
+
"name": "ERC20InsufficientAllowance",
|
|
1103
|
+
"inputs": [
|
|
1104
|
+
{
|
|
1105
|
+
"name": "spender",
|
|
1106
|
+
"type": "address",
|
|
1107
|
+
"internalType": "address"
|
|
1108
|
+
},
|
|
1109
|
+
{
|
|
1110
|
+
"name": "allowance",
|
|
1111
|
+
"type": "uint256",
|
|
1112
|
+
"internalType": "uint256"
|
|
1113
|
+
},
|
|
1114
|
+
{
|
|
1115
|
+
"name": "needed",
|
|
1116
|
+
"type": "uint256",
|
|
1117
|
+
"internalType": "uint256"
|
|
1118
|
+
}
|
|
1119
|
+
]
|
|
1120
|
+
},
|
|
1121
|
+
{
|
|
1122
|
+
"type": "error",
|
|
1123
|
+
"name": "ERC20InsufficientBalance",
|
|
1124
|
+
"inputs": [
|
|
1125
|
+
{
|
|
1126
|
+
"name": "sender",
|
|
1127
|
+
"type": "address",
|
|
1128
|
+
"internalType": "address"
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
"name": "balance",
|
|
1132
|
+
"type": "uint256",
|
|
1133
|
+
"internalType": "uint256"
|
|
1134
|
+
},
|
|
1135
|
+
{
|
|
1136
|
+
"name": "needed",
|
|
1137
|
+
"type": "uint256",
|
|
1138
|
+
"internalType": "uint256"
|
|
1139
|
+
}
|
|
1140
|
+
]
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
"type": "error",
|
|
1144
|
+
"name": "ERC20InvalidApprover",
|
|
1145
|
+
"inputs": [
|
|
1146
|
+
{
|
|
1147
|
+
"name": "approver",
|
|
1148
|
+
"type": "address",
|
|
1149
|
+
"internalType": "address"
|
|
1150
|
+
}
|
|
1151
|
+
]
|
|
1152
|
+
},
|
|
1153
|
+
{
|
|
1154
|
+
"type": "error",
|
|
1155
|
+
"name": "ERC20InvalidReceiver",
|
|
1156
|
+
"inputs": [
|
|
1157
|
+
{
|
|
1158
|
+
"name": "receiver",
|
|
1159
|
+
"type": "address",
|
|
1160
|
+
"internalType": "address"
|
|
1161
|
+
}
|
|
1162
|
+
]
|
|
1163
|
+
},
|
|
1164
|
+
{
|
|
1165
|
+
"type": "error",
|
|
1166
|
+
"name": "ERC20InvalidSender",
|
|
1167
|
+
"inputs": [
|
|
1168
|
+
{
|
|
1169
|
+
"name": "sender",
|
|
1170
|
+
"type": "address",
|
|
1171
|
+
"internalType": "address"
|
|
1172
|
+
}
|
|
1173
|
+
]
|
|
1174
|
+
},
|
|
1175
|
+
{
|
|
1176
|
+
"type": "error",
|
|
1177
|
+
"name": "ERC20InvalidSpender",
|
|
1178
|
+
"inputs": [
|
|
1179
|
+
{
|
|
1180
|
+
"name": "spender",
|
|
1181
|
+
"type": "address",
|
|
1182
|
+
"internalType": "address"
|
|
1183
|
+
}
|
|
1184
|
+
]
|
|
1185
|
+
},
|
|
1186
|
+
{
|
|
1187
|
+
"type": "error",
|
|
1188
|
+
"name": "ERC2612ExpiredSignature",
|
|
1189
|
+
"inputs": [
|
|
1190
|
+
{
|
|
1191
|
+
"name": "deadline",
|
|
1192
|
+
"type": "uint256",
|
|
1193
|
+
"internalType": "uint256"
|
|
1194
|
+
}
|
|
1195
|
+
]
|
|
1196
|
+
},
|
|
1197
|
+
{
|
|
1198
|
+
"type": "error",
|
|
1199
|
+
"name": "ERC2612InvalidSigner",
|
|
1200
|
+
"inputs": [
|
|
1201
|
+
{
|
|
1202
|
+
"name": "signer",
|
|
1203
|
+
"type": "address",
|
|
1204
|
+
"internalType": "address"
|
|
1205
|
+
},
|
|
1206
|
+
{
|
|
1207
|
+
"name": "owner",
|
|
1208
|
+
"type": "address",
|
|
1209
|
+
"internalType": "address"
|
|
1210
|
+
}
|
|
1211
|
+
]
|
|
1212
|
+
},
|
|
1213
|
+
{
|
|
1214
|
+
"type": "error",
|
|
1215
|
+
"name": "InvalidAccountNonce",
|
|
1216
|
+
"inputs": [
|
|
1217
|
+
{
|
|
1218
|
+
"name": "account",
|
|
1219
|
+
"type": "address",
|
|
1220
|
+
"internalType": "address"
|
|
1221
|
+
},
|
|
1222
|
+
{
|
|
1223
|
+
"name": "currentNonce",
|
|
1224
|
+
"type": "uint256",
|
|
1225
|
+
"internalType": "uint256"
|
|
1226
|
+
}
|
|
1227
|
+
]
|
|
1228
|
+
},
|
|
1229
|
+
{
|
|
1230
|
+
"type": "error",
|
|
1231
|
+
"name": "InvalidAddress",
|
|
1232
|
+
"inputs": [
|
|
1233
|
+
{
|
|
1234
|
+
"name": "addr",
|
|
1235
|
+
"type": "address",
|
|
1236
|
+
"internalType": "address"
|
|
1237
|
+
}
|
|
1238
|
+
]
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
"type": "error",
|
|
1242
|
+
"name": "InvalidShortString",
|
|
1243
|
+
"inputs": []
|
|
1244
|
+
},
|
|
1245
|
+
{
|
|
1246
|
+
"type": "error",
|
|
1247
|
+
"name": "OperationAlreadyProcessed",
|
|
1248
|
+
"inputs": [
|
|
1249
|
+
{
|
|
1250
|
+
"name": "userOpHash",
|
|
1251
|
+
"type": "bytes32",
|
|
1252
|
+
"internalType": "bytes32"
|
|
1253
|
+
}
|
|
1254
|
+
]
|
|
1255
|
+
},
|
|
1256
|
+
{
|
|
1257
|
+
"type": "error",
|
|
1258
|
+
"name": "StringTooLong",
|
|
1259
|
+
"inputs": [
|
|
1260
|
+
{
|
|
1261
|
+
"name": "str",
|
|
1262
|
+
"type": "string",
|
|
1263
|
+
"internalType": "string"
|
|
1264
|
+
}
|
|
1265
|
+
]
|
|
1266
|
+
},
|
|
1267
|
+
{
|
|
1268
|
+
"type": "error",
|
|
1269
|
+
"name": "Unauthorized",
|
|
1270
|
+
"inputs": [
|
|
1271
|
+
{
|
|
1272
|
+
"name": "caller",
|
|
1273
|
+
"type": "address",
|
|
1274
|
+
"internalType": "address"
|
|
1275
|
+
}
|
|
1276
|
+
]
|
|
1277
|
+
}
|
|
1278
|
+
],
|
|
1279
|
+
"bytecode": "0x610180806040523461075557612b4b803803809161001d8285610759565b833981019060c0818303126107555780516001600160401b038111610755578261004891830161077c565b60208201516001600160401b038111610755578361006791840161077c565b60408301519091906001600160a01b038116908190036107555760608401516001600160401b03811161075557856100a091860161077c565b60808501519095906001600160401b0381116107555760a0916100c491870161077c565b940151916040938451916100d88684610759565b60018352603160f81b6020840190815281519092906001600160401b03811161048f57600354600181811c9116801561074b575b602082101461047157601f81116106e8575b50806020601f8211600114610684575f91610679575b508160011b915f199060031b1c1916176003555b8051906001600160401b03821161048f5760045490600182811c9216801561066f575b60208310146104715781601f849311610601575b50602090601f831160011461059b575f92610590575b50508160011b915f199060031b1c1916176004555b6101b3816107d1565b610120526101c083610958565b6101405260208151910120918260e05251902080610100524660a05284519060208201927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f84528683015260608201524660808201523060a082015260a0815261022b60c082610759565b5190206080523060c052801561057e573361016052600880546001600160a01b03191691909117905583516001600160401b03811161048f57600c54600181811c91168015610574575b602082101461047157601f8111610511575b50602094601f82116001146104ae579481929394955f926104a3575b50508160011b915f199060031b1c191617600c555b82516001600160401b03811161048f57600d54600181811c91168015610485575b602082101461047157601f811161040e575b506020601f82116001146103ab57819293945f926103a0575b50508160011b915f199060031b1c191617600d555b8015610391575b600e55516120ba9081610a9182396080518161196b015260a05181611a28015260c05181611935015260e051816119ba015261010051816119e001526101205181610a3001526101405181610a590152610160518181816107ad01528181610b9301528181610ebd01526111200152f35b50670de0b6b3a7640000610320565b015190505f80610304565b601f19821690600d5f52805f20915f5b8181106103f6575095836001959697106103de575b505050811b01600d55610319565b01515f1960f88460031b161c191690555f80806103d0565b9192602060018192868b0151815501940192016103bb565b600d5f527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb5601f830160051c81019160208410610467575b601f0160051c01905b81811061045c57506102eb565b5f815560010161044f565b9091508190610446565b634e487b7160e01b5f52602260045260245ffd5b90607f16906102d9565b634e487b7160e01b5f52604160045260245ffd5b015190505f806102a3565b601f19821695600c5f52805f20915f5b8881106104f9575083600195969798106104e1575b505050811b01600c556102b8565b01515f1960f88460031b161c191690555f80806104d3565b919260206001819286850151815501940192016104be565b600c5f527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c7601f830160051c8101916020841061056a575b601f0160051c01905b81811061055f5750610287565b5f8155600101610552565b9091508190610549565b90607f1690610275565b634726455360e11b5f5260045260245ffd5b015190505f80610195565b60045f9081528281209350601f198516905b8181106105e957509084600195949392106105d1575b505050811b016004556101aa565b01515f1960f88460031b161c191690555f80806105c3565b929360206001819287860151815501950193016105ad565b60045f529091507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b601f840160051c81019160208510610665575b90601f859493920160051c01905b818110610657575061017f565b5f815584935060010161064a565b909150819061063c565b91607f169161016b565b90508301515f610134565b60035f9081528181209250601f198416905b8181106106d0575090836001949392106106b8575b5050811b01600355610148565b8501515f1960f88460031b161c191690555f806106ab565b9192602060018192868a015181550194019201610696565b60035f527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b601f830160051c81019160208410610741575b601f0160051c01905b818110610736575061011e565b5f8155600101610729565b9091508190610720565b90607f169061010c565b5f80fd5b601f909101601f19168101906001600160401b0382119082101761048f57604052565b81601f82011215610755578051906001600160401b03821161048f57604051926107b0601f8401601f191660200185610759565b8284526020838301011161075557815f9260208093018386015e8301015290565b908151602081105f1461084b575090601f81511161080b5760208151910151602082106107fc571790565b5f198260200360031b1b161790565b604460209160405192839163305a27a960e01b83528160048401528051918291826024860152018484015e5f828201840152601f01601f19168101030190fd5b6001600160401b03811161048f57600554600181811c9116801561094e575b602082101461047157601f811161091b575b50602092601f82116001146108ba57928192935f926108af575b50508160011b915f199060031b1c19161760055560ff90565b015190505f80610896565b601f1982169360055f52805f20915f5b86811061090357508360019596106108eb575b505050811b0160055560ff90565b01515f1960f88460031b161c191690555f80806108dd565b919260206001819286850151815501940192016108ca565b60055f52601f60205f20910160051c810190601f830160051c015b818110610943575061087c565b5f8155600101610936565b90607f169061086a565b908151602081105f14610983575090601f81511161080b5760208151910151602082106107fc571790565b6001600160401b03811161048f57600654600181811c91168015610a86575b602082101461047157601f8111610a53575b50602092601f82116001146109f257928192935f926109e7575b50508160011b915f199060031b1c19161760065560ff90565b015190505f806109ce565b601f1982169360065f52805f20915f5b868110610a3b5750836001959610610a23575b505050811b0160065560ff90565b01515f1960f88460031b161c191690555f8080610a15565b91926020600181928685015181550194019201610a02565b60065f52601f60205f20910160051c810190601f830160051c015b818110610a7b57506109b4565b5f8155600101610a6e565b90607f16906109a256fe60806040526004361015610011575f80fd5b5f3560e01c806306fdde031461137f578063095ea7b3146113595780631296ee621461131b578063169329ad1461130157806318160ddd146112e457806323b872dd1461119f5780632ace86771461114f5780632dd310001461110b5780632ecd4e7d146109a2578063313ce567146110f05780633644e515146110d657806338518bfe146110ae57806339df23731461108a5780633ba0b9a91461106d5780634000aea014610fb757806340c10f1914610ea157806340cc860b14610e5157806342966c6814610e345780635054dbd014610e0c57806354fd4d5014610dad578063623330ae14610d2457806366b48f9114610d095780636b09de4514610ced57806370a0823114610cb65780637a5b4f5914610c235780637ade132c14610b775780637ecebe0014610b3f5780637fd6327a14610b1057806384b0196e14610a185780638d074547146109f557806395d89b41146109da5780639a78e72e146109a25780639dc29fac1461086a578063a54c44551461080d578063a9059cbb146107dc578063aae64da214610719578063b83aa2de1461062d578063b9e205ae1461058a578063c504e2091461051b578063c6d572ae146104e8578063d505accf146103a3578063dd62ed3e1461036f578063f1d85d55146103325763fa74542d146101fd575f80fd5b3461032e57604036600319011261032e576102166113be565b60095460243591906001600160a01b0316330361031b576001600160a01b03165f818152601060209081526040808320338085529083528184205485855260118452828520918552925290912054919291610272908390611886565b9081116102dc577f99cf5cc1e3146bd15204f8eae4fe16c690d6123fbdac32515502fe688b86b8f591602091845f526011835260405f2060018060a01b0333165f52835260405f2055835f52600f825260405f206102d1828254611886565b9055604051908152a2005b60405162461bcd60e51b815260206004820152601760248201527614dc195b991a5b99c81b1a5b5a5d08195e18d959591959604a1b6044820152606490fd5b63472511eb60e11b5f523360045260245ffd5b5f80fd5b3461032e57602036600319011261032e576001600160a01b036103536113be565b165f52600a602052602060ff60405f2054166040519015158152f35b3461032e57604036600319011261032e57602061039b61038d6113be565b6103956113d4565b90611893565b604051908152f35b3461032e5760e036600319011261032e576103bc6113be565b6103c46113d4565b604435906064359260843560ff8116810361032e578442116104d5576104986104a19160018060a01b03841696875f52600760205260405f20908154916001830190556040519060208201927f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c984528a604084015260018060a01b038916606084015289608084015260a083015260c082015260c0815261046660e08261146f565b519020610471611932565b906040519161190160f01b83526002830152602282015260c43591604260a4359220611e75565b90929192611ef8565b6001600160a01b03168481036104be57506104bc9350611b89565b005b84906325c0072360e11b5f5260045260245260445ffd5b8463313c898160e11b5f5260045260245ffd5b3461032e575f36600319011261032e576105176105036116ab565b60405191829160208352602083019061139a565b0390f35b3461032e57602036600319011261032e576105346113be565b6008546001600160a01b0316330361031b576001600160a01b03165f818152600a60205260408120805460ff191690557f49debedb360a6c155dc3046b522ec5e27906afea1be0015b4625302e9192e2d89080a2005b3461032e57602036600319011261032e57600854600435906001600160a01b0316330361031b5780156105f05760407fc8d1043f24843c0a1c9251fdc30017d84e87498fbcf232af9f86816b5e182bde91600e549080600e5582519182526020820152a1005b60405162461bcd60e51b815260206004820152601560248201527452617465206d75737420626520706f73697469766560581b6044820152606490fd5b3461032e57606036600319011261032e576106466113be565b60095460243590604435906001600160a01b0316330361070457805f52600b60205260ff60405f2054166106f2575f52600b60205260405f20600160ff1982541617905561069382611424565b335f9081526020919091526040902054916106ad8161143d565b60018060a01b0333165f526020526106c98260405f2054611886565b9283116102dc576104bc926106dd8261143d565b335f9081526020919091526040902055611b20565b63070c5a0360e51b5f5260045260245ffd5b63472511eb60e11b5f90815233600452602490fd5b3461032e57602036600319011261032e576107326113be565b6008546001600160a01b0316331415806107a9575b61031b576001600160a01b0316801561079757805f52600a60205260405f20600160ff198254161790557fcd244ccee31904b178ff7bfc95631cea7812a955f9a330ac216c0c8c9dbfaf205f80a2005b634726455360e11b5f5260045260245ffd5b50337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161415610747565b3461032e57604036600319011261032e576108026107f86113be565b6024359033611b4d565b602060405160018152f35b3461032e57604036600319011261032e576108266113be565b335f8181526010602090815260408083206001600160a01b03909516808452948252918290206024359081905591519182525f5160206120255f395f51905f5291a3005b3461032e57604036600319011261032e576108836113be565b600954602435906001600160a01b03163314610948576001600160a01b03821633036108b3575b6104bc91611b20565b6108bd3383611893565b918183106108f757816104bc935f1981036108dc575b505091506108aa565b6108f0916108e9916117f0565b3383611b89565b81846108d3565b60405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608490fd5b60405162461bcd60e51b815260206004820152602c60248201527f53757065725061796d6173746572206d75737420757365206275726e46726f6d60448201526b576974684f7048617368282960a01b6064820152608490fd5b3461032e57602036600319011261032e576001600160a01b036109c36113be565b165f52600f602052602060405f2054604051908152f35b3461032e575f36600319011261032e57610517610503611616565b3461032e576020610a0f610a08366113ea565b9291611893565b10604051908152f35b3461032e575f36600319011261032e57610ab4610a547f0000000000000000000000000000000000000000000000000000000000000000611cc3565b610a7d7f0000000000000000000000000000000000000000000000000000000000000000611dbd565b6020610ac260405192610a90838561146f565b5f84525f368137604051958695600f60f81b875260e08588015260e087019061139a565b90858203604087015261139a565b4660608501523060808501525f60a085015283810360c08501528180845192838152019301915f5b828110610af957505050500390f35b835185528695509381019392810192600101610aea565b3461032e57602036600319011261032e576004355f52600b602052602060ff60405f2054166040519015158152f35b3461032e57602036600319011261032e576001600160a01b03610b606113be565b165f526007602052602060405f2054604051908152f35b3461032e57602036600319011261032e57610b906113be565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316141580610c0e575b61031b576001600160a01b0316801561079757600980546001600160a01b031916821790557f3c84f1b682ac1493ee72abc0427a570b681583551f8fadd1b98ea9cce545ec6a5f80a2005b506008546001600160a01b0316331415610bc3565b3461032e575f36600319011261032e57610c82610c3e6114ca565b610c46611616565b6008546001600160a01b031690610cac90610c9e610c626116ab565b610c90610c6d611581565b9360405198899860a08a5260a08a019061139a565b9088820360208a015261139a565b90868203604088015261139a565b90848203606086015261139a565b9060808301520390f35b3461032e57602036600319011261032e576001600160a01b03610cd76113be565b165f525f602052602060405f2054604051908152f35b3461032e57602036600319011261032e576104bc6004356117fd565b3461032e575f36600319011261032e57610517610503611581565b3461032e57602036600319011261032e57610d3d6113be565b600854906001600160a01b038216903382900361031b576001600160a01b03169182908115610d9a576001600160a01b031916176008557f1191f7dd7e510e69e54c21c704f6f3c1179351c8a1a8d6a2a66d1e20aed6fd0f5f80a3005b50634726455360e11b5f5260045260245ffd5b3461032e575f36600319011261032e57610517604051610dce60408261146f565b601f81527f58504e54732d322e332e322d64656661756c742d6c696d69742d61706e747300602082015260405191829160208352602083019061139a565b3461032e575f36600319011261032e576009546040516001600160a01b039091168152602090f35b3461032e57602036600319011261032e576104bc60043533611b20565b3461032e57604036600319011261032e57610e6a6113be565b610e726113d4565b6001600160a01b039182165f908152601060209081526040808320949093168252928352819020549051908152f35b3461032e57604036600319011261032e57610eba6113be565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316141580610fa2575b610704576001600160a01b038116908115610d9a576009546104bc926001600160a01b039091169081151580610f7f575b610f2f575b5050602435905f611bec565b610f37611740565b91610f4184611424565b9060018060a01b03165f526020528160405f20555f5160206120255f395f51905f52602060095460018060a01b031693604051908152a38280610f23565b50610f8983611424565b60018060a01b0383165f5260205260405f205415610f1e565b506008546001600160a01b0316331415610eed565b3461032e57606036600319011261032e57610fd06113be565b60243590604435906001600160401b03821161032e573660238301121561032e576004820135926001600160401b038411611059576040519161101d601f8601601f19166020018461146f565b848352366024868601011161032e575f6020866108029760246110549801838801378501015261104d8282611876565b5033611a4e565b61179a565b634e487b7160e01b5f52604160045260245ffd5b3461032e575f36600319011261032e576020600e54604051908152f35b3461032e575f36600319011261032e57602060405169010f0cf064dd592000008152f35b3461032e575f36600319011261032e576008546040516001600160a01b039091168152602090f35b3461032e575f36600319011261032e57602061039b611932565b3461032e575f36600319011261032e57602060405160128152f35b3461032e575f36600319011261032e576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b3461032e57604036600319011261032e576111686113be565b6111706113d4565b6001600160a01b039182165f908152601160209081526040808320949093168252928352819020549051908152f35b3461032e576111ad366113ea565b6009549091906001600160a01b031633811461126d575b506111cf3384611893565b92600184016111e3575b6108029350611b4d565b828410611252576001600160a01b03811693841561123f57331561122c57610802945f52600160205260405f2060018060a01b0333165f526020528360405f20910390556111d9565b634a1406b160e11b5f525f60045260245ffd5b63e602df0560e01b5f525f60045260245ffd5b8284637dc7a0d960e11b5f523360045260245260445260645ffd5b6001600160a01b0382160361128257836111c4565b60405162461bcd60e51b815260206004820152603460248201527f53757065725061796d61737465722053656375726974793a2043616e206f6e6c6044820152733c90383ab63610333ab73239903a379039b2b63360611b6064820152608490fd5b3461032e575f36600319011261032e576020600254604051908152f35b3461032e575f36600319011261032e57602061039b611740565b3461032e57604036600319011261032e5761080261105461133a6113be565b6024356040519161134c60208461146f565b5f835261104d8282611876565b3461032e57604036600319011261032e576108026113756113be565b6024359033611b89565b3461032e575f36600319011261032e576105176105036114ca565b805180835260209291819084018484015e5f828201840152601f01601f1916010190565b600435906001600160a01b038216820361032e57565b602435906001600160a01b038216820361032e57565b606090600319011261032e576004356001600160a01b038116810361032e57906024356001600160a01b038116810361032e579060443590565b6001600160a01b03165f90815260106020526040902090565b6001600160a01b03165f90815260116020526040902090565b6001600160a01b03165f908152600f6020526040902090565b601f909101601f19168101906001600160401b0382119082101761105957604052565b90600182811c921680156114c0575b60208310146114ac57565b634e487b7160e01b5f52602260045260245ffd5b91607f16916114a1565b604051905f82600354916114dd83611492565b80835292600181169081156115625750600114611503575b6115019250038361146f565b565b5060035f90815290917fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b818310611546575050906020611501928201016114f5565b602091935080600191548385890101520191019091849261152e565b6020925061150194915060ff191682840152151560051b8201016114f5565b604051905f82600d549161159483611492565b808352926001811690811561156257506001146115b7576115019250038361146f565b50600d5f90815290917fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb55b8183106115fa575050906020611501928201016114f5565b60209193508060019154838589010152019101909184926115e2565b604051905f826004549161162983611492565b8083529260018116908115611562575060011461164c576115019250038361146f565b5060045f90815290917f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b81831061168f575050906020611501928201016114f5565b6020919350806001915483858901015201910190918492611677565b604051905f82600c54916116be83611492565b808352926001811690811561156257506001146116e1576115019250038361146f565b50600c5f90815290917fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c75b818310611724575050906020611501928201016114f5565b602091935080600191548385890101520191019091849261170c565b600e54806117955750670de0b6b3a76400005b8069010f0cf064dd59200000029069010f0cf064dd5920000082040361178157670de0b6b3a7640000900490565b634e487b7160e01b5f52601160045260245ffd5b611753565b156117a157565b60405162461bcd60e51b815260206004820152602160248201527f455243313336333a207472616e7366657220746f206e6f6e2d726563656976656044820152603960f91b6064820152608490fd5b9190820391821161178157565b335f52600f60205260405f2054908115611872578181111561186b57505b6118258133611b20565b335f52600f60205260405f2061183c8282546117f0565b9055335f52600f60205260405f205460405191825260208201525f5160206120455f395f51905f5260403392a2565b905061181b565b5050565b906118819133611b4d565b600190565b9190820180921161178157565b6001600160a01b0382165f908152600a602052604090205460ff166118db5760018060a01b03165f52600160205260405f209060018060a01b03165f5260205260405f205490565b6001600160a01b039081165f818152601060209081526040808320959094168083529481528382205492825260118152838220948252939093529120548082111561192c57611929916117f0565b90565b50505f90565b307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161480611a25575b1561198d577f000000000000000000000000000000000000000000000000000000000000000090565b60405160208101907f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f82527f000000000000000000000000000000000000000000000000000000000000000060408201527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260a08152611a1f60c08261146f565b51902090565b507f00000000000000000000000000000000000000000000000000000000000000004614611964565b919290803b15611b1757611a9d935f60209460405196879586948593632229f29760e21b855233600486015260018060a01b03166024850152604484015260806064840152608483019061139a565b03926001600160a01b03165af15f9181611ad2575b50611abc57505f90565b6001600160e01b031916632229f29760e21b1490565b9091506020813d602011611b0f575b81611aee6020938361146f565b8101031261032e57516001600160e01b03198116810361032e57905f611ab2565b3d9150611ae1565b50505050600190565b906001600160a01b03821615611b3a575f61150192611bec565b634b637e8f60e11b5f525f60045260245ffd5b91906001600160a01b03831615611b3a576001600160a01b03811615611b765761150192611bec565b63ec442f0560e01b5f525f60045260245ffd5b6001600160a01b031690811561123f576001600160a01b031691821561122c5760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591835f526001825260405f20855f5282528060405f2055604051908152a3565b91906001600160a01b0383161580611cb1575b80611ca8575b611c13575b61150192611f6c565b611c1c81611456565b5480611c285750611c0a565b9181611c5592938083115f14611ca057945b611c4382611456565b611c4e8782546117f0565b9055611f6c565b81611c5e575050565b611c688282611b20565b80611c805f5160206120455f395f51905f5292611456565b546040805194855260208501919091526001600160a01b039190911692a2565b508194611c3a565b50811515611c05565b506001600160a01b0381161515611bff565b60ff8114611d095760ff811690601f8211611cfa5760405191611ce760408461146f565b6020808452838101919036833783525290565b632cd44ac360e21b5f5260045ffd5b50604051600554815f611d1b83611492565b8083529260018116908115611d9e5750600114611d3f575b6119299250038261146f565b5060055f90815290917f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db05b818310611d8257505090602061192992820101611d33565b6020919350806001915483858801015201910190918392611d6a565b6020925061192994915060ff191682840152151560051b820101611d33565b60ff8114611de15760ff811690601f8211611cfa5760405191611ce760408461146f565b50604051600654815f611df383611492565b8083529260018116908115611d9e5750600114611e16576119299250038261146f565b5060065f90815290917ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f5b818310611e5957505090602061192992820101611d33565b6020919350806001915483858801015201910190918392611e41565b91906fa2a8918ca85bafe22016d0b997e4df60600160ff1b038411611eed579160209360809260ff5f9560405194855216868401526040830152606082015282805260015afa15611ee2575f516001600160a01b03811615611ed857905f905f90565b505f906001905f90565b6040513d5f823e3d90fd5b5050505f9160039190565b6004811015611f585780611f0a575050565b60018103611f215763f645eedf60e01b5f5260045ffd5b60028103611f3c575063fce698f760e01b5f5260045260245ffd5b600314611f465750565b6335e2f38360e21b5f5260045260245ffd5b634e487b7160e01b5f52602160045260245ffd5b6001600160a01b03169081611fd25760205f5160206120655f395f51905f5291611f9885600254611886565b6002555b6001600160a01b03169384611fbd5780600254036002555b604051908152a3565b845f525f825260405f20818154019055611fb4565b815f525f60205260405f2054838110612009575f5160206120655f395f51905f529184602092855f525f84520360405f2055611f9c565b91905063391434e360e21b5f5260045260245260445260645ffdfebae546dee4cdda3373cbd29134aea6bc8f5a16e508791a2e0d2a3848d3016ee6798353030d4251a345706609acf9ea7527f2ace26f73150a098c0fae89e5886dddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212206e8daee4ff966728e6d54d786e40fd37647919849b6526b5601c4412cd9c7d4d64736f6c634300081c0033"
|
|
1280
|
+
}
|