ETH Price: $2,395.66 (-4.36%)

Token

HashingAds (BNEX)
 

Overview

Max Total Supply

17,000,000,000 BNEX

Holders

228

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
zksens.eth
Balance
1,264.88 BNEX

Value
$0.00
0xDda48E5eC26b833c04c1A50E49c430487CE23E14
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BNEX

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-11-27
*/

/* 
 *Website : https://HashingAds.com
 *Created Nov 2019
 */
pragma solidity ^0.4.18;

/*
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

    /*
    * @dev Multiplies two numbers, throws on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
        if (a == 0) {
            return 0;
        }
        c = a * b;
        assert(c / a == b);
        return c;
    }

    /*
    * @dev Integer division of two numbers, truncating the quotient.
    */
    function div(uint256 a, uint256 b) internal pure 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 a / b;
    }

    /*
    * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
    */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        assert(b <= a);
        return a - b;
    }

    /*
    * @dev Adds two numbers, throws on overflow.
    */
    function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
        c = a + b;
        assert(c >= a);
        return c;
    }
}

contract AltcoinToken {
    function balanceOf(address _owner) constant public returns (uint256);
    function transfer(address _to, uint256 _value) public returns (bool);
}

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 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 BNEX is ERC20 {
    
    using SafeMath for uint256;
    address owner = msg.sender;

    mapping (address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowed;    

    string public constant name = "HashingAds";
    string public constant symbol = "BNEX";
    uint public constant decimals = 18;
    
    uint256 public totalSupply = 17000000000e18;
    uint256 public totalDistributed = 0;    
    uint256 public constant MIN_PURCHASE = 1 ether / 100; // 0.01 Ether
    uint256 public tokensPerEth = 15500e18;

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
    
    event Distr(address indexed to, uint256 amount);
    event DistrFinished();
    event StartICO();
    event ResetICO();

    event Airdrop(address indexed _owner, uint _amount, uint _balance);

    event TokensPerEthUpdated(uint _tokensPerEth);
    
    event Burn(address indexed burner, uint256 value);

    bool public distributionFinished = false;

    bool public icoStart = false;
    
    modifier canDistr() {
        require(!distributionFinished);
        require(icoStart);
        _;
    }
    
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }
    
    
    constructor () public {
        owner = msg.sender;
    }
    
    function transferOwnership(address newOwner) onlyOwner public {
        if (newOwner != address(0)) {
            owner = newOwner;
        }
    }

    function startICO() onlyOwner public returns (bool) {
        icoStart = true;
        emit StartICO();
        return true;
    }

    function resetICO() onlyOwner public returns (bool) {
        icoStart = false;
        distributionFinished = false;
        emit ResetICO();
        return true;
    }

    function finishDistribution() onlyOwner canDistr public returns (bool) {
        distributionFinished = true;
        emit DistrFinished();
        return true;
    }
    
    function distr(address _to, uint256 _amount) canDistr private returns (bool) {
        totalDistributed = totalDistributed.add(_amount);        
        balances[_to] = balances[_to].add(_amount);
        emit Distr(_to, _amount);
        emit Transfer(address(0), _to, _amount);

        return true;
    }

    function doAirdrop(address _participant, uint _amount) internal {

        require( _amount > 0 );      

        require( totalDistributed < totalSupply );
        
        balances[_participant] = balances[_participant].add(_amount);
        totalDistributed = totalDistributed.add(_amount);

        if (totalDistributed >= totalSupply) {
            distributionFinished = true;
        }

        // log
        emit Airdrop(_participant, _amount, balances[_participant]);
        emit Transfer(address(0), _participant, _amount);
    }

    function transferTokenTo(address _participant, uint _amount) public onlyOwner {        
        doAirdrop(_participant, _amount);
    }

    function transferTokenToMultiple(address[] _addresses, uint _amount) public onlyOwner {        
        for (uint i = 0; i < _addresses.length; i++) doAirdrop(_addresses[i], _amount);
    }

    function updateTokensPerEth(uint _tokensPerEth) public onlyOwner {        
        tokensPerEth = _tokensPerEth;
        emit TokensPerEthUpdated(_tokensPerEth);
    }
           
    function () external payable {
        getTokens();
     }
    
    function getTokens() payable canDistr  public {
        uint256 tokens = 0;

        // minimum contribution
        require( msg.value >= MIN_PURCHASE );

        require( msg.value > 0 );

        // get baseline number of tokens
        tokens = tokensPerEth.mul(msg.value) / 1 ether;        
        address investor = msg.sender;
        
        if (tokens > 0) {
            distr(investor, tokens);
        }

        if (totalDistributed >= totalSupply) {
            distributionFinished = true;
        }
    }

    function balanceOf(address _owner) constant public returns (uint256) {
        return balances[_owner];
    }

    // mitigates the ERC20 short address attack
    modifier onlyPayloadSize(uint size) {
        assert(msg.data.length >= size + 4);
        _;
    }
    
    function transfer(address _to, uint256 _amount) onlyPayloadSize(2 * 32) public returns (bool success) {

        require(_to != address(0));
        require(_amount <= balances[msg.sender]);
        
        balances[msg.sender] = balances[msg.sender].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        emit Transfer(msg.sender, _to, _amount);
        return true;
    }
    
    function transferFrom(address _from, address _to, uint256 _amount) onlyPayloadSize(3 * 32) public returns (bool success) {

        require(_to != address(0));
        require(_amount <= balances[_from]);
        require(_amount <= allowed[_from][msg.sender]);
        
        balances[_from] = balances[_from].sub(_amount);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        emit Transfer(_from, _to, _amount);
        return true;
    }
    
    function approve(address _spender, uint256 _value) public returns (bool success) {
        // mitigates the ERC20 spend/approval race condition
        if (_value != 0 && allowed[msg.sender][_spender] != 0) { return false; }
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }
    
    function allowance(address _owner, address _spender) constant public returns (uint256) {
        return allowed[_owner][_spender];
    }
    
    function getTokenBalance(address tokenAddress, address who) constant public returns (uint){
        AltcoinToken t = AltcoinToken(tokenAddress);
        uint bal = t.balanceOf(who);
        return bal;
    }
    
    function withdraw() onlyOwner public {
        address myAddress = this;
        uint256 etherBalance = myAddress.balance;
        owner.transfer(etherBalance);
    }
    
    function burn(uint256 _value) onlyOwner public {
        require(_value <= balances[msg.sender]);
        // no need to require value <= totalSupply, since that would imply the
        // sender's balance is greater than the totalSupply, which *should* be an assertion failure

        address burner = msg.sender;
        balances[burner] = balances[burner].sub(_value);
        totalSupply = totalSupply.sub(_value);
        totalDistributed = totalDistributed.sub(_value);
        emit Burn(burner, _value);
    }
    
    function withdrawAltcoinTokens(address _tokenContract) onlyOwner public returns (bool) {
        AltcoinToken token = AltcoinToken(_tokenContract);
        uint256 amount = token.balanceOf(address(this));
        return token.transfer(owner, amount);
    }
}

