Paweł Bylica
10 years ago
44 changed files with 6657 additions and 632 deletions
@ -0,0 +1,86 @@ |
|||
/*
|
|||
This file is part of cpp-ethereum. |
|||
|
|||
cpp-ethereum is free software: you can redistribute it and/or modify |
|||
it under the terms of the GNU General Public License as published by |
|||
the Free Software Foundation, either version 3 of the License, or |
|||
(at your option) any later version. |
|||
|
|||
cpp-ethereum is distributed in the hope that it will be useful, |
|||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
GNU General Public License for more details. |
|||
|
|||
You should have received a copy of the GNU General Public License |
|||
along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|||
*/ |
|||
/** @file vm.h
|
|||
* @author Christoph Jentzsch <jentzsch.simulationsoftware@gmail.com> |
|||
* @author Gav Wood <i@gavwood.com> |
|||
* @date 2014 |
|||
* vm test functions. |
|||
*/ |
|||
|
|||
#pragma once |
|||
|
|||
#include <fstream> |
|||
#include <cstdint> |
|||
#include <boost/test/unit_test.hpp> |
|||
#include "JsonSpiritHeaders.h" |
|||
#include <libdevcore/Log.h> |
|||
#include <libevmface/Instruction.h> |
|||
#include <libevm/ExtVMFace.h> |
|||
#include <libevm/VM.h> |
|||
#include <liblll/Compiler.h> |
|||
#include <libethereum/Transaction.h> |
|||
#include <libethereum/ExtVM.h> |
|||
#include <libethereum/State.h> |
|||
|
|||
namespace dev { namespace test { |
|||
|
|||
struct FakeExtVMFailure : virtual Exception {}; |
|||
|
|||
class FakeExtVM: public eth::ExtVMFace |
|||
{ |
|||
public: |
|||
FakeExtVM() {} |
|||
FakeExtVM(eth::BlockInfo const& _previousBlock, eth::BlockInfo const& _currentBlock); |
|||
|
|||
u256 store(u256 _n) { return std::get<2>(addresses[myAddress])[_n]; } |
|||
void setStore(u256 _n, u256 _v) { std::get<2>(addresses[myAddress])[_n] = _v; } |
|||
u256 balance(Address _a) { return std::get<0>(addresses[_a]); } |
|||
void subBalance(u256 _a) { std::get<0>(addresses[myAddress]) -= _a; } |
|||
u256 txCount(Address _a) { return std::get<1>(addresses[_a]); } |
|||
void suicide(Address _a) { std::get<0>(addresses[_a]) += std::get<0>(addresses[myAddress]); addresses.erase(myAddress); } |
|||
bytes const& codeAt(Address _a) { return std::get<3>(addresses[_a]); } |
|||
h160 create(u256 _endowment, u256* _gas, bytesConstRef _init, eth::OnOpFunc); |
|||
bool call(Address _receiveAddress, u256 _value, bytesConstRef _data, u256* _gas, bytesRef _out, eth::OnOpFunc, Address, Address); |
|||
void setTransaction(Address _caller, u256 _value, u256 _gasPrice, bytes const& _data); |
|||
void setContract(Address _myAddress, u256 _myBalance, u256 _myNonce, std::map<u256, u256> const& _storage, bytes const& _code); |
|||
void set(Address _a, u256 _myBalance, u256 _myNonce, std::map<u256, u256> const& _storage, bytes const& _code); |
|||
void reset(u256 _myBalance, u256 _myNonce, std::map<u256, u256> const& _storage); |
|||
u256 toInt(json_spirit::mValue const& _v); |
|||
byte toByte(json_spirit::mValue const& _v); |
|||
void push(json_spirit::mObject& o, std::string const& _n, u256 _v); |
|||
void push(json_spirit::mArray& a, u256 _v); |
|||
json_spirit::mObject exportEnv(); |
|||
void importEnv(json_spirit::mObject& _o); |
|||
json_spirit::mObject exportState(); |
|||
void importState(json_spirit::mObject& _object); |
|||
json_spirit::mObject exportExec(); |
|||
void importExec(json_spirit::mObject& _o); |
|||
json_spirit::mArray exportCallCreates(); |
|||
void importCallCreates(json_spirit::mArray& _callcreates); |
|||
|
|||
std::map<Address, std::tuple<u256, u256, std::map<u256, u256>, bytes>> addresses; |
|||
eth::Transactions callcreates; |
|||
bytes thisTxData; |
|||
bytes thisTxCode; |
|||
u256 gas; |
|||
|
|||
private: |
|||
eth::State m_s; |
|||
eth::Manifest m_ms; |
|||
}; |
|||
|
|||
} } // Namespace Close
|
File diff suppressed because it is too large
@ -0,0 +1,169 @@ |
|||
{ |
|||
"prevhash": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (PREVHASH) }", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"coinbase": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (COINBASE) }", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"timestamp": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (TIMESTAMP) }", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"number": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (NUMBER) }", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"difficulty": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (DIFFICULTY) }", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"gaslimit": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (GASLIMIT) }", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,723 @@ |
|||
{ |
|||
"address0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (ADDRESS)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "1000000000", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
|
|||
"address1": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"cd1722f3947def4cf144679da39c4c32bdc35681" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (ADDRESS)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"origin" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"caller" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "1000000000", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
|
|||
"balance0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (BALANCE 0xcd1722f3947def4cf144679da39c4c32bdc35681 )}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "1000000000", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
|
|||
"balance1": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (BALANCE 0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6 )}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "1000000000", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
|
|||
"balanceAddress2": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (EQ (BALANCE 0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6) (BALANCE (ADDRESS)))}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "1000000000", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
|
|||
|
|||
"balanceCaller3": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (EQ (BALANCE 0xcd1722f3947def4cf144679da39c4c32bdc35681) (BALANCE (CALLER)))}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "1000000000", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
|
|||
"origin": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (ORIGIN)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "1000000000", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
|
|||
"caller": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (CALLER)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "1000000000", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
|
|||
|
|||
"callvalue": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (CALLVALUE)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "1000000000", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
|
|||
|
|||
"calldataload0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (CALLDATALOAD 0)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "0x256", |
|||
"gasPrice" : "1000000000", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
|
|||
"calldataload1": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (CALLDATALOAD 1)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff23", |
|||
"gasPrice" : "1000000000", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
|
|||
"calldataload2": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (CALLDATALOAD 5)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "0x123456789abcdef0000000000000000000000000000000000000000000000000024", |
|||
"gasPrice" : "1000000000", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
|
|||
|
|||
"calldatasize0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (CALLDATASIZE)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "0x256", |
|||
"gasPrice" : "1000000000", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
|
|||
"calldatasize1": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (CALLDATASIZE)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff23", |
|||
"gasPrice" : "1000000000", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
|
|||
"calldatasize2": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (CALLDATASIZE)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "0x230000000000000000000000000000000000000000000000000000000000000023", |
|||
"gasPrice" : "1000000000", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
|
|||
"calldatacopy0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (CALLDATACOPY 0 1 2 ) [[ 0 ]] @0}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "0x1234567890abcdef01234567890abcdef", |
|||
"gasPrice" : "1000000000", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
|
|||
"calldatacopy1": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (CALLDATACOPY 0 1 1 ) [[ 0 ]] @0}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "0x1234567890abcdef01234567890abcdef", |
|||
"gasPrice" : "1000000000", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
|
|||
"calldatacopy2": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (CALLDATACOPY 0 1 0 ) [[ 0 ]] @0}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "0x1234567890abcdef01234567890abcdef", |
|||
"gasPrice" : "1000000000", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
|
|||
"codesize": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (CODESIZE)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "0x1234567890abcdef01234567890abcdef", |
|||
"gasPrice" : "1000000000", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
|
|||
"codecopy0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (CODECOPY 0 0 5 ) [[ 0 ]] @0 }", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "0x1234567890abcdef01234567890abcdef", |
|||
"gasPrice" : "1000000000", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
|
|||
"codecopy1": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (CODECOPY 0 0 (CODESIZE) ) [[ 0 ]] @0 }", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "0x1234567890abcdef01234567890abcdef", |
|||
"gasPrice" : "1000000000", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
|
|||
"gasprice": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (GASPRICE) }", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "0x1234567890abcdef01234567890abcdef", |
|||
"gasPrice" : "123456789", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
|
|||
"extcodesize0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (EQ (EXTCODESIZE (CALLER)) (CODESIZE) ) }", |
|||
"storage": {} |
|||
}, |
|||
"cd1722f3947def4cf144679da39c4c32bdc35681" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (EQ (EXTCODESIZE (CALLER)) (CODESIZE) ) }", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "0x1234567890abcdef01234567890abcdef", |
|||
"gasPrice" : "123456789", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
"extcodesize1": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (CODESIZE) }", |
|||
"storage": {} |
|||
}, |
|||
"cd1722f3947def4cf144679da39c4c32bdc35681" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (EXTCODESIZE (CALLER) ) }", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"origin" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"caller" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"value" : "1000000000000000000", |
|||
"data" : "0x1234567890abcdef01234567890abcdef", |
|||
"gasPrice" : "123456789", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
|
|||
"extcodecopy0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (EXTCODECOPY (CALLER) 0 0 (EXTCODESIZE (CALLER) ) ) [[ 0 ]] @0 }", |
|||
"storage": {} |
|||
}, |
|||
"cd1722f3947def4cf144679da39c4c32bdc35681" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] 5 }", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "0x1234567890abcdef01234567890abcdef", |
|||
"gasPrice" : "123456789", |
|||
"gas" : "100000000000" |
|||
} |
|||
} |
|||
|
|||
} |
@ -0,0 +1,813 @@ |
|||
{ |
|||
"pop0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "0x6002600360045057", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"pop1": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "0x5060026003600457", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"dupAt51doesNotExistAnymore": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "0x600260035157", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"swapAt52doesNotExistAnymore": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "0x600260035257", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"mstore_mload0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{(MSTORE 0 23) [[ 1 ]] (MLOAD 0) } ", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"mloadError0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{[[ 0 ]] (MLOAD 0) } ", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"mloadError1": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{(MSTORE 1 23) [[ 1 ]] (MLOAD 0) } ", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"mloadOutOfGasError2": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 1 ]] (MLOAD 7489573) } ", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"mstore0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (MSTORE 1 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) [[ 1 ]] (MLOAD 1) } ", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"mstore1": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (MSTORE 1 (+ 2 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) ) [[ 1 ]] (MLOAD 1) } ", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"mstoreWordToBigError": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (MSTORE 1 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff23 ) [[ 1 ]] (MLOAD 1) } ", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"mstore8WordToBigError": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (MSTORE8 1 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff23 ) [[ 1 ]] (MLOAD 1) } ", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"mstore8_0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (MSTORE8 1 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ) [[ 1 ]] (MLOAD 1) } ", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"mstore8_1": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (MSTORE8 1 0xff) (MSTORE8 2 0xee) [[ 1 ]] (MLOAD 0) } ", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"sstore_load_0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (SSTORE 0 0xff) (SSTORE 10 0xee) [[ 20 ]] (SLOAD 0) } ", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"sstore_load_1": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (SSTORE 0 0xff) (SSTORE 10 0xee) [[ 20 ]] (SLOAD 100) } ", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"sstore_load_2": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (SSTORE 0 0xff) (SSTORE 1 0xee) (SSTORE 2 0xdd) [[ 10 ]] (SLOAD 1) [[ 20 ]] (SLOAD 2) } ", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"jump0_foreverOutOfGas": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "0x6023600058", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"jump0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "0x60236007586001600257", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"jumpi0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "0x602360016009596001600257", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"jumpi1": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "0x602360006009596001600257", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"pc0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (PC)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"pc1": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{(SSTORE 0 0xff) [[ 0 ]] (PC)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"msize0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{(MSTORE 0 0xff) [[ 0 ]] (MSIZE)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"msize1": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{(MSTORE 0 0xffffffffff) [[ 0 ]] (MSIZE)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"msize2": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{(MSTORE 0 0xffffffffff) (MSTORE 32 0xeeee) [[ 0 ]] (MSIZE)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"msize3": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{(MSTORE 0 0xffffffffff) (MSTORE 90 0xeeee) [[ 0 ]] (MSIZE)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"gas0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{(MSTORE 0 0xffffffffff) (MSTORE 90 0xeeee) [[ 0 ]] (GAS)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"gas1": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{[[ 0 ]] (GAS)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
} |
|||
} |
File diff suppressed because it is too large
@ -0,0 +1,144 @@ |
|||
{ |
|||
"sha3_0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (SHA3 0 0)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "1000000000", |
|||
"gas" : "100000000000" |
|||
} |
|||
}, |
|||
|
|||
"sha3_1": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (SHA3 4 5)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"sha3_2": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (SHA3 10 10)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"sha3_3": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (SHA3 1000 0xfffff)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"sha3_3": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (SHA3 0xfffffffff 100)}", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
} |
|||
|
|||
|
|||
|
|||
} |
@ -0,0 +1,814 @@ |
|||
{ |
|||
"createNameRegistrator": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (MSTORE 0 0x601080600c6000396000f200600035560f6009590060203560003557) [[ 0 ]] (CREATE 23 4 28) }", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"createNameRegistratorValueTooHigh": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "100", |
|||
"nonce" : 0, |
|||
"code" : "{ (MSTORE 0 0x601080600c6000396000f200600035560f6009590060203560003557) [[ 0 ]] (CREATE 230 4 28) }", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"createNameRegistratorOutOfMemoryBonds0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "100", |
|||
"nonce" : 0, |
|||
"code" : "{ (MSTORE 0 0x601080600c6000396000f200600035560f6009590060203560003557) [[ 0 ]] (CREATE 23 0xfffffffffff 28) }", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"createNameRegistratorOutOfMemoryBonds1": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "100", |
|||
"nonce" : 0, |
|||
"code" : "{ (MSTORE 0 0x601080600c6000396000f200600035560f6009590060203560003557) [[ 0 ]] (CREATE 23 4 0xffffffff) }", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
}, |
|||
|
|||
"CallToNameRegistrator0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "10000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (MSTORE 0 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) (MSTORE 32 0xaaffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffaa ) [[ 0 ]] (CALL 1000000 0x945304eb96065b2a98b57a48a06ae28d285a71b5 23 0 64 64 0) }", |
|||
"storage": {} |
|||
}, |
|||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
|||
"balance" : "23", |
|||
"code" : "0x600035560f6009590060203560003557", |
|||
"nonce" : "0", |
|||
"storage" : { |
|||
} |
|||
} |
|||
|
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "100000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000000000000" |
|||
} |
|||
}, |
|||
|
|||
"CallToReturn1": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "10000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (MSTORE 0 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) (MSTORE 32 0xaaffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffaa ) [[ 0 ]] (CALL 1000000 0x945304eb96065b2a98b57a48a06ae28d285a71b5 23 0 64 0 2) }", |
|||
"storage": {} |
|||
}, |
|||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
|||
"balance" : "23", |
|||
"code" : "0x6001600157603760005560026000f2", |
|||
"nonce" : "0", |
|||
"storage" : { |
|||
} |
|||
} |
|||
|
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "100000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000000000000" |
|||
} |
|||
}, |
|||
|
|||
"PostToReturn1": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "10000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (MSTORE 0 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) (MSTORE 32 0xaaffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffaa ) (POST 1000000 0x945304eb96065b2a98b57a48a06ae28d285a71b5 23 0 64 ) }", |
|||
"storage": {} |
|||
}, |
|||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
|||
"balance" : "23", |
|||
"code" : "0x603760005560026000f2", |
|||
"nonce" : "0", |
|||
"storage" : { |
|||
} |
|||
} |
|||
|
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "100000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000000000000" |
|||
} |
|||
}, |
|||
|
|||
"callstatelessToReturn1": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "10000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (MSTORE 0 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) (MSTORE 32 0xaaffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffaa ) [[ 0 ]] (CALLSTATELESS 500 0x945304eb96065b2a98b57a48a06ae28d285a71b5 23 0 64 0 2 ) }", |
|||
"storage": {} |
|||
}, |
|||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
|||
"balance" : "23", |
|||
"code" : "0x6001600157603760005560026000f2", |
|||
"nonce" : "0", |
|||
"storage" : { |
|||
} |
|||
} |
|||
|
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "100000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000000000000" |
|||
} |
|||
}, |
|||
|
|||
|
|||
"CallToNameRegistratorOutOfGas": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "10000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (MSTORE 0 0xeeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00) (MSTORE 32 0xaaffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffaa ) [[ 0 ]] (CALL 100 0x945304eb96065b2a98b57a48a06ae28d285a71b5 23 0 64 64 0) }", |
|||
"storage": {} |
|||
}, |
|||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
|||
"balance" : "23", |
|||
"code" : "0x600035560f6009590060203560003557", |
|||
"nonce" : "0", |
|||
"storage" : { |
|||
} |
|||
} |
|||
|
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "100000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "1000" |
|||
} |
|||
}, |
|||
|
|||
"CallToNameRegistratorTooMuchMemory0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "10000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (MSTORE 0 0xeeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00) (MSTORE 32 0xaaffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffaa ) [[ 0 ]] (CALL 500 0x945304eb96065b2a98b57a48a06ae28d285a71b5 23 987654321 64 64 0) }", |
|||
"storage": {} |
|||
}, |
|||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
|||
"balance" : "23", |
|||
"code" : "0x600035560f6009590060203560003557", |
|||
"nonce" : "0", |
|||
"storage" : { |
|||
} |
|||
} |
|||
|
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "100000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "1000" |
|||
} |
|||
}, |
|||
|
|||
"CallToNameRegistratorTooMuchMemory1": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "10000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (MSTORE 0 0xeeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00) (MSTORE 32 0xaaffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffaa ) [[ 0 ]] (CALL 500 0x945304eb96065b2a98b57a48a06ae28d285a71b5 23 0 9865432 64 0) }", |
|||
"storage": {} |
|||
}, |
|||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
|||
"balance" : "23", |
|||
"code" : "0x600035560f6009590060203560003557", |
|||
"nonce" : "0", |
|||
"storage" : { |
|||
} |
|||
} |
|||
|
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "100000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "1000" |
|||
} |
|||
}, |
|||
|
|||
"CallToNameRegistratorTooMuchMemory2": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "10000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (MSTORE 0 0xeeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00) (MSTORE 32 0xaaffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffaa ) [[ 0 ]] (CALL 500 0x945304eb96065b2a98b57a48a06ae28d285a71b5 23 0 64 987654 1) }", |
|||
"storage": {} |
|||
}, |
|||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
|||
"balance" : "23", |
|||
"code" : "0x600035560f6009590060203560003557", |
|||
"nonce" : "0", |
|||
"storage" : { |
|||
} |
|||
} |
|||
|
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "100000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "1000" |
|||
} |
|||
}, |
|||
|
|||
|
|||
"CallToNameRegistratorNotMuchMemory0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "10000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (MSTORE 0 0xeeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00) (MSTORE 32 0xaaffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffaa ) [[ 0 ]] (CALL 500 0x945304eb96065b2a98b57a48a06ae28d285a71b5 23 0 64 987654 0) }", |
|||
"storage": {} |
|||
}, |
|||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
|||
"balance" : "23", |
|||
"code" : "0x600035560f6009590060203560003557", |
|||
"nonce" : "0", |
|||
"storage" : { |
|||
} |
|||
} |
|||
|
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "100000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "1000" |
|||
} |
|||
}, |
|||
|
|||
"CallToNameRegistratorNotMuchMemory1": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "10000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (MSTORE 0 0xeeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00) (MSTORE 32 0xaaffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffaa ) [[ 0 ]] (CALL 500 0x945304eb96065b2a98b57a48a06ae28d285a71b5 23 987654 0 64 0) }", |
|||
"storage": {} |
|||
}, |
|||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
|||
"balance" : "23", |
|||
"code" : "0x600035560f6009590060203560003557", |
|||
"nonce" : "0", |
|||
"storage" : { |
|||
} |
|||
} |
|||
|
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "100000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "1000" |
|||
} |
|||
}, |
|||
|
|||
"CallRecursiveBomb": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "10000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "20000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (CALL 100000 0x945304eb96065b2a98b57a48a06ae28d285a71b5 23 0 0 0 0) }", |
|||
"storage": {} |
|||
}, |
|||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ [[ 0 ]] (+ (SLOAD 0) 1) [[ 1 ]] (CALL (- (GAS) 224) (ADDRESS) 0 0 0 0 0) } ", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "100000", |
|||
"data" : "", |
|||
"gasPrice" : "1", |
|||
"gas" : "20000000" |
|||
} |
|||
}, |
|||
|
|||
"suicide0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "10000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (SUICIDE (CALLER))}", |
|||
"storage": {} |
|||
}, |
|||
"cd1722f3947def4cf144679da39c4c32bdc35681" : { |
|||
"balance" : "23", |
|||
"code" : "0x600035560f6009590060203560003557", |
|||
"nonce" : "0", |
|||
"storage" : { |
|||
} |
|||
} |
|||
|
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "100000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "1000" |
|||
} |
|||
}, |
|||
|
|||
"suicideNotExistingAccount": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "10000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (SUICIDE 0xaa1722f3947def4cf144679da39c4c32bdc35681 )}", |
|||
"storage": {} |
|||
}, |
|||
"cd1722f3947def4cf144679da39c4c32bdc35681" : { |
|||
"balance" : "23", |
|||
"code" : "0x600035560f6009590060203560003557", |
|||
"nonce" : "0", |
|||
"storage" : { |
|||
} |
|||
} |
|||
|
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "100000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "1000" |
|||
} |
|||
}, |
|||
|
|||
"suicideSendEtherToMe": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "10000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (SUICIDE (ADDRESS) )}", |
|||
"storage": {} |
|||
}, |
|||
"cd1722f3947def4cf144679da39c4c32bdc35681" : { |
|||
"balance" : "23", |
|||
"code" : "0x600035560f6009590060203560003557", |
|||
"nonce" : "0", |
|||
"storage" : { |
|||
} |
|||
} |
|||
|
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "100000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "1000" |
|||
} |
|||
}, |
|||
|
|||
"return0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "10000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"cd1722f3947def4cf144679da39c4c32bdc35681" : { |
|||
"balance" : "23", |
|||
"code" : "{ (MSTORE8 0 55) (RETURN 0 1)}", |
|||
"nonce" : "0", |
|||
"storage" : { |
|||
} |
|||
} |
|||
|
|||
}, |
|||
"exec" : { |
|||
"address" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"origin" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"caller" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"value" : "100000", |
|||
"data" : "0xaa", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "1000" |
|||
} |
|||
}, |
|||
|
|||
"return1": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "10000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"cd1722f3947def4cf144679da39c4c32bdc35681" : { |
|||
"balance" : "23", |
|||
"code" : "{ (MSTORE8 0 55) (RETURN 0 2)}", |
|||
"nonce" : "0", |
|||
"storage" : { |
|||
} |
|||
} |
|||
|
|||
}, |
|||
"exec" : { |
|||
"address" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"origin" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"caller" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"value" : "100000", |
|||
"data" : "0xaa", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "1000" |
|||
} |
|||
}, |
|||
|
|||
"return2": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "10000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"cd1722f3947def4cf144679da39c4c32bdc35681" : { |
|||
"balance" : "23", |
|||
"code" : "{ (MSTORE8 0 55) (RETURN 0 33)}", |
|||
"nonce" : "0", |
|||
"storage" : { |
|||
} |
|||
} |
|||
|
|||
}, |
|||
"exec" : { |
|||
"address" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"origin" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"caller" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"value" : "100000", |
|||
"data" : "0xaa", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "1000" |
|||
} |
|||
}, |
|||
|
|||
"PostToNameRegistrator0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "10000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (MSTORE 0 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) (MSTORE 32 0xaaffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffaa ) (POST 1000000 0x945304eb96065b2a98b57a48a06ae28d285a71b5 23 0 64 ) }", |
|||
"storage": {} |
|||
}, |
|||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
|||
"balance" : "23", |
|||
"code" : "0x600035560f6009590060203560003557", |
|||
"nonce" : "0", |
|||
"storage" : { |
|||
} |
|||
} |
|||
|
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "100000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000000000000" |
|||
} |
|||
}, |
|||
|
|||
"callstatelessToNameRegistrator0": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "10000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "{ (MSTORE 0 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) (MSTORE 32 0xaaffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffaa ) [[ 0 ]] (CALLSTATELESS 1000000 0x945304eb96065b2a98b57a48a06ae28d285a71b5 23 0 64 64 0) }", |
|||
"storage": {} |
|||
}, |
|||
"945304eb96065b2a98b57a48a06ae28d285a71b5" : { |
|||
"balance" : "23", |
|||
"code" : "0x600035560f6009590060203560003557", |
|||
"nonce" : "0", |
|||
"storage" : { |
|||
} |
|||
} |
|||
|
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "100000", |
|||
"data" : "", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000000000000" |
|||
} |
|||
}, |
|||
|
|||
|
|||
|
|||
|
|||
"TestNameRegistrator": { |
|||
"env" : { |
|||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6", |
|||
"currentNumber" : "0", |
|||
"currentGasLimit" : "1000000", |
|||
"currentDifficulty" : "256", |
|||
"currentTimestamp" : 1, |
|||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" |
|||
}, |
|||
"pre" : { |
|||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { |
|||
"balance" : "1000000000000000000", |
|||
"nonce" : 0, |
|||
"code" : "0x600035560f6009590060203560003557", |
|||
"storage": {} |
|||
} |
|||
}, |
|||
"exec" : { |
|||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
|||
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681", |
|||
"value" : "1000000000000000000", |
|||
"data" : "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffafffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa", |
|||
"gasPrice" : "100000000000000", |
|||
"gas" : "10000" |
|||
} |
|||
} |
|||
|
|||
|
|||
|
|||
|
|||
} |
Loading…
Reference in new issue