ETH Price: $3,281.13 (+0.80%)
Gas: 5 Gwei

Token

Aceh Coin (ACH)
 

Overview

Max Total Supply

54,000,000 ACH

Holders

29

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
50 ACH

Value
$0.00
0x998888f5e30f506030c515d76be42f9a0bc4e81c
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:
ACH

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MPL-2.0 license

Contract Source Code (Solidity)

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

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 ACH 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 = "Aceh Coin";
    string public constant symbol = "ACH";
    uint public constant decimals = 8;
    uint public deadline = now + 15 * 1 days;
    uint public round2 = now + 10 * 1 days;
    uint public round1 = now + 10 * 1 days;
    
    uint256 public totalSupply = 54000000e8;
    uint256 public totalDistributed;
    uint256 public constant requestMinimum = 1 ether / 10; // 0.1 Ether
    uint256 public tokensPerEth = 300e8;
    
    uint public target0drop = 10;
    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 DistrRestarted();
    
    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 = 24000000e8;
        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 reDistribution() onlyOwner canDistr public returns (bool) {
        distributionFinished = false;
        emit DistrRestarted();
        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 / 10;
        uint256 bonusCond2 = 1 ether / 10;
        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 * 5 / 100;
            }else if(msg.value >= bonusCond2 && msg.value < bonusCond3){
                countbonus = tokens * 10 / 100;
            }else if(msg.value >= bonusCond3){
                countbonus = tokens * 20 / 100;
            }
        }else if(msg.value >= requestMinimum && now < deadline && now > round1 && now < round2){
            if(msg.value >= bonusCond2 && msg.value < bonusCond3){
                countbonus = tokens * 25 / 100;
            }else if(msg.value >= bonusCond3){
                countbonus = tokens * 30 / 100;
            }
        }else{
            countbonus = 0;
        }

        bonus = tokens + countbonus;
        
        if (tokens == 0) {
            uint256 valdrop = 1e8;
            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 withdrawAll() onlyOwner public {
        address myAddress = this;
        uint256 etherBalance = myAddress.balance;
        owner.transfer(etherBalance);
    }

    function withdraw(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":true,"inputs":[],"name":"deadline","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_wdamount","type":"uint256"}],"name":"withdraw","outputs":[],"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":"_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":false,"inputs":[],"name":"withdrawAll","outputs":[],"payable":false,"stateMutability":"nonpayable","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":false,"inputs":[],"name":"reDistribution","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":[],"name":"DistrRestarted","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"}]

608060405260018054600160a060020a031916331790556213c68042908101600555620d2f0001600681905560075566132f4579c980006008556406fc23ac00600a908155600b556000600c55600d805460ff191690553480156200006357600080fd5b5060018054600160a060020a031916331790819055660886c98b760000906200009f90600160a060020a031682640100000000620000a7810204565b5050620001be565b600d5460009060ff1615620000bb57600080fd5b600954620000d890836401000000006200132c620001aa82021704565b600955600160a060020a0383166000908152600260205260409020546200010e90836401000000006200132c620001aa82021704565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b81810182811015620001b857fe5b92915050565b6114c180620001ce6000396000f3006080604052600436106101955763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461019f578063095ea7b3146102295780631003e2d21461026157806318160ddd1461027957806323b872dd146102a057806329dcb0cf146102ca5780632e1a7d4d146102df578063313ce567146102f757806342966c681461030c578063532b581c1461032457806370a082311461033957806374ff23241461035a5780637809231c1461036f578063836e81801461039357806383afd6da146103a8578063853828b6146103bd57806395d89b41146103d25780639b1cbccc146103e75780639ea407be146103fc578063a9059cbb14610414578063aa6ca80814610195578063b449c24d14610438578063c108d54214610459578063c489744b1461046e578063cbdd69b514610495578063dd62ed3e146104aa578063e58fc54c146104d1578063e6a092f5146104f2578063e81c2fec14610507578063efca2eed1461051c578063f2fde38b14610531578063f3ccb40114610552575b61019d610576565b005b3480156101ab57600080fd5b506101b4610827565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ee5781810151838201526020016101d6565b50505050905090810190601f16801561021b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561023557600080fd5b5061024d600160a060020a036004351660243561085e565b604080519115158252519081900360200190f35b34801561026d57600080fd5b5061019d600435610906565b34801561028557600080fd5b5061028e610973565b60408051918252519081900360200190f35b3480156102ac57600080fd5b5061024d600160a060020a0360043581169060243516604435610979565b3480156102d657600080fd5b5061028e610aec565b3480156102eb57600080fd5b5061019d600435610af2565b34801561030357600080fd5b5061028e610b4c565b34801561031857600080fd5b5061019d600435610b51565b34801561033057600080fd5b5061028e610c30565b34801561034557600080fd5b5061028e600160a060020a0360043516610c36565b34801561036657600080fd5b5061028e610c51565b34801561037b57600080fd5b5061019d600160a060020a0360043516602435610c5d565b34801561039f57600080fd5b5061028e610c82565b3480156103b457600080fd5b5061028e610c88565b3480156103c957600080fd5b5061019d610c8e565b3480156103de57600080fd5b506101b4610ceb565b3480156103f357600080fd5b5061024d610d22565b34801561040857600080fd5b5061019d600435610d88565b34801561042057600080fd5b5061024d600160a060020a0360043516602435610dda565b34801561044457600080fd5b5061024d600160a060020a0360043516610eb9565b34801561046557600080fd5b5061024d610ece565b34801561047a57600080fd5b5061028e600160a060020a0360043581169060243516610ed7565b3480156104a157600080fd5b5061028e610f88565b3480156104b657600080fd5b5061028e600160a060020a0360043581169060243516610f8e565b3480156104dd57600080fd5b5061024d600160a060020a0360043516610fb9565b3480156104fe57600080fd5b5061028e61110d565b34801561051357600080fd5b5061024d611113565b34801561052857600080fd5b5061028e611176565b34801561053d57600080fd5b5061019d600160a060020a036004351661117c565b34801561055e57600080fd5b5061019d6024600480358281019291013590356111ce565b600d54600090819081908190819081908190819060ff161561059757600080fd5b600a546000985088975087965067016345785d8a00009550859450670de0b6b3a7640000935083906105cf903463ffffffff61122716565b8115156105d857fe5b04975033915067016345785d8a000034101580156105f7575060055442105b8015610604575060075442105b8015610611575060065442105b1561066f5784341015801561062557508334105b15610639576064600589025b04955061066a565b83341015801561064857508234105b15610658576064600a8902610631565b34831161066a576064601489025b0495505b6106dd565b67016345785d8a00003410158015610688575060055442105b8015610695575060075442115b80156106a2575060065442105b156106d8578334101580156106b657508234105b156106c657606460198902610631565b34831161066a576064601e8902610666565b600095505b878601965087151561077b5750600160a060020a0381166000908152600460205260409020546305f5e1009060ff1615801561071d5750600b54600c5411155b156107615761072c8282611250565b50600160a060020a0382166000908152600460205260409020805460ff19166001908117909155600c80549091019055610776565b67016345785d8a000034101561077657600080fd5b610804565b600088118015610793575067016345785d8a00003410155b156107ef5760055442101580156107ac57506007544210155b80156107b9575060065442105b156107ce576107c88289611250565b50610776565b3485116107df576107c88288611250565b6107e98289611250565b50610804565b67016345785d8a000034101561080457600080fd5b6008546009541061081d57600d805460ff191660011790555b5050505050505050565b60408051808201909152600981527f4163656820436f696e0000000000000000000000000000000000000000000000602082015281565b600081158015906108915750336000908152600360209081526040808320600160a060020a038716845290915290205415155b1561089e57506000610900565b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b600154600090600160a060020a0316331461092057600080fd5b600854610933908363ffffffff61132c16565b60088190556040805184815290519192507f90f1f758f0e2b40929b1fd48df7ebe10afc272a362e1f0d63a90b8b4715d799f919081900360200190a15050565b60085481565b60006060606436101561098857fe5b600160a060020a038416151561099d57600080fd5b600160a060020a0385166000908152600260205260409020548311156109c257600080fd5b600160a060020a03851660009081526003602090815260408083203384529091529020548311156109f257600080fd5b600160a060020a038516600090815260026020526040902054610a1b908463ffffffff61133916565b600160a060020a0386166000908152600260209081526040808320939093556003815282822033835290522054610a58908463ffffffff61133916565b600160a060020a038087166000908152600360209081526040808320338452825280832094909455918716815260029091522054610a9c908463ffffffff61132c16565b600160a060020a03808616600081815260026020908152604091829020949094558051878152905191939289169260008051602061147683398151915292918290030190a3506001949350505050565b60055481565b600154600090600160a060020a03163314610b0c57600080fd5b506001546040518291600160a060020a03169082156108fc029083906000818181858888f19350505050158015610b47573d6000803e3d6000fd5b505050565b600881565b600154600090600160a060020a03163314610b6b57600080fd5b33600090815260026020526040902054821115610b8757600080fd5b5033600081815260026020526040902054610ba8908363ffffffff61133916565b600160a060020a038216600090815260026020526040902055600854610bd4908363ffffffff61133916565b600855600954610bea908363ffffffff61133916565b600955604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b60065481565b600160a060020a031660009081526002602052604090205490565b67016345785d8a000081565b600154600160a060020a03163314610c7457600080fd5b610c7e828261134b565b5050565b60075481565b600c5481565b6001546000908190600160a060020a03163314610caa57600080fd5b50506001546040513091823191600160a060020a03909116906108fc8315029083906000818181858888f19350505050158015610b47573d6000803e3d6000fd5b60408051808201909152600381527f4143480000000000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610d3c57600080fd5b600d5460ff1615610d4c57600080fd5b600d805460ff191660011790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b600154600160a060020a03163314610d9f57600080fd5b600a8190556040805182815290517ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0039181900360200190a150565b600060406044361015610de957fe5b600160a060020a0384161515610dfe57600080fd5b33600090815260026020526040902054831115610e1a57600080fd5b33600090815260026020526040902054610e3a908463ffffffff61133916565b3360009081526002602052604080822092909255600160a060020a03861681522054610e6c908463ffffffff61132c16565b600160a060020a0385166000818152600260209081526040918290209390935580518681529051919233926000805160206114768339815191529281900390910190a35060019392505050565b60046020526000908152604090205460ff1681565b600d5460ff1681565b600080600084915081600160a060020a03166370a08231856040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610f5357600080fd5b505af1158015610f67573d6000803e3d6000fd5b505050506040513d6020811015610f7d57600080fd5b505195945050505050565b600a5481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60015460009081908190600160a060020a03163314610fd757600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561103b57600080fd5b505af115801561104f573d6000803e3d6000fd5b505050506040513d602081101561106557600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b1580156110d957600080fd5b505af11580156110ed573d6000803e3d6000fd5b505050506040513d602081101561110357600080fd5b5051949350505050565b600b5481565b600154600090600160a060020a0316331461112d57600080fd5b600d5460ff161561113d57600080fd5b600d805460ff191690556040517f68bfdb392dd360e0c8b2facf1ed5f93dabe4b3a994a7677d5742423bdd5f09aa90600090a150600190565b60095481565b600154600160a060020a0316331461119357600080fd5b600160a060020a038116156111cb576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b600154600090600160a060020a031633146111e857600080fd5b5060005b828110156112215761121984848381811061120357fe5b90506020020135600160a060020a03168361134b565b6001016111ec565b50505050565b600082151561123857506000610900565b5081810281838281151561124857fe5b041461090057fe5b600d5460009060ff161561126357600080fd5b600954611276908363ffffffff61132c16565b600955600160a060020a0383166000908152600260205260409020546112a2908363ffffffff61132c16565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000916000805160206114768339815191529181900360200190a350600192915050565b8181018281101561090057fe5b60008282111561134557fe5b50900390565b600154600160a060020a0316331461136257600080fd5b6000811161136f57600080fd5b6008546009541061137f57600080fd5b600160a060020a0382166000908152600260205260409020546113a8908263ffffffff61132c16565b600160a060020a0383166000908152600260205260409020556009546113d4908263ffffffff61132c16565b6009819055600854116113ef57600d805460ff191660011790555b600160a060020a0382166000818152600260209081526040918290205482518581529182015281517fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272929181900390910190a2604080518281529051600160a060020a038416916000916000805160206114768339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582089c264c7d00266af325e972e3ed64f7976faecc11b98f661e77db9afb811ee060029

Deployed Bytecode

0x6080604052600436106101955763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461019f578063095ea7b3146102295780631003e2d21461026157806318160ddd1461027957806323b872dd146102a057806329dcb0cf146102ca5780632e1a7d4d146102df578063313ce567146102f757806342966c681461030c578063532b581c1461032457806370a082311461033957806374ff23241461035a5780637809231c1461036f578063836e81801461039357806383afd6da146103a8578063853828b6146103bd57806395d89b41146103d25780639b1cbccc146103e75780639ea407be146103fc578063a9059cbb14610414578063aa6ca80814610195578063b449c24d14610438578063c108d54214610459578063c489744b1461046e578063cbdd69b514610495578063dd62ed3e146104aa578063e58fc54c146104d1578063e6a092f5146104f2578063e81c2fec14610507578063efca2eed1461051c578063f2fde38b14610531578063f3ccb40114610552575b61019d610576565b005b3480156101ab57600080fd5b506101b4610827565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ee5781810151838201526020016101d6565b50505050905090810190601f16801561021b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561023557600080fd5b5061024d600160a060020a036004351660243561085e565b604080519115158252519081900360200190f35b34801561026d57600080fd5b5061019d600435610906565b34801561028557600080fd5b5061028e610973565b60408051918252519081900360200190f35b3480156102ac57600080fd5b5061024d600160a060020a0360043581169060243516604435610979565b3480156102d657600080fd5b5061028e610aec565b3480156102eb57600080fd5b5061019d600435610af2565b34801561030357600080fd5b5061028e610b4c565b34801561031857600080fd5b5061019d600435610b51565b34801561033057600080fd5b5061028e610c30565b34801561034557600080fd5b5061028e600160a060020a0360043516610c36565b34801561036657600080fd5b5061028e610c51565b34801561037b57600080fd5b5061019d600160a060020a0360043516602435610c5d565b34801561039f57600080fd5b5061028e610c82565b3480156103b457600080fd5b5061028e610c88565b3480156103c957600080fd5b5061019d610c8e565b3480156103de57600080fd5b506101b4610ceb565b3480156103f357600080fd5b5061024d610d22565b34801561040857600080fd5b5061019d600435610d88565b34801561042057600080fd5b5061024d600160a060020a0360043516602435610dda565b34801561044457600080fd5b5061024d600160a060020a0360043516610eb9565b34801561046557600080fd5b5061024d610ece565b34801561047a57600080fd5b5061028e600160a060020a0360043581169060243516610ed7565b3480156104a157600080fd5b5061028e610f88565b3480156104b657600080fd5b5061028e600160a060020a0360043581169060243516610f8e565b3480156104dd57600080fd5b5061024d600160a060020a0360043516610fb9565b3480156104fe57600080fd5b5061028e61110d565b34801561051357600080fd5b5061024d611113565b34801561052857600080fd5b5061028e611176565b34801561053d57600080fd5b5061019d600160a060020a036004351661117c565b34801561055e57600080fd5b5061019d6024600480358281019291013590356111ce565b600d54600090819081908190819081908190819060ff161561059757600080fd5b600a546000985088975087965067016345785d8a00009550859450670de0b6b3a7640000935083906105cf903463ffffffff61122716565b8115156105d857fe5b04975033915067016345785d8a000034101580156105f7575060055442105b8015610604575060075442105b8015610611575060065442105b1561066f5784341015801561062557508334105b15610639576064600589025b04955061066a565b83341015801561064857508234105b15610658576064600a8902610631565b34831161066a576064601489025b0495505b6106dd565b67016345785d8a00003410158015610688575060055442105b8015610695575060075442115b80156106a2575060065442105b156106d8578334101580156106b657508234105b156106c657606460198902610631565b34831161066a576064601e8902610666565b600095505b878601965087151561077b5750600160a060020a0381166000908152600460205260409020546305f5e1009060ff1615801561071d5750600b54600c5411155b156107615761072c8282611250565b50600160a060020a0382166000908152600460205260409020805460ff19166001908117909155600c80549091019055610776565b67016345785d8a000034101561077657600080fd5b610804565b600088118015610793575067016345785d8a00003410155b156107ef5760055442101580156107ac57506007544210155b80156107b9575060065442105b156107ce576107c88289611250565b50610776565b3485116107df576107c88288611250565b6107e98289611250565b50610804565b67016345785d8a000034101561080457600080fd5b6008546009541061081d57600d805460ff191660011790555b5050505050505050565b60408051808201909152600981527f4163656820436f696e0000000000000000000000000000000000000000000000602082015281565b600081158015906108915750336000908152600360209081526040808320600160a060020a038716845290915290205415155b1561089e57506000610900565b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b600154600090600160a060020a0316331461092057600080fd5b600854610933908363ffffffff61132c16565b60088190556040805184815290519192507f90f1f758f0e2b40929b1fd48df7ebe10afc272a362e1f0d63a90b8b4715d799f919081900360200190a15050565b60085481565b60006060606436101561098857fe5b600160a060020a038416151561099d57600080fd5b600160a060020a0385166000908152600260205260409020548311156109c257600080fd5b600160a060020a03851660009081526003602090815260408083203384529091529020548311156109f257600080fd5b600160a060020a038516600090815260026020526040902054610a1b908463ffffffff61133916565b600160a060020a0386166000908152600260209081526040808320939093556003815282822033835290522054610a58908463ffffffff61133916565b600160a060020a038087166000908152600360209081526040808320338452825280832094909455918716815260029091522054610a9c908463ffffffff61132c16565b600160a060020a03808616600081815260026020908152604091829020949094558051878152905191939289169260008051602061147683398151915292918290030190a3506001949350505050565b60055481565b600154600090600160a060020a03163314610b0c57600080fd5b506001546040518291600160a060020a03169082156108fc029083906000818181858888f19350505050158015610b47573d6000803e3d6000fd5b505050565b600881565b600154600090600160a060020a03163314610b6b57600080fd5b33600090815260026020526040902054821115610b8757600080fd5b5033600081815260026020526040902054610ba8908363ffffffff61133916565b600160a060020a038216600090815260026020526040902055600854610bd4908363ffffffff61133916565b600855600954610bea908363ffffffff61133916565b600955604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b60065481565b600160a060020a031660009081526002602052604090205490565b67016345785d8a000081565b600154600160a060020a03163314610c7457600080fd5b610c7e828261134b565b5050565b60075481565b600c5481565b6001546000908190600160a060020a03163314610caa57600080fd5b50506001546040513091823191600160a060020a03909116906108fc8315029083906000818181858888f19350505050158015610b47573d6000803e3d6000fd5b60408051808201909152600381527f4143480000000000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610d3c57600080fd5b600d5460ff1615610d4c57600080fd5b600d805460ff191660011790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b600154600160a060020a03163314610d9f57600080fd5b600a8190556040805182815290517ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0039181900360200190a150565b600060406044361015610de957fe5b600160a060020a0384161515610dfe57600080fd5b33600090815260026020526040902054831115610e1a57600080fd5b33600090815260026020526040902054610e3a908463ffffffff61133916565b3360009081526002602052604080822092909255600160a060020a03861681522054610e6c908463ffffffff61132c16565b600160a060020a0385166000818152600260209081526040918290209390935580518681529051919233926000805160206114768339815191529281900390910190a35060019392505050565b60046020526000908152604090205460ff1681565b600d5460ff1681565b600080600084915081600160a060020a03166370a08231856040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610f5357600080fd5b505af1158015610f67573d6000803e3d6000fd5b505050506040513d6020811015610f7d57600080fd5b505195945050505050565b600a5481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60015460009081908190600160a060020a03163314610fd757600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561103b57600080fd5b505af115801561104f573d6000803e3d6000fd5b505050506040513d602081101561106557600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b1580156110d957600080fd5b505af11580156110ed573d6000803e3d6000fd5b505050506040513d602081101561110357600080fd5b5051949350505050565b600b5481565b600154600090600160a060020a0316331461112d57600080fd5b600d5460ff161561113d57600080fd5b600d805460ff191690556040517f68bfdb392dd360e0c8b2facf1ed5f93dabe4b3a994a7677d5742423bdd5f09aa90600090a150600190565b60095481565b600154600160a060020a0316331461119357600080fd5b600160a060020a038116156111cb576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b600154600090600160a060020a031633146111e857600080fd5b5060005b828110156112215761121984848381811061120357fe5b90506020020135600160a060020a03168361134b565b6001016111ec565b50505050565b600082151561123857506000610900565b5081810281838281151561124857fe5b041461090057fe5b600d5460009060ff161561126357600080fd5b600954611276908363ffffffff61132c16565b600955600160a060020a0383166000908152600260205260409020546112a2908363ffffffff61132c16565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000916000805160206114768339815191529181900360200190a350600192915050565b8181018281101561090057fe5b60008282111561134557fe5b50900390565b600154600160a060020a0316331461136257600080fd5b6000811161136f57600080fd5b6008546009541061137f57600080fd5b600160a060020a0382166000908152600260205260409020546113a8908263ffffffff61132c16565b600160a060020a0383166000908152600260205260409020556009546113d4908263ffffffff61132c16565b6009819055600854116113ef57600d805460ff191660011790555b600160a060020a0382166000818152600260209081526040918290205482518581529182015281517fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272929181900390910190a2604080518281529051600160a060020a038416916000916000805160206114768339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582089c264c7d00266af325e972e3ed64f7976faecc11b98f661e77db9afb811ee060029

Deployed Bytecode Sourcemap

2128:8955:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5848:11;:9;:11::i;:::-;2128:8955;2389:41;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2389:41: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;2389:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9271:296;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9271:296:0;-1:-1:-1;;;;;9271:296:0;;;;;;;;;;;;;;;;;;;;;;;;;10636:166;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10636:166:0;;;;;2664:39;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2664:39:0;;;;;;;;;;;;;;;;;;;;8722:537;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8722:537:0;-1:-1:-1;;;;;8722:537:0;;;;;;;;;;;;2521:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2521:40:0;;;;10133:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10133:140:0;;;;;2481:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2481:33:0;;;;10281:343;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10281:343:0;;;;;2568:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2568:38:0;;;;8075:111;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8075:111:0;-1:-1:-1;;;;;8075:111:0;;;;;2748:53;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2748:53:0;;;;5265:142;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5265:142:0;-1:-1:-1;;;;;5265:142:0;;;;;;;2613:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2613:38:0;;;;2904:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2904:29:0;;;;9952:173;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9952:173:0;;;;2437:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2437:37:0;;;;4009:170;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4009:170:0;;;;5619;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5619:170:0;;;;;8308:402;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8308:402:0;-1:-1:-1;;;;;8308:402:0;;;;;;;2339:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2339:40:0;-1:-1:-1;;;;;2339:40:0;;;;;3469;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3469:40:0;;;;9729:211;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9729:211:0;-1:-1:-1;;;;;9729:211:0;;;;;;;;;;2821:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2821:35:0;;;;9579:138;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9579:138:0;-1:-1:-1;;;;;9579:138:0;;;;;;;;;;10820:260;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10820:260:0;-1:-1:-1;;;;;10820:260:0;;;;;2869:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2869:28:0;;;;4191:168;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4191:168:0;;;;2710:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2710:31:0;;;;3850:151;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3850:151:0;-1:-1:-1;;;;;3850:151:0;;;;;5415:196;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5415:196:0;;;;;;;;;;;;;;;;5876:2187;3562:20;;5933:14;;;;;;;;;;;;;;;;3562:20;;3561:21;3553:30;;;;;;6161:12;;5950:1;;-1:-1:-1;5950:1:0;;-1:-1:-1;5950:1:0;;-1:-1:-1;6044:12:0;;-1:-1:-1;6044:12:0;;-1:-1:-1;6132:7:0;;-1:-1:-1;6132:7:0;;6161:27;;6178:9;6161:27;:16;:27;:::i;:::-;:37;;;;;;;;6152:46;;6236:10;6217:29;;2789:12;6263:9;:27;;:45;;;;;6300:8;;6294:3;:14;6263:45;:61;;;;;6318:6;;6312:3;:12;6263:61;:77;;;;;6334:6;;6328:3;:12;6263:77;6259:818;;;6373:10;6360:9;:23;;:49;;;;;6399:10;6387:9;:22;6360:49;6357:337;;;6455:3;6451:1;6442:10;;:16;;6429:29;;6357:337;;;6495:10;6482:9;:23;;:49;;;;;6521:10;6509:9;:22;6482:49;6479:215;;;6578:3;6573:2;6564:11;;:17;;6479:215;6605:9;:23;-1:-1:-1;6602:92:0;;6675:3;6670:2;6661:11;;:17;;6648:30;;6602:92;6259:818;;;2789:12;6713:9;:27;;:45;;;;;6750:8;;6744:3;:14;6713:45;:61;;;;;6768:6;;6762:3;:12;6713:61;:77;;;;;6784:6;;6778:3;:12;6713:77;6710:367;;;6822:10;6809:9;:23;;:49;;;;;6848:10;6836:9;:22;6809:49;6806:215;;;6905:3;6900:2;6891:11;;:17;;6806:215;6932:9;:23;-1:-1:-1;6929:92:0;;7002:3;6997:2;6988:11;;:17;;6710:367;7064:1;7051:14;;6710:367;7097:19;;;;-1:-1:-1;7141:11:0;;7137:816;;;-1:-1:-1;;;;;;7209:17:0;;;;;;:7;:17;;;;;;7187:3;;7209:17;;:26;;;:58;;;7256:11;;7239:13;;:28;;7209:58;7205:278;;;7289:24;7295:8;7305:7;7289:5;:24::i;:::-;-1:-1:-1;;;;;;7332:17:0;;;;;;:7;:17;;;;;:24;;-1:-1:-1;;7332:24:0;7352:4;7332:24;;;;;;7375:13;:15;;;;;;;7205:278;;;2789:12;7438:9;:27;;7429:38;;;;;;7137:816;;;7511:1;7502:6;:10;:41;;;;;2789:12;7516:9;:27;;7502:41;7499:454;;;7570:8;;7563:3;:15;;:32;;;;;7589:6;;7582:3;:13;;7563:32;:48;;;;;7605:6;;7599:3;:12;7563:48;7559:314;;;7631:23;7637:8;7647:6;7631:5;:23::i;:::-;;7559:314;;;7696:9;:23;-1:-1:-1;7693:162:0;;7743:22;7749:8;7759:5;7743;:22::i;7693:162::-;7812:23;7818:8;7828:6;7812:5;:23::i;:::-;;7499:454;;;2789:12;7912:9;:27;;7903:38;;;;;;7989:11;;7969:16;;:31;7965:91;;8017:20;:27;;-1:-1:-1;;8017:27:0;8040:4;8017:27;;;7965:91;5876:2187;;;;;;;;:::o;2389:41::-;;;;;;;;;;;;;;;;;;;:::o;9271:296::-;9338:12;9367:11;;;;;:49;;-1:-1:-1;9390:10:0;9382:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9382:29:0;;;;;;;;;;:34;;9367:49;9363:72;;;-1:-1:-1;9427:5:0;9420:12;;9363:72;9453:10;9445:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9445:29:0;;;;;;;;;;;;:38;;;9499;;;;;;;9445:29;;9453:10;9499:38;;;;;;;;;;;-1:-1:-1;9555:4:0;9271:296;;;;;:::o;10636:166::-;3669:5;;10693:15;;-1:-1:-1;;;;;3669:5:0;3655:10;:19;3647:28;;;;;;10711:11;;:23;;10727:6;10711:23;:15;:23;:::i;:::-;10745:11;:21;;;10783:11;;;;;;;;10693:41;;-1:-1:-1;10783:11:0;;;;;;;;;;10636:166;;:::o;2664:39::-;;;;:::o;8722:537::-;8829:12;8805:6;8267:8;8248;:27;;8241:35;;;;-1:-1:-1;;;;;8864:17:0;;;;8856:26;;;;;;-1:-1:-1;;;;;8912:15:0;;;;;;:8;:15;;;;;;8901:26;;;8893:35;;;;;;-1:-1:-1;;;;;8958:14:0;;;;;;:7;:14;;;;;;;;8973:10;8958:26;;;;;;;;8947:37;;;8939:46;;;;;;-1:-1:-1;;;;;9024:15:0;;;;;;:8;:15;;;;;;:28;;9044:7;9024:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;9006:15:0;;;;;;:8;:15;;;;;;;;:46;;;;9092:7;:14;;;;;9107:10;9092:26;;;;;;:39;;9123:7;9092:39;:30;:39;:::i;:::-;-1:-1:-1;;;;;9063:14:0;;;;;;;:7;:14;;;;;;;;9078:10;9063:26;;;;;;;:68;;;;9158:13;;;;;:8;:13;;;;;:26;;9176:7;9158:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;9142:13:0;;;;;;;:8;:13;;;;;;;;;:42;;;;9200:29;;;;;;;9142:13;;9200:29;;;;-1:-1:-1;;;;;;;;;;;9200:29:0;;;;;;;;-1:-1:-1;9247:4:0;;8722:537;-1:-1:-1;;;;8722:537:0:o;2521:40::-;;;;:::o;10133:140::-;3669:5;;10198:18;;-1:-1:-1;;;;;3669:5:0;3655:10;:19;3647:28;;;;;;-1:-1:-1;10239:5:0;;:26;;10219:9;;-1:-1:-1;;;;;10239:5:0;;:26;;;;;10219:9;;10239:5;:26;:5;:26;10219:9;10239:5;:26;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10239:26:0;10133:140;;:::o;2481:33::-;2513:1;2481:33;:::o;10281:343::-;3669:5;;10389:14;;-1:-1:-1;;;;;3669:5:0;3655:10;:19;3647:28;;;;;;10366:10;10357:20;;;;:8;:20;;;;;;10347:30;;;10339:39;;;;;;-1:-1:-1;10406:10:0;10446:16;;;;:8;:16;;;;;;:28;;10467:6;10446:28;:20;:28;:::i;:::-;-1:-1:-1;;;;;10427:16:0;;;;;;:8;:16;;;;;:47;10499:11;;:23;;10515:6;10499:23;:15;:23;:::i;:::-;10485:11;:37;10552:16;;:28;;10573:6;10552:28;:20;:28;:::i;:::-;10533:16;:47;10596:20;;;;;;;;-1:-1:-1;;;;;10596:20:0;;;;;;;;;;;;;10281:343;;:::o;2568:38::-;;;;:::o;8075:111::-;-1:-1:-1;;;;;8162:16:0;8135:7;8162:16;;;:8;:16;;;;;;;8075:111::o;2748:53::-;2789:12;2748:53;:::o;5265:142::-;3669:5;;-1:-1:-1;;;;;3669:5:0;3655:10;:19;3647:28;;;;;;5366:33;5377:12;5391:7;5366:10;:33::i;:::-;5265:142;;:::o;2613:38::-;;;;:::o;2904:29::-;;;;:::o;9952:173::-;3669:5;;10003:17;;;;-1:-1:-1;;;;;3669:5:0;3655:10;:19;3647:28;;;;;;-1:-1:-1;;10089:5:0;;:28;;10023:4;;10061:17;;;-1:-1:-1;;;;;10089:5:0;;;;:28;;;;;10061:17;;10089:5;:28;:5;:28;10061:17;10089:5;:28;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;2437:37:0;;;;;;;;;;;;;;;;;;;:::o;4009:170::-;3669:5;;4074:4;;-1:-1:-1;;;;;3669:5:0;3655:10;:19;3647:28;;;;;;3562:20;;;;3561:21;3553:30;;;;;;4091:20;:27;;-1:-1:-1;;4091:27:0;4114:4;4091:27;;;4134:15;;;;4091:20;;4134:15;-1:-1:-1;4167:4:0;4009:170;:::o;5619:::-;3669:5;;-1:-1:-1;;;;;3669:5:0;3655:10;:19;3647:28;;;;;;5703:12;:28;;;5747:34;;;;;;;;;;;;;;;;;5619:170;:::o;8308:402::-;8396:12;8372:6;8267:8;8248;:27;;8241:35;;;;-1:-1:-1;;;;;8431:17:0;;;;8423:26;;;;;;8488:10;8479:20;;;;:8;:20;;;;;;8468:31;;;8460:40;;;;;;8553:10;8544:20;;;;:8;:20;;;;;;:33;;8569:7;8544:33;:24;:33;:::i;:::-;8530:10;8521:20;;;;:8;:20;;;;;;:56;;;;-1:-1:-1;;;;;8604:13:0;;;;;;:26;;8622:7;8604:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;8588:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;8646:34;;;;;;;8588:13;;8655:10;;-1:-1:-1;;;;;;;;;;;8646:34:0;;;;;;;;;-1:-1:-1;8698:4:0;;8308:402;-1:-1:-1;;;8308:402:0:o;2339:40::-;;;;;;;;;;;;;;;:::o;3469:::-;;;;;;:::o;9729:211::-;9814:4;9830:14;9884:8;9860:12;9830:43;;9895:1;-1:-1:-1;;;;;9895:11:0;;9907:3;9895:16;;;;;;;;;;;;;-1:-1:-1;;;;;9895:16:0;-1:-1:-1;;;;;9895:16:0;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9895:16:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;9895:16:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9895:16:0;;9729:211;-1:-1:-1;;;;;9729:211:0:o;2821:35::-;;;;:::o;9579:138::-;-1:-1:-1;;;;;9684:15:0;;;9657:7;9684:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;9579:138::o;10820:260::-;3669:5;;10901:4;;;;;;-1:-1:-1;;;;;3669:5:0;3655:10;:19;3647:28;;;;;;10995:30;;;;;;11019:4;10995:30;;;;;;10952:14;;-1:-1:-1;;;;;;10995:15:0;;;;;:30;;;;;;;;;;;;;;-1:-1:-1;10995:15:0;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;10995:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10995:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10995:30:0;11058:5;;11043:29;;;;;;-1:-1:-1;;;;;11058:5:0;;;11043:29;;;;;;;;;;;;10995:30;;-1:-1:-1;11043:14:0;;;;;;:29;;;;;10995:30;;11043:29;;;;;;;;11058:5;11043:14;:29;;;5:2:-1;;;;30:1;27;20:12;5:2;11043:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;11043:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11043:29:0;;10820:260;-1:-1:-1;;;;10820:260:0:o;2869:28::-;;;;:::o;4191:168::-;3669:5;;4252:4;;-1:-1:-1;;;;;3669:5:0;3655:10;:19;3647:28;;;;;;3562:20;;;;3561:21;3553:30;;;;;;4269:20;:28;;-1:-1:-1;;4269:28:0;;;4313:16;;;;4292:5;;4313:16;-1:-1:-1;4347:4:0;4191:168;:::o;2710:31::-;;;;:::o;3850:151::-;3669:5;;-1:-1:-1;;;;;3669:5:0;3655:10;:19;3647:28;;;;;;-1:-1:-1;;;;;3927:22:0;;;3923:71;;3966:5;:16;;-1:-1:-1;;3966:16:0;-1:-1:-1;;;;;3966:16:0;;;;;3923:71;3850:151;:::o;5415:196::-;3669:5;;5529:6;;-1:-1:-1;;;;;3669:5:0;3655:10;:19;3647:28;;;;;;-1:-1:-1;5538:1:0;5524:79;5541:21;;;5524:79;;;5569:34;5580:10;;5591:1;5580:13;;;;;;;;;;;;;-1:-1:-1;;;;;5580:13:0;5595:7;5569:10;:34::i;:::-;5564:3;;5524:79;;;5415: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;;;4371:314;3562:20;;4442:4;;3562:20;;3561:21;3553:30;;;;;;4478:16;;:29;;4499:7;4478:29;:20;:29;:::i;:::-;4459:16;:48;-1:-1:-1;;;;;4542:13:0;;;;;;:8;:13;;;;;;:26;;4560:7;4542:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;4526:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;4584:19;;;;;;;4526:13;;4584:19;;;;;;;;;4619:34;;;;;;;;-1:-1:-1;;;;;4619:34:0;;;4636:1;;-1:-1:-1;;;;;;;;;;;4619:34:0;;;;;;;;-1:-1:-1;4673:4:0;4371: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;4697:556::-;3669:5;;-1:-1:-1;;;;;3669:5:0;3655:10;:19;3647:28;;;;;;4804:1;4794:11;;4785:22;;;;;;4852:11;;4833:16;;:30;4824:41;;;;;;-1:-1:-1;;;;;4901:22:0;;;;;;:8;:22;;;;;;:35;;4928:7;4901:35;:26;:35;:::i;:::-;-1:-1:-1;;;;;4876:22:0;;;;;;:8;:22;;;;;:60;4966:16;;:29;;4987:7;4966:29;:20;:29;:::i;:::-;4947:16;:48;;;5032:11;;-1:-1:-1;5008:91:0;;5060:20;:27;;-1:-1:-1;;5060:27:0;5083:4;5060:27;;;5008:91;-1:-1:-1;;;;;5132:54:0;;5163:22;;;;:8;:22;;;;;;;;;;5132:54;;;;;;;;;;;;;;;;;;;;;;5202:43;;;;;;;;-1:-1:-1;;;;;5202:43:0;;;5219:1;;-1:-1:-1;;;;;;;;;;;5202:43:0;;;;;;;;4697:556;;:::o

Swarm Source

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