Contract Security Audit

Contract ABI

[{"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":"success","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":"_tokenContract","type":"address"}],"name":"withdrawAltcoinTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"resetICO","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"startICO","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_participant","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferTokenTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"icoStart","outputs":[{"name":"","type":"bool"}],"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":"finishDistribution","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokensPerEth","type":"uint256"}],"name":"updateTokensPerEth","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"distributionFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_addresses","type":"address[]"},{"name":"_amount","type":"uint256"}],"name":"transferTokenToMultiple","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"who","type":"address"}],"name":"getTokenBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokensPerEth","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MIN_PURCHASE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalDistributed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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"},{"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":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Distr","type":"event"},{"anonymous":false,"inputs":[],"name":"DistrFinished","type":"event"},{"anonymous":false,"inputs":[],"name":"StartICO","type":"event"},{"anonymous":false,"inputs":[],"name":"ResetICO","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"},{"indexed":false,"name":"_balance","type":"uint256"}],"name":"Airdrop","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_tokensPerEth","type":"uint256"}],"name":"TokensPerEthUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

608060405260018054600160a060020a031916331790556b36ee12069cd8840b68000000600455600060055569034841b6057afab000006006556007805461ffff1916905534801561005057600080fd5b5060018054600160a060020a03191633179055611188806100726000396000f3006080604052600436106101535763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461015d578063095ea7b3146101e757806318160ddd1461021f5780632195845f1461024657806323b872dd146102675780632c0a036b14610291578063313ce567146102a65780633ccfd60b146102bb57806342966c68146102d057806370a08231146102e85780637fa8c158146103095780638144650a1461031e578063827037db1461034257806395d89b41146103575780639b1cbccc1461036c5780639ea407be14610381578063a9059cbb14610399578063aa6ca80814610153578063c108d542146103bd578063c3888bce146103d2578063c489744b14610429578063cbdd69b514610450578063d439390c14610465578063dd62ed3e1461047a578063efca2eed146104a1578063f2fde38b146104b6575b61015b6104d7565b005b34801561016957600080fd5b50610172610585565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ac578181015183820152602001610194565b50505050905090810190601f1680156101d95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101f357600080fd5b5061020b600160a060020a03600435166024356105bc565b604080519115158252519081900360200190f35b34801561022b57600080fd5b50610234610664565b60408051918252519081900360200190f35b34801561025257600080fd5b5061020b600160a060020a036004351661066a565b34801561027357600080fd5b5061020b600160a060020a03600435811690602435166044356107be565b34801561029d57600080fd5b5061020b610931565b3480156102b257600080fd5b50610234610985565b3480156102c757600080fd5b5061015b61098a565b3480156102dc57600080fd5b5061015b6004356109ec565b3480156102f457600080fd5b50610234600160a060020a0360043516610acb565b34801561031557600080fd5b5061020b610ae6565b34801561032a57600080fd5b5061015b600160a060020a0360043516602435610b3e565b34801561034e57600080fd5b5061020b610b5f565b34801561036357600080fd5b50610172610b6d565b34801561037857600080fd5b5061020b610ba4565b34801561038d57600080fd5b5061015b600435610c20565b3480156103a557600080fd5b5061020b600160a060020a0360043516602435610c72565b3480156103c957600080fd5b5061020b610d51565b3480156103de57600080fd5b506040805160206004803580820135838102808601850190965280855261015b953695939460249493850192918291850190849080828437509497505093359450610d5a9350505050565b34801561043557600080fd5b50610234600160a060020a0360043581169060243516610daa565b34801561045c57600080fd5b50610234610e5b565b34801561047157600080fd5b50610234610e61565b34801561048657600080fd5b50610234600160a060020a0360043581169060243516610e6c565b3480156104ad57600080fd5b50610234610e97565b3480156104c257600080fd5b5061015b600160a060020a0360043516610e9d565b600754600090819060ff16156104ec57600080fd5b600754610100900460ff16151561050257600080fd5b60009150662386f26fc1000034101561051a57600080fd5b6000341161052757600080fd5b600654670de0b6b3a764000090610544903463ffffffff610eef16565b81151561054d57fe5b0491503390506000821115610568576105668183610f18565b505b60045460055410610581576007805460ff191660011790555b5050565b60408051808201909152600a81527f48617368696e6741647300000000000000000000000000000000000000000000602082015281565b600081158015906105ef5750336000908152600360209081526040808320600160a060020a038716845290915290205415155b156105fc5750600061065e565b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60045481565b60015460009081908190600160a060020a0316331461068857600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b1580156106ec57600080fd5b505af1158015610700573d6000803e3d6000fd5b505050506040513d602081101561071657600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b15801561078a57600080fd5b505af115801561079e573d6000803e3d6000fd5b505050506040513d60208110156107b457600080fd5b5051949350505050565b6000606060643610156107cd57fe5b600160a060020a03841615156107e257600080fd5b600160a060020a03851660009081526002602052604090205483111561080757600080fd5b600160a060020a038516600090815260036020908152604080832033845290915290205483111561083757600080fd5b600160a060020a038516600090815260026020526040902054610860908463ffffffff61100a16565b600160a060020a038616600090815260026020908152604080832093909355600381528282203383529052205461089d908463ffffffff61100a16565b600160a060020a0380871660009081526003602090815260408083203384528252808320949094559187168152600290915220546108e1908463ffffffff61101c16565b600160a060020a03808616600081815260026020908152604091829020949094558051878152905191939289169260008051602061113d83398151915292918290030190a3506001949350505050565b600154600090600160a060020a0316331461094b57600080fd5b6007805461ffff191690556040517f709bfbbb9211cec7e9d6203bd75ecb00bc1802373741d11b664a136ae1b0ab0290600090a150600190565b601281565b6001546000908190600160a060020a031633146109a657600080fd5b50506001546040513091823191600160a060020a03909116906108fc8315029083906000818181858888f193505050501580156109e7573d6000803e3d6000fd5b505050565b600154600090600160a060020a03163314610a0657600080fd5b33600090815260026020526040902054821115610a2257600080fd5b5033600081815260026020526040902054610a43908363ffffffff61100a16565b600160a060020a038216600090815260026020526040902055600454610a6f908363ffffffff61100a16565b600455600554610a85908363ffffffff61100a16565b600555604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b600160a060020a031660009081526002602052604090205490565b600154600090600160a060020a03163314610b0057600080fd5b6007805461ff0019166101001790556040517f6a6b80772682d230603482c384f27af24be0f9cb49cce7a9009a31880841193d90600090a150600190565b600154600160a060020a03163314610b5557600080fd5b6105818282611029565b600754610100900460ff1681565b60408051808201909152600481527f424e455800000000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610bbe57600080fd5b60075460ff1615610bce57600080fd5b600754610100900460ff161515610be457600080fd5b6007805460ff191660011790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b600154600160a060020a03163314610c3757600080fd5b60068190556040805182815290517ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0039181900360200190a150565b600060406044361015610c8157fe5b600160a060020a0384161515610c9657600080fd5b33600090815260026020526040902054831115610cb257600080fd5b33600090815260026020526040902054610cd2908463ffffffff61100a16565b3360009081526002602052604080822092909255600160a060020a03861681522054610d04908463ffffffff61101c16565b600160a060020a03851660008181526002602090815260409182902093909355805186815290519192339260008051602061113d8339815191529281900390910190a35060019392505050565b60075460ff1681565b600154600090600160a060020a03163314610d7457600080fd5b5060005b82518110156109e757610da28382815181101515610d9257fe5b9060200190602002015183611029565b600101610d78565b600080600084915081600160a060020a03166370a08231856040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610e2657600080fd5b505af1158015610e3a573d6000803e3d6000fd5b505050506040513d6020811015610e5057600080fd5b505195945050505050565b60065481565b662386f26fc1000081565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60055481565b600154600160a060020a03163314610eb457600080fd5b600160a060020a03811615610eec576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b6000821515610f005750600061065e565b50818102818382811515610f1057fe5b041461065e57fe5b60075460009060ff1615610f2b57600080fd5b600754610100900460ff161515610f4157600080fd5b600554610f54908363ffffffff61101c16565b600555600160a060020a038316600090815260026020526040902054610f80908363ffffffff61101c16565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a0385169160009160008051602061113d8339815191529181900360200190a350600192915050565b60008282111561101657fe5b50900390565b8181018281101561065e57fe5b6000811161103657600080fd5b6004546005541061104657600080fd5b600160a060020a03821660009081526002602052604090205461106f908263ffffffff61101c16565b600160a060020a03831660009081526002602052604090205560055461109b908263ffffffff61101c16565b6005819055600454116110b6576007805460ff191660011790555b600160a060020a0382166000818152600260209081526040918290205482518581529182015281517fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272929181900390910190a2604080518281529051600160a060020a0384169160009160008051602061113d8339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820ea5871bc1c3bff6db1ccbbf757b3cf26905fe3135b3e9eed6c5c745a795675e00029

