ETH Price: $3,290.98 (-2.19%)

Token

BitConnect2 (BC2)
 

Overview

Max Total Supply

26,110.979738454218498291 BC2

Holders

84

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 BC2

Value
$0.00
0x98f09b62eb1c966fbe5f3c4f350dbf2e5ff0bb49
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:
BitConnect

Compiler Version
v0.4.20+commit.3155dd80

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2019-06-26
*/

pragma solidity ^0.4.20;

/*
*Team Bitconnect presents 
*                                                                                                               
*   /$$$$$$$  /$$   /$$      /$$$$$$                                                      /$$            /$$$$$$ 
*  | $$__  $$|__/  | $$     /$$__  $$                                                    | $$           /$$__  $$
*  | $$  \ $$ /$$ /$$$$$$  | $$  \__/  /$$$$$$  /$$$$$$$  /$$$$$$$   /$$$$$$   /$$$$$$$ /$$$$$$        |__/  \ $$
*  | $$$$$$$ | $$|_  $$_/  | $$       /$$__  $$| $$__  $$| $$__  $$ /$$__  $$ /$$_____/|_  $$_/          /$$$$$$/
*  | $$__  $$| $$  | $$    | $$      | $$  \ $$| $$  \ $$| $$  \ $$| $$$$$$$$| $$        | $$           /$$____/ 
*  | $$  \ $$| $$  | $$ /$$| $$    $$| $$  | $$| $$  | $$| $$  | $$| $$_____/| $$        | $$ /$$      | $$      
*  | $$$$$$$/| $$  |  $$$$/|  $$$$$$/|  $$$$$$/| $$  | $$| $$  | $$|  $$$$$$$|  $$$$$$$  |  $$$$/      | $$$$$$$$
*  |_______/ |__/   \___/   \______/  \______/ |__/  |__/|__/  |__/ \_______/ \_______/   \___/        |________/
*                                                                                                               
* 
* Official Website: https://bitconnect.io
* Official Exchange: https://bitconnect.io

*Bitconnect2.0  a fully decentralized earning platform
*no guarantees are given
*
* If you buy BC2 token you will receive dividends as long as you hold those token.
*
*
*
* ====================================*
* -> What?
* The original autonomous pyramid, improved:
* [x] More stable than ever, having withstood severe testnet abuse and attack attempts from our community!.
* [x] Audited, tested, and approved by known community security specialists.
* [X] New functionality; you can now perform partial sell orders. 
* [x] New functionality; you can now transfer tokens between wallets. Trading is now possible from within the contract!
* [x] New Feature: PoS Masternodes! The first implementation of Ethereum Staking in the world! Vitalik is mad.
* [x] Masternodes: Holding 1 BC2 Token allows you to generate a Masternode link, Masternode links are used as unique entry points to the contract!
* [x] Masternodes: All players who enter the contract through your Masternode have 30% of their 10% dividends fee rerouted from the master-node, to the node-master!
*

*
* The new dev team consists of seasoned, professional developers and has been audited by veteran solidity experts.
* Additionally, two independent testnet iterations have been used by hundreds of people; not a single point of failure was found.
* 
* - 
*/

