impermax-sdk 2.1.34 → 2.1.35

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,819 @@
1
+ {
2
+ "contractName": "ERC20",
3
+ "abi": [
4
+ {
5
+ "inputs": [
6
+ {
7
+ "internalType": "uint256",
8
+ "name": "_totalSupply",
9
+ "type": "uint256"
10
+ }
11
+ ],
12
+ "payable": false,
13
+ "stateMutability": "nonpayable",
14
+ "type": "constructor"
15
+ },
16
+ {
17
+ "anonymous": false,
18
+ "inputs": [
19
+ {
20
+ "indexed": true,
21
+ "internalType": "address",
22
+ "name": "owner",
23
+ "type": "address"
24
+ },
25
+ {
26
+ "indexed": true,
27
+ "internalType": "address",
28
+ "name": "spender",
29
+ "type": "address"
30
+ },
31
+ {
32
+ "indexed": false,
33
+ "internalType": "uint256",
34
+ "name": "value",
35
+ "type": "uint256"
36
+ }
37
+ ],
38
+ "name": "Approval",
39
+ "type": "event"
40
+ },
41
+ {
42
+ "anonymous": false,
43
+ "inputs": [
44
+ {
45
+ "indexed": true,
46
+ "internalType": "address",
47
+ "name": "from",
48
+ "type": "address"
49
+ },
50
+ {
51
+ "indexed": true,
52
+ "internalType": "address",
53
+ "name": "to",
54
+ "type": "address"
55
+ },
56
+ {
57
+ "indexed": false,
58
+ "internalType": "uint256",
59
+ "name": "value",
60
+ "type": "uint256"
61
+ }
62
+ ],
63
+ "name": "Transfer",
64
+ "type": "event"
65
+ },
66
+ {
67
+ "constant": true,
68
+ "inputs": [],
69
+ "name": "DOMAIN_SEPARATOR",
70
+ "outputs": [
71
+ {
72
+ "internalType": "bytes32",
73
+ "name": "",
74
+ "type": "bytes32"
75
+ }
76
+ ],
77
+ "payable": false,
78
+ "stateMutability": "view",
79
+ "type": "function"
80
+ },
81
+ {
82
+ "constant": true,
83
+ "inputs": [],
84
+ "name": "PERMIT_TYPEHASH",
85
+ "outputs": [
86
+ {
87
+ "internalType": "bytes32",
88
+ "name": "",
89
+ "type": "bytes32"
90
+ }
91
+ ],
92
+ "payable": false,
93
+ "stateMutability": "view",
94
+ "type": "function"
95
+ },
96
+ {
97
+ "constant": true,
98
+ "inputs": [
99
+ {
100
+ "internalType": "address",
101
+ "name": "",
102
+ "type": "address"
103
+ },
104
+ {
105
+ "internalType": "address",
106
+ "name": "",
107
+ "type": "address"
108
+ }
109
+ ],
110
+ "name": "allowance",
111
+ "outputs": [
112
+ {
113
+ "internalType": "uint256",
114
+ "name": "",
115
+ "type": "uint256"
116
+ }
117
+ ],
118
+ "payable": false,
119
+ "stateMutability": "view",
120
+ "type": "function"
121
+ },
122
+ {
123
+ "constant": false,
124
+ "inputs": [
125
+ {
126
+ "internalType": "address",
127
+ "name": "spender",
128
+ "type": "address"
129
+ },
130
+ {
131
+ "internalType": "uint256",
132
+ "name": "value",
133
+ "type": "uint256"
134
+ }
135
+ ],
136
+ "name": "approve",
137
+ "outputs": [
138
+ {
139
+ "internalType": "bool",
140
+ "name": "",
141
+ "type": "bool"
142
+ }
143
+ ],
144
+ "payable": false,
145
+ "stateMutability": "nonpayable",
146
+ "type": "function"
147
+ },
148
+ {
149
+ "constant": true,
150
+ "inputs": [
151
+ {
152
+ "internalType": "address",
153
+ "name": "",
154
+ "type": "address"
155
+ }
156
+ ],
157
+ "name": "balanceOf",
158
+ "outputs": [
159
+ {
160
+ "internalType": "uint256",
161
+ "name": "",
162
+ "type": "uint256"
163
+ }
164
+ ],
165
+ "payable": false,
166
+ "stateMutability": "view",
167
+ "type": "function"
168
+ },
169
+ {
170
+ "constant": true,
171
+ "inputs": [],
172
+ "name": "decimals",
173
+ "outputs": [
174
+ {
175
+ "internalType": "uint8",
176
+ "name": "",
177
+ "type": "uint8"
178
+ }
179
+ ],
180
+ "payable": false,
181
+ "stateMutability": "view",
182
+ "type": "function"
183
+ },
184
+ {
185
+ "constant": true,
186
+ "inputs": [],
187
+ "name": "name",
188
+ "outputs": [
189
+ {
190
+ "internalType": "string",
191
+ "name": "",
192
+ "type": "string"
193
+ }
194
+ ],
195
+ "payable": false,
196
+ "stateMutability": "view",
197
+ "type": "function"
198
+ },
199
+ {
200
+ "constant": true,
201
+ "inputs": [
202
+ {
203
+ "internalType": "address",
204
+ "name": "",
205
+ "type": "address"
206
+ }
207
+ ],
208
+ "name": "nonces",
209
+ "outputs": [
210
+ {
211
+ "internalType": "uint256",
212
+ "name": "",
213
+ "type": "uint256"
214
+ }
215
+ ],
216
+ "payable": false,
217
+ "stateMutability": "view",
218
+ "type": "function"
219
+ },
220
+ {
221
+ "constant": false,
222
+ "inputs": [
223
+ {
224
+ "internalType": "address",
225
+ "name": "owner",
226
+ "type": "address"
227
+ },
228
+ {
229
+ "internalType": "address",
230
+ "name": "spender",
231
+ "type": "address"
232
+ },
233
+ {
234
+ "internalType": "uint256",
235
+ "name": "value",
236
+ "type": "uint256"
237
+ },
238
+ {
239
+ "internalType": "uint256",
240
+ "name": "deadline",
241
+ "type": "uint256"
242
+ },
243
+ {
244
+ "internalType": "uint8",
245
+ "name": "v",
246
+ "type": "uint8"
247
+ },
248
+ {
249
+ "internalType": "bytes32",
250
+ "name": "r",
251
+ "type": "bytes32"
252
+ },
253
+ {
254
+ "internalType": "bytes32",
255
+ "name": "s",
256
+ "type": "bytes32"
257
+ }
258
+ ],
259
+ "name": "permit",
260
+ "outputs": [],
261
+ "payable": false,
262
+ "stateMutability": "nonpayable",
263
+ "type": "function"
264
+ },
265
+ {
266
+ "constant": true,
267
+ "inputs": [],
268
+ "name": "symbol",
269
+ "outputs": [
270
+ {
271
+ "internalType": "string",
272
+ "name": "",
273
+ "type": "string"
274
+ }
275
+ ],
276
+ "payable": false,
277
+ "stateMutability": "view",
278
+ "type": "function"
279
+ },
280
+ {
281
+ "constant": true,
282
+ "inputs": [],
283
+ "name": "totalSupply",
284
+ "outputs": [
285
+ {
286
+ "internalType": "uint256",
287
+ "name": "",
288
+ "type": "uint256"
289
+ }
290
+ ],
291
+ "payable": false,
292
+ "stateMutability": "view",
293
+ "type": "function"
294
+ },
295
+ {
296
+ "constant": false,
297
+ "inputs": [
298
+ {
299
+ "internalType": "address",
300
+ "name": "to",
301
+ "type": "address"
302
+ },
303
+ {
304
+ "internalType": "uint256",
305
+ "name": "value",
306
+ "type": "uint256"
307
+ }
308
+ ],
309
+ "name": "transfer",
310
+ "outputs": [
311
+ {
312
+ "internalType": "bool",
313
+ "name": "",
314
+ "type": "bool"
315
+ }
316
+ ],
317
+ "payable": false,
318
+ "stateMutability": "nonpayable",
319
+ "type": "function"
320
+ },
321
+ {
322
+ "constant": false,
323
+ "inputs": [
324
+ {
325
+ "internalType": "address",
326
+ "name": "from",
327
+ "type": "address"
328
+ },
329
+ {
330
+ "internalType": "address",
331
+ "name": "to",
332
+ "type": "address"
333
+ },
334
+ {
335
+ "internalType": "uint256",
336
+ "name": "value",
337
+ "type": "uint256"
338
+ }
339
+ ],
340
+ "name": "transferFrom",
341
+ "outputs": [
342
+ {
343
+ "internalType": "bool",
344
+ "name": "",
345
+ "type": "bool"
346
+ }
347
+ ],
348
+ "payable": false,
349
+ "stateMutability": "nonpayable",
350
+ "type": "function"
351
+ }
352
+ ],
353
+ "metadata": "{\"compiler\":{\"version\":\"0.5.16+commit.9c3226ce\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_totalSupply\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"constant\":true,\"inputs\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"PERMIT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":true,\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"view\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"methods\":{}},\"userdoc\":{\"methods\":{}}},\"settings\":{\"compilationTarget\":{\"/C/Users/simor/Desktop/impermax-x-uniswapv2-periphery/test/Contracts/univ2-core/test/ERC20.sol\":\"ERC20\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"/C/Users/simor/Desktop/impermax-x-uniswapv2-periphery/test/Contracts/univ2-core/UniswapV2ERC20.sol\":{\"keccak256\":\"0x0599f3684aef3e5f1144e14df1ddd39be24948b7cff125af9c9beca4bc94e1a2\",\"urls\":[\"bzz-raw://962b5efd230c60ce591afed08be4f1def46222da230a527c98c92ee27cf64583\",\"dweb:/ipfs/Qmf5wW4T7F9sNQ1eAgaj94KcFS3hrtU5tTZyPZr8QhgXr8\"]},\"/C/Users/simor/Desktop/impermax-x-uniswapv2-periphery/test/Contracts/univ2-core/interfaces/IUniswapV2ERC20.sol\":{\"keccak256\":\"0x9e433765e9ef7b4ff5e406b260b222c47c2aa27d36df756db708064fcb239ae7\",\"urls\":[\"bzz-raw://5b67c24a5e1652b51ad2f37adad2905519f0e05e7c8b2b4d8b3e00b429bb9213\",\"dweb:/ipfs/QmarJq43GabAGGSqtMUb87ACYQt73mSFbXKyFAPDXpbFNM\"]},\"/C/Users/simor/Desktop/impermax-x-uniswapv2-periphery/test/Contracts/univ2-core/libraries/SafeMath.sol\":{\"keccak256\":\"0x9c8465de751317860b623cd77f7f53f41a84b6624c0580ee526dcf7a2b7cb80c\",\"urls\":[\"bzz-raw://9b371b3eb0649b486f76cd628cc060354d1ac11fa8baed1170567271655f05d7\",\"dweb:/ipfs/QmTUg31wK9UyX6o1Q1mxE4DQhuc1rWGBanNTu1uagNVQB6\"]},\"/C/Users/simor/Desktop/impermax-x-uniswapv2-periphery/test/Contracts/univ2-core/test/ERC20.sol\":{\"keccak256\":\"0xdfda774190646fc792c22f423ff46ed92725b986fb4ff0c95a17b7d6c20c0c63\",\"urls\":[\"bzz-raw://65ea2828e2a0d75cb575b4a2c82b514e0ed6a3da63872f051c8e6538967e2fef\",\"dweb:/ipfs/QmWhVFcUMVpkcqbuSWCptjw3MogaC3a3pJE6EJrHYkZwRN\"]}},\"version\":1}",
354
+ "bytecode": "0x608060405234801561001057600080fd5b506040516112d03803806112d08339818101604052602081101561003357600080fd5b81019080805190602001909291905050506000469050604051808061127e60529139605201905060405180910390206040518060400160405280600a81526020017f556e697377617020563200000000000000000000000000000000000000000000815250805190602001206040518060400160405280600181526020017f3100000000000000000000000000000000000000000000000000000000000000815250805190602001208330604051602001808681526020018581526020018481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001955050505050506040516020818303038152906040528051906020012060038190555050610163338261016960201b60201c565b5061030e565b6101828160005461028b60201b610ea91790919060201c565b6000819055506101de81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461028b60201b610ea91790919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000828284019150811015610308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d6d6174682d6164642d6f766572666c6f7700000000000000000000000081525060200191505060405180910390fd5b92915050565b610f618061031d6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80633644e5151161008c57806395d89b411161006657806395d89b4114610371578063a9059cbb146103f4578063d505accf1461045a578063dd62ed3e146104f3576100cf565b80633644e515146102a357806370a08231146102c15780637ecebe0014610319576100cf565b806306fdde03146100d4578063095ea7b31461015757806318160ddd146101bd57806323b872dd146101db57806330adf81f14610261578063313ce5671461027f575b600080fd5b6100dc61056b565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561011c578082015181840152602081019050610101565b50505050905090810190601f1680156101495780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101a36004803603604081101561016d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506105a4565b604051808215151515815260200191505060405180910390f35b6101c56105bb565b6040518082815260200191505060405180910390f35b610247600480360360608110156101f157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506105c1565b604051808215151515815260200191505060405180910390f35b61026961078c565b6040518082815260200191505060405180910390f35b6102876107b3565b604051808260ff1660ff16815260200191505060405180910390f35b6102ab6107b8565b6040518082815260200191505060405180910390f35b610303600480360360208110156102d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506107be565b6040518082815260200191505060405180910390f35b61035b6004803603602081101561032f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506107d6565b6040518082815260200191505060405180910390f35b6103796107ee565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103b957808201518184015260208101905061039e565b50505050905090810190601f1680156103e65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104406004803603604081101561040a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610827565b604051808215151515815260200191505060405180910390f35b6104f1600480360360e081101561047057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190803560ff169060200190929190803590602001909291908035906020019092919050505061083e565b005b6105556004803603604081101561050957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b82565b6040518082815260200191505060405180910390f35b6040518060400160405280600a81526020017f556e69737761702056320000000000000000000000000000000000000000000081525081565b60006105b1338484610ba7565b6001905092915050565b60005481565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610776576106f582600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c9290919063ffffffff16565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b610781848484610d15565b600190509392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b81565b601281565b60035481565b60016020528060005260406000206000915090505481565b60046020528060005260406000206000915090505481565b6040518060400160405280600681526020017f554e492d5632000000000000000000000000000000000000000000000000000081525081565b6000610834338484610d15565b6001905092915050565b428410156108b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f556e697377617056323a2045585049524544000000000000000000000000000081525060200191505060405180910390fd5b60006003547f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b898989600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600101919050558a604051602001808781526020018673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200196505050505050506040516020818303038152906040528051906020012060405160200180807f190100000000000000000000000000000000000000000000000000000000000081525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050600060018286868660405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015610a86573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015610afa57508873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b610b6c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f556e697377617056323a20494e56414c49445f5349474e41545552450000000081525060200191505060405180910390fd5b610b77898989610ba7565b505050505050505050565b6002602052816000526040600020602052806000526040600020600091509150505481565b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000828284039150811115610d0f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f64732d6d6174682d7375622d756e646572666c6f77000000000000000000000081525060200191505060405180910390fd5b92915050565b610d6781600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c9290919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610dfc81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ea990919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000828284019150811015610f26576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d6d6174682d6164642d6f766572666c6f7700000000000000000000000081525060200191505060405180910390fd5b9291505056fea265627a7a72315820f0e34783a813377ee58014c2409a552a847642347304ac1ee4aae3d88fc0baf864736f6c63430005100032454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429",
355
+ "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c80633644e5151161008c57806395d89b411161006657806395d89b4114610371578063a9059cbb146103f4578063d505accf1461045a578063dd62ed3e146104f3576100cf565b80633644e515146102a357806370a08231146102c15780637ecebe0014610319576100cf565b806306fdde03146100d4578063095ea7b31461015757806318160ddd146101bd57806323b872dd146101db57806330adf81f14610261578063313ce5671461027f575b600080fd5b6100dc61056b565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561011c578082015181840152602081019050610101565b50505050905090810190601f1680156101495780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101a36004803603604081101561016d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506105a4565b604051808215151515815260200191505060405180910390f35b6101c56105bb565b6040518082815260200191505060405180910390f35b610247600480360360608110156101f157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506105c1565b604051808215151515815260200191505060405180910390f35b61026961078c565b6040518082815260200191505060405180910390f35b6102876107b3565b604051808260ff1660ff16815260200191505060405180910390f35b6102ab6107b8565b6040518082815260200191505060405180910390f35b610303600480360360208110156102d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506107be565b6040518082815260200191505060405180910390f35b61035b6004803603602081101561032f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506107d6565b6040518082815260200191505060405180910390f35b6103796107ee565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103b957808201518184015260208101905061039e565b50505050905090810190601f1680156103e65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104406004803603604081101561040a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610827565b604051808215151515815260200191505060405180910390f35b6104f1600480360360e081101561047057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190803560ff169060200190929190803590602001909291908035906020019092919050505061083e565b005b6105556004803603604081101561050957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b82565b6040518082815260200191505060405180910390f35b6040518060400160405280600a81526020017f556e69737761702056320000000000000000000000000000000000000000000081525081565b60006105b1338484610ba7565b6001905092915050565b60005481565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610776576106f582600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c9290919063ffffffff16565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b610781848484610d15565b600190509392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b81565b601281565b60035481565b60016020528060005260406000206000915090505481565b60046020528060005260406000206000915090505481565b6040518060400160405280600681526020017f554e492d5632000000000000000000000000000000000000000000000000000081525081565b6000610834338484610d15565b6001905092915050565b428410156108b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f556e697377617056323a2045585049524544000000000000000000000000000081525060200191505060405180910390fd5b60006003547f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b898989600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600101919050558a604051602001808781526020018673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200196505050505050506040516020818303038152906040528051906020012060405160200180807f190100000000000000000000000000000000000000000000000000000000000081525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050600060018286868660405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015610a86573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015610afa57508873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b610b6c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f556e697377617056323a20494e56414c49445f5349474e41545552450000000081525060200191505060405180910390fd5b610b77898989610ba7565b505050505050505050565b6002602052816000526040600020602052806000526040600020600091509150505481565b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000828284039150811115610d0f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f64732d6d6174682d7375622d756e646572666c6f77000000000000000000000081525060200191505060405180910390fd5b92915050565b610d6781600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c9290919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610dfc81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ea990919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000828284019150811015610f26576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f64732d6d6174682d6164642d6f766572666c6f7700000000000000000000000081525060200191505060405180910390fd5b9291505056fea265627a7a72315820f0e34783a813377ee58014c2409a552a847642347304ac1ee4aae3d88fc0baf864736f6c63430005100032",
356
+ "sourceMap": "59:127:48:-;;;98:86;8:9:-1;5:2;;;30:1;27;20:12;5:2;98:86:48;;;;;;;;;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;98:86:48;;;;;;;;;;;;;;;;950:12:37;1006:7;995:18;;1102:95;;;;;;;;;;;;;;;;;;;1231:4;;;;;;;;;;;;;;;;;1215:22;;;;;;1265:10;;;;;;;;;;;;;;;;;1255:21;;;;;;1294:7;1327:4;1074:272;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;1074:272:37;;;1051:305;;;;;;1032:16;:324;;;;919:444;146:31:48;152:10;164:12;146:5;;;:31;;:::i;:::-;98:86;59:127;;1369:197:37;1441:22;1457:5;1441:11;;:15;;;;;;:22;;;;:::i;:::-;1427:11;:36;;;;1489:24;1507:5;1489:9;:13;1499:2;1489:13;;;;;;;;;;;;;;;;:17;;;;;;:24;;;;:::i;:::-;1473:9;:13;1483:2;1473:13;;;;;;;;;;;;;;;:40;;;;1549:2;1528:31;;1545:1;1528:31;;;1553:5;1528:31;;;;;;;;;;;;;;;;;;1369:197;;:::o;155:126:46:-;207:6;248:1;242;238;:5;234:9;;;233:16;;225:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155:126;;;;:::o;59:127:48:-;;;;;;;",
357
+ "deployedSourceMap": "59:127:48:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;59:127:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184:42:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;184:42:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2177:144;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2177:144:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;319:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2469:295;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2469:295:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;605:108;;;:::i;:::-;;;;;;;;;;;;;;;;;;;278:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;464:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;349:41;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;349:41:37;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;719:38;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;719:38:37;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;232:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;232:40:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2327:136;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2327:136:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2770:662;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;2770:662:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;396:61;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;396:61:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;184:42;;;;;;;;;;;;;;;;;;;:::o;2177:144::-;2241:4;2257:36;2266:10;2278:7;2287:5;2257:8;:36::i;:::-;2310:4;2303:11;;2177:144;;;;:::o;319:24::-;;;;:::o;2469:295::-;2547:4;2603:2;2567:9;:15;2577:4;2567:15;;;;;;;;;;;;;;;:27;2583:10;2567:27;;;;;;;;;;;;;;;;:39;2563:138;;2652:38;2684:5;2652:9;:15;2662:4;2652:15;;;;;;;;;;;;;;;:27;2668:10;2652:27;;;;;;;;;;;;;;;;:31;;:38;;;;:::i;:::-;2622:9;:15;2632:4;2622:15;;;;;;;;;;;;;;;:27;2638:10;2622:27;;;;;;;;;;;;;;;:68;;;;2563:138;2710:26;2720:4;2726:2;2730:5;2710:9;:26::i;:::-;2753:4;2746:11;;2469:295;;;;;:::o;605:108::-;647:66;605:108;;;:::o;278:35::-;311:2;278:35;:::o;464:31::-;;;;:::o;349:41::-;;;;;;;;;;;;;;;;;:::o;719:38::-;;;;;;;;;;;;;;;;;:::o;232:40::-;;;;;;;;;;;;;;;;;;;:::o;2327:136::-;2387:4;2403:32;2413:10;2425:2;2429:5;2403:9;:32::i;:::-;2452:4;2445:11;;2327:136;;;;:::o;2770:662::-;2915:15;2903:8;:27;;2895:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2963:14;3065:16;;647:66;3120:15;;3137:5;3144:7;3153:5;3160:6;:13;3167:5;3160:13;;;;;;;;;;;;;;;;:15;;;;;;;;;;;;3177:8;3109:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;3109:77:37;;;3099:88;;;;;;3003:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;3003:198:37;;;2980:231;;;;;;2963:248;;3221:24;3248:26;3258:6;3266:1;3269;3272;3248:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;3248:26:37;;;;;;;;3221:53;;3320:1;3292:30;;:16;:30;;;;:59;;;;;3346:5;3326:25;;:16;:25;;;3292:59;3284:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3394:31;3403:5;3410:7;3419:5;3394:8;:31::i;:::-;2770:662;;;;;;;;;:::o;396:61::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1783:166::-;1891:5;1863:9;:16;1873:5;1863:16;;;;;;;;;;;;;;;:25;1880:7;1863:25;;;;;;;;;;;;;;;:33;;;;1927:7;1911:31;;1920:5;1911:31;;;1936:5;1911:31;;;;;;;;;;;;;;;;;;1783:166;;;:::o;287:127:46:-;339:6;380:1;374;370;:5;366:9;;;365:16;;357:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;287:127;;;;:::o;1955:216:37:-;2048:26;2068:5;2048:9;:15;2058:4;2048:15;;;;;;;;;;;;;;;;:19;;:26;;;;:::i;:::-;2030:9;:15;2040:4;2030:15;;;;;;;;;;;;;;;:44;;;;2100:24;2118:5;2100:9;:13;2110:2;2100:13;;;;;;;;;;;;;;;;:17;;:24;;;;:::i;:::-;2084:9;:13;2094:2;2084:13;;;;;;;;;;;;;;;:40;;;;2154:2;2139:25;;2148:4;2139:25;;;2158:5;2139:25;;;;;;;;;;;;;;;;;;1955:216;;;:::o;155:126:46:-;207:6;248:1;242;238;:5;234:9;;;233:16;;225:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155:126;;;;:::o",
358
+ "source": "pragma solidity =0.5.16;\n\nimport '../UniswapV2ERC20.sol';\n\ncontract ERC20 is UniswapV2ERC20 {\n constructor(uint _totalSupply) public {\n _mint(msg.sender, _totalSupply);\n }\n}\n",
359
+ "sourcePath": "C:/Users/simor/Desktop/impermax-x-uniswapv2-periphery/test/Contracts/univ2-core/test/ERC20.sol",
360
+ "ast": {
361
+ "absolutePath": "/C/Users/simor/Desktop/impermax-x-uniswapv2-periphery/test/Contracts/univ2-core/test/ERC20.sol",
362
+ "exportedSymbols": {
363
+ "ERC20": [
364
+ 9742
365
+ ]
366
+ },
367
+ "id": 9743,
368
+ "nodeType": "SourceUnit",
369
+ "nodes": [
370
+ {
371
+ "id": 9726,
372
+ "literals": [
373
+ "solidity",
374
+ "=",
375
+ "0.5",
376
+ ".16"
377
+ ],
378
+ "nodeType": "PragmaDirective",
379
+ "src": "0:24:48"
380
+ },
381
+ {
382
+ "absolutePath": "/C/Users/simor/Desktop/impermax-x-uniswapv2-periphery/test/Contracts/univ2-core/UniswapV2ERC20.sol",
383
+ "file": "../UniswapV2ERC20.sol",
384
+ "id": 9727,
385
+ "nodeType": "ImportDirective",
386
+ "scope": 9743,
387
+ "sourceUnit": 7775,
388
+ "src": "26:31:48",
389
+ "symbolAliases": [],
390
+ "unitAlias": ""
391
+ },
392
+ {
393
+ "baseContracts": [
394
+ {
395
+ "arguments": null,
396
+ "baseName": {
397
+ "contractScope": null,
398
+ "id": 9728,
399
+ "name": "UniswapV2ERC20",
400
+ "nodeType": "UserDefinedTypeName",
401
+ "referencedDeclaration": 7774,
402
+ "src": "77:14:48",
403
+ "typeDescriptions": {
404
+ "typeIdentifier": "t_contract$_UniswapV2ERC20_$7774",
405
+ "typeString": "contract UniswapV2ERC20"
406
+ }
407
+ },
408
+ "id": 9729,
409
+ "nodeType": "InheritanceSpecifier",
410
+ "src": "77:14:48"
411
+ }
412
+ ],
413
+ "contractDependencies": [
414
+ 7774,
415
+ 9226
416
+ ],
417
+ "contractKind": "contract",
418
+ "documentation": null,
419
+ "fullyImplemented": true,
420
+ "id": 9742,
421
+ "linearizedBaseContracts": [
422
+ 9742,
423
+ 7774,
424
+ 9226
425
+ ],
426
+ "name": "ERC20",
427
+ "nodeType": "ContractDefinition",
428
+ "nodes": [
429
+ {
430
+ "body": {
431
+ "id": 9740,
432
+ "nodeType": "Block",
433
+ "src": "136:48:48",
434
+ "statements": [
435
+ {
436
+ "expression": {
437
+ "argumentTypes": null,
438
+ "arguments": [
439
+ {
440
+ "argumentTypes": null,
441
+ "expression": {
442
+ "argumentTypes": null,
443
+ "id": 9735,
444
+ "name": "msg",
445
+ "nodeType": "Identifier",
446
+ "overloadedDeclarations": [],
447
+ "referencedDeclaration": 9757,
448
+ "src": "152:3:48",
449
+ "typeDescriptions": {
450
+ "typeIdentifier": "t_magic_message",
451
+ "typeString": "msg"
452
+ }
453
+ },
454
+ "id": 9736,
455
+ "isConstant": false,
456
+ "isLValue": false,
457
+ "isPure": false,
458
+ "lValueRequested": false,
459
+ "memberName": "sender",
460
+ "nodeType": "MemberAccess",
461
+ "referencedDeclaration": null,
462
+ "src": "152:10:48",
463
+ "typeDescriptions": {
464
+ "typeIdentifier": "t_address_payable",
465
+ "typeString": "address payable"
466
+ }
467
+ },
468
+ {
469
+ "argumentTypes": null,
470
+ "id": 9737,
471
+ "name": "_totalSupply",
472
+ "nodeType": "Identifier",
473
+ "overloadedDeclarations": [],
474
+ "referencedDeclaration": 9731,
475
+ "src": "164:12:48",
476
+ "typeDescriptions": {
477
+ "typeIdentifier": "t_uint256",
478
+ "typeString": "uint256"
479
+ }
480
+ }
481
+ ],
482
+ "expression": {
483
+ "argumentTypes": [
484
+ {
485
+ "typeIdentifier": "t_address_payable",
486
+ "typeString": "address payable"
487
+ },
488
+ {
489
+ "typeIdentifier": "t_uint256",
490
+ "typeString": "uint256"
491
+ }
492
+ ],
493
+ "id": 9734,
494
+ "name": "_mint",
495
+ "nodeType": "Identifier",
496
+ "overloadedDeclarations": [],
497
+ "referencedDeclaration": 7511,
498
+ "src": "146:5:48",
499
+ "typeDescriptions": {
500
+ "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
501
+ "typeString": "function (address,uint256)"
502
+ }
503
+ },
504
+ "id": 9738,
505
+ "isConstant": false,
506
+ "isLValue": false,
507
+ "isPure": false,
508
+ "kind": "functionCall",
509
+ "lValueRequested": false,
510
+ "names": [],
511
+ "nodeType": "FunctionCall",
512
+ "src": "146:31:48",
513
+ "typeDescriptions": {
514
+ "typeIdentifier": "t_tuple$__$",
515
+ "typeString": "tuple()"
516
+ }
517
+ },
518
+ "id": 9739,
519
+ "nodeType": "ExpressionStatement",
520
+ "src": "146:31:48"
521
+ }
522
+ ]
523
+ },
524
+ "documentation": null,
525
+ "id": 9741,
526
+ "implemented": true,
527
+ "kind": "constructor",
528
+ "modifiers": [],
529
+ "name": "",
530
+ "nodeType": "FunctionDefinition",
531
+ "parameters": {
532
+ "id": 9732,
533
+ "nodeType": "ParameterList",
534
+ "parameters": [
535
+ {
536
+ "constant": false,
537
+ "id": 9731,
538
+ "name": "_totalSupply",
539
+ "nodeType": "VariableDeclaration",
540
+ "scope": 9741,
541
+ "src": "110:17:48",
542
+ "stateVariable": false,
543
+ "storageLocation": "default",
544
+ "typeDescriptions": {
545
+ "typeIdentifier": "t_uint256",
546
+ "typeString": "uint256"
547
+ },
548
+ "typeName": {
549
+ "id": 9730,
550
+ "name": "uint",
551
+ "nodeType": "ElementaryTypeName",
552
+ "src": "110:4:48",
553
+ "typeDescriptions": {
554
+ "typeIdentifier": "t_uint256",
555
+ "typeString": "uint256"
556
+ }
557
+ },
558
+ "value": null,
559
+ "visibility": "internal"
560
+ }
561
+ ],
562
+ "src": "109:19:48"
563
+ },
564
+ "returnParameters": {
565
+ "id": 9733,
566
+ "nodeType": "ParameterList",
567
+ "parameters": [],
568
+ "src": "136:0:48"
569
+ },
570
+ "scope": 9742,
571
+ "src": "98:86:48",
572
+ "stateMutability": "nonpayable",
573
+ "superFunction": null,
574
+ "visibility": "public"
575
+ }
576
+ ],
577
+ "scope": 9743,
578
+ "src": "59:127:48"
579
+ }
580
+ ],
581
+ "src": "0:187:48"
582
+ },
583
+ "legacyAST": {
584
+ "absolutePath": "/C/Users/simor/Desktop/impermax-x-uniswapv2-periphery/test/Contracts/univ2-core/test/ERC20.sol",
585
+ "exportedSymbols": {
586
+ "ERC20": [
587
+ 9742
588
+ ]
589
+ },
590
+ "id": 9743,
591
+ "nodeType": "SourceUnit",
592
+ "nodes": [
593
+ {
594
+ "id": 9726,
595
+ "literals": [
596
+ "solidity",
597
+ "=",
598
+ "0.5",
599
+ ".16"
600
+ ],
601
+ "nodeType": "PragmaDirective",
602
+ "src": "0:24:48"
603
+ },
604
+ {
605
+ "absolutePath": "/C/Users/simor/Desktop/impermax-x-uniswapv2-periphery/test/Contracts/univ2-core/UniswapV2ERC20.sol",
606
+ "file": "../UniswapV2ERC20.sol",
607
+ "id": 9727,
608
+ "nodeType": "ImportDirective",
609
+ "scope": 9743,
610
+ "sourceUnit": 7775,
611
+ "src": "26:31:48",
612
+ "symbolAliases": [],
613
+ "unitAlias": ""
614
+ },
615
+ {
616
+ "baseContracts": [
617
+ {
618
+ "arguments": null,
619
+ "baseName": {
620
+ "contractScope": null,
621
+ "id": 9728,
622
+ "name": "UniswapV2ERC20",
623
+ "nodeType": "UserDefinedTypeName",
624
+ "referencedDeclaration": 7774,
625
+ "src": "77:14:48",
626
+ "typeDescriptions": {
627
+ "typeIdentifier": "t_contract$_UniswapV2ERC20_$7774",
628
+ "typeString": "contract UniswapV2ERC20"
629
+ }
630
+ },
631
+ "id": 9729,
632
+ "nodeType": "InheritanceSpecifier",
633
+ "src": "77:14:48"
634
+ }
635
+ ],
636
+ "contractDependencies": [
637
+ 7774,
638
+ 9226
639
+ ],
640
+ "contractKind": "contract",
641
+ "documentation": null,
642
+ "fullyImplemented": true,
643
+ "id": 9742,
644
+ "linearizedBaseContracts": [
645
+ 9742,
646
+ 7774,
647
+ 9226
648
+ ],
649
+ "name": "ERC20",
650
+ "nodeType": "ContractDefinition",
651
+ "nodes": [
652
+ {
653
+ "body": {
654
+ "id": 9740,
655
+ "nodeType": "Block",
656
+ "src": "136:48:48",
657
+ "statements": [
658
+ {
659
+ "expression": {
660
+ "argumentTypes": null,
661
+ "arguments": [
662
+ {
663
+ "argumentTypes": null,
664
+ "expression": {
665
+ "argumentTypes": null,
666
+ "id": 9735,
667
+ "name": "msg",
668
+ "nodeType": "Identifier",
669
+ "overloadedDeclarations": [],
670
+ "referencedDeclaration": 9757,
671
+ "src": "152:3:48",
672
+ "typeDescriptions": {
673
+ "typeIdentifier": "t_magic_message",
674
+ "typeString": "msg"
675
+ }
676
+ },
677
+ "id": 9736,
678
+ "isConstant": false,
679
+ "isLValue": false,
680
+ "isPure": false,
681
+ "lValueRequested": false,
682
+ "memberName": "sender",
683
+ "nodeType": "MemberAccess",
684
+ "referencedDeclaration": null,
685
+ "src": "152:10:48",
686
+ "typeDescriptions": {
687
+ "typeIdentifier": "t_address_payable",
688
+ "typeString": "address payable"
689
+ }
690
+ },
691
+ {
692
+ "argumentTypes": null,
693
+ "id": 9737,
694
+ "name": "_totalSupply",
695
+ "nodeType": "Identifier",
696
+ "overloadedDeclarations": [],
697
+ "referencedDeclaration": 9731,
698
+ "src": "164:12:48",
699
+ "typeDescriptions": {
700
+ "typeIdentifier": "t_uint256",
701
+ "typeString": "uint256"
702
+ }
703
+ }
704
+ ],
705
+ "expression": {
706
+ "argumentTypes": [
707
+ {
708
+ "typeIdentifier": "t_address_payable",
709
+ "typeString": "address payable"
710
+ },
711
+ {
712
+ "typeIdentifier": "t_uint256",
713
+ "typeString": "uint256"
714
+ }
715
+ ],
716
+ "id": 9734,
717
+ "name": "_mint",
718
+ "nodeType": "Identifier",
719
+ "overloadedDeclarations": [],
720
+ "referencedDeclaration": 7511,
721
+ "src": "146:5:48",
722
+ "typeDescriptions": {
723
+ "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
724
+ "typeString": "function (address,uint256)"
725
+ }
726
+ },
727
+ "id": 9738,
728
+ "isConstant": false,
729
+ "isLValue": false,
730
+ "isPure": false,
731
+ "kind": "functionCall",
732
+ "lValueRequested": false,
733
+ "names": [],
734
+ "nodeType": "FunctionCall",
735
+ "src": "146:31:48",
736
+ "typeDescriptions": {
737
+ "typeIdentifier": "t_tuple$__$",
738
+ "typeString": "tuple()"
739
+ }
740
+ },
741
+ "id": 9739,
742
+ "nodeType": "ExpressionStatement",
743
+ "src": "146:31:48"
744
+ }
745
+ ]
746
+ },
747
+ "documentation": null,
748
+ "id": 9741,
749
+ "implemented": true,
750
+ "kind": "constructor",
751
+ "modifiers": [],
752
+ "name": "",
753
+ "nodeType": "FunctionDefinition",
754
+ "parameters": {
755
+ "id": 9732,
756
+ "nodeType": "ParameterList",
757
+ "parameters": [
758
+ {
759
+ "constant": false,
760
+ "id": 9731,
761
+ "name": "_totalSupply",
762
+ "nodeType": "VariableDeclaration",
763
+ "scope": 9741,
764
+ "src": "110:17:48",
765
+ "stateVariable": false,
766
+ "storageLocation": "default",
767
+ "typeDescriptions": {
768
+ "typeIdentifier": "t_uint256",
769
+ "typeString": "uint256"
770
+ },
771
+ "typeName": {
772
+ "id": 9730,
773
+ "name": "uint",
774
+ "nodeType": "ElementaryTypeName",
775
+ "src": "110:4:48",
776
+ "typeDescriptions": {
777
+ "typeIdentifier": "t_uint256",
778
+ "typeString": "uint256"
779
+ }
780
+ },
781
+ "value": null,
782
+ "visibility": "internal"
783
+ }
784
+ ],
785
+ "src": "109:19:48"
786
+ },
787
+ "returnParameters": {
788
+ "id": 9733,
789
+ "nodeType": "ParameterList",
790
+ "parameters": [],
791
+ "src": "136:0:48"
792
+ },
793
+ "scope": 9742,
794
+ "src": "98:86:48",
795
+ "stateMutability": "nonpayable",
796
+ "superFunction": null,
797
+ "visibility": "public"
798
+ }
799
+ ],
800
+ "scope": 9743,
801
+ "src": "59:127:48"
802
+ }
803
+ ],
804
+ "src": "0:187:48"
805
+ },
806
+ "compiler": {
807
+ "name": "solc",
808
+ "version": "0.5.16+commit.9c3226ce.Emscripten.clang"
809
+ },
810
+ "networks": {},
811
+ "schemaVersion": "3.3.2",
812
+ "updatedAt": "2021-01-02T22:16:49.871Z",
813
+ "devdoc": {
814
+ "methods": {}
815
+ },
816
+ "userdoc": {
817
+ "methods": {}
818
+ }
819
+ }