@venusprotocol/venus-periphery 1.2.0-slim-dev.4 → 1.2.0-slim-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.
- package/artifacts/contracts/DeviationSentinel/DeviationSentinel.sol/DeviationSentinel.json +15 -128
- package/artifacts/contracts/DeviationSentinel/Oracles/PancakeSwapOracle.sol/PancakeSwapOracle.json +2 -2
- package/artifacts/contracts/DeviationSentinel/Oracles/SentinelOracle.sol/SentinelOracle.json +2 -2
- package/artifacts/contracts/DeviationSentinel/Oracles/UniswapOracle.sol/UniswapOracle.json +2 -2
- package/artifacts/contracts/EmergencyBrake/EBrake.sol/EBrake.json +866 -0
- package/artifacts/contracts/EmergencyBrake/IEBrake.sol/IEBrake.json +607 -0
- package/artifacts/contracts/Interfaces/IComptroller.sol/IComptroller.json +79 -4
- package/artifacts/contracts/Interfaces/ICorePoolComptroller.sol/ICorePoolComptroller.json +165 -4
- package/artifacts/contracts/Interfaces/IILComptroller.sol/IILComptroller.json +2 -2
- package/artifacts/contracts/Interfaces/IVBNB.sol/IVBNB.json +37 -0
- package/artifacts/contracts/Interfaces/IVToken.sol/IVToken.json +37 -0
- package/artifacts/contracts/LeverageManager/LeverageStrategiesManager.sol/LeverageStrategiesManager.json +2 -2
- package/artifacts/contracts/Libraries/FixedPoint96.sol/FixedPoint96.json +2 -2
- package/artifacts/contracts/Libraries/FullMath.sol/FullMath.json +2 -2
- package/artifacts/contracts/PositionSwapper/PositionSwapper.sol/PositionSwapper.json +2 -2
- package/artifacts/contracts/RelativePositionManager/IPositionAccount.sol/IPositionAccount.json +250 -0
- package/artifacts/contracts/RelativePositionManager/IRelativePositionManager.sol/IRelativePositionManager.json +1580 -0
- package/artifacts/contracts/RelativePositionManager/PositionAccount.sol/PositionAccount.json +448 -0
- package/artifacts/contracts/RelativePositionManager/RelativePositionManager.sol/RelativePositionManager.json +2021 -0
- package/artifacts/contracts/SwapHelper/SwapHelper.sol/SwapHelper.json +2 -2
- package/artifacts/contracts/SwapRouter/SwapRouter.sol/SwapRouter.json +2 -2
- package/artifacts/contracts/pendle-pt-fixed-rate-vault/PendlePTVaultAdapter.sol/PendlePTVaultAdapter.json +2 -2
- package/artifacts/contracts/pendle-pt-fixed-rate-vault/test/AggregatorMock.sol/AggregatorMock.json +2 -2
- package/artifacts/contracts/test/MockTarget.sol/MockTarget.json +2 -2
- package/deployments/bscmainnet_addresses.json +8 -1
- package/deployments/bsctestnet_addresses.json +12 -2
- package/package.json +1 -1
|
@@ -0,0 +1,866 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "EBrake",
|
|
4
|
+
"sourceName": "contracts/EmergencyBrake/EBrake.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "contract ICorePoolComptroller",
|
|
10
|
+
"name": "corePoolComptroller_",
|
|
11
|
+
"type": "address"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"internalType": "bool",
|
|
15
|
+
"name": "isIsolatedPool_",
|
|
16
|
+
"type": "bool"
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
"stateMutability": "nonpayable",
|
|
20
|
+
"type": "constructor"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"inputs": [
|
|
24
|
+
{
|
|
25
|
+
"internalType": "uint256",
|
|
26
|
+
"name": "expected",
|
|
27
|
+
"type": "uint256"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"internalType": "uint256",
|
|
31
|
+
"name": "actual",
|
|
32
|
+
"type": "uint256"
|
|
33
|
+
}
|
|
34
|
+
],
|
|
35
|
+
"name": "ArrayLengthMismatch",
|
|
36
|
+
"type": "error"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"inputs": [
|
|
40
|
+
{
|
|
41
|
+
"internalType": "address",
|
|
42
|
+
"name": "market",
|
|
43
|
+
"type": "address"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"internalType": "uint96",
|
|
47
|
+
"name": "poolId",
|
|
48
|
+
"type": "uint96"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"internalType": "uint256",
|
|
52
|
+
"name": "currentCF",
|
|
53
|
+
"type": "uint256"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"internalType": "uint256",
|
|
57
|
+
"name": "requestedCF",
|
|
58
|
+
"type": "uint256"
|
|
59
|
+
}
|
|
60
|
+
],
|
|
61
|
+
"name": "CFExceedsCurrent",
|
|
62
|
+
"type": "error"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"inputs": [
|
|
66
|
+
{
|
|
67
|
+
"internalType": "address",
|
|
68
|
+
"name": "market",
|
|
69
|
+
"type": "address"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"internalType": "uint256",
|
|
73
|
+
"name": "currentCap",
|
|
74
|
+
"type": "uint256"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"internalType": "uint256",
|
|
78
|
+
"name": "requestedCap",
|
|
79
|
+
"type": "uint256"
|
|
80
|
+
}
|
|
81
|
+
],
|
|
82
|
+
"name": "CapExceedsCurrent",
|
|
83
|
+
"type": "error"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"inputs": [],
|
|
87
|
+
"name": "EmptyArray",
|
|
88
|
+
"type": "error"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"inputs": [
|
|
92
|
+
{
|
|
93
|
+
"internalType": "enum IComptroller.Action",
|
|
94
|
+
"name": "action",
|
|
95
|
+
"type": "uint8"
|
|
96
|
+
}
|
|
97
|
+
],
|
|
98
|
+
"name": "ForbiddenAction",
|
|
99
|
+
"type": "error"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"inputs": [
|
|
103
|
+
{
|
|
104
|
+
"internalType": "uint96",
|
|
105
|
+
"name": "poolId",
|
|
106
|
+
"type": "uint96"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"internalType": "address",
|
|
110
|
+
"name": "market",
|
|
111
|
+
"type": "address"
|
|
112
|
+
}
|
|
113
|
+
],
|
|
114
|
+
"name": "MarketNotListed",
|
|
115
|
+
"type": "error"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"inputs": [],
|
|
119
|
+
"name": "NotSupportedOnIsolatedPool",
|
|
120
|
+
"type": "error"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"inputs": [
|
|
124
|
+
{
|
|
125
|
+
"internalType": "uint256",
|
|
126
|
+
"name": "errorCode",
|
|
127
|
+
"type": "uint256"
|
|
128
|
+
}
|
|
129
|
+
],
|
|
130
|
+
"name": "SetCollateralFactorFailed",
|
|
131
|
+
"type": "error"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"inputs": [
|
|
135
|
+
{
|
|
136
|
+
"internalType": "address",
|
|
137
|
+
"name": "sender",
|
|
138
|
+
"type": "address"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"internalType": "address",
|
|
142
|
+
"name": "calledContract",
|
|
143
|
+
"type": "address"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"internalType": "string",
|
|
147
|
+
"name": "methodSignature",
|
|
148
|
+
"type": "string"
|
|
149
|
+
}
|
|
150
|
+
],
|
|
151
|
+
"name": "Unauthorized",
|
|
152
|
+
"type": "error"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"inputs": [],
|
|
156
|
+
"name": "ZeroAddress",
|
|
157
|
+
"type": "error"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"anonymous": false,
|
|
161
|
+
"inputs": [
|
|
162
|
+
{
|
|
163
|
+
"indexed": true,
|
|
164
|
+
"internalType": "address",
|
|
165
|
+
"name": "caller",
|
|
166
|
+
"type": "address"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"indexed": true,
|
|
170
|
+
"internalType": "address",
|
|
171
|
+
"name": "market",
|
|
172
|
+
"type": "address"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"indexed": false,
|
|
176
|
+
"internalType": "enum IComptroller.Action",
|
|
177
|
+
"name": "action",
|
|
178
|
+
"type": "uint8"
|
|
179
|
+
}
|
|
180
|
+
],
|
|
181
|
+
"name": "ActionPaused",
|
|
182
|
+
"type": "event"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"anonymous": false,
|
|
186
|
+
"inputs": [
|
|
187
|
+
{
|
|
188
|
+
"indexed": true,
|
|
189
|
+
"internalType": "address",
|
|
190
|
+
"name": "caller",
|
|
191
|
+
"type": "address"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"indexed": false,
|
|
195
|
+
"internalType": "address[]",
|
|
196
|
+
"name": "markets",
|
|
197
|
+
"type": "address[]"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"indexed": false,
|
|
201
|
+
"internalType": "enum IComptroller.Action[]",
|
|
202
|
+
"name": "actions",
|
|
203
|
+
"type": "uint8[]"
|
|
204
|
+
}
|
|
205
|
+
],
|
|
206
|
+
"name": "ActionsPaused",
|
|
207
|
+
"type": "event"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"anonymous": false,
|
|
211
|
+
"inputs": [
|
|
212
|
+
{
|
|
213
|
+
"indexed": true,
|
|
214
|
+
"internalType": "address",
|
|
215
|
+
"name": "market",
|
|
216
|
+
"type": "address"
|
|
217
|
+
}
|
|
218
|
+
],
|
|
219
|
+
"name": "BorrowCapSnapshotReset",
|
|
220
|
+
"type": "event"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"anonymous": false,
|
|
224
|
+
"inputs": [
|
|
225
|
+
{
|
|
226
|
+
"indexed": true,
|
|
227
|
+
"internalType": "address",
|
|
228
|
+
"name": "caller",
|
|
229
|
+
"type": "address"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"indexed": false,
|
|
233
|
+
"internalType": "address[]",
|
|
234
|
+
"name": "markets",
|
|
235
|
+
"type": "address[]"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"indexed": false,
|
|
239
|
+
"internalType": "uint256[]",
|
|
240
|
+
"name": "newBorrowCaps",
|
|
241
|
+
"type": "uint256[]"
|
|
242
|
+
}
|
|
243
|
+
],
|
|
244
|
+
"name": "BorrowCapsDecreased",
|
|
245
|
+
"type": "event"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"anonymous": false,
|
|
249
|
+
"inputs": [
|
|
250
|
+
{
|
|
251
|
+
"indexed": true,
|
|
252
|
+
"internalType": "address",
|
|
253
|
+
"name": "market",
|
|
254
|
+
"type": "address"
|
|
255
|
+
}
|
|
256
|
+
],
|
|
257
|
+
"name": "CFSnapshotReset",
|
|
258
|
+
"type": "event"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"anonymous": false,
|
|
262
|
+
"inputs": [
|
|
263
|
+
{
|
|
264
|
+
"indexed": true,
|
|
265
|
+
"internalType": "address",
|
|
266
|
+
"name": "caller",
|
|
267
|
+
"type": "address"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"indexed": true,
|
|
271
|
+
"internalType": "address",
|
|
272
|
+
"name": "market",
|
|
273
|
+
"type": "address"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"indexed": true,
|
|
277
|
+
"internalType": "uint96",
|
|
278
|
+
"name": "poolId",
|
|
279
|
+
"type": "uint96"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"indexed": false,
|
|
283
|
+
"internalType": "uint256",
|
|
284
|
+
"name": "newCF",
|
|
285
|
+
"type": "uint256"
|
|
286
|
+
}
|
|
287
|
+
],
|
|
288
|
+
"name": "CollateralFactorDecreased",
|
|
289
|
+
"type": "event"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"anonymous": false,
|
|
293
|
+
"inputs": [
|
|
294
|
+
{
|
|
295
|
+
"indexed": true,
|
|
296
|
+
"internalType": "address",
|
|
297
|
+
"name": "caller",
|
|
298
|
+
"type": "address"
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"indexed": true,
|
|
302
|
+
"internalType": "address",
|
|
303
|
+
"name": "account",
|
|
304
|
+
"type": "address"
|
|
305
|
+
}
|
|
306
|
+
],
|
|
307
|
+
"name": "FlashLoanAccessRevoked",
|
|
308
|
+
"type": "event"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"anonymous": false,
|
|
312
|
+
"inputs": [
|
|
313
|
+
{
|
|
314
|
+
"indexed": true,
|
|
315
|
+
"internalType": "address",
|
|
316
|
+
"name": "caller",
|
|
317
|
+
"type": "address"
|
|
318
|
+
}
|
|
319
|
+
],
|
|
320
|
+
"name": "FlashLoanPaused",
|
|
321
|
+
"type": "event"
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"anonymous": false,
|
|
325
|
+
"inputs": [
|
|
326
|
+
{
|
|
327
|
+
"indexed": false,
|
|
328
|
+
"internalType": "uint8",
|
|
329
|
+
"name": "version",
|
|
330
|
+
"type": "uint8"
|
|
331
|
+
}
|
|
332
|
+
],
|
|
333
|
+
"name": "Initialized",
|
|
334
|
+
"type": "event"
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"anonymous": false,
|
|
338
|
+
"inputs": [
|
|
339
|
+
{
|
|
340
|
+
"indexed": false,
|
|
341
|
+
"internalType": "address",
|
|
342
|
+
"name": "oldAccessControlManager",
|
|
343
|
+
"type": "address"
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"indexed": false,
|
|
347
|
+
"internalType": "address",
|
|
348
|
+
"name": "newAccessControlManager",
|
|
349
|
+
"type": "address"
|
|
350
|
+
}
|
|
351
|
+
],
|
|
352
|
+
"name": "NewAccessControlManager",
|
|
353
|
+
"type": "event"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"anonymous": false,
|
|
357
|
+
"inputs": [
|
|
358
|
+
{
|
|
359
|
+
"indexed": true,
|
|
360
|
+
"internalType": "address",
|
|
361
|
+
"name": "previousOwner",
|
|
362
|
+
"type": "address"
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"indexed": true,
|
|
366
|
+
"internalType": "address",
|
|
367
|
+
"name": "newOwner",
|
|
368
|
+
"type": "address"
|
|
369
|
+
}
|
|
370
|
+
],
|
|
371
|
+
"name": "OwnershipTransferStarted",
|
|
372
|
+
"type": "event"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"anonymous": false,
|
|
376
|
+
"inputs": [
|
|
377
|
+
{
|
|
378
|
+
"indexed": true,
|
|
379
|
+
"internalType": "address",
|
|
380
|
+
"name": "previousOwner",
|
|
381
|
+
"type": "address"
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"indexed": true,
|
|
385
|
+
"internalType": "address",
|
|
386
|
+
"name": "newOwner",
|
|
387
|
+
"type": "address"
|
|
388
|
+
}
|
|
389
|
+
],
|
|
390
|
+
"name": "OwnershipTransferred",
|
|
391
|
+
"type": "event"
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
"anonymous": false,
|
|
395
|
+
"inputs": [
|
|
396
|
+
{
|
|
397
|
+
"indexed": true,
|
|
398
|
+
"internalType": "address",
|
|
399
|
+
"name": "caller",
|
|
400
|
+
"type": "address"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"indexed": true,
|
|
404
|
+
"internalType": "uint96",
|
|
405
|
+
"name": "poolId",
|
|
406
|
+
"type": "uint96"
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"indexed": true,
|
|
410
|
+
"internalType": "address",
|
|
411
|
+
"name": "market",
|
|
412
|
+
"type": "address"
|
|
413
|
+
}
|
|
414
|
+
],
|
|
415
|
+
"name": "PoolBorrowDisabled",
|
|
416
|
+
"type": "event"
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"anonymous": false,
|
|
420
|
+
"inputs": [
|
|
421
|
+
{
|
|
422
|
+
"indexed": true,
|
|
423
|
+
"internalType": "address",
|
|
424
|
+
"name": "market",
|
|
425
|
+
"type": "address"
|
|
426
|
+
}
|
|
427
|
+
],
|
|
428
|
+
"name": "SupplyCapSnapshotReset",
|
|
429
|
+
"type": "event"
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"anonymous": false,
|
|
433
|
+
"inputs": [
|
|
434
|
+
{
|
|
435
|
+
"indexed": true,
|
|
436
|
+
"internalType": "address",
|
|
437
|
+
"name": "caller",
|
|
438
|
+
"type": "address"
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"indexed": false,
|
|
442
|
+
"internalType": "address[]",
|
|
443
|
+
"name": "markets",
|
|
444
|
+
"type": "address[]"
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"indexed": false,
|
|
448
|
+
"internalType": "uint256[]",
|
|
449
|
+
"name": "newSupplyCaps",
|
|
450
|
+
"type": "uint256[]"
|
|
451
|
+
}
|
|
452
|
+
],
|
|
453
|
+
"name": "SupplyCapsDecreased",
|
|
454
|
+
"type": "event"
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"inputs": [],
|
|
458
|
+
"name": "COMPTROLLER",
|
|
459
|
+
"outputs": [
|
|
460
|
+
{
|
|
461
|
+
"internalType": "contract ICorePoolComptroller",
|
|
462
|
+
"name": "",
|
|
463
|
+
"type": "address"
|
|
464
|
+
}
|
|
465
|
+
],
|
|
466
|
+
"stateMutability": "view",
|
|
467
|
+
"type": "function"
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
"inputs": [],
|
|
471
|
+
"name": "IS_ISOLATED_POOL",
|
|
472
|
+
"outputs": [
|
|
473
|
+
{
|
|
474
|
+
"internalType": "bool",
|
|
475
|
+
"name": "",
|
|
476
|
+
"type": "bool"
|
|
477
|
+
}
|
|
478
|
+
],
|
|
479
|
+
"stateMutability": "view",
|
|
480
|
+
"type": "function"
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"inputs": [],
|
|
484
|
+
"name": "acceptOwnership",
|
|
485
|
+
"outputs": [],
|
|
486
|
+
"stateMutability": "nonpayable",
|
|
487
|
+
"type": "function"
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"inputs": [],
|
|
491
|
+
"name": "accessControlManager",
|
|
492
|
+
"outputs": [
|
|
493
|
+
{
|
|
494
|
+
"internalType": "contract IAccessControlManagerV8",
|
|
495
|
+
"name": "",
|
|
496
|
+
"type": "address"
|
|
497
|
+
}
|
|
498
|
+
],
|
|
499
|
+
"stateMutability": "view",
|
|
500
|
+
"type": "function"
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"inputs": [
|
|
504
|
+
{
|
|
505
|
+
"internalType": "address",
|
|
506
|
+
"name": "market",
|
|
507
|
+
"type": "address"
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"internalType": "uint96",
|
|
511
|
+
"name": "poolId",
|
|
512
|
+
"type": "uint96"
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"internalType": "uint256",
|
|
516
|
+
"name": "newCF",
|
|
517
|
+
"type": "uint256"
|
|
518
|
+
}
|
|
519
|
+
],
|
|
520
|
+
"name": "decreaseCF",
|
|
521
|
+
"outputs": [],
|
|
522
|
+
"stateMutability": "nonpayable",
|
|
523
|
+
"type": "function"
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
"inputs": [
|
|
527
|
+
{
|
|
528
|
+
"internalType": "address",
|
|
529
|
+
"name": "market",
|
|
530
|
+
"type": "address"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"internalType": "uint256",
|
|
534
|
+
"name": "newCF",
|
|
535
|
+
"type": "uint256"
|
|
536
|
+
}
|
|
537
|
+
],
|
|
538
|
+
"name": "decreaseCF",
|
|
539
|
+
"outputs": [],
|
|
540
|
+
"stateMutability": "nonpayable",
|
|
541
|
+
"type": "function"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"inputs": [
|
|
545
|
+
{
|
|
546
|
+
"internalType": "uint96",
|
|
547
|
+
"name": "poolId",
|
|
548
|
+
"type": "uint96"
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
"internalType": "address",
|
|
552
|
+
"name": "market",
|
|
553
|
+
"type": "address"
|
|
554
|
+
}
|
|
555
|
+
],
|
|
556
|
+
"name": "disablePoolBorrow",
|
|
557
|
+
"outputs": [],
|
|
558
|
+
"stateMutability": "nonpayable",
|
|
559
|
+
"type": "function"
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
"inputs": [
|
|
563
|
+
{
|
|
564
|
+
"internalType": "address",
|
|
565
|
+
"name": "market",
|
|
566
|
+
"type": "address"
|
|
567
|
+
},
|
|
568
|
+
{
|
|
569
|
+
"internalType": "uint96",
|
|
570
|
+
"name": "poolId",
|
|
571
|
+
"type": "uint96"
|
|
572
|
+
}
|
|
573
|
+
],
|
|
574
|
+
"name": "getMarketCFSnapshot",
|
|
575
|
+
"outputs": [
|
|
576
|
+
{
|
|
577
|
+
"internalType": "uint256",
|
|
578
|
+
"name": "cf",
|
|
579
|
+
"type": "uint256"
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
"internalType": "uint256",
|
|
583
|
+
"name": "lt",
|
|
584
|
+
"type": "uint256"
|
|
585
|
+
}
|
|
586
|
+
],
|
|
587
|
+
"stateMutability": "view",
|
|
588
|
+
"type": "function"
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"inputs": [
|
|
592
|
+
{
|
|
593
|
+
"internalType": "address",
|
|
594
|
+
"name": "accessControlManager_",
|
|
595
|
+
"type": "address"
|
|
596
|
+
}
|
|
597
|
+
],
|
|
598
|
+
"name": "initialize",
|
|
599
|
+
"outputs": [],
|
|
600
|
+
"stateMutability": "nonpayable",
|
|
601
|
+
"type": "function"
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"inputs": [
|
|
605
|
+
{
|
|
606
|
+
"internalType": "address",
|
|
607
|
+
"name": "",
|
|
608
|
+
"type": "address"
|
|
609
|
+
}
|
|
610
|
+
],
|
|
611
|
+
"name": "marketStates",
|
|
612
|
+
"outputs": [
|
|
613
|
+
{
|
|
614
|
+
"internalType": "uint256",
|
|
615
|
+
"name": "borrowCap",
|
|
616
|
+
"type": "uint256"
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
"internalType": "uint256",
|
|
620
|
+
"name": "supplyCap",
|
|
621
|
+
"type": "uint256"
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"internalType": "bool",
|
|
625
|
+
"name": "borrowCapSnapshotted",
|
|
626
|
+
"type": "bool"
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
"internalType": "bool",
|
|
630
|
+
"name": "supplyCapSnapshotted",
|
|
631
|
+
"type": "bool"
|
|
632
|
+
}
|
|
633
|
+
],
|
|
634
|
+
"stateMutability": "view",
|
|
635
|
+
"type": "function"
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"inputs": [],
|
|
639
|
+
"name": "owner",
|
|
640
|
+
"outputs": [
|
|
641
|
+
{
|
|
642
|
+
"internalType": "address",
|
|
643
|
+
"name": "",
|
|
644
|
+
"type": "address"
|
|
645
|
+
}
|
|
646
|
+
],
|
|
647
|
+
"stateMutability": "view",
|
|
648
|
+
"type": "function"
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
"inputs": [
|
|
652
|
+
{
|
|
653
|
+
"internalType": "address[]",
|
|
654
|
+
"name": "markets",
|
|
655
|
+
"type": "address[]"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"internalType": "enum IComptroller.Action[]",
|
|
659
|
+
"name": "actions",
|
|
660
|
+
"type": "uint8[]"
|
|
661
|
+
}
|
|
662
|
+
],
|
|
663
|
+
"name": "pauseActions",
|
|
664
|
+
"outputs": [],
|
|
665
|
+
"stateMutability": "nonpayable",
|
|
666
|
+
"type": "function"
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"inputs": [
|
|
670
|
+
{
|
|
671
|
+
"internalType": "address",
|
|
672
|
+
"name": "market",
|
|
673
|
+
"type": "address"
|
|
674
|
+
}
|
|
675
|
+
],
|
|
676
|
+
"name": "pauseBorrow",
|
|
677
|
+
"outputs": [],
|
|
678
|
+
"stateMutability": "nonpayable",
|
|
679
|
+
"type": "function"
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"inputs": [],
|
|
683
|
+
"name": "pauseFlashLoan",
|
|
684
|
+
"outputs": [],
|
|
685
|
+
"stateMutability": "nonpayable",
|
|
686
|
+
"type": "function"
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
"inputs": [
|
|
690
|
+
{
|
|
691
|
+
"internalType": "address",
|
|
692
|
+
"name": "market",
|
|
693
|
+
"type": "address"
|
|
694
|
+
}
|
|
695
|
+
],
|
|
696
|
+
"name": "pauseRedeem",
|
|
697
|
+
"outputs": [],
|
|
698
|
+
"stateMutability": "nonpayable",
|
|
699
|
+
"type": "function"
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
"inputs": [
|
|
703
|
+
{
|
|
704
|
+
"internalType": "address",
|
|
705
|
+
"name": "market",
|
|
706
|
+
"type": "address"
|
|
707
|
+
}
|
|
708
|
+
],
|
|
709
|
+
"name": "pauseSupply",
|
|
710
|
+
"outputs": [],
|
|
711
|
+
"stateMutability": "nonpayable",
|
|
712
|
+
"type": "function"
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
"inputs": [
|
|
716
|
+
{
|
|
717
|
+
"internalType": "address",
|
|
718
|
+
"name": "market",
|
|
719
|
+
"type": "address"
|
|
720
|
+
}
|
|
721
|
+
],
|
|
722
|
+
"name": "pauseTransfer",
|
|
723
|
+
"outputs": [],
|
|
724
|
+
"stateMutability": "nonpayable",
|
|
725
|
+
"type": "function"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"inputs": [],
|
|
729
|
+
"name": "pendingOwner",
|
|
730
|
+
"outputs": [
|
|
731
|
+
{
|
|
732
|
+
"internalType": "address",
|
|
733
|
+
"name": "",
|
|
734
|
+
"type": "address"
|
|
735
|
+
}
|
|
736
|
+
],
|
|
737
|
+
"stateMutability": "view",
|
|
738
|
+
"type": "function"
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
"inputs": [],
|
|
742
|
+
"name": "renounceOwnership",
|
|
743
|
+
"outputs": [],
|
|
744
|
+
"stateMutability": "nonpayable",
|
|
745
|
+
"type": "function"
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"inputs": [
|
|
749
|
+
{
|
|
750
|
+
"internalType": "address",
|
|
751
|
+
"name": "market",
|
|
752
|
+
"type": "address"
|
|
753
|
+
}
|
|
754
|
+
],
|
|
755
|
+
"name": "resetBorrowCapSnapshot",
|
|
756
|
+
"outputs": [],
|
|
757
|
+
"stateMutability": "nonpayable",
|
|
758
|
+
"type": "function"
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
"inputs": [
|
|
762
|
+
{
|
|
763
|
+
"internalType": "address",
|
|
764
|
+
"name": "market",
|
|
765
|
+
"type": "address"
|
|
766
|
+
}
|
|
767
|
+
],
|
|
768
|
+
"name": "resetCFSnapshot",
|
|
769
|
+
"outputs": [],
|
|
770
|
+
"stateMutability": "nonpayable",
|
|
771
|
+
"type": "function"
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
"inputs": [
|
|
775
|
+
{
|
|
776
|
+
"internalType": "address",
|
|
777
|
+
"name": "market",
|
|
778
|
+
"type": "address"
|
|
779
|
+
}
|
|
780
|
+
],
|
|
781
|
+
"name": "resetSupplyCapSnapshot",
|
|
782
|
+
"outputs": [],
|
|
783
|
+
"stateMutability": "nonpayable",
|
|
784
|
+
"type": "function"
|
|
785
|
+
},
|
|
786
|
+
{
|
|
787
|
+
"inputs": [
|
|
788
|
+
{
|
|
789
|
+
"internalType": "address",
|
|
790
|
+
"name": "account",
|
|
791
|
+
"type": "address"
|
|
792
|
+
}
|
|
793
|
+
],
|
|
794
|
+
"name": "revokeFlashLoanAccess",
|
|
795
|
+
"outputs": [],
|
|
796
|
+
"stateMutability": "nonpayable",
|
|
797
|
+
"type": "function"
|
|
798
|
+
},
|
|
799
|
+
{
|
|
800
|
+
"inputs": [
|
|
801
|
+
{
|
|
802
|
+
"internalType": "address",
|
|
803
|
+
"name": "accessControlManager_",
|
|
804
|
+
"type": "address"
|
|
805
|
+
}
|
|
806
|
+
],
|
|
807
|
+
"name": "setAccessControlManager",
|
|
808
|
+
"outputs": [],
|
|
809
|
+
"stateMutability": "nonpayable",
|
|
810
|
+
"type": "function"
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
"inputs": [
|
|
814
|
+
{
|
|
815
|
+
"internalType": "address[]",
|
|
816
|
+
"name": "markets",
|
|
817
|
+
"type": "address[]"
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
"internalType": "uint256[]",
|
|
821
|
+
"name": "newBorrowCaps",
|
|
822
|
+
"type": "uint256[]"
|
|
823
|
+
}
|
|
824
|
+
],
|
|
825
|
+
"name": "setMarketBorrowCaps",
|
|
826
|
+
"outputs": [],
|
|
827
|
+
"stateMutability": "nonpayable",
|
|
828
|
+
"type": "function"
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
"inputs": [
|
|
832
|
+
{
|
|
833
|
+
"internalType": "address[]",
|
|
834
|
+
"name": "markets",
|
|
835
|
+
"type": "address[]"
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"internalType": "uint256[]",
|
|
839
|
+
"name": "newSupplyCaps",
|
|
840
|
+
"type": "uint256[]"
|
|
841
|
+
}
|
|
842
|
+
],
|
|
843
|
+
"name": "setMarketSupplyCaps",
|
|
844
|
+
"outputs": [],
|
|
845
|
+
"stateMutability": "nonpayable",
|
|
846
|
+
"type": "function"
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"inputs": [
|
|
850
|
+
{
|
|
851
|
+
"internalType": "address",
|
|
852
|
+
"name": "newOwner",
|
|
853
|
+
"type": "address"
|
|
854
|
+
}
|
|
855
|
+
],
|
|
856
|
+
"name": "transferOwnership",
|
|
857
|
+
"outputs": [],
|
|
858
|
+
"stateMutability": "nonpayable",
|
|
859
|
+
"type": "function"
|
|
860
|
+
}
|
|
861
|
+
],
|
|
862
|
+
"bytecode": "0x60c0346101b857601f612d8a38819003918201601f19168301916001600160401b038311848410176101bc5780849260409485528339810103126101b85780516001600160a01b038116918282036101b857602001519182151583036101b857156101a95760805260a0525f5460ff8160081c166101545760ff8082160361011a575b604051612bb990816101d182396080518181816101f301528181610513015281816106a201528181610c0801528181610edd0152818161108d015281816112f00152818161152e0152818161162e0152818161182f01528181611d8c01528181611f180152818161210a015281816123eb01526125f1015260a051818181610b8d01528181610dd8015281816120b701526123b00152f35b60ff90811916175f557f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498602060405160ff8152a15f610082565b60405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b6064820152608490fd5b63d92e233d60e01b5f5260045ffd5b5f80fd5b634e487b7160e01b5f52604160045260245ffdfe60806040526004361015610011575f80fd5b5f5f3560e01c80630e32cb8614611a81578063186db48f146117bd57806328fee6681461174c57806333564faa1461157f578063370143571461155d5780635f82c67e1461151857806368a7724014611474578063715018a61461140d57806372f262b91461124257806378dac40c1461101e57806379ba509714610f995780638484759914610f8057806387063e5614610e545780638da5cb5b14610e2b578063948f5ff314610dfd578063a2807bff14610dc0578063a348c9b314610d5d578063a8640fb314610b1c578063aff860df14610af3578063b4a0bdf314610aca578063c4d66de814610906578063d136af4414610631578063e054ba1614610464578063e30c39781461043b578063e4b7468e14610392578063f2fde38b146103245763ffbfeb0114610143575f80fd5b346103215760203660031901126103215761015c611b53565b61019560405161016d604082611c02565b601681527570617573655472616e7366657228616464726573732960501b6020820152612976565b604080516101a38282611c02565b6001815260208101601f198301803683376101bd83612a3d565b6001600160a01b03909516948590528351916101d98584611c02565b60018352602083019136833760066101f084612a3d565b527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031692833b1561031f578551630125551160e51b8152606060048201529451606486018190528895949392608486019291875b8181106102fd575050506020906003198684030160248701525191828152019190855b8181106102d657505050839183838180946001604483015203925af180156102cc576102b3575b505051600681525f516020612b645f395f51905f5260203392a380f35b816102bd91611c02565b6102c857825f610296565b8280fd5b83513d84823e3d90fd5b919394955091602080826102ed6001948851611cf6565b019401910191889594939261026f565b82516001600160a01b031685528b98506020948501949092019160010161024c565b875b80fd5b50346103215760203660031901126103215761033e611b53565b6103466128fa565b606580546001600160a01b0319166001600160a01b039283169081179091556033549091167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e227008380a380f35b5034610321576020366003190112610321576103ac611b53565b6103ec6040516103bd604082611c02565b601f81527f7265736574537570706c79436170536e617073686f74286164647265737329006020820152612976565b6001600160a01b031680825260c96020526040822060018101839055600201805461ff00191690557f55da5fd9b1f3e33f3a6315232caf3098eb7d00d94f3a656d6c43f30dc82c40d78280a280f35b50346103215780600319360112610321576065546040516001600160a01b039091168152602090f35b50346103215760203660031901126103215761047e611b53565b6104b560405161048f604082611c02565b6014815273706175736552656465656d28616464726573732960601b6020820152612976565b604080516104c38282611c02565b6001815260208101601f198301803683376104dd83612a3d565b6001600160a01b03909516948590528351916104f98584611c02565b600183526020830191368337600161051084612a3d565b527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031692833b1561031f578551630125551160e51b8152606060048201529451606486018190528895949392608486019291875b81811061060f575050506020906003198684030160248701525191828152019190855b8181106105e857505050839183838180946001604483015203925af180156102cc576105d3575b505051600181525f516020612b645f395f51905f5260203392a380f35b816105dd91611c02565b6102c857825f6105b6565b919394955091602080826105ff6001948851611cf6565b019401910191889594939261058f565b82516001600160a01b031685528b98506020948501949092019160010161056c565b50346103215761064036611b9a565b91610692604051610652606082611c02565b602881527f7365744d61726b6574537570706c794361707328616464726573735b5d2c75696020820152676e743235365b5d2960c01b6040820152612976565b80156108f7578281036108e057847f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031681805b84811061078057506106dd575080f35b803b1561077c5760405163344dabd160e21b815290829082908183816107098b8b8b8f60048601611cb4565b03925af1801561077157610758575b505061074d7f2f772c0af4c206de43add1d27262d9b30456d2782a3f0a6addf8ad0e97cff70093604051938493339785611cb4565b0390a25f8080808480f35b8161076291611c02565b61076d57845f610718565b8480fd5b6040513d84823e3d90fd5b5080fd5b9091925061079761079282868a611c38565b611c5c565b6040516302c3bcbb60e01b81526001600160a01b039091166004820152602081602481875afa9081156108d55789916108a0575b50806107d8838989611c38565b351161086057806107ea838989611c38565b35106107fe575b50600101908792916106cd565b600192508291906001600160a01b0361081b61079284898d611c38565b168a5260c960205260408a2060028101918254908660ff8360081c1615610848575b5050505050906107f1565b61010093015561ff0019161790555f8080808661083d565b85899161087f848a6108796107926064988f8d90611c38565b94611c38565b630ba5256560e01b84526001600160a01b0390921660045260245235604452fd5b90506020813d82116108cd575b816108ba60209383611c02565b810103126108c957515f6107cb565b5f80fd5b3d91506108ad565b6040513d8b823e3d90fd5b631f4bb7c160e31b85526004526024829052604484fd5b63521299a960e01b8552600485fd5b503461032157602036600319011261032157610920611b53565b81549060ff8260081c161591828093610abd575b8015610aa6575b15610a4a5760ff198116600117845582610a39575b506001600160a01b0316908115610a2a5761098360ff845460081c1661097581612b03565b61097e81612b03565b612b03565b61098c33612a4a565b7f66fd58e82f7b31a2a5c30e0888f3093efe4e111b00cd2b0c31fe014601293aa060408454936109c160ff8660081c16612b03565b609780546001600160a01b03198116831790915582516001600160a01b0390911681526020810191909152a16109f5575080f35b61ff00191681557f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498602060405160018152a180f35b63d92e233d60e01b8352600483fd5b61ffff19166101011783555f610950565b60405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608490fd5b50303b15801561093b5750600160ff82161461093b565b50600160ff821610610934565b50346103215780600319360112610321576097546040516001600160a01b039091168152602090f35b503461032157604036600319011261032157610b19610b10611b53565b60243590612353565b80f35b503461032157602036600319011261032157610b36611b53565b610b76604051610b47604082611c02565b601881527f72657365744346536e617073686f7428616464726573732900000000000000006020820152612976565b6001600160a01b031680825260c9602052604082207f000000000000000000000000000000000000000000000000000000000000000015610bf95760049083805260038101602052836040812055838052016020528160408120555b7f2ff5a7f2f0ec7b73aa38498a3fa1e38d65ad62bd3532d4e9739499e72671bfad8280a280f35b604051633518d95360e21b81527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316602082600481845afa918215610d13578592610d1e575b509060206004926040519384809263a657e57960e01b82525afa918215610d13578592610cd7575b50919091906004600382019101915b6001600160601b0384166001600160601b0382161115610ca15750505050610bd2565b610cd06001600160601b03918281165f52836020528760405f20558281165f52846020528760405f2055612322565b9050610c7e565b9091506020813d602011610d0b575b81610cf360209383611c02565b8101031261076d57610d0490612006565b905f610c6f565b3d9150610ce6565b6040513d87823e3d90fd5b91506020823d602011610d55575b81610d3960209383611c02565b8101031261076d576020610d4e600493612006565b9250610c47565b3d9150610d2c565b5034610321576020366003190112610321576080906040906001600160a01b03610d85611b53565b16815260c96020522060ff815491600260018201549101549060405193845260208401528181161515604084015260081c1615156060820152f35b503461032157806003193601126103215760206040517f000000000000000000000000000000000000000000000000000000000000000015158152f35b503461032157606036600319011261032157610b19610e1a611b53565b610e22611bec565b60443591612069565b50346103215780600319360112610321576033546040516001600160a01b039091168152602090f35b5034610321576040366003190112610321576004356001600160601b03811680910361077c576024356001600160a01b03811691908290036102c857610eda604051610ea1606082611c02565b602181527f64697361626c65506f6f6c426f72726f772875696e7439362c616464726573736020820152602960f81b6040820152612976565b827f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316803b1561077c5781809160646040518094819363a89766dd60e01b83528860048401528960248401528160448401525af1801561077157610f6b575b5050337f02ee2305e7f72cc91eeecb8e90a7dd58161b3102cc851ec047e35c4cccc88ab28480a480f35b81610f7591611c02565b6102c857825f610f41565b5034610321578060031936011261032157610b19611ed5565b5034610321578060031936011261032157606554336001600160a01b0390911603610fc757610b1933612a4a565b60405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608490fd5b50346103215761102d36611b9a565b915f93919350611073604051611044604082611c02565b601f81527f7061757365416374696f6e7328616464726573735b5d2c75696e74385b5d29006020820152612976565b8015801561123a575b6108f757845b83811061117c5750847f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316803b1561077c57604051630125551160e51b81526060600482015290829082908183816110fd8c8c6110eb606485018d8f611c70565b84810360031901602486015291611e91565b6001604483015203925af1801561077157611167575b50506111617f3151029b262b30e1c6d06962cf6b2f2c611324b3f9f7cad6936c166e4e01455793611151604051948594604086526040860191611c70565b9083820360208501523396611e91565b0390a280f35b8161117191611c02565b61076d57845f611113565b611187818587611c38565b3560098110801561031f57811515888161122d575b81611207575b816111e2575b506111b7575050600101611082565b63ad8d73f960e01b88526024918891156111d057600452fd5b50634e487b7160e01b81526021600452fd5b90506111f35760068214155f6111a8565b634e487b7160e01b88526021600452602488fd5b809150611219576002831415906111a2565b634e487b7160e01b89526021600452602489fd5b505060018214158861119c565b50821561107c565b50346103215760203660031901126103215761125c611b53565b61129360405161126d604082611c02565b60148152737061757365537570706c7928616464726573732960601b6020820152612976565b604080516112a18282611c02565b6001815260208101601f198301803683376112bb83612a3d565b6001600160a01b03909516948590528351916112d78584611c02565b600183526020830191368337866112ed84612a3d565b527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031692833b1561031f578551630125551160e51b8152606060048201529451606486018190528895949392608486019291875b8181106113eb575050506020906003198684030160248701525191828152019190855b8181106113c457505050839183838180946001604483015203925af180156102cc576113af575b5050518281525f516020612b645f395f51905f5260203392a380f35b816113b991611c02565b6102c857825f611393565b919394955091602080826113db6001948851611cf6565b019401910191889594939261136c565b82516001600160a01b031685528b985060209485019490920191600101611349565b50346103215780600319360112610321576114266128fa565b606580546001600160a01b031990811690915560338054918216905581906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b50346103215760203660031901126103215761148e611b53565b6114ce60405161149f604082611c02565b601f81527f7265736574426f72726f77436170536e617073686f74286164647265737329006020820152612976565b6001600160a01b031680825260c960205260408220828155600201805460ff191690557f4d7a0c707e6af91a406bb884489a24f789299162a1b2270cb0e75357a3482a808280a280f35b50346103215780600319360112610321576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b503461032157602036600319011261032157610b1961157a611b53565b611d24565b503461032157602036600319011261032157611599611b53565b6115d06040516115aa604082611c02565b60148152737061757365426f72726f7728616464726573732960601b6020820152612976565b604080516115de8282611c02565b6001815260208101601f198301803683376115f883612a3d565b6001600160a01b03909516948590528351916116148584611c02565b600183526020830191368337600261162b84612a3d565b527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031692833b1561031f578551630125551160e51b8152606060048201529451606486018190528895949392608486019291875b81811061172a575050506020906003198684030160248701525191828152019190855b81811061170357505050839183838180946001604483015203925af180156102cc576116ee575b505051600281525f516020612b645f395f51905f5260203392a380f35b816116f891611c02565b6102c857825f6116d1565b9193949550916020808261171a6001948851611cf6565b01940191019188959493926116aa565b82516001600160a01b031685528b985060209485019490920191600101611687565b50346103215760403660031901126103215760409060048261176c611b53565b92611775611bec565b9360018060a01b0316815260c9602052206001600160601b0383165f52600381016020526001600160601b03845f205493165f5201602052815f205482519182526020820152f35b50346108c9576117cc36611b9a565b9392916118206040516117e0606082611c02565b602881527f7365744d61726b6574426f72726f774361707328616464726573735b5d2c75696020820152676e743235365b5d2960c01b6040820152612976565b8015611a7257848103611a5b577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165f805b83811061192a575061186a578480f35b803b156108c9575f604051809263186db48f60e01b82528183816118948c8a8a8d60048601611cb4565b03925af1801561191f576118e5575b506118d97fec8944f0657b0079bd31b12024fbfd4e6225fae7b594afb87c7066e49c5ce47e939495604051938493339785611cb4565b0390a2805f8080808480f35b7fec8944f0657b0079bd31b12024fbfd4e6225fae7b594afb87c7066e49c5ce47e9394505f61191391611c02565b6118d95f9493506118a3565b6040513d5f823e3d90fd5b611938610792828689611c38565b60405163252c221960e11b81526001600160a01b039091166004820152602081602481875afa90811561191f575f91611a2a575b5080611979838b89611c38565b35116119f4578061198b838b89611c38565b351061199b575b5060010161185a565b600192508291906001600160a01b036119b861079284898c611c38565b165f5260c96020528360405f20600281019283549160ff8316156119e2575b505050505090611992565b5560ff19161790555f838180806119d7565b611a08828a6108796107928a968a8d611c38565b3591630ba5256560e01b5f5260018060a01b031660045260245260445260645ffd5b90506020813d8211611a53575b81611a4460209383611c02565b810103126108c957515f61196c565b3d9150611a37565b8490631f4bb7c160e31b5f5260045260245260445ffd5b63521299a960e01b5f5260045ffd5b346108c95760203660031901126108c957611a9a611b53565b611aa26128fa565b6001600160a01b03168015611b005760407f66fd58e82f7b31a2a5c30e0888f3093efe4e111b00cd2b0c31fe014601293aa09160975490806001600160601b0360a01b83161760975582519160018060a01b031682526020820152a1005b60405162461bcd60e51b815260206004820152602560248201527f696e76616c696420616365737320636f6e74726f6c206d616e61676572206164604482015264647265737360d81b6064820152608490fd5b600435906001600160a01b03821682036108c957565b9181601f840112156108c95782359167ffffffffffffffff83116108c9576020808501948460051b0101116108c957565b60406003198201126108c95760043567ffffffffffffffff81116108c95781611bc591600401611b69565b929092916024359067ffffffffffffffff82116108c957611be891600401611b69565b9091565b602435906001600160601b03821682036108c957565b90601f8019910116810190811067ffffffffffffffff821117611c2457604052565b634e487b7160e01b5f52604160045260245ffd5b9190811015611c485760051b0190565b634e487b7160e01b5f52603260045260245ffd5b356001600160a01b03811681036108c95790565b916020908281520191905f905b808210611c8a5750505090565b90919283359060018060a01b0382168092036108c957602081600193829352019401920190611c7d565b9190611cc891604084526040840191611c70565b8181036020909201919091528281526001600160fb1b0383116108c95760209260051b809284830137010190565b906009821015611d035752565b634e487b7160e01b5f52602160045260245ffd5b519081151582036108c957565b5f90611d66604051611d37604082611c02565b601e81527f7265766f6b65466c6173684c6f616e41636365737328616464726573732900006020820152612976565b6001600160a01b0316908115611e825760405163e0f6123d60e01b8152600481018390527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690602081602481855afa90811561191f575f91611e48575b5015611e4357803b156108c9575f80916044604051809481936342adb21160e01b83528860048401528160248401525af1801561191f57611e30575b507fa7288a41f82203d75ebef31ebd868f704949bc365a8987cf6c27581920878ed2339180a3565b611e3c91505f90611c02565b5f5f611e08565b505050565b90506020813d602011611e7a575b81611e6360209383611c02565b810103126108c957611e7490611d17565b5f611dcc565b3d9150611e56565b63d92e233d60e01b5f5260045ffd5b916020908281520191905f905b808210611eab5750505090565b90919283359060098210156108c957602081611eca8293600195611cf6565b019401920190611e9e565b5f611f09604051611ee7604082611c02565b601081526f7061757365466c6173684c6f616e282960801b6020820152612976565b604051637fb8e8cd60e01b81527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690602081600481855afa90811561191f575f91611fcc575b50611fc857803b156108c9575f809160246040518094819363d6ad5c3960e01b8352600160048401525af1801561191f57611fb5575b507e9913328f94c535f53281584264847ddcab53bfa1d8375e53bd872b3388f4a2339180a2565b611fc191505f90611c02565b5f5f611f8e565b5050565b90506020813d602011611ffe575b81611fe760209383611c02565b810103126108c957611ff890611d17565b5f611f58565b3d9150611fda565b51906001600160601b03821682036108c957565b908160e09103126108c95761202e81611d17565b9160208201519161204160408201611d17565b9160608201519160808101519161206660c061205f60a08501612006565b9301611d17565b90565b906120b560405161207b606082611c02565b602281527f6465637265617365434628616464726573732c75696e7439362c75696e743235602082015261362960f01b6040820152612976565b7f000000000000000000000000000000000000000000000000000000000000000061231357604051631849e08f60e11b81526001600160601b03821660048201526001600160a01b03838116602483015290927f00000000000000000000000000000000000000000000000000000000000000009091169060e084604481855afa801561191f575f5f955f926122d6575b50156122a85784861161226a57848614612262576121cc92865f6020946121828560018060a01b0383169a8b855260c989528a60408620612a9d565b604051639159b17760e01b81526001600160601b03891660048201526001600160a01b03909116602482015260448101929092526064820193909352938492839182906084820190565b03925af190811561191f575f91612230575b508061221e57506001600160601b039060405193845216917fdb4604ce6118095dd2806bac506c8a24e92820ef943c8aa0343f4aed9cce680560203392a4565b63f69d209960e01b5f5260045260245ffd5b90506020813d60201161225a575b8161224b60209383611c02565b810103126108c957515f6121de565b3d915061223e565b505050505050565b6040516316981def60e11b81526001600160a01b03831660048201526001600160601b03851660248201526044810186905260648101879052608490fd5b5063feab5fd360e01b5f9081526001600160601b0384166004526001600160a01b0391909116602452604490fd5b9150506122fc91945060e03d60e01161230c575b6122f48183611c02565b81019061201a565b505050959290509094905f612146565b503d6122ea565b63456bb6a360e11b5f5260045ffd5b6001600160601b03166001600160601b03811461233f5760010190565b634e487b7160e01b5f52601160045260245ffd5b5f91612395604051612366604082611c02565b601b81527f6465637265617365434628616464726573732c75696e743235362900000000006020820152612976565b6001600160a01b0382165f81815260c96020526040902090927f0000000000000000000000000000000000000000000000000000000000000000156125da5750604051638e8f294b60e01b8152600481018490527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031691606082602481865afa91821561191f575f9261256a575b508151156125535760208201805180861161252957505191828514612520576040019182519160038101915f80528260205260405f20541580612517575b6124f4575b5050505051813b156108c9575f91606483926040519485938492635cc4fdeb60e01b845289600485015288602485015260448401525af1801561191f576124df575b506040519081527fdb4604ce6118095dd2806bac506c8a24e92820ef943c8aa0343f4aed9cce680560203392a4565b6124ec9193505f90611c02565b5f915f6124b0565b6004925f805260205260405f20555f80520160205260405f20555f80808061246e565b50801515612469565b50505050505050565b8686608492604051926316981def60e11b845260048401525f602484015260448301526064820152fd5b8463feab5fd360e01b5f525f60045260245260445ffd5b9091506060813d6060116125d2575b8161258660609383611c02565b810103126108c95760405190606082019082821067ffffffffffffffff831117611c245760409182526125b881611d17565b83526020810151602084015201516040820152905f61242b565b3d9150612579565b604051633518d95360e21b815291959450909291907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690602085600481855afa94851561191f575f956128be575b5060405163a657e57960e01b815294602086600481865afa95861561191f575f96612882575b50604051631849e08f60e11b81526001600160601b03821660048201526001600160a01b038316602482015260e081604481875afa90811561191f575f9161285d575b501561283d575b6001600160601b0381166001600160601b038716811161283257604051631849e08f60e11b81526001600160601b03831660048201526001600160a01b038416602482015260e081604481885afa90811561191f575f5f915f93612808575b50156127fc578a818810156127ef5791612721816020938761276796612a9d565b604051639159b17760e01b81526001600160601b03861660048201526001600160a01b038716602482015260448101899052606481019190915291829081906084820190565b03815f895af190811561191f575f916127be575b508061221e5750906127b991866040518781527fdb4604ce6118095dd2806bac506c8a24e92820ef943c8aa0343f4aed9cce680560203392a4612322565b6126a1565b90506020813d82116127e7575b816127d860209383611c02565b810103126108c957515f61277b565b3d91506127cb565b505050506127b990612322565b5050506127b990612322565b915050612823915060e03d811161230c576122f48183611c02565b50919492505f91506127009050565b505050505050509050565b6001600160601b03859163feab5fd360e01b5f521660045260245260445ffd5b612876915060e03d60e01161230c576122f48183611c02565b5050505050505f61269a565b9095506020813d6020116128b6575b8161289e60209383611c02565b810103126108c9576128af90612006565b945f612657565b3d9150612891565b9094506020813d6020116128f2575b816128da60209383611c02565b810103126108c9576128eb90612006565b935f612631565b3d91506128cd565b6033546001600160a01b0316330361290e57565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b805180835260209291819084018484015e5f828201840152601f01601f1916010190565b609754604080516318c5e8ab60e01b815233600482015260248101919091529060209082906001600160a01b031681806129b36044820188612952565b03915afa90811561191f575f91612a03575b50156129ce5750565b604051634a3fa29360e01b8152336004820152306024820152606060448201529081906129ff906064830190612952565b0390fd5b90506020813d602011612a35575b81612a1e60209383611c02565b810103126108c957612a2f90611d17565b5f6129c5565b3d9150612a11565b805115611c485760200190565b606580546001600160a01b0319908116909155603380549182166001600160a01b0393841690811790915591167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3565b9060038201906001600160601b0381165f528160205260405f20541580612afa575b612acb575b5050505050565b6004936001600160601b03928383165f5260205260405f2055165f520160205260405f20555f80808080612ac4565b50831515612abf565b15612b0a57565b60405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608490fdfe6584207d7d24624da0f658efbdf172757a23bf20758b8016cf04c1b88dca1509a2646970667358221220f4b092c08545b1125b9ae1637947c4a4461909ae25851cfe212555351b623f5464736f6c634300081c0033",
|
|
863
|
+
"deployedBytecode": "0x60806040526004361015610011575f80fd5b5f5f3560e01c80630e32cb8614611a81578063186db48f146117bd57806328fee6681461174c57806333564faa1461157f578063370143571461155d5780635f82c67e1461151857806368a7724014611474578063715018a61461140d57806372f262b91461124257806378dac40c1461101e57806379ba509714610f995780638484759914610f8057806387063e5614610e545780638da5cb5b14610e2b578063948f5ff314610dfd578063a2807bff14610dc0578063a348c9b314610d5d578063a8640fb314610b1c578063aff860df14610af3578063b4a0bdf314610aca578063c4d66de814610906578063d136af4414610631578063e054ba1614610464578063e30c39781461043b578063e4b7468e14610392578063f2fde38b146103245763ffbfeb0114610143575f80fd5b346103215760203660031901126103215761015c611b53565b61019560405161016d604082611c02565b601681527570617573655472616e7366657228616464726573732960501b6020820152612976565b604080516101a38282611c02565b6001815260208101601f198301803683376101bd83612a3d565b6001600160a01b03909516948590528351916101d98584611c02565b60018352602083019136833760066101f084612a3d565b527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031692833b1561031f578551630125551160e51b8152606060048201529451606486018190528895949392608486019291875b8181106102fd575050506020906003198684030160248701525191828152019190855b8181106102d657505050839183838180946001604483015203925af180156102cc576102b3575b505051600681525f516020612b645f395f51905f5260203392a380f35b816102bd91611c02565b6102c857825f610296565b8280fd5b83513d84823e3d90fd5b919394955091602080826102ed6001948851611cf6565b019401910191889594939261026f565b82516001600160a01b031685528b98506020948501949092019160010161024c565b875b80fd5b50346103215760203660031901126103215761033e611b53565b6103466128fa565b606580546001600160a01b0319166001600160a01b039283169081179091556033549091167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e227008380a380f35b5034610321576020366003190112610321576103ac611b53565b6103ec6040516103bd604082611c02565b601f81527f7265736574537570706c79436170536e617073686f74286164647265737329006020820152612976565b6001600160a01b031680825260c96020526040822060018101839055600201805461ff00191690557f55da5fd9b1f3e33f3a6315232caf3098eb7d00d94f3a656d6c43f30dc82c40d78280a280f35b50346103215780600319360112610321576065546040516001600160a01b039091168152602090f35b50346103215760203660031901126103215761047e611b53565b6104b560405161048f604082611c02565b6014815273706175736552656465656d28616464726573732960601b6020820152612976565b604080516104c38282611c02565b6001815260208101601f198301803683376104dd83612a3d565b6001600160a01b03909516948590528351916104f98584611c02565b600183526020830191368337600161051084612a3d565b527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031692833b1561031f578551630125551160e51b8152606060048201529451606486018190528895949392608486019291875b81811061060f575050506020906003198684030160248701525191828152019190855b8181106105e857505050839183838180946001604483015203925af180156102cc576105d3575b505051600181525f516020612b645f395f51905f5260203392a380f35b816105dd91611c02565b6102c857825f6105b6565b919394955091602080826105ff6001948851611cf6565b019401910191889594939261058f565b82516001600160a01b031685528b98506020948501949092019160010161056c565b50346103215761064036611b9a565b91610692604051610652606082611c02565b602881527f7365744d61726b6574537570706c794361707328616464726573735b5d2c75696020820152676e743235365b5d2960c01b6040820152612976565b80156108f7578281036108e057847f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031681805b84811061078057506106dd575080f35b803b1561077c5760405163344dabd160e21b815290829082908183816107098b8b8b8f60048601611cb4565b03925af1801561077157610758575b505061074d7f2f772c0af4c206de43add1d27262d9b30456d2782a3f0a6addf8ad0e97cff70093604051938493339785611cb4565b0390a25f8080808480f35b8161076291611c02565b61076d57845f610718565b8480fd5b6040513d84823e3d90fd5b5080fd5b9091925061079761079282868a611c38565b611c5c565b6040516302c3bcbb60e01b81526001600160a01b039091166004820152602081602481875afa9081156108d55789916108a0575b50806107d8838989611c38565b351161086057806107ea838989611c38565b35106107fe575b50600101908792916106cd565b600192508291906001600160a01b0361081b61079284898d611c38565b168a5260c960205260408a2060028101918254908660ff8360081c1615610848575b5050505050906107f1565b61010093015561ff0019161790555f8080808661083d565b85899161087f848a6108796107926064988f8d90611c38565b94611c38565b630ba5256560e01b84526001600160a01b0390921660045260245235604452fd5b90506020813d82116108cd575b816108ba60209383611c02565b810103126108c957515f6107cb565b5f80fd5b3d91506108ad565b6040513d8b823e3d90fd5b631f4bb7c160e31b85526004526024829052604484fd5b63521299a960e01b8552600485fd5b503461032157602036600319011261032157610920611b53565b81549060ff8260081c161591828093610abd575b8015610aa6575b15610a4a5760ff198116600117845582610a39575b506001600160a01b0316908115610a2a5761098360ff845460081c1661097581612b03565b61097e81612b03565b612b03565b61098c33612a4a565b7f66fd58e82f7b31a2a5c30e0888f3093efe4e111b00cd2b0c31fe014601293aa060408454936109c160ff8660081c16612b03565b609780546001600160a01b03198116831790915582516001600160a01b0390911681526020810191909152a16109f5575080f35b61ff00191681557f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498602060405160018152a180f35b63d92e233d60e01b8352600483fd5b61ffff19166101011783555f610950565b60405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608490fd5b50303b15801561093b5750600160ff82161461093b565b50600160ff821610610934565b50346103215780600319360112610321576097546040516001600160a01b039091168152602090f35b503461032157604036600319011261032157610b19610b10611b53565b60243590612353565b80f35b503461032157602036600319011261032157610b36611b53565b610b76604051610b47604082611c02565b601881527f72657365744346536e617073686f7428616464726573732900000000000000006020820152612976565b6001600160a01b031680825260c9602052604082207f000000000000000000000000000000000000000000000000000000000000000015610bf95760049083805260038101602052836040812055838052016020528160408120555b7f2ff5a7f2f0ec7b73aa38498a3fa1e38d65ad62bd3532d4e9739499e72671bfad8280a280f35b604051633518d95360e21b81527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316602082600481845afa918215610d13578592610d1e575b509060206004926040519384809263a657e57960e01b82525afa918215610d13578592610cd7575b50919091906004600382019101915b6001600160601b0384166001600160601b0382161115610ca15750505050610bd2565b610cd06001600160601b03918281165f52836020528760405f20558281165f52846020528760405f2055612322565b9050610c7e565b9091506020813d602011610d0b575b81610cf360209383611c02565b8101031261076d57610d0490612006565b905f610c6f565b3d9150610ce6565b6040513d87823e3d90fd5b91506020823d602011610d55575b81610d3960209383611c02565b8101031261076d576020610d4e600493612006565b9250610c47565b3d9150610d2c565b5034610321576020366003190112610321576080906040906001600160a01b03610d85611b53565b16815260c96020522060ff815491600260018201549101549060405193845260208401528181161515604084015260081c1615156060820152f35b503461032157806003193601126103215760206040517f000000000000000000000000000000000000000000000000000000000000000015158152f35b503461032157606036600319011261032157610b19610e1a611b53565b610e22611bec565b60443591612069565b50346103215780600319360112610321576033546040516001600160a01b039091168152602090f35b5034610321576040366003190112610321576004356001600160601b03811680910361077c576024356001600160a01b03811691908290036102c857610eda604051610ea1606082611c02565b602181527f64697361626c65506f6f6c426f72726f772875696e7439362c616464726573736020820152602960f81b6040820152612976565b827f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316803b1561077c5781809160646040518094819363a89766dd60e01b83528860048401528960248401528160448401525af1801561077157610f6b575b5050337f02ee2305e7f72cc91eeecb8e90a7dd58161b3102cc851ec047e35c4cccc88ab28480a480f35b81610f7591611c02565b6102c857825f610f41565b5034610321578060031936011261032157610b19611ed5565b5034610321578060031936011261032157606554336001600160a01b0390911603610fc757610b1933612a4a565b60405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608490fd5b50346103215761102d36611b9a565b915f93919350611073604051611044604082611c02565b601f81527f7061757365416374696f6e7328616464726573735b5d2c75696e74385b5d29006020820152612976565b8015801561123a575b6108f757845b83811061117c5750847f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316803b1561077c57604051630125551160e51b81526060600482015290829082908183816110fd8c8c6110eb606485018d8f611c70565b84810360031901602486015291611e91565b6001604483015203925af1801561077157611167575b50506111617f3151029b262b30e1c6d06962cf6b2f2c611324b3f9f7cad6936c166e4e01455793611151604051948594604086526040860191611c70565b9083820360208501523396611e91565b0390a280f35b8161117191611c02565b61076d57845f611113565b611187818587611c38565b3560098110801561031f57811515888161122d575b81611207575b816111e2575b506111b7575050600101611082565b63ad8d73f960e01b88526024918891156111d057600452fd5b50634e487b7160e01b81526021600452fd5b90506111f35760068214155f6111a8565b634e487b7160e01b88526021600452602488fd5b809150611219576002831415906111a2565b634e487b7160e01b89526021600452602489fd5b505060018214158861119c565b50821561107c565b50346103215760203660031901126103215761125c611b53565b61129360405161126d604082611c02565b60148152737061757365537570706c7928616464726573732960601b6020820152612976565b604080516112a18282611c02565b6001815260208101601f198301803683376112bb83612a3d565b6001600160a01b03909516948590528351916112d78584611c02565b600183526020830191368337866112ed84612a3d565b527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031692833b1561031f578551630125551160e51b8152606060048201529451606486018190528895949392608486019291875b8181106113eb575050506020906003198684030160248701525191828152019190855b8181106113c457505050839183838180946001604483015203925af180156102cc576113af575b5050518281525f516020612b645f395f51905f5260203392a380f35b816113b991611c02565b6102c857825f611393565b919394955091602080826113db6001948851611cf6565b019401910191889594939261136c565b82516001600160a01b031685528b985060209485019490920191600101611349565b50346103215780600319360112610321576114266128fa565b606580546001600160a01b031990811690915560338054918216905581906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b50346103215760203660031901126103215761148e611b53565b6114ce60405161149f604082611c02565b601f81527f7265736574426f72726f77436170536e617073686f74286164647265737329006020820152612976565b6001600160a01b031680825260c960205260408220828155600201805460ff191690557f4d7a0c707e6af91a406bb884489a24f789299162a1b2270cb0e75357a3482a808280a280f35b50346103215780600319360112610321576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b503461032157602036600319011261032157610b1961157a611b53565b611d24565b503461032157602036600319011261032157611599611b53565b6115d06040516115aa604082611c02565b60148152737061757365426f72726f7728616464726573732960601b6020820152612976565b604080516115de8282611c02565b6001815260208101601f198301803683376115f883612a3d565b6001600160a01b03909516948590528351916116148584611c02565b600183526020830191368337600261162b84612a3d565b527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031692833b1561031f578551630125551160e51b8152606060048201529451606486018190528895949392608486019291875b81811061172a575050506020906003198684030160248701525191828152019190855b81811061170357505050839183838180946001604483015203925af180156102cc576116ee575b505051600281525f516020612b645f395f51905f5260203392a380f35b816116f891611c02565b6102c857825f6116d1565b9193949550916020808261171a6001948851611cf6565b01940191019188959493926116aa565b82516001600160a01b031685528b985060209485019490920191600101611687565b50346103215760403660031901126103215760409060048261176c611b53565b92611775611bec565b9360018060a01b0316815260c9602052206001600160601b0383165f52600381016020526001600160601b03845f205493165f5201602052815f205482519182526020820152f35b50346108c9576117cc36611b9a565b9392916118206040516117e0606082611c02565b602881527f7365744d61726b6574426f72726f774361707328616464726573735b5d2c75696020820152676e743235365b5d2960c01b6040820152612976565b8015611a7257848103611a5b577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165f805b83811061192a575061186a578480f35b803b156108c9575f604051809263186db48f60e01b82528183816118948c8a8a8d60048601611cb4565b03925af1801561191f576118e5575b506118d97fec8944f0657b0079bd31b12024fbfd4e6225fae7b594afb87c7066e49c5ce47e939495604051938493339785611cb4565b0390a2805f8080808480f35b7fec8944f0657b0079bd31b12024fbfd4e6225fae7b594afb87c7066e49c5ce47e9394505f61191391611c02565b6118d95f9493506118a3565b6040513d5f823e3d90fd5b611938610792828689611c38565b60405163252c221960e11b81526001600160a01b039091166004820152602081602481875afa90811561191f575f91611a2a575b5080611979838b89611c38565b35116119f4578061198b838b89611c38565b351061199b575b5060010161185a565b600192508291906001600160a01b036119b861079284898c611c38565b165f5260c96020528360405f20600281019283549160ff8316156119e2575b505050505090611992565b5560ff19161790555f838180806119d7565b611a08828a6108796107928a968a8d611c38565b3591630ba5256560e01b5f5260018060a01b031660045260245260445260645ffd5b90506020813d8211611a53575b81611a4460209383611c02565b810103126108c957515f61196c565b3d9150611a37565b8490631f4bb7c160e31b5f5260045260245260445ffd5b63521299a960e01b5f5260045ffd5b346108c95760203660031901126108c957611a9a611b53565b611aa26128fa565b6001600160a01b03168015611b005760407f66fd58e82f7b31a2a5c30e0888f3093efe4e111b00cd2b0c31fe014601293aa09160975490806001600160601b0360a01b83161760975582519160018060a01b031682526020820152a1005b60405162461bcd60e51b815260206004820152602560248201527f696e76616c696420616365737320636f6e74726f6c206d616e61676572206164604482015264647265737360d81b6064820152608490fd5b600435906001600160a01b03821682036108c957565b9181601f840112156108c95782359167ffffffffffffffff83116108c9576020808501948460051b0101116108c957565b60406003198201126108c95760043567ffffffffffffffff81116108c95781611bc591600401611b69565b929092916024359067ffffffffffffffff82116108c957611be891600401611b69565b9091565b602435906001600160601b03821682036108c957565b90601f8019910116810190811067ffffffffffffffff821117611c2457604052565b634e487b7160e01b5f52604160045260245ffd5b9190811015611c485760051b0190565b634e487b7160e01b5f52603260045260245ffd5b356001600160a01b03811681036108c95790565b916020908281520191905f905b808210611c8a5750505090565b90919283359060018060a01b0382168092036108c957602081600193829352019401920190611c7d565b9190611cc891604084526040840191611c70565b8181036020909201919091528281526001600160fb1b0383116108c95760209260051b809284830137010190565b906009821015611d035752565b634e487b7160e01b5f52602160045260245ffd5b519081151582036108c957565b5f90611d66604051611d37604082611c02565b601e81527f7265766f6b65466c6173684c6f616e41636365737328616464726573732900006020820152612976565b6001600160a01b0316908115611e825760405163e0f6123d60e01b8152600481018390527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690602081602481855afa90811561191f575f91611e48575b5015611e4357803b156108c9575f80916044604051809481936342adb21160e01b83528860048401528160248401525af1801561191f57611e30575b507fa7288a41f82203d75ebef31ebd868f704949bc365a8987cf6c27581920878ed2339180a3565b611e3c91505f90611c02565b5f5f611e08565b505050565b90506020813d602011611e7a575b81611e6360209383611c02565b810103126108c957611e7490611d17565b5f611dcc565b3d9150611e56565b63d92e233d60e01b5f5260045ffd5b916020908281520191905f905b808210611eab5750505090565b90919283359060098210156108c957602081611eca8293600195611cf6565b019401920190611e9e565b5f611f09604051611ee7604082611c02565b601081526f7061757365466c6173684c6f616e282960801b6020820152612976565b604051637fb8e8cd60e01b81527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690602081600481855afa90811561191f575f91611fcc575b50611fc857803b156108c9575f809160246040518094819363d6ad5c3960e01b8352600160048401525af1801561191f57611fb5575b507e9913328f94c535f53281584264847ddcab53bfa1d8375e53bd872b3388f4a2339180a2565b611fc191505f90611c02565b5f5f611f8e565b5050565b90506020813d602011611ffe575b81611fe760209383611c02565b810103126108c957611ff890611d17565b5f611f58565b3d9150611fda565b51906001600160601b03821682036108c957565b908160e09103126108c95761202e81611d17565b9160208201519161204160408201611d17565b9160608201519160808101519161206660c061205f60a08501612006565b9301611d17565b90565b906120b560405161207b606082611c02565b602281527f6465637265617365434628616464726573732c75696e7439362c75696e743235602082015261362960f01b6040820152612976565b7f000000000000000000000000000000000000000000000000000000000000000061231357604051631849e08f60e11b81526001600160601b03821660048201526001600160a01b03838116602483015290927f00000000000000000000000000000000000000000000000000000000000000009091169060e084604481855afa801561191f575f5f955f926122d6575b50156122a85784861161226a57848614612262576121cc92865f6020946121828560018060a01b0383169a8b855260c989528a60408620612a9d565b604051639159b17760e01b81526001600160601b03891660048201526001600160a01b03909116602482015260448101929092526064820193909352938492839182906084820190565b03925af190811561191f575f91612230575b508061221e57506001600160601b039060405193845216917fdb4604ce6118095dd2806bac506c8a24e92820ef943c8aa0343f4aed9cce680560203392a4565b63f69d209960e01b5f5260045260245ffd5b90506020813d60201161225a575b8161224b60209383611c02565b810103126108c957515f6121de565b3d915061223e565b505050505050565b6040516316981def60e11b81526001600160a01b03831660048201526001600160601b03851660248201526044810186905260648101879052608490fd5b5063feab5fd360e01b5f9081526001600160601b0384166004526001600160a01b0391909116602452604490fd5b9150506122fc91945060e03d60e01161230c575b6122f48183611c02565b81019061201a565b505050959290509094905f612146565b503d6122ea565b63456bb6a360e11b5f5260045ffd5b6001600160601b03166001600160601b03811461233f5760010190565b634e487b7160e01b5f52601160045260245ffd5b5f91612395604051612366604082611c02565b601b81527f6465637265617365434628616464726573732c75696e743235362900000000006020820152612976565b6001600160a01b0382165f81815260c96020526040902090927f0000000000000000000000000000000000000000000000000000000000000000156125da5750604051638e8f294b60e01b8152600481018490527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031691606082602481865afa91821561191f575f9261256a575b508151156125535760208201805180861161252957505191828514612520576040019182519160038101915f80528260205260405f20541580612517575b6124f4575b5050505051813b156108c9575f91606483926040519485938492635cc4fdeb60e01b845289600485015288602485015260448401525af1801561191f576124df575b506040519081527fdb4604ce6118095dd2806bac506c8a24e92820ef943c8aa0343f4aed9cce680560203392a4565b6124ec9193505f90611c02565b5f915f6124b0565b6004925f805260205260405f20555f80520160205260405f20555f80808061246e565b50801515612469565b50505050505050565b8686608492604051926316981def60e11b845260048401525f602484015260448301526064820152fd5b8463feab5fd360e01b5f525f60045260245260445ffd5b9091506060813d6060116125d2575b8161258660609383611c02565b810103126108c95760405190606082019082821067ffffffffffffffff831117611c245760409182526125b881611d17565b83526020810151602084015201516040820152905f61242b565b3d9150612579565b604051633518d95360e21b815291959450909291907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690602085600481855afa94851561191f575f956128be575b5060405163a657e57960e01b815294602086600481865afa95861561191f575f96612882575b50604051631849e08f60e11b81526001600160601b03821660048201526001600160a01b038316602482015260e081604481875afa90811561191f575f9161285d575b501561283d575b6001600160601b0381166001600160601b038716811161283257604051631849e08f60e11b81526001600160601b03831660048201526001600160a01b038416602482015260e081604481885afa90811561191f575f5f915f93612808575b50156127fc578a818810156127ef5791612721816020938761276796612a9d565b604051639159b17760e01b81526001600160601b03861660048201526001600160a01b038716602482015260448101899052606481019190915291829081906084820190565b03815f895af190811561191f575f916127be575b508061221e5750906127b991866040518781527fdb4604ce6118095dd2806bac506c8a24e92820ef943c8aa0343f4aed9cce680560203392a4612322565b6126a1565b90506020813d82116127e7575b816127d860209383611c02565b810103126108c957515f61277b565b3d91506127cb565b505050506127b990612322565b5050506127b990612322565b915050612823915060e03d811161230c576122f48183611c02565b50919492505f91506127009050565b505050505050509050565b6001600160601b03859163feab5fd360e01b5f521660045260245260445ffd5b612876915060e03d60e01161230c576122f48183611c02565b5050505050505f61269a565b9095506020813d6020116128b6575b8161289e60209383611c02565b810103126108c9576128af90612006565b945f612657565b3d9150612891565b9094506020813d6020116128f2575b816128da60209383611c02565b810103126108c9576128eb90612006565b935f612631565b3d91506128cd565b6033546001600160a01b0316330361290e57565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b805180835260209291819084018484015e5f828201840152601f01601f1916010190565b609754604080516318c5e8ab60e01b815233600482015260248101919091529060209082906001600160a01b031681806129b36044820188612952565b03915afa90811561191f575f91612a03575b50156129ce5750565b604051634a3fa29360e01b8152336004820152306024820152606060448201529081906129ff906064830190612952565b0390fd5b90506020813d602011612a35575b81612a1e60209383611c02565b810103126108c957612a2f90611d17565b5f6129c5565b3d9150612a11565b805115611c485760200190565b606580546001600160a01b0319908116909155603380549182166001600160a01b0393841690811790915591167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3565b9060038201906001600160601b0381165f528160205260405f20541580612afa575b612acb575b5050505050565b6004936001600160601b03928383165f5260205260405f2055165f520160205260405f20555f80808080612ac4565b50831515612abf565b15612b0a57565b60405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608490fdfe6584207d7d24624da0f658efbdf172757a23bf20758b8016cf04c1b88dca1509a2646970667358221220f4b092c08545b1125b9ae1637947c4a4461909ae25851cfe212555351b623f5464736f6c634300081c0033",
|
|
864
|
+
"linkReferences": {},
|
|
865
|
+
"deployedLinkReferences": {}
|
|
866
|
+
}
|