contract BitConnect {
    /*=================================
    =            MODIFIERS            =
    =================================*/
    // only people with tokens
    modifier onlyBagholders() {
        require(myTokens() > 0);
        _;
    }
    
    // only people with profits
    modifier onlyStronghands() {
        require(myDividends(true) > 0);
        _;
    }
    
    // administrators can:
    // -> change the name of the contract
    // -> change the name of the token
    // -> change the PoS difficulty (How many tokens it costs to hold a masternode, in case it gets crazy high later)
    // they CANNOT:
    // -> take funds
    // -> disable withdrawals
    // -> kill the contract
    // -> change the price of tokens
    modifier onlyAdministrator(){
        address _customerAddress = msg.sender;
        require(administrators[keccak256(_customerAddress)]);
        _;
    }
    
    
    // ensures that the first tokens in the contract will be equally distributed
    // meaning, no divine dump will be ever possible
    // result: healthy longevity.
    modifier antiEarlyWhale(uint256 _amountOfEthereum){
        address _customerAddress = msg.sender;
        
        // are we still in the vulnerable phase?
        // if so, enact anti early whale protocol 
        if( onlyAmbassadors && ((totalEthereumBalance() - _amountOfEthereum) <= ambassadorQuota_ )){
            require(
                // is the customer in the ambassador list?
                ambassadors_[_customerAddress] == true &&
                
                // does the customer purchase exceed the max ambassador quota?
                (ambassadorAccumulatedQuota_[_customerAddress] + _amountOfEthereum) <= ambassadorMaxPurchase_
                
            );
            
            // updated the accumulated quota    
            ambassadorAccumulatedQuota_[_customerAddress] = SafeMath.add(ambassadorAccumulatedQuota_[_customerAddress], _amountOfEthereum);
        
            // execute
            _;
        } else {
            // in case the ether count drops low, the ambassador phase won't reinitiate
            onlyAmbassadors = false;
            _;    
        }
        
    }
    
    
    /*==============================
    =            EVENTS            =
    ==============================*/
    event onTokenPurchase(
        address indexed customerAddress,
        uint256 incomingEthereum,
        uint256 tokensMinted,
        address indexed referredBy
    );
    
    event onTokenSell(
        address indexed customerAddress,
        uint256 tokensBurned,
        uint256 ethereumEarned
    );
    
    event onReinvestment(
        address indexed customerAddress,
        uint256 ethereumReinvested,
        uint256 tokensMinted
    );
    
    event onWithdraw(
        address indexed customerAddress,
        uint256 ethereumWithdrawn
    );
    
    // ERC20
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 tokens
    );
    
    
    /*=====================================
    =            CONFIGURABLES            =
    =====================================*/
    string public name = "BitConnect2";
    string public symbol = "BC2";
    uint8 constant public decimals = 18;
    uint8 constant internal dividendFee_ = 10;
    uint256 constant internal tokenPriceInitial_ = 0.0000000001 ether;
    uint256 constant internal tokenPriceIncremental_ = 0.00000002 ether;
    uint256 constant internal magnitude = 2**64;
    
    // proof of stake (defaults at 100 tokens)
    uint256 public stakingRequirement = 10e18;
    
    // ambassador program
    mapping(address => bool) internal ambassadors_;
    uint256 constant internal ambassadorMaxPurchase_ = 10 ether;
    uint256 constant internal ambassadorQuota_ = 20 ether;
    
    
    
   /*================================
    =            DATASETS            =
    ================================*/
    // amount of shares for each address (scaled number)
    mapping(address => uint256) internal tokenBalanceLedger_;
    mapping(address => uint256) internal referralBalance_;
    mapping(address => int256) internal payoutsTo_;
    mapping(address => uint256) internal ambassadorAccumulatedQuota_;
    uint256 internal tokenSupply_ = 0;
    uint256 internal profitPerShare_;
    
    // administrator list (see above on what they can do)
    mapping(bytes32 => bool) public administrators;
    
    // when this is set to true, only ambassadors can purchase tokens (this prevents a whale premine, it ensures a fairly distributed upper pyramid)
    bool public onlyAmbassadors = true;
    


    /*=======================================
    =            PUBLIC FUNCTIONS            =
    =======================================*/
    /*
    * -- APPLICATION ENTRY POINTS --  
    */
    function BitConnect()
        public
    {
        // add administrators here
        administrators[keccak256(0xe56570858990aA5810220f7fd54dCaAf25AeA8fA)] = true;
        
        // add the ambassadors here.
        // Gilgamesh 
        ambassadors_[0xe56570858990aA5810220f7fd54dCaAf25AeA8fA] = true;
        
        
        ambassadors_[0x2EdE99ee0F6BE3314ac89dFFC1769301ac3ADfb7] = true;
   
        

    }
    
     
    /**
     * Converts all incoming ethereum to tokens for the caller, and passes down the referral addy (if any)
     */
    function buy(address _referredBy)
        public
        payable
        returns(uint256)
    {
        purchaseTokens(msg.value, _referredBy);
    }
    
    /**
     * Fallback function to handle ethereum that was send straight to the contract
     * Unfortunately we cannot use a referral address this way.
     */
    function()
        payable
        public
    {
        purchaseTokens(msg.value, 0x0);
    }
    
    /**
     * Converts all of caller's dividends to tokens.
     */
    function reinvest()
        onlyStronghands()
        public
    {
        // fetch dividends
        uint256 _dividends = myDividends(false); // retrieve ref. bonus later in the code
        
        // pay out the dividends virtually
        address _customerAddress = msg.sender;
        payoutsTo_[_customerAddress] +=  (int256) (_dividends * magnitude);
        
        // retrieve ref. bonus
        _dividends += referralBalance_[_customerAddress];
        referralBalance_[_customerAddress] = 0;
        
        // dispatch a buy order with the virtualized "withdrawn dividends"
        uint256 _tokens = purchaseTokens(_dividends, 0x0);
        
        // fire event
        onReinvestment(_customerAddress, _dividends, _tokens);
    }
    
    /**
     * Alias of sell() and withdraw().
     */
    function exit()
        public
    {
        // get token count for caller & sell them all
        address _customerAddress = msg.sender;
        uint256 _tokens = tokenBalanceLedger_[_customerAddress];
        if(_tokens > 0) sell(_tokens);
        
        // lambo delivery service
        withdraw();
    }

    /**
     * Withdraws all of the callers earnings.
     */
    function withdraw()
        onlyStronghands()
        public
    {
        // setup data
        address _customerAddress = msg.sender;
        uint256 _dividends = myDividends(false); // get ref. bonus later in the code
        
        // update dividend tracker
        payoutsTo_[_customerAddress] +=  (int256) (_dividends * magnitude);
        
        // add ref. bonus
        _dividends += referralBalance_[_customerAddress];
        referralBalance_[_customerAddress] = 0;
        
        // lambo delivery service
        _customerAddress.transfer(_dividends);
        
        // fire event
        onWithdraw(_customerAddress, _dividends);
    }
    
    /**
     * Liquifies tokens to ethereum.
     */
    function sell(uint256 _amountOfTokens)
        onlyBagholders()
        public
    {
        // setup data
        address _customerAddress = msg.sender;
        // russian hackers BTFO
        require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]);
        uint256 _tokens = _amountOfTokens;
        uint256 _ethereum = tokensToEthereum_(_tokens);
        uint256 _dividends = SafeMath.div(_ethereum, dividendFee_);
        uint256 _taxedEthereum = SafeMath.sub(_ethereum, _dividends);
        
        // burn the sold tokens
        tokenSupply_ = SafeMath.sub(tokenSupply_, _tokens);
        tokenBalanceLedger_[_customerAddress] = SafeMath.sub(tokenBalanceLedger_[_customerAddress], _tokens);
        
        // update dividends tracker
        int256 _updatedPayouts = (int256) (profitPerShare_ * _tokens + (_taxedEthereum * magnitude));
        payoutsTo_[_customerAddress] -= _updatedPayouts;       
        
        // dividing by zero is a bad idea
        if (tokenSupply_ > 0) {
            // update the amount of dividends per token
            profitPerShare_ = SafeMath.add(profitPerShare_, (_dividends * magnitude) / tokenSupply_);
        }
        
        // fire event
        onTokenSell(_customerAddress, _tokens, _taxedEthereum);
    }
    
    
    /**
     * Transfer tokens from the caller to a new holder.
     * Remember, there's a 10% fee here as well.
     */
    function transfer(address _toAddress, uint256 _amountOfTokens)
        onlyBagholders()
        public
        returns(bool)
    {
        // setup
        address _customerAddress = msg.sender;
        
        // make sure we have the requested tokens
        // also disables transfers until ambassador phase is over
        // ( we dont want whale premines )
        require(!onlyAmbassadors && _amountOfTokens <= tokenBalanceLedger_[_customerAddress]);
        
        // withdraw all outstanding dividends first
        if(myDividends(true) > 0) withdraw();
        
        // liquify 10% of the tokens that are transfered
        // these are dispersed to shareholders
        uint256 _tokenFee = SafeMath.div(_amountOfTokens, dividendFee_);
        uint256 _taxedTokens = SafeMath.sub(_amountOfTokens, _tokenFee);
        uint256 _dividends = tokensToEthereum_(_tokenFee);
  
        // burn the fee tokens
        tokenSupply_ = SafeMath.sub(tokenSupply_, _tokenFee);

        // exchange tokens
        tokenBalanceLedger_[_customerAddress] = SafeMath.sub(tokenBalanceLedger_[_customerAddress], _amountOfTokens);
        tokenBalanceLedger_[_toAddress] = SafeMath.add(tokenBalanceLedger_[_toAddress], _taxedTokens);
        
        // update dividend trackers
        payoutsTo_[_customerAddress] -= (int256) (profitPerShare_ * _amountOfTokens);
        payoutsTo_[_toAddress] += (int256) (profitPerShare_ * _taxedTokens);
        
        // disperse dividends among holders
        profitPerShare_ = SafeMath.add(profitPerShare_, (_dividends * magnitude) / tokenSupply_);
        
        // fire event
        Transfer(_customerAddress, _toAddress, _taxedTokens);
        
        // ERC20
        return true;
       
    }
    
    /*----------  ADMINISTRATOR ONLY FUNCTIONS  ----------*/
    /**
     * In case the amassador quota is not met, the administrator can manually disable the ambassador phase.
     */
    function disableInitialStage()
        onlyAdministrator()
        public
    {
        onlyAmbassadors = false;
    }
    
    /**
     * In case one of us dies, we need to replace ourselves.
     */
    function setAdministrator(bytes32 _identifier, bool _status)
        onlyAdministrator()
        public
    {
        administrators[_identifier] = _status;
    }
    
    /**
     * Precautionary measures in case we need to adjust the masternode rate.
     */
    function setStakingRequirement(uint256 _amountOfTokens)
        onlyAdministrator()
        public
    {
        stakingRequirement = _amountOfTokens;
    }
    
    /**
     * If we want to rebrand, we can.
     */
    function setName(string _name)
        onlyAdministrator()
        public
    {
        name = _name;
    }
    
    /**
     * If we want to rebrand, we can.
     */
    function setSymbol(string _symbol)
        onlyAdministrator()
        public
    {
        symbol = _symbol;
    }

    
    /*----------  HELPERS AND CALCULATORS  ----------*/
    /**
     * Method to view the current Ethereum stored in the contract
     * Example: totalEthereumBalance()
     */
    function totalEthereumBalance()
        public
        view
        returns(uint)
    {
        return this.balance;
    }
    
    /**
     * Retrieve the total token supply.
     */
    function totalSupply()
        public
        view
        returns(uint256)
    {
        return tokenSupply_;
    }
    
    /**
     * Retrieve the tokens owned by the caller.
     */
    function myTokens()
        public
        view
        returns(uint256)
    {
        address _customerAddress = msg.sender;
        return balanceOf(_customerAddress);
    }
    
    /**
     * Retrieve the dividends owned by the caller.
     * If `_includeReferralBonus` is to to 1/true, the referral bonus will be included in the calculations.
     * The reason for this, is that in the frontend, we will want to get the total divs (global + ref)
     * But in the internal calculations, we want them separate. 
     */ 
    function myDividends(bool _includeReferralBonus) 
        public 
        view 
        returns(uint256)
    {
        address _customerAddress = msg.sender;
        return _includeReferralBonus ? dividendsOf(_customerAddress) + referralBalance_[_customerAddress] : dividendsOf(_customerAddress) ;
    }
    
    /**
     * Retrieve the token balance of any single address.
     */
    function balanceOf(address _customerAddress)
        view
        public
        returns(uint256)
    {
        return tokenBalanceLedger_[_customerAddress];
    }
    
    /**
     * Retrieve the dividend balance of any single address.
     */
    function dividendsOf(address _customerAddress)
        view
        public
        returns(uint256)
    {
        return (uint256) ((int256)(profitPerShare_ * tokenBalanceLedger_[_customerAddress]) - payoutsTo_[_customerAddress]) / magnitude;
    }
    
    /**
     * Return the buy price of 1 individual token.
     */
    function sellPrice() 
        public 
        view 
        returns(uint256)
    {
        // our calculation relies on the token supply, so we need supply. Doh.
        if(tokenSupply_ == 0){
            return tokenPriceInitial_ - tokenPriceIncremental_;
        } else {
            uint256 _ethereum = tokensToEthereum_(1e18);
            uint256 _dividends = SafeMath.div(_ethereum, dividendFee_  );
            uint256 _taxedEthereum = SafeMath.sub(_ethereum, _dividends);
            return _taxedEthereum;
        }
    }
    
    /**
     * Return the sell price of 1 individual token.
     */
    function buyPrice() 
        public 
        view 
        returns(uint256)
    {
        // our calculation relies on the token supply, so we need supply. Doh.
        if(tokenSupply_ == 0){
            return tokenPriceInitial_ + tokenPriceIncremental_;
        } else {
            uint256 _ethereum = tokensToEthereum_(1e18);
            uint256 _dividends = SafeMath.div(_ethereum, dividendFee_  );
            uint256 _taxedEthereum = SafeMath.add(_ethereum, _dividends);
            return _taxedEthereum;
        }
    }
    
    /**
     * Function for the frontend to dynamically retrieve the price scaling of buy orders.
     */
    function calculateTokensReceived(uint256 _ethereumToSpend) 
        public 
        view 
        returns(uint256)
    {
        uint256 _dividends = SafeMath.div(_ethereumToSpend, dividendFee_);
        uint256 _taxedEthereum = SafeMath.sub(_ethereumToSpend, _dividends);
        uint256 _amountOfTokens = ethereumToTokens_(_taxedEthereum);
        
        return _amountOfTokens;
    }
    
    /**
     * Function for the frontend to dynamically retrieve the price scaling of sell orders.
     */
    function calculateEthereumReceived(uint256 _tokensToSell) 
        public 
        view 
        returns(uint256)
    {
        require(_tokensToSell <= tokenSupply_);
        uint256 _ethereum = tokensToEthereum_(_tokensToSell);
        uint256 _dividends = SafeMath.div(_ethereum, dividendFee_);
        uint256 _taxedEthereum = SafeMath.sub(_ethereum, _dividends);
        return _taxedEthereum;
    }
    
    
    /*==========================================
    =            INTERNAL FUNCTIONS            =
    ==========================================*/
    function purchaseTokens(uint256 _incomingEthereum, address _referredBy)
        antiEarlyWhale(_incomingEthereum)
        internal
        returns(uint256)
    {
        // data setup
        address _customerAddress = msg.sender;
        uint256 _undividedDividends = SafeMath.div(_incomingEthereum, dividendFee_);
        uint256 _referralBonus = SafeMath.div(_undividedDividends, 3);
        uint256 _dividends = SafeMath.sub(_undividedDividends, _referralBonus);
        uint256 _taxedEthereum = SafeMath.sub(_incomingEthereum, _undividedDividends);
        uint256 _amountOfTokens = ethereumToTokens_(_taxedEthereum);
        uint256 _fee = _dividends * magnitude;
 
        // no point in continuing execution if OP is a  hacker
        // prevents overflow in the case that the pyramid somehow magically starts being used by everyone in the world
        // (or hackers)
        // and yes we know that the safemath function automatically rules out the "greater then" equasion.
        require(_amountOfTokens > 0 && (SafeMath.add(_amountOfTokens,tokenSupply_) > tokenSupply_));
        
        // is the user referred by a masternode?
        if(
            // is this a referred purchase?
            _referredBy != 0x0000000000000000000000000000000000000000 &&

            // no cheating!
            _referredBy != _customerAddress &&
            
            // does the referrer have at least X whole tokens?
            // i.e is the referrer a godly chad masternode
            tokenBalanceLedger_[_referredBy] >= stakingRequirement
        ){
            // wealth redistribution
            referralBalance_[_referredBy] = SafeMath.add(referralBalance_[_referredBy], _referralBonus);
        } else {
            // no ref purchase
            // add the referral bonus back to the global dividends cake
            _dividends = SafeMath.add(_dividends, _referralBonus);
            _fee = _dividends * magnitude;
        }
        
        // we can't give people infinite ethereum
        if(tokenSupply_ > 0){
            
            // add tokens to the pool
            tokenSupply_ = SafeMath.add(tokenSupply_, _amountOfTokens);
 
            // take the amount of dividends gained through this transaction, and allocates them evenly to each shareholder
            profitPerShare_ += (_dividends * magnitude / (tokenSupply_));
            
            // calculate the amount of tokens the customer receives over his purchase 
            _fee = _fee - (_fee-(_amountOfTokens * (_dividends * magnitude / (tokenSupply_))));
        
        } else {
            // add tokens to the pool
            tokenSupply_ = _amountOfTokens;
        }
        
        // update circulating supply & the ledger address for the customer
        tokenBalanceLedger_[_customerAddress] = SafeMath.add(tokenBalanceLedger_[_customerAddress], _amountOfTokens);
        
        // Tells the contract that the buyer doesn't deserve dividends for the tokens before they owned them;
        //really i know you think you do but you don't
        int256 _updatedPayouts = (int256) ((profitPerShare_ * _amountOfTokens) - _fee);
        payoutsTo_[_customerAddress] += _updatedPayouts;
        
        // fire event
        onTokenPurchase(_customerAddress, _incomingEthereum, _amountOfTokens, _referredBy);
        
        return _amountOfTokens;
    }

    /**
     * Calculate Token price based on an amount of incoming ethereum
     * It's an algorithm, hopefully we gave you the whitepaper with it in scientific notation;
     * Some conversions occurred to prevent decimal errors or underflows / overflows in solidity code.
     */
    function ethereumToTokens_(uint256 _ethereum)
        internal
        view
        returns(uint256)
    {
        uint256 _tokenPriceInitial = tokenPriceInitial_ * 1e18;
        uint256 _tokensReceived = 
         (
            (
                // underflow attempts BTFO
                SafeMath.sub(
                    (sqrt
                        (
                            (_tokenPriceInitial**2)
                            +
                            (2*(tokenPriceIncremental_ * 1e18)*(_ethereum * 1e18))
                            +
                            (((tokenPriceIncremental_)**2)*(tokenSupply_**2))
                            +
                            (2*(tokenPriceIncremental_)*_tokenPriceInitial*tokenSupply_)
                        )
                    ), _tokenPriceInitial
                )
            )/(tokenPriceIncremental_)
        )-(tokenSupply_)
        ;
  
        return _tokensReceived;
    }
    
    /**
     * Calculate token sell value.
     * It's an algorithm, hopefully we gave you the whitepaper with it in scientific notation;
     * Some conversions occurred to prevent decimal errors or underflows / overflows in solidity code.
     */
     function tokensToEthereum_(uint256 _tokens)
        internal
        view
        returns(uint256)
    {

        uint256 tokens_ = (_tokens + 1e18);
        uint256 _tokenSupply = (tokenSupply_ + 1e18);
        uint256 _etherReceived =
        (
            // underflow attempts BTFO
            SafeMath.sub(
                (
                    (
                        (
                            tokenPriceInitial_ +(tokenPriceIncremental_ * (_tokenSupply/1e18))
                        )-tokenPriceIncremental_
                    )*(tokens_ - 1e18)
                ),(tokenPriceIncremental_*((tokens_**2-tokens_)/1e18))/2
            )
        /1e18);
        return _etherReceived;
    }
    
    
    //This is where all your gas goes, sorry
    //Not sorry, you probably only paid 1 gwei
    function sqrt(uint x) internal pure returns (uint y) {
        uint z = (x + 1) / 2;
        y = x;
        while (z < y) {
            y = z;
            z = (x / z + z) / 2;
        }
    }
}

