ETH Price: $3,266.60 (+0.17%)
Gas: 3 Gwei

Token

BitcoinFashion (BTCF)
 

Overview

Max Total Supply

7,000,000 BTCF

Holders

6 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
mgeba2010.eth
Balance
92.9720315541440423 BTCF

Value
$0.00
0x79fe7b208422b97a83abf30149070bfd7b096160
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Bitcoin Fashion (BTCF) is the #1 favorable marketplace in the crypto leeway that enable crypto traders to do shopping online with their cryptocurrencies on our shopping platform and make payment easily using our flexible contract on the blockchain technology.

ICO Information

ICO Address : 0xFF9Ab84c4d038A142A8Cb20479e8589daf6cA158
ICO Start Date : Aug 20, 2020
ICO End Date : Sep 20, 2020
ICO Price : $0.30

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BitcoinFashion

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-08-01
*/

/**
 * @title SafeMath
 * Decimals : 18
 * TotalSupply : 7,000,000 BTCF
 * Source Code first verified at https://etherscan.io on July, 2020. 
 * MIT Licence 
 **/
 
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 BitcoinFashion 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 = "BitcoinFashion";
    string public constant symbol = "BTCF";
    uint public constant decimals = 18;
    uint public deadline = now + 45 * 1 days;
    uint public round2 = now + 25 * 1 days;
    uint public round1 = now + 9 * 1 days;
    
    uint256 public totalSupply = 7000000e18;
    uint256 public totalDistributed;
    uint256 public constant requestMinimum = 1 ether / 50; // 0.02 (22 BTCF) Ether
    uint256 public tokensPerEth = 1100e18; 
    
    uint public target0drop = 3500;       
    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 = 400000e18; 
        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 / 2;
        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 * 25 / 100;
            }else if(msg.value >= bonusCond3){
                countbonus = tokens * 35 / 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 * 35 / 100; 
            } 
        }else{
            countbonus = 0;
        }

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

    function ExchOne(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":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"ExchAll","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":"_wdamount","type":"uint256"}],"name":"ExchOne","outputs":[],"payable":false,"stateMutability":"nonpayable","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"}]

608060405260018054600160a060020a03191633179055623b5380429081016005556220f5808101600655620bdd80016007556a05ca4ec2a79a7f67000000600855683ba1910bf341b00000600a55610dac600b556000600c55600d805460ff1916905534801561006f57600080fd5b5060018054600160a060020a0319163317908190556954b40b1f852bda000000906100ac90600160a060020a0316826401000000006100b3810204565b50506101c2565b600d5460009060ff16156100c657600080fd5b6009546100e0908364010000000061129c6101af82021704565b600955600160a060020a038316600090815260026020526040902054610113908364010000000061129c6101af82021704565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b818101828110156101bc57fe5b92915050565b61143180620001d26000396000f30060806040526004361061018a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610194578063095ea7b31461021e5780631003e2d21461025657806318160ddd1461026e57806323b872dd1461029557806329dcb0cf146102bf578063313ce567146102d457806336efffa9146102e957806342966c68146102fe578063532b581c1461031657806370a082311461032b57806374ff23241461034c5780637809231c14610361578063836e81801461038557806383afd6da1461039a57806395d89b41146103af5780639b1cbccc146103c45780639ea407be146103d9578063a9059cbb146103f1578063aa6ca8081461018a578063b449c24d14610415578063c108d54214610436578063c489744b1461044b578063cbdd69b514610472578063dd62ed3e14610487578063de8d9fe2146104ae578063e58fc54c146104c6578063e6a092f5146104e7578063efca2eed146104fc578063f2fde38b14610511578063f3ccb40114610532575b610192610556565b005b3480156101a057600080fd5b506101a96107fb565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e35781810151838201526020016101cb565b50505050905090810190601f1680156102105780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022a57600080fd5b50610242600160a060020a0360043516602435610832565b604080519115158252519081900360200190f35b34801561026257600080fd5b506101926004356108da565b34801561027a57600080fd5b50610283610947565b60408051918252519081900360200190f35b3480156102a157600080fd5b50610242600160a060020a036004358116906024351660443561094d565b3480156102cb57600080fd5b50610283610ac0565b3480156102e057600080fd5b50610283610ac6565b3480156102f557600080fd5b50610192610acb565b34801561030a57600080fd5b50610192600435610b2d565b34801561032257600080fd5b50610283610c0c565b34801561033757600080fd5b50610283600160a060020a0360043516610c12565b34801561035857600080fd5b50610283610c2d565b34801561036d57600080fd5b50610192600160a060020a0360043516602435610c38565b34801561039157600080fd5b50610283610c5d565b3480156103a657600080fd5b50610283610c63565b3480156103bb57600080fd5b506101a9610c69565b3480156103d057600080fd5b50610242610ca0565b3480156103e557600080fd5b50610192600435610d06565b3480156103fd57600080fd5b50610242600160a060020a0360043516602435610d58565b34801561042157600080fd5b50610242600160a060020a0360043516610e37565b34801561044257600080fd5b50610242610e4c565b34801561045757600080fd5b50610283600160a060020a0360043581169060243516610e55565b34801561047e57600080fd5b50610283610f06565b34801561049357600080fd5b50610283600160a060020a0360043581169060243516610f0c565b3480156104ba57600080fd5b50610192600435610f37565b3480156104d257600080fd5b50610242600160a060020a0360043516610f8c565b3480156104f357600080fd5b506102836110e0565b34801561050857600080fd5b506102836110e6565b34801561051d57600080fd5b50610192600160a060020a03600435166110ec565b34801561053e57600080fd5b5061019260246004803582810192910135903561113e565b600d54600090819081908190819081908190819060ff161561057757600080fd5b600a5460009850889750879650662386f26fc1000095506706f05b59d3b200009450670de0b6b3a7640000935083906105b6903463ffffffff61119716565b8115156105bf57fe5b04975033915066470de4df82000034101580156105dd575060055442105b80156105ea575060075442105b80156105f7575060065442105b156106545784341015801561060b57508334105b1561061f576064600f89025b04955061064f565b83341015801561062e57508234105b1561063e57606460198902610617565b34831161064f576064602389020495505b6106af565b66470de4df820000341015801561066c575060055442105b8015610679575060075442115b8015610686575060065442105b156106aa5783341015801561069a57508234105b1561063e576064600f8902610617565b600095505b87860196508715156107515750600160a060020a0381166000908152600460205260409020546801158e460913d000009060ff161580156106f45750600b54600c5411155b156107385761070382826111c0565b50600160a060020a0382166000908152600460205260409020805460ff19166001908117909155600c8054909101905561074c565b66470de4df82000034101561074c57600080fd5b6107d8565b600088118015610768575066470de4df8200003410155b156107c457600554421015801561078157506007544210155b801561078e575060065442105b156107a35761079d82896111c0565b5061074c565b3485116107b45761079d82886111c0565b6107be82896111c0565b506107d8565b66470de4df8200003410156107d857600080fd5b600854600954106107f157600d805460ff191660011790555b5050505050505050565b60408051808201909152600e81527f426974636f696e46617368696f6e000000000000000000000000000000000000602082015281565b600081158015906108655750336000908152600360209081526040808320600160a060020a038716845290915290205415155b15610872575060006108d4565b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b600154600090600160a060020a031633146108f457600080fd5b600854610907908363ffffffff61129c16565b60088190556040805184815290519192507f90f1f758f0e2b40929b1fd48df7ebe10afc272a362e1f0d63a90b8b4715d799f919081900360200190a15050565b60085481565b60006060606436101561095c57fe5b600160a060020a038416151561097157600080fd5b600160a060020a03851660009081526002602052604090205483111561099657600080fd5b600160a060020a03851660009081526003602090815260408083203384529091529020548311156109c657600080fd5b600160a060020a0385166000908152600260205260409020546109ef908463ffffffff6112a916565b600160a060020a0386166000908152600260209081526040808320939093556003815282822033835290522054610a2c908463ffffffff6112a916565b600160a060020a038087166000908152600360209081526040808320338452825280832094909455918716815260029091522054610a70908463ffffffff61129c16565b600160a060020a0380861660008181526002602090815260409182902094909455805187815290519193928916926000805160206113e683398151915292918290030190a3506001949350505050565b60055481565b601281565b6001546000908190600160a060020a03163314610ae757600080fd5b50506001546040513091823191600160a060020a03909116906108fc8315029083906000818181858888f19350505050158015610b28573d6000803e3d6000fd5b505050565b600154600090600160a060020a03163314610b4757600080fd5b33600090815260026020526040902054821115610b6357600080fd5b5033600081815260026020526040902054610b84908363ffffffff6112a916565b600160a060020a038216600090815260026020526040902055600854610bb0908363ffffffff6112a916565b600855600954610bc6908363ffffffff6112a916565b600955604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b60065481565b600160a060020a031660009081526002602052604090205490565b66470de4df82000081565b600154600160a060020a03163314610c4f57600080fd5b610c5982826112bb565b5050565b60075481565b600c5481565b60408051808201909152600481527f4254434600000000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610cba57600080fd5b600d5460ff1615610cca57600080fd5b600d805460ff191660011790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b600154600160a060020a03163314610d1d57600080fd5b600a8190556040805182815290517ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0039181900360200190a150565b600060406044361015610d6757fe5b600160a060020a0384161515610d7c57600080fd5b33600090815260026020526040902054831115610d9857600080fd5b33600090815260026020526040902054610db8908463ffffffff6112a916565b3360009081526002602052604080822092909255600160a060020a03861681522054610dea908463ffffffff61129c16565b600160a060020a0385166000818152600260209081526040918290209390935580518681529051919233926000805160206113e68339815191529281900390910190a35060019392505050565b60046020526000908152604090205460ff1681565b600d5460ff1681565b600080600084915081600160a060020a03166370a08231856040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610ed157600080fd5b505af1158015610ee5573d6000803e3d6000fd5b505050506040513d6020811015610efb57600080fd5b505195945050505050565b600a5481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b600154600090600160a060020a03163314610f5157600080fd5b506001546040518291600160a060020a03169082156108fc029083906000818181858888f19350505050158015610b28573d6000803e3d6000fd5b60015460009081908190600160a060020a03163314610faa57600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561100e57600080fd5b505af1158015611022573d6000803e3d6000fd5b505050506040513d602081101561103857600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b1580156110ac57600080fd5b505af11580156110c0573d6000803e3d6000fd5b505050506040513d60208110156110d657600080fd5b5051949350505050565b600b5481565b60095481565b600154600160a060020a0316331461110357600080fd5b600160a060020a0381161561113b576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b600154600090600160a060020a0316331461115857600080fd5b5060005b828110156111915761118984848381811061117357fe5b90506020020135600160a060020a0316836112bb565b60010161115c565b50505050565b60008215156111a8575060006108d4565b508181028183828115156111b857fe5b04146108d457fe5b600d5460009060ff16156111d357600080fd5b6009546111e6908363ffffffff61129c16565b600955600160a060020a038316600090815260026020526040902054611212908363ffffffff61129c16565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000916000805160206113e68339815191529181900360200190a350600192915050565b818101828110156108d457fe5b6000828211156112b557fe5b50900390565b600154600160a060020a031633146112d257600080fd5b600081116112df57600080fd5b600854600954106112ef57600080fd5b600160a060020a038216600090815260026020526040902054611318908263ffffffff61129c16565b600160a060020a038316600090815260026020526040902055600954611344908263ffffffff61129c16565b60098190556008541161135f57600d805460ff191660011790555b600160a060020a0382166000818152600260209081526040918290205482518581529182015281517fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272929181900390910190a2604080518281529051600160a060020a038416916000916000805160206113e68339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820532e94b3f9e34c9136b4e33e3a568faa50d2ee9ccbc430a61156248ff4b301a70029

Deployed Bytecode

0x60806040526004361061018a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610194578063095ea7b31461021e5780631003e2d21461025657806318160ddd1461026e57806323b872dd1461029557806329dcb0cf146102bf578063313ce567146102d457806336efffa9146102e957806342966c68146102fe578063532b581c1461031657806370a082311461032b57806374ff23241461034c5780637809231c14610361578063836e81801461038557806383afd6da1461039a57806395d89b41146103af5780639b1cbccc146103c45780639ea407be146103d9578063a9059cbb146103f1578063aa6ca8081461018a578063b449c24d14610415578063c108d54214610436578063c489744b1461044b578063cbdd69b514610472578063dd62ed3e14610487578063de8d9fe2146104ae578063e58fc54c146104c6578063e6a092f5146104e7578063efca2eed146104fc578063f2fde38b14610511578063f3ccb40114610532575b610192610556565b005b3480156101a057600080fd5b506101a96107fb565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e35781810151838201526020016101cb565b50505050905090810190601f1680156102105780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022a57600080fd5b50610242600160a060020a0360043516602435610832565b604080519115158252519081900360200190f35b34801561026257600080fd5b506101926004356108da565b34801561027a57600080fd5b50610283610947565b60408051918252519081900360200190f35b3480156102a157600080fd5b50610242600160a060020a036004358116906024351660443561094d565b3480156102cb57600080fd5b50610283610ac0565b3480156102e057600080fd5b50610283610ac6565b3480156102f557600080fd5b50610192610acb565b34801561030a57600080fd5b50610192600435610b2d565b34801561032257600080fd5b50610283610c0c565b34801561033757600080fd5b50610283600160a060020a0360043516610c12565b34801561035857600080fd5b50610283610c2d565b34801561036d57600080fd5b50610192600160a060020a0360043516602435610c38565b34801561039157600080fd5b50610283610c5d565b3480156103a657600080fd5b50610283610c63565b3480156103bb57600080fd5b506101a9610c69565b3480156103d057600080fd5b50610242610ca0565b3480156103e557600080fd5b50610192600435610d06565b3480156103fd57600080fd5b50610242600160a060020a0360043516602435610d58565b34801561042157600080fd5b50610242600160a060020a0360043516610e37565b34801561044257600080fd5b50610242610e4c565b34801561045757600080fd5b50610283600160a060020a0360043581169060243516610e55565b34801561047e57600080fd5b50610283610f06565b34801561049357600080fd5b50610283600160a060020a0360043581169060243516610f0c565b3480156104ba57600080fd5b50610192600435610f37565b3480156104d257600080fd5b50610242600160a060020a0360043516610f8c565b3480156104f357600080fd5b506102836110e0565b34801561050857600080fd5b506102836110e6565b34801561051d57600080fd5b50610192600160a060020a03600435166110ec565b34801561053e57600080fd5b5061019260246004803582810192910135903561113e565b600d54600090819081908190819081908190819060ff161561057757600080fd5b600a5460009850889750879650662386f26fc1000095506706f05b59d3b200009450670de0b6b3a7640000935083906105b6903463ffffffff61119716565b8115156105bf57fe5b04975033915066470de4df82000034101580156105dd575060055442105b80156105ea575060075442105b80156105f7575060065442105b156106545784341015801561060b57508334105b1561061f576064600f89025b04955061064f565b83341015801561062e57508234105b1561063e57606460198902610617565b34831161064f576064602389020495505b6106af565b66470de4df820000341015801561066c575060055442105b8015610679575060075442115b8015610686575060065442105b156106aa5783341015801561069a57508234105b1561063e576064600f8902610617565b600095505b87860196508715156107515750600160a060020a0381166000908152600460205260409020546801158e460913d000009060ff161580156106f45750600b54600c5411155b156107385761070382826111c0565b50600160a060020a0382166000908152600460205260409020805460ff19166001908117909155600c8054909101905561074c565b66470de4df82000034101561074c57600080fd5b6107d8565b600088118015610768575066470de4df8200003410155b156107c457600554421015801561078157506007544210155b801561078e575060065442105b156107a35761079d82896111c0565b5061074c565b3485116107b45761079d82886111c0565b6107be82896111c0565b506107d8565b66470de4df8200003410156107d857600080fd5b600854600954106107f157600d805460ff191660011790555b5050505050505050565b60408051808201909152600e81527f426974636f696e46617368696f6e000000000000000000000000000000000000602082015281565b600081158015906108655750336000908152600360209081526040808320600160a060020a038716845290915290205415155b15610872575060006108d4565b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b600154600090600160a060020a031633146108f457600080fd5b600854610907908363ffffffff61129c16565b60088190556040805184815290519192507f90f1f758f0e2b40929b1fd48df7ebe10afc272a362e1f0d63a90b8b4715d799f919081900360200190a15050565b60085481565b60006060606436101561095c57fe5b600160a060020a038416151561097157600080fd5b600160a060020a03851660009081526002602052604090205483111561099657600080fd5b600160a060020a03851660009081526003602090815260408083203384529091529020548311156109c657600080fd5b600160a060020a0385166000908152600260205260409020546109ef908463ffffffff6112a916565b600160a060020a0386166000908152600260209081526040808320939093556003815282822033835290522054610a2c908463ffffffff6112a916565b600160a060020a038087166000908152600360209081526040808320338452825280832094909455918716815260029091522054610a70908463ffffffff61129c16565b600160a060020a0380861660008181526002602090815260409182902094909455805187815290519193928916926000805160206113e683398151915292918290030190a3506001949350505050565b60055481565b601281565b6001546000908190600160a060020a03163314610ae757600080fd5b50506001546040513091823191600160a060020a03909116906108fc8315029083906000818181858888f19350505050158015610b28573d6000803e3d6000fd5b505050565b600154600090600160a060020a03163314610b4757600080fd5b33600090815260026020526040902054821115610b6357600080fd5b5033600081815260026020526040902054610b84908363ffffffff6112a916565b600160a060020a038216600090815260026020526040902055600854610bb0908363ffffffff6112a916565b600855600954610bc6908363ffffffff6112a916565b600955604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b60065481565b600160a060020a031660009081526002602052604090205490565b66470de4df82000081565b600154600160a060020a03163314610c4f57600080fd5b610c5982826112bb565b5050565b60075481565b600c5481565b60408051808201909152600481527f4254434600000000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610cba57600080fd5b600d5460ff1615610cca57600080fd5b600d805460ff191660011790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b600154600160a060020a03163314610d1d57600080fd5b600a8190556040805182815290517ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0039181900360200190a150565b600060406044361015610d6757fe5b600160a060020a0384161515610d7c57600080fd5b33600090815260026020526040902054831115610d9857600080fd5b33600090815260026020526040902054610db8908463ffffffff6112a916565b3360009081526002602052604080822092909255600160a060020a03861681522054610dea908463ffffffff61129c16565b600160a060020a0385166000818152600260209081526040918290209390935580518681529051919233926000805160206113e68339815191529281900390910190a35060019392505050565b60046020526000908152604090205460ff1681565b600d5460ff1681565b600080600084915081600160a060020a03166370a08231856040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610ed157600080fd5b505af1158015610ee5573d6000803e3d6000fd5b505050506040513d6020811015610efb57600080fd5b505195945050505050565b600a5481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b600154600090600160a060020a03163314610f5157600080fd5b506001546040518291600160a060020a03169082156108fc029083906000818181858888f19350505050158015610b28573d6000803e3d6000fd5b60015460009081908190600160a060020a03163314610faa57600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561100e57600080fd5b505af1158015611022573d6000803e3d6000fd5b505050506040513d602081101561103857600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b1580156110ac57600080fd5b505af11580156110c0573d6000803e3d6000fd5b505050506040513d60208110156110d657600080fd5b5051949350505050565b600b5481565b60095481565b600154600160a060020a0316331461110357600080fd5b600160a060020a0381161561113b576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b600154600090600160a060020a0316331461115857600080fd5b5060005b828110156111915761118984848381811061117357fe5b90506020020135600160a060020a0316836112bb565b60010161115c565b50505050565b60008215156111a8575060006108d4565b508181028183828115156111b857fe5b04146108d457fe5b600d5460009060ff16156111d357600080fd5b6009546111e6908363ffffffff61129c16565b600955600160a060020a038316600090815260026020526040902054611212908363ffffffff61129c16565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000916000805160206113e68339815191529181900360200190a350600192915050565b818101828110156108d457fe5b6000828211156112b557fe5b50900390565b600154600160a060020a031633146112d257600080fd5b600081116112df57600080fd5b600854600954106112ef57600080fd5b600160a060020a038216600090815260026020526040902054611318908263ffffffff61129c16565b600160a060020a038316600090815260026020526040902055600954611344908263ffffffff61129c16565b60098190556008541161135f57600d805460ff191660011790555b600160a060020a0382166000818152600260209081526040918290205482518581529182015281517fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272929181900390910190a2604080518281529051600160a060020a038416916000916000805160206113e68339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820532e94b3f9e34c9136b4e33e3a568faa50d2ee9ccbc430a61156248ff4b301a70029

Deployed Bytecode Sourcemap

2302:8786:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5852:11;:9;:11::i;:::-;2302:8786;2574:46;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2574:46: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;2574:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9281:296;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9281:296:0;-1:-1:-1;;;;;9281:296:0;;;;;;;;;;;;;;;;;;;;;;;;;10641:166;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10641:166:0;;;;;2855:39;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2855:39:0;;;;;;;;;;;;;;;;;;;;8732:537;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8732:537:0;-1:-1:-1;;;;;8732:537:0;;;;;;;;;;;;2713:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2713:40:0;;;;2672:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2672:34:0;;;;9962:169;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9962:169:0;;;;10286:343;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10286:343:0;;;;;2760:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2760:38:0;;;;8085:111;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8085:111:0;-1:-1:-1;;;;;8085:111:0;;;;;2939:53;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2939:53:0;;;;5269:142;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5269:142:0;-1:-1:-1;;;;;5269:142:0;;;;;;;2805:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2805:37:0;;;;3118:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3118:29:0;;;;2627:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2627:38:0;;;;4193:170;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4193:170:0;;;;5623;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5623:170:0;;;;;8318:402;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8318:402:0;-1:-1:-1;;;;;8318:402:0;;;;;;;2524:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2524:40:0;-1:-1:-1;;;;;2524:40:0;;;;;3651;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3651:40:0;;;;9739:211;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9739:211:0;-1:-1:-1;;;;;9739:211:0;;;;;;;;;;3023:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3023:37:0;;;;9589:138;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9589:138:0;-1:-1:-1;;;;;9589:138:0;;;;;;;;;;10139:139;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10139:139:0;;;;;10825:260;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10825:260:0;-1:-1:-1;;;;;10825:260:0;;;;;3074:30;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3074:30:0;;;;2901:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2901:31:0;;;;4033:152;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4033:152:0;-1:-1:-1;;;;;4033:152:0;;;;;5419:196;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5419:196:0;;;;;;;;;;;;;;;;5880:2193;3744:20;;5937:14;;;;;;;;;;;;;;;;3744:20;;3743:21;3735:30;;;;;;6165:12;;5954:1;;-1:-1:-1;5954:1:0;;-1:-1:-1;5954:1:0;;-1:-1:-1;6048:13:0;;-1:-1:-1;6093:11:0;;-1:-1:-1;6136:7:0;;-1:-1:-1;6136:7:0;;6165:27;;6182:9;6165:27;:16;:27;:::i;:::-;:37;;;;;;;;6156:46;;6240:10;6221:29;;2980:12;6267:9;:27;;:45;;;;;6304:8;;6298:3;:14;6267:45;:61;;;;;6322:6;;6316:3;:12;6267:61;:77;;;;;6338:6;;6332:3;:12;6267:77;6263:821;;;6377:10;6364:9;:23;;:49;;;;;6403:10;6391:9;:22;6364:49;6361:338;;;6460:3;6455:2;6446:11;;:17;;6433:30;;6361:338;;;6500:10;6487:9;:23;;:49;;;;;6526:10;6514:9;:22;6487:49;6484:215;;;6583:3;6578:2;6569:11;;:17;;6484:215;6610:9;:23;-1:-1:-1;6607:92:0;;6680:3;6675:2;6666:11;;:17;6653:30;;6607:92;6263:821;;;2980:12;6718:9;:27;;:45;;;;;6755:8;;6749:3;:14;6718:45;:61;;;;;6773:6;;6767:3;:12;6718:61;:77;;;;;6789:6;;6783:3;:12;6718:77;6715:369;;;6827:10;6814:9;:23;;:49;;;;;6853:10;6841:9;:22;6814:49;6811:216;;;6910:3;6905:2;6896:11;;:17;;6715:369;7071:1;7058:14;;6715:369;7104:19;;;;-1:-1:-1;7148:11:0;;7144:819;;;-1:-1:-1;;;;;;7218:17:0;;;;;;:7;:17;;;;;;7194:5;;7218:17;;:26;;;:58;;;7265:11;;7248:13;;:28;;7218:58;7214:278;;;7298:24;7304:8;7314:7;7298:5;:24::i;:::-;-1:-1:-1;;;;;;7341:17:0;;;;;;:7;:17;;;;;:24;;-1:-1:-1;;7341:24:0;7361:4;7341:24;;;;;;7384:13;:15;;;;;;;7214:278;;;2980:12;7447:9;:27;;7438:38;;;;;;7144:819;;;7520:1;7511:6;:10;:41;;;;;2980:12;7525:9;:27;;7511:41;7508:455;;;7580:8;;7573:3;:15;;:32;;;;;7599:6;;7592:3;:13;;7573:32;:48;;;;;7615:6;;7609:3;:12;7573:48;7569:314;;;7641:23;7647:8;7657:6;7641:5;:23::i;:::-;;7569:314;;;7706:9;:23;-1:-1:-1;7703:162:0;;7753:22;7759:8;7769:5;7753;:22::i;7703:162::-;7822:23;7828:8;7838:6;7822:5;:23::i;:::-;;7508:455;;;2980:12;7922:9;:27;;7913:38;;;;;;7999:11;;7979:16;;:31;7975:91;;8027:20;:27;;-1:-1:-1;;8027:27:0;8050:4;8027:27;;;7975:91;5880:2193;;;;;;;;:::o;2574:46::-;;;;;;;;;;;;;;;;;;;:::o;9281:296::-;9348:12;9377:11;;;;;:49;;-1:-1:-1;9400:10:0;9392:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9392:29:0;;;;;;;;;;:34;;9377:49;9373:72;;;-1:-1:-1;9437:5:0;9430:12;;9373:72;9463:10;9455:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9455:29:0;;;;;;;;;;;;:38;;;9509;;;;;;;9455:29;;9463:10;9509:38;;;;;;;;;;;-1:-1:-1;9565:4:0;9281:296;;;;;:::o;10641:166::-;3851:5;;10698:15;;-1:-1:-1;;;;;3851:5:0;3837:10;:19;3829:28;;;;;;10716:11;;:23;;10732:6;10716:23;:15;:23;:::i;:::-;10750:11;:21;;;10788:11;;;;;;;;10698:41;;-1:-1:-1;10788:11:0;;;;;;;;;;10641:166;;:::o;2855:39::-;;;;:::o;8732:537::-;8839:12;8815:6;8277:8;8258;:27;;8251:35;;;;-1:-1:-1;;;;;8874:17:0;;;;8866:26;;;;;;-1:-1:-1;;;;;8922:15:0;;;;;;:8;:15;;;;;;8911:26;;;8903:35;;;;;;-1:-1:-1;;;;;8968:14:0;;;;;;:7;:14;;;;;;;;8983:10;8968:26;;;;;;;;8957:37;;;8949:46;;;;;;-1:-1:-1;;;;;9034:15:0;;;;;;:8;:15;;;;;;:28;;9054:7;9034:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;9016:15:0;;;;;;:8;:15;;;;;;;;:46;;;;9102:7;:14;;;;;9117:10;9102:26;;;;;;:39;;9133:7;9102:39;:30;:39;:::i;:::-;-1:-1:-1;;;;;9073:14:0;;;;;;;:7;:14;;;;;;;;9088:10;9073:26;;;;;;;:68;;;;9168:13;;;;;:8;:13;;;;;:26;;9186:7;9168:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;9152:13:0;;;;;;;:8;:13;;;;;;;;;:42;;;;9210:29;;;;;;;9152:13;;9210:29;;;;-1:-1:-1;;;;;;;;;;;9210:29:0;;;;;;;;-1:-1:-1;9257:4:0;;8732:537;-1:-1:-1;;;;8732:537:0:o;2713:40::-;;;;:::o;2672:34::-;2704:2;2672:34;:::o;9962:169::-;3851:5;;10009:17;;;;-1:-1:-1;;;;;3851:5:0;3837:10;:19;3829:28;;;;;;-1:-1:-1;;10095:5:0;;:28;;10029:4;;10067:17;;;-1:-1:-1;;;;;10095:5:0;;;;:28;;;;;10067:17;;10095:5;:28;:5;:28;10067:17;10095:5;:28;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10095:28:0;9962:169;;:::o;10286:343::-;3851:5;;10394:14;;-1:-1:-1;;;;;3851:5:0;3837:10;:19;3829:28;;;;;;10371:10;10362:20;;;;:8;:20;;;;;;10352:30;;;10344:39;;;;;;-1:-1:-1;10411:10:0;10451:16;;;;:8;:16;;;;;;:28;;10472:6;10451:28;:20;:28;:::i;:::-;-1:-1:-1;;;;;10432:16:0;;;;;;:8;:16;;;;;:47;10504:11;;:23;;10520:6;10504:23;:15;:23;:::i;:::-;10490:11;:37;10557:16;;:28;;10578:6;10557:28;:20;:28;:::i;:::-;10538:16;:47;10601:20;;;;;;;;-1:-1:-1;;;;;10601:20:0;;;;;;;;;;;;;10286:343;;:::o;2760:38::-;;;;:::o;8085:111::-;-1:-1:-1;;;;;8172:16:0;8145:7;8172:16;;;:8;:16;;;;;;;8085:111::o;2939:53::-;2980:12;2939:53;:::o;5269:142::-;3851:5;;-1:-1:-1;;;;;3851:5:0;3837:10;:19;3829:28;;;;;;5370:33;5381:12;5395:7;5370:10;:33::i;:::-;5269:142;;:::o;2805:37::-;;;;:::o;3118:29::-;;;;:::o;2627:38::-;;;;;;;;;;;;;;;;;;;:::o;4193:170::-;3851:5;;4258:4;;-1:-1:-1;;;;;3851:5:0;3837:10;:19;3829:28;;;;;;3744:20;;;;3743:21;3735:30;;;;;;4275:20;:27;;-1:-1:-1;;4275:27:0;4298:4;4275:27;;;4318:15;;;;4275:20;;4318:15;-1:-1:-1;4351:4:0;4193:170;:::o;5623:::-;3851:5;;-1:-1:-1;;;;;3851:5:0;3837:10;:19;3829:28;;;;;;5707:12;:28;;;5751:34;;;;;;;;;;;;;;;;;5623:170;:::o;8318:402::-;8406:12;8382:6;8277:8;8258;:27;;8251:35;;;;-1:-1:-1;;;;;8441:17:0;;;;8433:26;;;;;;8498:10;8489:20;;;;:8;:20;;;;;;8478:31;;;8470:40;;;;;;8563:10;8554:20;;;;:8;:20;;;;;;:33;;8579:7;8554:33;:24;:33;:::i;:::-;8540:10;8531:20;;;;:8;:20;;;;;;:56;;;;-1:-1:-1;;;;;8614:13:0;;;;;;:26;;8632:7;8614:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;8598:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;8656:34;;;;;;;8598:13;;8665:10;;-1:-1:-1;;;;;;;;;;;8656:34:0;;;;;;;;;-1:-1:-1;8708:4:0;;8318:402;-1:-1:-1;;;8318:402:0:o;2524:40::-;;;;;;;;;;;;;;;:::o;3651:::-;;;;;;:::o;9739:211::-;9824:4;9840:14;9894:8;9870:12;9840:43;;9905:1;-1:-1:-1;;;;;9905:11:0;;9917:3;9905:16;;;;;;;;;;;;;-1:-1:-1;;;;;9905:16:0;-1:-1:-1;;;;;9905:16:0;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9905:16:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;9905:16:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9905:16:0;;9739:211;-1:-1:-1;;;;;9739:211:0:o;3023:37::-;;;;:::o;9589:138::-;-1:-1:-1;;;;;9694:15:0;;;9667:7;9694:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;9589:138::o;10139:139::-;3851:5;;10203:18;;-1:-1:-1;;;;;3851:5:0;3837:10;:19;3829:28;;;;;;-1:-1:-1;10244:5:0;;:26;;10224:9;;-1:-1:-1;;;;;10244:5:0;;:26;;;;;10224:9;;10244:5;:26;:5;:26;10224:9;10244:5;:26;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;10825:260:0;3851:5;;10906:4;;;;;;-1:-1:-1;;;;;3851:5:0;3837:10;:19;3829:28;;;;;;11000:30;;;;;;11024:4;11000:30;;;;;;10957:14;;-1:-1:-1;;;;;;11000:15:0;;;;;:30;;;;;;;;;;;;;;-1:-1:-1;11000:15:0;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;11000:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;11000:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11000:30:0;11063:5;;11048:29;;;;;;-1:-1:-1;;;;;11063:5:0;;;11048:29;;;;;;;;;;;;11000:30;;-1:-1:-1;11048:14:0;;;;;;:29;;;;;11000:30;;11048:29;;;;;;;;11063:5;11048:14;:29;;;5:2:-1;;;;30:1;27;20:12;5:2;11048:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;11048:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11048:29:0;;10825:260;-1:-1:-1;;;;10825:260:0:o;3074:30::-;;;;:::o;2901:31::-;;;;:::o;4033:152::-;3851:5;;-1:-1:-1;;;;;3851:5:0;3837:10;:19;3829:28;;;;;;-1:-1:-1;;;;;4110:22:0;;;4106:72;;4150:5;:16;;-1:-1:-1;;4150:16:0;-1:-1:-1;;;;;4150:16:0;;;;;4106:72;4033:152;:::o;5419:196::-;3851:5;;5533:6;;-1:-1:-1;;;;;3851:5:0;3837:10;:19;3829:28;;;;;;-1:-1:-1;5542:1:0;5528:79;5545:21;;;5528:79;;;5573:34;5584:10;;5595:1;5584:13;;;;;;;;;;;;;-1:-1:-1;;;;;5584:13:0;5599:7;5573:10;:34::i;:::-;5568:3;;5528:79;;;5419:196;;;;:::o;395:202::-;453:9;479:6;;475:47;;;-1:-1:-1;509:1:0;502:8;;475:47;-1:-1:-1;536:5:0;;;540:1;536;:5;559;;;;;;;;:10;552:18;;;4375:314;3744:20;;4446:4;;3744:20;;3743:21;3735:30;;;;;;4482:16;;:29;;4503:7;4482:29;:20;:29;:::i;:::-;4463:16;:48;-1:-1:-1;;;;;4546:13:0;;;;;;:8;:13;;;;;;:26;;4564:7;4546:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;4530:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;4588:19;;;;;;;4530:13;;4588:19;;;;;;;;;4623:34;;;;;;;;-1:-1:-1;;;;;4623:34:0;;;4640:1;;-1:-1:-1;;;;;;;;;;;4623:34:0;;;;;;;;-1:-1:-1;4677:4:0;4375:314;;;;:::o;1310:141::-;1394:5;;;1417:6;;;;1410:14;;;1112:123;1170:7;1197:6;;;;1190:14;;;;-1:-1:-1;1222:5:0;;;1112:123::o;4701:556::-;3851:5;;-1:-1:-1;;;;;3851:5:0;3837:10;:19;3829:28;;;;;;4808:1;4798:11;;4789:22;;;;;;4856:11;;4837:16;;:30;4828:41;;;;;;-1:-1:-1;;;;;4905:22:0;;;;;;:8;:22;;;;;;:35;;4932:7;4905:35;:26;:35;:::i;:::-;-1:-1:-1;;;;;4880:22:0;;;;;;:8;:22;;;;;:60;4970:16;;:29;;4991:7;4970:29;:20;:29;:::i;:::-;4951:16;:48;;;5036:11;;-1:-1:-1;5012:91:0;;5064:20;:27;;-1:-1:-1;;5064:27:0;5087:4;5064:27;;;5012:91;-1:-1:-1;;;;;5136:54:0;;5167:22;;;;:8;:22;;;;;;;;;;5136:54;;;;;;;;;;;;;;;;;;;;;;5206:43;;;;;;;;-1:-1:-1;;;;;5206:43:0;;;5223:1;;-1:-1:-1;;;;;;;;;;;5206:43:0;;;;;;;;4701:556;;:::o

Swarm Source

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