@venusprotocol/oracle 2.5.0-dev.4 → 2.5.0-dev.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/deployments/arbitrumsepolia/solcInputs/c9234768a0e90787a3e044ab631ca909.json +316 -0
  2. package/deployments/arbitrumsepolia/weETHOneJumpChainlinkOracle.json +306 -0
  3. package/deployments/arbitrumsepolia/weETHOneJumpChainlinkOracle_Implementation.json +204 -0
  4. package/deployments/arbitrumsepolia/weETHOneJumpChainlinkOracle_Proxy.json +224 -0
  5. package/deployments/arbitrumsepolia/wstETHOneJumpChainlinkOracle.json +306 -0
  6. package/deployments/arbitrumsepolia/wstETHOneJumpChainlinkOracle_Implementation.json +204 -0
  7. package/deployments/arbitrumsepolia/wstETHOneJumpChainlinkOracle_Proxy.json +224 -0
  8. package/deployments/arbitrumsepolia.json +930 -0
  9. package/deployments/arbitrumsepolia_addresses.json +7 -1
  10. package/deployments/zksyncmainnet/.chainId +1 -0
  11. package/deployments/zksyncmainnet/BoundValidator.json +688 -0
  12. package/deployments/zksyncmainnet/BoundValidator_Implementation.json +749 -0
  13. package/deployments/zksyncmainnet/BoundValidator_Proxy.json +360 -0
  14. package/deployments/zksyncmainnet/ChainlinkOracle.json +715 -0
  15. package/deployments/zksyncmainnet/ChainlinkOracle_Implementation.json +841 -0
  16. package/deployments/zksyncmainnet/ChainlinkOracle_Proxy.json +322 -0
  17. package/deployments/zksyncmainnet/DefaultProxyAdmin.json +284 -0
  18. package/deployments/zksyncmainnet/RedStoneOracle.json +715 -0
  19. package/deployments/zksyncmainnet/RedStoneOracle_Implementation.json +803 -0
  20. package/deployments/zksyncmainnet/RedStoneOracle_Proxy.json +322 -0
  21. package/deployments/zksyncmainnet/ResilientOracle.json +941 -0
  22. package/deployments/zksyncmainnet/ResilientOracle_Implementation.json +1211 -0
  23. package/deployments/zksyncmainnet/ResilientOracle_Proxy.json +322 -0
  24. package/deployments/zksyncmainnet/solcInputs/d14112d82bb23a35dc687350b4e61e84.json +343 -0
  25. package/deployments/zksyncmainnet.json +4765 -0
  26. package/deployments/zksyncmainnet_addresses.json +19 -0
  27. package/dist/deploy/13-deploy-wstETH-weETH-oracles.d.ts +4 -0
  28. package/dist/deploy/13-deploy-wstETH-weETH-oracles.d.ts.map +1 -0
  29. package/dist/deploy/13-deploy-wstETH-weETH-oracles.js +63 -0
  30. package/dist/deploy/13-deploy-wstETH-weETH-oracles.js.map +1 -0
  31. package/dist/helpers/deploymentConfig.d.ts.map +1 -1
  32. package/dist/helpers/deploymentConfig.js +63 -3
  33. package/dist/helpers/deploymentConfig.js.map +1 -1
  34. package/package.json +2 -2