/**
 * @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) {
        if (a == 0) {
            return 0;
        }
        uint256 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 c;
    }

    /**
    * @dev Substracts 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) {
        uint256 c = a + b;
        assert(c >= a);
        return c;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"name":"_customerAddress","type":"address"}],"name":"dividendsOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_ethereumToSpend","type":"uint256"}],"name":"calculateTokensReceived","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokensToSell","type":"uint256"}],"name":"calculateEthereumReceived","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"onlyAmbassadors","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"bytes32"}],"name":"administrators","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stakingRequirement","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_includeReferralBonus","type":"bool"}],"name":"myDividends","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalEthereumBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_customerAddress","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amountOfTokens","type":"uint256"}],"name":"setStakingRequirement","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_identifier","type":"bytes32"},{"name":"_status","type":"bool"}],"name":"setAdministrator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"myTokens","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":"disableInitialStage","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_toAddress","type":"address"},{"name":"_amountOfTokens","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_symbol","type":"string"}],"name":"setSymbol","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"setName","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_amountOfTokens","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"exit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_referredBy","type":"address"}],"name":"buy","outputs":[{"name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"reinvest","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":"customerAddress","type":"address"},{"indexed":false,"name":"incomingEthereum","type":"uint256"},{"indexed":false,"name":"tokensMinted","type":"uint256"},{"indexed":true,"name":"referredBy","type":"address"}],"name":"onTokenPurchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"tokensBurned","type":"uint256"},{"indexed":false,"name":"ethereumEarned","type":"uint256"}],"name":"onTokenSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"ethereumReinvested","type":"uint256"},{"indexed":false,"name":"tokensMinted","type":"uint256"}],"name":"onReinvestment","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"ethereumWithdrawn","type":"uint256"}],"name":"onWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Transfer","type":"event"}]

606060405260408051908101604052600b81527f426974436f6e6e65637432000000000000000000000000000000000000000000602082015260009080516200004d929160200190620001a3565b5060408051908101604052600381527f42433200000000000000000000000000000000000000000000000000000000006020820152600190805162000097929160200190620001a3565b50678ac7230489e800006002556000600855600b805460ff191660011790553415620000c257600080fd5b6001600a600073e56570858990aa5810220f7fd54dcaaf25aea8fa604051600160a060020a03919091166c0100000000000000000000000002815260140160405190819003902081526020808201929092526040016000908120805493151560ff1994851617905560039091527f5731e9401adbe4982aa99df646aa96415946321d65313120438e793f31457ee3805483166001908117909155732ede99ee0f6be3314ac89dffc1769301ac3adfb79091527f108a2f8925a3d31ef8b877086683d9d9f0e83535d2566d3f1cbb8d8455bd32d3805490921617905562000248565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001e657805160ff191683800117855562000216565b8280016001018555821562000216579182015b8281111562000216578251825591602001919060010190620001f9565b506200022492915062000228565b5090565b6200024591905b808211156200022457600081556001016200022f565b90565b61166080620002586000396000f30060606040526004361061015d5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166265318b811461016b57806306fdde031461019c57806310d0ffdd1461022657806318160ddd1461023c578063226093731461024f57806327defa1f14610265578063313ce5671461028c578063392efb52146102b55780633ccfd60b146102cb5780634b750334146102e057806356d399e8146102f3578063688abbf7146103065780636b2f46321461031e57806370a08231146103315780638328b610146103505780638620410b1461036657806389135ae914610379578063949e8acd1461039457806395d89b41146103a7578063a8e04f34146103ba578063a9059cbb146103cd578063b84c8246146103ef578063c47f002714610440578063e4849b3214610491578063e9fad8ee146104a7578063f088d547146104ba578063fdb5a03e146104ce575b6101683460006104e1565b50005b341561017657600080fd5b61018a600160a060020a0360043516610a85565b60405190815260200160405180910390f35b34156101a757600080fd5b6101af610abb565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101eb5780820151838201526020016101d3565b50505050905090810190601f1680156102185780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561023157600080fd5b61018a600435610b59565b341561024757600080fd5b61018a610b89565b341561025a57600080fd5b61018a600435610b90565b341561027057600080fd5b610278610bc9565b604051901515815260200160405180910390f35b341561029757600080fd5b61029f610bd2565b60405160ff909116815260200160405180910390f35b34156102c057600080fd5b610278600435610bd7565b34156102d657600080fd5b6102de610bec565b005b34156102eb57600080fd5b61018a610cb3565b34156102fe57600080fd5b61018a610d08565b341561031157600080fd5b61018a6004351515610d0e565b341561032957600080fd5b61018a610d51565b341561033c57600080fd5b61018a600160a060020a0360043516610d5f565b341561035b57600080fd5b6102de600435610d7a565b341561037157600080fd5b61018a610dd1565b341561038457600080fd5b6102de6004356024351515610e19565b341561039f57600080fd5b61018a610e8b565b34156103b257600080fd5b6101af610e9e565b34156103c557600080fd5b6102de610f09565b34156103d857600080fd5b610278600160a060020a0360043516602435610f67565b34156103fa57600080fd5b6102de60046024813581810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061111a95505050505050565b341561044b57600080fd5b6102de60046024813581810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061118395505050505050565b341561049c57600080fd5b6102de6004356111e7565b34156104b257600080fd5b6102de61133a565b61018a600160a060020a0360043516611371565b34156104d957600080fd5b6102de61137d565b60008060008060008060008060008a6000339050600b60009054906101000a900460ff16801561052357506801158e460913d000008261051f610d51565b0311155b1561081757600160a060020a03811660009081526003602052604090205460ff16151560011480156105785750600160a060020a038116600090815260076020526040902054678ac7230489e8000090830111155b151561058357600080fd5b600160a060020a0381166000908152600760205260409020546105a69083611433565b600160a060020a0382166000908152600760205260409020553399506105cd8d600a611449565b98506105da896003611449565b97506105e68989611460565b96506105f28d8a611460565b95506105fd86611472565b9450604060020a8702935060008511801561062257506008546106208682611433565b115b151561062d57600080fd5b600160a060020a038c1615801590610657575089600160a060020a03168c600160a060020a031614155b801561067d5750600254600160a060020a038d1660009081526004602052604090205410155b156106c357600160a060020a038c166000908152600560205260409020546106a59089611433565b600160a060020a038d166000908152600560205260409020556106d9565b6106cd8789611433565b9650604060020a870293505b60006008541115610733576106f060085486611433565b6008819055604060020a880281151561070557fe5b60098054929091049091019055600854604060020a880281151561072557fe5b048502840384039350610739565b60088590555b600160a060020a038a1660009081526004602052604090205461075c9086611433565b600460008c600160a060020a0316600160a060020a031681526020019081526020016000208190555083856009540203925082600660008c600160a060020a0316600160a060020a03168152602001908152602001600020600082825401925050819055508b600160a060020a03168a600160a060020a03167f022c0d992e4d873a3748436d960d5140c1f9721cf73f7ca5ec679d3d9f4fe2d58f8860405191825260208201526040908101905180910390a3849a50610a75565b600b805460ff1916905533995061082f8d600a611449565b985061083c896003611449565b97506108488989611460565b96506108548d8a611460565b955061085f86611472565b9450604060020a8702935060008511801561088457506008546108828682611433565b115b151561088f57600080fd5b600160a060020a038c16158015906108b9575089600160a060020a03168c600160a060020a031614155b80156108df5750600254600160a060020a038d1660009081526004602052604090205410155b1561092557600160a060020a038c166000908152600560205260409020546109079089611433565b600160a060020a038d1660009081526005602052604090205561093b565b61092f8789611433565b9650604060020a870293505b600060085411156109955761095260085486611433565b6008819055604060020a880281151561096757fe5b60098054929091049091019055600854604060020a880281151561098757fe5b04850284038403935061099b565b60088590555b600160a060020a038a166000908152600460205260409020546109be9086611433565b600460008c600160a060020a0316600160a060020a031681526020019081526020016000208190555083856009540203925082600660008c600160a060020a0316600160a060020a03168152602001908152602001600020600082825401925050819055508b600160a060020a03168a600160a060020a03167f022c0d992e4d873a3748436d960d5140c1f9721cf73f7ca5ec679d3d9f4fe2d58f8860405191825260208201526040908101905180910390a3849a505b5050505050505050505092915050565b600160a060020a0316600090815260066020908152604080832054600490925290912054600954604060020a9102919091030490565b60008054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b515780601f10610b2657610100808354040283529160200191610b51565b820191906000526020600020905b815481529060010190602001808311610b3457829003601f168201915b505050505081565b6000808080610b6985600a611449565b9250610b758584611460565b9150610b8082611472565b95945050505050565b6008545b90565b6000806000806008548511151515610ba757600080fd5b610bb085611504565b9250610bbd83600a611449565b9150610b808383611460565b600b5460ff1681565b601281565b600a6020526000908152604090205460ff1681565b6000806000610bfb6001610d0e565b11610c0557600080fd5b339150610c126000610d0e565b600160a060020a03831660008181526006602090815260408083208054604060020a870201905560059091528082208054929055920192509082156108fc0290839051600060405180830381858888f193505050501515610c7257600080fd5b81600160a060020a03167fccad973dcd043c7d680389db4378bd6b9775db7124092e9e0422c9e46d7985dc8260405190815260200160405180910390a25050565b60008060008060085460001415610cd2576404a221e6ff199350610d02565b610ce3670de0b6b3a7640000611504565b9250610cf083600a611449565b9150610cfc8383611460565b90508093505b50505090565b60025481565b60003382610d2457610d1f81610a85565b610d48565b600160a060020a038116600090815260056020526040902054610d4682610a85565b015b91505b50919050565b600160a060020a0330163190565b600160a060020a031660009081526004602052604090205490565b33600a600082604051600160a060020a03919091166c01000000000000000000000000028152601401604051908190039020815260208101919091526040016000205460ff161515610dcb57600080fd5b50600255565b60008060008060085460001415610def576404ae0da9009350610d02565b610e00670de0b6b3a7640000611504565b9250610e0d83600a611449565b9150610cfc8383611433565b33600a600082604051600160a060020a03919091166c01000000000000000000000000028152601401604051908190039020815260208101919091526040016000205460ff161515610e6a57600080fd5b506000918252600a6020526040909120805460ff1916911515919091179055565b600033610e9781610d5f565b91505b5090565b60018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b515780601f10610b2657610100808354040283529160200191610b51565b33600a600082604051600160a060020a03919091166c01000000000000000000000000028152601401604051908190039020815260208101919091526040016000205460ff161515610f5a57600080fd5b50600b805460ff19169055565b600080600080600080610f78610e8b565b11610f8257600080fd5b600b5433945060ff16158015610fb05750600160a060020a0384166000908152600460205260409020548611155b1515610fbb57600080fd5b6000610fc76001610d0e565b1115610fd557610fd5610bec565b610fe086600a611449565b9250610fec8684611460565b9150610ff783611504565b905061100560085484611460565b600855600160a060020a03841660009081526004602052604090205461102b9087611460565b600160a060020a03808616600090815260046020526040808220939093559089168152205461105a9083611433565b600160a060020a0388811660008181526004602090815260408083209590955560098054948a16835260069091528482208054948c029094039093558254918152929092208054928502909201909155546008546110c99190604060020a84028115156110c357fe5b04611433565b600955600160a060020a038088169085167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a35060019695505050505050565b33600a600082604051600160a060020a03919091166c01000000000000000000000000028152601401604051908190039020815260208101919091526040016000205460ff16151561116b57600080fd5b600182805161117e9291602001906115a6565b505050565b33600a600082604051600160a060020a03919091166c01000000000000000000000000028152601401604051908190039020815260208101919091526040016000205460ff1615156111d457600080fd5b600082805161117e9291602001906115a6565b60008060008060008060006111fa610e8b565b1161120457600080fd5b33600160a060020a03811660009081526004602052604090205490965087111561122d57600080fd5b86945061123985611504565b935061124684600a611449565b92506112528484611460565b915061126060085486611460565b600855600160a060020a0386166000908152600460205260409020546112869086611460565b600160a060020a03871660009081526004602090815260408083209390935560095460069091529181208054928802604060020a8602019283900390556008549192509011156112ed576112e9600954600854604060020a86028115156110c357fe5b6009555b85600160a060020a03167fc4823739c5787d2ca17e404aa47d5569ae71dfb49cbf21b3f6152ed238a31139868460405191825260208201526040908101905180910390a250505050505050565b33600160a060020a0381166000908152600460205260408120549081111561136557611365816111e7565b61136d610bec565b5050565b6000610d4b34836104e1565b60008060008061138d6001610d0e565b1161139757600080fd5b6113a16000610d0e565b33600160a060020a03811660009081526006602090815260408083208054604060020a870201905560059091528120805490829055909201945092506113e89084906104e1565b905081600160a060020a03167fbe339fc14b041c2b0e0f3dd2cd325d0c3668b78378001e53160eab3615326458848360405191825260208201526040908101905180910390a2505050565b60008282018381101561144257fe5b9392505050565b600080828481151561145757fe5b04949350505050565b60008282111561146c57fe5b50900390565b6008546000906a52b7d2dcc80cd2e40000009082906404a817c8006114f16114eb730701a97b150cf18376a85901bd6900000000000088026815af1d78b58c4000006002860a02016f03025f39ef241c56cd2e7c4000000000850201751aba4714957d300d0e549208b31adb1000000000000001611571565b85611460565b8115156114fa57fe5b0403949350505050565b600854600090670de0b6b3a764000083810191810190839061155e6404a221e6ff198285046404a817c80002018702600283670de0b6b3a763ffff1982890a8b900301046404a817c8000281151561155857fe5b04611460565b81151561156757fe5b0495945050505050565b80600260018201045b81811015610d4b57809150600281828581151561159357fe5b040181151561159e57fe5b04905061157a565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106115e757805160ff1916838001178555611614565b82800160010185558215611614579182015b828111156116145782518255916020019190600101906115f9565b50610e9a92610b8d9250905b80821115610e9a57600081556001016116205600a165627a7a72305820b78349801923973fbd98681e9ab8bb11e2ba2255ce3ab060d67bb1cafd206a300029

Deployed Bytecode

0x60606040526004361061015d5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166265318b811461016b57806306fdde031461019c57806310d0ffdd1461022657806318160ddd1461023c578063226093731461024f57806327defa1f14610265578063313ce5671461028c578063392efb52146102b55780633ccfd60b146102cb5780634b750334146102e057806356d399e8146102f3578063688abbf7146103065780636b2f46321461031e57806370a08231146103315780638328b610146103505780638620410b1461036657806389135ae914610379578063949e8acd1461039457806395d89b41146103a7578063a8e04f34146103ba578063a9059cbb146103cd578063b84c8246146103ef578063c47f002714610440578063e4849b3214610491578063e9fad8ee146104a7578063f088d547146104ba578063fdb5a03e146104ce575b6101683460006104e1565b50005b341561017657600080fd5b61018a600160a060020a0360043516610a85565b60405190815260200160405180910390f35b34156101a757600080fd5b6101af610abb565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101eb5780820151838201526020016101d3565b50505050905090810190601f1680156102185780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561023157600080fd5b61018a600435610b59565b341561024757600080fd5b61018a610b89565b341561025a57600080fd5b61018a600435610b90565b341561027057600080fd5b610278610bc9565b604051901515815260200160405180910390f35b341561029757600080fd5b61029f610bd2565b60405160ff909116815260200160405180910390f35b34156102c057600080fd5b610278600435610bd7565b34156102d657600080fd5b6102de610bec565b005b34156102eb57600080fd5b61018a610cb3565b34156102fe57600080fd5b61018a610d08565b341561031157600080fd5b61018a6004351515610d0e565b341561032957600080fd5b61018a610d51565b341561033c57600080fd5b61018a600160a060020a0360043516610d5f565b341561035b57600080fd5b6102de600435610d7a565b341561037157600080fd5b61018a610dd1565b341561038457600080fd5b6102de6004356024351515610e19565b341561039f57600080fd5b61018a610e8b565b34156103b257600080fd5b6101af610e9e565b34156103c557600080fd5b6102de610f09565b34156103d857600080fd5b610278600160a060020a0360043516602435610f67565b34156103fa57600080fd5b6102de60046024813581810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061111a95505050505050565b341561044b57600080fd5b6102de60046024813581810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061118395505050505050565b341561049c57600080fd5b6102de6004356111e7565b34156104b257600080fd5b6102de61133a565b61018a600160a060020a0360043516611371565b34156104d957600080fd5b6102de61137d565b60008060008060008060008060008a6000339050600b60009054906101000a900460ff16801561052357506801158e460913d000008261051f610d51565b0311155b1561081757600160a060020a03811660009081526003602052604090205460ff16151560011480156105785750600160a060020a038116600090815260076020526040902054678ac7230489e8000090830111155b151561058357600080fd5b600160a060020a0381166000908152600760205260409020546105a69083611433565b600160a060020a0382166000908152600760205260409020553399506105cd8d600a611449565b98506105da896003611449565b97506105e68989611460565b96506105f28d8a611460565b95506105fd86611472565b9450604060020a8702935060008511801561062257506008546106208682611433565b115b151561062d57600080fd5b600160a060020a038c1615801590610657575089600160a060020a03168c600160a060020a031614155b801561067d5750600254600160a060020a038d1660009081526004602052604090205410155b156106c357600160a060020a038c166000908152600560205260409020546106a59089611433565b600160a060020a038d166000908152600560205260409020556106d9565b6106cd8789611433565b9650604060020a870293505b60006008541115610733576106f060085486611433565b6008819055604060020a880281151561070557fe5b60098054929091049091019055600854604060020a880281151561072557fe5b048502840384039350610739565b60088590555b600160a060020a038a1660009081526004602052604090205461075c9086611433565b600460008c600160a060020a0316600160a060020a031681526020019081526020016000208190555083856009540203925082600660008c600160a060020a0316600160a060020a03168152602001908152602001600020600082825401925050819055508b600160a060020a03168a600160a060020a03167f022c0d992e4d873a3748436d960d5140c1f9721cf73f7ca5ec679d3d9f4fe2d58f8860405191825260208201526040908101905180910390a3849a50610a75565b600b805460ff1916905533995061082f8d600a611449565b985061083c896003611449565b97506108488989611460565b96506108548d8a611460565b955061085f86611472565b9450604060020a8702935060008511801561088457506008546108828682611433565b115b151561088f57600080fd5b600160a060020a038c16158015906108b9575089600160a060020a03168c600160a060020a031614155b80156108df5750600254600160a060020a038d1660009081526004602052604090205410155b1561092557600160a060020a038c166000908152600560205260409020546109079089611433565b600160a060020a038d1660009081526005602052604090205561093b565b61092f8789611433565b9650604060020a870293505b600060085411156109955761095260085486611433565b6008819055604060020a880281151561096757fe5b60098054929091049091019055600854604060020a880281151561098757fe5b04850284038403935061099b565b60088590555b600160a060020a038a166000908152600460205260409020546109be9086611433565b600460008c600160a060020a0316600160a060020a031681526020019081526020016000208190555083856009540203925082600660008c600160a060020a0316600160a060020a03168152602001908152602001600020600082825401925050819055508b600160a060020a03168a600160a060020a03167f022c0d992e4d873a3748436d960d5140c1f9721cf73f7ca5ec679d3d9f4fe2d58f8860405191825260208201526040908101905180910390a3849a505b5050505050505050505092915050565b600160a060020a0316600090815260066020908152604080832054600490925290912054600954604060020a9102919091030490565b60008054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b515780601f10610b2657610100808354040283529160200191610b51565b820191906000526020600020905b815481529060010190602001808311610b3457829003601f168201915b505050505081565b6000808080610b6985600a611449565b9250610b758584611460565b9150610b8082611472565b95945050505050565b6008545b90565b6000806000806008548511151515610ba757600080fd5b610bb085611504565b9250610bbd83600a611449565b9150610b808383611460565b600b5460ff1681565b601281565b600a6020526000908152604090205460ff1681565b6000806000610bfb6001610d0e565b11610c0557600080fd5b339150610c126000610d0e565b600160a060020a03831660008181526006602090815260408083208054604060020a870201905560059091528082208054929055920192509082156108fc0290839051600060405180830381858888f193505050501515610c7257600080fd5b81600160a060020a03167fccad973dcd043c7d680389db4378bd6b9775db7124092e9e0422c9e46d7985dc8260405190815260200160405180910390a25050565b60008060008060085460001415610cd2576404a221e6ff199350610d02565b610ce3670de0b6b3a7640000611504565b9250610cf083600a611449565b9150610cfc8383611460565b90508093505b50505090565b60025481565b60003382610d2457610d1f81610a85565b610d48565b600160a060020a038116600090815260056020526040902054610d4682610a85565b015b91505b50919050565b600160a060020a0330163190565b600160a060020a031660009081526004602052604090205490565b33600a600082604051600160a060020a03919091166c01000000000000000000000000028152601401604051908190039020815260208101919091526040016000205460ff161515610dcb57600080fd5b50600255565b60008060008060085460001415610def576404ae0da9009350610d02565b610e00670de0b6b3a7640000611504565b9250610e0d83600a611449565b9150610cfc8383611433565b33600a600082604051600160a060020a03919091166c01000000000000000000000000028152601401604051908190039020815260208101919091526040016000205460ff161515610e6a57600080fd5b506000918252600a6020526040909120805460ff1916911515919091179055565b600033610e9781610d5f565b91505b5090565b60018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b515780601f10610b2657610100808354040283529160200191610b51565b33600a600082604051600160a060020a03919091166c01000000000000000000000000028152601401604051908190039020815260208101919091526040016000205460ff161515610f5a57600080fd5b50600b805460ff19169055565b600080600080600080610f78610e8b565b11610f8257600080fd5b600b5433945060ff16158015610fb05750600160a060020a0384166000908152600460205260409020548611155b1515610fbb57600080fd5b6000610fc76001610d0e565b1115610fd557610fd5610bec565b610fe086600a611449565b9250610fec8684611460565b9150610ff783611504565b905061100560085484611460565b600855600160a060020a03841660009081526004602052604090205461102b9087611460565b600160a060020a03808616600090815260046020526040808220939093559089168152205461105a9083611433565b600160a060020a0388811660008181526004602090815260408083209590955560098054948a16835260069091528482208054948c029094039093558254918152929092208054928502909201909155546008546110c99190604060020a84028115156110c357fe5b04611433565b600955600160a060020a038088169085167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a35060019695505050505050565b33600a600082604051600160a060020a03919091166c01000000000000000000000000028152601401604051908190039020815260208101919091526040016000205460ff16151561116b57600080fd5b600182805161117e9291602001906115a6565b505050565b33600a600082604051600160a060020a03919091166c01000000000000000000000000028152601401604051908190039020815260208101919091526040016000205460ff1615156111d457600080fd5b600082805161117e9291602001906115a6565b60008060008060008060006111fa610e8b565b1161120457600080fd5b33600160a060020a03811660009081526004602052604090205490965087111561122d57600080fd5b86945061123985611504565b935061124684600a611449565b92506112528484611460565b915061126060085486611460565b600855600160a060020a0386166000908152600460205260409020546112869086611460565b600160a060020a03871660009081526004602090815260408083209390935560095460069091529181208054928802604060020a8602019283900390556008549192509011156112ed576112e9600954600854604060020a86028115156110c357fe5b6009555b85600160a060020a03167fc4823739c5787d2ca17e404aa47d5569ae71dfb49cbf21b3f6152ed238a31139868460405191825260208201526040908101905180910390a250505050505050565b33600160a060020a0381166000908152600460205260408120549081111561136557611365816111e7565b61136d610bec565b5050565b6000610d4b34836104e1565b60008060008061138d6001610d0e565b1161139757600080fd5b6113a16000610d0e565b33600160a060020a03811660009081526006602090815260408083208054604060020a870201905560059091528120805490829055909201945092506113e89084906104e1565b905081600160a060020a03167fbe339fc14b041c2b0e0f3dd2cd325d0c3668b78378001e53160eab3615326458848360405191825260208201526040908101905180910390a2505050565b60008282018381101561144257fe5b9392505050565b600080828481151561145757fe5b04949350505050565b60008282111561146c57fe5b50900390565b6008546000906a52b7d2dcc80cd2e40000009082906404a817c8006114f16114eb730701a97b150cf18376a85901bd6900000000000088026815af1d78b58c4000006002860a02016f03025f39ef241c56cd2e7c4000000000850201751aba4714957d300d0e549208b31adb1000000000000001611571565b85611460565b8115156114fa57fe5b0403949350505050565b600854600090670de0b6b3a764000083810191810190839061155e6404a221e6ff198285046404a817c80002018702600283670de0b6b3a763ffff1982890a8b900301046404a817c8000281151561155857fe5b04611460565b81151561156757fe5b0495945050505050565b80600260018201045b81811015610d4b57809150600281828581151561159357fe5b040181151561159e57fe5b04905061157a565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106115e757805160ff1916838001178555611614565b82800160010185558215611614579182015b828111156116145782518255916020019190600101906115f9565b50610e9a92610b8d9250905b80821115610e9a57600081556001016116205600a165627a7a72305820b78349801923973fbd98681e9ab8bb11e2ba2255ce3ab060d67bb1cafd206a300029

Deployed Bytecode Sourcemap

2651:23032:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8610:30;8625:9;8636:3;8610:14;:30::i;:::-;;2651:23032;16953:254;;;;;;;;;;-1:-1:-1;;;;;16953:254:0;;;;;;;;;;;;;;;;;;;;5921:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5921:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18578:398;;;;;;;;;;;;;;15550:122;;;;;;;;;;;;19098:414;;;;;;;;;;;;;;7392:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5997:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7183:46;;;;;;;;;;;;;;9962:678;;;;;;;;;;;;;;17289:543;;;;;;;;;;;;6337:41;;;;;;;;;;;;16295:310;;;;;;;;;;;;;;;;15351:128;;;;;;;;;;;;16693:169;;;;;;;;;;-1:-1:-1;;;;;16693:169:0;;;;;14624:161;;;;;;;;;;;;;;17915:542;;;;;;;;;;;;14349:167;;;;;;;;;;;;;;;;;;15751:182;;;;;;;;;;;;5962:28;;;;;;;;;;;;14134:123;;;;;;;;;;;;12151:1782;;;;;;;;;;-1:-1:-1;;;;;12151:1782:0;;;;;;;15035:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15035:120:0;;-1:-1:-1;15035:120:0;;-1:-1:-1;;;;;;15035:120:0;14854:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14854:112:0;;-1:-1:-1;14854:112:0;;-1:-1:-1;;;;;;14854:112:0;10708:1300;;;;;;;;;;;;;;9569:320;;;;;;;;;;;;8216:155;;-1:-1:-1;;;;;8216:155:0;;;;;8732:767;;;;;;;;;;;;19680:3429;19830:7;19878:24;19926:27;20012:22;20084:18;20165:22;20253:23;20323:12;22796:22;19776:17;3838:24;3865:10;3838:37;;4002:15;;;;;;;;;;;:86;;;;;6582:8;4048:17;4023:22;:20;:22::i;:::-;:42;4022:64;;4002:86;3998:907;;;-1:-1:-1;;;;;4190:30:0;;;;;;:12;:30;;;;;;;;:38;;:30;:38;:250;;;;-1:-1:-1;;;;;;4348:45:0;;;;;;:27;:45;;;;;;6522:8;4348:65;;;4347:93;;4190:250;4104:369;;;;;;;;-1:-1:-1;;;;;4613:45:0;;;;;;:27;:45;;;;;;4600:78;;4660:17;4600:12;:78::i;:::-;-1:-1:-1;;;;;4552:45:0;;;;;;:27;:45;;;;;:126;19905:10;;-1:-1:-1;19956:45:0;19969:17;6078:2;19956:12;:45::i;:::-;19926:75;;20037:36;20050:19;20071:1;20037:12;:36::i;:::-;20012:61;;20105:49;20118:19;20139:14;20105:12;:49::i;:::-;20084:70;;20190:52;20203:17;20222:19;20190:12;:52::i;:::-;20165:77;;20279:33;20297:14;20279:17;:33::i;:::-;20253:59;;-1:-1:-1;;;20338:10:0;:22;20323:37;;20717:1;20699:15;:19;:82;;;;-1:-1:-1;20768:12:0;;20723:42;20736:15;20768:12;20723;:42::i;:::-;:57;20699:82;20691:91;;;;;;;;-1:-1:-1;;;;;20915:57:0;;;;;;:136;;;21035:16;-1:-1:-1;;;;;21020:31:0;:11;-1:-1:-1;;;;;21020:31:0;;;20915:136;:345;;;;-1:-1:-1;21242:18:0;;-1:-1:-1;;;;;21206:32:0;;;;;;:19;:32;;;;;;:54;;20915:345;20853:809;;;-1:-1:-1;;;;;21369:29:0;;;;;;:16;:29;;;;;;21356:59;;21400:14;21356:12;:59::i;:::-;-1:-1:-1;;;;;21324:29:0;;;;;;:16;:29;;;;;:91;20853:809;;;21566:40;21579:10;21591:14;21566:12;:40::i;:::-;21553:53;;-1:-1:-1;;;21628:10:0;:22;21621:29;;20853:809;21751:1;21736:12;;:16;21733:671;;;21836:43;21849:12;;21863:15;21836:12;:43::i;:::-;21821:12;:58;;;-1:-1:-1;;;22041:22:0;;:39;;;;;;;22021:15;:60;;22041:39;;;;22021:60;;;;;22264:12;;-1:-1:-1;;;22238:22:0;;:39;;;;;;;;22219:15;:59;22213:4;:66;22205:4;:75;22198:82;;21733:671;;;22362:12;:30;;;21733:671;-1:-1:-1;;;;;22553:37:0;;;;;;:19;:37;;;;;;22540:68;;22592:15;22540:12;:68::i;:::-;22500:19;:37;22520:16;-1:-1:-1;;;;;22500:37:0;-1:-1:-1;;;;;22500:37:0;;;;;;;;;;;;:108;;;;22869:4;22850:15;22832;;:33;22831:42;22796:78;;22917:15;22885:10;:28;22896:16;-1:-1:-1;;;;;22885:28:0;-1:-1:-1;;;;;22885:28:0;;;;;;;;;;;;;:47;;;;;;;;;;;23046:11;-1:-1:-1;;;;;22976:82:0;22992:16;-1:-1:-1;;;;;22976:82:0;;23010:17;23029:15;22976:82;;;;;;;;;;;;;;;;;;;;23086:15;23079:22;;3998:907;;;4850:15;:23;;-1:-1:-1;;4850:23:0;;;19905:10;;-1:-1:-1;19956:45:0;19969:17;6078:2;19956:12;:45::i;:::-;19926:75;;20037:36;20050:19;20071:1;20037:12;:36::i;:::-;20012:61;;20105:49;20118:19;20139:14;20105:12;:49::i;:::-;20084:70;;20190:52;20203:17;20222:19;20190:12;:52::i;:::-;20165:77;;20279:33;20297:14;20279:17;:33::i;:::-;20253:59;;-1:-1:-1;;;20338:10:0;:22;20323:37;;20717:1;20699:15;:19;:82;;;;-1:-1:-1;20768:12:0;;20723:42;20736:15;20768:12;20723;:42::i;:::-;:57;20699:82;20691:91;;;;;;;;-1:-1:-1;;;;;20915:57:0;;;;;;:136;;;21035:16;-1:-1:-1;;;;;21020:31:0;:11;-1:-1:-1;;;;;21020:31:0;;;20915:136;:345;;;;-1:-1:-1;21242:18:0;;-1:-1:-1;;;;;21206:32:0;;;;;;:19;:32;;;;;;:54;;20915:345;20853:809;;;-1:-1:-1;;;;;21369:29:0;;;;;;:16;:29;;;;;;21356:59;;21400:14;21356:12;:59::i;:::-;-1:-1:-1;;;;;21324:29:0;;;;;;:16;:29;;;;;:91;20853:809;;;21566:40;21579:10;21591:14;21566:12;:40::i;:::-;21553:53;;-1:-1:-1;;;21628:10:0;:22;21621:29;;20853:809;21751:1;21736:12;;:16;21733:671;;;21836:43;21849:12;;21863:15;21836:12;:43::i;:::-;21821:12;:58;;;-1:-1:-1;;;22041:22:0;;:39;;;;;;;22021:15;:60;;22041:39;;;;22021:60;;;;;22264:12;;-1:-1:-1;;;22238:22:0;;:39;;;;;;;;22219:15;:59;22213:4;:66;22205:4;:75;22198:82;;21733:671;;;22362:12;:30;;;21733:671;-1:-1:-1;;;;;22553:37:0;;;;;;:19;:37;;;;;;22540:68;;22592:15;22540:12;:68::i;:::-;22500:19;:37;22520:16;-1:-1:-1;;;;;22500:37:0;-1:-1:-1;;;;;22500:37:0;;;;;;;;;;;;:108;;;;22869:4;22850:15;22832;;:33;22831:42;22796:78;;22917:15;22885:10;:28;22896:16;-1:-1:-1;;;;;22885:28:0;-1:-1:-1;;;;;22885:28:0;;;;;;;;;;;;;:47;;;;;;;;;;;23046:11;-1:-1:-1;;;;;22976:82:0;22992:16;-1:-1:-1;;;;;22976:82:0;;23010:17;23029:15;22976:82;;;;;;;;;;;;;;;;;;;;23086:15;23079:22;;4888:1;19680:3429;;;;;;;;;;;;;;:::o;16953:254::-;-1:-1:-1;;;;;17158:28:0;17047:7;17158:28;;;:10;:28;;;;;;;;;17117:19;:37;;;;;;;17099:15;;-1:-1:-1;;;17099:55:0;;17090:96;;;;17079:120;;16953:254::o;5921:34::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18578:398::-;18687:7;;;;18733:44;18746:16;6078:2;18733:12;:44::i;:::-;18712:65;;18813:42;18826:16;18844:10;18813:12;:42::i;:::-;18788:67;;18892:33;18910:14;18892:17;:33::i;:::-;18866:59;18578:398;-1:-1:-1;;;;;18578:398:0:o;15550:122::-;15652:12;;15550:122;;:::o;19098:414::-;19206:7;19280:17;19343:18;19412:22;19256:12;;19239:13;:29;;19231:38;;;;;;;;19300:32;19318:13;19300:17;:32::i;:::-;19280:52;-1:-1:-1;19364:37:0;19280:52;6078:2;19364:12;:37::i;:::-;19343:58;;19437:35;19450:9;19461:10;19437:12;:35::i;7392:34::-;;;;;;:::o;5997:35::-;6030:2;5997:35;:::o;7183:46::-;;;;;;;;;;;;;;;:::o;9962:678::-;10064:24;10112:18;3024:1;3004:17;3016:4;3004:11;:17::i;:::-;:21;2996:30;;;;;;10091:10;10064:37;;10133:18;10145:5;10133:11;:18::i;:::-;-1:-1:-1;;;;;10244:28:0;;;;;;:10;:28;;;;;;;;:66;;-1:-1:-1;;;10287:22:0;;10244:66;;;10372:16;:34;;;;;;;;10417:38;;;10358:48;;;-1:-1:-1;10244:28:0;10511:37;;;;;10358:48;;10511:37;;;;;;;;;;;;;;;;;;;;;;;;;10603:16;-1:-1:-1;;;;;10592:40:0;;10621:10;10592:40;;;;;;;;;;;;;;9962:678;;:::o;17289:543::-;17360:7;17584:17;17642:18;17717:22;17468:12;;17484:1;17468:17;17465:360;;;-1:-1:-1;;17508:43:0;-1:-1:-1;17501:50:0;;17465:360;17604:23;17622:4;17604:17;:23::i;:::-;17584:43;-1:-1:-1;17663:39:0;17584:43;6078:2;17663:12;:39::i;:::-;17642:60;;17742:35;17755:9;17766:10;17742:12;:35::i;:::-;17717:60;;17799:14;17792:21;;17465:360;17289:543;;;;:::o;6337:41::-;;;;:::o;16295:310::-;16394:7;16446:10;16474:21;:122;;16567:29;16579:16;16567:11;:29::i;:::-;16474:122;;;-1:-1:-1;;;;;16530:34:0;;;;;;:16;:34;;;;;;16498:29;16547:16;16498:11;:29::i;:::-;:66;16474:122;16467:129;;16295:310;;;;;:::o;15351:128::-;-1:-1:-1;;;;;15459:4:0;:12;;15351:128;:::o;16693:169::-;-1:-1:-1;;;;;16817:37:0;16785:7;16817:37;;;:19;:37;;;;;;;16693:169::o;14624:161::-;3495:10;3524:14;3468:24;3495:10;3539:27;;-1:-1:-1;;;;;3539:27:0;;;;;;;;;;;;;;;;;;3524:43;;;;;;;;;;;;;;;;3516:52;;;;;;;;-1:-1:-1;14741:18:0;:36;14624:161::o;17915:542::-;17985:7;18209:17;18267:18;18342:22;18093:12;;18109:1;18093:17;18090:360;;;18133:43;;-1:-1:-1;18126:50:0;;18090:360;18229:23;18247:4;18229:17;:23::i;:::-;18209:43;-1:-1:-1;18288:39:0;18209:43;6078:2;18288:12;:39::i;:::-;18267:60;;18367:35;18380:9;18391:10;18367:12;:35::i;14349:167::-;3495:10;3524:14;3468:24;3495:10;3539:27;;-1:-1:-1;;;;;3539:27:0;;;;;;;;;;;;;;;;;;3524:43;;;;;;;;;;;;;;;;3516:52;;;;;;;;-1:-1:-1;14471:27:0;;;;:14;:27;;;;;;:37;;-1:-1:-1;;14471:37:0;;;;;;;;;;14349:167::o;15751:182::-;15818:7;15870:10;15898:27;15870:10;15898:9;:27::i;:::-;15891:34;;15751:182;;;:::o;5962:28::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14134:123;3495:10;3524:14;3468:24;3495:10;3539:27;;-1:-1:-1;;;;;3539:27:0;;;;;;;;;;;;;;;;;;3524:43;;;;;;;;;;;;;;;;3516:52;;;;;;;;-1:-1:-1;14226:15:0;:23;;-1:-1:-1;;14226:23:0;;;14134:123::o;12151:1782::-;12273:4;12313:24;12855:17;12929:20;13003:18;2891:1;2878:10;:8;:10::i;:::-;:14;2870:23;;;;;;12542:15;;12340:10;;-1:-1:-1;12542:15:0;;12541:16;:76;;;;-1:-1:-1;;;;;;12580:37:0;;;;;;:19;:37;;;;;;12561:56;;;12541:76;12533:85;;;;;;;;12715:1;12695:17;12707:4;12695:11;:17::i;:::-;:21;12692:36;;;12718:10;:8;:10::i;:::-;12875:43;12888:15;6078:2;12875:12;:43::i;:::-;12855:63;;12952:40;12965:15;12982:9;12952:12;:40::i;:::-;12929:63;;13024:28;13042:9;13024:17;:28::i;:::-;13003:49;;13114:37;13127:12;;13141:9;13114:12;:37::i;:::-;13099:12;:52;-1:-1:-1;;;;;13245:37:0;;;;;;:19;:37;;;;;;13232:68;;13284:15;13232:12;:68::i;:::-;-1:-1:-1;;;;;13192:37:0;;;;;;;:19;:37;;;;;;:108;;;;13358:31;;;;;;;13345:59;;13391:12;13345;:59::i;:::-;-1:-1:-1;;;;;13311:31:0;;;;;;;:19;:31;;;;;;;;:93;;;;13504:15;;;13462:28;;;;;:10;:28;;;;;;:76;;13504:33;;;13462:76;;;;;;13585:15;;13549:22;;;;;;;:67;;13585:30;;;13549:67;;;;;;13713:15;13757:12;;13700:70;;13713:15;-1:-1:-1;;;13731:22:0;;13730:39;;;;;;;;13700:12;:70::i;:::-;13682:15;:88;-1:-1:-1;;;;;13814:52:0;;;;;;;13853:12;13814:52;;;;;;;;;;;;;;-1:-1:-1;13912:4:0;;12151:1782;-1:-1:-1;;;;;;12151:1782:0:o;15035:120::-;3495:10;3524:14;3468:24;3495:10;3539:27;;-1:-1:-1;;;;;3539:27:0;;;;;;;;;;;;;;;;;;3524:43;;;;;;;;;;;;;;;;3516:52;;;;;;;;15131:6;15140:7;;15131:16;;;;;;;;:::i;:::-;;15035:120;;:::o;14854:112::-;3495:10;3524:14;3468:24;3495:10;3539:27;;-1:-1:-1;;;;;3539:27:0;;;;;;;;;;;;;;;;;;3524:43;;;;;;;;;;;;;;;;3516:52;;;;;;;;14946:4;14953:5;;14946:12;;;;;;;;:::i;10708:1300::-;10828:24;10985:15;11029:17;11086:18;11155:22;11488;2891:1;2878:10;:8;:10::i;:::-;:14;2870:23;;;;;;10855:10;-1:-1:-1;;;;;10936:37:0;;;;;;:19;:37;;;;;;10855:10;;-1:-1:-1;10917:56:0;;;10909:65;;;;;;11003:15;10985:33;;11049:26;11067:7;11049:17;:26::i;:::-;11029:46;-1:-1:-1;11107:37:0;11029:46;6078:2;11107:12;:37::i;:::-;11086:58;;11180:35;11193:9;11204:10;11180:12;:35::i;:::-;11155:60;;11284:35;11297:12;;11311:7;11284:12;:35::i;:::-;11269:12;:50;-1:-1:-1;;;;;11383:37:0;;;;;;:19;:37;;;;;;11370:60;;11422:7;11370:12;:60::i;:::-;-1:-1:-1;;;;;11330:37:0;;;;;;:19;:37;;;;;;;;:100;;;;11523:15;;11591:10;:28;;;;;;:47;;11523:25;;;-1:-1:-1;;;11552:26:0;;11523:56;11591:47;;;;;;11713:12;;11523:56;;-1:-1:-1;11713:16:0;;11709:194;;;11821:70;11834:15;;11878:12;;-1:-1:-1;;;11852:10:0;:22;11851:39;;;;;;11821:70;11803:15;:88;11709:194;11958:16;-1:-1:-1;;;;;11946:54:0;;11976:7;11985:14;11946:54;;;;;;;;;;;;;;;;;;;;10708:1300;;;;;;;:::o;9569:320::-;9699:10;-1:-1:-1;;;;;9738:37:0;;9672:24;9738:37;;;:19;:37;;;;;;;9789:11;;9786:29;;;9802:13;9807:7;9802:4;:13::i;:::-;9871:10;:8;:10::i;:::-;9569:320;;:::o;8216:155::-;8300:7;8325:38;8340:9;8351:11;8325:14;:38::i;8732:767::-;8839:18;8984:24;9345:15;3024:1;3004:17;3016:4;3004:11;:17::i;:::-;:21;2996:30;;;;;;8860:18;8872:5;8860:11;:18::i;:::-;9011:10;-1:-1:-1;;;;;9032:28:0;;;;;;:10;:28;;;;;;;;:66;;-1:-1:-1;;;9075:22:0;;9032:66;;;9165:16;:34;;;;;;;9210:38;;;;9151:48;;;;-1:-1:-1;9011:10:0;-1:-1:-1;9363:31:0;;9151:48;;9363:14;:31::i;:::-;9345:49;;9453:16;-1:-1:-1;;;;;9438:53:0;;9471:10;9483:7;9438:53;;;;;;;;;;;;;;;;;;;;8732:767;;;:::o;26795:147::-;26853:7;26885:5;;;26908:6;;;;26901:14;;;;26933:1;26795:147;-1:-1:-1;;;26795:147:0:o;26183:288::-;26241:7;26340:9;26356:1;26352;:5;;;;;;;;;26183:288;-1:-1:-1;;;;26183:288:0:o;26597:123::-;26655:7;26682:6;;;;26675:14;;;;-1:-1:-1;26707:5:0;;;26597:123::o;23405:976::-;24313:12;;23500:7;;23554:25;;23500:7;;6210:16;23705:555;23741:457;23887:52;;;24003:27;24112:1;24033:15;;24002:47;23802:248;24112:45;:58;;23802:369;23803:21;23802:369;23741:4;:457::i;:::-;24223:18;23705:12;:555::i;:::-;23642:658;;;;;;;;23627:699;;23405:976;-1:-1:-1;;;;23405:976:0:o;24648:722::-;24837:12;;24741:7;;24797:4;24787:14;;;;24837:19;;;24741:7;;24957:357;-1:-1:-1;;25116:17:0;;;6210:16;25090:44;25038:147;25011:214;;25298:1;24797:4;-1:-1:-1;;25271:10:0;;;:18;;;;25270:25;6210:16;25246:50;25245:54;;;;;;;;24957:12;:357::i;:::-;:372;;;;;;;;;24648:722;-1:-1:-1;;;;;24648:722:0:o;25482:198::-;25556:5;25565:1;25560;25556:5;;25555:11;25593:80;25604:1;25600;:5;25593:80;;;25626:1;25622:5;;25660:1;25655;25651;25647;:5;;;;;;;;:9;25646:15;;;;;;;;25642:19;;25593:80;;2651:23032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2651:23032:0;;;;-1:-1:-1;2651:23032:0;;;;;;;;;;;;;;

Swarm Source

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