Deployed Bytecode

0x6080604052600436106101535763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461015d578063095ea7b3146101e757806318160ddd1461021f5780632195845f1461024657806323b872dd146102675780632c0a036b14610291578063313ce567146102a65780633ccfd60b146102bb57806342966c68146102d057806370a08231146102e85780637fa8c158146103095780638144650a1461031e578063827037db1461034257806395d89b41146103575780639b1cbccc1461036c5780639ea407be14610381578063a9059cbb14610399578063aa6ca80814610153578063c108d542146103bd578063c3888bce146103d2578063c489744b14610429578063cbdd69b514610450578063d439390c14610465578063dd62ed3e1461047a578063efca2eed146104a1578063f2fde38b146104b6575b61015b6104d7565b005b34801561016957600080fd5b50610172610585565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ac578181015183820152602001610194565b50505050905090810190601f1680156101d95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101f357600080fd5b5061020b600160a060020a03600435166024356105bc565b604080519115158252519081900360200190f35b34801561022b57600080fd5b50610234610664565b60408051918252519081900360200190f35b34801561025257600080fd5b5061020b600160a060020a036004351661066a565b34801561027357600080fd5b5061020b600160a060020a03600435811690602435166044356107be565b34801561029d57600080fd5b5061020b610931565b3480156102b257600080fd5b50610234610985565b3480156102c757600080fd5b5061015b61098a565b3480156102dc57600080fd5b5061015b6004356109ec565b3480156102f457600080fd5b50610234600160a060020a0360043516610acb565b34801561031557600080fd5b5061020b610ae6565b34801561032a57600080fd5b5061015b600160a060020a0360043516602435610b3e565b34801561034e57600080fd5b5061020b610b5f565b34801561036357600080fd5b50610172610b6d565b34801561037857600080fd5b5061020b610ba4565b34801561038d57600080fd5b5061015b600435610c20565b3480156103a557600080fd5b5061020b600160a060020a0360043516602435610c72565b3480156103c957600080fd5b5061020b610d51565b3480156103de57600080fd5b506040805160206004803580820135838102808601850190965280855261015b953695939460249493850192918291850190849080828437509497505093359450610d5a9350505050565b34801561043557600080fd5b50610234600160a060020a0360043581169060243516610daa565b34801561045c57600080fd5b50610234610e5b565b34801561047157600080fd5b50610234610e61565b34801561048657600080fd5b50610234600160a060020a0360043581169060243516610e6c565b3480156104ad57600080fd5b50610234610e97565b3480156104c257600080fd5b5061015b600160a060020a0360043516610e9d565b600754600090819060ff16156104ec57600080fd5b600754610100900460ff16151561050257600080fd5b60009150662386f26fc1000034101561051a57600080fd5b6000341161052757600080fd5b600654670de0b6b3a764000090610544903463ffffffff610eef16565b81151561054d57fe5b0491503390506000821115610568576105668183610f18565b505b60045460055410610581576007805460ff191660011790555b5050565b60408051808201909152600a81527f48617368696e6741647300000000000000000000000000000000000000000000602082015281565b600081158015906105ef5750336000908152600360209081526040808320600160a060020a038716845290915290205415155b156105fc5750600061065e565b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60045481565b60015460009081908190600160a060020a0316331461068857600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b1580156106ec57600080fd5b505af1158015610700573d6000803e3d6000fd5b505050506040513d602081101561071657600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b15801561078a57600080fd5b505af115801561079e573d6000803e3d6000fd5b505050506040513d60208110156107b457600080fd5b5051949350505050565b6000606060643610156107cd57fe5b600160a060020a03841615156107e257600080fd5b600160a060020a03851660009081526002602052604090205483111561080757600080fd5b600160a060020a038516600090815260036020908152604080832033845290915290205483111561083757600080fd5b600160a060020a038516600090815260026020526040902054610860908463ffffffff61100a16565b600160a060020a038616600090815260026020908152604080832093909355600381528282203383529052205461089d908463ffffffff61100a16565b600160a060020a0380871660009081526003602090815260408083203384528252808320949094559187168152600290915220546108e1908463ffffffff61101c16565b600160a060020a03808616600081815260026020908152604091829020949094558051878152905191939289169260008051602061113d83398151915292918290030190a3506001949350505050565b600154600090600160a060020a0316331461094b57600080fd5b6007805461ffff191690556040517f709bfbbb9211cec7e9d6203bd75ecb00bc1802373741d11b664a136ae1b0ab0290600090a150600190565b601281565b6001546000908190600160a060020a031633146109a657600080fd5b50506001546040513091823191600160a060020a03909116906108fc8315029083906000818181858888f193505050501580156109e7573d6000803e3d6000fd5b505050565b600154600090600160a060020a03163314610a0657600080fd5b33600090815260026020526040902054821115610a2257600080fd5b5033600081815260026020526040902054610a43908363ffffffff61100a16565b600160a060020a038216600090815260026020526040902055600454610a6f908363ffffffff61100a16565b600455600554610a85908363ffffffff61100a16565b600555604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b600160a060020a031660009081526002602052604090205490565b600154600090600160a060020a03163314610b0057600080fd5b6007805461ff0019166101001790556040517f6a6b80772682d230603482c384f27af24be0f9cb49cce7a9009a31880841193d90600090a150600190565b600154600160a060020a03163314610b5557600080fd5b6105818282611029565b600754610100900460ff1681565b60408051808201909152600481527f424e455800000000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610bbe57600080fd5b60075460ff1615610bce57600080fd5b600754610100900460ff161515610be457600080fd5b6007805460ff191660011790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b600154600160a060020a03163314610c3757600080fd5b60068190556040805182815290517ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0039181900360200190a150565b600060406044361015610c8157fe5b600160a060020a0384161515610c9657600080fd5b33600090815260026020526040902054831115610cb257600080fd5b33600090815260026020526040902054610cd2908463ffffffff61100a16565b3360009081526002602052604080822092909255600160a060020a03861681522054610d04908463ffffffff61101c16565b600160a060020a03851660008181526002602090815260409182902093909355805186815290519192339260008051602061113d8339815191529281900390910190a35060019392505050565b60075460ff1681565b600154600090600160a060020a03163314610d7457600080fd5b5060005b82518110156109e757610da28382815181101515610d9257fe5b9060200190602002015183611029565b600101610d78565b600080600084915081600160a060020a03166370a08231856040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610e2657600080fd5b505af1158015610e3a573d6000803e3d6000fd5b505050506040513d6020811015610e5057600080fd5b505195945050505050565b60065481565b662386f26fc1000081565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60055481565b600154600160a060020a03163314610eb457600080fd5b600160a060020a03811615610eec576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b6000821515610f005750600061065e565b50818102818382811515610f1057fe5b041461065e57fe5b60075460009060ff1615610f2b57600080fd5b600754610100900460ff161515610f4157600080fd5b600554610f54908363ffffffff61101c16565b600555600160a060020a038316600090815260026020526040902054610f80908363ffffffff61101c16565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a0385169160009160008051602061113d8339815191529181900360200190a350600192915050565b60008282111561101657fe5b50900390565b8181018281101561065e57fe5b6000811161103657600080fd5b6004546005541061104657600080fd5b600160a060020a03821660009081526002602052604090205461106f908263ffffffff61101c16565b600160a060020a03831660009081526002602052604090205560055461109b908263ffffffff61101c16565b6005819055600454116110b6576007805460ff191660011790555b600160a060020a0382166000818152600260209081526040918290205482518581529182015281517fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272929181900390910190a2604080518281529051600160a060020a0384169160009160008051602061113d8339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820ea5871bc1c3bff6db1ccbbf757b3cf26905fe3135b3e9eed6c5c745a795675e00029