@@ -0,0 +1,688 @@
1
+ {
2
+ "address": "0x51519cdCDDD05E2ADCFA108f4a960755D9d6ea8b",
3
+ "abi": [
4
+ {
5
+ "anonymous": false,
6
+ "inputs": [
7
+ {
8
+ "indexed": false,
9
+ "internalType": "address",
10
+ "name": "previousAdmin",
11
+ "type": "address"
12
+ },
13
+ {
14
+ "indexed": false,
15
+ "internalType": "address",
16
+ "name": "newAdmin",
17
+ "type": "address"
18
+ }
19
+ ],
20
+ "name": "AdminChanged",
21
+ "type": "event"
22
+ },
23
+ {
24
+ "anonymous": false,
25
+ "inputs": [
26
+ {
27
+ "indexed": true,
28
+ "internalType": "address",
29
+ "name": "beacon",
30
+ "type": "address"
31
+ }
32
+ ],
33
+ "name": "BeaconUpgraded",
34
+ "type": "event"
35
+ },
36
+ {
37
+ "anonymous": false,
38
+ "inputs": [
39
+ {
40
+ "indexed": true,
41
+ "internalType": "address",
42
+ "name": "implementation",
43
+ "type": "address"
44
+ }
45
+ ],
46
+ "name": "Upgraded",
47
+ "type": "event"
48
+ },
49
+ {
50
+ "stateMutability": "payable",
51
+ "type": "fallback"
52
+ },
53
+ {
54
+ "inputs": [],
55
+ "name": "admin",
56
+ "outputs": [
57
+ {
58
+ "internalType": "address",
59
+ "name": "admin_",
60
+ "type": "address"
61
+ }
62
+ ],
63
+ "stateMutability": "nonpayable",
64
+ "type": "function"
65
+ },
66
+ {
67
+ "inputs": [],
68
+ "name": "implementation",
69
+ "outputs": [
70
+ {
71
+ "internalType": "address",
72
+ "name": "implementation_",
73
+ "type": "address"
74
+ }
75
+ ],
76
+ "stateMutability": "nonpayable",
77
+ "type": "function"
78
+ },
79
+ {
80
+ "inputs": [
81
+ {
82
+ "internalType": "address",
83
+ "name": "newImplementation",
84
+ "type": "address"
85
+ }
86
+ ],
87
+ "name": "upgradeTo",
88
+ "outputs": [],
89
+ "stateMutability": "nonpayable",
90
+ "type": "function"
91
+ },
92
+ {
93
+ "inputs": [
94
+ {
95
+ "internalType": "address",
96
+ "name": "newImplementation",
97
+ "type": "address"
98
+ },
99
+ {
100
+ "internalType": "bytes",
101
+ "name": "data",
102
+ "type": "bytes"
103
+ }
104
+ ],
105
+ "name": "upgradeToAndCall",
106
+ "outputs": [],
107
+ "stateMutability": "payable",
108
+ "type": "function"
109
+ },
110
+ {
111
+ "stateMutability": "payable",
112
+ "type": "receive"
113
+ },
114
+ {
115
+ "inputs": [
116
+ {
117
+ "internalType": "address",
118
+ "name": "sender",
119
+ "type": "address"
120
+ },
121
+ {
122
+ "internalType": "address",
123
+ "name": "calledContract",
124
+ "type": "address"
125
+ },
126
+ {
127
+ "internalType": "string",
128
+ "name": "methodSignature",
129
+ "type": "string"
130
+ }
131
+ ],
132
+ "name": "Unauthorized",
133
+ "type": "error"
134
+ },
135
+ {
136
+ "anonymous": false,
137
+ "inputs": [
138
+ {
139
+ "indexed": false,
140
+ "internalType": "uint8",
141
+ "name": "version",
142
+ "type": "uint8"
143
+ }
144
+ ],
145
+ "name": "Initialized",
146
+ "type": "event"
147
+ },
148
+ {
149
+ "anonymous": false,
150
+ "inputs": [
151
+ {
152
+ "indexed": false,
153
+ "internalType": "address",
154
+ "name": "oldAccessControlManager",
155
+ "type": "address"
156
+ },
157
+ {
158
+ "indexed": false,
159
+ "internalType": "address",
160
+ "name": "newAccessControlManager",
161
+ "type": "address"
162
+ }
163
+ ],
164
+ "name": "NewAccessControlManager",
165
+ "type": "event"
166
+ },
167
+ {
168
+ "anonymous": false,
169
+ "inputs": [
170
+ {
171
+ "indexed": true,
172
+ "internalType": "address",
173
+ "name": "previousOwner",
174
+ "type": "address"
175
+ },
176
+ {
177
+ "indexed": true,
178
+ "internalType": "address",
179
+ "name": "newOwner",
180
+ "type": "address"
181
+ }
182
+ ],
183
+ "name": "OwnershipTransferStarted",
184
+ "type": "event"
185
+ },
186
+ {
187
+ "anonymous": false,
188
+ "inputs": [
189
+ {
190
+ "indexed": true,
191
+ "internalType": "address",
192
+ "name": "previousOwner",
193
+ "type": "address"
194
+ },
195
+ {
196
+ "indexed": true,
197
+ "internalType": "address",
198
+ "name": "newOwner",
199
+ "type": "address"
200
+ }
201
+ ],
202
+ "name": "OwnershipTransferred",
203
+ "type": "event"
204
+ },
205
+ {
206
+ "anonymous": false,
207
+ "inputs": [
208
+ {
209
+ "indexed": true,
210
+ "internalType": "address",
211
+ "name": "asset",
212
+ "type": "address"
213
+ },
214
+ {
215
+ "indexed": true,
216
+ "internalType": "uint256",
217
+ "name": "upperBound",
218
+ "type": "uint256"
219
+ },
220
+ {
221
+ "indexed": true,
222
+ "internalType": "uint256",
223
+ "name": "lowerBound",
224
+ "type": "uint256"
225
+ }
226
+ ],
227
+ "name": "ValidateConfigAdded",
228
+ "type": "event"
229
+ },
230
+ {
231
+ "inputs": [],
232
+ "name": "acceptOwnership",
233
+ "outputs": [],
234
+ "stateMutability": "nonpayable",
235
+ "type": "function"
236
+ },
237
+ {
238
+ "inputs": [],
239
+ "name": "accessControlManager",
240
+ "outputs": [
241
+ {
242
+ "internalType": "contract IAccessControlManagerV8",
243
+ "name": "",
244
+ "type": "address"
245
+ }
246
+ ],
247
+ "stateMutability": "view",
248
+ "type": "function"
249
+ },
250
+ {
251
+ "inputs": [
252
+ {
253
+ "internalType": "address",
254
+ "name": "accessControlManager_",
255
+ "type": "address"
256
+ }
257
+ ],
258
+ "name": "initialize",
259
+ "outputs": [],
260
+ "stateMutability": "nonpayable",
261
+ "type": "function"
262
+ },
263
+ {
264
+ "inputs": [],
265
+ "name": "owner",
266
+ "outputs": [
267
+ {
268
+ "internalType": "address",
269
+ "name": "",
270
+ "type": "address"
271
+ }
272
+ ],
273
+ "stateMutability": "view",
274
+ "type": "function"
275
+ },
276
+ {
277
+ "inputs": [],
278
+ "name": "pendingOwner",
279
+ "outputs": [
280
+ {
281
+ "internalType": "address",
282
+ "name": "",
283
+ "type": "address"
284
+ }
285
+ ],
286
+ "stateMutability": "view",
287
+ "type": "function"
288
+ },
289
+ {
290
+ "inputs": [],
291
+ "name": "renounceOwnership",
292
+ "outputs": [],
293
+ "stateMutability": "nonpayable",
294
+ "type": "function"
295
+ },
296
+ {
297
+ "inputs": [
298
+ {
299
+ "internalType": "address",
300
+ "name": "accessControlManager_",
301
+ "type": "address"
302
+ }
303
+ ],
304
+ "name": "setAccessControlManager",
305
+ "outputs": [],
306
+ "stateMutability": "nonpayable",
307
+ "type": "function"
308
+ },
309
+ {
310
+ "inputs": [
311
+ {
312
+ "components": [
313
+ {
314
+ "internalType": "address",
315
+ "name": "asset",
316
+ "type": "address"
317
+ },
318
+ {
319
+ "internalType": "uint256",
320
+ "name": "upperBoundRatio",
321
+ "type": "uint256"
322
+ },
323
+ {
324
+ "internalType": "uint256",
325
+ "name": "lowerBoundRatio",
326
+ "type": "uint256"
327
+ }
328
+ ],
329
+ "internalType": "struct BoundValidator.ValidateConfig",
330
+ "name": "config",
331
+ "type": "tuple"
332
+ }
333
+ ],
334
+ "name": "setValidateConfig",
335
+ "outputs": [],
336
+ "stateMutability": "nonpayable",
337
+ "type": "function"
338
+ },
339
+ {
340
+ "inputs": [
341
+ {
342
+ "components": [
343
+ {
344
+ "internalType": "address",
345
+ "name": "asset",
346
+ "type": "address"
347
+ },
348
+ {
349
+ "internalType": "uint256",
350
+ "name": "upperBoundRatio",
351
+ "type": "uint256"
352
+ },
353
+ {
354
+ "internalType": "uint256",
355
+ "name": "lowerBoundRatio",
356
+ "type": "uint256"
357
+ }
358
+ ],
359
+ "internalType": "struct BoundValidator.ValidateConfig[]",
360
+ "name": "configs",
361
+ "type": "tuple[]"
362
+ }
363
+ ],
364
+ "name": "setValidateConfigs",
365
+ "outputs": [],
366
+ "stateMutability": "nonpayable",
367
+ "type": "function"
368
+ },
369
+ {
370
+ "inputs": [
371
+ {
372
+ "internalType": "address",
373
+ "name": "newOwner",
374
+ "type": "address"
375
+ }
376
+ ],
377
+ "name": "transferOwnership",
378
+ "outputs": [],
379
+ "stateMutability": "nonpayable",
380
+ "type": "function"
381
+ },
382
+ {
383
+ "inputs": [
384
+ {
385
+ "internalType": "address",
386
+ "name": "",
387
+ "type": "address"
388
+ }
389
+ ],
390
+ "name": "validateConfigs",
391
+ "outputs": [
392
+ {
393
+ "internalType": "address",
394
+ "name": "asset",
395
+ "type": "address"
396
+ },
397
+ {
398
+ "internalType": "uint256",
399
+ "name": "upperBoundRatio",
400
+ "type": "uint256"
401
+ },
402
+ {
403
+ "internalType": "uint256",
404
+ "name": "lowerBoundRatio",
405
+ "type": "uint256"
406
+ }
407
+ ],
408
+ "stateMutability": "view",
409
+ "type": "function"
410
+ },
411
+ {
412
+ "inputs": [
413
+ {
414
+ "internalType": "address",
415
+ "name": "asset",
416
+ "type": "address"
417
+ },
418
+ {
419
+ "internalType": "uint256",
420
+ "name": "reportedPrice",
421
+ "type": "uint256"
422
+ },
423
+ {
424
+ "internalType": "uint256",
425
+ "name": "anchorPrice",
426
+ "type": "uint256"
427
+ }
428
+ ],
429
+ "name": "validatePriceWithAnchorPrice",
430
+ "outputs": [
431
+ {
432
+ "internalType": "bool",
433
+ "name": "",
434
+ "type": "bool"
435
+ }
436
+ ],
437
+ "stateMutability": "view",
438
+ "type": "function"
439
+ },
440
+ {
441
+ "inputs": [
442
+ {
443
+ "internalType": "address",
444
+ "name": "_logic",
445
+ "type": "address"
446
+ },
447
+ {
448
+ "internalType": "address",
449
+ "name": "admin_",
450
+ "type": "address"
451
+ },
452
+ {
453
+ "internalType": "bytes",
454
+ "name": "_data",
455
+ "type": "bytes"
456
+ }
457
+ ],
458
+ "stateMutability": "payable",
459
+ "type": "constructor"
460
+ }
461
+ ],
462
+ "transactionHash": "0xfd74740c741048d19d7bd90648f4595aacb56c5b9e9f83199a24527286828f08",
463
+ "receipt": {
464
+ "to": "0x0000000000000000000000000000000000008006",
465
+ "from": "0x7f423E50147930e197dAaE9F637198E66746D597",
466
+ "contractAddress": "0x51519cdCDDD05E2ADCFA108f4a960755D9d6ea8b",
467
+ "transactionIndex": 2,
468
+ "gasUsed": "1816593",
469
+ "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
470
+ "blockHash": "0x37a23386bfd0aec39d4ec79b8343c9a79fe3a91fe115beda3d1fab1b7b4fd273",
471
+ "transactionHash": "0xfd74740c741048d19d7bd90648f4595aacb56c5b9e9f83199a24527286828f08",
472
+ "logs": [
473
+ {
474
+ "transactionIndex": 2,
475
+ "blockNumber": 42315244,
476
+ "transactionHash": "0xfd74740c741048d19d7bd90648f4595aacb56c5b9e9f83199a24527286828f08",
477
+ "address": "0x000000000000000000000000000000000000800A",
478
+ "topics": [
479
+ "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
480
+ "0x0000000000000000000000007f423e50147930e197daae9f637198e66746d597",
481
+ "0x0000000000000000000000000000000000000000000000000000000000008001"
482
+ ],
483
+ "data": "0x000000000000000000000000000000000000000000000000000078f8f22ce110",
484
+ "logIndex": 9,
485
+ "blockHash": "0x37a23386bfd0aec39d4ec79b8343c9a79fe3a91fe115beda3d1fab1b7b4fd273"
486
+ },
487
+ {
488
+ "transactionIndex": 2,
489
+ "blockNumber": 42315244,
490
+ "transactionHash": "0xfd74740c741048d19d7bd90648f4595aacb56c5b9e9f83199a24527286828f08",
491
+ "address": "0x0000000000000000000000000000000000008008",
492
+ "topics": ["0x27fe8c0b49f49507b9d4fe5968c9f49edfe5c9df277d433a07a0717ede97638d"],
493
+ "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000010980000000000000000000000000000000000000000000000000000000000008008000000000000000000000000000000000000000000000000000000000000800e37b3af6533fe30c3abb2b57e9e3b811ab67febd06ea93c76b8cb96845ace149e",
494
+ "logIndex": 10,
495
+ "blockHash": "0x37a23386bfd0aec39d4ec79b8343c9a79fe3a91fe115beda3d1fab1b7b4fd273"
496
+ },
497
+ {
498
+ "transactionIndex": 2,
499
+ "blockNumber": 42315244,
500
+ "transactionHash": "0xfd74740c741048d19d7bd90648f4595aacb56c5b9e9f83199a24527286828f08",
501
+ "address": "0x0000000000000000000000000000000000008008",
502
+ "topics": [
503
+ "0x3a36e47291f4201faf137fab081d92295bce2d53be2c6ca68ba82c7faa9ce241",
504
+ "0x000000000000000000000000000000000000000000000000000000000000800e",
505
+ "0x37b3af6533fe30c3abb2b57e9e3b811ab67febd06ea93c76b8cb96845ace149e"
506
+ ],
507
+ "data": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000002162027d00000000000000000000018701008041000001870010009c0000000100200190000000000101043b000000c00110021000000000010004140000000000320435000000000001004b0615060b0000040f0000000000100439000004210000613d00000004001004430000061700010430000000000005004b00000005044002100000000000210435000000f40000213d0000018703008041000001870030009c0000010005500089000000000656022f0000000305500210000000400100043d00000189011001970000018702008041000001870020009c000000000004004b00000000065601cf0000000006040433000000000047004b0000000007870436000000006806043c0000000007000019000000000012004b000000000200041100008005020000390000019b011001c7000000240000044300000000010004120000019a010000410003000000010355061506100000040f000002680000213dffffffffffffffff000000000001042d0000006001100210000006160001042e0000000000140435000000000002004b00000005010000290000001f0430018f0000000001010433000000000141034f00000005043002720000000103000031000000010200003900008002020000390000018d011001c70000018c010000410000000006760436000000005705043c000000000502034f000001ae011001970000000003010019000000000112019f0000006001300210000000000161019f00000000015101cf000000000151022f000000000601034f0000018703300197000101870030019d0000001f0530018f0000006003300270000000000113019f000000c0033002100000002003000039000000040210003900000195020000410000004001100210000000000016004b0000000006000019000000050110021000000005013002720000000302000367000000040020008c0000000003000414000000000363019f000000000303043b0000018902200197000000000202041a0000018e02000041000000000100003100000002030003670000000005000019000000000252019f000000400010043f000000f40000c13d0000018a0040009c000000060200002900000060022002100000000100500190000000010500403900000100044000890000000304400210000000240210003900000044021000390000006402100039000000000034043500000000035301cf000000000353022f000000000343034f000000000603034f00000005041002720000001f0510018f000002680000c13d000000000400001900000000001204350000000603000029000002680000613d061506060000040f0000800d02000039000000000021041b0000018e0100004100000000020000190000003f01100039000000000202043b000000040030008c0000002004400039000000000065043500000000060604330000018a0030009c0000006001000039000101870010019d0000006001100270000000010220018f000000000232019f0000004003300210000000000001042f000000000013004b0000000000540435000001ae04400197000002900000c13d000000000545022f00000006010000290000000000020435000000400200043d000002900000613d000001710000613d000000000003004b00000000020104330000019401000041000000270100003900000193020000410000019104000041000000020300003900000190011001c70000018f02200197000000000201041a00000000000104350000000402000029000000000031004b000000000034004b000002680000413d0000015e0000c13d416464726573733a02000000000000000000002400000000020000020000000000000000ffffffff000000000646022f00000000064601cf000000000068004b0000000008980436000000007907043c000000000024004b00000000067400190000000005340019000004c20000613d0000004403100039000000000023043500000024031000390000000002020433000001d20000c13d0000000403000029000000000575019f00000000055601cf000000000606043b000000000757022f00000000075701cf00000000070404330000000004430019000000000646034f000000000079004b0000000009a90436000000008a08043c0000000009030019000000000806034f00000000074300190000000504400272000000030600036700000000034104360000001f0540018f000000400030043f0000000003310019000001ae031001970000001f01400039000000000121019f00000040022002100000004402400039000004cf0000c13d000000800300003900000187041001970000000104000031000000400400043d000000400040043f000002940000013d000002900000013d00000000024201cf000000000242022f000000000212034f00000000054501cf000000000501043300000040012002100000000001000019000001ad011001c70000004203000039000001ac03000041000001ab03000041000001aa030000410000008402100039000001a1011001c70000000001000416000002210000013d0000000201000029000004170000613d000100000002001d000000000213043600000040013000390000006001300039000600000001001d000003370000613d00000000001304350000000503300210000200000003001d0000018a0010009c000000400300043d0000034b0000c13d000300000005001d000600000004001d0000018a0020009c000001890060009cffffffffffffffe0000000a4000000006f78793a2061646d646561626c655072656e7455706772615472616e737061726f78792074617267636b20746f207072742066616c6c6261696e2063616e6e6f65740000000000004e487b7100000000696f6e206973206e6c656d656e746174206e657720696d70455243313936373a74726163740000006f74206120636f6e00000084000000006f206e6f6e2d636f652063616c6c20742064656c656761746e74726163740000ffffffffffffffdf0000002000000000000000004f1ef286000000003659cfe600000000f851a440000000005c60da1b000000005c60da1a0000004400000000ab882de59d99a32eff553aecb10793d015d089f94afb7896310ab089e4439a4c00000080000001000000000200000000832dc59e38c9798f31ebfa28653d42ae1e4894b5f4f588d37e644d79422f17c00000004000000000d6a717850b5d6103243e63b6e8ee117873ae13b9f8a6016eb53127684a568b3108c379a0000000006174652063616c6c656c2064656c6567206c6f772d6c6576206661696c656400ffffffffffffff9f225b39da2e5c2d3b214dbc6bffa90cc09adebab32041f755bc7cd75a20ee27fdffffffff0000000020a3ca505d382bbcca3e2076cc3735a90667c828492db98d360894a13ba1a321023a8d90e8508b8302500962caba6a1568e884a7374b41e01806aa1896bbf265800000000000000000000001ffffffe0000006150000043200000613002104250000060e002104230000060900210421000006030000613d000005fd0000613d000005ec0000c13d000005f00000613d000005ff0000013d000005ff0000613d000005c70000c13d000005cb0000613d000005d90000c13d000000000035043500000000034301cf000000000343022f000000000353034f00000000060504330000000505500210000005bc0000613d000005a90000c13d0000000008000019000000000703034f0000000506500210000005ad0000613d00000005051002720000001f0410018f0000059f0000c13d0000059e0000613d00000000012300190000056a0000413d00000000061400190000000005240019000005710000613d000004d20000013d0000000302000029000005190000013d0000000000430435000000000464019f00000000044501cf000000000505043b00000000060304330000000303300029000000000535034f000005190000613d0000054f0000c13d000000000705034f00000000063800190000000308000029000005530000613d000000050330027200000003050003670000000005310436000000000014004b0000000004410019000001ae041001970000001f01300039000004c20000013d0000052d0000413d0000000107000029000005620000c13d000005350000c13d00000187031001970000000502000029000004a70000013d000004a70000613d000004f00000c13d000004f40000613d000000400230021000000000023200190000001f04200039000004bb0000413d00000003070000290000000202000029000004d70000c13d000004a30000013d000004900000c13d000004390000013d000004390000613d000004740000c13d000004780000613d00000044011000390000001f01100039061505670000040f000000010100002900000000003104350000002401400039000500000003001d0000000003010433000000200200003900000004014000390000019501000041000003640000c13d0000045b0000c13d0000000303000029000003400000013d0000002603000039000001a403000041000001a303000041000004870000c13d000300000002001d000001920030009c000004350000013d000004220000c13d00000004003004430000000002140436000200000004001d00000040014000390000006001400039000001920040009c000003d00000613d000003bf0000c13d000003c30000613d000003a80000613d000003970000c13d0000039b0000613d0000019901000041000001200010044300000001010000390000010000100443000000200100003900000160001004430000014000000443000000800100043d0000019804000041000000010300003900000197011001c7000000c0022002100000000002000414000000200320003900000189012001970000019601000041000000800020043f000003d30000c13d0000018905100197061505740000040f000001a5011001c70000002d03000039000001a703000041000001a6030000410000034c0000c13d0000000400700443000600000007001d0000000001190019000300000009001d0000031d0000413d00000020033000390000000005050433000000000523001900000000049300190000000003000019000003240000613d000400000006001d000500000008001d000002210000c13d000003110000c13d000003150000613d000003ac0000c13d000003060000613d000002f40000c13d000002f80000613d000002d00000c13d000002d40000613d000003840000c13d000002c50000613d000002b30000c13d000002b70000613d000002940000613d0000028e0000613d0000027d0000c13d000002810000613d000003180000a13d0000000004210019000000c0022000390000000009180436000000a003300039000000000084004b0000000004480019000000400800043d0000003f044000390000001f04100039000002510000613d000002400000c13d000002440000613d0000021b0000c13d0000021f0000613d0000022d0000c13d000002100000613d000001fe0000c13d000002020000613d000000000101041a000002d70000c13d000003f90000c13d0000000605000029000500000002001d000400000001001d0000002001200039000001a20020009c000001890010009c00000004011003700000000002000416000000240030008c000001f40000c13d000002960000c13d0000019e0020009c000001d40000613d0000019d0020009c000001360000c13d0000013a0000613d0000026a0000c13d0000012b0000613d000001190000c13d0000011d0000613d000001a901000041000000040010043f00000041010000390000000000100435000001a801000041000002540000a13d000000a001200039000000000504c0190000018b0010009c0000018b050040410000018b011001970000018b040080410000001f01200039000000e00200043d000000c00600043d000001890070009c000000a00700043d000000600030008c000000000151019f00000000012101cf000000000121022f0000010002200089000000000525022f00000000052501cf0000000005040433000000a0044000390000000302200210000000d90000613d000000c70000c13d000000000065004b0000000005850436000000007807043c000000000701034f000000a006400039000000a005000039000000cb0000613d0000001f0230018f000000400020043f000000a00220003900000188022001970000001f02300039000005160000013d000005030000c13d0000000503000029000001920010009c00000005050000290000000001980019000400000008001d000000000141019f00000000011201cf000000000212022f0000010001100089000000000414022f00000000041401cf000000000403043300000003011002100000000003380019000000000232034f000000700000613d0000005e0000c13d000000000046004b00000000060800190000000004380019000000620000613d00000005039002720000000202200367000000200220003900000000089304360000001f0190018f000000010200403900000000011300190000001f019000390000000609000029000500000006001d000400000007001d00000024011000390000000001420019000000000401043b000000000171034f0000000407200039000002680000813d00000023042000390000002402100370000000000602043b0000000402100370000000440030008c000001a00020009c000001880000613d0000019f0020009c0000013d0000213d0000019c0020009c000000e002200270000000000201043b000000fa0000413d000000400050043f0000008005000039000000bc0000c13d000001870040019d000200000001035500030000003103550000018703400197000000600430027000060000000000020004000000000002027c027b0040027a027902780277027600030275027402730080027202710270026f026e026d026c026b00a5026a00a40269026800fc002b0267007f00fb002b026600a302650264026302620063002b0261026000a2002b025f00fa025e00f90028000a0027000c002600060002000100050025002400090003000b000400180023002200f8025d025c003f007e003f00f7025b00a2007d025a00f60011000300620061025900f5025800a102570256025500f402540253003e0252003d003c025102500008024f024e024d024c024b024a0249007f024802470246024500f30244024300a0003b000a0032000c0006000200010005003a003900090003000b0004000800f2007c009f009e02420060007b0006000200010005009d007a009c009b007900030078001700f102410011007700f0006100ef009a0010009900ee009800ed0076003b000a0032000c0006000200010005003a003900090003000b0004000800ec00eb0097000602400080023f00380037023e023d023c023b023a02390036000f02380237023602350234023302320231003102300035022f022e022d022c022b0004022a0229022802270030022600a402250224002b022300fc002b022200fb002b022100a200750220021f0008005f021e021d021c000e0074021b003400f6021a02190218021702160215000d009600a50028000a0027000c002600060002000100050025002400090003000b00040018002300220095005e005d0073005c005b0072000f0214007100210020001f001e0213005a000e02120016001d001c0015007000590014006f006e0058006d005700560211005500370033005400530210003e0052003d003c0051020f001b009400ea020e020d020c00a500e9000800740028000a0027000c002600060002000100050025002400090003000b0004001800230022020b0017001000020001005000e8002f0028000a0027000c002600060002000100050025002400090003000b0004001800230022020a001700e700e60007006c00e50007006b00e40007006a00e30007004f0010004e004d000700020001005000e2000d020900a4020800310074020700040206002b00f10028000a0027000c002600060002000100050025002400090003000b000400180023002200f800930205001102040203006102020092003b000a0091000c0006000200010005003a003900090003000b0004000800f2007c009f009e02010060007b0006000200010005009d007a009c009b007900030078003200340008020000e1002f00e9000800740028000a0027000c002600060002000100050025002400090003000b000400180023002201ff007c01fe001800930076001a001900e000e8002f005e005d0073005c005b0072000f01fd007100210020001f001e01fc005a000e01fb0016001d001c0015007000590014006f006e0058006d0057005601fa0055003700330054005301f9003e0052003d003c005101f8001b0094006900df00de009000dd007f006800dc00db0060001000da00020001002e00130012004c004b002a00290040004a0049004800470036000f01f7004600210020001f001e01f6000e01f50016001d001c001500350004001400450044004300300003008f00d901f4008e01f3008e01f201f101f0005f0067006300110066006201ef00d801ee01ed01ec00a301eb00e1000d00020001002e00130012004c004b002a00290040004a0049004800470036000f01ea004600210020001f001e01e9000e01e80016001d001c00150035000400140045004400430030000301e7001300120042002f0042000d0028000a0027000c002600060002000100050025002400090003000b00040018002300220095005e005d0073005c005b0072000f01e6007100210020001f001e01e5005a000e01e40016001d001c0015007000590014006f006e0058006d0057005601e30055003700330054005301e2003e0052003d003c005101e1001b009400ea0028000a0027000c002600060002000100050025002400090003000b00040018002300220095005e005d0073005c005b0072000f01e0007100210020001f001e01df005a000e01de0016001d001c0015007000590014006f006e0058006d0057005601dd0055003700330054005301dc003e0052003d003c005101db001b01da00da01d901d8000801d701d601d501d401d3008d01d2008c01d101d001cf00a0003b000a01ce01cd0006000200010005003a003900090003000b0004000801cc0017006c01cb0007006b01ca0007006a01c90007004f0010004e004d000700020001005001c8000d01c7009101c6007c009f009e0060007b0006000200010005009d007a009c009b00790077000300a1003200780034000801c501c401c3007b01c2009301c100f30092001a001900e001c0001a001901bf004101be007a01bd01bc00790003007801bb01ba01b901b801b701b601b501b4002f00020001002e00130012004c004b002a00290040004a0049004800470036000f01b3004600210020001f001e01b2000e01b10016001d001c001500350004001400450044004300300003008f0042000d00020001002e00130012004c004b002a00290040004a0049004800470036000f01b0004600210020001f001e01af000e01ae0016001d001c001500350004001400450044004300300003008f00d900d701ad001101ac006101ab009a0010009901aa01a9009800ed0076003b000a01a80006000200010005003a003900090003000b0004000800ec0032009700060077008001a7003800d601a600f701a5001100f0006100ef009a0010009900f500ee009801a40076003b000a0091000c0006000200010005003a003900090003000b0004000801a30017006c01a20007006b01a10007006a01a0019f008b019e00130012008a001a00190065008900020001000500410064002a008800290087008600d5001b019d008500d4003100a1019c0034000800d300d700fa019b0030019a0199001000eb019801970196019500d20194019300320192003f0191000200010064001a0019002e00d100d0000d0063001100cf003f007e00ce001700cd008c005f0067008400110066006200cc00cb00ca00c900c8000f019000c700c600c500c400c300c2018f000e018e00c100c0001600bf00be00bd00bc0014001500bb00ba008d018d00320097000600770080018c003800d6018b00b900130012008a001a00190065008900020001000500410064002a008800290087008600d5001b018a008500d4003100b80034000800d30017004f0010004e004d0007018900b700b600b500b40031018800b3007500b200b100830082008100b001870186008e0185009200d2001a001900650002000100500041000d00130012018400020001002e00d0000d0063001100cf003f007e00ce001700cd008c005f0067008400110066006200cc00cb00ca00c900c8000f018300c700c600c500c400c300c20182000e018100c100c0001600bf00be00bd00bc0014001500bb00ba008d018000b900130012008a001a0019006500890002000100050041017f002a0088002900870086017e0096017d0085003100b800340008017c0017004f0010004e004d0007006400b700b600b500b40031017b00b3007500b200b100830082008100b0017a0179008400110178003f007e0177001701760175005f0067006300110066006200d80033017400f90173017200f401710170016f016e00af00ae00ad016d001b016c016b016a0069016900ac00ab01680068009001670166016501640163001a001900d101620096016100750160015f00830082008100a3015e015d00a0002d0028000a0027000c002600060002000100050025002400090003015c0004001800230022015b001700e700e60007006c00e50007006b00e40007006a00e30007004f0010004e004d000700020001005000e2000d008b005e005d015a005c005b0159015801570156015500af00ae00ad0154005a001b015300690152015100ac00ab015000590068014f014e0058014d00570056014c00550037003300540053014b003e0052003d003c0051014a001b0149006900df00de009000dd007f006800dc00db00600010014800020001002e00130012004c004b002a00290040004a0049004800470036000f0147004600210020001f001e0146000e01450016001d001c0015003500040014004500440043003000030144001300120042002f0042000d008b01430038002d007d002d01420038002d007d002d01410038002d007d002d0140002f000d000000000000000000000000000000aa000000000000013f000000aa002c002c000000000000002c013e000000000000013d013c013b013a00a9000000a800000139013801370136002c01350000000000a700000000000001340133013201310000000000000130012f00000000000000a6012e012d012c012b000000000000012a01290128012700a700000126000001250124012301220121000001200000011f011e011d011c00a90000011b0000000000000000011a000000000000011900000000000001180000000000000117000000000000011600000000011500000000000000000114011300000000000000a601120111011000000000010f0000010e010d00000000010c010b010a010901080000000000000000000000a800000107000000000000010601050104010301020101010000ff0000000000fe0000002c002c002c00fd000000000000000000000000000000000000000000000000000000000000",
508
+ "logIndex": 11,
509
+ "blockHash": "0x37a23386bfd0aec39d4ec79b8343c9a79fe3a91fe115beda3d1fab1b7b4fd273"
510
+ },
511
+ {
512
+ "transactionIndex": 2,
513
+ "blockNumber": 42315244,
514
+ "transactionHash": "0xfd74740c741048d19d7bd90648f4595aacb56c5b9e9f83199a24527286828f08",
515
+ "address": "0x0000000000000000000000000000000000008004",
516
+ "topics": [
517
+ "0xc94722ff13eacf53547c4741dab5228353a05938ffcdd5d4a2d533ae0e618287",
518
+ "0x010001af281cd0d5f17a9675ccab91f77b0aeccf4e157621227489f96d1984e5",
519
+ "0x0000000000000000000000000000000000000000000000000000000000000000"
520
+ ],
521
+ "data": "0x",
522
+ "logIndex": 12,
523
+ "blockHash": "0x37a23386bfd0aec39d4ec79b8343c9a79fe3a91fe115beda3d1fab1b7b4fd273"
524
+ },
525
+ {
526
+ "transactionIndex": 2,
527
+ "blockNumber": 42315244,
528
+ "transactionHash": "0xfd74740c741048d19d7bd90648f4595aacb56c5b9e9f83199a24527286828f08",
529
+ "address": "0x51519cdCDDD05E2ADCFA108f4a960755D9d6ea8b",
530
+ "topics": [
531
+ "0xbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b",
532
+ "0x00000000000000000000000037878481a040e4f6a8856315bdf02be4a1b4bd6c"
533
+ ],
534
+ "data": "0x",
535
+ "logIndex": 13,
536
+ "blockHash": "0x37a23386bfd0aec39d4ec79b8343c9a79fe3a91fe115beda3d1fab1b7b4fd273"
537
+ },
538
+ {
539
+ "transactionIndex": 2,
540
+ "blockNumber": 42315244,
541
+ "transactionHash": "0xfd74740c741048d19d7bd90648f4595aacb56c5b9e9f83199a24527286828f08",
542
+ "address": "0x51519cdCDDD05E2ADCFA108f4a960755D9d6ea8b",
543
+ "topics": [
544
+ "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0",
545
+ "0x0000000000000000000000000000000000000000000000000000000000000000",
546
+ "0x0000000000000000000000007f423e50147930e197daae9f637198e66746d597"
547
+ ],
548
+ "data": "0x",
549
+ "logIndex": 14,
550
+ "blockHash": "0x37a23386bfd0aec39d4ec79b8343c9a79fe3a91fe115beda3d1fab1b7b4fd273"
551
+ },
552
+ {
553
+ "transactionIndex": 2,
554
+ "blockNumber": 42315244,
555
+ "transactionHash": "0xfd74740c741048d19d7bd90648f4595aacb56c5b9e9f83199a24527286828f08",
556
+ "address": "0x51519cdCDDD05E2ADCFA108f4a960755D9d6ea8b",
557
+ "topics": ["0x66fd58e82f7b31a2a5c30e0888f3093efe4e111b00cd2b0c31fe014601293aa0"],
558
+ "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000526159a92a82afe5327d37ef446b68fd9a5ca914",
559
+ "logIndex": 15,
560
+ "blockHash": "0x37a23386bfd0aec39d4ec79b8343c9a79fe3a91fe115beda3d1fab1b7b4fd273"
561
+ },
562
+ {
563
+ "transactionIndex": 2,
564
+ "blockNumber": 42315244,
565
+ "transactionHash": "0xfd74740c741048d19d7bd90648f4595aacb56c5b9e9f83199a24527286828f08",
566
+ "address": "0x51519cdCDDD05E2ADCFA108f4a960755D9d6ea8b",
567
+ "topics": ["0x7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498"],
568
+ "data": "0x0000000000000000000000000000000000000000000000000000000000000001",
569
+ "logIndex": 16,
570
+ "blockHash": "0x37a23386bfd0aec39d4ec79b8343c9a79fe3a91fe115beda3d1fab1b7b4fd273"
571
+ },
572
+ {
573
+ "transactionIndex": 2,
574
+ "blockNumber": 42315244,
575
+ "transactionHash": "0xfd74740c741048d19d7bd90648f4595aacb56c5b9e9f83199a24527286828f08",
576
+ "address": "0x51519cdCDDD05E2ADCFA108f4a960755D9d6ea8b",
577
+ "topics": ["0x7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f"],
578
+ "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000008ea1a989b036f7ef21bb95ce4e7961522ca00287",
579
+ "logIndex": 17,
580
+ "blockHash": "0x37a23386bfd0aec39d4ec79b8343c9a79fe3a91fe115beda3d1fab1b7b4fd273"
581
+ },
582
+ {
583
+ "transactionIndex": 2,
584
+ "blockNumber": 42315244,
585
+ "transactionHash": "0xfd74740c741048d19d7bd90648f4595aacb56c5b9e9f83199a24527286828f08",
586
+ "address": "0x0000000000000000000000000000000000008006",
587
+ "topics": [
588
+ "0x290afdae231a3fc0bbae8b1af63698b0a1d79b21ad17df0342dfb952fe74f8e5",
589
+ "0x0000000000000000000000007f423e50147930e197daae9f637198e66746d597",
590
+ "0x010001af281cd0d5f17a9675ccab91f77b0aeccf4e157621227489f96d1984e5",
591
+ "0x00000000000000000000000051519cdcddd05e2adcfa108f4a960755d9d6ea8b"
592
+ ],
593
+ "data": "0x",
594
+ "logIndex": 18,
595
+ "blockHash": "0x37a23386bfd0aec39d4ec79b8343c9a79fe3a91fe115beda3d1fab1b7b4fd273"
596
+ },
597
+ {
598
+ "transactionIndex": 2,
599
+ "blockNumber": 42315244,
600
+ "transactionHash": "0xfd74740c741048d19d7bd90648f4595aacb56c5b9e9f83199a24527286828f08",
601
+ "address": "0x000000000000000000000000000000000000800A",
602
+ "topics": [
603
+ "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
604
+ "0x0000000000000000000000000000000000000000000000000000000000008001",
605
+ "0x0000000000000000000000007f423e50147930e197daae9f637198e66746d597"
606
+ ],
607
+ "data": "0x00000000000000000000000000000000000000000000000000002e3612b58e40",
608
+ "logIndex": 19,
609
+ "blockHash": "0x37a23386bfd0aec39d4ec79b8343c9a79fe3a91fe115beda3d1fab1b7b4fd273"
610
+ }
611
+ ],
612
+ "blockNumber": 42315244,
613
+ "cumulativeGasUsed": "0",
614
+ "status": 1,
615
+ "byzantium": true
616
+ },
617
+ "args": [
618
+ "0x37878481A040E4F6a8856315bdF02Be4a1B4bd6C",
619
+ "0x8Ea1A989B036f7Ef21bb95CE4E7961522Ca00287",
620
+ "0xc4d66de8000000000000000000000000526159a92a82afe5327d37ef446b68fd9a5ca914"
621
+ ],
622
+ "numDeployments": 1,
623
+ "solcInputHash": "d14112d82bb23a35dc687350b4e61e84",
624
+ "metadata": {
625
+ "llvm_options": [],
626
+ "optimizer_settings": {
627
+ "is_debug_logging_enabled": false,
628
+ "is_fallback_to_size_enabled": false,
629
+ "is_verify_each_enabled": false,
630
+ "level_back_end": "Aggressive",
631
+ "level_middle_end": "Aggressive",
632
+ "level_middle_end_size": "Zero"
633
+ },
634
+ "solc_metadata": "{\"compiler\":{\"version\":\"0.8.25+commit.47b979f3\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_logic\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"admin_\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"_data\",\"type\":\"bytes\"}],\"stateMutability\":\"payable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"previousAdmin\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newAdmin\",\"type\":\"address\"}],\"name\":\"AdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"beacon\",\"type\":\"address\"}],\"name\":\"BeaconUpgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"stateMutability\":\"payable\",\"type\":\"fallback\"},{\"inputs\":[],\"name\":\"admin\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"admin_\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"implementation\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"implementation_\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"}],\"name\":\"upgradeTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"This contract implements a proxy that is upgradeable by an admin. To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector clashing], which can potentially be used in an attack, this contract uses the https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two things that go hand in hand: 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if that call matches one of the admin functions exposed by the proxy itself. 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the implementation. If the admin tries to call a function on the implementation it will fail with an error that says \\\"admin cannot fallback to proxy target\\\". These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due to sudden errors when trying to call a function from the proxy implementation. Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way, you should think of the `ProxyAdmin` instance as the real administrative interface of your proxy.\",\"events\":{\"AdminChanged(address,address)\":{\"details\":\"Emitted when the admin account has changed.\"},\"BeaconUpgraded(address)\":{\"details\":\"Emitted when the beacon is upgraded.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"admin()\":{\"details\":\"Returns the current admin. NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyAdmin}. TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`\"},\"constructor\":{\"details\":\"Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}.\"},\"implementation()\":{\"details\":\"Returns the current implementation. NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyImplementation}. TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`\"},\"upgradeTo(address)\":{\"details\":\"Upgrade the implementation of the proxy. NOTE: Only the admin can call this function. See {ProxyAdmin-upgrade}.\"},\"upgradeToAndCall(address,bytes)\":{\"details\":\"Upgrade the implementation of the proxy, and then call a function from the new implementation as specified by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the proxied contract. NOTE: Only the admin can call this function. See {ProxyAdmin-upgradeAndCall}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"hardhat-deploy/solc_0.8/proxy/OptimizedTransparentUpgradeableProxy.sol\":\"OptimizedTransparentUpgradeableProxy\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"details\":{\"constantOptimizer\":false,\"cse\":false,\"deduplicate\":false,\"inliner\":false,\"jumpdestRemover\":false,\"orderLiterals\":false,\"peephole\":false,\"simpleCounterForLoopUncheckedIncrement\":true,\"yul\":true,\"yulDetails\":{\"optimizerSteps\":\"dhfoDgvulfnTUtnIf[xa[r]EscLMcCTUtTOntnfDIulLculVcul [j]Tpeulxa[rul]xa[r]cLgvifCTUca[r]LSsTFOtfDnca[r]Iulc]jmul[jul] VcTOcul jmul:fDnTOcmu\",\"stackAllocation\":true}},\"runs\":200},\"remappings\":[]},\"sources\":{\"hardhat-deploy/solc_0.8/openzeppelin/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x93b4e21c931252739a1ec13ea31d3d35a5c068be3163ccab83e4d70c40355f03\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bec47f69510a4ace724a15533969ce9479ea9dfef773b1da341c64e8f507cb9b\",\"dweb:/ipfs/QmSu6KnnhhcRAEtdqYncLKw6JEByiptoZR7paqQv2x5CVu\"]},\"hardhat-deploy/solc_0.8/openzeppelin/proxy/ERC1967/ERC1967Proxy.sol\":{\"keccak256\":\"0x6309f9f39dc6f4f45a24f296543867aa358e32946cd6b2874627a996d606b3a0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://4f5abfc32db1d44fd3d38d902879eaeaad827781bb9f954d3ccb8639c55db3c0\",\"dweb:/ipfs/QmVSkxFgWphaUx6w9XdvgwJJuxABdpuVQEbABbRmzd3XFc\"]},\"hardhat-deploy/solc_0.8/openzeppelin/proxy/ERC1967/ERC1967Upgrade.sol\":{\"keccak256\":\"0x17668652127feebed0ce8d9431ef95ccc8c4292f03e3b8cf06c6ca16af396633\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9cbd3212cc9e1dbc383b66ef6b750d58c07c4d73d404c6ec55e4bfed25a8fb6f\",\"dweb:/ipfs/QmPN8XajdLkydiQv2146q1M7nGqYk67Z5SNSjbzFU9MiM5\"]},\"hardhat-deploy/solc_0.8/openzeppelin/proxy/Proxy.sol\":{\"keccak256\":\"0xd5d1fd16e9faff7fcb3a52e02a8d49156f42a38a03f07b5f1810c21c2149a8ab\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60941294a981f6e3ee77c19e503b64c4114b4e7f3261cf489d6898fdd4916522\",\"dweb:/ipfs/QmQVmckpCRrtkCwyPG7ksVo59yjZdtpNerJDzw3hQVB62A\"]},\"hardhat-deploy/solc_0.8/openzeppelin/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xd50a3421ac379ccb1be435fa646d66a65c986b4924f0849839f08692f39dde61\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ada1e030c0231db8d143b44ce92b4d1158eedb087880cad6d8cc7bd7ebe7b354\",\"dweb:/ipfs/QmWZ2NHZweRpz1U9GF6R1h65ri76dnX7fNxLBeM2t5N5Ce\"]},\"hardhat-deploy/solc_0.8/openzeppelin/utils/Address.sol\":{\"keccak256\":\"0x3777e696b62134e6177440dbe6e6601c0c156a443f57167194b67e75527439de\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0bc227c71372eb216b7965a91a09c843e9e9670369af0410d924cf4208a8dabe\",\"dweb:/ipfs/QmTR55ug3diUCsVedV8C6ShstCcbqSNPVEvmCpqc91pEDf\"]},\"hardhat-deploy/solc_0.8/openzeppelin/utils/StorageSlot.sol\":{\"keccak256\":\"0xfe1b7a9aa2a530a9e705b220e26cd584e2fbdc9602a3a1066032b12816b46aca\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://dbaba7fe0fe556cc5ed291e03d271fd27d395250141ecfb57a4b30d528958ff9\",\"dweb:/ipfs/QmWT653X2DyZo8nqEcmFe3yTkrCJv3ptbZLhbgLU3y6abe\"]},\"hardhat-deploy/solc_0.8/proxy/OptimizedTransparentUpgradeableProxy.sol\":{\"keccak256\":\"0xa30117644e27fa5b49e162aae2f62b36c1aca02f801b8c594d46e2024963a534\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c270574add213952363bf451bd512acab5fc48c5a06fc05ad75e99eb4b044b99\",\"dweb:/ipfs/QmNQyg2ZvM59Q6FFg1ukJah2xpg8kvDZnTLRVLtMGKuHL1\"]}},\"version\":1}",
635
+ "solc_version": "0.8.25",
636
+ "solc_zkvm_edition": "1.0.1",
637
+ "zk_version": "1.5.1"
638
+ },
639
+ "bytecode": "0x0004000000000002000600000000000200000000030100190000006004300270000001870340019700030000003103550002000000010355000001870040019d0000000100200190000000bc0000c13d0000008005000039000000400050043f000000040030008c000000fa0000413d000000000201043b000000e0022002700000019c0020009c0000013d0000213d0000019f0020009c000001880000613d000001a00020009c0000015e0000c13d000000440030008c000002680000413d0000000402100370000000000602043b000001890060009c000002680000213d0000002402100370000000000202043b0000018a0020009c000002680000213d0000002304200039000000000034004b000002680000813d0000000407200039000000000171034f000000000401043b0000018a0040009c000002680000213d00000000014200190000002401100039000000000031004b000002680000213d000400000007001d000600000004001d000500000006001d000300000005001d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b0000034b0000c13d00000006090000290000001f01900039000001ae011001970000003f01100039000001ae01100197000000400300043d0000000001130019000000000031004b000000000200001900000001020040390000018a0010009c000000f40000213d0000000100200190000000f40000c13d000000400010043f0000001f0190018f000200000003001d000000000893043600000004020000290000002002200039000000020220036700000005039002720000000503300210000000620000613d0000000004380019000000000502034f0000000006080019000000005705043c0000000006760436000000000046004b0000005e0000c13d000000000001004b000000700000613d000000000232034f00000000033800190000000301100210000000000403043300000000041401cf000000000414022f000000000202043b0000010001100089000000000212022f00000000011201cf000000000141019f0000000000130435000400000008001d000000000198001900000000000104350000018c010000410000000000100439000000050100002900000004001004430000000001000414000001870010009c0000018701008041000000c0011002100000018d011001c700008002020000390615060b0000040f0000000100200190000004210000613d000000000101043b000000000001004b000003370000613d0000018e01000041000000000201041a0000018f022001970000000505000029000000000252019f000000000021041b0000000001000414000001870010009c0000018701008041000000c00110021000000190011001c70000800d0200003900000002030000390000019104000041061506060000040f0000000100200190000002680000613d000000400100043d000600000001001d000001920010009c000000f40000213d00000006030000290000006001300039000000400010043f000000400130003900000193020000410000000000210435000000270100003900000000021304360000019401000041000100000002001d00000000001204350000018c010000410000000000100439000000050100002900000004001004430000000001000414000001870010009c0000018701008041000000c0011002100000018d011001c700008002020000390615060b0000040f0000000100200190000004210000613d000000000101043b000000000001004b000004170000613d0000000201000029000000000201043300000000010004140000000503000029000000040030008c000005030000c13d00000001020000390000000103000031000005160000013d0000001f023000390000018802200197000000a002200039000000400020043f0000001f0230018f00000005043002720000000504400210000000cb0000613d000000a005000039000000a006400039000000000701034f000000007807043c0000000005850436000000000065004b000000c70000c13d000000000002004b000000d90000613d000000000141034f0000000302200210000000a004400039000000000504043300000000052501cf000000000525022f000000000101043b0000010002200089000000000121022f00000000012101cf000000000151019f0000000000140435000000600030008c000002680000413d000000a00700043d000001890070009c000002680000213d000000c00600043d000001890060009c000002680000213d000000e00200043d0000018a0020009c000002680000213d0000001f01200039000000000031004b00000000040000190000018b040080410000018b01100197000000000001004b00000000050000190000018b050040410000018b0010009c000000000504c019000000000005004b000002680000c13d000000a00120003900000000010104330000018a0010009c000002540000a13d000001a80100004100000000001004350000004101000039000000040010043f000001a9010000410000061700010430000000000003004b0000015e0000c13d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b000001710000613d000000020300036700000000010000310000001f0510018f0000018e02000041000000000202041a000000050410027200000005044002100000011d0000613d000000000603034f0000000007000019000000006806043c0000000007870436000000000047004b000001190000c13d0000018902200197000000000005004b0000012b0000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000343034f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000003000414000000040020008c0000026a0000c13d000000030200036700000001030000310000001f0430018f000000050130027200000005011002100000013a0000613d000000000502034f0000000006000019000000005705043c0000000006760436000000000016004b000001360000c13d000000000004004b000002900000613d000002210000013d0000019d0020009c000001d40000613d0000019e0020009c0000015e0000c13d0000000001000416000000000001004b000002680000c13d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b000002960000c13d000000400100043d0000000000210435000001870010009c00000187010080410000004001100210000001a1011001c7000006160001042e0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b000001f40000c13d000000400100043d0000008402100039000001aa0300004100000000003204350000006402100039000001ab0300004100000000003204350000004402100039000001ac03000041000000000032043500000024021000390000004203000039000000000032043500000195020000410000000000210435000000040210003900000020030000390000000000320435000001870010009c00000187010080410000004001100210000001ad011001c70000061700010430000000240030008c000002680000413d0000000002000416000000000002004b000002680000c13d0000000401100370000000000101043b000001890010009c000002680000213d000600000001001d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b0000034b0000c13d000000400200043d000001a20020009c000000f40000213d0000002001200039000400000001001d000000400010043f000500000002001d00000000000204350000018c010000410000000000100439000000060100002900000004001004430000000001000414000001870010009c0000018701008041000000c0011002100000018d011001c700008002020000390615060b0000040f0000000100200190000004210000613d000000000101043b000000000001004b000003370000613d0000018e01000041000000000201041a0000018f022001970000000605000029000000000252019f000000000021041b0000000001000414000001870010009c0000018701008041000000c00110021000000190011001c70000800d0200003900000002030000390000019104000041061506060000040f0000000100200190000002680000613d00000005010000290000000001010433000000000001004b000003f90000c13d0000000001000019000006160001042e0000000001000416000000000001004b000002680000c13d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b000002d70000c13d0000018e01000041000000000101041a0000018901100197000000400200043d0000000000120435000001870020009c00000187020080410000004001200210000001a1011001c7000006160001042e000000020300036700000000010000310000001f0510018f0000018e02000041000000000202041a00000005041002720000000504400210000002020000613d000000000603034f0000000007000019000000006806043c0000000007870436000000000047004b000001fe0000c13d0000018902200197000000000005004b000002100000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000343034f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000003000414000000040020008c0000022d0000c13d000000030200036700000001030000310000001f0430018f000000050130027200000005011002100000021f0000613d000000000502034f0000000006000019000000005705043c0000000006760436000000000016004b0000021b0000c13d000000000004004b000002900000613d0000000304400210000000000501043300000000054501cf000000000545022f000000000212034f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f0000000000210435000002900000013d000001870010009c00000187010080410000006001100210000001870030009c0000018703008041000000c003300210000000000113019f061506100000040f0003000000010355000000000301001900000060033002700000001f0530018f000101870030019d000001870330019700000005043002720000000504400210000002440000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000002400000c13d000000000005004b000002510000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000141034f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000000100200190000002900000c13d000002940000013d0000001f04100039000001ae044001970000003f04400039000001ae04400197000000400800043d0000000004480019000000000084004b000000000500001900000001050040390000018a0040009c000000f40000213d0000000100500190000000f40000c13d000000a003300039000000400040043f0000000009180436000000c0022000390000000004210019000000000034004b000003180000a13d00000000010000190000061700010430000001870010009c00000187010080410000006001100210000001870030009c0000018703008041000000c003300210000000000113019f061506100000040f0003000000010355000000000301001900000060033002700000001f0530018f000101870030019d000001870330019700000005043002720000000504400210000002810000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000027d0000c13d000000000005004b0000028e0000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000141034f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000000100200190000002940000613d000001870030009c00000187030080410000006001300210000006160001042e000000600130021000000617000104300000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b000001710000613d000000020300036700000000010000310000001f0510018f0000018e02000041000000000202041a00000005041002720000000504400210000002b70000613d000000000603034f0000000007000019000000006806043c0000000007870436000000000047004b000002b30000c13d0000018902200197000000000005004b000002c50000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000343034f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000003000414000000040020008c000003840000c13d000000030200036700000001030000310000001f0430018f00000005013002720000000501100210000002d40000613d000000000502034f0000000006000019000000005705043c0000000006760436000000000016004b000002d00000c13d000000000004004b000002900000613d000002210000013d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b000001710000613d000000020300036700000000010000310000001f0510018f0000018e02000041000000000202041a00000005041002720000000504400210000002f80000613d000000000603034f0000000007000019000000006806043c0000000007870436000000000047004b000002f40000c13d0000018902200197000000000005004b000003060000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000343034f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000003000414000000040020008c000003ac0000c13d000000030200036700000001030000310000001f0430018f00000005013002720000000501100210000003150000613d000000000502034f0000000006000019000000005705043c0000000006760436000000000016004b000003110000c13d000000000004004b000002210000c13d000002900000013d000500000008001d000400000006001d000000000001004b000003240000613d000000000300001900000000049300190000000005230019000000000505043300000000005404350000002003300039000000000013004b0000031d0000413d000300000009001d000000000119001900000000000104350000018c010000410000000000100439000600000007001d00000004007004430000000001000414000001870010009c0000018701008041000000c0011002100000018d011001c700008002020000390615060b0000040f0000000100200190000004210000613d000000000101043b000000000001004b0000034c0000c13d000000400100043d0000006402100039000001a60300004100000000003204350000004402100039000001a703000041000000000032043500000024021000390000002d03000039000000000032043500000195020000410000000000210435000000040210003900000020030000390000000000320435000001870010009c00000187010080410000004001100210000001a5011001c70000061700010430061505740000040f000000060100002900000189051001970000018e01000041000000000201041a0000018f02200197000000000252019f000000000021041b0000000001000414000001870010009c0000018701008041000000c00110021000000190011001c70000800d0200003900000002030000390000019104000041061506060000040f0000000603000029000000010020019000000004020000290000000501000029000002680000613d0000000001010433000000000001004b000003d30000c13d000000800020043f0000019601000041000000000021041b0000018901200197000000400200043d000000200320003900000000001304350000000000020435000001870020009c000001870200804100000040012002100000000002000414000001870020009c0000018702008041000000c002200210000000000112019f00000197011001c70000800d0200003900000001030000390000019804000041061506060000040f0000000100200190000002680000613d000000800100043d0000014000000443000001600010044300000020010000390000010000100443000000010100003900000120001004430000019901000041000006160001042e000001870010009c00000187010080410000006001100210000001870030009c0000018703008041000000c003300210000000000113019f061506100000040f0003000000010355000000000301001900000060033002700000001f0530018f000101870030019d0000018703300197000000050430027200000005044002100000039b0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000003970000c13d000000000005004b000003a80000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000141034f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000000100200190000002900000c13d00000060013002100000061700010430000001870010009c00000187010080410000006001100210000001870030009c0000018703008041000000c003300210000000000113019f061506100000040f0003000000010355000000000301001900000060033002700000001f0530018f000101870030019d000001870330019700000005043002720000000504400210000003c30000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000003bf0000c13d000000000005004b000003d00000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000141034f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000000100200190000002900000c13d000002940000013d000000400400043d000001920040009c000000f40000213d0000006001400039000000400010043f0000004001400039000001930200004100000000002104350000002701000039000200000004001d00000000021404360000019401000041000100000002001d00000000001204350000018c01000041000000000010043900000004003004430000000001000414000001870010009c0000018701008041000000c0011002100000018d011001c700008002020000390615060b0000040f0000000100200190000004210000613d000000000101043b000000000001004b000004170000613d0000000501000029000000000201043300000000010004140000000603000029000000040030008c000004220000c13d00000001020000390000000104000031000004350000013d000000400300043d000001920030009c000000f40000213d0000006001300039000000400010043f0000004001300039000001930200004100000000002104350000002701000039000200000003001d00000000021304360000019401000041000300000002001d00000000001204350000018c010000410000000000100439000000060100002900000004001004430000000001000414000001870010009c0000018701008041000000c0011002100000018d011001c700008002020000390615060b0000040f0000000100200190000004210000613d000000000101043b000000000001004b000004870000c13d000000400100043d0000006402100039000001a30300004100000000003204350000004402100039000001a403000041000000000032043500000024021000390000002603000039000003400000013d000000000001042f0000000303000029000001870030009c00000187030080410000004003300210000001870020009c00000187020080410000006002200210000000000232019f000001870010009c0000018701008041000000c001100210000000000112019f0000000602000029061506100000040f000000010220018f00030000000103550000006001100270000101870010019d0000018704100197000000000004004b0000045b0000c13d00000060010000390000008003000039000000000002004b0000000402000029000003640000c13d0000000001010433000000000001004b000004cf0000c13d000000400400043d000600000004001d0000019501000041000000000014043500000004014000390000002002000039000000000021043500000002010000290000000003010433000500000003001d0000002401400039000000000031043500000044024000390000000101000029061505670000040f00000005010000290000001f01100039000001ae011001970000004401100039000001870010009c00000187010080410000000602000029000001870020009c000001870200804100000060011002100000004002200210000000000121019f00000617000104300000018a0040009c000000f40000213d0000001f01400039000001ae011001970000003f01100039000001ae03100197000000400100043d0000000003310019000000000013004b000000000500001900000001050040390000018a0030009c000000f40000213d0000000100500190000000f40000c13d000000400030043f0000001f0540018f0000000003410436000000030600036700000005044002720000000504400210000004780000613d0000000007430019000000000806034f0000000009030019000000008a08043c0000000009a90436000000000079004b000004740000c13d000000000005004b000004390000613d000000000646034f00000000044300190000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000004390000013d0000000501000029000000000201043300000000010004140000000603000029000000040030008c000004900000c13d00000001020000390000000104000031000004a30000013d0000000403000029000001870030009c00000187030080410000004003300210000001870020009c00000187020080410000006002200210000000000232019f000001870010009c0000018701008041000000c001100210000000000112019f0000000602000029061506100000040f000000010220018f00030000000103550000006001100270000101870010019d0000018704100197000000000004004b000004d70000c13d00000060010000390000008003000039000000000002004b000001d20000c13d0000000001010433000000000001004b000004cf0000c13d000000400100043d0000019502000041000000000021043500000004021000390000002003000039000000000032043500000002020000290000000002020433000000240310003900000000002304350000004403100039000000000002004b0000000307000029000004c20000613d000000000400001900000000053400190000000006740019000000000606043300000000006504350000002004400039000000000024004b000004bb0000413d0000001f04200039000001ae04400197000000000232001900000000000204350000004402400039000001870020009c00000187020080410000006002200210000001870010009c00000187010080410000004001100210000000000112019f0000061700010430000001870030009c00000187030080410000004002300210000001870010009c00000187010080410000006001100210000000000121019f00000617000104300000018a0040009c000000f40000213d0000001f01400039000001ae011001970000003f01100039000001ae03100197000000400100043d0000000003310019000000000013004b000000000500001900000001050040390000018a0030009c000000f40000213d0000000100500190000000f40000c13d000000400030043f0000001f0540018f0000000003410436000000030600036700000005044002720000000504400210000004f40000613d0000000007430019000000000806034f0000000009030019000000008a08043c0000000009a90436000000000079004b000004f00000c13d000000000005004b000004a70000613d000000000646034f00000000044300190000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000004a70000013d0000000403000029000001870030009c00000187030080410000004003300210000001870020009c00000187020080410000006002200210000000000232019f000001870010009c0000018701008041000000c001100210000000000112019f0000000502000029061506100000040f000000010220018f00030000000103550000006001100270000101870010019d0000018703100197000000000003004b000005350000c13d0000006001000039000000000002004b000001d20000c13d0000000001010433000000000001004b000005620000c13d000000400100043d0000019502000041000000000021043500000004021000390000002003000039000000000032043500000006020000290000000002020433000000240310003900000000002304350000004403100039000000000002004b0000000107000029000004c20000613d000000000400001900000000053400190000000006740019000000000606043300000000006504350000002004400039000000000024004b0000052d0000413d000004c20000013d0000018a0030009c000000f40000213d0000001f01300039000001ae011001970000003f01100039000001ae04100197000000400100043d0000000004410019000000000014004b000000000500001900000001050040390000018a0040009c000000f40000213d0000000100500190000000f40000c13d000000400040043f0000001f0430018f0000000005310436000300000005001d000000030500036700000005033002720000000503300210000005530000613d00000003080000290000000006380019000000000705034f000000007907043c0000000008980436000000000068004b0000054f0000c13d000000000004004b000005190000613d000000000535034f00000003033000290000000304400210000000000603043300000000064601cf000000000646022f000000000505043b0000010004400089000000000545022f00000000044501cf000000000464019f0000000000430435000005190000013d0000000302000029000001870020009c00000187020080410000004002200210000004d20000013d000000000003004b000005710000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000034004b0000056a0000413d00000000012300190000000000010435000000000001042d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f00000001002001900000059e0000613d000000000101043b00000189011001970000000002000411000000000012004b0000059f0000c13d000000400100043d0000008402100039000001aa0300004100000000003204350000006402100039000001ab0300004100000000003204350000004402100039000001ac03000041000000000032043500000024021000390000004203000039000000000032043500000195020000410000000000210435000000040210003900000020030000390000000000320435000001870010009c00000187010080410000004001100210000001ad011001c70000061700010430000000000001042f000000020300036700000000010000310000001f0410018f0000018e02000041000000000202041a0000000505100272000005ad0000613d0000000506500210000000000703034f0000000008000019000000007907043c0000000008980436000000000068004b000005a90000c13d0000018902200197000000000004004b000005bc0000613d00000003044002100000000505500210000000000605043300000000064601cf000000000646022f000000000353034f000000000303043b0000010004400089000000000343022f00000000034301cf000000000363019f00000000003504350000000003000414000000040020008c000005d90000c13d000000030200036700000001030000310000001f0430018f00000005013002720000000501100210000005cb0000613d000000000502034f0000000006000019000000005705043c0000000006760436000000000016004b000005c70000c13d000000000004004b000005ff0000613d0000000304400210000000000501043300000000054501cf000000000545022f000000000212034f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f0000000000210435000005ff0000013d000001870010009c00000187010080410000006001100210000001870030009c0000018703008041000000c003300210000000000113019f061506100000040f0003000000010355000000000301001900000060033002700000001f0530018f000101870030019d000001870330019700000005043002720000000504400210000005f00000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000005ec0000c13d000000000005004b000005fd0000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000141034f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000000100200190000006030000613d000001870030009c00000187030080410000006001300210000006160001042e00000060013002100000061700010430000000000001042f00000609002104210000000102000039000000000001042d0000000002000019000000000001042d0000060e002104230000000102000039000000000001042d0000000002000019000000000001042d00000613002104250000000102000039000000000001042d0000000002000019000000000001042d0000061500000432000006160001042e0000061700010430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffff80000000000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbcffffffffffffffffffffffff00000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b000000000000000000000000000000000000000000000000ffffffffffffff9f206661696c656400000000000000000000000000000000000000000000000000416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c08c379a000000000000000000000000000000000000000000000000000000000b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610302000000000000000000000000000000000000400000000000000000000000007e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f0000000200000000000000000000000000000080000001000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0200000200000000000000000000000000000044000000000000000000000000000000000000000000000000000000000000000000000000000000005c60da1a000000000000000000000000000000000000000000000000000000005c60da1b00000000000000000000000000000000000000000000000000000000f851a440000000000000000000000000000000000000000000000000000000003659cfe6000000000000000000000000000000000000000000000000000000004f1ef2860000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdf6e74726163740000000000000000000000000000000000000000000000000000416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f00000000000000000000000000000000000000840000000000000000000000006f74206120636f6e747261637400000000000000000000000000000000000000455243313936373a206e657720696d706c656d656e746174696f6e206973206e4e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000006574000000000000000000000000000000000000000000000000000000000000696e2063616e6e6f742066616c6c6261636b20746f2070726f787920746172675472616e73706172656e745570677261646561626c6550726f78793a2061646d00000000000000000000000000000000000000a4000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0",
640
+ "deployedBytecode": "0x0004000000000002000600000000000200000000030100190000006004300270000001870340019700030000003103550002000000010355000001870040019d0000000100200190000000bc0000c13d0000008005000039000000400050043f000000040030008c000000fa0000413d000000000201043b000000e0022002700000019c0020009c0000013d0000213d0000019f0020009c000001880000613d000001a00020009c0000015e0000c13d000000440030008c000002680000413d0000000402100370000000000602043b000001890060009c000002680000213d0000002402100370000000000202043b0000018a0020009c000002680000213d0000002304200039000000000034004b000002680000813d0000000407200039000000000171034f000000000401043b0000018a0040009c000002680000213d00000000014200190000002401100039000000000031004b000002680000213d000400000007001d000600000004001d000500000006001d000300000005001d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b0000034b0000c13d00000006090000290000001f01900039000001ae011001970000003f01100039000001ae01100197000000400300043d0000000001130019000000000031004b000000000200001900000001020040390000018a0010009c000000f40000213d0000000100200190000000f40000c13d000000400010043f0000001f0190018f000200000003001d000000000893043600000004020000290000002002200039000000020220036700000005039002720000000503300210000000620000613d0000000004380019000000000502034f0000000006080019000000005705043c0000000006760436000000000046004b0000005e0000c13d000000000001004b000000700000613d000000000232034f00000000033800190000000301100210000000000403043300000000041401cf000000000414022f000000000202043b0000010001100089000000000212022f00000000011201cf000000000141019f0000000000130435000400000008001d000000000198001900000000000104350000018c010000410000000000100439000000050100002900000004001004430000000001000414000001870010009c0000018701008041000000c0011002100000018d011001c700008002020000390615060b0000040f0000000100200190000004210000613d000000000101043b000000000001004b000003370000613d0000018e01000041000000000201041a0000018f022001970000000505000029000000000252019f000000000021041b0000000001000414000001870010009c0000018701008041000000c00110021000000190011001c70000800d0200003900000002030000390000019104000041061506060000040f0000000100200190000002680000613d000000400100043d000600000001001d000001920010009c000000f40000213d00000006030000290000006001300039000000400010043f000000400130003900000193020000410000000000210435000000270100003900000000021304360000019401000041000100000002001d00000000001204350000018c010000410000000000100439000000050100002900000004001004430000000001000414000001870010009c0000018701008041000000c0011002100000018d011001c700008002020000390615060b0000040f0000000100200190000004210000613d000000000101043b000000000001004b000004170000613d0000000201000029000000000201043300000000010004140000000503000029000000040030008c000005030000c13d00000001020000390000000103000031000005160000013d0000001f023000390000018802200197000000a002200039000000400020043f0000001f0230018f00000005043002720000000504400210000000cb0000613d000000a005000039000000a006400039000000000701034f000000007807043c0000000005850436000000000065004b000000c70000c13d000000000002004b000000d90000613d000000000141034f0000000302200210000000a004400039000000000504043300000000052501cf000000000525022f000000000101043b0000010002200089000000000121022f00000000012101cf000000000151019f0000000000140435000000600030008c000002680000413d000000a00700043d000001890070009c000002680000213d000000c00600043d000001890060009c000002680000213d000000e00200043d0000018a0020009c000002680000213d0000001f01200039000000000031004b00000000040000190000018b040080410000018b01100197000000000001004b00000000050000190000018b050040410000018b0010009c000000000504c019000000000005004b000002680000c13d000000a00120003900000000010104330000018a0010009c000002540000a13d000001a80100004100000000001004350000004101000039000000040010043f000001a9010000410000061700010430000000000003004b0000015e0000c13d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b000001710000613d000000020300036700000000010000310000001f0510018f0000018e02000041000000000202041a000000050410027200000005044002100000011d0000613d000000000603034f0000000007000019000000006806043c0000000007870436000000000047004b000001190000c13d0000018902200197000000000005004b0000012b0000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000343034f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000003000414000000040020008c0000026a0000c13d000000030200036700000001030000310000001f0430018f000000050130027200000005011002100000013a0000613d000000000502034f0000000006000019000000005705043c0000000006760436000000000016004b000001360000c13d000000000004004b000002900000613d000002210000013d0000019d0020009c000001d40000613d0000019e0020009c0000015e0000c13d0000000001000416000000000001004b000002680000c13d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b000002960000c13d000000400100043d0000000000210435000001870010009c00000187010080410000004001100210000001a1011001c7000006160001042e0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b000001f40000c13d000000400100043d0000008402100039000001aa0300004100000000003204350000006402100039000001ab0300004100000000003204350000004402100039000001ac03000041000000000032043500000024021000390000004203000039000000000032043500000195020000410000000000210435000000040210003900000020030000390000000000320435000001870010009c00000187010080410000004001100210000001ad011001c70000061700010430000000240030008c000002680000413d0000000002000416000000000002004b000002680000c13d0000000401100370000000000101043b000001890010009c000002680000213d000600000001001d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b0000034b0000c13d000000400200043d000001a20020009c000000f40000213d0000002001200039000400000001001d000000400010043f000500000002001d00000000000204350000018c010000410000000000100439000000060100002900000004001004430000000001000414000001870010009c0000018701008041000000c0011002100000018d011001c700008002020000390615060b0000040f0000000100200190000004210000613d000000000101043b000000000001004b000003370000613d0000018e01000041000000000201041a0000018f022001970000000605000029000000000252019f000000000021041b0000000001000414000001870010009c0000018701008041000000c00110021000000190011001c70000800d0200003900000002030000390000019104000041061506060000040f0000000100200190000002680000613d00000005010000290000000001010433000000000001004b000003f90000c13d0000000001000019000006160001042e0000000001000416000000000001004b000002680000c13d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b000002d70000c13d0000018e01000041000000000101041a0000018901100197000000400200043d0000000000120435000001870020009c00000187020080410000004001200210000001a1011001c7000006160001042e000000020300036700000000010000310000001f0510018f0000018e02000041000000000202041a00000005041002720000000504400210000002020000613d000000000603034f0000000007000019000000006806043c0000000007870436000000000047004b000001fe0000c13d0000018902200197000000000005004b000002100000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000343034f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000003000414000000040020008c0000022d0000c13d000000030200036700000001030000310000001f0430018f000000050130027200000005011002100000021f0000613d000000000502034f0000000006000019000000005705043c0000000006760436000000000016004b0000021b0000c13d000000000004004b000002900000613d0000000304400210000000000501043300000000054501cf000000000545022f000000000212034f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f0000000000210435000002900000013d000001870010009c00000187010080410000006001100210000001870030009c0000018703008041000000c003300210000000000113019f061506100000040f0003000000010355000000000301001900000060033002700000001f0530018f000101870030019d000001870330019700000005043002720000000504400210000002440000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000002400000c13d000000000005004b000002510000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000141034f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000000100200190000002900000c13d000002940000013d0000001f04100039000001ae044001970000003f04400039000001ae04400197000000400800043d0000000004480019000000000084004b000000000500001900000001050040390000018a0040009c000000f40000213d0000000100500190000000f40000c13d000000a003300039000000400040043f0000000009180436000000c0022000390000000004210019000000000034004b000003180000a13d00000000010000190000061700010430000001870010009c00000187010080410000006001100210000001870030009c0000018703008041000000c003300210000000000113019f061506100000040f0003000000010355000000000301001900000060033002700000001f0530018f000101870030019d000001870330019700000005043002720000000504400210000002810000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000027d0000c13d000000000005004b0000028e0000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000141034f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000000100200190000002940000613d000001870030009c00000187030080410000006001300210000006160001042e000000600130021000000617000104300000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b000001710000613d000000020300036700000000010000310000001f0510018f0000018e02000041000000000202041a00000005041002720000000504400210000002b70000613d000000000603034f0000000007000019000000006806043c0000000007870436000000000047004b000002b30000c13d0000018902200197000000000005004b000002c50000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000343034f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000003000414000000040020008c000003840000c13d000000030200036700000001030000310000001f0430018f00000005013002720000000501100210000002d40000613d000000000502034f0000000006000019000000005705043c0000000006760436000000000016004b000002d00000c13d000000000004004b000002900000613d000002210000013d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b000001710000613d000000020300036700000000010000310000001f0510018f0000018e02000041000000000202041a00000005041002720000000504400210000002f80000613d000000000603034f0000000007000019000000006806043c0000000007870436000000000047004b000002f40000c13d0000018902200197000000000005004b000003060000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000343034f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000003000414000000040020008c000003ac0000c13d000000030200036700000001030000310000001f0430018f00000005013002720000000501100210000003150000613d000000000502034f0000000006000019000000005705043c0000000006760436000000000016004b000003110000c13d000000000004004b000002210000c13d000002900000013d000500000008001d000400000006001d000000000001004b000003240000613d000000000300001900000000049300190000000005230019000000000505043300000000005404350000002003300039000000000013004b0000031d0000413d000300000009001d000000000119001900000000000104350000018c010000410000000000100439000600000007001d00000004007004430000000001000414000001870010009c0000018701008041000000c0011002100000018d011001c700008002020000390615060b0000040f0000000100200190000004210000613d000000000101043b000000000001004b0000034c0000c13d000000400100043d0000006402100039000001a60300004100000000003204350000004402100039000001a703000041000000000032043500000024021000390000002d03000039000000000032043500000195020000410000000000210435000000040210003900000020030000390000000000320435000001870010009c00000187010080410000004001100210000001a5011001c70000061700010430061505740000040f000000060100002900000189051001970000018e01000041000000000201041a0000018f02200197000000000252019f000000000021041b0000000001000414000001870010009c0000018701008041000000c00110021000000190011001c70000800d0200003900000002030000390000019104000041061506060000040f0000000603000029000000010020019000000004020000290000000501000029000002680000613d0000000001010433000000000001004b000003d30000c13d000000800020043f0000019601000041000000000021041b0000018901200197000000400200043d000000200320003900000000001304350000000000020435000001870020009c000001870200804100000040012002100000000002000414000001870020009c0000018702008041000000c002200210000000000112019f00000197011001c70000800d0200003900000001030000390000019804000041061506060000040f0000000100200190000002680000613d000000800100043d0000014000000443000001600010044300000020010000390000010000100443000000010100003900000120001004430000019901000041000006160001042e000001870010009c00000187010080410000006001100210000001870030009c0000018703008041000000c003300210000000000113019f061506100000040f0003000000010355000000000301001900000060033002700000001f0530018f000101870030019d0000018703300197000000050430027200000005044002100000039b0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000003970000c13d000000000005004b000003a80000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000141034f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000000100200190000002900000c13d00000060013002100000061700010430000001870010009c00000187010080410000006001100210000001870030009c0000018703008041000000c003300210000000000113019f061506100000040f0003000000010355000000000301001900000060033002700000001f0530018f000101870030019d000001870330019700000005043002720000000504400210000003c30000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000003bf0000c13d000000000005004b000003d00000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000141034f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000000100200190000002900000c13d000002940000013d000000400400043d000001920040009c000000f40000213d0000006001400039000000400010043f0000004001400039000001930200004100000000002104350000002701000039000200000004001d00000000021404360000019401000041000100000002001d00000000001204350000018c01000041000000000010043900000004003004430000000001000414000001870010009c0000018701008041000000c0011002100000018d011001c700008002020000390615060b0000040f0000000100200190000004210000613d000000000101043b000000000001004b000004170000613d0000000501000029000000000201043300000000010004140000000603000029000000040030008c000004220000c13d00000001020000390000000104000031000004350000013d000000400300043d000001920030009c000000f40000213d0000006001300039000000400010043f0000004001300039000001930200004100000000002104350000002701000039000200000003001d00000000021304360000019401000041000300000002001d00000000001204350000018c010000410000000000100439000000060100002900000004001004430000000001000414000001870010009c0000018701008041000000c0011002100000018d011001c700008002020000390615060b0000040f0000000100200190000004210000613d000000000101043b000000000001004b000004870000c13d000000400100043d0000006402100039000001a30300004100000000003204350000004402100039000001a403000041000000000032043500000024021000390000002603000039000003400000013d000000000001042f0000000303000029000001870030009c00000187030080410000004003300210000001870020009c00000187020080410000006002200210000000000232019f000001870010009c0000018701008041000000c001100210000000000112019f0000000602000029061506100000040f000000010220018f00030000000103550000006001100270000101870010019d0000018704100197000000000004004b0000045b0000c13d00000060010000390000008003000039000000000002004b0000000402000029000003640000c13d0000000001010433000000000001004b000004cf0000c13d000000400400043d000600000004001d0000019501000041000000000014043500000004014000390000002002000039000000000021043500000002010000290000000003010433000500000003001d0000002401400039000000000031043500000044024000390000000101000029061505670000040f00000005010000290000001f01100039000001ae011001970000004401100039000001870010009c00000187010080410000000602000029000001870020009c000001870200804100000060011002100000004002200210000000000121019f00000617000104300000018a0040009c000000f40000213d0000001f01400039000001ae011001970000003f01100039000001ae03100197000000400100043d0000000003310019000000000013004b000000000500001900000001050040390000018a0030009c000000f40000213d0000000100500190000000f40000c13d000000400030043f0000001f0540018f0000000003410436000000030600036700000005044002720000000504400210000004780000613d0000000007430019000000000806034f0000000009030019000000008a08043c0000000009a90436000000000079004b000004740000c13d000000000005004b000004390000613d000000000646034f00000000044300190000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000004390000013d0000000501000029000000000201043300000000010004140000000603000029000000040030008c000004900000c13d00000001020000390000000104000031000004a30000013d0000000403000029000001870030009c00000187030080410000004003300210000001870020009c00000187020080410000006002200210000000000232019f000001870010009c0000018701008041000000c001100210000000000112019f0000000602000029061506100000040f000000010220018f00030000000103550000006001100270000101870010019d0000018704100197000000000004004b000004d70000c13d00000060010000390000008003000039000000000002004b000001d20000c13d0000000001010433000000000001004b000004cf0000c13d000000400100043d0000019502000041000000000021043500000004021000390000002003000039000000000032043500000002020000290000000002020433000000240310003900000000002304350000004403100039000000000002004b0000000307000029000004c20000613d000000000400001900000000053400190000000006740019000000000606043300000000006504350000002004400039000000000024004b000004bb0000413d0000001f04200039000001ae04400197000000000232001900000000000204350000004402400039000001870020009c00000187020080410000006002200210000001870010009c00000187010080410000004001100210000000000112019f0000061700010430000001870030009c00000187030080410000004002300210000001870010009c00000187010080410000006001100210000000000121019f00000617000104300000018a0040009c000000f40000213d0000001f01400039000001ae011001970000003f01100039000001ae03100197000000400100043d0000000003310019000000000013004b000000000500001900000001050040390000018a0030009c000000f40000213d0000000100500190000000f40000c13d000000400030043f0000001f0540018f0000000003410436000000030600036700000005044002720000000504400210000004f40000613d0000000007430019000000000806034f0000000009030019000000008a08043c0000000009a90436000000000079004b000004f00000c13d000000000005004b000004a70000613d000000000646034f00000000044300190000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000004a70000013d0000000403000029000001870030009c00000187030080410000004003300210000001870020009c00000187020080410000006002200210000000000232019f000001870010009c0000018701008041000000c001100210000000000112019f0000000502000029061506100000040f000000010220018f00030000000103550000006001100270000101870010019d0000018703100197000000000003004b000005350000c13d0000006001000039000000000002004b000001d20000c13d0000000001010433000000000001004b000005620000c13d000000400100043d0000019502000041000000000021043500000004021000390000002003000039000000000032043500000006020000290000000002020433000000240310003900000000002304350000004403100039000000000002004b0000000107000029000004c20000613d000000000400001900000000053400190000000006740019000000000606043300000000006504350000002004400039000000000024004b0000052d0000413d000004c20000013d0000018a0030009c000000f40000213d0000001f01300039000001ae011001970000003f01100039000001ae04100197000000400100043d0000000004410019000000000014004b000000000500001900000001050040390000018a0040009c000000f40000213d0000000100500190000000f40000c13d000000400040043f0000001f0430018f0000000005310436000300000005001d000000030500036700000005033002720000000503300210000005530000613d00000003080000290000000006380019000000000705034f000000007907043c0000000008980436000000000068004b0000054f0000c13d000000000004004b000005190000613d000000000535034f00000003033000290000000304400210000000000603043300000000064601cf000000000646022f000000000505043b0000010004400089000000000545022f00000000044501cf000000000464019f0000000000430435000005190000013d0000000302000029000001870020009c00000187020080410000004002200210000004d20000013d000000000003004b000005710000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000034004b0000056a0000413d00000000012300190000000000010435000000000001042d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f00000001002001900000059e0000613d000000000101043b00000189011001970000000002000411000000000012004b0000059f0000c13d000000400100043d0000008402100039000001aa0300004100000000003204350000006402100039000001ab0300004100000000003204350000004402100039000001ac03000041000000000032043500000024021000390000004203000039000000000032043500000195020000410000000000210435000000040210003900000020030000390000000000320435000001870010009c00000187010080410000004001100210000001ad011001c70000061700010430000000000001042f000000020300036700000000010000310000001f0410018f0000018e02000041000000000202041a0000000505100272000005ad0000613d0000000506500210000000000703034f0000000008000019000000007907043c0000000008980436000000000068004b000005a90000c13d0000018902200197000000000004004b000005bc0000613d00000003044002100000000505500210000000000605043300000000064601cf000000000646022f000000000353034f000000000303043b0000010004400089000000000343022f00000000034301cf000000000363019f00000000003504350000000003000414000000040020008c000005d90000c13d000000030200036700000001030000310000001f0430018f00000005013002720000000501100210000005cb0000613d000000000502034f0000000006000019000000005705043c0000000006760436000000000016004b000005c70000c13d000000000004004b000005ff0000613d0000000304400210000000000501043300000000054501cf000000000545022f000000000212034f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f0000000000210435000005ff0000013d000001870010009c00000187010080410000006001100210000001870030009c0000018703008041000000c003300210000000000113019f061506100000040f0003000000010355000000000301001900000060033002700000001f0530018f000101870030019d000001870330019700000005043002720000000504400210000005f00000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000005ec0000c13d000000000005004b000005fd0000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000141034f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000000100200190000006030000613d000001870030009c00000187030080410000006001300210000006160001042e00000060013002100000061700010430000000000001042f00000609002104210000000102000039000000000001042d0000000002000019000000000001042d0000060e002104230000000102000039000000000001042d0000000002000019000000000001042d00000613002104250000000102000039000000000001042d0000000002000019000000000001042d0000061500000432000006160001042e0000061700010430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffff80000000000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbcffffffffffffffffffffffff00000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b000000000000000000000000000000000000000000000000ffffffffffffff9f206661696c656400000000000000000000000000000000000000000000000000416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c08c379a000000000000000000000000000000000000000000000000000000000b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610302000000000000000000000000000000000000400000000000000000000000007e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f0000000200000000000000000000000000000080000001000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0200000200000000000000000000000000000044000000000000000000000000000000000000000000000000000000000000000000000000000000005c60da1a000000000000000000000000000000000000000000000000000000005c60da1b00000000000000000000000000000000000000000000000000000000f851a440000000000000000000000000000000000000000000000000000000003659cfe6000000000000000000000000000000000000000000000000000000004f1ef2860000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdf6e74726163740000000000000000000000000000000000000000000000000000416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f00000000000000000000000000000000000000840000000000000000000000006f74206120636f6e747261637400000000000000000000000000000000000000455243313936373a206e657720696d706c656d656e746174696f6e206973206e4e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000006574000000000000000000000000000000000000000000000000000000000000696e2063616e6e6f742066616c6c6261636b20746f2070726f787920746172675472616e73706172656e745570677261646561626c6550726f78793a2061646d00000000000000000000000000000000000000a4000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0",
641
+ "execute": {
642
+ "methodName": "initialize",
643
+ "args": ["0x526159A92A82afE5327d37Ef446b68FD9a5cA914"]
644
+ },
645
+ "implementation": "0x37878481A040E4F6a8856315bdF02Be4a1B4bd6C",
646
+ "devdoc": {
647
+ "details": "This contract implements a proxy that is upgradeable by an admin. To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector clashing], which can potentially be used in an attack, this contract uses the https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two things that go hand in hand: 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if that call matches one of the admin functions exposed by the proxy itself. 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the implementation. If the admin tries to call a function on the implementation it will fail with an error that says \"admin cannot fallback to proxy target\". These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due to sudden errors when trying to call a function from the proxy implementation. Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way, you should think of the `ProxyAdmin` instance as the real administrative interface of your proxy.",
648
+ "events": {
649
+ "AdminChanged(address,address)": {
650
+ "details": "Emitted when the admin account has changed."
651
+ },
652
+ "BeaconUpgraded(address)": {
653
+ "details": "Emitted when the beacon is upgraded."
654
+ },
655
+ "Upgraded(address)": {
656
+ "details": "Emitted when the implementation is upgraded."
657
+ }
658
+ },
659
+ "kind": "dev",
660
+ "methods": {
661
+ "admin()": {
662
+ "details": "Returns the current admin. NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyAdmin}. TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`"
663
+ },
664
+ "constructor": {
665
+ "details": "Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}."
666
+ },
667
+ "implementation()": {
668
+ "details": "Returns the current implementation. NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyImplementation}. TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`"
669
+ },
670
+ "upgradeTo(address)": {
671
+ "details": "Upgrade the implementation of the proxy. NOTE: Only the admin can call this function. See {ProxyAdmin-upgrade}."
672
+ },
673
+ "upgradeToAndCall(address,bytes)": {
674
+ "details": "Upgrade the implementation of the proxy, and then call a function from the new implementation as specified by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the proxied contract. NOTE: Only the admin can call this function. See {ProxyAdmin-upgradeAndCall}."
675
+ }
676
+ },
677
+ "version": 1
678
+ },
679
+ "userdoc": {
680
+ "kind": "user",
681
+ "methods": {},
682
+ "version": 1
683
+ },
684
+ "storageLayout": {
685
+ "storage": [],
686
+ "types": null
687
+ }
688
+ }