ERC-20
Overview
Max Total Supply
112,395.442871249572973518 PRFT Test
Holders
282
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
240 PRFT TestValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ProofToken
Compiler Version
v0.4.15+commit.bbb8e64f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2017-10-22 */ pragma solidity ^0.4.15; contract TokenFactoryInterface { function createCloneToken( address _parentToken, uint _snapshotBlock, string _tokenName, string _tokenSymbol ) public returns (ProofToken newToken); } contract ControllerInterface { function proxyPayment(address _owner) public payable returns(bool); function onTransfer(address _from, address _to, uint _amount) public returns(bool); function onApprove(address _owner, address _spender, uint _amount) public returns(bool); } library SafeMath { function mul(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) internal constant returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } function sub(uint256 a, uint256 b) internal constant returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } contract ApproveAndCallReceiver { function receiveApproval(address from, uint256 _amount, address _token, bytes _data) public; } contract Controllable { address public controller; /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender account. */ function Controllable() public { controller = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyController() { require(msg.sender == controller); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newController The address to transfer ownership to. */ function transferControl(address newController) public onlyController { if (newController != address(0)) { controller = newController; } } } contract ProofTokenInterface is Controllable { event Mint(address indexed to, uint256 amount); event MintFinished(); event ClaimedTokens(address indexed _token, address indexed _owner, uint _amount); event NewCloneToken(address indexed _cloneToken, uint _snapshotBlock); event Approval(address indexed _owner, address indexed _spender, uint256 _amount); event Transfer(address indexed from, address indexed to, uint256 value); function totalSupply() public constant returns (uint); function totalSupplyAt(uint _blockNumber) public constant returns(uint); function balanceOf(address _owner) public constant returns (uint256 balance); function balanceOfAt(address _owner, uint _blockNumber) public constant returns (uint); function transfer(address _to, uint256 _amount) public returns (bool success); function transferFrom(address _from, address _to, uint256 _amount) public returns (bool success); function approve(address _spender, uint256 _amount) public returns (bool success); function approveAndCall(address _spender, uint256 _amount, bytes _extraData) public returns (bool success); function allowance(address _owner, address _spender) public constant returns (uint256 remaining); function mint(address _owner, uint _amount) public returns (bool); function importPresaleBalances(address[] _addresses, uint256[] _balances, address _presaleAddress) public returns (bool); function lockPresaleBalances() public returns (bool); function finishMinting() public returns (bool); function enableTransfers(bool _transfersEnabled) public; function createCloneToken(uint _snapshotBlock, string _cloneTokenName, string _cloneTokenSymbol) public returns (address); } contract ProofToken is Controllable { using SafeMath for uint256; ProofTokenInterface public parentToken; TokenFactoryInterface public tokenFactory; string public name; string public symbol; string public version; uint8 public decimals; struct Checkpoint { uint128 fromBlock; uint128 value; } uint256 public parentSnapShotBlock; uint256 public creationBlock; bool public transfersEnabled; mapping(address => Checkpoint[]) balances; mapping (address => mapping (address => uint)) allowed; Checkpoint[] totalSupplyHistory; bool public mintingFinished = false; bool public presaleBalancesLocked = false; uint256 public constant TOKENS_ALLOCATED_TO_PROOF = 1181031 * (10 ** 18); uint256 public constant TOTAL_PRESALE_TOKENS = 112386712924725508802400; event Mint(address indexed to, uint256 amount); event MintFinished(); event ClaimedTokens(address indexed _token, address indexed _owner, uint _amount); event NewCloneToken(address indexed cloneToken); event Approval(address indexed _owner, address indexed _spender, uint256 _amount); event Transfer(address indexed from, address indexed to, uint256 value); function ProofToken( address _tokenFactory, address _parentToken, uint256 _parentSnapShotBlock, string _tokenName, string _tokenSymbol ) public { tokenFactory = TokenFactoryInterface(_tokenFactory); parentToken = ProofTokenInterface(_parentToken); parentSnapShotBlock = _parentSnapShotBlock; name = _tokenName; symbol = _tokenSymbol; decimals = 18; transfersEnabled = false; creationBlock = block.number; version = '0.1'; } function() public payable { revert(); } /** * Returns the total Proof token supply at the current block * @return total supply {uint} */ function totalSupply() public constant returns (uint) { return totalSupplyAt(block.number); } /** * Returns the total Proof token supply at the given block number * @param _blockNumber {uint} * @return total supply {uint} */ function totalSupplyAt(uint _blockNumber) public constant returns(uint) { // These next few lines are used when the totalSupply of the token is // requested before a check point was ever created for this token, it // requires that the `parentToken.totalSupplyAt` be queried at the // genesis block for this token as that contains totalSupply of this // token at this block number. if ((totalSupplyHistory.length == 0) || (totalSupplyHistory[0].fromBlock > _blockNumber)) { if (address(parentToken) != 0) { return parentToken.totalSupplyAt(min(_blockNumber, parentSnapShotBlock)); } else { return 0; } // This will return the expected totalSupply during normal situations } else { return getValueAt(totalSupplyHistory, _blockNumber); } } /** * Returns the token holder balance at the current block * @param _owner {address} * @return balance {uint} */ function balanceOf(address _owner) public constant returns (uint256 balance) { return balanceOfAt(_owner, block.number); } /** * Returns the token holder balance the the given block number * @param _owner {address} * @param _blockNumber {uint} * @return balance {uint} */ function balanceOfAt(address _owner, uint _blockNumber) public constant returns (uint) { // These next few lines are used when the balance of the token is // requested before a check point was ever created for this token, it // requires that the `parentToken.balanceOfAt` be queried at the // genesis block for that token as this contains initial balance of // this token if ((balances[_owner].length == 0) || (balances[_owner][0].fromBlock > _blockNumber)) { if (address(parentToken) != 0) { return parentToken.balanceOfAt(_owner, min(_blockNumber, parentSnapShotBlock)); } else { // Has no parent return 0; } // This will return the expected balance during normal situations } else { return getValueAt(balances[_owner], _blockNumber); } } /** * Standard ERC20 transfer tokens * @param _to {address} * @param _amount {uint} * @return success {bool} */ function transfer(address _to, uint256 _amount) public returns (bool success) { return doTransfer(msg.sender, _to, _amount); } /** * Standard ERC20 transferFrom interface * @param _from {address} * @param _to {address} * @param _amount {uint256} * @return success {bool} */ function transferFrom(address _from, address _to, uint256 _amount) public returns (bool success) { require(allowed[_from][msg.sender] >= _amount); allowed[_from][msg.sender] -= _amount; return doTransfer(_from, _to, _amount); } /** * Standard ERC20 approve interface * @param _spender {address} * @param _amount {uint256} * @return success {bool} */ function approve(address _spender, uint256 _amount) public returns (bool success) { require(transfersEnabled); // To change the approve amount you first have to reduce the addresses` // allowance to zero by calling `approve(_spender,0)` if it is not // already 0 to mitigate the race condition described here: // https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 require((_amount == 0) || (allowed[msg.sender][_spender] == 0)); // Alerts the token controller of the approve function call if (isContract(controller)) { require(ControllerInterface(controller).onApprove(msg.sender, _spender, _amount)); } allowed[msg.sender][_spender] = _amount; Approval(msg.sender, _spender, _amount); return true; } function approveAndCall(address _spender, uint256 _amount, bytes _extraData) public returns (bool success) { approve(_spender, _amount); ApproveAndCallReceiver(_spender).receiveApproval( msg.sender, _amount, this, _extraData ); return true; } function allowance(address _owner, address _spender) public constant returns (uint256 remaining) { return allowed[_owner][_spender]; } function doTransfer(address _from, address _to, uint _amount) internal returns(bool) { require(transfersEnabled); require(_amount > 0); require(parentSnapShotBlock < block.number); require((_to != 0) && (_to != address(this))); // If the amount being transfered is more than the balance of the // account the transfer returns false var previousBalanceFrom = balanceOfAt(_from, block.number); require(previousBalanceFrom >= _amount); // Alerts the token controller of the transfer if (isContract(controller)) { require(ControllerInterface(controller).onTransfer(_from, _to, _amount)); } // First update the balance array with the new value for the address // sending the tokens updateValueAtNow(balances[_from], previousBalanceFrom - _amount); // Then update the balance array with the new value for the address // receiving the tokens var previousBalanceTo = balanceOfAt(_to, block.number); require(previousBalanceTo + _amount >= previousBalanceTo); // Check for overflow updateValueAtNow(balances[_to], previousBalanceTo + _amount); // An event to make the transfer easy to find on the blockchain Transfer(_from, _to, _amount); return true; } function mint(address _owner, uint _amount) public onlyController canMint returns (bool) { uint curTotalSupply = totalSupply(); uint previousBalanceTo = balanceOf(_owner); require(curTotalSupply + _amount >= curTotalSupply); // Check for overflow require(previousBalanceTo + _amount >= previousBalanceTo); // Check for overflow updateValueAtNow(totalSupplyHistory, curTotalSupply + _amount); updateValueAtNow(balances[_owner], previousBalanceTo + _amount); Transfer(0, _owner, _amount); return true; } modifier canMint() { require(!mintingFinished); _; } /** * Import presale balances before the start of the token sale. After importing * balances, lockPresaleBalances() has to be called to prevent further modification * of presale balances. * @param _addresses {address[]} Array of presale addresses * @param _balances {uint256[]} Array of balances corresponding to presale addresses. * @return success {bool} */ function importPresaleBalances(address[] _addresses, uint256[] _balances) public onlyController returns (bool) { require(presaleBalancesLocked == false); for (uint256 i = 0; i < _addresses.length; i++) { updateValueAtNow(balances[_addresses[i]], _balances[i]); Transfer(0, _addresses[i], _balances[i]); } updateValueAtNow(totalSupplyHistory, TOTAL_PRESALE_TOKENS); return true; } /** * Lock presale balances after successful presale balance import * @return A boolean that indicates if the operation was successful. */ function lockPresaleBalances() public onlyController returns (bool) { presaleBalancesLocked = true; return true; } /** * Lock the minting of Proof Tokens - to be called after the presale * @return {bool} success */ function finishMinting() public onlyController returns (bool) { mintingFinished = true; MintFinished(); return true; } /** * Enable or block transfers - to be called in case of emergency */ function enableTransfers(bool _transfersEnabled) public onlyController { transfersEnabled = _transfersEnabled; } function getValueAt(Checkpoint[] storage checkpoints, uint _block) constant internal returns (uint) { if (checkpoints.length == 0) return 0; // Shortcut for the actual value if (_block >= checkpoints[checkpoints.length-1].fromBlock) return checkpoints[checkpoints.length-1].value; if (_block < checkpoints[0].fromBlock) return 0; // Binary search of the value in the array uint min = 0; uint max = checkpoints.length-1; while (max > min) { uint mid = (max + min + 1) / 2; if (checkpoints[mid].fromBlock<=_block) { min = mid; } else { max = mid-1; } } return checkpoints[min].value; } function updateValueAtNow(Checkpoint[] storage checkpoints, uint _value ) internal { if ((checkpoints.length == 0) || (checkpoints[checkpoints.length-1].fromBlock < block.number)) { Checkpoint storage newCheckPoint = checkpoints[checkpoints.length++]; newCheckPoint.fromBlock = uint128(block.number); newCheckPoint.value = uint128(_value); } else { Checkpoint storage oldCheckPoint = checkpoints[checkpoints.length-1]; oldCheckPoint.value = uint128(_value); } } function isContract(address _addr) constant internal returns(bool) { uint size; if (_addr == 0) return false; assembly { size := extcodesize(_addr) } return size>0; } /// @dev Helper function to return a min betwen the two uints function min(uint a, uint b) internal constant returns (uint) { return a < b ? a : b; } /** * Clones Proof Token at the given snapshot block * @param _snapshotBlock {uint} * @param _cloneTokenName {string} * @param _cloneTokenSymbol {string} */ function createCloneToken( uint _snapshotBlock, string _cloneTokenName, string _cloneTokenSymbol ) public returns(address) { if (_snapshotBlock == 0) { _snapshotBlock = block.number; } if (_snapshotBlock > block.number) { _snapshotBlock = block.number; } ProofToken cloneToken = tokenFactory.createCloneToken( this, _snapshotBlock, _cloneTokenName, _cloneTokenSymbol ); cloneToken.transferControl(msg.sender); // An event to make the token easy to find on the blockchain NewCloneToken(address(cloneToken)); return address(cloneToken); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_addresses","type":"address[]"},{"name":"_balances","type":"uint256[]"}],"name":"importPresaleBalances","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"creationBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"presaleBalancesLocked","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_blockNumber","type":"uint256"}],"name":"balanceOfAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_ALLOCATED_TO_PROOF","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"lockPresaleBalances","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newController","type":"address"}],"name":"transferControl","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOTAL_PRESALE_TOKENS","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"parentToken","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_blockNumber","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_snapshotBlock","type":"uint256"},{"name":"_cloneTokenName","type":"string"},{"name":"_cloneTokenSymbol","type":"string"}],"name":"createCloneToken","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"transfersEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"parentSnapShotBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenFactory","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_transfersEnabled","type":"bool"}],"name":"enableTransfers","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"inputs":[{"name":"_tokenFactory","type":"address"},{"name":"_parentToken","type":"address"},{"name":"_parentSnapShotBlock","type":"uint256"},{"name":"_tokenName","type":"string"},{"name":"_tokenSymbol","type":"string"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_token","type":"address"},{"indexed":true,"name":"_owner","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"cloneToken","type":"address"}],"name":"NewCloneToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]
Contract Creation Code
6060604052600d805461ffff1916905534156200001b57600080fd5b60405162001d4638038062001d468339810160405280805191906020018051919060200180519190602001805182019190602001805190910190505b5b60008054600160a060020a03191633600160a060020a03161790555b60028054600160a060020a03808816600160a060020a031992831617909255600180549287169290911691909117905560078390556003828051620000be92916020019062000148565b506004818051620000d492916020019062000148565b506006805460ff199081166012179091556009805490911690554360085560408051908101604052600381527f302e310000000000000000000000000000000000000000000000000000000000602082015260059080516200013b92916020019062000148565b505b5050505050620001f2565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200018b57805160ff1916838001178555620001bb565b82800160010185558215620001bb579182015b82811115620001bb5782518255916020019190600101906200019e565b5b50620001ca929150620001ce565b5090565b620001ef91905b80821115620001ca5760008155600101620001d5565b5090565b90565b611b4480620002026000396000f300606060405236156101645763ffffffff60e060020a60003504166305d2035b811461016c57806306fdde0314610193578063095ea7b31461021e578063128f04e71461025457806317634514146102f757806318160ddd1461031c5780631a53cd901461034157806323b872dd14610368578063313ce567146103a457806340c10f19146103cd5780634ee2cd7e1461040357806354fd4d501461043757806357f664ed146104c25780635d0a7628146104e75780636d16fa411461050e57806370a082311461052f578063763fd2ab146105605780637d64bcb41461058557806380a54001146105ac57806395d89b41146105db578063981b24d0146106665780639ed74a231461068e578063a9059cbb14610742578063bef97c8714610778578063c5bcc4f11461079f578063cae9ca51146107c4578063dd62ed3e1461083d578063e77772fe14610874578063f41e60c5146108a3578063f77c4791146108bd575b5b600080fd5b005b341561017757600080fd5b61017f6108ec565b604051901515815260200160405180910390f35b341561019e57600080fd5b6101a66108f5565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101e35780820151818401525b6020016101ca565b50505050905090810190601f1680156102105780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561022957600080fd5b61017f600160a060020a0360043516602435610993565b604051901515815260200160405180910390f35b341561025f57600080fd5b61017f600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284378201915050505050509190803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750949650610afd95505050505050565b604051901515815260200160405180910390f35b341561030257600080fd5b61030a610c29565b60405190815260200160405180910390f35b341561032757600080fd5b61030a610c2f565b60405190815260200160405180910390f35b341561034c57600080fd5b61017f610c40565b604051901515815260200160405180910390f35b341561037357600080fd5b61017f600160a060020a0360043581169060243516604435610c4e565b604051901515815260200160405180910390f35b34156103af57600080fd5b6103b7610cc6565b60405160ff909116815260200160405180910390f35b34156103d857600080fd5b61017f600160a060020a0360043516602435610ccf565b604051901515815260200160405180910390f35b341561040e57600080fd5b61030a600160a060020a0360043516602435610db3565b60405190815260200160405180910390f35b341561044257600080fd5b6101a6610ef9565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101e35780820151818401525b6020016101ca565b50505050905090810190601f1680156102105780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156104cd57600080fd5b61030a610f97565b60405190815260200160405180910390f35b34156104f257600080fd5b61017f610fa5565b604051901515815260200160405180910390f35b341561051957600080fd5b61016a600160a060020a0360043516610fd8565b005b341561053a57600080fd5b61030a600160a060020a0360043516611030565b60405190815260200160405180910390f35b341561056b57600080fd5b61030a611044565b60405190815260200160405180910390f35b341561059057600080fd5b61017f611052565b604051901515815260200160405180910390f35b34156105b757600080fd5b6105bf6110af565b604051600160a060020a03909116815260200160405180910390f35b34156105e657600080fd5b6101a66110be565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101e35780820151818401525b6020016101ca565b50505050905090810190601f1680156102105780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561067157600080fd5b61030a60043561115c565b60405190815260200160405180910390f35b341561069957600080fd5b6105bf600480359060446024803590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284378201915050505050509190803590602001908201803590602001908080601f01602080910402602001604051908101604052818152929190602084018383808284375094965061125495505050505050565b604051600160a060020a03909116815260200160405180910390f35b341561074d57600080fd5b61017f600160a060020a0360043516602435611471565b604051901515815260200160405180910390f35b341561078357600080fd5b61017f611487565b604051901515815260200160405180910390f35b34156107aa57600080fd5b61030a611490565b60405190815260200160405180910390f35b34156107cf57600080fd5b61017f60048035600160a060020a03169060248035919060649060443590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061149695505050505050565b604051901515815260200160405180910390f35b341561084857600080fd5b61030a600160a060020a03600435811690602435166115aa565b60405190815260200160405180910390f35b341561087f57600080fd5b6105bf6115d7565b604051600160a060020a03909116815260200160405180910390f35b34156108ae57600080fd5b61016a60043515156115e6565b005b34156108c857600080fd5b6105bf611614565b604051600160a060020a03909116815260200160405180910390f35b600d5460ff1681565b60038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b505050505081565b60095460009060ff1615156109a757600080fd5b8115806109d75750600160a060020a033381166000908152600b6020908152604080832093871683529290522054155b15156109e257600080fd5b6000546109f790600160a060020a0316611623565b15610a925760008054600160a060020a03169063da682aeb903390869086906040516020015260405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401602060405180830381600087803b1515610a6c57600080fd5b6102c65a03f11515610a7d57600080fd5b505050604051805190501515610a9257600080fd5b5b600160a060020a033381166000818152600b6020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60008054819033600160a060020a03908116911614610b1b57600080fd5b600d54610100900460ff1615610b3057600080fd5b5060005b8351811015610c0757610b95600a6000868481518110610b5057fe5b90602001906020020151600160a060020a0316600160a060020a03168152602001908152602001600020848381518110610b8657fe5b90602001906020020151611650565b838181518110610ba157fe5b90602001906020020151600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef858481518110610be357fe5b9060200190602002015160405190815260200160405180910390a35b600101610b34565b610c1c600c6917cc7ef452b682538760611650565b600191505b5b5092915050565b60085481565b6000610c3a4361115c565b90505b90565b600d54610100900460ff1681565b600160a060020a038084166000908152600b602090815260408083203390941683529290529081205482901015610c8457600080fd5b600160a060020a038085166000908152600b602090815260408083203390941683529290522080548390039055610cbc848484611753565b90505b9392505050565b60065460ff1681565b600080548190819033600160a060020a03908116911614610cef57600080fd5b600d5460ff1615610cff57600080fd5b610d07610c2f565b9150610d1285611030565b905083820182901015610d2457600080fd5b83810181901015610d3457600080fd5b610d41600c858401611650565b600160a060020a0385166000908152600a60205260409020610d6590828601611650565b84600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405190815260200160405180910390a3600192505b5b5b505092915050565b600160a060020a0382166000908152600a60205260408120541580610e135750600160a060020a0383166000908152600a6020526040812080548492908110610df857fe5b906000526020600020900160005b50546001608060020a0316115b15610ec957600154600160a060020a031615610ebc57600154600754600160a060020a0390911690634ee2cd7e908590610e4e90869061193f565b60006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610e9a57600080fd5b6102c65a03f11515610eab57600080fd5b505050604051805190509050610af7565b506000610af7565b610af7565b600160a060020a0383166000908152600a60205260409020610eeb9083611959565b9050610af7565b5b92915050565b60058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b505050505081565b69fa17d19cc9954d3c000081565b6000805433600160a060020a03908116911614610fc157600080fd5b50600d805461ff00191661010017905560015b5b90565b60005433600160a060020a03908116911614610ff357600080fd5b600160a060020a0381161561102b576000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b600061103c8243610db3565b90505b919050565b6917cc7ef452b68253876081565b6000805433600160a060020a0390811691161461106e57600080fd5b600d805460ff191660011790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a15060015b5b90565b600154600160a060020a031681565b60048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b505050505081565b600c546000901580611195575081600c600081548110151561117a57fe5b906000526020600020900160005b50546001608060020a0316115b1561123c57600154600160a060020a03161561122f57600154600754600160a060020a039091169063981b24d0906111ce90859061193f565b60006040516020015260405160e060020a63ffffffff84160281526004810191909152602401602060405180830381600087803b151561120d57600080fd5b6102c65a03f1151561121e57600080fd5b50505060405180519050905061103f565b50600061103f565b61103f565b611247600c83611959565b905061103f565b5b919050565b600080841515611262574394505b4385111561126e574394505b600254600160a060020a03166359b58dba308787876000604051602001526040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156112fe5780820151818401525b6020016112e5565b50505050905090810190601f16801561132b5780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b838110156113625780820151818401525b602001611349565b50505050905090810190601f16801561138f5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b15156113b157600080fd5b6102c65a03f115156113c257600080fd5b5050506040518051915050600160a060020a038116636d16fa413360405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401600060405180830381600087803b151561141b57600080fd5b6102c65a03f1151561142c57600080fd5b50505080600160a060020a03167ff30000f977bee4f7df8246f69a4ba66f2d5be05d1fdaa0f0044d24fc52748b0060405160405180910390a28091505b509392505050565b600061147e338484611753565b90505b92915050565b60095460ff1681565b60075481565b60006114a28484610993565b5083600160a060020a0316638f4ffcb1338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561153c5780820151818401525b602001611523565b50505050905090810190601f1680156115695780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b151561158a57600080fd5b6102c65a03f1151561159b57600080fd5b505050600190505b9392505050565b600160a060020a038083166000908152600b60209081526040808320938516835292905220545b92915050565b600254600160a060020a031681565b60005433600160a060020a0390811691161461160157600080fd5b6009805460ff19168215151790555b5b50565b600054600160a060020a031681565b600080600160a060020a038316151561163f576000915061164a565b823b90506000811191505b50919050565b81546000908190158061168d5750835443908590600019810190811061167257fe5b906000526020600020900160005b50546001608060020a0316105b1561170357835484906116a38260018301611acd565b815481106116ad57fe5b906000526020600020900160005b5080546001608060020a03858116700100000000000000000000000000000000024382166fffffffffffffffffffffffffffffffff199093169290921716178155915061174c565b83548490600019810190811061171557fe5b906000526020600020900160005b5080546001608060020a0380861670010000000000000000000000000000000002911617815590505b5b50505050565b6009546000908190819060ff16151561176b57600080fd5b6000841161177857600080fd5b60075443901061178757600080fd5b600160a060020a038516158015906117b1575030600160a060020a031685600160a060020a031614155b15156117bc57600080fd5b6117c68643610db3565b9150838210156117d557600080fd5b6000546117ea90600160a060020a0316611623565b156118855760008054600160a060020a031690634a393149908890889088906040516020015260405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401602060405180830381600087803b151561185f57600080fd5b6102c65a03f1151561187057600080fd5b50505060405180519050151561188557600080fd5b5b600160a060020a0386166000908152600a602052604090206118aa90858403611650565b6118b48543610db3565b9050838101819010156118c657600080fd5b600160a060020a0385166000908152600a602052604090206118ea90828601611650565b84600160a060020a031686600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405190815260200160405180910390a3600192505b50509392505050565b600081831061194e578161147e565b825b90505b92915050565b6000806000808580549050600014156119755760009350611ac4565b85548690600019810190811061198757fe5b906000526020600020900160005b50546001608060020a031685106119ec578554869060001981019081106119b857fe5b906000526020600020900160005b505470010000000000000000000000000000000090046001608060020a03169350611ac4565b8560008154811015156119fb57fe5b906000526020600020900160005b50546001608060020a0316851015611a245760009350611ac4565b8554600093506000190191505b82821115611a865760026001838501015b049050848682815481101515611a5457fe5b906000526020600020900160005b50546001608060020a031611611a7a57809250611a81565b6001810391505b611a31565b8583815481101515611a9457fe5b906000526020600020900160005b505470010000000000000000000000000000000090046001608060020a031693505b50505092915050565b815481835581811511611af157600083815260209020611af1918101908301611af7565b5b505050565b610c3d91905b80821115611b115760008155600101611afd565b5090565b905600a165627a7a723058204431863c8c6f8bfcf7c3ed2244536832146d48594f9dcfda318c4b44e926d37b0029000000000000000000000000d8481fccdd4fd4c7125c729bbb899213c5dabb5c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a50726f6f6620546573740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095052465420546573740000000000000000000000000000000000000000000000
Deployed Bytecode
0x606060405236156101645763ffffffff60e060020a60003504166305d2035b811461016c57806306fdde0314610193578063095ea7b31461021e578063128f04e71461025457806317634514146102f757806318160ddd1461031c5780631a53cd901461034157806323b872dd14610368578063313ce567146103a457806340c10f19146103cd5780634ee2cd7e1461040357806354fd4d501461043757806357f664ed146104c25780635d0a7628146104e75780636d16fa411461050e57806370a082311461052f578063763fd2ab146105605780637d64bcb41461058557806380a54001146105ac57806395d89b41146105db578063981b24d0146106665780639ed74a231461068e578063a9059cbb14610742578063bef97c8714610778578063c5bcc4f11461079f578063cae9ca51146107c4578063dd62ed3e1461083d578063e77772fe14610874578063f41e60c5146108a3578063f77c4791146108bd575b5b600080fd5b005b341561017757600080fd5b61017f6108ec565b604051901515815260200160405180910390f35b341561019e57600080fd5b6101a66108f5565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101e35780820151818401525b6020016101ca565b50505050905090810190601f1680156102105780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561022957600080fd5b61017f600160a060020a0360043516602435610993565b604051901515815260200160405180910390f35b341561025f57600080fd5b61017f600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284378201915050505050509190803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750949650610afd95505050505050565b604051901515815260200160405180910390f35b341561030257600080fd5b61030a610c29565b60405190815260200160405180910390f35b341561032757600080fd5b61030a610c2f565b60405190815260200160405180910390f35b341561034c57600080fd5b61017f610c40565b604051901515815260200160405180910390f35b341561037357600080fd5b61017f600160a060020a0360043581169060243516604435610c4e565b604051901515815260200160405180910390f35b34156103af57600080fd5b6103b7610cc6565b60405160ff909116815260200160405180910390f35b34156103d857600080fd5b61017f600160a060020a0360043516602435610ccf565b604051901515815260200160405180910390f35b341561040e57600080fd5b61030a600160a060020a0360043516602435610db3565b60405190815260200160405180910390f35b341561044257600080fd5b6101a6610ef9565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101e35780820151818401525b6020016101ca565b50505050905090810190601f1680156102105780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156104cd57600080fd5b61030a610f97565b60405190815260200160405180910390f35b34156104f257600080fd5b61017f610fa5565b604051901515815260200160405180910390f35b341561051957600080fd5b61016a600160a060020a0360043516610fd8565b005b341561053a57600080fd5b61030a600160a060020a0360043516611030565b60405190815260200160405180910390f35b341561056b57600080fd5b61030a611044565b60405190815260200160405180910390f35b341561059057600080fd5b61017f611052565b604051901515815260200160405180910390f35b34156105b757600080fd5b6105bf6110af565b604051600160a060020a03909116815260200160405180910390f35b34156105e657600080fd5b6101a66110be565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101e35780820151818401525b6020016101ca565b50505050905090810190601f1680156102105780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561067157600080fd5b61030a60043561115c565b60405190815260200160405180910390f35b341561069957600080fd5b6105bf600480359060446024803590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284378201915050505050509190803590602001908201803590602001908080601f01602080910402602001604051908101604052818152929190602084018383808284375094965061125495505050505050565b604051600160a060020a03909116815260200160405180910390f35b341561074d57600080fd5b61017f600160a060020a0360043516602435611471565b604051901515815260200160405180910390f35b341561078357600080fd5b61017f611487565b604051901515815260200160405180910390f35b34156107aa57600080fd5b61030a611490565b60405190815260200160405180910390f35b34156107cf57600080fd5b61017f60048035600160a060020a03169060248035919060649060443590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061149695505050505050565b604051901515815260200160405180910390f35b341561084857600080fd5b61030a600160a060020a03600435811690602435166115aa565b60405190815260200160405180910390f35b341561087f57600080fd5b6105bf6115d7565b604051600160a060020a03909116815260200160405180910390f35b34156108ae57600080fd5b61016a60043515156115e6565b005b34156108c857600080fd5b6105bf611614565b604051600160a060020a03909116815260200160405180910390f35b600d5460ff1681565b60038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b505050505081565b60095460009060ff1615156109a757600080fd5b8115806109d75750600160a060020a033381166000908152600b6020908152604080832093871683529290522054155b15156109e257600080fd5b6000546109f790600160a060020a0316611623565b15610a925760008054600160a060020a03169063da682aeb903390869086906040516020015260405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401602060405180830381600087803b1515610a6c57600080fd5b6102c65a03f11515610a7d57600080fd5b505050604051805190501515610a9257600080fd5b5b600160a060020a033381166000818152600b6020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60008054819033600160a060020a03908116911614610b1b57600080fd5b600d54610100900460ff1615610b3057600080fd5b5060005b8351811015610c0757610b95600a6000868481518110610b5057fe5b90602001906020020151600160a060020a0316600160a060020a03168152602001908152602001600020848381518110610b8657fe5b90602001906020020151611650565b838181518110610ba157fe5b90602001906020020151600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef858481518110610be357fe5b9060200190602002015160405190815260200160405180910390a35b600101610b34565b610c1c600c6917cc7ef452b682538760611650565b600191505b5b5092915050565b60085481565b6000610c3a4361115c565b90505b90565b600d54610100900460ff1681565b600160a060020a038084166000908152600b602090815260408083203390941683529290529081205482901015610c8457600080fd5b600160a060020a038085166000908152600b602090815260408083203390941683529290522080548390039055610cbc848484611753565b90505b9392505050565b60065460ff1681565b600080548190819033600160a060020a03908116911614610cef57600080fd5b600d5460ff1615610cff57600080fd5b610d07610c2f565b9150610d1285611030565b905083820182901015610d2457600080fd5b83810181901015610d3457600080fd5b610d41600c858401611650565b600160a060020a0385166000908152600a60205260409020610d6590828601611650565b84600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405190815260200160405180910390a3600192505b5b5b505092915050565b600160a060020a0382166000908152600a60205260408120541580610e135750600160a060020a0383166000908152600a6020526040812080548492908110610df857fe5b906000526020600020900160005b50546001608060020a0316115b15610ec957600154600160a060020a031615610ebc57600154600754600160a060020a0390911690634ee2cd7e908590610e4e90869061193f565b60006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610e9a57600080fd5b6102c65a03f11515610eab57600080fd5b505050604051805190509050610af7565b506000610af7565b610af7565b600160a060020a0383166000908152600a60205260409020610eeb9083611959565b9050610af7565b5b92915050565b60058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b505050505081565b69fa17d19cc9954d3c000081565b6000805433600160a060020a03908116911614610fc157600080fd5b50600d805461ff00191661010017905560015b5b90565b60005433600160a060020a03908116911614610ff357600080fd5b600160a060020a0381161561102b576000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b600061103c8243610db3565b90505b919050565b6917cc7ef452b68253876081565b6000805433600160a060020a0390811691161461106e57600080fd5b600d805460ff191660011790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a15060015b5b90565b600154600160a060020a031681565b60048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b505050505081565b600c546000901580611195575081600c600081548110151561117a57fe5b906000526020600020900160005b50546001608060020a0316115b1561123c57600154600160a060020a03161561122f57600154600754600160a060020a039091169063981b24d0906111ce90859061193f565b60006040516020015260405160e060020a63ffffffff84160281526004810191909152602401602060405180830381600087803b151561120d57600080fd5b6102c65a03f1151561121e57600080fd5b50505060405180519050905061103f565b50600061103f565b61103f565b611247600c83611959565b905061103f565b5b919050565b600080841515611262574394505b4385111561126e574394505b600254600160a060020a03166359b58dba308787876000604051602001526040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156112fe5780820151818401525b6020016112e5565b50505050905090810190601f16801561132b5780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b838110156113625780820151818401525b602001611349565b50505050905090810190601f16801561138f5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b15156113b157600080fd5b6102c65a03f115156113c257600080fd5b5050506040518051915050600160a060020a038116636d16fa413360405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401600060405180830381600087803b151561141b57600080fd5b6102c65a03f1151561142c57600080fd5b50505080600160a060020a03167ff30000f977bee4f7df8246f69a4ba66f2d5be05d1fdaa0f0044d24fc52748b0060405160405180910390a28091505b509392505050565b600061147e338484611753565b90505b92915050565b60095460ff1681565b60075481565b60006114a28484610993565b5083600160a060020a0316638f4ffcb1338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561153c5780820151818401525b602001611523565b50505050905090810190601f1680156115695780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b151561158a57600080fd5b6102c65a03f1151561159b57600080fd5b505050600190505b9392505050565b600160a060020a038083166000908152600b60209081526040808320938516835292905220545b92915050565b600254600160a060020a031681565b60005433600160a060020a0390811691161461160157600080fd5b6009805460ff19168215151790555b5b50565b600054600160a060020a031681565b600080600160a060020a038316151561163f576000915061164a565b823b90506000811191505b50919050565b81546000908190158061168d5750835443908590600019810190811061167257fe5b906000526020600020900160005b50546001608060020a0316105b1561170357835484906116a38260018301611acd565b815481106116ad57fe5b906000526020600020900160005b5080546001608060020a03858116700100000000000000000000000000000000024382166fffffffffffffffffffffffffffffffff199093169290921716178155915061174c565b83548490600019810190811061171557fe5b906000526020600020900160005b5080546001608060020a0380861670010000000000000000000000000000000002911617815590505b5b50505050565b6009546000908190819060ff16151561176b57600080fd5b6000841161177857600080fd5b60075443901061178757600080fd5b600160a060020a038516158015906117b1575030600160a060020a031685600160a060020a031614155b15156117bc57600080fd5b6117c68643610db3565b9150838210156117d557600080fd5b6000546117ea90600160a060020a0316611623565b156118855760008054600160a060020a031690634a393149908890889088906040516020015260405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401602060405180830381600087803b151561185f57600080fd5b6102c65a03f1151561187057600080fd5b50505060405180519050151561188557600080fd5b5b600160a060020a0386166000908152600a602052604090206118aa90858403611650565b6118b48543610db3565b9050838101819010156118c657600080fd5b600160a060020a0385166000908152600a602052604090206118ea90828601611650565b84600160a060020a031686600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405190815260200160405180910390a3600192505b50509392505050565b600081831061194e578161147e565b825b90505b92915050565b6000806000808580549050600014156119755760009350611ac4565b85548690600019810190811061198757fe5b906000526020600020900160005b50546001608060020a031685106119ec578554869060001981019081106119b857fe5b906000526020600020900160005b505470010000000000000000000000000000000090046001608060020a03169350611ac4565b8560008154811015156119fb57fe5b906000526020600020900160005b50546001608060020a0316851015611a245760009350611ac4565b8554600093506000190191505b82821115611a865760026001838501015b049050848682815481101515611a5457fe5b906000526020600020900160005b50546001608060020a031611611a7a57809250611a81565b6001810391505b611a31565b8583815481101515611a9457fe5b906000526020600020900160005b505470010000000000000000000000000000000090046001608060020a031693505b50505092915050565b815481835581811511611af157600083815260209020611af1918101908301611af7565b5b505050565b610c3d91905b80821115611b115760008155600101611afd565b5090565b905600a165627a7a723058204431863c8c6f8bfcf7c3ed2244536832146d48594f9dcfda318c4b44e926d37b0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d8481fccdd4fd4c7125c729bbb899213c5dabb5c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a50726f6f6620546573740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095052465420546573740000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenFactory (address): 0xd8481FCCdd4fD4c7125c729bbb899213C5dABb5c
Arg [1] : _parentToken (address): 0x0000000000000000000000000000000000000000
Arg [2] : _parentSnapShotBlock (uint256): 0
Arg [3] : _tokenName (string): Proof Test
Arg [4] : _tokenSymbol (string): PRFT Test
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 000000000000000000000000d8481fccdd4fd4c7125c729bbb899213c5dabb5c
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [4] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 50726f6f66205465737400000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [8] : 5052465420546573740000000000000000000000000000000000000000000000
Swarm Source
bzzr://4431863c8c6f8bfcf7c3ed2244536832146d48594f9dcfda318c4b44e926d37b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.