ETH Price: $2,446.38 (-1.14%)
 

Overview

Max Total Supply

34,114.061698561319119547 BLUE

Holders

45

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 BLUE

Value
$0.00
0x92aaf957ba0a6b2242fd3b98b31974cbca1c2bcb
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:
BlueChipMain

Compiler Version
v0.4.20+commit.3155dd80

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2019-09-25
*/

/**
*    ___  __           _______   _        ____             __
*   / _ )/ /_ _____   / ___/ /  (_)__    / __/_ _____  ___/ /
*  / _  / / // / -_) / /__/ _ \/ / _ \  / _// // / _ \/ _  / 
* /____/_/\_,_/\__/  \___/_//_/_/ .__/ /_/  \_,_/_//_/\_,_/  
*                              /_/                           
* 
* https://bluechip.fund/
* https://bluechip.fund/exchange
* 
* https://discord.gg/aee8BjR
* https://t.me/bluechipfund
*  
* ====================================*
*
* 20% Dividends:
* - Distributed to BLUE tokenholders proportional to the total BLUE circulating supply
* 
* Real Masternode Referrals:
* - Receive 6% of the total transaction (30% of the 20% generated dividends)
*
* The original autonomous pyramid, improved:
* - Fully Decentralized Earnings Platform. Transparent, Open source Ethereum code
* - More stable than ever, having withstood severe test and mainnet abuse and attack attempts
* - Audited, tested, and approved by known community security specialists and veteran solidity experts
* - Testnet iterations have been deployed; with not a single point of failure found
*
* Still, no guarantees are given. 
* Please be careful and doublecheck when interacting with the contract
* 
*/

pragma solidity ^0.4.20;

/*
* Main Net Version
*/

