@venusprotocol/isolated-pools 3.6.0 → 3.7.0-dev.1

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.
@@ -0,0 +1,706 @@
1
+ {
2
+ "address": "0x782D1BA04d28dbbf1Ff664B62993f69cd6225466",
3
+ "abi": [
4
+ {
5
+ "inputs": [
6
+ {
7
+ "internalType": "uint256",
8
+ "name": "baseRatePerYear_",
9
+ "type": "uint256"
10
+ },
11
+ {
12
+ "internalType": "uint256",
13
+ "name": "multiplierPerYear_",
14
+ "type": "uint256"
15
+ },
16
+ {
17
+ "internalType": "uint256",
18
+ "name": "jumpMultiplierPerYear_",
19
+ "type": "uint256"
20
+ },
21
+ {
22
+ "internalType": "uint256",
23
+ "name": "kink_",
24
+ "type": "uint256"
25
+ },
26
+ {
27
+ "internalType": "contract IAccessControlManagerV8",
28
+ "name": "accessControlManager_",
29
+ "type": "address"
30
+ },
31
+ {
32
+ "internalType": "bool",
33
+ "name": "timeBased_",
34
+ "type": "bool"
35
+ },
36
+ {
37
+ "internalType": "uint256",
38
+ "name": "blocksPerYear_",
39
+ "type": "uint256"
40
+ }
41
+ ],
42
+ "stateMutability": "nonpayable",
43
+ "type": "constructor"
44
+ },
45
+ {
46
+ "inputs": [],
47
+ "name": "InvalidBlocksPerYear",
48
+ "type": "error"
49
+ },
50
+ {
51
+ "inputs": [],
52
+ "name": "InvalidTimeBasedConfiguration",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "address",
59
+ "name": "sender",
60
+ "type": "address"
61
+ },
62
+ {
63
+ "internalType": "address",
64
+ "name": "calledContract",
65
+ "type": "address"
66
+ },
67
+ {
68
+ "internalType": "string",
69
+ "name": "methodSignature",
70
+ "type": "string"
71
+ }
72
+ ],
73
+ "name": "Unauthorized",
74
+ "type": "error"
75
+ },
76
+ {
77
+ "anonymous": false,
78
+ "inputs": [
79
+ {
80
+ "indexed": false,
81
+ "internalType": "uint256",
82
+ "name": "baseRatePerBlockOrTimestamp",
83
+ "type": "uint256"
84
+ },
85
+ {
86
+ "indexed": false,
87
+ "internalType": "uint256",
88
+ "name": "multiplierPerBlockOrTimestamp",
89
+ "type": "uint256"
90
+ },
91
+ {
92
+ "indexed": false,
93
+ "internalType": "uint256",
94
+ "name": "jumpMultiplierPerBlockOrTimestamp",
95
+ "type": "uint256"
96
+ },
97
+ {
98
+ "indexed": false,
99
+ "internalType": "uint256",
100
+ "name": "kink",
101
+ "type": "uint256"
102
+ }
103
+ ],
104
+ "name": "NewInterestParams",
105
+ "type": "event"
106
+ },
107
+ {
108
+ "inputs": [],
109
+ "name": "accessControlManager",
110
+ "outputs": [
111
+ {
112
+ "internalType": "contract IAccessControlManagerV8",
113
+ "name": "",
114
+ "type": "address"
115
+ }
116
+ ],
117
+ "stateMutability": "view",
118
+ "type": "function"
119
+ },
120
+ {
121
+ "inputs": [],
122
+ "name": "baseRatePerBlock",
123
+ "outputs": [
124
+ {
125
+ "internalType": "uint256",
126
+ "name": "",
127
+ "type": "uint256"
128
+ }
129
+ ],
130
+ "stateMutability": "view",
131
+ "type": "function"
132
+ },
133
+ {
134
+ "inputs": [],
135
+ "name": "blocksOrSecondsPerYear",
136
+ "outputs": [
137
+ {
138
+ "internalType": "uint256",
139
+ "name": "",
140
+ "type": "uint256"
141
+ }
142
+ ],
143
+ "stateMutability": "view",
144
+ "type": "function"
145
+ },
146
+ {
147
+ "inputs": [],
148
+ "name": "getBlockNumberOrTimestamp",
149
+ "outputs": [
150
+ {
151
+ "internalType": "uint256",
152
+ "name": "",
153
+ "type": "uint256"
154
+ }
155
+ ],
156
+ "stateMutability": "view",
157
+ "type": "function"
158
+ },
159
+ {
160
+ "inputs": [
161
+ {
162
+ "internalType": "uint256",
163
+ "name": "cash",
164
+ "type": "uint256"
165
+ },
166
+ {
167
+ "internalType": "uint256",
168
+ "name": "borrows",
169
+ "type": "uint256"
170
+ },
171
+ {
172
+ "internalType": "uint256",
173
+ "name": "reserves",
174
+ "type": "uint256"
175
+ },
176
+ {
177
+ "internalType": "uint256",
178
+ "name": "badDebt",
179
+ "type": "uint256"
180
+ }
181
+ ],
182
+ "name": "getBorrowRate",
183
+ "outputs": [
184
+ {
185
+ "internalType": "uint256",
186
+ "name": "",
187
+ "type": "uint256"
188
+ }
189
+ ],
190
+ "stateMutability": "view",
191
+ "type": "function"
192
+ },
193
+ {
194
+ "inputs": [
195
+ {
196
+ "internalType": "uint256",
197
+ "name": "cash",
198
+ "type": "uint256"
199
+ },
200
+ {
201
+ "internalType": "uint256",
202
+ "name": "borrows",
203
+ "type": "uint256"
204
+ },
205
+ {
206
+ "internalType": "uint256",
207
+ "name": "reserves",
208
+ "type": "uint256"
209
+ },
210
+ {
211
+ "internalType": "uint256",
212
+ "name": "reserveFactorMantissa",
213
+ "type": "uint256"
214
+ },
215
+ {
216
+ "internalType": "uint256",
217
+ "name": "badDebt",
218
+ "type": "uint256"
219
+ }
220
+ ],
221
+ "name": "getSupplyRate",
222
+ "outputs": [
223
+ {
224
+ "internalType": "uint256",
225
+ "name": "",
226
+ "type": "uint256"
227
+ }
228
+ ],
229
+ "stateMutability": "view",
230
+ "type": "function"
231
+ },
232
+ {
233
+ "inputs": [],
234
+ "name": "isInterestRateModel",
235
+ "outputs": [
236
+ {
237
+ "internalType": "bool",
238
+ "name": "",
239
+ "type": "bool"
240
+ }
241
+ ],
242
+ "stateMutability": "pure",
243
+ "type": "function"
244
+ },
245
+ {
246
+ "inputs": [],
247
+ "name": "isTimeBased",
248
+ "outputs": [
249
+ {
250
+ "internalType": "bool",
251
+ "name": "",
252
+ "type": "bool"
253
+ }
254
+ ],
255
+ "stateMutability": "view",
256
+ "type": "function"
257
+ },
258
+ {
259
+ "inputs": [],
260
+ "name": "jumpMultiplierPerBlock",
261
+ "outputs": [
262
+ {
263
+ "internalType": "uint256",
264
+ "name": "",
265
+ "type": "uint256"
266
+ }
267
+ ],
268
+ "stateMutability": "view",
269
+ "type": "function"
270
+ },
271
+ {
272
+ "inputs": [],
273
+ "name": "kink",
274
+ "outputs": [
275
+ {
276
+ "internalType": "uint256",
277
+ "name": "",
278
+ "type": "uint256"
279
+ }
280
+ ],
281
+ "stateMutability": "view",
282
+ "type": "function"
283
+ },
284
+ {
285
+ "inputs": [],
286
+ "name": "multiplierPerBlock",
287
+ "outputs": [
288
+ {
289
+ "internalType": "uint256",
290
+ "name": "",
291
+ "type": "uint256"
292
+ }
293
+ ],
294
+ "stateMutability": "view",
295
+ "type": "function"
296
+ },
297
+ {
298
+ "inputs": [
299
+ {
300
+ "internalType": "uint256",
301
+ "name": "baseRatePerYear",
302
+ "type": "uint256"
303
+ },
304
+ {
305
+ "internalType": "uint256",
306
+ "name": "multiplierPerYear",
307
+ "type": "uint256"
308
+ },
309
+ {
310
+ "internalType": "uint256",
311
+ "name": "jumpMultiplierPerYear",
312
+ "type": "uint256"
313
+ },
314
+ {
315
+ "internalType": "uint256",
316
+ "name": "kink_",
317
+ "type": "uint256"
318
+ }
319
+ ],
320
+ "name": "updateJumpRateModel",
321
+ "outputs": [],
322
+ "stateMutability": "nonpayable",
323
+ "type": "function"
324
+ },
325
+ {
326
+ "inputs": [
327
+ {
328
+ "internalType": "uint256",
329
+ "name": "cash",
330
+ "type": "uint256"
331
+ },
332
+ {
333
+ "internalType": "uint256",
334
+ "name": "borrows",
335
+ "type": "uint256"
336
+ },
337
+ {
338
+ "internalType": "uint256",
339
+ "name": "reserves",
340
+ "type": "uint256"
341
+ },
342
+ {
343
+ "internalType": "uint256",
344
+ "name": "badDebt",
345
+ "type": "uint256"
346
+ }
347
+ ],
348
+ "name": "utilizationRate",
349
+ "outputs": [
350
+ {
351
+ "internalType": "uint256",
352
+ "name": "",
353
+ "type": "uint256"
354
+ }
355
+ ],
356
+ "stateMutability": "pure",
357
+ "type": "function"
358
+ }
359
+ ],
360
+ "transactionHash": "0x9364352e8df412af86b49b8a61833b4003caaca8ee520fee0faf15b2462f2de5",
361
+ "receipt": {
362
+ "to": "0x0000000000000000000000000000000000008006",
363
+ "from": "0xE8C6Cf867CF962d289305ECE9b139a4116674541",
364
+ "contractAddress": "0x782D1BA04d28dbbf1Ff664B62993f69cd6225466",
365
+ "transactionIndex": 0,
366
+ "gasUsed": "5426591",
367
+ "logsBloom": "0x000000000004000800000108000000000000000000004000000000000000000000000000100000000000000000010000000000000000040000000000000000001001000000000400000000280000c0000400000000000200004000000000080000000000020100000000000000000800000000000000400000400010000000000000001000000000000004000100000100000100000000000000000000000080800000002004100000000000800100000000080000000000002000010000000000000002008000000000000000000080040410000100000000000000000120000000000000000000000000000400000000000040000000000000100080000000",
368
+ "blockHash": "0x25835ba18386b403149f925a1dcdaf63938cfe4520f311cb15eebc3394dde4a7",
369
+ "transactionHash": "0x9364352e8df412af86b49b8a61833b4003caaca8ee520fee0faf15b2462f2de5",
370
+ "logs": [
371
+ {
372
+ "transactionIndex": 0,
373
+ "blockNumber": 4119847,
374
+ "transactionHash": "0x9364352e8df412af86b49b8a61833b4003caaca8ee520fee0faf15b2462f2de5",
375
+ "address": "0x000000000000000000000000000000000000800A",
376
+ "topics": [
377
+ "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
378
+ "0x000000000000000000000000e8c6cf867cf962d289305ece9b139a4116674541",
379
+ "0x0000000000000000000000000000000000000000000000000000000000008001"
380
+ ],
381
+ "data": "0x000000000000000000000000000000000000000000000000000165695b090580",
382
+ "logIndex": 0,
383
+ "blockHash": "0x25835ba18386b403149f925a1dcdaf63938cfe4520f311cb15eebc3394dde4a7"
384
+ },
385
+ {
386
+ "transactionIndex": 0,
387
+ "blockNumber": 4119847,
388
+ "transactionHash": "0x9364352e8df412af86b49b8a61833b4003caaca8ee520fee0faf15b2462f2de5",
389
+ "address": "0x0000000000000000000000000000000000008008",
390
+ "topics": ["0x27fe8c0b49f49507b9d4fe5968c9f49edfe5c9df277d433a07a0717ede97638d"],
391
+ "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000020d0000000000000000000000000000000000000000000000000000000000008008000000000000000000000000000000000000000000000000000000000000800ea323ba97e8884a856f9f518878990f7c99642725c0662c7deaa50e4a65e96620",
392
+ "logIndex": 1,
393
+ "blockHash": "0x25835ba18386b403149f925a1dcdaf63938cfe4520f311cb15eebc3394dde4a7"
394
+ },
395
+ {
396
+ "transactionIndex": 0,
397
+ "blockNumber": 4119847,
398
+ "transactionHash": "0x9364352e8df412af86b49b8a61833b4003caaca8ee520fee0faf15b2462f2de5",
399
+ "address": "0x0000000000000000000000000000000000008008",
400
+ "topics": [
401
+ "0x3a36e47291f4201faf137fab081d92295bce2d53be2c6ca68ba82c7faa9ce241",
402
+ "0x000000000000000000000000000000000000000000000000000000000000800e",
403
+ "0xa323ba97e8884a856f9f518878990f7c99642725c0662c7deaa50e4a65e96620"
404
+ ],
405
+ "data": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000001b3a025e00000000000000000000028b0000c13d0000035200010430000000000001004b0000000001000416000000000001042d000000ea0000413d000003510001042effffffffffffffff000000000101043b0000000100200190000000fd01000041000000040010043f000000000010043f000000fc010000410000031b0000413d000000ea0000c13d000000f501000041000000800010043f000000000002004b000000d501008041000000d50010009c00000000010000190000000000210435000000d502008041000000d50020009c0350034b0000040f00000000010004140000028b0000413d000002d00000413d0000000002000019000000000112019f000000c001100210000000000100041200000000001004433235362c75696e7402000002000000000000031b0000c13d0000000001120019000000000012001a000000000001042f000000120100003900000000077600d9000000000131004b00000000066500d9000000000032004b0000000000650435000000c0022002100000000002000414000000d503008041000000d50030009c0000001101000039000001190000013d000000200030008c000000000202043b000000000005004b000000000007004b0000000002000416000002650000613d000000040000000000000000ffffffff0000000102000039000000000301041a000003130000613d0000000001410019000000000041001a000001040060009c00000104056000d1000000000624001a000000000024001a000000000003004b00000033040000390000003203000039000000000806041a000001040070009c000000600130021000000000011500d90000025f0000613d0000000001210019000000000014001a000000000067001a0000000006000019000000000021001a000000000404043b000000400220021000000000003204350000000000240435000000000006004b000200000005001d000100000006001d0000028b0000613d035003460000040f000000df0400004100000001030000390000800d02000039000000de011001c700000000001504350000003107000039000000320700003900000040013002100000002002000039000000400100043d000000000101041a0000003101000039000000000303043b000000400200043d035003280000040f000000f60200004100000005044002100000000004000415000000440300003900008005010000390000003401000039000000d60000013d035002970000040f0000000001030019000000000403401900000020040000390000000008000411000000000303041a000000010100c03900000000010000390000000000120435000000000701034f0000001f023000390000800502000039000000f7011001c70000000400100443000000f601000041000000400020043f000000d503300197000000600330027000000000030100190d7bc5ba8f2de813e2d7ad3b54833a995c4d7311074df7f2e3bd261dd87c848effffffffffffffe07fffffffffffffff0de0b6b3a76400000de0b6b3a76400014a3fa29300000000000000a4000000e018c5e8ab00000000323536290000000064656c2875696e746d70526174654d6f7570646174654a7500000024000000004e487b710000000000000020000000003c209e9336465bd123bf29dc2df74b6f266b0e7a08c0454b42cbb15ccdc3cad608cc6b5d955391325d622183e25ac5afcd93958e4c903827796b89b91644bc980000004400000000ab882de59d99a32eff553aecb10793d015d089f94afb7896310ab089e4439a4c0000002000000080000000002037f3e7000000000cde8d1c00000000073b8a740000000070d3c43f000000006857249c000000002191f92a000000002191f92900000000b9f9850a00000000b4a0bdf3000000008726bb8900000000e1d146fb00000000c7ad089500000000fd2da33900000000f14039de00000000f14039dd00000000c7ad0894000000008726bb88000000640000000008c379a000000000657373000000000041434d2061646472696e76616c69642000000100000001000000000200000000d2000aa1dd4c068dde7c453ac910a27bc9197100f5393cfc6960ab234c7ef4b000000080000000000200000000000000ffffffff00000000ae0fcab3000000000000000001e1338009c8f7ec0000000000000000ffffffe000000001ffffffe000000350000004320000034e002104230000034900210421000003450000613d000000000205001900000107011001c70000032e0000413d000000000031004b0000000102200039000000000161043a00000000060600310000000506600270000000000664001900000005062002100000000401000039000003360000413d000000050030008c00000000002004430000000005010019000000000202041a0000003202000039000001040110012a0000031b0000013d000003140000613d00000000022100d900000000012300a9000003170000013d000001040240012a0000000001230019000000000051004b00000000011400d900000000041500a9000000000504041a000000000023001a000001040220012a000000000043004b00000000033200d9000002fc0000613d00000000023400a9000000000402041a00000031020000390000030a0000a13d000000000132004b0000010402008041000001040020009c00000000021500d9000003210000613d0000010401008041000001040010009c000002d60000613d000002d00000c13d000002ce0000613d000001060220019700000000000204350000000002310019000002ac0000413d0000002002200039000000000606043300000000062400190000000005210019000002b30000613d0000000001320436000000004301043400000064044003700000004403400370000000240240037000000004014003700000000104000367000002a50000a13d000000830010008c000002a50000213d000001050010009c000001ce0000013d000000000087004b00000000067800a90000003106000039000001ce0000613d0000004001400210000000d504008041000000d50040009c0000000000310435000000200140003900000040054000390000006005400039000000400400043d000000000064041b00000034040000390000000206000029000000000014041b00000001011000f9000000000034041b000000310400003900000004031000f9000000000023041b00000003021000f9000002660000c13d000000240000044300000051010000390000800b02000039000000f9011001c7000000f801000041000001d30000013d000001040790012a00000000067800190000000000a6004b00000000066900d900000000096a00a9000000000a09041a0000003309000039000000000078001a000000000808041a0000003208000039000001040770012a000000000098004b00000000088700d9000002290000613d000000000008004b00000000078900a9000000000907041a0000028d0000a13d000000000687004b00000034060000390000010407008041000000000737004b0000000007270019000000000027001a000000000714001900000104067000d10000000000140435000000000161019f00000000015101cf000000000151022f0000010005500089000000000656022f00000000065601cf00000000060404330000000305500210000000000161034f000002070000613d000001f60000c13d000000000048004b0000000008980436000000007907043c0000000008020019000001fa0000613d0000000004620019000000d7063001980000001f0530018f0000000001140019000000000067004b00000000071500d9000001e20000613d00000000051600a9000001040650012a000000000076004b000001db0000613d00000000057600a900000104075000990000000006670019000000000707041a000001040660012a0000020d0000c13d000000000721001a00000024011003700000000404100370000000000121019f000000600110021000000000012100490000000402000029035002a70000040f000400000004001d0000008001000039000001440210003900000060030000390000012402100039000000000300041000000104021001bf0000000000820435000000e40210003900000102020000410000024c0000c13d000000010300c0390000000003000039000000e00200043d000000400040043f000000e004100039000000600110018f0000001f0140003900000001060000290000000205000029000001ef0000613d000000000003001f000000000686019f00000000066701cf000000000767022f0000010006600089000000000707043b000000000868022f00000000086801cf00000000080504330000000306600210000000000771034f0000019b0000613d0000018a0000c13d00000000005a004b000000000a9a0436000000008908043c000000000801034f0000018e0000613d000000e00570003900000020074001900000001f0640018f000000e00a00003900000101011001c7000000e001000041000001200010044300000003010000390000010000200443000001e000100443000001c0003004430000004003000039000000c00100043d000001a0001004430000018000200443000000a00100043d00000160001004430000014000000443000000800100043d00000000006304350000000000410435000000200130003900000040013000390000006005300039000000000015041b0000003405000039000000000025041b000000330500003900000000025200d9000000000047041b00000000045400d9000000000067041b00000000065600d9000000000087041b000000000898019f000000dd08800197000000000807041a0000003007000039000000e3011001c700000004013000390000000000130435000000e20100004100000013020000390000002401300039000000e1020000410000004401300039000001410000c13d000000400300043d000000c00080043f000000800050043f000000a00070043f000000d8093001980000000208000039000000da011001c70000004001100210000000dc02000041000001240000013d000000d9020000410000012a0000c13d0000003201000039000000080440008a000700000000003d000800000001001d0000000101000039000000d8011001970000003001000039000001c50000413d000001030050009c000000000504043b000000640410037000000044031003700000008402100370000000a40030008c000000fb011001c70000004001200210035002dc0000040f000000060440008a000500200000003d000600000001001d000000e80020009c000001150000613d000000e70020009c035002b90000040f000000f10020009c000001050000613d000000f00020009c000000fe0000613d000000ef0020009c0000003301000039000000ed0020009c000000f50000613d000000ec0020009c000000f00000613d000000eb0020009c000001a10000013d0000000003000031000001770000c13d000000040020008c000000d802300197000001780000043f000001640020043f000001440010043f000001240070043f000001040040043f0000004004000039000000e40080043f000000e00040043f00000100040000410000003003000039000000c00020043f000000ff02000041000000a00010043f000000fe01000041000000800070043f0000003407000039000000400010043f000000e001000039000300000001001d0000000401100370000400000002001d0000002402100370000000000602043b0000004402100370000000000502043b0000006402100370000000840030008c000000f40020009c000000dd0000613d000000f30020009c000000d00000613d000000f20020009c000000a70000213d000000ee0020009c0000012b0000013d0000000108000039000000db05000041000001220000c13d0000011d0000613d000001a00500043d000000e00600043d000001000400043d000001200200043d000001400100043d000000000017004b000001800700043d0000028b0000213d000000d80030009c000001600300043d000000e00030008c000000000151019f00000000014101cf000000000141022f0000010004400089000000000545022f00000000054501cf00000000050204330000000304400210000000000151034f000000510000613d000000000004004b000000400000c13d000000000026004b0000000006860436000000007807043c000000e006000039000000440000613d000000e002500039000000d7053001980000001f0430018f000000e002200039000000d6022001970000023c0000013d000000fa01000041000002460000c13d000000020010008c000002390000613d000000010010008c00000024001004430000004001000039000000ea0020009c000000bd0000613d000000e90020009c000000b40000213d000000e60020009c0000009c0000a13d000000e50020009c000000680000a13d000000e40020009c000000e002200270000000000201043b000000040030008c0000008002000039000000330000c13d000100000001035500080000000000020002000000000002025d025c025b008400830082000a025a025900810258001c02570256025502540253025202510250024f024e024d0001000400030001008000220021007f024c024b001b001500140020007e007d001a000a003a0009024a02490248024702460022001b0245003900130001007c024402430081024202410240023f023e007b023d023c023b023a02390238023702360235023402330009023202310230022f007a022e001c022d022c022b022a0038007900780229000102280227022602250224003802230037022202210220021f021e021d021c021b021a0219021800010217001c003900130001021602150214021302120036021102100009020f020e020d020c020b020a02090208020702060077020502040076020302020201020001ff01fe01fd001b01fc01fb01fa01f900350075007401f801f701f601f501f401f3000100040003000101f2003401f101f001ef01ee01ed00010004000300010073007201ec007101eb01ea01e9000100040003000100700034000400030001002101e801e7006f006e006d01e6006c006b006a0003007900780012001100070004000300010073007201e50069007a0019001801e401e3000701e2001c00390013000101e1003601e0006801df01de01dd01dc000e000d0033000c000b00020004000300010067003400040003000101db006601da00120011000700040003000101d9001200110007000400030001002101d801d7006f006e006d01d6006c006b006a00120011000700040003000101d50066001200110007003701d4006501d301d2006501d100170015001401d001cf000201ce01cd01cc01cb01ca01c901c801c701c6001701c501c4001701c301c201c10064001700320031006301c0000201bf01be01bd01bc01bb01ba006201b901b8006101b701b601b501b401b301b201b1006001b0001701af01ae01ad003200310063003000190018002f001f005f005e005d005c005b000a005a01ac01ab01aa01a9006401a801a701a601a501a401a301a201a101a0019f000700590058001500140020019e001a019d008400830082003500750074019c019b019a01990198019701960195019400570193019201910190018f018e018d018c018b018a0189002e0188000a007601870186018501840183018201810035001c01800013017f017e002d00010013017d017c0056017b017a017901780055017701760055017501740173017201710170005400150014016f016e0002016d0053016c000900520006016b0051016a0169006201680050000601670166016500570164002c016300100162016100030160015f015e0010004f0006015d00520006004e002b0006004d004c001200110007015c015b0069015a0159007b0158015701560155015400370153015201510150014f014e0009014d014c014b014a0149004b001900180054001f00020148002a004a0010004f0006014701460006014501440006004d002a004a014301420049014101400061013f013e013d013c013b013a0010013901380137013600060135013401330132013100100130012f00500006012e012d0022001b001500140020012c012b001a000a003a00090071000e000d012a000c000b000200590058008000220021007f0129001b001500140020007e007d001a000a003a000900030128000e000d0029000c000b000200280127004801260125012401230122004701210120011f011e011d011c002e011b0060011a01190056011801170116003000190018002f001f005f005e005d005c005b000a005a0016000700160002003800510115011400490113002a0112001001110110010f010e010d010c010b0009010a003601090068010800530005001600020107010600460105001e010401030102002e0101002d010000ff00fe007c00fd004e00050045001d004400fc0043002c004200fb0027001d00260041001d0040002b001d00fa004c00f900f8000500160005000e000d0033000c000b0002000e000d0029000c000b00020045000f0044003f0043002c004200250027000f00260041000f0040002b000f00f700f600f500f40070003e00f300f200f100f000ef004600ee00ed00ec002500eb0048007700ea000f004700e900e800e700e6002500e500e400e30013003f0067003e00e200e1002d00e000df001600de00dd00dc0027000f00260005000e000d0033000c000b0002000e000d0029000c000b0002002800db00da00d900d800d7001e00d600d500d400d300d200d100d000cf00320031004b003000190018002f001f00ce00cd001a000a00cc00090005002800cb003d0005001e000500ca003d0005001e000500c9000700020000000000000000003c00000000000000c800000000000000c70000003c0008000800c600000000000000000000003b000000000000000000c500c4000000000000000800c30000000000c2000000c1000000c000bf00be00bd00bc000000bb000000ba00b900b8000000b70000000000000000000000b6000000000000000000b500000000000000b400000000000000b300000000000000b200000000000000b100000000000000b000000000000000af00000000000000ae00000000000000ad00000000000000ac00000000000000ab00000000000000aa00000000000000a900000000000000a800000000000000a700000000000000a600000000000000a50000000000a4000000a300a200a100a000240000009f0000009e009d009c009b00240000003b0000009a00990098009700000000009600000095000000000000000000000094000000930092009100230023002300900000008f00000000000000000000008e0000008d000000000000000000000000008c000000000000008b008a000800080008000800080008008900240000000000000088008700860085000000000000",
406
+ "logIndex": 2,
407
+ "blockHash": "0x25835ba18386b403149f925a1dcdaf63938cfe4520f311cb15eebc3394dde4a7"
408
+ },
409
+ {
410
+ "transactionIndex": 0,
411
+ "blockNumber": 4119847,
412
+ "transactionHash": "0x9364352e8df412af86b49b8a61833b4003caaca8ee520fee0faf15b2462f2de5",
413
+ "address": "0x0000000000000000000000000000000000008004",
414
+ "topics": [
415
+ "0xc94722ff13eacf53547c4741dab5228353a05938ffcdd5d4a2d533ae0e618287",
416
+ "0x010001090b5a188641ed968b0bb23a652008b2c6b809b917db5555bf4cd1dac0",
417
+ "0x0000000000000000000000000000000000000000000000000000000000000000"
418
+ ],
419
+ "data": "0x",
420
+ "logIndex": 3,
421
+ "blockHash": "0x25835ba18386b403149f925a1dcdaf63938cfe4520f311cb15eebc3394dde4a7"
422
+ },
423
+ {
424
+ "transactionIndex": 0,
425
+ "blockNumber": 4119847,
426
+ "transactionHash": "0x9364352e8df412af86b49b8a61833b4003caaca8ee520fee0faf15b2462f2de5",
427
+ "address": "0x782D1BA04d28dbbf1Ff664B62993f69cd6225466",
428
+ "topics": ["0x6960ab234c7ef4b0c9197100f5393cfcde7c453ac910a27bd2000aa1dd4c068d"],
429
+ "data": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a56123ce00000000000000000000000000000000000000000000000000000005e80a6bf30000000000000000000000000000000000000000000000000b1a2bc2ec500000",
430
+ "logIndex": 4,
431
+ "blockHash": "0x25835ba18386b403149f925a1dcdaf63938cfe4520f311cb15eebc3394dde4a7"
432
+ },
433
+ {
434
+ "transactionIndex": 0,
435
+ "blockNumber": 4119847,
436
+ "transactionHash": "0x9364352e8df412af86b49b8a61833b4003caaca8ee520fee0faf15b2462f2de5",
437
+ "address": "0x0000000000000000000000000000000000008006",
438
+ "topics": [
439
+ "0x290afdae231a3fc0bbae8b1af63698b0a1d79b21ad17df0342dfb952fe74f8e5",
440
+ "0x000000000000000000000000e8c6cf867cf962d289305ece9b139a4116674541",
441
+ "0x010001090b5a188641ed968b0bb23a652008b2c6b809b917db5555bf4cd1dac0",
442
+ "0x000000000000000000000000782d1ba04d28dbbf1ff664b62993f69cd6225466"
443
+ ],
444
+ "data": "0x",
445
+ "logIndex": 5,
446
+ "blockHash": "0x25835ba18386b403149f925a1dcdaf63938cfe4520f311cb15eebc3394dde4a7"
447
+ },
448
+ {
449
+ "transactionIndex": 0,
450
+ "blockNumber": 4119847,
451
+ "transactionHash": "0x9364352e8df412af86b49b8a61833b4003caaca8ee520fee0faf15b2462f2de5",
452
+ "address": "0x000000000000000000000000000000000000800A",
453
+ "topics": [
454
+ "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
455
+ "0x0000000000000000000000000000000000000000000000000000000000008001",
456
+ "0x000000000000000000000000e8c6cf867cf962d289305ece9b139a4116674541"
457
+ ],
458
+ "data": "0x0000000000000000000000000000000000000000000000000000ea06705015c0",
459
+ "logIndex": 6,
460
+ "blockHash": "0x25835ba18386b403149f925a1dcdaf63938cfe4520f311cb15eebc3394dde4a7"
461
+ }
462
+ ],
463
+ "blockNumber": 4119847,
464
+ "cumulativeGasUsed": "0",
465
+ "status": 1,
466
+ "byzantium": true
467
+ },
468
+ "args": [
469
+ "0",
470
+ "87500000000000000",
471
+ "800000000000000000",
472
+ "800000000000000000",
473
+ "0xD07f543d47c3a8997D6079958308e981AC14CD01",
474
+ true,
475
+ 0
476
+ ],
477
+ "numDeployments": 1,
478
+ "solcInputHash": "d76281ebfc364775b25298b192a96581",
479
+ "metadata": {
480
+ "llvm_options": [],
481
+ "optimizer_settings": {
482
+ "is_debug_logging_enabled": false,
483
+ "is_fallback_to_size_enabled": false,
484
+ "is_verify_each_enabled": false,
485
+ "level_back_end": "Aggressive",
486
+ "level_middle_end": "Aggressive",
487
+ "level_middle_end_size": "Zero"
488
+ },
489
+ "solc_version": "0.8.25",
490
+ "solc_zkvm_edition": "1.0.1",
491
+ "source_metadata": "{\"compiler\":{\"version\":\"0.8.25+commit.47b979f3\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"baseRatePerYear_\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"multiplierPerYear_\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jumpMultiplierPerYear_\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"kink_\",\"type\":\"uint256\"},{\"internalType\":\"contract IAccessControlManagerV8\",\"name\":\"accessControlManager_\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"timeBased_\",\"type\":\"bool\"},{\"internalType\":\"uint256\",\"name\":\"blocksPerYear_\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"InvalidBlocksPerYear\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidTimeBasedConfiguration\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"calledContract\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"methodSignature\",\"type\":\"string\"}],\"name\":\"Unauthorized\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"baseRatePerBlockOrTimestamp\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"multiplierPerBlockOrTimestamp\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"jumpMultiplierPerBlockOrTimestamp\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"kink\",\"type\":\"uint256\"}],\"name\":\"NewInterestParams\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"accessControlManager\",\"outputs\":[{\"internalType\":\"contract IAccessControlManagerV8\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"baseRatePerBlock\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"blocksOrSecondsPerYear\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getBlockNumberOrTimestamp\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"cash\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"borrows\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"reserves\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"badDebt\",\"type\":\"uint256\"}],\"name\":\"getBorrowRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"cash\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"borrows\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"reserves\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"reserveFactorMantissa\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"badDebt\",\"type\":\"uint256\"}],\"name\":\"getSupplyRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isInterestRateModel\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isTimeBased\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"jumpMultiplierPerBlock\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"kink\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"multiplierPerBlock\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"baseRatePerYear\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"multiplierPerYear\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jumpMultiplierPerYear\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"kink_\",\"type\":\"uint256\"}],\"name\":\"updateJumpRateModel\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"cash\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"borrows\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"reserves\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"badDebt\",\"type\":\"uint256\"}],\"name\":\"utilizationRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Compound (modified by Dharma Labs, Arr00 and Venus)\",\"kind\":\"dev\",\"methods\":{\"constructor\":{\"params\":{\"accessControlManager_\":\"The address of the AccessControlManager contract\",\"baseRatePerYear_\":\"The approximate target base APR, as a mantissa (scaled by EXP_SCALE)\",\"blocksPerYear_\":\"The number of blocks per year\",\"jumpMultiplierPerYear_\":\"The multiplier after hitting a specified utilization point\",\"kink_\":\"The utilization point at which the jump multiplier is applied\",\"multiplierPerYear_\":\"The rate of increase in interest rate wrt utilization (scaled by EXP_SCALE)\",\"timeBased_\":\"A boolean indicating whether the contract is based on time or block.\"}},\"getBlockNumberOrTimestamp()\":{\"details\":\"Function to simply retrieve block number or block timestamp\",\"returns\":{\"_0\":\"Current block number or block timestamp\"}},\"getBorrowRate(uint256,uint256,uint256,uint256)\":{\"params\":{\"badDebt\":\"The amount of badDebt in the market\",\"borrows\":\"The amount of borrows in the market\",\"cash\":\"The amount of cash in the market\",\"reserves\":\"The amount of reserves in the market\"},\"returns\":{\"_0\":\"The borrow rate percentage per slot (block or second) as a mantissa (scaled by 1e18)\"}},\"getSupplyRate(uint256,uint256,uint256,uint256,uint256)\":{\"params\":{\"badDebt\":\"The amount of badDebt in the market\",\"borrows\":\"The amount of borrows in the market\",\"cash\":\"The amount of cash in the market\",\"reserveFactorMantissa\":\"The current reserve factor for the market\",\"reserves\":\"The amount of reserves in the market\"},\"returns\":{\"_0\":\"The supply rate percentage per slot (block or second) as a mantissa (scaled by EXP_SCALE)\"}},\"isInterestRateModel()\":{\"returns\":{\"_0\":\"Always true\"}},\"updateJumpRateModel(uint256,uint256,uint256,uint256)\":{\"custom:access\":\"Controlled by AccessControlManager\",\"custom:error\":\"Unauthorized if the sender is not allowed to call this function\",\"params\":{\"baseRatePerYear\":\"The approximate target base APR, as a mantissa (scaled by EXP_SCALE)\",\"jumpMultiplierPerYear\":\"The multiplierPerBlockOrTimestamp after hitting a specified utilization point\",\"kink_\":\"The utilization point at which the jump multiplier is applied\",\"multiplierPerYear\":\"The rate of increase in interest rate wrt utilization (scaled by EXP_SCALE)\"}},\"utilizationRate(uint256,uint256,uint256,uint256)\":{\"params\":{\"badDebt\":\"The amount of badDebt in the market\",\"borrows\":\"The amount of borrows in the market\",\"cash\":\"The amount of cash in the market\",\"reserves\":\"The amount of reserves in the market (currently unused)\"},\"returns\":{\"_0\":\"The utilization rate as a mantissa between [0, MANTISSA_ONE]\"}}},\"title\":\"JumpRateModelV2\",\"version\":1},\"userdoc\":{\"errors\":{\"InvalidBlocksPerYear()\":[{\"notice\":\"Thrown when blocks per year is invalid\"}],\"InvalidTimeBasedConfiguration()\":[{\"notice\":\"Thrown when time based but blocks per year is provided\"}],\"Unauthorized(address,address,string)\":[{\"notice\":\"Thrown when the action is prohibited by AccessControlManager\"}]},\"kind\":\"user\",\"methods\":{\"accessControlManager()\":{\"notice\":\"The address of the AccessControlManager contract\"},\"baseRatePerBlock()\":{\"notice\":\"The base interest rate per block or second which is the y-intercept when utilization rate is 0\"},\"blocksOrSecondsPerYear()\":{\"notice\":\"Stores blocksPerYear if isTimeBased is true else secondsPerYear is stored\"},\"constructor\":{\"notice\":\"Construct an interest rate model\"},\"getBorrowRate(uint256,uint256,uint256,uint256)\":{\"notice\":\"Calculates the current borrow rate per slot (block or second)\"},\"getSupplyRate(uint256,uint256,uint256,uint256,uint256)\":{\"notice\":\"Calculates the current supply rate per slot (block or second)\"},\"isInterestRateModel()\":{\"notice\":\"Indicator that this is an InterestRateModel contract (for inspection)\"},\"isTimeBased()\":{\"notice\":\"Acknowledges if a contract is time based or not\"},\"jumpMultiplierPerBlock()\":{\"notice\":\"The multiplier per block or second after hitting a specified utilization point\"},\"kink()\":{\"notice\":\"The utilization point at which the jump multiplier is applied\"},\"multiplierPerBlock()\":{\"notice\":\"The multiplier of utilization rate per block or second that gives the slope of the interest rate\"},\"updateJumpRateModel(uint256,uint256,uint256,uint256)\":{\"notice\":\"Update the parameters of the interest rate model\"},\"utilizationRate(uint256,uint256,uint256,uint256)\":{\"notice\":\"Calculates the utilization rate of the market: `(borrows + badDebt) / (cash + borrows + badDebt - reserves)`\"}},\"notice\":\"An interest rate model with a steep increase after a certain utilization threshold called **kink** is reached. The parameters of this interest rate model can be adjusted by the owner. Version 2 modifies Version 1 by enabling updateable parameters\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/JumpRateModelV2.sol\":\"JumpRateModelV2\"},\"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\":{\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0x59ce320a585d7e1f163cd70390a0ef2ff9cec832e2aa544293a00692465a7a57\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bb2c137c343ef0c4c7ce7b18c1d108afdc9d315a04e48307288d2d05adcbde3a\",\"dweb:/ipfs/QmUxhrAQM3MM3FF5j7AtcXLXguWCJBHJ14BRdVtuoQc8Fh\"]},\"@venusprotocol/governance-contracts/contracts/Governance/IAccessControlManagerV8.sol\":{\"keccak256\":\"0xaa29b098440d0b3a131c5ecdf25ce548790c1b5ac7bf9b5c0264b6af6f7a1e0b\",\"license\":\"BSD-3-Clause\",\"urls\":[\"bzz-raw://8120bda3990193388d0cc5f551510ef1eab685387a58a88ab607b5149e51acde\",\"dweb:/ipfs/QmNSX9ai6GbN4wQukM29rFkcWDFhqStUTtKe6XtreTvRcN\"]},\"@venusprotocol/solidity-utilities/contracts/TimeManagerV8.sol\":{\"keccak256\":\"0x57a2bbb9b8e02b1c0a5c0e305fef1328a22db56c3d4b148c362010a6e767243c\",\"license\":\"BSD-3-Clause\",\"urls\":[\"bzz-raw://01c6af010cbff93563f2175d48702f5d901beb59b0e3315ed2a5583dfa53ee21\",\"dweb:/ipfs/QmY7sfvoQ1kEQtLhPdSA3bQdV4u3hT563RSvuCtgSrQUmx\"]},\"@venusprotocol/solidity-utilities/contracts/constants.sol\":{\"keccak256\":\"0x14de93ead464da249af31bea0e3bcfb62ec693bea3475fb4d90f055ac81dc5eb\",\"license\":\"BSD-3-Clause\",\"urls\":[\"bzz-raw://6134b92b2bc5bad1c6e088d0d092736eede6dfe2cf7dadc573f1396a9d690274\",\"dweb:/ipfs/QmXwKV4SY7CdCaCaDqXudcLxVLB4vUfbwMiH9kH6HhWpiy\"]},\"contracts/InterestRateModel.sol\":{\"keccak256\":\"0xc4fda1ab75ebe4b187b707c4f10c58780f343cf343c537f641dc75d3cd28ab51\",\"license\":\"BSD-3-Clause\",\"urls\":[\"bzz-raw://8cf703e1c44ebd4977200275e7c8c480081f1f6f54bedb6b0a070af04a8c733d\",\"dweb:/ipfs/QmUNCCcYZxftVaf4SdqXUpjeeyNe9Kqr45dbNguBGY5X1h\"]},\"contracts/JumpRateModelV2.sol\":{\"keccak256\":\"0x926821f88c135be782af42e894cbc733f2d565f720f7b473ac5f37836aace26f\",\"license\":\"BSD-3-Clause\",\"urls\":[\"bzz-raw://f751488f6a8db8cf2684aede8710ddfe52a9ef3c61f8e22f2daf2890f2da9852\",\"dweb:/ipfs/QmNaSDA8tgQXEPfjTrDATojmPQjWpuuL5rNsNg6SoNpApE\"]},\"contracts/lib/constants.sol\":{\"keccak256\":\"0x54ab3a6f3bc87569ed12370f3470a1ec84cea9796d4d0ccf3d07dd4280c044aa\",\"license\":\"BSD-3-Clause\",\"urls\":[\"bzz-raw://be1b725f8bf381f0a0e14b5fc676fcd38fbcbda868f6ec0b5163cfa4cb25e548\",\"dweb:/ipfs/QmdDLtw2sVdVy8RhHWeoNVaEzQJhykgbHdPrGeFRKRcPgw\"]}},\"version\":1}",
492
+ "zk_version": "1.5.3"
493
+ },
494
+ "bytecode": "0x00020000000000020008000000000002000100000001035500000000030100190000006003300270000000d5033001970000000100200190000000330000c13d0000008002000039000000400020043f000000040030008c0000028b0000413d000000000201043b000000e002200270000000e40020009c000000680000a13d000000e50020009c0000009c0000a13d000000e60020009c000000b40000213d000000e90020009c000000bd0000613d000000ea0020009c0000028b0000c13d0000000001000416000000000001004b0000028b0000c13d000000f601000041000000000010044300000000010004120000000400100443000000400100003900000024001004430000000001000414000000d50010009c000000d501008041000000c001100210000000f7011001c700008005020000390350034b0000040f0000000100200190000002650000613d000000000101043b000000010010008c000002390000613d000000020010008c000002460000c13d000000fa01000041000000000010044300000000010004140000023c0000013d0000000002000416000000000002004b0000028b0000c13d0000001f02300039000000d602200197000000e002200039000000400020043f0000001f0430018f000000d705300198000000e002500039000000440000613d000000e006000039000000000701034f000000007807043c0000000006860436000000000026004b000000400000c13d000000000004004b000000510000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000e00030008c0000028b0000413d000001600300043d000000d80030009c0000028b0000213d000001800700043d000000000007004b0000000001000039000000010100c039000000000017004b0000028b0000c13d000001400100043d000001200200043d000001000400043d000000e00600043d000001a00500043d000000000007004b0000011d0000613d000000000005004b000001220000c13d000000db0500004100000001080000390000012b0000013d000000ee0020009c000000a70000213d000000f20020009c000000d00000613d000000f30020009c000000dd0000613d000000f40020009c0000028b0000c13d000000840030008c0000028b0000413d0000000002000416000000000002004b0000028b0000c13d0000006402100370000000000502043b0000004402100370000000000602043b0000002402100370000000000202043b000400000002001d0000000401100370000000000101043b000300000001001d000000e001000039000000400010043f0000003407000039000000800070043f000000fe01000041000000a00010043f000000ff02000041000000c00020043f0000003003000039000000000303041a0000010004000041000000e00040043f0000000008000411000000e40080043f0000004004000039000001040040043f000001240070043f000001440010043f000001640020043f000001780000043f0000000001000414000000d802300197000000040020008c000001770000c13d0000000003000031000000200030008c00000020040000390000000004034019000001a10000013d000000eb0020009c000000f00000613d000000ec0020009c000000f50000613d000000ed0020009c0000028b0000c13d0000000001000416000000000001004b0000028b0000c13d0000003301000039000001190000013d000000ef0020009c000000fe0000613d000000f00020009c000001050000613d000000f10020009c0000028b0000c13d0000000001000416000000000001004b0000028b0000c13d0000000001030019035002970000040f035002b90000040f000000d60000013d000000e70020009c000001150000613d000000e80020009c0000028b0000c13d0000000001000416000000000001004b0000028b0000c13d0000003401000039000001190000013d0000000001000416000000000001004b0000028b0000c13d0000000001000412000600000001001d000500200000003d000080050100003900000044030000390000000004000415000000060440008a0000000504400210000000f602000041035003280000040f000000000001004b0000000001000039000000010100c039000000800010043f000000f501000041000003510001042e0000000001000416000000000001004b0000028b0000c13d0000000001030019035002970000040f035002dc0000040f000000400200043d0000000000120435000000d50020009c000000d5020080410000004001200210000000fb011001c7000003510001042e000000a40030008c0000028b0000413d0000000002000416000000000002004b0000028b0000c13d0000008402100370000000000202043b0000004403100370000000000303043b0000006404100370000000000504043b000001030050009c000001c50000413d000000fc01000041000000000010043f0000001101000039000000040010043f000000fd0100004100000352000104300000000001000416000000000001004b0000028b0000c13d0000003101000039000001190000013d0000000001000416000000000001004b0000028b0000c13d0000003001000039000000000101041a000000d801100197000000800010043f000000f501000041000003510001042e0000000001000416000000000001004b0000028b0000c13d0000000101000039000000800010043f000000f501000041000003510001042e0000000001000416000000000001004b0000028b0000c13d0000000001000412000800000001001d000700000000003d000080050100003900000044030000390000000004000415000000080440008a0000000504400210000000f602000041035003280000040f000000800010043f000000f501000041000003510001042e0000000001000416000000000001004b0000028b0000c13d0000003201000039000000000101041a000000800010043f000000f501000041000003510001042e000000000005004b0000012a0000c13d000000400100043d000000d902000041000001240000013d000000400100043d000000dc020000410000000000210435000000d50010009c000000d5010080410000004001100210000000da011001c700000352000104300000000208000039000000d809300198000000a00070043f000000800050043f000000c00080043f000000400300043d000001410000c13d0000004401300039000000e1020000410000000000210435000000240130003900000013020000390000000000210435000000e2010000410000000000130435000000040130003900000020020000390000000000210435000000d50030009c000000d5030080410000004001300210000000e3011001c700000352000104300000003007000039000000000807041a000000dd08800197000000000898019f000000000087041b00000000065600d90000003207000039000000000067041b00000000045400d90000003107000039000000000047041b00000000025200d90000003305000039000000000025041b0000003405000039000000000015041b0000006005300039000000000015043500000040013000390000000000210435000000200130003900000000004104350000000000630435000000d50030009c000000d50300804100000040013002100000000002000414000000d50020009c000000d502008041000000c002200210000000000112019f000000de011001c70000800d020000390000000103000039000000df04000041035003460000040f00000001002001900000028b0000613d000000800100043d00000140000004430000016000100443000000a00100043d00000020020000390000018000200443000001a000100443000000c00100043d0000004003000039000001c000300443000001e000100443000001000020044300000003010000390000012000100443000000e001000041000003510001042e000100000006001d000200000005001d000000d50010009c000000d501008041000000c00110021000000101011001c70350034b0000040f000000e00a00003900000000030100190000006003300270000000d503300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000e0057000390000018e0000613d000000000801034f000000008908043c000000000a9a043600000000005a004b0000018a0000c13d000000000006004b0000019b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00000001002001900000000008000411000001ef0000613d000000020500002900000001060000290000001f01400039000000600110018f000000e004100039000000400040043f000000200030008c0000028b0000413d000000e00200043d000000000002004b0000000003000039000000010300c039000000000032004b0000028b0000c13d000000000002004b0000024c0000c13d00000102020000410000000000240435000000e402100039000000000082043500000104021001bf0000000003000410000000000032043500000124021000390000006003000039000000000032043500000144021000390000008001000039000400000004001d035002a70000040f000000040200002900000000012100490000004002200210000000d50010009c000000d5010080410000006001100210000000000121019f00000352000104300000000404100370000000000404043b0000002401100370000000000101043b000000000021001a000000ea0000413d000000000721001a00000000060000190000020d0000c13d000001040660012a0000003207000039000000000707041a000000000067001a000000ea0000413d0000000006670019000001040750009900000000057600a9000000000006004b000001db0000613d00000000066500d9000000000076004b000000ea0000c13d000001040650012a00000000051600a9000000000001004b000001e20000613d00000000071500d9000000000067004b000000ea0000c13d000000000014001a000000ea0000413d0000000001140019000000000021001a000000ea0000413d0000000001210019000000000131004b000000ea0000413d0000025f0000613d00000000011500d9000000800010043f000000f501000041000003510001042e0000001f0530018f000000d706300198000000400200043d0000000004620019000001fa0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000001f60000c13d000000000005004b000002070000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000000d50020009c000000d5020080410000004002200210000000000112019f000003520001043000000104067000d100000000077600d9000001040070009c000000ea0000c13d000000000014001a000000ea0000413d0000000007140019000000000027001a000000ea0000413d0000000007270019000000000737004b000000ea0000413d0000025f0000613d00000000077600d9000001040070009c00000104070080410000003406000039000000000806041a000000000687004b0000028d0000a13d0000003107000039000000000907041a00000000078900a9000000000008004b000002290000613d00000000088700d9000000000098004b000000ea0000c13d000001040770012a0000003208000039000000000808041a000000000078001a000000ea0000413d0000003309000039000000000a09041a00000000096a00a900000000066900d90000000000a6004b000000ea0000c13d0000000006780019000001040790012a000000000067001a000000ea0000413d000001d30000013d000000f80100004100000000001004430000000001000414000000d50010009c000000d501008041000000c001100210000000f9011001c70000800b020000390350034b0000040f0000000100200190000002650000613d000000000101043b000000d60000013d000000fc01000041000000000010043f0000005101000039000000040010043f000000fd010000410000035200010430000100000006001d000200000005001d000000f60100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000000d50010009c000000d501008041000000c001100210000000f7011001c700008005020000390350034b0000040f0000000100200190000002650000613d000000000101043b000000000001004b000002660000c13d000000fc01000041000000000010043f0000001201000039000000040010043f000000fd010000410000035200010430000000000001042f00000003021000f90000003203000039000000000023041b00000004031000f90000003104000039000000000034041b00000001011000f90000003304000039000000000014041b00000002060000290000003404000039000000000064041b000000400400043d0000006005400039000000000065043500000040054000390000000000150435000000200140003900000000003104350000000000240435000000d50040009c000000d50400804100000040014002100000000002000414000000d50020009c000000d502008041000000c002200210000000000112019f000000de011001c70000800d020000390000000103000039000000df04000041035003460000040f00000001002001900000028b0000613d0000000001000019000003510001042e00000000010000190000035200010430000000000007004b0000000006000019000001ce0000613d0000003106000039000000000806041a00000000067800a900000000077600d9000000000087004b000000ea0000c13d000001ce0000013d000001050010009c000002a50000213d000000830010008c000002a50000a13d00000001040003670000000401400370000000000101043b0000002402400370000000000202043b0000004403400370000000000303043b0000006404400370000000000404043b000000000001042d0000000001000019000003520001043000000000430104340000000001320436000000000003004b000002b30000613d000000000200001900000000052100190000000006240019000000000606043300000000006504350000002002200039000000000032004b000002ac0000413d000000000231001900000000000204350000001f0230003900000106022001970000000001210019000000000001042d000000000024001a000002d00000413d000000000624001a000002ce0000613d00000104056000d100000000066500d9000001040060009c000002d00000c13d000000000012001a000002d00000413d0000000001120019000000000041001a000002d00000413d0000000001410019000000000131004b000002d00000413d000002d60000613d00000000011500d9000001040010009c0000010401008041000000000001042d0000000001000019000000000001042d000000fc01000041000000000010043f0000001101000039000000040010043f000000fd010000410000035200010430000000fc01000041000000000010043f0000001201000039000000040010043f000000fd010000410000035200010430000000000024001a0000031b0000413d000000000624001a000003130000613d00000104056000d100000000066500d9000001040060009c0000031b0000c13d000000000012001a0000031b0000413d0000000001120019000000000041001a0000031b0000413d0000000001410019000000000131004b0000031b0000413d000003210000613d00000000021500d9000001040020009c00000104020080410000003401000039000000000301041a000000000132004b0000030a0000a13d0000003102000039000000000402041a00000000023400a9000000000003004b000002fc0000613d00000000033200d9000000000043004b0000031b0000c13d000001040220012a0000003203000039000000000303041a000000000023001a0000031b0000413d0000003304000039000000000504041a00000000041500a900000000011400d9000000000051004b0000031b0000c13d0000000001230019000001040240012a000003170000013d000000000002004b000003130000613d0000003101000039000000000301041a00000000012300a900000000022100d9000000000032004b000003140000613d0000031b0000013d0000000001000019000001040110012a0000003202000039000000000202041a000000000012001a0000031b0000413d0000000001120019000000000001042d000000fc01000041000000000010043f0000001101000039000000040010043f000000fd010000410000035200010430000000fc01000041000000000010043f0000001201000039000000040010043f000000fd010000410000035200010430000000000001042f00000000050100190000000000200443000000050030008c000003360000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b0000032e0000413d000000d50030009c000000d50300804100000060013002100000000002000414000000d50020009c000000d502008041000000c002200210000000000112019f00000107011001c700000000020500190350034b0000040f0000000100200190000003450000613d000000000101043b000000000001042d000000000001042f00000349002104210000000102000039000000000001042d0000000002000019000000000001042d0000034e002104230000000102000039000000000001042d0000000002000019000000000001042d0000035000000432000003510001042e0000035200010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff09c8f7ec0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000001e13380ae0fcab300000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000800000000000000000000000006960ab234c7ef4b0c9197100f5393cfcde7c453ac910a27bd2000aa1dd4c068d0000000200000000000000000000000000000100000001000000000000000000696e76616c69642041434d20616464726573730000000000000000000000000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000000000008726bb8800000000000000000000000000000000000000000000000000000000c7ad089400000000000000000000000000000000000000000000000000000000f14039dd00000000000000000000000000000000000000000000000000000000f14039de00000000000000000000000000000000000000000000000000000000fd2da33900000000000000000000000000000000000000000000000000000000c7ad089500000000000000000000000000000000000000000000000000000000e1d146fb000000000000000000000000000000000000000000000000000000008726bb8900000000000000000000000000000000000000000000000000000000b4a0bdf300000000000000000000000000000000000000000000000000000000b9f9850a000000000000000000000000000000000000000000000000000000002191f929000000000000000000000000000000000000000000000000000000002191f92a000000000000000000000000000000000000000000000000000000006857249c0000000000000000000000000000000000000000000000000000000070d3c43f00000000000000000000000000000000000000000000000000000000073b8a74000000000000000000000000000000000000000000000000000000000cde8d1c000000000000000000000000000000000000000000000000000000002037f3e70000000000000000000000000000000000000020000000800000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0200000200000000000000000000000000000044000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d95539132020000020000000000000000000000000000000400000000000000000000000042cbb15ccdc3cad6266b0e7a08c0454b23bf29dc2df74b6f3c209e9336465bd100000000000000000000000000000000000000200000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000007570646174654a756d70526174654d6f64656c2875696e743235362c75696e743235362c75696e743235362c75696e743235362900000000000000000000000018c5e8ab0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4000000e000000000000000004a3fa293000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000de0b6b3a76400010000000000000000000000000000000000000000000000000de0b6b3a76400007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00200000200000000000000000000000000000000000000000000000000000000e3bd261dd87c848e5c4d7311074df7f2e2d7ad3b54833a990d7bc5ba8f2de813",
495
+ "deployedBytecode": "0x00020000000000020008000000000002000100000001035500000000030100190000006003300270000000d5033001970000000100200190000000330000c13d0000008002000039000000400020043f000000040030008c0000028b0000413d000000000201043b000000e002200270000000e40020009c000000680000a13d000000e50020009c0000009c0000a13d000000e60020009c000000b40000213d000000e90020009c000000bd0000613d000000ea0020009c0000028b0000c13d0000000001000416000000000001004b0000028b0000c13d000000f601000041000000000010044300000000010004120000000400100443000000400100003900000024001004430000000001000414000000d50010009c000000d501008041000000c001100210000000f7011001c700008005020000390350034b0000040f0000000100200190000002650000613d000000000101043b000000010010008c000002390000613d000000020010008c000002460000c13d000000fa01000041000000000010044300000000010004140000023c0000013d0000000002000416000000000002004b0000028b0000c13d0000001f02300039000000d602200197000000e002200039000000400020043f0000001f0430018f000000d705300198000000e002500039000000440000613d000000e006000039000000000701034f000000007807043c0000000006860436000000000026004b000000400000c13d000000000004004b000000510000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000e00030008c0000028b0000413d000001600300043d000000d80030009c0000028b0000213d000001800700043d000000000007004b0000000001000039000000010100c039000000000017004b0000028b0000c13d000001400100043d000001200200043d000001000400043d000000e00600043d000001a00500043d000000000007004b0000011d0000613d000000000005004b000001220000c13d000000db0500004100000001080000390000012b0000013d000000ee0020009c000000a70000213d000000f20020009c000000d00000613d000000f30020009c000000dd0000613d000000f40020009c0000028b0000c13d000000840030008c0000028b0000413d0000000002000416000000000002004b0000028b0000c13d0000006402100370000000000502043b0000004402100370000000000602043b0000002402100370000000000202043b000400000002001d0000000401100370000000000101043b000300000001001d000000e001000039000000400010043f0000003407000039000000800070043f000000fe01000041000000a00010043f000000ff02000041000000c00020043f0000003003000039000000000303041a0000010004000041000000e00040043f0000000008000411000000e40080043f0000004004000039000001040040043f000001240070043f000001440010043f000001640020043f000001780000043f0000000001000414000000d802300197000000040020008c000001770000c13d0000000003000031000000200030008c00000020040000390000000004034019000001a10000013d000000eb0020009c000000f00000613d000000ec0020009c000000f50000613d000000ed0020009c0000028b0000c13d0000000001000416000000000001004b0000028b0000c13d0000003301000039000001190000013d000000ef0020009c000000fe0000613d000000f00020009c000001050000613d000000f10020009c0000028b0000c13d0000000001000416000000000001004b0000028b0000c13d0000000001030019035002970000040f035002b90000040f000000d60000013d000000e70020009c000001150000613d000000e80020009c0000028b0000c13d0000000001000416000000000001004b0000028b0000c13d0000003401000039000001190000013d0000000001000416000000000001004b0000028b0000c13d0000000001000412000600000001001d000500200000003d000080050100003900000044030000390000000004000415000000060440008a0000000504400210000000f602000041035003280000040f000000000001004b0000000001000039000000010100c039000000800010043f000000f501000041000003510001042e0000000001000416000000000001004b0000028b0000c13d0000000001030019035002970000040f035002dc0000040f000000400200043d0000000000120435000000d50020009c000000d5020080410000004001200210000000fb011001c7000003510001042e000000a40030008c0000028b0000413d0000000002000416000000000002004b0000028b0000c13d0000008402100370000000000202043b0000004403100370000000000303043b0000006404100370000000000504043b000001030050009c000001c50000413d000000fc01000041000000000010043f0000001101000039000000040010043f000000fd0100004100000352000104300000000001000416000000000001004b0000028b0000c13d0000003101000039000001190000013d0000000001000416000000000001004b0000028b0000c13d0000003001000039000000000101041a000000d801100197000000800010043f000000f501000041000003510001042e0000000001000416000000000001004b0000028b0000c13d0000000101000039000000800010043f000000f501000041000003510001042e0000000001000416000000000001004b0000028b0000c13d0000000001000412000800000001001d000700000000003d000080050100003900000044030000390000000004000415000000080440008a0000000504400210000000f602000041035003280000040f000000800010043f000000f501000041000003510001042e0000000001000416000000000001004b0000028b0000c13d0000003201000039000000000101041a000000800010043f000000f501000041000003510001042e000000000005004b0000012a0000c13d000000400100043d000000d902000041000001240000013d000000400100043d000000dc020000410000000000210435000000d50010009c000000d5010080410000004001100210000000da011001c700000352000104300000000208000039000000d809300198000000a00070043f000000800050043f000000c00080043f000000400300043d000001410000c13d0000004401300039000000e1020000410000000000210435000000240130003900000013020000390000000000210435000000e2010000410000000000130435000000040130003900000020020000390000000000210435000000d50030009c000000d5030080410000004001300210000000e3011001c700000352000104300000003007000039000000000807041a000000dd08800197000000000898019f000000000087041b00000000065600d90000003207000039000000000067041b00000000045400d90000003107000039000000000047041b00000000025200d90000003305000039000000000025041b0000003405000039000000000015041b0000006005300039000000000015043500000040013000390000000000210435000000200130003900000000004104350000000000630435000000d50030009c000000d50300804100000040013002100000000002000414000000d50020009c000000d502008041000000c002200210000000000112019f000000de011001c70000800d020000390000000103000039000000df04000041035003460000040f00000001002001900000028b0000613d000000800100043d00000140000004430000016000100443000000a00100043d00000020020000390000018000200443000001a000100443000000c00100043d0000004003000039000001c000300443000001e000100443000001000020044300000003010000390000012000100443000000e001000041000003510001042e000100000006001d000200000005001d000000d50010009c000000d501008041000000c00110021000000101011001c70350034b0000040f000000e00a00003900000000030100190000006003300270000000d503300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000e0057000390000018e0000613d000000000801034f000000008908043c000000000a9a043600000000005a004b0000018a0000c13d000000000006004b0000019b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00000001002001900000000008000411000001ef0000613d000000020500002900000001060000290000001f01400039000000600110018f000000e004100039000000400040043f000000200030008c0000028b0000413d000000e00200043d000000000002004b0000000003000039000000010300c039000000000032004b0000028b0000c13d000000000002004b0000024c0000c13d00000102020000410000000000240435000000e402100039000000000082043500000104021001bf0000000003000410000000000032043500000124021000390000006003000039000000000032043500000144021000390000008001000039000400000004001d035002a70000040f000000040200002900000000012100490000004002200210000000d50010009c000000d5010080410000006001100210000000000121019f00000352000104300000000404100370000000000404043b0000002401100370000000000101043b000000000021001a000000ea0000413d000000000721001a00000000060000190000020d0000c13d000001040660012a0000003207000039000000000707041a000000000067001a000000ea0000413d0000000006670019000001040750009900000000057600a9000000000006004b000001db0000613d00000000066500d9000000000076004b000000ea0000c13d000001040650012a00000000051600a9000000000001004b000001e20000613d00000000071500d9000000000067004b000000ea0000c13d000000000014001a000000ea0000413d0000000001140019000000000021001a000000ea0000413d0000000001210019000000000131004b000000ea0000413d0000025f0000613d00000000011500d9000000800010043f000000f501000041000003510001042e0000001f0530018f000000d706300198000000400200043d0000000004620019000001fa0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000001f60000c13d000000000005004b000002070000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000000d50020009c000000d5020080410000004002200210000000000112019f000003520001043000000104067000d100000000077600d9000001040070009c000000ea0000c13d000000000014001a000000ea0000413d0000000007140019000000000027001a000000ea0000413d0000000007270019000000000737004b000000ea0000413d0000025f0000613d00000000077600d9000001040070009c00000104070080410000003406000039000000000806041a000000000687004b0000028d0000a13d0000003107000039000000000907041a00000000078900a9000000000008004b000002290000613d00000000088700d9000000000098004b000000ea0000c13d000001040770012a0000003208000039000000000808041a000000000078001a000000ea0000413d0000003309000039000000000a09041a00000000096a00a900000000066900d90000000000a6004b000000ea0000c13d0000000006780019000001040790012a000000000067001a000000ea0000413d000001d30000013d000000f80100004100000000001004430000000001000414000000d50010009c000000d501008041000000c001100210000000f9011001c70000800b020000390350034b0000040f0000000100200190000002650000613d000000000101043b000000d60000013d000000fc01000041000000000010043f0000005101000039000000040010043f000000fd010000410000035200010430000100000006001d000200000005001d000000f60100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000000d50010009c000000d501008041000000c001100210000000f7011001c700008005020000390350034b0000040f0000000100200190000002650000613d000000000101043b000000000001004b000002660000c13d000000fc01000041000000000010043f0000001201000039000000040010043f000000fd010000410000035200010430000000000001042f00000003021000f90000003203000039000000000023041b00000004031000f90000003104000039000000000034041b00000001011000f90000003304000039000000000014041b00000002060000290000003404000039000000000064041b000000400400043d0000006005400039000000000065043500000040054000390000000000150435000000200140003900000000003104350000000000240435000000d50040009c000000d50400804100000040014002100000000002000414000000d50020009c000000d502008041000000c002200210000000000112019f000000de011001c70000800d020000390000000103000039000000df04000041035003460000040f00000001002001900000028b0000613d0000000001000019000003510001042e00000000010000190000035200010430000000000007004b0000000006000019000001ce0000613d0000003106000039000000000806041a00000000067800a900000000077600d9000000000087004b000000ea0000c13d000001ce0000013d000001050010009c000002a50000213d000000830010008c000002a50000a13d00000001040003670000000401400370000000000101043b0000002402400370000000000202043b0000004403400370000000000303043b0000006404400370000000000404043b000000000001042d0000000001000019000003520001043000000000430104340000000001320436000000000003004b000002b30000613d000000000200001900000000052100190000000006240019000000000606043300000000006504350000002002200039000000000032004b000002ac0000413d000000000231001900000000000204350000001f0230003900000106022001970000000001210019000000000001042d000000000024001a000002d00000413d000000000624001a000002ce0000613d00000104056000d100000000066500d9000001040060009c000002d00000c13d000000000012001a000002d00000413d0000000001120019000000000041001a000002d00000413d0000000001410019000000000131004b000002d00000413d000002d60000613d00000000011500d9000001040010009c0000010401008041000000000001042d0000000001000019000000000001042d000000fc01000041000000000010043f0000001101000039000000040010043f000000fd010000410000035200010430000000fc01000041000000000010043f0000001201000039000000040010043f000000fd010000410000035200010430000000000024001a0000031b0000413d000000000624001a000003130000613d00000104056000d100000000066500d9000001040060009c0000031b0000c13d000000000012001a0000031b0000413d0000000001120019000000000041001a0000031b0000413d0000000001410019000000000131004b0000031b0000413d000003210000613d00000000021500d9000001040020009c00000104020080410000003401000039000000000301041a000000000132004b0000030a0000a13d0000003102000039000000000402041a00000000023400a9000000000003004b000002fc0000613d00000000033200d9000000000043004b0000031b0000c13d000001040220012a0000003203000039000000000303041a000000000023001a0000031b0000413d0000003304000039000000000504041a00000000041500a900000000011400d9000000000051004b0000031b0000c13d0000000001230019000001040240012a000003170000013d000000000002004b000003130000613d0000003101000039000000000301041a00000000012300a900000000022100d9000000000032004b000003140000613d0000031b0000013d0000000001000019000001040110012a0000003202000039000000000202041a000000000012001a0000031b0000413d0000000001120019000000000001042d000000fc01000041000000000010043f0000001101000039000000040010043f000000fd010000410000035200010430000000fc01000041000000000010043f0000001201000039000000040010043f000000fd010000410000035200010430000000000001042f00000000050100190000000000200443000000050030008c000003360000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b0000032e0000413d000000d50030009c000000d50300804100000060013002100000000002000414000000d50020009c000000d502008041000000c002200210000000000112019f00000107011001c700000000020500190350034b0000040f0000000100200190000003450000613d000000000101043b000000000001042d000000000001042f00000349002104210000000102000039000000000001042d0000000002000019000000000001042d0000034e002104230000000102000039000000000001042d0000000002000019000000000001042d0000035000000432000003510001042e0000035200010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff09c8f7ec0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000001e13380ae0fcab300000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000800000000000000000000000006960ab234c7ef4b0c9197100f5393cfcde7c453ac910a27bd2000aa1dd4c068d0000000200000000000000000000000000000100000001000000000000000000696e76616c69642041434d20616464726573730000000000000000000000000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000000000008726bb8800000000000000000000000000000000000000000000000000000000c7ad089400000000000000000000000000000000000000000000000000000000f14039dd00000000000000000000000000000000000000000000000000000000f14039de00000000000000000000000000000000000000000000000000000000fd2da33900000000000000000000000000000000000000000000000000000000c7ad089500000000000000000000000000000000000000000000000000000000e1d146fb000000000000000000000000000000000000000000000000000000008726bb8900000000000000000000000000000000000000000000000000000000b4a0bdf300000000000000000000000000000000000000000000000000000000b9f9850a000000000000000000000000000000000000000000000000000000002191f929000000000000000000000000000000000000000000000000000000002191f92a000000000000000000000000000000000000000000000000000000006857249c0000000000000000000000000000000000000000000000000000000070d3c43f00000000000000000000000000000000000000000000000000000000073b8a74000000000000000000000000000000000000000000000000000000000cde8d1c000000000000000000000000000000000000000000000000000000002037f3e70000000000000000000000000000000000000020000000800000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0200000200000000000000000000000000000044000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d95539132020000020000000000000000000000000000000400000000000000000000000042cbb15ccdc3cad6266b0e7a08c0454b23bf29dc2df74b6f3c209e9336465bd100000000000000000000000000000000000000200000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000007570646174654a756d70526174654d6f64656c2875696e743235362c75696e743235362c75696e743235362c75696e743235362900000000000000000000000018c5e8ab0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4000000e000000000000000004a3fa293000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000de0b6b3a76400010000000000000000000000000000000000000000000000000de0b6b3a76400007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00200000200000000000000000000000000000000000000000000000000000000e3bd261dd87c848e5c4d7311074df7f2e2d7ad3b54833a990d7bc5ba8f2de813",
496
+ "devdoc": {
497
+ "author": "Compound (modified by Dharma Labs, Arr00 and Venus)",
498
+ "kind": "dev",
499
+ "methods": {
500
+ "constructor": {
501
+ "params": {
502
+ "accessControlManager_": "The address of the AccessControlManager contract",
503
+ "baseRatePerYear_": "The approximate target base APR, as a mantissa (scaled by EXP_SCALE)",
504
+ "blocksPerYear_": "The number of blocks per year",
505
+ "jumpMultiplierPerYear_": "The multiplier after hitting a specified utilization point",
506
+ "kink_": "The utilization point at which the jump multiplier is applied",
507
+ "multiplierPerYear_": "The rate of increase in interest rate wrt utilization (scaled by EXP_SCALE)",
508
+ "timeBased_": "A boolean indicating whether the contract is based on time or block."
509
+ }
510
+ },
511
+ "getBlockNumberOrTimestamp()": {
512
+ "details": "Function to simply retrieve block number or block timestamp",
513
+ "returns": {
514
+ "_0": "Current block number or block timestamp"
515
+ }
516
+ },
517
+ "getBorrowRate(uint256,uint256,uint256,uint256)": {
518
+ "params": {
519
+ "badDebt": "The amount of badDebt in the market",
520
+ "borrows": "The amount of borrows in the market",
521
+ "cash": "The amount of cash in the market",
522
+ "reserves": "The amount of reserves in the market"
523
+ },
524
+ "returns": {
525
+ "_0": "The borrow rate percentage per slot (block or second) as a mantissa (scaled by 1e18)"
526
+ }
527
+ },
528
+ "getSupplyRate(uint256,uint256,uint256,uint256,uint256)": {
529
+ "params": {
530
+ "badDebt": "The amount of badDebt in the market",
531
+ "borrows": "The amount of borrows in the market",
532
+ "cash": "The amount of cash in the market",
533
+ "reserveFactorMantissa": "The current reserve factor for the market",
534
+ "reserves": "The amount of reserves in the market"
535
+ },
536
+ "returns": {
537
+ "_0": "The supply rate percentage per slot (block or second) as a mantissa (scaled by EXP_SCALE)"
538
+ }
539
+ },
540
+ "isInterestRateModel()": {
541
+ "returns": {
542
+ "_0": "Always true"
543
+ }
544
+ },
545
+ "updateJumpRateModel(uint256,uint256,uint256,uint256)": {
546
+ "custom:access": "Controlled by AccessControlManager",
547
+ "custom:error": "Unauthorized if the sender is not allowed to call this function",
548
+ "params": {
549
+ "baseRatePerYear": "The approximate target base APR, as a mantissa (scaled by EXP_SCALE)",
550
+ "jumpMultiplierPerYear": "The multiplierPerBlockOrTimestamp after hitting a specified utilization point",
551
+ "kink_": "The utilization point at which the jump multiplier is applied",
552
+ "multiplierPerYear": "The rate of increase in interest rate wrt utilization (scaled by EXP_SCALE)"
553
+ }
554
+ },
555
+ "utilizationRate(uint256,uint256,uint256,uint256)": {
556
+ "params": {
557
+ "badDebt": "The amount of badDebt in the market",
558
+ "borrows": "The amount of borrows in the market",
559
+ "cash": "The amount of cash in the market",
560
+ "reserves": "The amount of reserves in the market (currently unused)"
561
+ },
562
+ "returns": {
563
+ "_0": "The utilization rate as a mantissa between [0, MANTISSA_ONE]"
564
+ }
565
+ }
566
+ },
567
+ "title": "JumpRateModelV2",
568
+ "version": 1
569
+ },
570
+ "userdoc": {
571
+ "errors": {
572
+ "InvalidBlocksPerYear()": [
573
+ {
574
+ "notice": "Thrown when blocks per year is invalid"
575
+ }
576
+ ],
577
+ "InvalidTimeBasedConfiguration()": [
578
+ {
579
+ "notice": "Thrown when time based but blocks per year is provided"
580
+ }
581
+ ],
582
+ "Unauthorized(address,address,string)": [
583
+ {
584
+ "notice": "Thrown when the action is prohibited by AccessControlManager"
585
+ }
586
+ ]
587
+ },
588
+ "kind": "user",
589
+ "methods": {
590
+ "accessControlManager()": {
591
+ "notice": "The address of the AccessControlManager contract"
592
+ },
593
+ "baseRatePerBlock()": {
594
+ "notice": "The base interest rate per block or second which is the y-intercept when utilization rate is 0"
595
+ },
596
+ "blocksOrSecondsPerYear()": {
597
+ "notice": "Stores blocksPerYear if isTimeBased is true else secondsPerYear is stored"
598
+ },
599
+ "constructor": {
600
+ "notice": "Construct an interest rate model"
601
+ },
602
+ "getBorrowRate(uint256,uint256,uint256,uint256)": {
603
+ "notice": "Calculates the current borrow rate per slot (block or second)"
604
+ },
605
+ "getSupplyRate(uint256,uint256,uint256,uint256,uint256)": {
606
+ "notice": "Calculates the current supply rate per slot (block or second)"
607
+ },
608
+ "isInterestRateModel()": {
609
+ "notice": "Indicator that this is an InterestRateModel contract (for inspection)"
610
+ },
611
+ "isTimeBased()": {
612
+ "notice": "Acknowledges if a contract is time based or not"
613
+ },
614
+ "jumpMultiplierPerBlock()": {
615
+ "notice": "The multiplier per block or second after hitting a specified utilization point"
616
+ },
617
+ "kink()": {
618
+ "notice": "The utilization point at which the jump multiplier is applied"
619
+ },
620
+ "multiplierPerBlock()": {
621
+ "notice": "The multiplier of utilization rate per block or second that gives the slope of the interest rate"
622
+ },
623
+ "updateJumpRateModel(uint256,uint256,uint256,uint256)": {
624
+ "notice": "Update the parameters of the interest rate model"
625
+ },
626
+ "utilizationRate(uint256,uint256,uint256,uint256)": {
627
+ "notice": "Calculates the utilization rate of the market: `(borrows + badDebt) / (cash + borrows + badDebt - reserves)`"
628
+ }
629
+ },
630
+ "notice": "An interest rate model with a steep increase after a certain utilization threshold called **kink** is reached. The parameters of this interest rate model can be adjusted by the owner. Version 2 modifies Version 1 by enabling updateable parameters",
631
+ "version": 1
632
+ },
633
+ "storageLayout": {
634
+ "storage": [
635
+ {
636
+ "astId": 10243,
637
+ "contract": "contracts/JumpRateModelV2.sol:JumpRateModelV2",
638
+ "label": "__gap",
639
+ "offset": 0,
640
+ "slot": "0",
641
+ "type": "t_array(t_uint256)48_storage"
642
+ },
643
+ {
644
+ "astId": 22283,
645
+ "contract": "contracts/JumpRateModelV2.sol:JumpRateModelV2",
646
+ "label": "accessControlManager",
647
+ "offset": 0,
648
+ "slot": "48",
649
+ "type": "t_contract(IAccessControlManagerV8)7974"
650
+ },
651
+ {
652
+ "astId": 22286,
653
+ "contract": "contracts/JumpRateModelV2.sol:JumpRateModelV2",
654
+ "label": "multiplierPerBlock",
655
+ "offset": 0,
656
+ "slot": "49",
657
+ "type": "t_uint256"
658
+ },
659
+ {
660
+ "astId": 22289,
661
+ "contract": "contracts/JumpRateModelV2.sol:JumpRateModelV2",
662
+ "label": "baseRatePerBlock",
663
+ "offset": 0,
664
+ "slot": "50",
665
+ "type": "t_uint256"
666
+ },
667
+ {
668
+ "astId": 22292,
669
+ "contract": "contracts/JumpRateModelV2.sol:JumpRateModelV2",
670
+ "label": "jumpMultiplierPerBlock",
671
+ "offset": 0,
672
+ "slot": "51",
673
+ "type": "t_uint256"
674
+ },
675
+ {
676
+ "astId": 22295,
677
+ "contract": "contracts/JumpRateModelV2.sol:JumpRateModelV2",
678
+ "label": "kink",
679
+ "offset": 0,
680
+ "slot": "52",
681
+ "type": "t_uint256"
682
+ }
683
+ ],
684
+ "types": {
685
+ "t_array(t_uint256)48_storage": {
686
+ "base": "t_uint256",
687
+ "encoding": "inplace",
688
+ "label": "uint256[48]",
689
+ "numberOfBytes": "1536"
690
+ },
691
+ "t_contract(IAccessControlManagerV8)7974": {
692
+ "encoding": "inplace",
693
+ "label": "contract IAccessControlManagerV8",
694
+ "numberOfBytes": "20"
695
+ },
696
+ "t_uint256": {
697
+ "encoding": "inplace",
698
+ "label": "uint256",
699
+ "numberOfBytes": "32"
700
+ }
701
+ }
702
+ },
703
+ "factoryDeps": [
704
+ "0x00020000000000020008000000000002000100000001035500000000030100190000006003300270000000d5033001970000000100200190000000330000c13d0000008002000039000000400020043f000000040030008c0000028b0000413d000000000201043b000000e002200270000000e40020009c000000680000a13d000000e50020009c0000009c0000a13d000000e60020009c000000b40000213d000000e90020009c000000bd0000613d000000ea0020009c0000028b0000c13d0000000001000416000000000001004b0000028b0000c13d000000f601000041000000000010044300000000010004120000000400100443000000400100003900000024001004430000000001000414000000d50010009c000000d501008041000000c001100210000000f7011001c700008005020000390350034b0000040f0000000100200190000002650000613d000000000101043b000000010010008c000002390000613d000000020010008c000002460000c13d000000fa01000041000000000010044300000000010004140000023c0000013d0000000002000416000000000002004b0000028b0000c13d0000001f02300039000000d602200197000000e002200039000000400020043f0000001f0430018f000000d705300198000000e002500039000000440000613d000000e006000039000000000701034f000000007807043c0000000006860436000000000026004b000000400000c13d000000000004004b000000510000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000e00030008c0000028b0000413d000001600300043d000000d80030009c0000028b0000213d000001800700043d000000000007004b0000000001000039000000010100c039000000000017004b0000028b0000c13d000001400100043d000001200200043d000001000400043d000000e00600043d000001a00500043d000000000007004b0000011d0000613d000000000005004b000001220000c13d000000db0500004100000001080000390000012b0000013d000000ee0020009c000000a70000213d000000f20020009c000000d00000613d000000f30020009c000000dd0000613d000000f40020009c0000028b0000c13d000000840030008c0000028b0000413d0000000002000416000000000002004b0000028b0000c13d0000006402100370000000000502043b0000004402100370000000000602043b0000002402100370000000000202043b000400000002001d0000000401100370000000000101043b000300000001001d000000e001000039000000400010043f0000003407000039000000800070043f000000fe01000041000000a00010043f000000ff02000041000000c00020043f0000003003000039000000000303041a0000010004000041000000e00040043f0000000008000411000000e40080043f0000004004000039000001040040043f000001240070043f000001440010043f000001640020043f000001780000043f0000000001000414000000d802300197000000040020008c000001770000c13d0000000003000031000000200030008c00000020040000390000000004034019000001a10000013d000000eb0020009c000000f00000613d000000ec0020009c000000f50000613d000000ed0020009c0000028b0000c13d0000000001000416000000000001004b0000028b0000c13d0000003301000039000001190000013d000000ef0020009c000000fe0000613d000000f00020009c000001050000613d000000f10020009c0000028b0000c13d0000000001000416000000000001004b0000028b0000c13d0000000001030019035002970000040f035002b90000040f000000d60000013d000000e70020009c000001150000613d000000e80020009c0000028b0000c13d0000000001000416000000000001004b0000028b0000c13d0000003401000039000001190000013d0000000001000416000000000001004b0000028b0000c13d0000000001000412000600000001001d000500200000003d000080050100003900000044030000390000000004000415000000060440008a0000000504400210000000f602000041035003280000040f000000000001004b0000000001000039000000010100c039000000800010043f000000f501000041000003510001042e0000000001000416000000000001004b0000028b0000c13d0000000001030019035002970000040f035002dc0000040f000000400200043d0000000000120435000000d50020009c000000d5020080410000004001200210000000fb011001c7000003510001042e000000a40030008c0000028b0000413d0000000002000416000000000002004b0000028b0000c13d0000008402100370000000000202043b0000004403100370000000000303043b0000006404100370000000000504043b000001030050009c000001c50000413d000000fc01000041000000000010043f0000001101000039000000040010043f000000fd0100004100000352000104300000000001000416000000000001004b0000028b0000c13d0000003101000039000001190000013d0000000001000416000000000001004b0000028b0000c13d0000003001000039000000000101041a000000d801100197000000800010043f000000f501000041000003510001042e0000000001000416000000000001004b0000028b0000c13d0000000101000039000000800010043f000000f501000041000003510001042e0000000001000416000000000001004b0000028b0000c13d0000000001000412000800000001001d000700000000003d000080050100003900000044030000390000000004000415000000080440008a0000000504400210000000f602000041035003280000040f000000800010043f000000f501000041000003510001042e0000000001000416000000000001004b0000028b0000c13d0000003201000039000000000101041a000000800010043f000000f501000041000003510001042e000000000005004b0000012a0000c13d000000400100043d000000d902000041000001240000013d000000400100043d000000dc020000410000000000210435000000d50010009c000000d5010080410000004001100210000000da011001c700000352000104300000000208000039000000d809300198000000a00070043f000000800050043f000000c00080043f000000400300043d000001410000c13d0000004401300039000000e1020000410000000000210435000000240130003900000013020000390000000000210435000000e2010000410000000000130435000000040130003900000020020000390000000000210435000000d50030009c000000d5030080410000004001300210000000e3011001c700000352000104300000003007000039000000000807041a000000dd08800197000000000898019f000000000087041b00000000065600d90000003207000039000000000067041b00000000045400d90000003107000039000000000047041b00000000025200d90000003305000039000000000025041b0000003405000039000000000015041b0000006005300039000000000015043500000040013000390000000000210435000000200130003900000000004104350000000000630435000000d50030009c000000d50300804100000040013002100000000002000414000000d50020009c000000d502008041000000c002200210000000000112019f000000de011001c70000800d020000390000000103000039000000df04000041035003460000040f00000001002001900000028b0000613d000000800100043d00000140000004430000016000100443000000a00100043d00000020020000390000018000200443000001a000100443000000c00100043d0000004003000039000001c000300443000001e000100443000001000020044300000003010000390000012000100443000000e001000041000003510001042e000100000006001d000200000005001d000000d50010009c000000d501008041000000c00110021000000101011001c70350034b0000040f000000e00a00003900000000030100190000006003300270000000d503300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000e0057000390000018e0000613d000000000801034f000000008908043c000000000a9a043600000000005a004b0000018a0000c13d000000000006004b0000019b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00000001002001900000000008000411000001ef0000613d000000020500002900000001060000290000001f01400039000000600110018f000000e004100039000000400040043f000000200030008c0000028b0000413d000000e00200043d000000000002004b0000000003000039000000010300c039000000000032004b0000028b0000c13d000000000002004b0000024c0000c13d00000102020000410000000000240435000000e402100039000000000082043500000104021001bf0000000003000410000000000032043500000124021000390000006003000039000000000032043500000144021000390000008001000039000400000004001d035002a70000040f000000040200002900000000012100490000004002200210000000d50010009c000000d5010080410000006001100210000000000121019f00000352000104300000000404100370000000000404043b0000002401100370000000000101043b000000000021001a000000ea0000413d000000000721001a00000000060000190000020d0000c13d000001040660012a0000003207000039000000000707041a000000000067001a000000ea0000413d0000000006670019000001040750009900000000057600a9000000000006004b000001db0000613d00000000066500d9000000000076004b000000ea0000c13d000001040650012a00000000051600a9000000000001004b000001e20000613d00000000071500d9000000000067004b000000ea0000c13d000000000014001a000000ea0000413d0000000001140019000000000021001a000000ea0000413d0000000001210019000000000131004b000000ea0000413d0000025f0000613d00000000011500d9000000800010043f000000f501000041000003510001042e0000001f0530018f000000d706300198000000400200043d0000000004620019000001fa0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000001f60000c13d000000000005004b000002070000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000000d50020009c000000d5020080410000004002200210000000000112019f000003520001043000000104067000d100000000077600d9000001040070009c000000ea0000c13d000000000014001a000000ea0000413d0000000007140019000000000027001a000000ea0000413d0000000007270019000000000737004b000000ea0000413d0000025f0000613d00000000077600d9000001040070009c00000104070080410000003406000039000000000806041a000000000687004b0000028d0000a13d0000003107000039000000000907041a00000000078900a9000000000008004b000002290000613d00000000088700d9000000000098004b000000ea0000c13d000001040770012a0000003208000039000000000808041a000000000078001a000000ea0000413d0000003309000039000000000a09041a00000000096a00a900000000066900d90000000000a6004b000000ea0000c13d0000000006780019000001040790012a000000000067001a000000ea0000413d000001d30000013d000000f80100004100000000001004430000000001000414000000d50010009c000000d501008041000000c001100210000000f9011001c70000800b020000390350034b0000040f0000000100200190000002650000613d000000000101043b000000d60000013d000000fc01000041000000000010043f0000005101000039000000040010043f000000fd010000410000035200010430000100000006001d000200000005001d000000f60100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000000d50010009c000000d501008041000000c001100210000000f7011001c700008005020000390350034b0000040f0000000100200190000002650000613d000000000101043b000000000001004b000002660000c13d000000fc01000041000000000010043f0000001201000039000000040010043f000000fd010000410000035200010430000000000001042f00000003021000f90000003203000039000000000023041b00000004031000f90000003104000039000000000034041b00000001011000f90000003304000039000000000014041b00000002060000290000003404000039000000000064041b000000400400043d0000006005400039000000000065043500000040054000390000000000150435000000200140003900000000003104350000000000240435000000d50040009c000000d50400804100000040014002100000000002000414000000d50020009c000000d502008041000000c002200210000000000112019f000000de011001c70000800d020000390000000103000039000000df04000041035003460000040f00000001002001900000028b0000613d0000000001000019000003510001042e00000000010000190000035200010430000000000007004b0000000006000019000001ce0000613d0000003106000039000000000806041a00000000067800a900000000077600d9000000000087004b000000ea0000c13d000001ce0000013d000001050010009c000002a50000213d000000830010008c000002a50000a13d00000001040003670000000401400370000000000101043b0000002402400370000000000202043b0000004403400370000000000303043b0000006404400370000000000404043b000000000001042d0000000001000019000003520001043000000000430104340000000001320436000000000003004b000002b30000613d000000000200001900000000052100190000000006240019000000000606043300000000006504350000002002200039000000000032004b000002ac0000413d000000000231001900000000000204350000001f0230003900000106022001970000000001210019000000000001042d000000000024001a000002d00000413d000000000624001a000002ce0000613d00000104056000d100000000066500d9000001040060009c000002d00000c13d000000000012001a000002d00000413d0000000001120019000000000041001a000002d00000413d0000000001410019000000000131004b000002d00000413d000002d60000613d00000000011500d9000001040010009c0000010401008041000000000001042d0000000001000019000000000001042d000000fc01000041000000000010043f0000001101000039000000040010043f000000fd010000410000035200010430000000fc01000041000000000010043f0000001201000039000000040010043f000000fd010000410000035200010430000000000024001a0000031b0000413d000000000624001a000003130000613d00000104056000d100000000066500d9000001040060009c0000031b0000c13d000000000012001a0000031b0000413d0000000001120019000000000041001a0000031b0000413d0000000001410019000000000131004b0000031b0000413d000003210000613d00000000021500d9000001040020009c00000104020080410000003401000039000000000301041a000000000132004b0000030a0000a13d0000003102000039000000000402041a00000000023400a9000000000003004b000002fc0000613d00000000033200d9000000000043004b0000031b0000c13d000001040220012a0000003203000039000000000303041a000000000023001a0000031b0000413d0000003304000039000000000504041a00000000041500a900000000011400d9000000000051004b0000031b0000c13d0000000001230019000001040240012a000003170000013d000000000002004b000003130000613d0000003101000039000000000301041a00000000012300a900000000022100d9000000000032004b000003140000613d0000031b0000013d0000000001000019000001040110012a0000003202000039000000000202041a000000000012001a0000031b0000413d0000000001120019000000000001042d000000fc01000041000000000010043f0000001101000039000000040010043f000000fd010000410000035200010430000000fc01000041000000000010043f0000001201000039000000040010043f000000fd010000410000035200010430000000000001042f00000000050100190000000000200443000000050030008c000003360000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b0000032e0000413d000000d50030009c000000d50300804100000060013002100000000002000414000000d50020009c000000d502008041000000c002200210000000000112019f00000107011001c700000000020500190350034b0000040f0000000100200190000003450000613d000000000101043b000000000001042d000000000001042f00000349002104210000000102000039000000000001042d0000000002000019000000000001042d0000034e002104230000000102000039000000000001042d0000000002000019000000000001042d0000035000000432000003510001042e0000035200010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff09c8f7ec0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000001e13380ae0fcab300000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000800000000000000000000000006960ab234c7ef4b0c9197100f5393cfcde7c453ac910a27bd2000aa1dd4c068d0000000200000000000000000000000000000100000001000000000000000000696e76616c69642041434d20616464726573730000000000000000000000000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000000000008726bb8800000000000000000000000000000000000000000000000000000000c7ad089400000000000000000000000000000000000000000000000000000000f14039dd00000000000000000000000000000000000000000000000000000000f14039de00000000000000000000000000000000000000000000000000000000fd2da33900000000000000000000000000000000000000000000000000000000c7ad089500000000000000000000000000000000000000000000000000000000e1d146fb000000000000000000000000000000000000000000000000000000008726bb8900000000000000000000000000000000000000000000000000000000b4a0bdf300000000000000000000000000000000000000000000000000000000b9f9850a000000000000000000000000000000000000000000000000000000002191f929000000000000000000000000000000000000000000000000000000002191f92a000000000000000000000000000000000000000000000000000000006857249c0000000000000000000000000000000000000000000000000000000070d3c43f00000000000000000000000000000000000000000000000000000000073b8a74000000000000000000000000000000000000000000000000000000000cde8d1c000000000000000000000000000000000000000000000000000000002037f3e70000000000000000000000000000000000000020000000800000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0200000200000000000000000000000000000044000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d95539132020000020000000000000000000000000000000400000000000000000000000042cbb15ccdc3cad6266b0e7a08c0454b23bf29dc2df74b6f3c209e9336465bd100000000000000000000000000000000000000200000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000007570646174654a756d70526174654d6f64656c2875696e743235362c75696e743235362c75696e743235362c75696e743235362900000000000000000000000018c5e8ab0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4000000e000000000000000004a3fa293000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000de0b6b3a76400010000000000000000000000000000000000000000000000000de0b6b3a76400007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00200000200000000000000000000000000000000000000000000000000000000e3bd261dd87c848e5c4d7311074df7f2e2d7ad3b54833a990d7bc5ba8f2de813"
705
+ ]
706
+ }