Deployed Bytecode Sourcemap

2189:7126:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5764:11;:9;:11::i;:::-;2189:7126;2407:42;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2407:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2407:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7589:358;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7589:358:0;-1:-1:-1;;;;;7589:358:0;;;;;;;;;;;;;;;;;;;;;;;;;2548:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2548:43:0;;;;;;;;;;;;;;;;;;;;9052:260;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9052:260:0;-1:-1:-1;;;;;9052:260:0;;;;;7040:537;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7040:537:0;-1:-1:-1;;;;;7040:537:0;;;;;;;;;;;;3940:174;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3940:174:0;;;;2501:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2501:34:0;;;;8332:170;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8332:170:0;;;;8514:526;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8514:526:0;;;;;6344:111;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6344:111:0;-1:-1:-1;;;;;6344:111:0;;;;;3798:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3798:134:0;;;;5191:137;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5191:137:0;-1:-1:-1;;;;;5191:137:0;;;;;;;3308:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3308:28:0;;;;2456:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2456:38:0;;;;4122:170;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4122:170:0;;;;5535;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5535:170:0;;;;;6626:402;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6626:402:0;-1:-1:-1;;;;;6626:402:0;;;;;;;3259:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3259:40:0;;;;5336:191;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5336:191:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5336:191:0;;-1:-1:-1;;5336:191:0;;;-1:-1:-1;5336:191:0;;-1:-1:-1;;;;5336:191:0;8109:211;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8109:211:0;-1:-1:-1;;;;;8109:211:0;;;;;;;;;;2717:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2717:38:0;;;;2644:52;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2644:52:0;;;;7959:138;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7959:138:0;-1:-1:-1;;;;;7959:138:0;;;;;;;;;;2598:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2598:35:0;;;;3639:151;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3639:151:0;-1:-1:-1;;;;;3639:151:0;;;;;5796:540;3389:20;;5853:14;;;;3389:20;;3388:21;3380:30;;;;;;3429:8;;;;;;;3421:17;;;;;;;;5870:1;;-1:-1:-1;2683:13:0;5926:9;:25;;5917:36;;;;;;5987:1;5975:9;:13;5966:24;;;;;;6054:12;;6084:7;;6054:27;;6071:9;6054:27;:16;:27;:::i;:::-;:37;;;;;;;;6045:46;;6129:10;6110:29;;6173:1;6164:6;:10;6160:66;;;6191:23;6197:8;6207:6;6191:5;:23::i;:::-;;6160:66;6262:11;;6242:16;;:31;6238:91;;6290:20;:27;;-1:-1:-1;;6290:27:0;6313:4;6290:27;;;6238:91;5796:540;;:::o;2407:42::-;;;;;;;;;;;;;;;;;;;:::o;7589:358::-;7656:12;7747:11;;;;;:49;;-1:-1:-1;7770:10:0;7762:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7762:29:0;;;;;;;;;;:34;;7747:49;7743:72;;;-1:-1:-1;7807:5:0;7800:12;;7743:72;7833:10;7825:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7825:29:0;;;;;;;;;;;;:38;;;7879;;;;;;;7825:29;;7833:10;7879:38;;;;;;;;;;;-1:-1:-1;7935:4:0;7589:358;;;;;:::o;2548:43::-;;;;:::o;9052:260::-;3524:5;;9133:4;;;;;;-1:-1:-1;;;;;3524:5:0;3510:10;:19;3502:28;;;;;;9227:30;;;;;;9251:4;9227:30;;;;;;9184:14;;-1:-1:-1;;;;;;9227:15:0;;;;;:30;;;;;;;;;;;;;;-1:-1:-1;9227:15:0;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;9227:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;9227:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9227:30:0;9290:5;;9275:29;;;;;;-1:-1:-1;;;;;9290:5:0;;;9275:29;;;;;;;;;;;;9227:30;;-1:-1:-1;9275:14:0;;;;;;:29;;;;;9227:30;;9275:29;;;;;;;;9290:5;9275:14;:29;;;5:2:-1;;;;30:1;27;20:12;5:2;9275:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;9275:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9275:29:0;;9052:260;-1:-1:-1;;;;9052:260:0:o;7040:537::-;7147:12;7123:6;6585:8;6566;:27;;6559:35;;;;-1:-1:-1;;;;;7182:17:0;;;;7174:26;;;;;;-1:-1:-1;;;;;7230:15:0;;;;;;:8;:15;;;;;;7219:26;;;7211:35;;;;;;-1:-1:-1;;;;;7276:14:0;;;;;;:7;:14;;;;;;;;7291:10;7276:26;;;;;;;;7265:37;;;7257:46;;;;;;-1:-1:-1;;;;;7342:15:0;;;;;;:8;:15;;;;;;:28;;7362:7;7342:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;7324:15:0;;;;;;:8;:15;;;;;;;;:46;;;;7410:7;:14;;;;;7425:10;7410:26;;;;;;:39;;7441:7;7410:39;:30;:39;:::i;:::-;-1:-1:-1;;;;;7381:14:0;;;;;;;:7;:14;;;;;;;;7396:10;7381:26;;;;;;;:68;;;;7476:13;;;;;:8;:13;;;;;:26;;7494:7;7476:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;7460:13:0;;;;;;;:8;:13;;;;;;;;;:42;;;;7518:29;;;;;;;7460:13;;7518:29;;;;-1:-1:-1;;;;;;;;;;;7518:29:0;;;;;;;;-1:-1:-1;7565:4:0;;7040:537;-1:-1:-1;;;;7040:537:0:o;3940:174::-;3524:5;;3986:4;;-1:-1:-1;;;;;3524:5:0;3510:10;:19;3502:28;;;;;;4003:8;:16;;-1:-1:-1;;4030:28:0;;;4074:10;;;;4014:5;;4074:10;-1:-1:-1;4102:4:0;3940:174;:::o;2501:34::-;2533:2;2501:34;:::o;8332:170::-;3524:5;;8380:17;;;;-1:-1:-1;;;;;3524:5:0;3510:10;:19;3502:28;;;;;;-1:-1:-1;;8466:5:0;;:28;;8400:4;;8438:17;;;-1:-1:-1;;;;;8466:5:0;;;;:28;;;;;8438:17;;8466:5;:28;:5;:28;8438:17;8466:5;:28;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;8466:28:0;8332:170;;:::o;8514:526::-;3524:5;;8805:14;;-1:-1:-1;;;;;3524:5:0;3510:10;:19;3502:28;;;;;;8599:10;8590:20;;;;:8;:20;;;;;;8580:30;;;8572:39;;;;;;-1:-1:-1;8822:10:0;8862:16;;;;:8;:16;;;;;;:28;;8883:6;8862:28;:20;:28;:::i;:::-;-1:-1:-1;;;;;8843:16:0;;;;;;:8;:16;;;;;:47;8915:11;;:23;;8931:6;8915:23;:15;:23;:::i;:::-;8901:11;:37;8968:16;;:28;;8989:6;8968:28;:20;:28;:::i;:::-;8949:16;:47;9012:20;;;;;;;;-1:-1:-1;;;;;9012:20:0;;;;;;;;;;;;;8514:526;;:::o;6344:111::-;-1:-1:-1;;;;;6431:16:0;6404:7;6431:16;;;:8;:16;;;;;;;6344:111::o;3798:134::-;3524:5;;3844:4;;-1:-1:-1;;;;;3524:5:0;3510:10;:19;3502:28;;;;;;3861:8;:15;;-1:-1:-1;;3861:15:0;;;;;3892:10;;;;3861:15;;3892:10;-1:-1:-1;3920:4:0;3798:134;:::o;5191:137::-;3524:5;;-1:-1:-1;;;;;3524:5:0;3510:10;:19;3502:28;;;;;;5288:32;5298:12;5312:7;5288:9;:32::i;3308:28::-;;;;;;;;;:::o;2456:38::-;;;;;;;;;;;;;;;;;;;:::o;4122:170::-;3524:5;;4187:4;;-1:-1:-1;;;;;3524:5:0;3510:10;:19;3502:28;;;;;;3389:20;;;;3388:21;3380:30;;;;;;3429:8;;;;;;;3421:17;;;;;;;;4204:20;:27;;-1:-1:-1;;4204:27:0;4227:4;4204:27;;;4247:15;;;;4204:20;;4247:15;-1:-1:-1;4280:4:0;4122:170;:::o;5535:::-;3524:5;;-1:-1:-1;;;;;3524:5:0;3510:10;:19;3502:28;;;;;;5619:12;:28;;;5663:34;;;;;;;;;;;;;;;;;5535:170;:::o;6626:402::-;6714:12;6690:6;6585:8;6566;:27;;6559:35;;;;-1:-1:-1;;;;;6749:17:0;;;;6741:26;;;;;;6806:10;6797:20;;;;:8;:20;;;;;;6786:31;;;6778:40;;;;;;6871:10;6862:20;;;;:8;:20;;;;;;:33;;6887:7;6862:33;:24;:33;:::i;:::-;6848:10;6839:20;;;;:8;:20;;;;;;:56;;;;-1:-1:-1;;;;;6922:13:0;;;;;;:26;;6940:7;6922:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;6906:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;6964:34;;;;;;;6906:13;;6973:10;;-1:-1:-1;;;;;;;;;;;6964:34:0;;;;;;;;;-1:-1:-1;7016:4:0;;6626:402;-1:-1:-1;;;6626:402:0:o;3259:40::-;;;;;;:::o;5336:191::-;3524:5;;5446:6;;-1:-1:-1;;;;;3524:5:0;3510:10;:19;3502:28;;;;;;-1:-1:-1;5455:1:0;5441:78;5462:10;:17;5458:1;:21;5441:78;;;5486:33;5496:10;5507:1;5496:13;;;;;;;;;;;;;;;;;;5511:7;5486:9;:33::i;:::-;5481:3;;5441:78;;8109:211;8194:4;8210:14;8264:8;8240:12;8210:43;;8275:1;-1:-1:-1;;;;;8275:11:0;;8287:3;8275:16;;;;;;;;;;;;;-1:-1:-1;;;;;8275:16:0;-1:-1:-1;;;;;8275:16:0;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8275:16:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;8275:16:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8275:16:0;;8109:211;-1:-1:-1;;;;;8109:211:0:o;2717:38::-;;;;:::o;2644:52::-;2683:13;2644:52;:::o;7959:138::-;-1:-1:-1;;;;;8064:15:0;;;8037:7;8064:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;7959:138::o;2598:35::-;;;;:::o;3639:151::-;3524:5;;-1:-1:-1;;;;;3524:5:0;3510:10;:19;3502:28;;;;;;-1:-1:-1;;;;;3716:22:0;;;3712:71;;3755:5;:16;;-1:-1:-1;;3755:16:0;-1:-1:-1;;;;;3755:16:0;;;;;3712:71;3639:151;:::o;285:202::-;343:9;369:6;;365:47;;;-1:-1:-1;399:1:0;392:8;;365:47;-1:-1:-1;426:5:0;;;430:1;426;:5;449;;;;;;;;:10;442:18;;;4304:314;3389:20;;4375:4;;3389:20;;3388:21;3380:30;;;;;;3429:8;;;;;;;3421:17;;;;;;;;4411:16;;:29;;4432:7;4411:29;:20;:29;:::i;:::-;4392:16;:48;-1:-1:-1;;;;;4475:13:0;;;;;;:8;:13;;;;;;:26;;4493:7;4475:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;4459:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;4517:19;;;;;;;4459:13;;4517:19;;;;;;;;;4552:34;;;;;;;;-1:-1:-1;;;;;4552:34:0;;;4569:1;;-1:-1:-1;;;;;;;;;;;4552:34:0;;;;;;;;-1:-1:-1;4606:4:0;4304:314;;;;:::o;1000:123::-;1058:7;1085:6;;;;1078:14;;;;-1:-1:-1;1110:5:0;;;1000:123::o;1197:141::-;1281:5;;;1304:6;;;;1297:14;;;4626:557;4722:1;4712:11;;4703:22;;;;;;4772:11;;4753:16;;:30;4744:41;;;;;;-1:-1:-1;;;;;4831:22:0;;;;;;:8;:22;;;;;;:35;;4858:7;4831:35;:26;:35;:::i;:::-;-1:-1:-1;;;;;4806:22:0;;;;;;:8;:22;;;;;:60;4896:16;;:29;;4917:7;4896:29;:20;:29;:::i;:::-;4877:16;:48;;;4962:11;;-1:-1:-1;4938:91:0;;4990:20;:27;;-1:-1:-1;;4990:27:0;5013:4;4990:27;;;4938:91;-1:-1:-1;;;;;5062:54:0;;5093:22;;;;:8;:22;;;;;;;;;;5062:54;;;;;;;;;;;;;;;;;;;;;;5132:43;;;;;;;;-1:-1:-1;;;;;5132:43:0;;;5149:1;;-1:-1:-1;;;;;;;;;;;5132:43:0;;;;;;;;4626:557;;:::o

Swarm Source

bzzr://ea5871bc1c3bff6db1ccbbf757b3cf26905fe3135b3e9eed6c5c745a795675e0
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.