Feature Tip: Add private address tag to any address under My Name Tag !
Token migration announcement. qiibeeToken contract has migrated to a new address.
ERC-20
Overview
Max Total Supply
557,759,881.010207497385843048 QBX
Holders
20,823 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
999.512055787896513896 QBXValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
QiibeeToken
Compiler Version
v0.4.16+commit.d7661dd9
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2017-12-21 */ pragma solidity ^0.4.13; library Math { function max64(uint64 a, uint64 b) internal constant returns (uint64) { return a >= b ? a : b; } function min64(uint64 a, uint64 b) internal constant returns (uint64) { return a < b ? a : b; } function max256(uint256 a, uint256 b) internal constant returns (uint256) { return a >= b ? a : b; } function min256(uint256 a, uint256 b) internal constant returns (uint256) { return a < b ? a : b; } } 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 Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) onlyOwner public { require(newOwner != address(0)); OwnershipTransferred(owner, newOwner); owner = newOwner; } } contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused public { paused = true; Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; Unpause(); } } contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) public constant returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public constant returns (uint256 balance) { return balances[_owner]; } } contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public constant returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } contract LimitedTransferToken is ERC20 { /** * @dev Checks whether it can transfer or otherwise throws. */ modifier canTransfer(address _sender, uint256 _value) { require(_value <= transferableTokens(_sender, uint64(now))); _; } /** * @dev Checks modifier and allows transfer if tokens are not locked. * @param _to The address that will receive the tokens. * @param _value The amount of tokens to be transferred. */ function transfer(address _to, uint256 _value) canTransfer(msg.sender, _value) public returns (bool) { return super.transfer(_to, _value); } /** * @dev Checks modifier and allows transfer if tokens are not locked. * @param _from The address that will send the tokens. * @param _to The address that will receive the tokens. * @param _value The amount of tokens to be transferred. */ function transferFrom(address _from, address _to, uint256 _value) canTransfer(_from, _value) public returns (bool) { return super.transferFrom(_from, _to, _value); } /** * @dev Default transferable tokens function returns all tokens for a holder (no limit). * @dev Overwriting transferableTokens(address holder, uint64 time) is the way to provide the * specific logic for limiting token transferability for a holder over time. */ function transferableTokens(address holder, uint64 time) public constant returns (uint256) { return balanceOf(holder); } } contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_to != address(0)); uint256 _allowance = allowed[_from][msg.sender]; // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met // require (_value <= _allowance); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = _allowance.sub(_value); Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address _owner, address _spender) public constant returns (uint256 remaining) { return allowed[_owner][_spender]; } /** * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol */ function increaseApproval (address _spender, uint _addedValue) returns (bool success) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } function decreaseApproval (address _spender, uint _subtractedValue) returns (bool success) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } contract BurnableToken is StandardToken { event Burn(address indexed burner, uint256 value); /** * @dev Burns a specific amount of tokens. * @param _value The amount of token to be burned. */ function burn(uint256 _value) public { require(_value > 0); address burner = msg.sender; balances[burner] = balances[burner].sub(_value); totalSupply = totalSupply.sub(_value); Burn(burner, _value); } } contract MintableToken is StandardToken, Ownable { event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; modifier canMint() { require(!mintingFinished); _; } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) { totalSupply = totalSupply.add(_amount); balances[_to] = balances[_to].add(_amount); Mint(_to, _amount); Transfer(0x0, _to, _amount); return true; } /** * @dev Function to stop minting new tokens. * @return True if the operation was successful. */ function finishMinting() onlyOwner public returns (bool) { mintingFinished = true; MintFinished(); return true; } } contract PausableToken is StandardToken, Pausable { function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) { return super.transfer(_to, _value); } function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) { return super.transferFrom(_from, _to, _value); } function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) { return super.approve(_spender, _value); } function increaseApproval(address _spender, uint _addedValue) public whenNotPaused returns (bool success) { return super.increaseApproval(_spender, _addedValue); } function decreaseApproval(address _spender, uint _subtractedValue) public whenNotPaused returns (bool success) { return super.decreaseApproval(_spender, _subtractedValue); } } contract VestedToken is StandardToken, LimitedTransferToken { uint256 MAX_GRANTS_PER_ADDRESS = 20; struct TokenGrant { address granter; // 20 bytes uint256 value; // 32 bytes uint64 cliff; uint64 vesting; uint64 start; // 3 * 8 = 24 bytes bool revokable; bool burnsOnRevoke; // 2 * 1 = 2 bits? or 2 bytes? } // total 78 bytes = 3 sstore per operation (32 per sstore) mapping (address => TokenGrant[]) public grants; event NewTokenGrant(address indexed from, address indexed to, uint256 value, uint256 grantId); /** * @dev Grant tokens to a specified address * @param _to address The address which the tokens will be granted to. * @param _value uint256 The amount of tokens to be granted. * @param _start uint64 Time of the beginning of the grant. * @param _cliff uint64 Time of the cliff period. * @param _vesting uint64 The vesting period. */ function grantVestedTokens( address _to, uint256 _value, uint64 _start, uint64 _cliff, uint64 _vesting, bool _revokable, bool _burnsOnRevoke ) public { // Check for date inconsistencies that may cause unexpected behavior require(_cliff >= _start && _vesting >= _cliff); require(tokenGrantsCount(_to) < MAX_GRANTS_PER_ADDRESS); // To prevent a user being spammed and have his balance locked (out of gas attack when calculating vesting). uint256 count = grants[_to].push( TokenGrant( _revokable ? msg.sender : 0, // avoid storing an extra 20 bytes when it is non-revokable _value, _cliff, _vesting, _start, _revokable, _burnsOnRevoke ) ); transfer(_to, _value); NewTokenGrant(msg.sender, _to, _value, count - 1); } /** * @dev Revoke the grant of tokens of a specifed address. * @param _holder The address which will have its tokens revoked. * @param _grantId The id of the token grant. */ function revokeTokenGrant(address _holder, uint256 _grantId) public { TokenGrant storage grant = grants[_holder][_grantId]; require(grant.revokable); require(grant.granter == msg.sender); // Only granter can revoke it address receiver = grant.burnsOnRevoke ? 0xdead : msg.sender; uint256 nonVested = nonVestedTokens(grant, uint64(now)); // remove grant from array delete grants[_holder][_grantId]; grants[_holder][_grantId] = grants[_holder][grants[_holder].length.sub(1)]; grants[_holder].length -= 1; balances[receiver] = balances[receiver].add(nonVested); balances[_holder] = balances[_holder].sub(nonVested); Transfer(_holder, receiver, nonVested); } /** * @dev Calculate the total amount of transferable tokens of a holder at a given time * @param holder address The address of the holder * @param time uint64 The specific time. * @return An uint256 representing a holder's total amount of transferable tokens. */ function transferableTokens(address holder, uint64 time) public constant returns (uint256) { uint256 grantIndex = tokenGrantsCount(holder); if (grantIndex == 0) return super.transferableTokens(holder, time); // shortcut for holder without grants // Iterate through all the grants the holder has, and add all non-vested tokens uint256 nonVested = 0; for (uint256 i = 0; i < grantIndex; i++) { nonVested = SafeMath.add(nonVested, nonVestedTokens(grants[holder][i], time)); } // Balance - totalNonVested is the amount of tokens a holder can transfer at any given time uint256 vestedTransferable = SafeMath.sub(balanceOf(holder), nonVested); // Return the minimum of how many vested can transfer and other value // in case there are other limiting transferability factors (default is balanceOf) return Math.min256(vestedTransferable, super.transferableTokens(holder, time)); } /** * @dev Check the amount of grants that an address has. * @param _holder The holder of the grants. * @return A uint256 representing the total amount of grants. */ function tokenGrantsCount(address _holder) public constant returns (uint256 index) { return grants[_holder].length; } /** * @dev Calculate amount of vested tokens at a specific time * @param tokens uint256 The amount of tokens granted * @param time uint64 The time to be checked * @param start uint64 The time representing the beginning of the grant * @param cliff uint64 The cliff period, the period before nothing can be paid out * @param vesting uint64 The vesting period * @return An uint256 representing the amount of vested tokens of a specific grant * transferableTokens * | _/-------- vestedTokens rect * | _/ * | _/ * | _/ * | _/ * | / * | .| * | . | * | . | * | . | * | . | * | . | * +===+===========+---------+----------> time * Start Cliff Vesting */ function calculateVestedTokens( uint256 tokens, uint256 time, uint256 start, uint256 cliff, uint256 vesting) public constant returns (uint256) { // Shortcuts for before cliff and after vesting cases. if (time < cliff) return 0; if (time >= vesting) return tokens; // Interpolate all vested tokens. // As before cliff the shortcut returns 0, we can use just calculate a value // in the vesting rect (as shown in above's figure) // vestedTokens = (tokens * (time - start)) / (vesting - start) uint256 vestedTokens = SafeMath.div( SafeMath.mul( tokens, SafeMath.sub(time, start) ), SafeMath.sub(vesting, start) ); return vestedTokens; } /** * @dev Get all information about a specific grant. * @param _holder The address which will have its tokens revoked. * @param _grantId The id of the token grant. * @return Returns all the values that represent a TokenGrant(address, value, start, cliff, * revokability, burnsOnRevoke, and vesting) plus the vested value at the current time. */ function tokenGrant(address _holder, uint256 _grantId) public constant returns (address granter, uint256 value, uint256 vested, uint64 start, uint64 cliff, uint64 vesting, bool revokable, bool burnsOnRevoke) { TokenGrant storage grant = grants[_holder][_grantId]; granter = grant.granter; value = grant.value; start = grant.start; cliff = grant.cliff; vesting = grant.vesting; revokable = grant.revokable; burnsOnRevoke = grant.burnsOnRevoke; vested = vestedTokens(grant, uint64(now)); } /** * @dev Get the amount of vested tokens at a specific time. * @param grant TokenGrant The grant to be checked. * @param time The time to be checked * @return An uint256 representing the amount of vested tokens of a specific grant at a specific time. */ function vestedTokens(TokenGrant grant, uint64 time) private constant returns (uint256) { return calculateVestedTokens( grant.value, uint256(time), uint256(grant.start), uint256(grant.cliff), uint256(grant.vesting) ); } /** * @dev Calculate the amount of non vested tokens at a specific time. * @param grant TokenGrant The grant to be checked. * @param time uint64 The time to be checked * @return An uint256 representing the amount of non vested tokens of a specific grant on the * passed time frame. */ function nonVestedTokens(TokenGrant grant, uint64 time) private constant returns (uint256) { return grant.value.sub(vestedTokens(grant, time)); } /** * @dev Calculate the date when the holder can transfer all its tokens * @param holder address The address of the holder * @return An uint256 representing the date of the last transferable tokens. */ function lastTokenIsTransferableDate(address holder) public constant returns (uint64 date) { date = uint64(now); uint256 grantIndex = grants[holder].length; for (uint256 i = 0; i < grantIndex; i++) { date = Math.max64(grants[holder][i].vesting, date); } } } contract MigrationAgentInterface { function migrateFrom(address _from, uint256 _value); function setSourceToken(address _qbxSourceToken); function updateSupply(); function qbxSourceToken() returns (address); } contract QiibeeToken is BurnableToken, PausableToken, VestedToken, MintableToken { using SafeMath for uint256; string public constant symbol = "QBX"; string public constant name = "qiibeeToken"; uint8 public constant decimals = 18; // migration vars uint256 public totalMigrated; uint256 public newTokens; // amount of tokens minted after migrationAgent has been set uint256 public burntTokens; // amount of tokens burnt after migrationAgent has been set address public migrationAgent; address public migrationMaster; event Migrate(address indexed _from, address indexed _to, uint256 _value); event NewVestedToken(address indexed from, address indexed to, uint256 value, uint256 grantId); modifier onlyMigrationMaster { require(msg.sender == migrationMaster); _; } /* * Constructor. */ function QiibeeToken(address _migrationMaster) { require(_migrationMaster != address(0)); migrationMaster = _migrationMaster; } /** @dev Similar to grantVestedTokens but minting tokens instead of transferring. */ function mintVestedTokens ( address _to, uint256 _value, uint64 _start, uint64 _cliff, uint64 _vesting, bool _revokable, bool _burnsOnRevoke, address _wallet ) onlyOwner public returns (bool) { // Check for date inconsistencies that may cause unexpected behavior require(_cliff >= _start && _vesting >= _cliff); require(tokenGrantsCount(_to) < MAX_GRANTS_PER_ADDRESS); // To prevent a user being spammed and have his balance locked (out of gas attack when calculating vesting). uint256 count = grants[_to].push( TokenGrant( _revokable ? _wallet : 0, // avoid storing an extra 20 bytes when it is non-revokable _value, _cliff, _vesting, _start, _revokable, _burnsOnRevoke ) ); NewVestedToken(msg.sender, _to, _value, count - 1); return mint(_to, _value); //mint tokens } /** @dev Overrides VestedToken#grantVestedTokens(). Only owner can call it. */ function grantVestedTokens ( address _to, uint256 _value, uint64 _start, uint64 _cliff, uint64 _vesting, bool _revokable, bool _burnsOnRevoke ) onlyOwner public { super.grantVestedTokens(_to, _value, _start, _cliff, _vesting, _revokable, _burnsOnRevoke); } /** @dev Set address of migration agent contract and enable migration process. @param _agent The address of the MigrationAgent contract */ function setMigrationAgent(address _agent) public onlyMigrationMaster { require(MigrationAgentInterface(_agent).qbxSourceToken() == address(this)); require(migrationAgent == address(0)); require(_agent != address(0)); migrationAgent = _agent; } /** @dev Migrates the tokens to the target token through the MigrationAgent. @param _value The amount of tokens (in atto) to be migrated. */ function migrate(uint256 _value) public whenNotPaused { require(migrationAgent != address(0)); require(_value != 0); require(_value <= balances[msg.sender]); require(_value <= transferableTokens(msg.sender, uint64(now))); balances[msg.sender] = balances[msg.sender].sub(_value); totalSupply = totalSupply.sub(_value); totalMigrated = totalMigrated.add(_value); MigrationAgentInterface(migrationAgent).migrateFrom(msg.sender, _value); Migrate(msg.sender, migrationAgent, _value); } /** * @dev Overrides mint() function so as to keep track of the tokens minted after the * migrationAgent has been set. This is to ensure that the migration agent has always the * totalTokens variable up to date. This prevents the failure of the safetyInvariantCheck(). * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) { bool mint = super.mint(_to, _amount); if (mint && migrationAgent != address(0)) { newTokens = newTokens.add(_amount); } return mint; } /* * @dev Changes the migration master. * @param _master The address of the migration master. */ function setMigrationMaster(address _master) public onlyMigrationMaster { require(_master != address(0)); migrationMaster = _master; } /* * @dev Resets newTokens to zero. Can only be called by the migrationAgent */ function resetNewTokens() { require(msg.sender == migrationAgent); newTokens = 0; } /* * @dev Resets burntTokens to zero. Can only be called by the migrationAgent */ function resetBurntTokens() { require(msg.sender == migrationAgent); burntTokens = 0; } /* * @dev Burns a specific amount of tokens. * @param _value The amount of tokens to be burnt. */ function burn(uint256 _value) whenNotPaused onlyOwner public { super.burn(_value); if (migrationAgent != address(0)) { burntTokens = burntTokens.add(_value); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[{"name":"_holder","type":"address"}],"name":"tokenGrantsCount","outputs":[{"name":"index","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_start","type":"uint64"},{"name":"_cliff","type":"uint64"},{"name":"_vesting","type":"uint64"},{"name":"_revokable","type":"bool"},{"name":"_burnsOnRevoke","type":"bool"},{"name":"_wallet","type":"address"}],"name":"mintVestedTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_master","type":"address"}],"name":"setMigrationMaster","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"grants","outputs":[{"name":"granter","type":"address"},{"name":"value","type":"uint256"},{"name":"cliff","type":"uint64"},{"name":"vesting","type":"uint64"},{"name":"start","type":"uint64"},{"name":"revokable","type":"bool"},{"name":"burnsOnRevoke","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"migrate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_holder","type":"address"},{"name":"_grantId","type":"uint256"}],"name":"tokenGrant","outputs":[{"name":"granter","type":"address"},{"name":"value","type":"uint256"},{"name":"vested","type":"uint256"},{"name":"start","type":"uint64"},{"name":"cliff","type":"uint64"},{"name":"vesting","type":"uint64"},{"name":"revokable","type":"bool"},{"name":"burnsOnRevoke","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"resetBurntTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"migrationMaster","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"holder","type":"address"}],"name":"lastTokenIsTransferableDate","outputs":[{"name":"date","type":"uint64"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_agent","type":"address"}],"name":"setMigrationAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"migrationAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"newTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalMigrated","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_start","type":"uint64"},{"name":"_cliff","type":"uint64"},{"name":"_vesting","type":"uint64"},{"name":"_revokable","type":"bool"},{"name":"_burnsOnRevoke","type":"bool"}],"name":"grantVestedTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"resetNewTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"holder","type":"address"},{"name":"time","type":"uint64"}],"name":"transferableTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokens","type":"uint256"},{"name":"time","type":"uint256"},{"name":"start","type":"uint256"},{"name":"cliff","type":"uint256"},{"name":"vesting","type":"uint256"}],"name":"calculateVestedTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_holder","type":"address"},{"name":"_grantId","type":"uint256"}],"name":"revokeTokenGrant","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"burntTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_migrationMaster","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Migrate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"grantId","type":"uint256"}],"name":"NewVestedToken","type":"event"},{"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":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"grantId","type":"uint256"}],"name":"NewTokenGrant","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","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
60606040526003805460a060020a60ff021916905560146004556006805460ff19169055341561002e57600080fd5b60405160208061282f833981016040528080519150505b5b60038054600160a060020a03191633600160a060020a03161790555b600160a060020a038116151561007757600080fd5b600b8054600160a060020a031916600160a060020a0383161790555b505b61278b806100a46000396000f300606060405236156101c75763ffffffff60e060020a60003504166302a72a4c81146101cc57806305d2035b146101fd57806306fdde0314610224578063095ea7b3146102af57806316038be8146102e557806318160ddd1461034857806323b872dd1461036d57806326316e58146103a95780632c71e60a146103ca578063313ce567146104455780633f4ba83a1461046e57806340c10f191461048357806342966c68146104b9578063454b0608146104d15780635c975abb146104e9578063600e85b71461051057806365b1c9871461059157806366188463146105a6578063676d2e62146105dc5780636c182e991461060b57806370a082311461064757806375e2ff65146106785780637d64bcb4146106995780638328dbcd146106c05780638456cb59146106ef57806387b4e60a146107045780638da5cb5b1461072957806395a0f5eb1461075857806395d89b411461077d5780639754a4d914610808578063a9059cbb1461084f578063ca8695a414610885578063d347c2051461089a578063d73dd623146108d8578063dd62ed3e1461090e578063df3c211b14610945578063eb944e4c14610979578063f2fde38b1461099d578063fa20e77d146109be575b600080fd5b34156101d757600080fd5b6101eb600160a060020a03600435166109e3565b60405190815260200160405180910390f35b341561020857600080fd5b610210610a02565b604051901515815260200160405180910390f35b341561022f57600080fd5b610237610a0b565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102745780820151818401525b60200161025b565b50505050905090810190601f1680156102a15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156102ba57600080fd5b610210600160a060020a0360043516602435610a42565b604051901515815260200160405180910390f35b34156102f057600080fd5b610210600160a060020a036004358116906024359067ffffffffffffffff604435811691606435821691608435169060a43515159060c43515159060e43516610a70565b604051901515815260200160405180910390f35b341561035357600080fd5b6101eb610d0c565b60405190815260200160405180910390f35b341561037857600080fd5b610210600160a060020a0360043581169060243516604435610d12565b604051901515815260200160405180910390f35b34156103b457600080fd5b6103c8600160a060020a0360043516610d44565b005b34156103d557600080fd5b6103ec600160a060020a0360043516602435610d94565b604051600160a060020a039097168752602087019590955267ffffffffffffffff93841660408088019190915292841660608701529216608085015290151560a084015290151560c083015260e0909101905180910390f35b341561045057600080fd5b610458610e1a565b60405160ff909116815260200160405180910390f35b341561047957600080fd5b6103c8610e1f565b005b341561048e57600080fd5b610210600160a060020a0360043516602435610ea1565b604051901515815260200160405180910390f35b34156104c457600080fd5b6103c8600435610f1d565b005b34156104dc57600080fd5b6103c8600435610f86565b005b34156104f457600080fd5b61021061111d565b604051901515815260200160405180910390f35b341561051b57600080fd5b610532600160a060020a036004351660243561112d565b604051600160a060020a039098168852602088019690965260408088019590955267ffffffffffffffff9384166060880152918316608087015290911660a0850152151560c084015290151560e0830152610100909101905180910390f35b341561059c57600080fd5b6103c861127a565b005b34156105b157600080fd5b610210600160a060020a036004351660243561129d565b604051901515815260200160405180910390f35b34156105e757600080fd5b6105ef6112cb565b604051600160a060020a03909116815260200160405180910390f35b341561061657600080fd5b61062a600160a060020a03600435166112da565b60405167ffffffffffffffff909116815260200160405180910390f35b341561065257600080fd5b6101eb600160a060020a036004351661136c565b60405190815260200160405180910390f35b341561068357600080fd5b6103c8600160a060020a036004351661138b565b005b34156106a457600080fd5b610210611471565b604051901515815260200160405180910390f35b34156106cb57600080fd5b6105ef6114d0565b604051600160a060020a03909116815260200160405180910390f35b34156106fa57600080fd5b6103c86114df565b005b341561070f57600080fd5b6101eb611566565b60405190815260200160405180910390f35b341561073457600080fd5b6105ef61156c565b604051600160a060020a03909116815260200160405180910390f35b341561076357600080fd5b6101eb61157b565b60405190815260200160405180910390f35b341561078857600080fd5b610237611581565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102745780820151818401525b60200161025b565b50505050905090810190601f1680156102a15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561081357600080fd5b6103c8600160a060020a036004351660243567ffffffffffffffff6044358116906064358116906084351660a435151560c43515156115b8565b005b341561085a57600080fd5b610210600160a060020a03600435166024356115ed565b604051901515815260200160405180910390f35b341561089057600080fd5b6103c861161d565b005b34156108a557600080fd5b6101eb600160a060020a036004351667ffffffffffffffff60243516611640565b60405190815260200160405180910390f35b34156108e357600080fd5b610210600160a060020a036004351660243561178d565b604051901515815260200160405180910390f35b341561091957600080fd5b6101eb600160a060020a03600435811690602435166117bb565b60405190815260200160405180910390f35b341561095057600080fd5b6101eb6004356024356044356064356084356117e8565b60405190815260200160405180910390f35b341561098457600080fd5b6103c8600160a060020a0360043516602435611840565b005b34156109a857600080fd5b6103c8600160a060020a0360043516611c3b565b005b34156109c957600080fd5b6101eb611cc7565b60405190815260200160405180910390f35b600160a060020a0381166000908152600560205260409020545b919050565b60065460ff1681565b60408051908101604052600b81527f716969626565546f6b656e000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff1615610a5c57600080fd5b610a668383611ccd565b90505b5b92915050565b600354600090819033600160a060020a03908116911614610a9057600080fd5b8767ffffffffffffffff168767ffffffffffffffff1610158015610ac857508667ffffffffffffffff168667ffffffffffffffff1610155b1515610ad357600080fd5b600454610adf8b6109e3565b10610ae957600080fd5b600160a060020a038a166000908152600560205260409020805460018101610b118382612684565b916000526020600020906003020160005b60e06040519081016040528089610b3a576000610b3c565b875b600160a060020a03168152602081018e905267ffffffffffffffff808d1660408301528b811660608301528d16608082015289151560a082015288151560c09091015291905081518154600160a060020a031916600160a060020a039190911617815560208201518160010155604082015160028201805467ffffffffffffffff191667ffffffffffffffff9290921691909117905560608201518160020160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060808201518160020160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060a082015160028201805491151560c060020a0278ff0000000000000000000000000000000000000000000000001990921691909117905560c08201516002909101805491151560c860020a0279ff0000000000000000000000000000000000000000000000000019909216919091179055509050600160a060020a03808b169033167ff1665a488ebfee5d0dbca519588d62f4b5d05f9bca0a64dfb32acdf6bb70bc998b600019850160405191825260208201526040908101905180910390a3610cfb8a8a610ea1565b91505b5b5098975050505050505050565b60005481565b60008382610d208242611640565b811115610d2c57600080fd5b610d37868686611d3a565b92505b5b50509392505050565b600b5433600160a060020a03908116911614610d5f57600080fd5b600160a060020a0381161515610d7457600080fd5b600b8054600160a060020a031916600160a060020a0383161790555b5b50565b600560205281600052604060002081815481101515610daf57fe5b906000526020600020906003020160005b5080546001820154600290920154600160a060020a03909116935090915067ffffffffffffffff80821691680100000000000000008104821691608060020a8204169060ff60c060020a820481169160c860020a90041687565b601281565b60035433600160a060020a03908116911614610e3a57600080fd5b60035460a060020a900460ff161515610e5257600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15b5b5b565b600354600090819033600160a060020a03908116911614610ec157600080fd5b60065460ff1615610ed157600080fd5b610edb8484611d6a565b9050808015610ef45750600a54600160a060020a031615155b15610f1057600854610f0c908463ffffffff611e6116565b6008555b8091505b5b5b5092915050565b60035460a060020a900460ff1615610f3457600080fd5b60035433600160a060020a03908116911614610f4f57600080fd5b610f5881611e7b565b600a54600160a060020a031615610d9057600954610f7c908263ffffffff611e6116565b6009555b5b5b5b50565b60035460a060020a900460ff1615610f9d57600080fd5b600a54600160a060020a03161515610fb457600080fd5b801515610fc057600080fd5b600160a060020a033316600090815260016020526040902054811115610fe557600080fd5b610fef3342611640565b811115610ffb57600080fd5b600160a060020a033316600090815260016020526040902054611024908263ffffffff611f2016565b600160a060020a03331660009081526001602052604081209190915554611051908263ffffffff611f2016565b600055600754611067908263ffffffff611e6116565b600755600a54600160a060020a0316637a3130e3338360405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401600060405180830381600087803b15156110c057600080fd5b6102c65a03f115156110d157600080fd5b5050600a54600160a060020a03908116915033167f18df02dcc52b9c494f391df09661519c0069bd8540141946280399408205ca1a8360405190815260200160405180910390a35b5b50565b60035460a060020a900460ff1681565b6000806000806000806000806000600560008c600160a060020a0316600160a060020a031681526020019081526020016000208a81548110151561116d57fe5b906000526020600020906003020160005b50805460018201546002830154600160a060020a039092169b50995067ffffffffffffffff608060020a820481169850808216975068010000000000000000820416955060ff60c060020a82048116955060c860020a90910416925090506112698160e060405190810160409081528254600160a060020a031682526001830154602083015260029092015467ffffffffffffffff8082169383019390935268010000000000000000810483166060830152608060020a8104909216608082015260ff60c060020a83048116151560a083015260c860020a909204909116151560c082015242611f37565b96505b509295985092959890939650565b600a5433600160a060020a0390811691161461129557600080fd5b60006009555b565b60035460009060a060020a900460ff16156112b757600080fd5b610a668383611f87565b90505b5b92915050565b600b54600160a060020a031681565b600160a060020a03811660009081526005602052604081205442915b8181101561136457600160a060020a0384166000908152600560205260409020805461135991908390811061132757fe5b906000526020600020906003020160005b506002015468010000000000000000900467ffffffffffffffff1684612083565b92505b6001016112f6565b5b5050919050565b600160a060020a0381166000908152600160205260409020545b919050565b600b5433600160a060020a039081169116146113a657600080fd5b30600160a060020a031681600160a060020a031663a02c40e16000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b15156113f657600080fd5b6102c65a03f1151561140757600080fd5b50505060405180519050600160a060020a031614151561142657600080fd5b600a54600160a060020a03161561143c57600080fd5b600160a060020a038116151561145157600080fd5b600a8054600160a060020a031916600160a060020a0383161790555b5b50565b60035460009033600160a060020a0390811691161461148f57600080fd5b6006805460ff191660011790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a15060015b5b90565b600a54600160a060020a031681565b60035433600160a060020a039081169116146114fa57600080fd5b60035460a060020a900460ff161561151157600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15b5b5b565b60085481565b600354600160a060020a031681565b60075481565b60408051908101604052600381527f5142580000000000000000000000000000000000000000000000000000000000602082015281565b60035433600160a060020a039081169116146115d357600080fd5b6115e2878787878787876120b2565b5b5b50505050505050565b600033826115fb8242611640565b81111561160757600080fd5b6116118585612330565b92505b5b505092915050565b600a5433600160a060020a0390811691161461163857600080fd5b60006008555b565b6000806000806000611651876109e3565b935083151561166b57611664878761235e565b9450611783565b60009250600091505b8382101561175957600160a060020a0387166000908152600560205260409020805461174b9185916117469190869081106116ab57fe5b906000526020600020906003020160005b5060e060405190810160409081528254600160a060020a031682526001830154602083015260029092015467ffffffffffffffff8082169383019390935268010000000000000000810483166060830152608060020a8104909216608082015260ff60c060020a83048116151560a083015260c860020a909204909116151560c082015289612372565b611e61565b92505b600190910190611674565b61176b6117658861136c565b84611f20565b90506117808161177b898961235e565b61239b565b94505b5050505092915050565b60035460009060a060020a900460ff16156117a757600080fd5b610a6683836123b5565b90505b5b92915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b600080838610156117fc5760009150611836565b82861061180b57869150611836565b6118306118218861181c8989611f20565b61245a565b61182b8588611f20565b612489565b90508091505b5095945050505050565b600160a060020a03821660009081526005602052604081208054829182918590811061186857fe5b906000526020600020906003020160005b50600281015490935060c060020a900460ff16151561189757600080fd5b825433600160a060020a039081169116146118b157600080fd5b600283015460c860020a900460ff166118ca57336118ce565b61dead5b915061195d8360e060405190810160409081528254600160a060020a031682526001830154602083015260029092015467ffffffffffffffff8082169383019390935268010000000000000000810483166060830152608060020a8104909216608082015260ff60c060020a83048116151560a083015260c860020a909204909116151560c082015242612372565b600160a060020a03861660009081526005602052604090208054919250908590811061198557fe5b906000526020600020906003020160005b508054600160a060020a0319168155600060018083018290556002909201805479ffffffffffffffffffffffffffffffffffffffffffffffffffff19169055600160a060020a0387168152600560205260409020805490916119fe919063ffffffff611f2016565b81548110611a0857fe5b906000526020600020906003020160005b50600160a060020a0386166000908152600560205260409020805486908110611a3e57fe5b906000526020600020906003020160005b5081548154600160a060020a031916600160a060020a03918216178255600180840154908301556002928301805493909201805467ffffffffffffffff191667ffffffffffffffff94851617808255835468010000000000000000908190048616026fffffffffffffffff000000000000000019909116178082558354608060020a9081900490951690940277ffffffffffffffff000000000000000000000000000000001990941693909317808455825460ff60c060020a918290048116151590910278ff0000000000000000000000000000000000000000000000001990921691909117808555925460c860020a9081900490911615150279ff0000000000000000000000000000000000000000000000000019909216919091179091558516600090815260056020526040902080546000190190611b909082612684565b50600160a060020a038216600090815260016020526040902054611bba908263ffffffff611e6116565b600160a060020a038084166000908152600160205260408082209390935590871681522054611bef908263ffffffff611f2016565b600160a060020a038087166000818152600160205260409081902093909355908416916000805160206127408339815191529084905190815260200160405180910390a35b5050505050565b60035433600160a060020a03908116911614611c5657600080fd5b600160a060020a0381161515611c6b57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360038054600160a060020a031916600160a060020a0383161790555b5b50565b60095481565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60035460009060a060020a900460ff1615611d5457600080fd5b611d5f8484846124a5565b90505b5b9392505050565b60035460009033600160a060020a03908116911614611d8857600080fd5b60065460ff1615611d9857600080fd5b600054611dab908363ffffffff611e6116565b6000908155600160a060020a038416815260016020526040902054611dd6908363ffffffff611e6116565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a282600160a060020a031660006000805160206127408339815191528460405190815260200160405180910390a35060015b5b5b92915050565b600082820183811015610f1057fe5b8091505b5092915050565b6000808211611e8957600080fd5b5033600160a060020a038116600090815260016020526040902054611eae9083611f20565b600160a060020a03821660009081526001602052604081209190915554611edb908363ffffffff611f2016565b600055600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25b5050565b600082821115611f2c57fe5b508082035b92915050565b6000610a6683602001518367ffffffffffffffff16856080015167ffffffffffffffff16866040015167ffffffffffffffff16876060015167ffffffffffffffff166117e8565b90505b92915050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115611fe457600160a060020a03338116600090815260026020908152604080832093881683529290529081205561201b565b611ff4818463ffffffff611f2016565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b60008167ffffffffffffffff168367ffffffffffffffff1610156120a75781610a66565b825b90505b92915050565b60008567ffffffffffffffff168567ffffffffffffffff16101580156120ec57508467ffffffffffffffff168467ffffffffffffffff1610155b15156120f757600080fd5b600454612103896109e3565b1061210d57600080fd5b600160a060020a03881660009081526005602052604090208054600181016121358382612684565b916000526020600020906003020160005b60e0604051908101604052808761215e576000612160565b335b600160a060020a03168152602081018c905267ffffffffffffffff808b16604083015289811660608301528b16608082015287151560a082015286151560c09091015291905081518154600160a060020a031916600160a060020a039190911617815560208201518160010155604082015160028201805467ffffffffffffffff191667ffffffffffffffff9290921691909117905560608201518160020160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060808201518160020160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060a082015160028201805491151560c060020a0278ff0000000000000000000000000000000000000000000000001990921691909117905560c08201516002909101805491151560c860020a0279ff00000000000000000000000000000000000000000000000000199092169190911790555090506122d388886115ed565b5087600160a060020a031633600160a060020a03167ff9565aecd648a0466ffb964a79eeccdf1120ad6276189c687a6e9fe73984d9bb896001850360405191825260208201526040908101905180910390a35b5050505050505050565b60035460009060a060020a900460ff161561234a57600080fd5b610a6683836125bf565b90505b5b92915050565b6000610a668361136c565b90505b92915050565b6000610a666123818484611f37565b84602001519063ffffffff611f2016565b90505b92915050565b60008183106120a75781610a66565b825b90505b92915050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120546123ed908363ffffffff611e6116565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a35060015b92915050565b6000828202831580612476575082848281151561247357fe5b04145b1515610f1057fe5b8091505b5092915050565b600080828481151561249757fe5b0490508091505b5092915050565b600080600160a060020a03841615156124bd57600080fd5b50600160a060020a03808516600081815260026020908152604080832033909516835293815283822054928252600190529190912054612503908463ffffffff611f2016565b600160a060020a038087166000908152600160205260408082209390935590861681522054612538908463ffffffff611e6116565b600160a060020a038516600090815260016020526040902055612561818463ffffffff611f2016565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616916000805160206127408339815191529086905190815260200160405180910390a3600191505b509392505050565b6000600160a060020a03831615156125d657600080fd5b600160a060020a0333166000908152600160205260409020546125ff908363ffffffff611f2016565b600160a060020a033381166000908152600160205260408082209390935590851681522054612634908363ffffffff611e6116565b600160a060020a0380851660008181526001602052604090819020939093559133909116906000805160206127408339815191529085905190815260200160405180910390a35060015b92915050565b8154818355818115116126b0576003028160030283600052602060002091820191016126b091906126e8565b5b505050565b8154818355818115116126b0576003028160030283600052602060002091820191016126b091906126e8565b5b505050565b6114cc91905b80821115612738578054600160a060020a03191681556000600182015560028101805479ffffffffffffffffffffffffffffffffffffffffffffffffffff191690556003016126ee565b5090565b905600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058208eddb4551a1867a46546ae7ef3f74421115982b9d7b061d5fafdcfaa08cbc004002900000000000000000000000073feb4c73465c71291052af2282e9292f8807f14
Deployed Bytecode
0x606060405236156101c75763ffffffff60e060020a60003504166302a72a4c81146101cc57806305d2035b146101fd57806306fdde0314610224578063095ea7b3146102af57806316038be8146102e557806318160ddd1461034857806323b872dd1461036d57806326316e58146103a95780632c71e60a146103ca578063313ce567146104455780633f4ba83a1461046e57806340c10f191461048357806342966c68146104b9578063454b0608146104d15780635c975abb146104e9578063600e85b71461051057806365b1c9871461059157806366188463146105a6578063676d2e62146105dc5780636c182e991461060b57806370a082311461064757806375e2ff65146106785780637d64bcb4146106995780638328dbcd146106c05780638456cb59146106ef57806387b4e60a146107045780638da5cb5b1461072957806395a0f5eb1461075857806395d89b411461077d5780639754a4d914610808578063a9059cbb1461084f578063ca8695a414610885578063d347c2051461089a578063d73dd623146108d8578063dd62ed3e1461090e578063df3c211b14610945578063eb944e4c14610979578063f2fde38b1461099d578063fa20e77d146109be575b600080fd5b34156101d757600080fd5b6101eb600160a060020a03600435166109e3565b60405190815260200160405180910390f35b341561020857600080fd5b610210610a02565b604051901515815260200160405180910390f35b341561022f57600080fd5b610237610a0b565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102745780820151818401525b60200161025b565b50505050905090810190601f1680156102a15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156102ba57600080fd5b610210600160a060020a0360043516602435610a42565b604051901515815260200160405180910390f35b34156102f057600080fd5b610210600160a060020a036004358116906024359067ffffffffffffffff604435811691606435821691608435169060a43515159060c43515159060e43516610a70565b604051901515815260200160405180910390f35b341561035357600080fd5b6101eb610d0c565b60405190815260200160405180910390f35b341561037857600080fd5b610210600160a060020a0360043581169060243516604435610d12565b604051901515815260200160405180910390f35b34156103b457600080fd5b6103c8600160a060020a0360043516610d44565b005b34156103d557600080fd5b6103ec600160a060020a0360043516602435610d94565b604051600160a060020a039097168752602087019590955267ffffffffffffffff93841660408088019190915292841660608701529216608085015290151560a084015290151560c083015260e0909101905180910390f35b341561045057600080fd5b610458610e1a565b60405160ff909116815260200160405180910390f35b341561047957600080fd5b6103c8610e1f565b005b341561048e57600080fd5b610210600160a060020a0360043516602435610ea1565b604051901515815260200160405180910390f35b34156104c457600080fd5b6103c8600435610f1d565b005b34156104dc57600080fd5b6103c8600435610f86565b005b34156104f457600080fd5b61021061111d565b604051901515815260200160405180910390f35b341561051b57600080fd5b610532600160a060020a036004351660243561112d565b604051600160a060020a039098168852602088019690965260408088019590955267ffffffffffffffff9384166060880152918316608087015290911660a0850152151560c084015290151560e0830152610100909101905180910390f35b341561059c57600080fd5b6103c861127a565b005b34156105b157600080fd5b610210600160a060020a036004351660243561129d565b604051901515815260200160405180910390f35b34156105e757600080fd5b6105ef6112cb565b604051600160a060020a03909116815260200160405180910390f35b341561061657600080fd5b61062a600160a060020a03600435166112da565b60405167ffffffffffffffff909116815260200160405180910390f35b341561065257600080fd5b6101eb600160a060020a036004351661136c565b60405190815260200160405180910390f35b341561068357600080fd5b6103c8600160a060020a036004351661138b565b005b34156106a457600080fd5b610210611471565b604051901515815260200160405180910390f35b34156106cb57600080fd5b6105ef6114d0565b604051600160a060020a03909116815260200160405180910390f35b34156106fa57600080fd5b6103c86114df565b005b341561070f57600080fd5b6101eb611566565b60405190815260200160405180910390f35b341561073457600080fd5b6105ef61156c565b604051600160a060020a03909116815260200160405180910390f35b341561076357600080fd5b6101eb61157b565b60405190815260200160405180910390f35b341561078857600080fd5b610237611581565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102745780820151818401525b60200161025b565b50505050905090810190601f1680156102a15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561081357600080fd5b6103c8600160a060020a036004351660243567ffffffffffffffff6044358116906064358116906084351660a435151560c43515156115b8565b005b341561085a57600080fd5b610210600160a060020a03600435166024356115ed565b604051901515815260200160405180910390f35b341561089057600080fd5b6103c861161d565b005b34156108a557600080fd5b6101eb600160a060020a036004351667ffffffffffffffff60243516611640565b60405190815260200160405180910390f35b34156108e357600080fd5b610210600160a060020a036004351660243561178d565b604051901515815260200160405180910390f35b341561091957600080fd5b6101eb600160a060020a03600435811690602435166117bb565b60405190815260200160405180910390f35b341561095057600080fd5b6101eb6004356024356044356064356084356117e8565b60405190815260200160405180910390f35b341561098457600080fd5b6103c8600160a060020a0360043516602435611840565b005b34156109a857600080fd5b6103c8600160a060020a0360043516611c3b565b005b34156109c957600080fd5b6101eb611cc7565b60405190815260200160405180910390f35b600160a060020a0381166000908152600560205260409020545b919050565b60065460ff1681565b60408051908101604052600b81527f716969626565546f6b656e000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff1615610a5c57600080fd5b610a668383611ccd565b90505b5b92915050565b600354600090819033600160a060020a03908116911614610a9057600080fd5b8767ffffffffffffffff168767ffffffffffffffff1610158015610ac857508667ffffffffffffffff168667ffffffffffffffff1610155b1515610ad357600080fd5b600454610adf8b6109e3565b10610ae957600080fd5b600160a060020a038a166000908152600560205260409020805460018101610b118382612684565b916000526020600020906003020160005b60e06040519081016040528089610b3a576000610b3c565b875b600160a060020a03168152602081018e905267ffffffffffffffff808d1660408301528b811660608301528d16608082015289151560a082015288151560c09091015291905081518154600160a060020a031916600160a060020a039190911617815560208201518160010155604082015160028201805467ffffffffffffffff191667ffffffffffffffff9290921691909117905560608201518160020160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060808201518160020160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060a082015160028201805491151560c060020a0278ff0000000000000000000000000000000000000000000000001990921691909117905560c08201516002909101805491151560c860020a0279ff0000000000000000000000000000000000000000000000000019909216919091179055509050600160a060020a03808b169033167ff1665a488ebfee5d0dbca519588d62f4b5d05f9bca0a64dfb32acdf6bb70bc998b600019850160405191825260208201526040908101905180910390a3610cfb8a8a610ea1565b91505b5b5098975050505050505050565b60005481565b60008382610d208242611640565b811115610d2c57600080fd5b610d37868686611d3a565b92505b5b50509392505050565b600b5433600160a060020a03908116911614610d5f57600080fd5b600160a060020a0381161515610d7457600080fd5b600b8054600160a060020a031916600160a060020a0383161790555b5b50565b600560205281600052604060002081815481101515610daf57fe5b906000526020600020906003020160005b5080546001820154600290920154600160a060020a03909116935090915067ffffffffffffffff80821691680100000000000000008104821691608060020a8204169060ff60c060020a820481169160c860020a90041687565b601281565b60035433600160a060020a03908116911614610e3a57600080fd5b60035460a060020a900460ff161515610e5257600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15b5b5b565b600354600090819033600160a060020a03908116911614610ec157600080fd5b60065460ff1615610ed157600080fd5b610edb8484611d6a565b9050808015610ef45750600a54600160a060020a031615155b15610f1057600854610f0c908463ffffffff611e6116565b6008555b8091505b5b5b5092915050565b60035460a060020a900460ff1615610f3457600080fd5b60035433600160a060020a03908116911614610f4f57600080fd5b610f5881611e7b565b600a54600160a060020a031615610d9057600954610f7c908263ffffffff611e6116565b6009555b5b5b5b50565b60035460a060020a900460ff1615610f9d57600080fd5b600a54600160a060020a03161515610fb457600080fd5b801515610fc057600080fd5b600160a060020a033316600090815260016020526040902054811115610fe557600080fd5b610fef3342611640565b811115610ffb57600080fd5b600160a060020a033316600090815260016020526040902054611024908263ffffffff611f2016565b600160a060020a03331660009081526001602052604081209190915554611051908263ffffffff611f2016565b600055600754611067908263ffffffff611e6116565b600755600a54600160a060020a0316637a3130e3338360405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401600060405180830381600087803b15156110c057600080fd5b6102c65a03f115156110d157600080fd5b5050600a54600160a060020a03908116915033167f18df02dcc52b9c494f391df09661519c0069bd8540141946280399408205ca1a8360405190815260200160405180910390a35b5b50565b60035460a060020a900460ff1681565b6000806000806000806000806000600560008c600160a060020a0316600160a060020a031681526020019081526020016000208a81548110151561116d57fe5b906000526020600020906003020160005b50805460018201546002830154600160a060020a039092169b50995067ffffffffffffffff608060020a820481169850808216975068010000000000000000820416955060ff60c060020a82048116955060c860020a90910416925090506112698160e060405190810160409081528254600160a060020a031682526001830154602083015260029092015467ffffffffffffffff8082169383019390935268010000000000000000810483166060830152608060020a8104909216608082015260ff60c060020a83048116151560a083015260c860020a909204909116151560c082015242611f37565b96505b509295985092959890939650565b600a5433600160a060020a0390811691161461129557600080fd5b60006009555b565b60035460009060a060020a900460ff16156112b757600080fd5b610a668383611f87565b90505b5b92915050565b600b54600160a060020a031681565b600160a060020a03811660009081526005602052604081205442915b8181101561136457600160a060020a0384166000908152600560205260409020805461135991908390811061132757fe5b906000526020600020906003020160005b506002015468010000000000000000900467ffffffffffffffff1684612083565b92505b6001016112f6565b5b5050919050565b600160a060020a0381166000908152600160205260409020545b919050565b600b5433600160a060020a039081169116146113a657600080fd5b30600160a060020a031681600160a060020a031663a02c40e16000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b15156113f657600080fd5b6102c65a03f1151561140757600080fd5b50505060405180519050600160a060020a031614151561142657600080fd5b600a54600160a060020a03161561143c57600080fd5b600160a060020a038116151561145157600080fd5b600a8054600160a060020a031916600160a060020a0383161790555b5b50565b60035460009033600160a060020a0390811691161461148f57600080fd5b6006805460ff191660011790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a15060015b5b90565b600a54600160a060020a031681565b60035433600160a060020a039081169116146114fa57600080fd5b60035460a060020a900460ff161561151157600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15b5b5b565b60085481565b600354600160a060020a031681565b60075481565b60408051908101604052600381527f5142580000000000000000000000000000000000000000000000000000000000602082015281565b60035433600160a060020a039081169116146115d357600080fd5b6115e2878787878787876120b2565b5b5b50505050505050565b600033826115fb8242611640565b81111561160757600080fd5b6116118585612330565b92505b5b505092915050565b600a5433600160a060020a0390811691161461163857600080fd5b60006008555b565b6000806000806000611651876109e3565b935083151561166b57611664878761235e565b9450611783565b60009250600091505b8382101561175957600160a060020a0387166000908152600560205260409020805461174b9185916117469190869081106116ab57fe5b906000526020600020906003020160005b5060e060405190810160409081528254600160a060020a031682526001830154602083015260029092015467ffffffffffffffff8082169383019390935268010000000000000000810483166060830152608060020a8104909216608082015260ff60c060020a83048116151560a083015260c860020a909204909116151560c082015289612372565b611e61565b92505b600190910190611674565b61176b6117658861136c565b84611f20565b90506117808161177b898961235e565b61239b565b94505b5050505092915050565b60035460009060a060020a900460ff16156117a757600080fd5b610a6683836123b5565b90505b5b92915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b600080838610156117fc5760009150611836565b82861061180b57869150611836565b6118306118218861181c8989611f20565b61245a565b61182b8588611f20565b612489565b90508091505b5095945050505050565b600160a060020a03821660009081526005602052604081208054829182918590811061186857fe5b906000526020600020906003020160005b50600281015490935060c060020a900460ff16151561189757600080fd5b825433600160a060020a039081169116146118b157600080fd5b600283015460c860020a900460ff166118ca57336118ce565b61dead5b915061195d8360e060405190810160409081528254600160a060020a031682526001830154602083015260029092015467ffffffffffffffff8082169383019390935268010000000000000000810483166060830152608060020a8104909216608082015260ff60c060020a83048116151560a083015260c860020a909204909116151560c082015242612372565b600160a060020a03861660009081526005602052604090208054919250908590811061198557fe5b906000526020600020906003020160005b508054600160a060020a0319168155600060018083018290556002909201805479ffffffffffffffffffffffffffffffffffffffffffffffffffff19169055600160a060020a0387168152600560205260409020805490916119fe919063ffffffff611f2016565b81548110611a0857fe5b906000526020600020906003020160005b50600160a060020a0386166000908152600560205260409020805486908110611a3e57fe5b906000526020600020906003020160005b5081548154600160a060020a031916600160a060020a03918216178255600180840154908301556002928301805493909201805467ffffffffffffffff191667ffffffffffffffff94851617808255835468010000000000000000908190048616026fffffffffffffffff000000000000000019909116178082558354608060020a9081900490951690940277ffffffffffffffff000000000000000000000000000000001990941693909317808455825460ff60c060020a918290048116151590910278ff0000000000000000000000000000000000000000000000001990921691909117808555925460c860020a9081900490911615150279ff0000000000000000000000000000000000000000000000000019909216919091179091558516600090815260056020526040902080546000190190611b909082612684565b50600160a060020a038216600090815260016020526040902054611bba908263ffffffff611e6116565b600160a060020a038084166000908152600160205260408082209390935590871681522054611bef908263ffffffff611f2016565b600160a060020a038087166000818152600160205260409081902093909355908416916000805160206127408339815191529084905190815260200160405180910390a35b5050505050565b60035433600160a060020a03908116911614611c5657600080fd5b600160a060020a0381161515611c6b57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360038054600160a060020a031916600160a060020a0383161790555b5b50565b60095481565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60035460009060a060020a900460ff1615611d5457600080fd5b611d5f8484846124a5565b90505b5b9392505050565b60035460009033600160a060020a03908116911614611d8857600080fd5b60065460ff1615611d9857600080fd5b600054611dab908363ffffffff611e6116565b6000908155600160a060020a038416815260016020526040902054611dd6908363ffffffff611e6116565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a282600160a060020a031660006000805160206127408339815191528460405190815260200160405180910390a35060015b5b5b92915050565b600082820183811015610f1057fe5b8091505b5092915050565b6000808211611e8957600080fd5b5033600160a060020a038116600090815260016020526040902054611eae9083611f20565b600160a060020a03821660009081526001602052604081209190915554611edb908363ffffffff611f2016565b600055600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25b5050565b600082821115611f2c57fe5b508082035b92915050565b6000610a6683602001518367ffffffffffffffff16856080015167ffffffffffffffff16866040015167ffffffffffffffff16876060015167ffffffffffffffff166117e8565b90505b92915050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115611fe457600160a060020a03338116600090815260026020908152604080832093881683529290529081205561201b565b611ff4818463ffffffff611f2016565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b60008167ffffffffffffffff168367ffffffffffffffff1610156120a75781610a66565b825b90505b92915050565b60008567ffffffffffffffff168567ffffffffffffffff16101580156120ec57508467ffffffffffffffff168467ffffffffffffffff1610155b15156120f757600080fd5b600454612103896109e3565b1061210d57600080fd5b600160a060020a03881660009081526005602052604090208054600181016121358382612684565b916000526020600020906003020160005b60e0604051908101604052808761215e576000612160565b335b600160a060020a03168152602081018c905267ffffffffffffffff808b16604083015289811660608301528b16608082015287151560a082015286151560c09091015291905081518154600160a060020a031916600160a060020a039190911617815560208201518160010155604082015160028201805467ffffffffffffffff191667ffffffffffffffff9290921691909117905560608201518160020160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060808201518160020160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060a082015160028201805491151560c060020a0278ff0000000000000000000000000000000000000000000000001990921691909117905560c08201516002909101805491151560c860020a0279ff00000000000000000000000000000000000000000000000000199092169190911790555090506122d388886115ed565b5087600160a060020a031633600160a060020a03167ff9565aecd648a0466ffb964a79eeccdf1120ad6276189c687a6e9fe73984d9bb896001850360405191825260208201526040908101905180910390a35b5050505050505050565b60035460009060a060020a900460ff161561234a57600080fd5b610a6683836125bf565b90505b5b92915050565b6000610a668361136c565b90505b92915050565b6000610a666123818484611f37565b84602001519063ffffffff611f2016565b90505b92915050565b60008183106120a75781610a66565b825b90505b92915050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120546123ed908363ffffffff611e6116565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a35060015b92915050565b6000828202831580612476575082848281151561247357fe5b04145b1515610f1057fe5b8091505b5092915050565b600080828481151561249757fe5b0490508091505b5092915050565b600080600160a060020a03841615156124bd57600080fd5b50600160a060020a03808516600081815260026020908152604080832033909516835293815283822054928252600190529190912054612503908463ffffffff611f2016565b600160a060020a038087166000908152600160205260408082209390935590861681522054612538908463ffffffff611e6116565b600160a060020a038516600090815260016020526040902055612561818463ffffffff611f2016565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616916000805160206127408339815191529086905190815260200160405180910390a3600191505b509392505050565b6000600160a060020a03831615156125d657600080fd5b600160a060020a0333166000908152600160205260409020546125ff908363ffffffff611f2016565b600160a060020a033381166000908152600160205260408082209390935590851681522054612634908363ffffffff611e6116565b600160a060020a0380851660008181526001602052604090819020939093559133909116906000805160206127408339815191529085905190815260200160405180910390a35060015b92915050565b8154818355818115116126b0576003028160030283600052602060002091820191016126b091906126e8565b5b505050565b8154818355818115116126b0576003028160030283600052602060002091820191016126b091906126e8565b5b505050565b6114cc91905b80821115612738578054600160a060020a03191681556000600182015560028101805479ffffffffffffffffffffffffffffffffffffffffffffffffffff191690556003016126ee565b5090565b905600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058208eddb4551a1867a46546ae7ef3f74421115982b9d7b061d5fafdcfaa08cbc0040029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000073feb4c73465c71291052af2282e9292f8807f14
-----Decoded View---------------
Arg [0] : _migrationMaster (address): 0x73Feb4c73465C71291052aF2282E9292f8807F14
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000073feb4c73465c71291052af2282e9292f8807f14
Swarm Source
bzzr://8eddb4551a1867a46546ae7ef3f74421115982b9d7b061d5fafdcfaa08cbc004
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.