contract BlueChipMain {
    /*=================================
    =            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 = "Blue Chip Fund";
    string public symbol = "BLUE";
    uint8 constant public decimals = 18;
    uint8 constant internal dividendFee_ = 5;
    uint256 constant internal tokenPriceInitial_ = 0.0000001 ether;
    uint256 constant internal tokenPriceIncremental_ = 0.00000001 ether;
    uint256 constant internal magnitude = 2**64;


    // proof of stake (defaults at 100 tokens)
    uint256 public stakingRequirement = 1e18;
    
    // ambassador program
    mapping(address => bool) internal ambassadors_;
    uint256 constant internal ambassadorMaxPurchase_ = 1.0 ether;
    uint256 constant internal ambassadorQuota_ = 2.0 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 BlueChip()
        public
    {
        // add administrators here
        administrators[keccak256(0xFeFa15424Fd45bAFe123163B2ad8D509c1256256)] = true;
        
        // add the ambassadors here.
        ambassadors_[0x895a6E21AcC9F4e81B77Cf28A6599FF3805dC81e] = true;
        ambassadors_[0xFeFa15424Fd45bAFe123163B2ad8D509c1256256] = 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 poorfag russian 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":false,"inputs":[],"name":"BlueChip","outputs":[],"payable":false,"stateMutability":"nonpayable","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"},{"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"}]

60606040526040805190810160405280600e81526020017f426c756520436869702046756e640000000000000000000000000000000000008152506000908051906020019062000051929190620000de565b506040805190810160405280600481526020017f424c554500000000000000000000000000000000000000000000000000000000815250600190805190602001906200009f929190620000de565b50670de0b6b3a764000060025560006008556001600b60006101000a81548160ff0219169083151502179055503415620000d857600080fd5b6200018d565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200012157805160ff191683800117855562000152565b8280016001018555821562000152579182015b828111156200015157825182559160200191906001019062000134565b5b50905062000161919062000165565b5090565b6200018a91905b80821115620001865760008160009055506001016200016c565b5090565b90565b61252d806200019d6000396000f300606060405260043610610169576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806265318b1461017757806306fdde03146101c457806310d0ffdd1461025257806318160ddd1461028957806322609373146102b257806327defa1f146102e9578063313ce56714610316578063392efb52146103455780633ccfd60b146103845780634b75033414610399578063563252ae146103c257806356d399e8146103d7578063688abbf7146104005780636b2f46321461043957806370a08231146104625780638328b610146104af5780638620410b146104d257806389135ae9146104fb578063949e8acd1461052d57806395d89b4114610556578063a8e04f34146105e4578063a9059cbb146105f9578063b84c824614610653578063c47f0027146106b0578063e4849b321461070d578063e9fad8ee14610730578063f088d54714610745578063fdb5a03e14610787575b61017434600061079c565b50005b341561018257600080fd5b6101ae600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190505061109b565b6040518082815260200191505060405180910390f35b34156101cf57600080fd5b6101d761113d565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102175780820151818401526020810190506101fc565b50505050905090810190601f1680156102445780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561025d57600080fd5b61027360048080359060200190919050506111db565b6040518082815260200191505060405180910390f35b341561029457600080fd5b61029c611213565b6040518082815260200191505060405180910390f35b34156102bd57600080fd5b6102d3600480803590602001909190505061121d565b6040518082815260200191505060405180910390f35b34156102f457600080fd5b6102fc611266565b604051808215151515815260200191505060405180910390f35b341561032157600080fd5b610329611279565b604051808260ff1660ff16815260200191505060405180910390f35b341561035057600080fd5b61036a60048080356000191690602001909190505061127e565b604051808215151515815260200191505060405180910390f35b341561038f57600080fd5b61039761129e565b005b34156103a457600080fd5b6103ac61143b565b6040518082815260200191505060405180910390f35b34156103cd57600080fd5b6103d5611499565b005b34156103e257600080fd5b6103ea61160b565b6040518082815260200191505060405180910390f35b341561040b57600080fd5b61042360048080351515906020019091905050611611565b6040518082815260200191505060405180910390f35b341561044457600080fd5b61044c61167d565b6040518082815260200191505060405180910390f35b341561046d57600080fd5b610499600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190505061169c565b6040518082815260200191505060405180910390f35b34156104ba57600080fd5b6104d060048080359060200190919050506116e5565b005b34156104dd57600080fd5b6104e5611779565b6040518082815260200191505060405180910390f35b341561050657600080fd5b61052b60048080356000191690602001909190803515159060200190919050506117d7565b005b341561053857600080fd5b610540611898565b6040518082815260200191505060405180910390f35b341561056157600080fd5b6105696118ad565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105a957808201518184015260208101905061058e565b50505050905090810190601f1680156105d65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156105ef57600080fd5b6105f761194b565b005b341561060457600080fd5b610639600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919080359060200190919050506119f2565b604051808215151515815260200191505060405180910390f35b341561065e57600080fd5b6106ae600480803590602001908201803590602001908080601f01602080910402602001604051908101604052809392919081815260200183838082843782019150505050505091905050611d24565b005b34156106bb57600080fd5b61070b600480803590602001908201803590602001908080601f01602080910402602001604051908101604052809392919081815260200183838082843782019150505050505091905050611dc8565b005b341561071857600080fd5b61072e6004808035906020019091905050611e6c565b005b341561073b57600080fd5b61074361209a565b005b610771600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050612101565b6040518082815260200191505060405180910390f35b341561079257600080fd5b61079a612113565b005b60008060008060008060008060008a6000339050600b60009054906101000a900460ff1680156107dd5750671bc16d674ec80000826107d961167d565b0311155b15610ccb5760011515600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514801561088b5750670de0b6b3a764000082600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540111155b151561089657600080fd5b6108df600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483612287565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503399506109338d600560ff166122a5565b98506109408960036122a5565b975061094c89896122c0565b96506109588d8a6122c0565b9550610963866122d9565b9450680100000000000000008702935060008511801561098f575060085461098d86600854612287565b115b151561099a57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff1614158015610a0357508973ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff1614155b8015610a505750600254600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410155b15610ae657610a9e600560008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205489612287565b600560008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610b01565b610af08789612287565b965068010000000000000000870293505b60006008541115610b6c57610b1860085486612287565b600881905550600854680100000000000000008802811515610b3657fe5b04600960008282540192505081905550600854680100000000000000008802811515610b5e57fe5b048502840384039350610b74565b846008819055505b610bbd600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205486612287565b600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555083856009540203925082600660008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508b73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167f022c0d992e4d873a3748436d960d5140c1f9721cf73f7ca5ec679d3d9f4fe2d58f88604051808381526020018281526020019250505060405180910390a3849a5061108b565b6000600b60006101000a81548160ff021916908315150217905550339950610cf78d600560ff166122a5565b9850610d048960036122a5565b9750610d1089896122c0565b9650610d1c8d8a6122c0565b9550610d27866122d9565b94506801000000000000000087029350600085118015610d535750600854610d5186600854612287565b115b1515610d5e57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff1614158015610dc757508973ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff1614155b8015610e145750600254600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410155b15610eaa57610e62600560008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205489612287565b600560008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ec5565b610eb48789612287565b965068010000000000000000870293505b60006008541115610f3057610edc60085486612287565b600881905550600854680100000000000000008802811515610efa57fe5b04600960008282540192505081905550600854680100000000000000008802811515610f2257fe5b048502840384039350610f38565b846008819055505b610f81600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205486612287565b600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555083856009540203925082600660008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508b73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167f022c0d992e4d873a3748436d960d5140c1f9721cf73f7ca5ec679d3d9f4fe2d58f88604051808381526020018281526020019250505060405180910390a3849a505b5050505050505050505092915050565b600068010000000000000000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600954020381151561113557fe5b049050919050565b60008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111d35780601f106111a8576101008083540402835291602001916111d3565b820191906000526020600020905b8154815290600101906020018083116111b657829003601f168201915b505050505081565b6000806000806111ef85600560ff166122a5565b92506111fb85846122c0565b9150611206826122d9565b9050809350505050919050565b6000600854905090565b600080600080600854851115151561123457600080fd5b61123d85612366565b925061124d83600560ff166122a5565b915061125983836122c0565b9050809350505050919050565b600b60009054906101000a900460ff1681565b601281565b600a6020528060005260406000206000915054906101000a900460ff1681565b60008060006112ad6001611611565b1115156112b957600080fd5b3391506112c66000611611565b9050680100000000000000008102600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054810190506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015156113e957600080fd5b8173ffffffffffffffffffffffffffffffffffffffff167fccad973dcd043c7d680389db4378bd6b9775db7124092e9e0422c9e46d7985dc826040518082815260200191505060405180910390a25050565b60008060008060006008541415611460576402540be40064174876e800039350611493565b611471670de0b6b3a7640000612366565b925061148183600560ff166122a5565b915061148d83836122c0565b90508093505b50505090565b6001600a600073fefa15424fd45bafe123163b2ad8d509c1256256604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815260140191505060405180910390206000191660001916815260200190815260200160002060006101000a81548160ff02191690831515021790555060016003600073895a6e21acc9f4e81b77cf28a6599ff3805dc81e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016003600073fefa15424fd45bafe123163b2ad8d509c125625673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b60025481565b6000803390508261162a576116258161109b565b611675565b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116738261109b565b015b915050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1631905090565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000339050600a600082604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815260140191505060405180910390206000191660001916815260200190815260200160002060009054906101000a900460ff16151561176e57600080fd5b816002819055505050565b6000806000806000600854141561179e576402540be40064174876e8000193506117d1565b6117af670de0b6b3a7640000612366565b92506117bf83600560ff166122a5565b91506117cb8383612287565b90508093505b50505090565b6000339050600a600082604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815260140191505060405180910390206000191660001916815260200190815260200160002060009054906101000a900460ff16151561186057600080fd5b81600a6000856000191660001916815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b6000803390506118a78161169c565b91505090565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119435780601f1061191857610100808354040283529160200191611943565b820191906000526020600020905b81548152906001019060200180831161192657829003601f168201915b505050505081565b6000339050600a600082604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815260140191505060405180910390206000191660001916815260200190815260200160002060009054906101000a900460ff1615156119d457600080fd5b6000600b60006101000a81548160ff02191690831515021790555050565b600080600080600080611a03611898565b111515611a0f57600080fd5b339350600b60009054906101000a900460ff16158015611a6e5750600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548611155b1515611a7957600080fd5b6000611a856001611611565b1115611a9457611a9361129e565b5b611aa286600560ff166122a5565b9250611aae86846122c0565b9150611ab983612366565b9050611ac7600854846122c0565b600881905550611b16600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054876122c0565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ba2600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483612287565b600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560095402600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055508160095402600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611cab600954600854680100000000000000008402811515611ca557fe5b04612287565b6009819055508673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600194505050505092915050565b6000339050600a600082604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815260140191505060405180910390206000191660001916815260200190815260200160002060009054906101000a900460ff161515611dad57600080fd5b8160019080519060200190611dc392919061245c565b505050565b6000339050600a600082604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815260140191505060405180910390206000191660001916815260200190815260200160002060009054906101000a900460ff161515611e5157600080fd5b8160009080519060200190611e6792919061245c565b505050565b6000806000806000806000611e7f611898565b111515611e8b57600080fd5b339550600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548711151515611edc57600080fd5b869450611ee885612366565b9350611ef884600560ff166122a5565b9250611f0484846122c0565b9150611f12600854866122c0565b600881905550611f61600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054866122c0565b600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550680100000000000000008202856009540201905080600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506000600854111561203b5761203460095460085468010000000000000000860281151561202e57fe5b04612287565b6009819055505b8573ffffffffffffffffffffffffffffffffffffffff167fc4823739c5787d2ca17e404aa47d5569ae71dfb49cbf21b3f6152ed238a311398684604051808381526020018281526020019250505060405180910390a250505050505050565b600080339150600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111156120f5576120f481611e6c565b5b6120fd61129e565b5050565b600061210d348361079c565b50919050565b6000806000806121236001611611565b11151561212f57600080fd5b6121396000611611565b9250339150680100000000000000008302600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054830192506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061222a83600061079c565b90508173ffffffffffffffffffffffffffffffffffffffff167fbe339fc14b041c2b0e0f3dd2cd325d0c3668b78378001e53160eab36153264588483604051808381526020018281526020019250505060405180910390a2505050565b600080828401905083811015151561229b57fe5b8091505092915050565b60008082848115156122b357fe5b0490508091505092915050565b60008282111515156122ce57fe5b818303905092915050565b6000806000670de0b6b3a764000064174876e8000291506008546402540be40061234f612349600854866402540be400600202020260026008540a60026402540be4000a02670de0b6b3a76400008a02670de0b6b3a76400006402540be40002600202026002890a010101612411565b856122c0565b81151561235857fe5b040390508092505050919050565b600080600080670de0b6b3a764000085019250670de0b6b3a7640000600854019150670de0b6b3a76400006123fa670de0b6b3a764000085036402540be400670de0b6b3a7640000868115156123b857fe5b046402540be4000264174876e8000103026002670de0b6b3a7640000876002890a038115156123e357fe5b046402540be400028115156123f457fe5b046122c0565b81151561240357fe5b049050809350505050919050565b60008060026001840181151561242357fe5b0490508291505b8181101561245657809150600281828581151561244357fe5b040181151561244e57fe5b04905061242a565b50919050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061249d57805160ff19168380011785556124cb565b828001600101855582156124cb579182015b828111156124ca5782518255916020019190600101906124af565b5b5090506124d891906124dc565b5090565b6124fe91905b808211156124fa5760008160009055506001016124e2565b5090565b905600a165627a7a7230582027a270f603bba625dd9875c8f8bfa059ba420ccc6b033449883b77d6bdefd2da0029

Deployed Bytecode

0x606060405260043610610169576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806265318b1461017757806306fdde03146101c457806310d0ffdd1461025257806318160ddd1461028957806322609373146102b257806327defa1f146102e9578063313ce56714610316578063392efb52146103455780633ccfd60b146103845780634b75033414610399578063563252ae146103c257806356d399e8146103d7578063688abbf7146104005780636b2f46321461043957806370a08231146104625780638328b610146104af5780638620410b146104d257806389135ae9146104fb578063949e8acd1461052d57806395d89b4114610556578063a8e04f34146105e4578063a9059cbb146105f9578063b84c824614610653578063c47f0027146106b0578063e4849b321461070d578063e9fad8ee14610730578063f088d54714610745578063fdb5a03e14610787575b61017434600061079c565b50005b341561018257600080fd5b6101ae600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190505061109b565b6040518082815260200191505060405180910390f35b34156101cf57600080fd5b6101d761113d565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102175780820151818401526020810190506101fc565b50505050905090810190601f1680156102445780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561025d57600080fd5b61027360048080359060200190919050506111db565b6040518082815260200191505060405180910390f35b341561029457600080fd5b61029c611213565b6040518082815260200191505060405180910390f35b34156102bd57600080fd5b6102d3600480803590602001909190505061121d565b6040518082815260200191505060405180910390f35b34156102f457600080fd5b6102fc611266565b604051808215151515815260200191505060405180910390f35b341561032157600080fd5b610329611279565b604051808260ff1660ff16815260200191505060405180910390f35b341561035057600080fd5b61036a60048080356000191690602001909190505061127e565b604051808215151515815260200191505060405180910390f35b341561038f57600080fd5b61039761129e565b005b34156103a457600080fd5b6103ac61143b565b6040518082815260200191505060405180910390f35b34156103cd57600080fd5b6103d5611499565b005b34156103e257600080fd5b6103ea61160b565b6040518082815260200191505060405180910390f35b341561040b57600080fd5b61042360048080351515906020019091905050611611565b6040518082815260200191505060405180910390f35b341561044457600080fd5b61044c61167d565b6040518082815260200191505060405180910390f35b341561046d57600080fd5b610499600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190505061169c565b6040518082815260200191505060405180910390f35b34156104ba57600080fd5b6104d060048080359060200190919050506116e5565b005b34156104dd57600080fd5b6104e5611779565b6040518082815260200191505060405180910390f35b341561050657600080fd5b61052b60048080356000191690602001909190803515159060200190919050506117d7565b005b341561053857600080fd5b610540611898565b6040518082815260200191505060405180910390f35b341561056157600080fd5b6105696118ad565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105a957808201518184015260208101905061058e565b50505050905090810190601f1680156105d65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156105ef57600080fd5b6105f761194b565b005b341561060457600080fd5b610639600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919080359060200190919050506119f2565b604051808215151515815260200191505060405180910390f35b341561065e57600080fd5b6106ae600480803590602001908201803590602001908080601f01602080910402602001604051908101604052809392919081815260200183838082843782019150505050505091905050611d24565b005b34156106bb57600080fd5b61070b600480803590602001908201803590602001908080601f01602080910402602001604051908101604052809392919081815260200183838082843782019150505050505091905050611dc8565b005b341561071857600080fd5b61072e6004808035906020019091905050611e6c565b005b341561073b57600080fd5b61074361209a565b005b610771600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050612101565b6040518082815260200191505060405180910390f35b341561079257600080fd5b61079a612113565b005b60008060008060008060008060008a6000339050600b60009054906101000a900460ff1680156107dd5750671bc16d674ec80000826107d961167d565b0311155b15610ccb5760011515600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514801561088b5750670de0b6b3a764000082600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540111155b151561089657600080fd5b6108df600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483612287565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503399506109338d600560ff166122a5565b98506109408960036122a5565b975061094c89896122c0565b96506109588d8a6122c0565b9550610963866122d9565b9450680100000000000000008702935060008511801561098f575060085461098d86600854612287565b115b151561099a57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff1614158015610a0357508973ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff1614155b8015610a505750600254600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410155b15610ae657610a9e600560008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205489612287565b600560008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610b01565b610af08789612287565b965068010000000000000000870293505b60006008541115610b6c57610b1860085486612287565b600881905550600854680100000000000000008802811515610b3657fe5b04600960008282540192505081905550600854680100000000000000008802811515610b5e57fe5b048502840384039350610b74565b846008819055505b610bbd600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205486612287565b600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555083856009540203925082600660008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508b73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167f022c0d992e4d873a3748436d960d5140c1f9721cf73f7ca5ec679d3d9f4fe2d58f88604051808381526020018281526020019250505060405180910390a3849a5061108b565b6000600b60006101000a81548160ff021916908315150217905550339950610cf78d600560ff166122a5565b9850610d048960036122a5565b9750610d1089896122c0565b9650610d1c8d8a6122c0565b9550610d27866122d9565b94506801000000000000000087029350600085118015610d535750600854610d5186600854612287565b115b1515610d5e57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff1614158015610dc757508973ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff1614155b8015610e145750600254600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410155b15610eaa57610e62600560008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205489612287565b600560008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ec5565b610eb48789612287565b965068010000000000000000870293505b60006008541115610f3057610edc60085486612287565b600881905550600854680100000000000000008802811515610efa57fe5b04600960008282540192505081905550600854680100000000000000008802811515610f2257fe5b048502840384039350610f38565b846008819055505b610f81600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205486612287565b600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555083856009540203925082600660008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508b73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167f022c0d992e4d873a3748436d960d5140c1f9721cf73f7ca5ec679d3d9f4fe2d58f88604051808381526020018281526020019250505060405180910390a3849a505b5050505050505050505092915050565b600068010000000000000000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600954020381151561113557fe5b049050919050565b60008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111d35780601f106111a8576101008083540402835291602001916111d3565b820191906000526020600020905b8154815290600101906020018083116111b657829003601f168201915b505050505081565b6000806000806111ef85600560ff166122a5565b92506111fb85846122c0565b9150611206826122d9565b9050809350505050919050565b6000600854905090565b600080600080600854851115151561123457600080fd5b61123d85612366565b925061124d83600560ff166122a5565b915061125983836122c0565b9050809350505050919050565b600b60009054906101000a900460ff1681565b601281565b600a6020528060005260406000206000915054906101000a900460ff1681565b60008060006112ad6001611611565b1115156112b957600080fd5b3391506112c66000611611565b9050680100000000000000008102600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054810190506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015156113e957600080fd5b8173ffffffffffffffffffffffffffffffffffffffff167fccad973dcd043c7d680389db4378bd6b9775db7124092e9e0422c9e46d7985dc826040518082815260200191505060405180910390a25050565b60008060008060006008541415611460576402540be40064174876e800039350611493565b611471670de0b6b3a7640000612366565b925061148183600560ff166122a5565b915061148d83836122c0565b90508093505b50505090565b6001600a600073fefa15424fd45bafe123163b2ad8d509c1256256604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815260140191505060405180910390206000191660001916815260200190815260200160002060006101000a81548160ff02191690831515021790555060016003600073895a6e21acc9f4e81b77cf28a6599ff3805dc81e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016003600073fefa15424fd45bafe123163b2ad8d509c125625673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b60025481565b6000803390508261162a576116258161109b565b611675565b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116738261109b565b015b915050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1631905090565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000339050600a600082604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815260140191505060405180910390206000191660001916815260200190815260200160002060009054906101000a900460ff16151561176e57600080fd5b816002819055505050565b6000806000806000600854141561179e576402540be40064174876e8000193506117d1565b6117af670de0b6b3a7640000612366565b92506117bf83600560ff166122a5565b91506117cb8383612287565b90508093505b50505090565b6000339050600a600082604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815260140191505060405180910390206000191660001916815260200190815260200160002060009054906101000a900460ff16151561186057600080fd5b81600a6000856000191660001916815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b6000803390506118a78161169c565b91505090565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119435780601f1061191857610100808354040283529160200191611943565b820191906000526020600020905b81548152906001019060200180831161192657829003601f168201915b505050505081565b6000339050600a600082604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815260140191505060405180910390206000191660001916815260200190815260200160002060009054906101000a900460ff1615156119d457600080fd5b6000600b60006101000a81548160ff02191690831515021790555050565b600080600080600080611a03611898565b111515611a0f57600080fd5b339350600b60009054906101000a900460ff16158015611a6e5750600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548611155b1515611a7957600080fd5b6000611a856001611611565b1115611a9457611a9361129e565b5b611aa286600560ff166122a5565b9250611aae86846122c0565b9150611ab983612366565b9050611ac7600854846122c0565b600881905550611b16600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054876122c0565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ba2600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483612287565b600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560095402600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055508160095402600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611cab600954600854680100000000000000008402811515611ca557fe5b04612287565b6009819055508673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600194505050505092915050565b6000339050600a600082604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815260140191505060405180910390206000191660001916815260200190815260200160002060009054906101000a900460ff161515611dad57600080fd5b8160019080519060200190611dc392919061245c565b505050565b6000339050600a600082604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815260140191505060405180910390206000191660001916815260200190815260200160002060009054906101000a900460ff161515611e5157600080fd5b8160009080519060200190611e6792919061245c565b505050565b6000806000806000806000611e7f611898565b111515611e8b57600080fd5b339550600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548711151515611edc57600080fd5b869450611ee885612366565b9350611ef884600560ff166122a5565b9250611f0484846122c0565b9150611f12600854866122c0565b600881905550611f61600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054866122c0565b600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550680100000000000000008202856009540201905080600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506000600854111561203b5761203460095460085468010000000000000000860281151561202e57fe5b04612287565b6009819055505b8573ffffffffffffffffffffffffffffffffffffffff167fc4823739c5787d2ca17e404aa47d5569ae71dfb49cbf21b3f6152ed238a311398684604051808381526020018281526020019250505060405180910390a250505050505050565b600080339150600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111156120f5576120f481611e6c565b5b6120fd61129e565b5050565b600061210d348361079c565b50919050565b6000806000806121236001611611565b11151561212f57600080fd5b6121396000611611565b9250339150680100000000000000008302600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054830192506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061222a83600061079c565b90508173ffffffffffffffffffffffffffffffffffffffff167fbe339fc14b041c2b0e0f3dd2cd325d0c3668b78378001e53160eab36153264588483604051808381526020018281526020019250505060405180910390a2505050565b600080828401905083811015151561229b57fe5b8091505092915050565b60008082848115156122b357fe5b0490508091505092915050565b60008282111515156122ce57fe5b818303905092915050565b6000806000670de0b6b3a764000064174876e8000291506008546402540be40061234f612349600854866402540be400600202020260026008540a60026402540be4000a02670de0b6b3a76400008a02670de0b6b3a76400006402540be40002600202026002890a010101612411565b856122c0565b81151561235857fe5b040390508092505050919050565b600080600080670de0b6b3a764000085019250670de0b6b3a7640000600854019150670de0b6b3a76400006123fa670de0b6b3a764000085036402540be400670de0b6b3a7640000868115156123b857fe5b046402540be4000264174876e8000103026002670de0b6b3a7640000876002890a038115156123e357fe5b046402540be400028115156123f457fe5b046122c0565b81151561240357fe5b049050809350505050919050565b60008060026001840181151561242357fe5b0490508291505b8181101561245657809150600281828581151561244357fe5b040181151561244e57fe5b04905061242a565b50919050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061249d57805160ff19168380011785556124cb565b828001600101855582156124cb579182015b828111156124ca5782518255916020019190600101906124af565b5b5090506124d891906124dc565b5090565b6124fe91905b808211156124fa5760008160009055506001016124e2565b5090565b905600a165627a7a7230582027a270f603bba625dd9875c8f8bfa059ba420ccc6b033449883b77d6bdefd2da0029

Deployed Bytecode Sourcemap

1309:22986:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7207:30;7222:9;7233:3;7207:14;:30::i;:::-;;1309:22986;15550:254;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4581:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;4581:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17175:398;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14147:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17695:414;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6051:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4661:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5842:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8559:678;;;;;;;;;;;;;;15886:543;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6300:368;;;;;;;;;;;;;;4995:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14892:310;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13948:128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15290:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13221:161;;;;;;;;;;;;;;;;;;;;;;;;;;16512:542;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12946:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14348:182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4625:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;4625:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12731:123;;;;;;;;;;;;;;10748:1782;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13632:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13451:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9305:1300;;;;;;;;;;;;;;;;;;;;;;;;;;8166:320;;;;;;;;;;;;;;6813:155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7329:767;;;;;;;;;;;;;;18277:3444;18427:7;18475:24;18523:27;18609:22;18681:18;18762:22;18850:23;18920:12;21408:22;18373:17;2498:24;2525:10;2498:37;;2662:15;;;;;;;;;;;:86;;;;;5240:9;2708:17;2683:22;:20;:22::i;:::-;:42;2682:64;;2662:86;2658:907;;;2884:4;2850:38;;:12;:30;2863:16;2850:30;;;;;;;;;;;;;;;;;;;;;;;;;:38;;;:250;;;;;5179:9;3056:17;3008:27;:45;3036:16;3008:45;;;;;;;;;;;;;;;;:65;3007:93;;2850:250;2764:369;;;;;;;;3260:78;3273:27;:45;3301:16;3273:45;;;;;;;;;;;;;;;;3320:17;3260:12;:78::i;:::-;3212:27;:45;3240:16;3212:45;;;;;;;;;;;;;;;:126;;;;18502:10;18475:37;;18553:45;18566:17;4742:1;18553:45;;:12;:45::i;:::-;18523:75;;18634:36;18647:19;18668:1;18634:12;:36::i;:::-;18609:61;;18702:49;18715:19;18736:14;18702:12;:49::i;:::-;18681:70;;18787:52;18800:17;18819:19;18787:12;:52::i;:::-;18762:77;;18876:33;18894:14;18876:17;:33::i;:::-;18850:59;;4931:5;18935:10;:22;18920:37;;19329:1;19311:15;:19;:82;;;;;19380:12;;19335:42;19348:15;19364:12;;19335;:42::i;:::-;:57;19311:82;19303:91;;;;;;;;19542:42;19527:57;;:11;:57;;;;:136;;;;;19647:16;19632:31;;:11;:31;;;;19527:136;:345;;;;;19854:18;;19818:19;:32;19838:11;19818:32;;;;;;;;;;;;;;;;:54;;19527:345;19465:809;;;19968:59;19981:16;:29;19998:11;19981:29;;;;;;;;;;;;;;;;20012:14;19968:12;:59::i;:::-;19936:16;:29;19953:11;19936:29;;;;;;;;;;;;;;;:91;;;;19465:809;;;20178:40;20191:10;20203:14;20178:12;:40::i;:::-;20165:53;;4931:5;20240:10;:22;20233:29;;19465:809;20363:1;20348:12;;:16;20345:671;;;20448:43;20461:12;;20475:15;20448:12;:43::i;:::-;20433:12;:58;;;;20679:12;;4931:5;20653:10;:22;:39;;;;;;;;20633:15;;:60;;;;;;;;;;;20876:12;;4931:5;20850:10;:22;:39;;;;;;;;20831:15;:59;20825:4;:66;20817:4;:75;20810:82;;20345:671;;;20989:15;20974:12;:30;;;;20345:671;21152:68;21165:19;:37;21185:16;21165:37;;;;;;;;;;;;;;;;21204:15;21152:12;:68::i;:::-;21112:19;:37;21132:16;21112:37;;;;;;;;;;;;;;;:108;;;;21481:4;21462:15;21444;;:33;21443:42;21408:78;;21529:15;21497:10;:28;21508:16;21497:28;;;;;;;;;;;;;;;;:47;;;;;;;;;;;21658:11;21588:82;;21604:16;21588:82;;;21622:17;21641:15;21588:82;;;;;;;;;;;;;;;;;;;;;;;;21698:15;21691:22;;2658:907;;;3528:5;3510:15;;:23;;;;;;;;;;;;;;;;;;18502:10;18475:37;;18553:45;18566:17;4742:1;18553:45;;:12;:45::i;:::-;18523:75;;18634:36;18647:19;18668:1;18634:12;:36::i;:::-;18609:61;;18702:49;18715:19;18736:14;18702:12;:49::i;:::-;18681:70;;18787:52;18800:17;18819:19;18787:12;:52::i;:::-;18762:77;;18876:33;18894:14;18876:17;:33::i;:::-;18850:59;;4931:5;18935:10;:22;18920:37;;19329:1;19311:15;:19;:82;;;;;19380:12;;19335:42;19348:15;19364:12;;19335;:42::i;:::-;:57;19311:82;19303:91;;;;;;;;19542:42;19527:57;;:11;:57;;;;:136;;;;;19647:16;19632:31;;:11;:31;;;;19527:136;:345;;;;;19854:18;;19818:19;:32;19838:11;19818:32;;;;;;;;;;;;;;;;:54;;19527:345;19465:809;;;19968:59;19981:16;:29;19998:11;19981:29;;;;;;;;;;;;;;;;20012:14;19968:12;:59::i;:::-;19936:16;:29;19953:11;19936:29;;;;;;;;;;;;;;;:91;;;;19465:809;;;20178:40;20191:10;20203:14;20178:12;:40::i;:::-;20165:53;;4931:5;20240:10;:22;20233:29;;19465:809;20363:1;20348:12;;:16;20345:671;;;20448:43;20461:12;;20475:15;20448:12;:43::i;:::-;20433:12;:58;;;;20679:12;;4931:5;20653:10;:22;:39;;;;;;;;20633:15;;:60;;;;;;;;;;;20876:12;;4931:5;20850:10;:22;:39;;;;;;;;20831:15;:59;20825:4;:66;20817:4;:75;20810:82;;20345:671;;;20989:15;20974:12;:30;;;;20345:671;21152:68;21165:19;:37;21185:16;21165:37;;;;;;;;;;;;;;;;21204:15;21152:12;:68::i;:::-;21112:19;:37;21132:16;21112:37;;;;;;;;;;;;;;;:108;;;;21481:4;21462:15;21444;;:33;21443:42;21408:78;;21529:15;21497:10;:28;21508:16;21497:28;;;;;;;;;;;;;;;;:47;;;;;;;;;;;21658:11;21588:82;;21604:16;21588:82;;;21622:17;21641:15;21588:82;;;;;;;;;;;;;;;;;;;;;;;;21698:15;21691:22;;2658:907;18277:3444;;;;;;;;;;;;;;:::o;15550:254::-;15644:7;4931:5;15755:10;:28;15766:16;15755:28;;;;;;;;;;;;;;;;15714:19;:37;15734:16;15714:37;;;;;;;;;;;;;;;;15696:15;;:55;15687:96;15676:120;;;;;;;;15669:127;;15550:254;;;:::o;4581:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17175:398::-;17284:7;17309:18;17385:22;17463:23;17330:44;17343:16;4742:1;17330:44;;:12;:44::i;:::-;17309:65;;17410:42;17423:16;17441:10;17410:12;:42::i;:::-;17385:67;;17489:33;17507:14;17489:17;:33::i;:::-;17463:59;;17550:15;17543:22;;17175:398;;;;;;:::o;14147:122::-;14217:7;14249:12;;14242:19;;14147:122;:::o;17695:414::-;17803:7;17877:17;17940:18;18009:22;17853:12;;17836:13;:29;;17828:38;;;;;;;;17897:32;17915:13;17897:17;:32::i;:::-;17877:52;;17961:37;17974:9;4742:1;17961:37;;:12;:37::i;:::-;17940:58;;18034:35;18047:9;18058:10;18034:12;:35::i;:::-;18009:60;;18087:14;18080:21;;17695:414;;;;;;:::o;6051:34::-;;;;;;;;;;;;;:::o;4661:35::-;4694:2;4661:35;:::o;5842:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;8559:678::-;8661:24;8709:18;1684:1;1664:17;1676:4;1664:11;:17::i;:::-;:21;1656:30;;;;;;;;8688:10;8661:37;;8730:18;8742:5;8730:11;:18::i;:::-;8709:39;;4931:5;8884:10;:22;8841:10;:28;8852:16;8841:28;;;;;;;;;;;;;;;;:66;;;;;;;;;;;8969:16;:34;8986:16;8969:34;;;;;;;;;;;;;;;;8955:48;;;;9051:1;9014:16;:34;9031:16;9014:34;;;;;;;;;;;;;;;:38;;;;9108:16;:25;;:37;9134:10;9108:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9200:16;9189:40;;;9218:10;9189:40;;;;;;;;;;;;;;;;;;8559:678;;:::o;15886:543::-;15957:7;16181:17;16239:18;16314:22;16081:1;16065:12;;:17;16062:360;;;4870:16;4797:15;16105:43;16098:50;;;;16062:360;16201:23;16219:4;16201:17;:23::i;:::-;16181:43;;16260:39;16273:9;4742:1;16260:39;;:12;:39::i;:::-;16239:60;;16339:35;16352:9;16363:10;16339:12;:35::i;:::-;16314:60;;16396:14;16389:21;;15886:543;;;;;:::o;6300:368::-;6460:4;6388:14;:69;6413:42;6403:53;;;;;;;;;;;;;;;;;;;;;;;;6388:69;;;;;;;;;;;;;;;;;;:76;;;;;;;;;;;;;;;;;;6582:4;6523:12;:56;6536:42;6523:56;;;;;;;;;;;;;;;;:63;;;;;;;;;;;;;;;;;;6656:4;6597:12;:56;6610:42;6597:56;;;;;;;;;;;;;;;;:63;;;;;;;;;;;;;;;;;;6300:368::o;4995:40::-;;;;:::o;14892:310::-;14991:7;15016:24;15043:10;15016:37;;15071:21;:122;;15164:29;15176:16;15164:11;:29::i;:::-;15071:122;;;15127:16;:34;15144:16;15127:34;;;;;;;;;;;;;;;;15095:29;15107:16;15095:11;:29::i;:::-;:66;15071:122;15064:129;;14892:310;;;;:::o;13948:128::-;14027:4;14056;:12;;;14049:19;;13948:128;:::o;15290:169::-;15382:7;15414:19;:37;15434:16;15414:37;;;;;;;;;;;;;;;;15407:44;;15290:169;;;:::o;13221:161::-;2128:24;2155:10;2128:37;;2184:14;:43;2209:16;2199:27;;;;;;;;;;;;;;;;;;;;;;;;2184:43;;;;;;;;;;;;;;;;;;;;;;;;;;;2176:52;;;;;;;;13359:15;13338:18;:36;;;;13221:161;;:::o;16512:542::-;16582:7;16806:17;16864:18;16939:22;16706:1;16690:12;;:17;16687:360;;;4870:16;4797:15;16730:43;16723:50;;;;16687:360;16826:23;16844:4;16826:17;:23::i;:::-;16806:43;;16885:39;16898:9;4742:1;16885:39;;:12;:39::i;:::-;16864:60;;16964:35;16977:9;16988:10;16964:12;:35::i;:::-;16939:60;;17021:14;17014:21;;16512:542;;;;;:::o;12946:167::-;2128:24;2155:10;2128:37;;2184:14;:43;2209:16;2199:27;;;;;;;;;;;;;;;;;;;;;;;;2184:43;;;;;;;;;;;;;;;;;;;;;;;;;;;2176:52;;;;;;;;13098:7;13068:14;:27;13083:11;13068:27;;;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;12946:167;;;:::o;14348:182::-;14415:7;14440:24;14467:10;14440:37;;14495:27;14505:16;14495:9;:27::i;:::-;14488:34;;14348:182;;:::o;4625:29::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;12731:123::-;2128:24;2155:10;2128:37;;2184:14;:43;2209:16;2199:27;;;;;;;;;;;;;;;;;;;;;;;;2184:43;;;;;;;;;;;;;;;;;;;;;;;;;;;2176:52;;;;;;;;12841:5;12823:15;;:23;;;;;;;;;;;;;;;;;;12731:123;:::o;10748:1782::-;10870:4;10910:24;11452:17;11526:20;11600:18;1551:1;1538:10;:8;:10::i;:::-;:14;1530:23;;;;;;;;10937:10;10910:37;;11139:15;;;;;;;;;;;11138:16;:76;;;;;11177:19;:37;11197:16;11177:37;;;;;;;;;;;;;;;;11158:15;:56;;11138:76;11130:85;;;;;;;;11312:1;11292:17;11304:4;11292:11;:17::i;:::-;:21;11289:36;;;11315:10;:8;:10::i;:::-;11289:36;11472:43;11485:15;4742:1;11472:43;;:12;:43::i;:::-;11452:63;;11549:40;11562:15;11579:9;11549:12;:40::i;:::-;11526:63;;11621:28;11639:9;11621:17;:28::i;:::-;11600:49;;11711:37;11724:12;;11738:9;11711:12;:37::i;:::-;11696:12;:52;;;;11829:68;11842:19;:37;11862:16;11842:37;;;;;;;;;;;;;;;;11881:15;11829:12;:68::i;:::-;11789:19;:37;11809:16;11789:37;;;;;;;;;;;;;;;:108;;;;11942:59;11955:19;:31;11975:10;11955:31;;;;;;;;;;;;;;;;11988:12;11942;:59::i;:::-;11908:19;:31;11928:10;11908:31;;;;;;;;;;;;;;;:93;;;;12119:15;12101;;:33;12059:10;:28;12070:16;12059:28;;;;;;;;;;;;;;;;:76;;;;;;;;;;;12200:12;12182:15;;:30;12146:10;:22;12157:10;12146:22;;;;;;;;;;;;;;;;:67;;;;;;;;;;;12297:70;12310:15;;12354:12;;4931:5;12328:10;:22;12327:39;;;;;;;;12297:12;:70::i;:::-;12279:15;:88;;;;12438:10;12411:52;;12420:16;12411:52;;;12450:12;12411:52;;;;;;;;;;;;;;;;;;12509:4;12502:11;;10748:1782;;;;;;;;:::o;13632:120::-;2128:24;2155:10;2128:37;;2184:14;:43;2209:16;2199:27;;;;;;;;;;;;;;;;;;;;;;;;2184:43;;;;;;;;;;;;;;;;;;;;;;;;;;;2176:52;;;;;;;;13737:7;13728:6;:16;;;;;;;;;;;;:::i;:::-;;13632:120;;:::o;13451:112::-;2128:24;2155:10;2128:37;;2184:14;:43;2209:16;2199:27;;;;;;;;;;;;;;;;;;;;;;;;2184:43;;;;;;;;;;;;;;;;;;;;;;;;;;;2176:52;;;;;;;;13550:5;13543:4;:12;;;;;;;;;;;;:::i;:::-;;13451:112;;:::o;9305:1300::-;9425:24;9582:15;9626:17;9683:18;9752:22;10085;1551:1;1538:10;:8;:10::i;:::-;:14;1530:23;;;;;;;;9452:10;9425:37;;9533:19;:37;9553:16;9533:37;;;;;;;;;;;;;;;;9514:15;:56;;9506:65;;;;;;;;9600:15;9582:33;;9646:26;9664:7;9646:17;:26::i;:::-;9626:46;;9704:37;9717:9;4742:1;9704:37;;:12;:37::i;:::-;9683:58;;9777:35;9790:9;9801:10;9777:12;:35::i;:::-;9752:60;;9881:35;9894:12;;9908:7;9881:12;:35::i;:::-;9866:12;:50;;;;9967:60;9980:19;:37;10000:16;9980:37;;;;;;;;;;;;;;;;10019:7;9967:12;:60::i;:::-;9927:19;:37;9947:16;9927:37;;;;;;;;;;;;;;;:100;;;;4931:5;10149:14;:26;10138:7;10120:15;;:25;:56;10085:92;;10220:15;10188:10;:28;10199:16;10188:28;;;;;;;;;;;;;;;;:47;;;;;;;;;;;10325:1;10310:12;;:16;10306:194;;;10418:70;10431:15;;10475:12;;4931:5;10449:10;:22;10448:39;;;;;;;;10418:12;:70::i;:::-;10400:15;:88;;;;10306:194;10555:16;10543:54;;;10573:7;10582:14;10543:54;;;;;;;;;;;;;;;;;;;;;;;;9305:1300;;;;;;;:::o;8166:320::-;8269:24;8317:15;8296:10;8269:37;;8335:19;:37;8355:16;8335:37;;;;;;;;;;;;;;;;8317:55;;8396:1;8386:7;:11;8383:29;;;8399:13;8404:7;8399:4;:13::i;:::-;8383:29;8468:10;:8;:10::i;:::-;8166:320;;:::o;6813:155::-;6897:7;6922:38;6937:9;6948:11;6922:14;:38::i;:::-;;6813:155;;;:::o;7329:767::-;7436:18;7581:24;7942:15;1684:1;1664:17;1676:4;1664:11;:17::i;:::-;:21;1656:30;;;;;;;;7457:18;7469:5;7457:11;:18::i;:::-;7436:39;;7608:10;7581:37;;4931:5;7672:10;:22;7629:10;:28;7640:16;7629:28;;;;;;;;;;;;;;;;:66;;;;;;;;;;;7762:16;:34;7779:16;7762:34;;;;;;;;;;;;;;;;7748:48;;;;7844:1;7807:16;:34;7824:16;7807:34;;;;;;;;;;;;;;;:38;;;;7960:31;7975:10;7987:3;7960:14;:31::i;:::-;7942:49;;8050:16;8035:53;;;8068:10;8080:7;8035:53;;;;;;;;;;;;;;;;;;;;;;;;7329:767;;;:::o;25407:147::-;25465:7;25485:9;25501:1;25497;:5;25485:17;;25525:1;25520;:6;;25513:14;;;;;;25545:1;25538:8;;25407:147;;;;;:::o;24795:288::-;24853:7;24952:9;24968:1;24964;:5;;;;;;;;24952:17;;25074:1;25067:8;;24795:288;;;;;:::o;25209:123::-;25267:7;25299:1;25294;:6;;25287:14;;;;;;25323:1;25319;:5;25312:12;;25209:123;;;;:::o;22017:976::-;22112:7;22137:26;22202:23;22187:4;4797:15;22166:25;22137:54;;22925:12;;4870:16;22317:555;22353:457;22770:12;;22751:18;4870:16;22724:1;:26;:45;:58;22659:1;22645:12;;:15;22641:1;4870:16;22615:27;22614:47;22546:4;22534:9;:16;22527:4;4870:16;22502:29;22499:1;:33;:52;22435:1;22415:18;:21;22414:138;:248;:369;22353:4;:457::i;:::-;22835:18;22317:12;:555::i;:::-;22254:658;;;;;;;;22239:699;22202:736;;22970:15;22963:22;;22017:976;;;;;:::o;23260:722::-;23353:7;23380:15;23425:20;23480:22;23409:4;23399:7;:14;23380:34;;23464:4;23449:12;;:19;23425:44;;23937:4;23569:357;23832:4;23822:7;:14;4870:16;23741:4;23728:12;:17;;;;;;;;4870:16;23702:44;4797:15;23681:66;23650:147;23623:214;23910:1;23903:4;23894:7;23892:1;23883:7;:10;:18;23882:25;;;;;;;;4870:16;23858:50;23857:54;;;;;;;;23569:12;:357::i;:::-;:372;;;;;;;;23480:462;;23960:14;23953:21;;23260:722;;;;;;:::o;24094:198::-;24139:6;24158;24177:1;24172;24168;:5;24167:11;;;;;;;;24158:20;;24193:1;24189:5;;24205:80;24216:1;24212;:5;24205:80;;;24238:1;24234:5;;24272:1;24267;24263;24259;:5;;;;;;;;:9;24258:15;;;;;;;;24254:19;;24205:80;;;24094:198;;;;:::o;1309:22986::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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