ETH Price: $2,627.87 (-0.12%)
Gas: 5 Gwei

Token

Ethereum Card (ETHCD)
 

Overview

Max Total Supply

16,000,000 ETHCD

Holders

496

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,000 ETHCD

Value
$0.00
0x251583da7771dd110d26c2adf9da4f407ce3caf1
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Global Shopping & Trading Currency Including Escrow Services

ICO Information

ICO Start Date : Jun 08, 2019
ICO End Date : Jul 10, 2019
Hard Cap : 13,000,000 ETHCD
Soft Cap : 6,000,000 ETHCD
ICO Price  : $0.15 | 0.00056 ETH
Bonus : 15%
Country : Canada

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EthereumCard

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-06-01
*/

pragma solidity ^0.4.24;

/**
 * @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 ForeignToken {
    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 EthereumCard is ERC20 {
    
    using SafeMath for uint256;
    address owner = msg.sender;

    mapping (address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowed;
    mapping (address => bool) public Claimed; 

    string public constant name = "Ethereum Card";
    string public constant symbol = "ETHCD";
    uint public constant decimals = 18;
    uint public deadline = now + 45 * 1 days;
    uint public round2 = now + 17 * 1 days;
    uint public round1 = now + 6 * 1 days;
    
    uint256 public totalSupply = 16000000e18;
    uint256 public totalDistributed;
    uint256 public constant requestMinimum = 1 ether / 100; // 0.01 Ether
    uint256 public tokensPerEth = 3750e18;
    
    uint public target0drop = 0; 
    uint public progress0drop = 0;


    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 Airdrop(address indexed _owner, uint _amount, uint _balance);

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

    bool public distributionFinished = false;
    
    modifier canDistr() {
        require(!distributionFinished);
        _;
    }
    
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }
    
    constructor() public {
        uint256 teamFund = 250000e18;
        owner = msg.sender;
        distr(owner, teamFund);
    }
    
    function transferOwnership(address newOwner) onlyOwner public {
        if (newOwner != address(0)) {
            owner = newOwner;
        }
    }

    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 Distribute(address _participant, uint _amount) onlyOwner 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 DistributeAirdrop(address _participant, uint _amount) onlyOwner external {        
        Distribute(_participant, _amount);
    }

    function DistributeAirdropMultiple(address[] _addresses, uint _amount) onlyOwner external {        
        for (uint i = 0; i < _addresses.length; i++) Distribute(_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;
        uint256 bonus = 0;
        uint256 countbonus = 0;
        uint256 bonusCond1 = 1 ether / 100;
        uint256 bonusCond2 = 1 ether / 20;
        uint256 bonusCond3 = 1 ether;

        tokens = tokensPerEth.mul(msg.value) / 1 ether;        
        address investor = msg.sender;

        if (msg.value >= requestMinimum && now < deadline && now < round1 && now < round2) {
            if(msg.value >= bonusCond1 && msg.value < bonusCond2){
                countbonus = tokens * 15 / 100;
            }else if(msg.value >= bonusCond2 && msg.value < bonusCond3){
                countbonus = tokens * 20 / 100;
            }else if(msg.value >= bonusCond3){
                countbonus = tokens * 25 / 100;
            }
        }else if(msg.value >= requestMinimum && now < deadline && now > round1 && now < round2){
            if(msg.value >= bonusCond2 && msg.value < bonusCond3){
                countbonus = tokens * 15 / 100;
            }else if(msg.value >= bonusCond3){
                countbonus = tokens * 20 / 100;
            }
        }else{
            countbonus = 0;
        }

        bonus = tokens + countbonus;
        
        if (tokens == 0) {
            uint256 valdrop = 100e18;
            if (Claimed[investor] == false && progress0drop <= target0drop ) {
                distr(investor, valdrop);
                Claimed[investor] = true;
                progress0drop++;
            }else{
                require( msg.value >= requestMinimum );
            }
        }else if(tokens > 0 && msg.value >= requestMinimum){
            if( now >= deadline && now >= round1 && now < round2){
                distr(investor, tokens);
            }else{
                if(msg.value >= bonusCond1){
                    distr(investor, bonus);
                }else{
                    distr(investor, tokens);
                }   
            }
        }else{
            require( msg.value >= requestMinimum );
        }

        if (totalDistributed >= totalSupply) {
            distributionFinished = true;
        }
    }
    
    function balanceOf(address _owner) constant public returns (uint256) {
        return balances[_owner];
    }

    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) {
        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){
        ForeignToken t = ForeignToken(tokenAddress);
        uint bal = t.balanceOf(who);
        return bal;
    }
    
    function FreezedAll() onlyOwner public {
        address myAddress = this;
        uint256 etherBalance = myAddress.balance;
        owner.transfer(etherBalance);
    }

    function Freezed(uint256 _wdamount) onlyOwner public {
        uint256 wantAmount = _wdamount;
        owner.transfer(wantAmount);
    }

    function burn(uint256 _value) onlyOwner public {
        require(_value <= balances[msg.sender]);
        address burner = msg.sender;
        balances[burner] = balances[burner].sub(_value);
        totalSupply = totalSupply.sub(_value);
        totalDistributed = totalDistributed.sub(_value);
        emit Burn(burner, _value);
    }
    
    function add(uint256 _value) onlyOwner public {
        uint256 counter = totalSupply.add(_value);
        totalSupply = counter; 
        emit Add(_value);
    }
    
    
    function withdrawForeignTokens(address _tokenContract) onlyOwner public returns (bool) {
        ForeignToken token = ForeignToken(_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":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"add","outputs":[],"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":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"FreezedAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"deadline","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_wdamount","type":"uint256"}],"name":"Freezed","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":"round2","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"requestMinimum","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_participant","type":"address"},{"name":"_amount","type":"uint256"}],"name":"DistributeAirdrop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"round1","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"progress0drop","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":"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":"","type":"address"}],"name":"Claimed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"distributionFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenContract","type":"address"}],"name":"withdrawForeignTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"target0drop","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"},{"constant":false,"inputs":[{"name":"_addresses","type":"address[]"},{"name":"_amount","type":"uint256"}],"name":"DistributeAirdropMultiple","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":[{"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"},{"anonymous":false,"inputs":[{"indexed":false,"name":"value","type":"uint256"}],"name":"Add","type":"event"}]

608060405260018054600160a060020a03191633179055623b5380429081016005556216698081016006556207e900016007556a0d3c21bcecceda1000000060085568cb49b44ba602d80000600a556000600b819055600c55600d805460ff1916905534801561006e57600080fd5b5060018054600160a060020a0319163317908190556934f086f3b33b68400000906100ab90600160a060020a0316826401000000006100b2810204565b50506101c1565b600d5460009060ff16156100c557600080fd5b6009546100df90836401000000006112ae6101ae82021704565b600955600160a060020a03831660009081526002602052604090205461011290836401000000006112ae6101ae82021704565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b818101828110156101bb57fe5b92915050565b61144380620001d16000396000f30060806040526004361061018a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610194578063095ea7b31461021e5780631003e2d21461025657806318160ddd1461026e57806323b872dd1461029557806323e8aafa146102bf57806329dcb0cf146102d4578063313ce567146102e957806333ac2438146102fe57806342966c6814610316578063532b581c1461032e57806370a082311461034357806374ff2324146103645780637809231c14610379578063836e81801461039d57806383afd6da146103b257806395d89b41146103c75780639b1cbccc146103dc5780639ea407be146103f1578063a9059cbb14610409578063aa6ca8081461018a578063b449c24d1461042d578063c108d5421461044e578063c489744b14610463578063cbdd69b51461048a578063dd62ed3e1461049f578063e58fc54c146104c6578063e6a092f5146104e7578063efca2eed146104fc578063f2fde38b14610511578063f3ccb40114610532575b610192610556565b005b3480156101a057600080fd5b506101a961080d565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e35781810151838201526020016101cb565b50505050905090810190601f1680156102105780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022a57600080fd5b50610242600160a060020a0360043516602435610844565b604080519115158252519081900360200190f35b34801561026257600080fd5b506101926004356108ec565b34801561027a57600080fd5b50610283610959565b60408051918252519081900360200190f35b3480156102a157600080fd5b50610242600160a060020a036004358116906024351660443561095f565b3480156102cb57600080fd5b50610192610ad2565b3480156102e057600080fd5b50610283610b34565b3480156102f557600080fd5b50610283610b3a565b34801561030a57600080fd5b50610192600435610b3f565b34801561032257600080fd5b50610192600435610b94565b34801561033a57600080fd5b50610283610c73565b34801561034f57600080fd5b50610283600160a060020a0360043516610c79565b34801561037057600080fd5b50610283610c94565b34801561038557600080fd5b50610192600160a060020a0360043516602435610c9f565b3480156103a957600080fd5b50610283610cc4565b3480156103be57600080fd5b50610283610cca565b3480156103d357600080fd5b506101a9610cd0565b3480156103e857600080fd5b50610242610d07565b3480156103fd57600080fd5b50610192600435610d6d565b34801561041557600080fd5b50610242600160a060020a0360043516602435610dbf565b34801561043957600080fd5b50610242600160a060020a0360043516610e9e565b34801561045a57600080fd5b50610242610eb3565b34801561046f57600080fd5b50610283600160a060020a0360043581169060243516610ebc565b34801561049657600080fd5b50610283610f6d565b3480156104ab57600080fd5b50610283600160a060020a0360043581169060243516610f73565b3480156104d257600080fd5b50610242600160a060020a0360043516610f9e565b3480156104f357600080fd5b506102836110f2565b34801561050857600080fd5b506102836110f8565b34801561051d57600080fd5b50610192600160a060020a03600435166110fe565b34801561053e57600080fd5b50610192602460048035828101929101359035611150565b600d54600090819081908190819081908190819060ff161561057757600080fd5b600a5460009850889750879650662386f26fc10000955066b1a2bc2ec500009450670de0b6b3a7640000935083906105b5903463ffffffff6111a916565b8115156105be57fe5b049750339150662386f26fc1000034101580156105dc575060055442105b80156105e9575060075442105b80156105f6575060065442105b156106545784341015801561060a57508334105b1561061e576064600f89025b04955061064f565b83341015801561062d57508234105b1561063d57606460148902610616565b34831161064f576064601989025b0495505b6106c1565b662386f26fc10000341015801561066c575060055442105b8015610679575060075442115b8015610686575060065442105b156106bc5783341015801561069a57508234105b156106aa576064600f8902610616565b34831161064f5760646014890261064b565b600095505b87860196508715156107635750600160a060020a03811660009081526004602052604090205468056bc75e2d631000009060ff161580156107065750600b54600c5411155b1561074a5761071582826111d2565b50600160a060020a0382166000908152600460205260409020805460ff19166001908117909155600c8054909101905561075e565b662386f26fc1000034101561075e57600080fd5b6107ea565b60008811801561077a5750662386f26fc100003410155b156107d657600554421015801561079357506007544210155b80156107a0575060065442105b156107b5576107af82896111d2565b5061075e565b3485116107c6576107af82886111d2565b6107d082896111d2565b506107ea565b662386f26fc100003410156107ea57600080fd5b6008546009541061080357600d805460ff191660011790555b5050505050505050565b60408051808201909152600d81527f457468657265756d204361726400000000000000000000000000000000000000602082015281565b600081158015906108775750336000908152600360209081526040808320600160a060020a038716845290915290205415155b15610884575060006108e6565b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b600154600090600160a060020a0316331461090657600080fd5b600854610919908363ffffffff6112ae16565b60088190556040805184815290519192507f90f1f758f0e2b40929b1fd48df7ebe10afc272a362e1f0d63a90b8b4715d799f919081900360200190a15050565b60085481565b60006060606436101561096e57fe5b600160a060020a038416151561098357600080fd5b600160a060020a0385166000908152600260205260409020548311156109a857600080fd5b600160a060020a03851660009081526003602090815260408083203384529091529020548311156109d857600080fd5b600160a060020a038516600090815260026020526040902054610a01908463ffffffff6112bb16565b600160a060020a0386166000908152600260209081526040808320939093556003815282822033835290522054610a3e908463ffffffff6112bb16565b600160a060020a038087166000908152600360209081526040808320338452825280832094909455918716815260029091522054610a82908463ffffffff6112ae16565b600160a060020a0380861660008181526002602090815260409182902094909455805187815290519193928916926000805160206113f883398151915292918290030190a3506001949350505050565b6001546000908190600160a060020a03163314610aee57600080fd5b50506001546040513091823191600160a060020a03909116906108fc8315029083906000818181858888f19350505050158015610b2f573d6000803e3d6000fd5b505050565b60055481565b601281565b600154600090600160a060020a03163314610b5957600080fd5b506001546040518291600160a060020a03169082156108fc029083906000818181858888f19350505050158015610b2f573d6000803e3d6000fd5b600154600090600160a060020a03163314610bae57600080fd5b33600090815260026020526040902054821115610bca57600080fd5b5033600081815260026020526040902054610beb908363ffffffff6112bb16565b600160a060020a038216600090815260026020526040902055600854610c17908363ffffffff6112bb16565b600855600954610c2d908363ffffffff6112bb16565b600955604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b60065481565b600160a060020a031660009081526002602052604090205490565b662386f26fc1000081565b600154600160a060020a03163314610cb657600080fd5b610cc082826112cd565b5050565b60075481565b600c5481565b60408051808201909152600581527f4554484344000000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610d2157600080fd5b600d5460ff1615610d3157600080fd5b600d805460ff191660011790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b600154600160a060020a03163314610d8457600080fd5b600a8190556040805182815290517ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0039181900360200190a150565b600060406044361015610dce57fe5b600160a060020a0384161515610de357600080fd5b33600090815260026020526040902054831115610dff57600080fd5b33600090815260026020526040902054610e1f908463ffffffff6112bb16565b3360009081526002602052604080822092909255600160a060020a03861681522054610e51908463ffffffff6112ae16565b600160a060020a0385166000818152600260209081526040918290209390935580518681529051919233926000805160206113f88339815191529281900390910190a35060019392505050565b60046020526000908152604090205460ff1681565b600d5460ff1681565b600080600084915081600160a060020a03166370a08231856040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610f3857600080fd5b505af1158015610f4c573d6000803e3d6000fd5b505050506040513d6020811015610f6257600080fd5b505195945050505050565b600a5481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60015460009081908190600160a060020a03163314610fbc57600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561102057600080fd5b505af1158015611034573d6000803e3d6000fd5b505050506040513d602081101561104a57600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b1580156110be57600080fd5b505af11580156110d2573d6000803e3d6000fd5b505050506040513d60208110156110e857600080fd5b5051949350505050565b600b5481565b60095481565b600154600160a060020a0316331461111557600080fd5b600160a060020a0381161561114d576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b600154600090600160a060020a0316331461116a57600080fd5b5060005b828110156111a35761119b84848381811061118557fe5b90506020020135600160a060020a0316836112cd565b60010161116e565b50505050565b60008215156111ba575060006108e6565b508181028183828115156111ca57fe5b04146108e657fe5b600d5460009060ff16156111e557600080fd5b6009546111f8908363ffffffff6112ae16565b600955600160a060020a038316600090815260026020526040902054611224908363ffffffff6112ae16565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000916000805160206113f88339815191529181900360200190a350600192915050565b818101828110156108e657fe5b6000828211156112c757fe5b50900390565b600154600160a060020a031633146112e457600080fd5b600081116112f157600080fd5b6008546009541061130157600080fd5b600160a060020a03821660009081526002602052604090205461132a908263ffffffff6112ae16565b600160a060020a038316600090815260026020526040902055600954611356908263ffffffff6112ae16565b60098190556008541161137157600d805460ff191660011790555b600160a060020a0382166000818152600260209081526040918290205482518581529182015281517fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272929181900390910190a2604080518281529051600160a060020a038416916000916000805160206113f88339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820dfa0d3de00d99b7dba2773453157c0fe2256d37505fc4246eb724bcd94e384b10029

Deployed Bytecode

0x60806040526004361061018a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610194578063095ea7b31461021e5780631003e2d21461025657806318160ddd1461026e57806323b872dd1461029557806323e8aafa146102bf57806329dcb0cf146102d4578063313ce567146102e957806333ac2438146102fe57806342966c6814610316578063532b581c1461032e57806370a082311461034357806374ff2324146103645780637809231c14610379578063836e81801461039d57806383afd6da146103b257806395d89b41146103c75780639b1cbccc146103dc5780639ea407be146103f1578063a9059cbb14610409578063aa6ca8081461018a578063b449c24d1461042d578063c108d5421461044e578063c489744b14610463578063cbdd69b51461048a578063dd62ed3e1461049f578063e58fc54c146104c6578063e6a092f5146104e7578063efca2eed146104fc578063f2fde38b14610511578063f3ccb40114610532575b610192610556565b005b3480156101a057600080fd5b506101a961080d565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e35781810151838201526020016101cb565b50505050905090810190601f1680156102105780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022a57600080fd5b50610242600160a060020a0360043516602435610844565b604080519115158252519081900360200190f35b34801561026257600080fd5b506101926004356108ec565b34801561027a57600080fd5b50610283610959565b60408051918252519081900360200190f35b3480156102a157600080fd5b50610242600160a060020a036004358116906024351660443561095f565b3480156102cb57600080fd5b50610192610ad2565b3480156102e057600080fd5b50610283610b34565b3480156102f557600080fd5b50610283610b3a565b34801561030a57600080fd5b50610192600435610b3f565b34801561032257600080fd5b50610192600435610b94565b34801561033a57600080fd5b50610283610c73565b34801561034f57600080fd5b50610283600160a060020a0360043516610c79565b34801561037057600080fd5b50610283610c94565b34801561038557600080fd5b50610192600160a060020a0360043516602435610c9f565b3480156103a957600080fd5b50610283610cc4565b3480156103be57600080fd5b50610283610cca565b3480156103d357600080fd5b506101a9610cd0565b3480156103e857600080fd5b50610242610d07565b3480156103fd57600080fd5b50610192600435610d6d565b34801561041557600080fd5b50610242600160a060020a0360043516602435610dbf565b34801561043957600080fd5b50610242600160a060020a0360043516610e9e565b34801561045a57600080fd5b50610242610eb3565b34801561046f57600080fd5b50610283600160a060020a0360043581169060243516610ebc565b34801561049657600080fd5b50610283610f6d565b3480156104ab57600080fd5b50610283600160a060020a0360043581169060243516610f73565b3480156104d257600080fd5b50610242600160a060020a0360043516610f9e565b3480156104f357600080fd5b506102836110f2565b34801561050857600080fd5b506102836110f8565b34801561051d57600080fd5b50610192600160a060020a03600435166110fe565b34801561053e57600080fd5b50610192602460048035828101929101359035611150565b600d54600090819081908190819081908190819060ff161561057757600080fd5b600a5460009850889750879650662386f26fc10000955066b1a2bc2ec500009450670de0b6b3a7640000935083906105b5903463ffffffff6111a916565b8115156105be57fe5b049750339150662386f26fc1000034101580156105dc575060055442105b80156105e9575060075442105b80156105f6575060065442105b156106545784341015801561060a57508334105b1561061e576064600f89025b04955061064f565b83341015801561062d57508234105b1561063d57606460148902610616565b34831161064f576064601989025b0495505b6106c1565b662386f26fc10000341015801561066c575060055442105b8015610679575060075442115b8015610686575060065442105b156106bc5783341015801561069a57508234105b156106aa576064600f8902610616565b34831161064f5760646014890261064b565b600095505b87860196508715156107635750600160a060020a03811660009081526004602052604090205468056bc75e2d631000009060ff161580156107065750600b54600c5411155b1561074a5761071582826111d2565b50600160a060020a0382166000908152600460205260409020805460ff19166001908117909155600c8054909101905561075e565b662386f26fc1000034101561075e57600080fd5b6107ea565b60008811801561077a5750662386f26fc100003410155b156107d657600554421015801561079357506007544210155b80156107a0575060065442105b156107b5576107af82896111d2565b5061075e565b3485116107c6576107af82886111d2565b6107d082896111d2565b506107ea565b662386f26fc100003410156107ea57600080fd5b6008546009541061080357600d805460ff191660011790555b5050505050505050565b60408051808201909152600d81527f457468657265756d204361726400000000000000000000000000000000000000602082015281565b600081158015906108775750336000908152600360209081526040808320600160a060020a038716845290915290205415155b15610884575060006108e6565b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b600154600090600160a060020a0316331461090657600080fd5b600854610919908363ffffffff6112ae16565b60088190556040805184815290519192507f90f1f758f0e2b40929b1fd48df7ebe10afc272a362e1f0d63a90b8b4715d799f919081900360200190a15050565b60085481565b60006060606436101561096e57fe5b600160a060020a038416151561098357600080fd5b600160a060020a0385166000908152600260205260409020548311156109a857600080fd5b600160a060020a03851660009081526003602090815260408083203384529091529020548311156109d857600080fd5b600160a060020a038516600090815260026020526040902054610a01908463ffffffff6112bb16565b600160a060020a0386166000908152600260209081526040808320939093556003815282822033835290522054610a3e908463ffffffff6112bb16565b600160a060020a038087166000908152600360209081526040808320338452825280832094909455918716815260029091522054610a82908463ffffffff6112ae16565b600160a060020a0380861660008181526002602090815260409182902094909455805187815290519193928916926000805160206113f883398151915292918290030190a3506001949350505050565b6001546000908190600160a060020a03163314610aee57600080fd5b50506001546040513091823191600160a060020a03909116906108fc8315029083906000818181858888f19350505050158015610b2f573d6000803e3d6000fd5b505050565b60055481565b601281565b600154600090600160a060020a03163314610b5957600080fd5b506001546040518291600160a060020a03169082156108fc029083906000818181858888f19350505050158015610b2f573d6000803e3d6000fd5b600154600090600160a060020a03163314610bae57600080fd5b33600090815260026020526040902054821115610bca57600080fd5b5033600081815260026020526040902054610beb908363ffffffff6112bb16565b600160a060020a038216600090815260026020526040902055600854610c17908363ffffffff6112bb16565b600855600954610c2d908363ffffffff6112bb16565b600955604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b60065481565b600160a060020a031660009081526002602052604090205490565b662386f26fc1000081565b600154600160a060020a03163314610cb657600080fd5b610cc082826112cd565b5050565b60075481565b600c5481565b60408051808201909152600581527f4554484344000000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610d2157600080fd5b600d5460ff1615610d3157600080fd5b600d805460ff191660011790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b600154600160a060020a03163314610d8457600080fd5b600a8190556040805182815290517ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0039181900360200190a150565b600060406044361015610dce57fe5b600160a060020a0384161515610de357600080fd5b33600090815260026020526040902054831115610dff57600080fd5b33600090815260026020526040902054610e1f908463ffffffff6112bb16565b3360009081526002602052604080822092909255600160a060020a03861681522054610e51908463ffffffff6112ae16565b600160a060020a0385166000818152600260209081526040918290209390935580518681529051919233926000805160206113f88339815191529281900390910190a35060019392505050565b60046020526000908152604090205460ff1681565b600d5460ff1681565b600080600084915081600160a060020a03166370a08231856040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610f3857600080fd5b505af1158015610f4c573d6000803e3d6000fd5b505050506040513d6020811015610f6257600080fd5b505195945050505050565b600a5481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60015460009081908190600160a060020a03163314610fbc57600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561102057600080fd5b505af1158015611034573d6000803e3d6000fd5b505050506040513d602081101561104a57600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b1580156110be57600080fd5b505af11580156110d2573d6000803e3d6000fd5b505050506040513d60208110156110e857600080fd5b5051949350505050565b600b5481565b60095481565b600154600160a060020a0316331461111557600080fd5b600160a060020a0381161561114d576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b600154600090600160a060020a0316331461116a57600080fd5b5060005b828110156111a35761119b84848381811061118557fe5b90506020020135600160a060020a0316836112cd565b60010161116e565b50505050565b60008215156111ba575060006108e6565b508181028183828115156111ca57fe5b04146108e657fe5b600d5460009060ff16156111e557600080fd5b6009546111f8908363ffffffff6112ae16565b600955600160a060020a038316600090815260026020526040902054611224908363ffffffff6112ae16565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000916000805160206113f88339815191529181900360200190a350600192915050565b818101828110156108e657fe5b6000828211156112c757fe5b50900390565b600154600160a060020a031633146112e457600080fd5b600081116112f157600080fd5b6008546009541061130157600080fd5b600160a060020a03821660009081526002602052604090205461132a908263ffffffff6112ae16565b600160a060020a038316600090815260026020526040902055600954611356908263ffffffff6112ae16565b60098190556008541161137157600d805460ff191660011790555b600160a060020a0382166000818152600260209081526040918290205482518581529182015281517fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272929181900390910190a2604080518281529051600160a060020a038416916000916000805160206113f88339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820dfa0d3de00d99b7dba2773453157c0fe2256d37505fc4246eb724bcd94e384b10029

Deployed Bytecode Sourcemap

2128:8762:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5652:11;:9;:11::i;:::-;2128:8762;2398:45;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2398:45: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;2398:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9080:296;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9080:296:0;-1:-1:-1;;;;;9080:296:0;;;;;;;;;;;;;;;;;;;;;;;;;10443:166;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10443:166:0;;;;;2679:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2679:40:0;;;;;;;;;;;;;;;;;;;;8531:537;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8531:537:0;-1:-1:-1;;;;;8531:537:0;;;;;;;;;;;;9761:172;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9761:172:0;;;;2537:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2537:40:0;;;;2496:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2496:34:0;;;;9941:139;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9941:139:0;;;;;10088:343;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10088:343:0;;;;;2584:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2584:38:0;;;;7884:111;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7884:111:0;-1:-1:-1;;;;;7884:111:0;;;;;2764:54;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2764:54:0;;;;5069:142;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5069:142:0;-1:-1:-1;;;;;5069:142:0;;;;;;;2629:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2629:37:0;;;;2924:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2924:29:0;;;;2450:39;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2450:39:0;;;;3993:170;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3993:170:0;;;;5423;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5423:170:0;;;;;8117:402;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8117:402:0;-1:-1:-1;;;;;8117:402:0;;;;;;;2348:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2348:40:0;-1:-1:-1;;;;;2348:40:0;;;;;3454;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3454:40:0;;;;9538:211;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9538:211:0;-1:-1:-1;;;;;9538:211:0;;;;;;;;;;2839:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2839:37:0;;;;9388:138;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9388:138:0;-1:-1:-1;;;;;9388:138:0;;;;;;;;;;10627:260;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10627:260:0;-1:-1:-1;;;;;10627:260:0;;;;;2889:27;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2889:27:0;;;;2726:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2726:31:0;;;;3834:151;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3834:151:0;-1:-1:-1;;;;;3834:151:0;;;;;5219:196;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5219:196:0;;;;;;;;;;;;;;;;5680:2192;3547:20;;5737:14;;;;;;;;;;;;;;;;3547:20;;3546:21;3538:30;;;;;;5966:12;;5754:1;;-1:-1:-1;5754:1:0;;-1:-1:-1;5754:1:0;;-1:-1:-1;5848:13:0;;-1:-1:-1;5893:12:0;;-1:-1:-1;5937:7:0;;-1:-1:-1;5937:7:0;;5966:27;;5983:9;5966:27;:16;:27;:::i;:::-;:37;;;;;;;;5957:46;;6041:10;6022:29;;2805:13;6068:9;:27;;:45;;;;;6105:8;;6099:3;:14;6068:45;:61;;;;;6123:6;;6117:3;:12;6068:61;:77;;;;;6139:6;;6133:3;:12;6068:77;6064:819;;;6178:10;6165:9;:23;;:49;;;;;6204:10;6192:9;:22;6165:49;6162:338;;;6261:3;6256:2;6247:11;;:17;;6234:30;;6162:338;;;6301:10;6288:9;:23;;:49;;;;;6327:10;6315:9;:22;6288:49;6285:215;;;6384:3;6379:2;6370:11;;:17;;6285:215;6411:9;:23;-1:-1:-1;6408:92:0;;6481:3;6476:2;6467:11;;:17;;6454:30;;6408:92;6064:819;;;2805:13;6519:9;:27;;:45;;;;;6556:8;;6550:3;:14;6519:45;:61;;;;;6574:6;;6568:3;:12;6519:61;:77;;;;;6590:6;;6584:3;:12;6519:77;6516:367;;;6628:10;6615:9;:23;;:49;;;;;6654:10;6642:9;:22;6615:49;6612:215;;;6711:3;6706:2;6697:11;;:17;;6612:215;6738:9;:23;-1:-1:-1;6735:92:0;;6808:3;6803:2;6794:11;;:17;;6516:367;6870:1;6857:14;;6516:367;6903:19;;;;-1:-1:-1;6947:11:0;;6943:819;;;-1:-1:-1;;;;;;7018:17:0;;;;;;:7;:17;;;;;;6993:6;;7018:17;;:26;;;:58;;;7065:11;;7048:13;;:28;;7018:58;7014:278;;;7098:24;7104:8;7114:7;7098:5;:24::i;:::-;-1:-1:-1;;;;;;7141:17:0;;;;;;:7;:17;;;;;:24;;-1:-1:-1;;7141:24:0;7161:4;7141:24;;;;;;7184:13;:15;;;;;;;7014:278;;;2805:13;7247:9;:27;;7238:38;;;;;;6943:819;;;7320:1;7311:6;:10;:41;;;;;2805:13;7325:9;:27;;7311:41;7308:454;;;7379:8;;7372:3;:15;;:32;;;;;7398:6;;7391:3;:13;;7372:32;:48;;;;;7414:6;;7408:3;:12;7372:48;7368:314;;;7440:23;7446:8;7456:6;7440:5;:23::i;:::-;;7368:314;;;7505:9;:23;-1:-1:-1;7502:162:0;;7552:22;7558:8;7568:5;7552;:22::i;7502:162::-;7621:23;7627:8;7637:6;7621:5;:23::i;:::-;;7308:454;;;2805:13;7721:9;:27;;7712:38;;;;;;7798:11;;7778:16;;:31;7774:91;;7826:20;:27;;-1:-1:-1;;7826:27:0;7849:4;7826:27;;;7774:91;5680:2192;;;;;;;;:::o;2398:45::-;;;;;;;;;;;;;;;;;;;:::o;9080:296::-;9147:12;9176:11;;;;;:49;;-1:-1:-1;9199:10:0;9191:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9191:29:0;;;;;;;;;;:34;;9176:49;9172:72;;;-1:-1:-1;9236:5:0;9229:12;;9172:72;9262:10;9254:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9254:29:0;;;;;;;;;;;;:38;;;9308;;;;;;;9254:29;;9262:10;9308:38;;;;;;;;;;;-1:-1:-1;9364:4:0;9080:296;;;;;:::o;10443:166::-;3654:5;;10500:15;;-1:-1:-1;;;;;3654:5:0;3640:10;:19;3632:28;;;;;;10518:11;;:23;;10534:6;10518:23;:15;:23;:::i;:::-;10552:11;:21;;;10590:11;;;;;;;;10500:41;;-1:-1:-1;10590:11:0;;;;;;;;;;10443:166;;:::o;2679:40::-;;;;:::o;8531:537::-;8638:12;8614:6;8076:8;8057;:27;;8050:35;;;;-1:-1:-1;;;;;8673:17:0;;;;8665:26;;;;;;-1:-1:-1;;;;;8721:15:0;;;;;;:8;:15;;;;;;8710:26;;;8702:35;;;;;;-1:-1:-1;;;;;8767:14:0;;;;;;:7;:14;;;;;;;;8782:10;8767:26;;;;;;;;8756:37;;;8748:46;;;;;;-1:-1:-1;;;;;8833:15:0;;;;;;:8;:15;;;;;;:28;;8853:7;8833:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;8815:15:0;;;;;;:8;:15;;;;;;;;:46;;;;8901:7;:14;;;;;8916:10;8901:26;;;;;;:39;;8932:7;8901:39;:30;:39;:::i;:::-;-1:-1:-1;;;;;8872:14:0;;;;;;;:7;:14;;;;;;;;8887:10;8872:26;;;;;;;:68;;;;8967:13;;;;;:8;:13;;;;;:26;;8985:7;8967:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;8951:13:0;;;;;;;:8;:13;;;;;;;;;:42;;;;9009:29;;;;;;;8951:13;;9009:29;;;;-1:-1:-1;;;;;;;;;;;9009:29:0;;;;;;;;-1:-1:-1;9056:4:0;;8531:537;-1:-1:-1;;;;8531:537:0:o;9761:172::-;3654:5;;9811:17;;;;-1:-1:-1;;;;;3654:5:0;3640:10;:19;3632:28;;;;;;-1:-1:-1;;9897:5:0;;:28;;9831:4;;9869:17;;;-1:-1:-1;;;;;9897:5:0;;;;:28;;;;;9869:17;;9897:5;:28;:5;:28;9869:17;9897:5;:28;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;9897:28:0;9761:172;;:::o;2537:40::-;;;;:::o;2496:34::-;2528:2;2496:34;:::o;9941:139::-;3654:5;;10005:18;;-1:-1:-1;;;;;3654:5:0;3640:10;:19;3632:28;;;;;;-1:-1:-1;10046:5:0;;:26;;10026:9;;-1:-1:-1;;;;;10046:5:0;;:26;;;;;10026:9;;10046:5;:26;:5;:26;10026:9;10046:5;:26;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;10088:343:0;3654:5;;10196:14;;-1:-1:-1;;;;;3654:5:0;3640:10;:19;3632:28;;;;;;10173:10;10164:20;;;;:8;:20;;;;;;10154:30;;;10146:39;;;;;;-1:-1:-1;10213:10:0;10253:16;;;;:8;:16;;;;;;:28;;10274:6;10253:28;:20;:28;:::i;:::-;-1:-1:-1;;;;;10234:16:0;;;;;;:8;:16;;;;;:47;10306:11;;:23;;10322:6;10306:23;:15;:23;:::i;:::-;10292:11;:37;10359:16;;:28;;10380:6;10359:28;:20;:28;:::i;:::-;10340:16;:47;10403:20;;;;;;;;-1:-1:-1;;;;;10403:20:0;;;;;;;;;;;;;10088:343;;:::o;2584:38::-;;;;:::o;7884:111::-;-1:-1:-1;;;;;7971:16:0;7944:7;7971:16;;;:8;:16;;;;;;;7884:111::o;2764:54::-;2805:13;2764:54;:::o;5069:142::-;3654:5;;-1:-1:-1;;;;;3654:5:0;3640:10;:19;3632:28;;;;;;5170:33;5181:12;5195:7;5170:10;:33::i;:::-;5069:142;;:::o;2629:37::-;;;;:::o;2924:29::-;;;;:::o;2450:39::-;;;;;;;;;;;;;;;;;;;:::o;3993:170::-;3654:5;;4058:4;;-1:-1:-1;;;;;3654:5:0;3640:10;:19;3632:28;;;;;;3547:20;;;;3546:21;3538:30;;;;;;4075:20;:27;;-1:-1:-1;;4075:27:0;4098:4;4075:27;;;4118:15;;;;4075:20;;4118:15;-1:-1:-1;4151:4:0;3993:170;:::o;5423:::-;3654:5;;-1:-1:-1;;;;;3654:5:0;3640:10;:19;3632:28;;;;;;5507:12;:28;;;5551:34;;;;;;;;;;;;;;;;;5423:170;:::o;8117:402::-;8205:12;8181:6;8076:8;8057;:27;;8050:35;;;;-1:-1:-1;;;;;8240:17:0;;;;8232:26;;;;;;8297:10;8288:20;;;;:8;:20;;;;;;8277:31;;;8269:40;;;;;;8362:10;8353:20;;;;:8;:20;;;;;;:33;;8378:7;8353:33;:24;:33;:::i;:::-;8339:10;8330:20;;;;:8;:20;;;;;;:56;;;;-1:-1:-1;;;;;8413:13:0;;;;;;:26;;8431:7;8413:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;8397:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;8455:34;;;;;;;8397:13;;8464:10;;-1:-1:-1;;;;;;;;;;;8455:34:0;;;;;;;;;-1:-1:-1;8507:4:0;;8117:402;-1:-1:-1;;;8117:402:0:o;2348:40::-;;;;;;;;;;;;;;;:::o;3454:::-;;;;;;:::o;9538:211::-;9623:4;9639:14;9693:8;9669:12;9639:43;;9704:1;-1:-1:-1;;;;;9704:11:0;;9716:3;9704:16;;;;;;;;;;;;;-1:-1:-1;;;;;9704:16:0;-1:-1:-1;;;;;9704:16:0;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9704:16:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;9704:16:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9704:16:0;;9538:211;-1:-1:-1;;;;;9538:211:0:o;2839:37::-;;;;:::o;9388:138::-;-1:-1:-1;;;;;9493:15:0;;;9466:7;9493:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;9388:138::o;10627:260::-;3654:5;;10708:4;;;;;;-1:-1:-1;;;;;3654:5:0;3640:10;:19;3632:28;;;;;;10802:30;;;;;;10826:4;10802:30;;;;;;10759:14;;-1:-1:-1;;;;;;10802:15:0;;;;;:30;;;;;;;;;;;;;;-1:-1:-1;10802:15:0;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;10802:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10802:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10802:30:0;10865:5;;10850:29;;;;;;-1:-1:-1;;;;;10865:5:0;;;10850:29;;;;;;;;;;;;10802:30;;-1:-1:-1;10850:14:0;;;;;;:29;;;;;10802:30;;10850:29;;;;;;;;10865:5;10850:14;:29;;;5:2:-1;;;;30:1;27;20:12;5:2;10850:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10850:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10850:29:0;;10627:260;-1:-1:-1;;;;10627:260:0:o;2889:27::-;;;;:::o;2726:31::-;;;;:::o;3834:151::-;3654:5;;-1:-1:-1;;;;;3654:5:0;3640:10;:19;3632:28;;;;;;-1:-1:-1;;;;;3911:22:0;;;3907:71;;3950:5;:16;;-1:-1:-1;;3950:16:0;-1:-1:-1;;;;;3950:16:0;;;;;3907:71;3834:151;:::o;5219:196::-;3654:5;;5333:6;;-1:-1:-1;;;;;3654:5:0;3640:10;:19;3632:28;;;;;;-1:-1:-1;5342:1:0;5328:79;5345:21;;;5328:79;;;5373:34;5384:10;;5395:1;5384:13;;;;;;;;;;;;;-1:-1:-1;;;;;5384:13:0;5399:7;5373:10;:34::i;:::-;5368:3;;5328:79;;;5219:196;;;;:::o;221:202::-;279:9;305:6;;301:47;;;-1:-1:-1;335:1:0;328:8;;301:47;-1:-1:-1;362:5:0;;;366:1;362;:5;385;;;;;;;;:10;378:18;;;4175:314;3547:20;;4246:4;;3547:20;;3546:21;3538:30;;;;;;4282:16;;:29;;4303:7;4282:29;:20;:29;:::i;:::-;4263:16;:48;-1:-1:-1;;;;;4346:13:0;;;;;;:8;:13;;;;;;:26;;4364:7;4346:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;4330:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;4388:19;;;;;;;4330:13;;4388:19;;;;;;;;;4423:34;;;;;;;;-1:-1:-1;;;;;4423:34:0;;;4440:1;;-1:-1:-1;;;;;;;;;;;4423:34:0;;;;;;;;-1:-1:-1;4477:4:0;4175:314;;;;:::o;1136:141::-;1220:5;;;1243:6;;;;1236:14;;;938:123;996:7;1023:6;;;;1016:14;;;;-1:-1:-1;1048:5:0;;;938:123::o;4501:556::-;3654:5;;-1:-1:-1;;;;;3654:5:0;3640:10;:19;3632:28;;;;;;4608:1;4598:11;;4589:22;;;;;;4656:11;;4637:16;;:30;4628:41;;;;;;-1:-1:-1;;;;;4705:22:0;;;;;;:8;:22;;;;;;:35;;4732:7;4705:35;:26;:35;:::i;:::-;-1:-1:-1;;;;;4680:22:0;;;;;;:8;:22;;;;;:60;4770:16;;:29;;4791:7;4770:29;:20;:29;:::i;:::-;4751:16;:48;;;4836:11;;-1:-1:-1;4812:91:0;;4864:20;:27;;-1:-1:-1;;4864:27:0;4887:4;4864:27;;;4812:91;-1:-1:-1;;;;;4936:54:0;;4967:22;;;;:8;:22;;;;;;;;;;4936:54;;;;;;;;;;;;;;;;;;;;;;5006:43;;;;;;;;-1:-1:-1;;;;;5006:43:0;;;5023:1;;-1:-1:-1;;;;;;;;;;;5006:43:0;;;;;;;;4501:556;;:::o

Swarm Source

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