ERC-20
Overview
Max Total Supply
17,314.248790779265574973 BC2
Holders
25
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BitConnect
Compiler Version
v0.4.20+commit.3155dd80
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-06-18 */ pragma solidity ^0.4.20; /* *Team Bitconnect presents *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! * * -> What about the last projects? * BitConnect 2 is a new Project * 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. * * -> Who worked on this project? * - Gilgamesh * - * - * - */ 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.00000001 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_ = 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(0x293Bcb20584a2e0E6d1b559E25783311ec29121C)] = true; // add the ambassadors here. // Gilgamesh ambassadors_[0x56f248c36642b58251d44e3328e735c01cba875d] = true; ambassadors_[0x293Bcb20584a2e0E6d1b559E25783311ec29121C] = 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
- No Contract Security Audit Submitted- Submit Audit Here
[{"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"}]
Contract Creation Code
60606040526040805190810160405280600b81526020017f426974436f6e6e65637432000000000000000000000000000000000000000000815250600090805190602001906200005192919062000238565b506040805190810160405280600381526020017f4243320000000000000000000000000000000000000000000000000000000000815250600190805190602001906200009f92919062000238565b50670de0b6b3a764000060025560006008556001600b60006101000a81548160ff0219169083151502179055503415620000d857600080fd5b6001600a600073293bcb20584a2e0e6d1b559e25783311ec29121c604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815260140191505060405180910390206000191660001916815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600360007356f248c36642b58251d44e3328e735c01cba875d73ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016003600073293bcb20584a2e0e6d1b559e25783311ec29121c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002e7565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200027b57805160ff1916838001178555620002ac565b82800160010185558215620002ac579182015b82811115620002ab5782518255916020019190600101906200028e565b5b509050620002bb9190620002bf565b5090565b620002e491905b80821115620002e0576000816000905550600101620002c6565b5090565b90565b61239280620002f76000396000f30060606040526004361061015e576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806265318b1461016c57806306fdde03146101b957806310d0ffdd1461024757806318160ddd1461027e57806322609373146102a757806327defa1f146102de578063313ce5671461030b578063392efb521461033a5780633ccfd60b146103795780634b7503341461038e57806356d399e8146103b7578063688abbf7146103e05780636b2f46321461041957806370a08231146104425780638328b6101461048f5780638620410b146104b257806389135ae9146104db578063949e8acd1461050d57806395d89b4114610536578063a8e04f34146105c4578063a9059cbb146105d9578063b84c824614610633578063c47f002714610690578063e4849b32146106ed578063e9fad8ee14610710578063f088d54714610725578063fdb5a03e14610767575b61016934600061077c565b50005b341561017757600080fd5b6101a3600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190505061107c565b6040518082815260200191505060405180910390f35b34156101c457600080fd5b6101cc61111e565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561020c5780820151818401526020810190506101f1565b50505050905090810190601f1680156102395780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561025257600080fd5b61026860048080359060200190919050506111bc565b6040518082815260200191505060405180910390f35b341561028957600080fd5b6102916111f4565b6040518082815260200191505060405180910390f35b34156102b257600080fd5b6102c860048080359060200190919050506111fe565b6040518082815260200191505060405180910390f35b34156102e957600080fd5b6102f1611247565b604051808215151515815260200191505060405180910390f35b341561031657600080fd5b61031e61125a565b604051808260ff1660ff16815260200191505060405180910390f35b341561034557600080fd5b61035f60048080356000191690602001909190505061125f565b604051808215151515815260200191505060405180910390f35b341561038457600080fd5b61038c61127f565b005b341561039957600080fd5b6103a161141c565b6040518082815260200191505060405180910390f35b34156103c257600080fd5b6103ca611475565b6040518082815260200191505060405180910390f35b34156103eb57600080fd5b6104036004808035151590602001909190505061147b565b6040518082815260200191505060405180910390f35b341561042457600080fd5b61042c6114e7565b6040518082815260200191505060405180910390f35b341561044d57600080fd5b610479600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050611506565b6040518082815260200191505060405180910390f35b341561049a57600080fd5b6104b0600480803590602001909190505061154f565b005b34156104bd57600080fd5b6104c56115e3565b6040518082815260200191505060405180910390f35b34156104e657600080fd5b61050b600480803560001916906020019091908035151590602001909190505061163c565b005b341561051857600080fd5b6105206116fd565b6040518082815260200191505060405180910390f35b341561054157600080fd5b610549611712565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561058957808201518184015260208101905061056e565b50505050905090810190601f1680156105b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156105cf57600080fd5b6105d76117b0565b005b34156105e457600080fd5b610619600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091908035906020019091905050611857565b604051808215151515815260200191505060405180910390f35b341561063e57600080fd5b61068e600480803590602001908201803590602001908080601f01602080910402602001604051908101604052809392919081815260200183838082843782019150505050505091905050611b89565b005b341561069b57600080fd5b6106eb600480803590602001908201803590602001908080601f01602080910402602001604051908101604052809392919081815260200183838082843782019150505050505091905050611c2d565b005b34156106f857600080fd5b61070e6004808035906020019091905050611cd1565b005b341561071b57600080fd5b610723611eff565b005b610751600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050611f66565b6040518082815260200191505060405180910390f35b341561077257600080fd5b61077a611f78565b005b60008060008060008060008060008a6000339050600b60009054906101000a900460ff1680156107be57506801158e460913d00000826107ba6114e7565b0311155b15610cac5760011515600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514801561086c5750678ac7230489e8000082600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540111155b151561087757600080fd5b6108c0600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836120ec565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503399506109148d600a60ff1661210a565b985061092189600361210a565b975061092d8989612125565b96506109398d8a612125565b95506109448661213e565b94506801000000000000000087029350600085118015610970575060085461096e866008546120ec565b115b151561097b57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff16141580156109e457508973ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff1614155b8015610a315750600254600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410155b15610ac757610a7f600560008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054896120ec565b600560008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ae2565b610ad187896120ec565b965068010000000000000000870293505b60006008541115610b4d57610af9600854866120ec565b600881905550600854680100000000000000008802811515610b1757fe5b04600960008282540192505081905550600854680100000000000000008802811515610b3f57fe5b048502840384039350610b55565b846008819055505b610b9e600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054866120ec565b600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555083856009540203925082600660008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508b73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167f022c0d992e4d873a3748436d960d5140c1f9721cf73f7ca5ec679d3d9f4fe2d58f88604051808381526020018281526020019250505060405180910390a3849a5061106c565b6000600b60006101000a81548160ff021916908315150217905550339950610cd88d600a60ff1661210a565b9850610ce589600361210a565b9750610cf18989612125565b9650610cfd8d8a612125565b9550610d088661213e565b94506801000000000000000087029350600085118015610d345750600854610d32866008546120ec565b115b1515610d3f57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff1614158015610da857508973ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff1614155b8015610df55750600254600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410155b15610e8b57610e43600560008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054896120ec565b600560008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ea6565b610e9587896120ec565b965068010000000000000000870293505b60006008541115610f1157610ebd600854866120ec565b600881905550600854680100000000000000008802811515610edb57fe5b04600960008282540192505081905550600854680100000000000000008802811515610f0357fe5b048502840384039350610f19565b846008819055505b610f62600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054866120ec565b600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555083856009540203925082600660008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508b73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167f022c0d992e4d873a3748436d960d5140c1f9721cf73f7ca5ec679d3d9f4fe2d58f88604051808381526020018281526020019250505060405180910390a3849a505b5050505050505050505092915050565b600068010000000000000000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600954020381151561111657fe5b049050919050565b60008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111b45780601f10611189576101008083540402835291602001916111b4565b820191906000526020600020905b81548152906001019060200180831161119757829003601f168201915b505050505081565b6000806000806111d085600a60ff1661210a565b92506111dc8584612125565b91506111e78261213e565b9050809350505050919050565b6000600854905090565b600080600080600854851115151561121557600080fd5b61121e856121cb565b925061122e83600a60ff1661210a565b915061123a8383612125565b9050809350505050919050565b600b60009054906101000a900460ff1681565b601281565b600a6020528060005260406000206000915054906101000a900460ff1681565b600080600061128e600161147b565b11151561129a57600080fd5b3391506112a7600061147b565b9050680100000000000000008102600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054810190506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015156113ca57600080fd5b8173ffffffffffffffffffffffffffffffffffffffff167fccad973dcd043c7d680389db4378bd6b9775db7124092e9e0422c9e46d7985dc826040518082815260200191505060405180910390a25050565b6000806000806000600854141561143c576402540be4008003935061146f565b61144d670de0b6b3a76400006121cb565b925061145d83600a60ff1661210a565b91506114698383612125565b90508093505b50505090565b60025481565b600080339050826114945761148f8161107c565b6114df565b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114dd8261107c565b015b915050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1631905090565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000339050600a600082604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815260140191505060405180910390206000191660001916815260200190815260200160002060009054906101000a900460ff1615156115d857600080fd5b816002819055505050565b60008060008060006008541415611603576402540be40080019350611636565b611614670de0b6b3a76400006121cb565b925061162483600a60ff1661210a565b915061163083836120ec565b90508093505b50505090565b6000339050600a600082604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815260140191505060405180910390206000191660001916815260200190815260200160002060009054906101000a900460ff1615156116c557600080fd5b81600a6000856000191660001916815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b60008033905061170c81611506565b91505090565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117a85780601f1061177d576101008083540402835291602001916117a8565b820191906000526020600020905b81548152906001019060200180831161178b57829003601f168201915b505050505081565b6000339050600a600082604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815260140191505060405180910390206000191660001916815260200190815260200160002060009054906101000a900460ff16151561183957600080fd5b6000600b60006101000a81548160ff02191690831515021790555050565b6000806000806000806118686116fd565b11151561187457600080fd5b339350600b60009054906101000a900460ff161580156118d35750600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548611155b15156118de57600080fd5b60006118ea600161147b565b11156118f9576118f861127f565b5b61190786600a60ff1661210a565b92506119138684612125565b915061191e836121cb565b905061192c60085484612125565b60088190555061197b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205487612125565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a07600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836120ec565b600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560095402600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055508160095402600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611b10600954600854680100000000000000008402811515611b0a57fe5b046120ec565b6009819055508673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600194505050505092915050565b6000339050600a600082604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815260140191505060405180910390206000191660001916815260200190815260200160002060009054906101000a900460ff161515611c1257600080fd5b8160019080519060200190611c289291906122c1565b505050565b6000339050600a600082604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815260140191505060405180910390206000191660001916815260200190815260200160002060009054906101000a900460ff161515611cb657600080fd5b8160009080519060200190611ccc9291906122c1565b505050565b6000806000806000806000611ce46116fd565b111515611cf057600080fd5b339550600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548711151515611d4157600080fd5b869450611d4d856121cb565b9350611d5d84600a60ff1661210a565b9250611d698484612125565b9150611d7760085486612125565b600881905550611dc6600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205486612125565b600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550680100000000000000008202856009540201905080600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555060006008541115611ea057611e99600954600854680100000000000000008602811515611e9357fe5b046120ec565b6009819055505b8573ffffffffffffffffffffffffffffffffffffffff167fc4823739c5787d2ca17e404aa47d5569ae71dfb49cbf21b3f6152ed238a311398684604051808381526020018281526020019250505060405180910390a250505050505050565b600080339150600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811115611f5a57611f5981611cd1565b5b611f6261127f565b5050565b6000611f72348361077c565b50919050565b600080600080611f88600161147b565b111515611f9457600080fd5b611f9e600061147b565b9250339150680100000000000000008302600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054830192506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061208f83600061077c565b90508173ffffffffffffffffffffffffffffffffffffffff167fbe339fc14b041c2b0e0f3dd2cd325d0c3668b78378001e53160eab36153264588483604051808381526020018281526020019250505060405180910390a2505050565b600080828401905083811015151561210057fe5b8091505092915050565b600080828481151561211857fe5b0490508091505092915050565b600082821115151561213357fe5b818303905092915050565b6000806000670de0b6b3a76400006402540be4000291506008546402540be4006121b46121ae600854866402540be400600202020260026008540a60026402540be4000a02670de0b6b3a76400008a02670de0b6b3a76400006402540be40002600202026002890a010101612276565b85612125565b8115156121bd57fe5b040390508092505050919050565b600080600080670de0b6b3a764000085019250670de0b6b3a7640000600854019150670de0b6b3a764000061225f670de0b6b3a764000085036402540be400670de0b6b3a76400008681151561221d57fe5b046402540be400026402540be4000103026002670de0b6b3a7640000876002890a0381151561224857fe5b046402540be4000281151561225957fe5b04612125565b81151561226857fe5b049050809350505050919050565b60008060026001840181151561228857fe5b0490508291505b818110156122bb5780915060028182858115156122a857fe5b04018115156122b357fe5b04905061228f565b50919050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061230257805160ff1916838001178555612330565b82800160010185558215612330579182015b8281111561232f578251825591602001919060010190612314565b5b50905061233d9190612341565b5090565b61236391905b8082111561235f576000816000905550600101612347565b5090565b905600a165627a7a723058207e9db886a6fcb4372a199e671f6d9a5158d29c574cfda00039669c1a9443fce60029
Deployed Bytecode
0x60606040526004361061015e576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806265318b1461016c57806306fdde03146101b957806310d0ffdd1461024757806318160ddd1461027e57806322609373146102a757806327defa1f146102de578063313ce5671461030b578063392efb521461033a5780633ccfd60b146103795780634b7503341461038e57806356d399e8146103b7578063688abbf7146103e05780636b2f46321461041957806370a08231146104425780638328b6101461048f5780638620410b146104b257806389135ae9146104db578063949e8acd1461050d57806395d89b4114610536578063a8e04f34146105c4578063a9059cbb146105d9578063b84c824614610633578063c47f002714610690578063e4849b32146106ed578063e9fad8ee14610710578063f088d54714610725578063fdb5a03e14610767575b61016934600061077c565b50005b341561017757600080fd5b6101a3600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190505061107c565b6040518082815260200191505060405180910390f35b34156101c457600080fd5b6101cc61111e565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561020c5780820151818401526020810190506101f1565b50505050905090810190601f1680156102395780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561025257600080fd5b61026860048080359060200190919050506111bc565b6040518082815260200191505060405180910390f35b341561028957600080fd5b6102916111f4565b6040518082815260200191505060405180910390f35b34156102b257600080fd5b6102c860048080359060200190919050506111fe565b6040518082815260200191505060405180910390f35b34156102e957600080fd5b6102f1611247565b604051808215151515815260200191505060405180910390f35b341561031657600080fd5b61031e61125a565b604051808260ff1660ff16815260200191505060405180910390f35b341561034557600080fd5b61035f60048080356000191690602001909190505061125f565b604051808215151515815260200191505060405180910390f35b341561038457600080fd5b61038c61127f565b005b341561039957600080fd5b6103a161141c565b6040518082815260200191505060405180910390f35b34156103c257600080fd5b6103ca611475565b6040518082815260200191505060405180910390f35b34156103eb57600080fd5b6104036004808035151590602001909190505061147b565b6040518082815260200191505060405180910390f35b341561042457600080fd5b61042c6114e7565b6040518082815260200191505060405180910390f35b341561044d57600080fd5b610479600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050611506565b6040518082815260200191505060405180910390f35b341561049a57600080fd5b6104b0600480803590602001909190505061154f565b005b34156104bd57600080fd5b6104c56115e3565b6040518082815260200191505060405180910390f35b34156104e657600080fd5b61050b600480803560001916906020019091908035151590602001909190505061163c565b005b341561051857600080fd5b6105206116fd565b6040518082815260200191505060405180910390f35b341561054157600080fd5b610549611712565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561058957808201518184015260208101905061056e565b50505050905090810190601f1680156105b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156105cf57600080fd5b6105d76117b0565b005b34156105e457600080fd5b610619600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091908035906020019091905050611857565b604051808215151515815260200191505060405180910390f35b341561063e57600080fd5b61068e600480803590602001908201803590602001908080601f01602080910402602001604051908101604052809392919081815260200183838082843782019150505050505091905050611b89565b005b341561069b57600080fd5b6106eb600480803590602001908201803590602001908080601f01602080910402602001604051908101604052809392919081815260200183838082843782019150505050505091905050611c2d565b005b34156106f857600080fd5b61070e6004808035906020019091905050611cd1565b005b341561071b57600080fd5b610723611eff565b005b610751600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050611f66565b6040518082815260200191505060405180910390f35b341561077257600080fd5b61077a611f78565b005b60008060008060008060008060008a6000339050600b60009054906101000a900460ff1680156107be57506801158e460913d00000826107ba6114e7565b0311155b15610cac5760011515600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514801561086c5750678ac7230489e8000082600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540111155b151561087757600080fd5b6108c0600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836120ec565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503399506109148d600a60ff1661210a565b985061092189600361210a565b975061092d8989612125565b96506109398d8a612125565b95506109448661213e565b94506801000000000000000087029350600085118015610970575060085461096e866008546120ec565b115b151561097b57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff16141580156109e457508973ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff1614155b8015610a315750600254600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410155b15610ac757610a7f600560008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054896120ec565b600560008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ae2565b610ad187896120ec565b965068010000000000000000870293505b60006008541115610b4d57610af9600854866120ec565b600881905550600854680100000000000000008802811515610b1757fe5b04600960008282540192505081905550600854680100000000000000008802811515610b3f57fe5b048502840384039350610b55565b846008819055505b610b9e600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054866120ec565b600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555083856009540203925082600660008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508b73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167f022c0d992e4d873a3748436d960d5140c1f9721cf73f7ca5ec679d3d9f4fe2d58f88604051808381526020018281526020019250505060405180910390a3849a5061106c565b6000600b60006101000a81548160ff021916908315150217905550339950610cd88d600a60ff1661210a565b9850610ce589600361210a565b9750610cf18989612125565b9650610cfd8d8a612125565b9550610d088661213e565b94506801000000000000000087029350600085118015610d345750600854610d32866008546120ec565b115b1515610d3f57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff1614158015610da857508973ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff1614155b8015610df55750600254600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410155b15610e8b57610e43600560008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054896120ec565b600560008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ea6565b610e9587896120ec565b965068010000000000000000870293505b60006008541115610f1157610ebd600854866120ec565b600881905550600854680100000000000000008802811515610edb57fe5b04600960008282540192505081905550600854680100000000000000008802811515610f0357fe5b048502840384039350610f19565b846008819055505b610f62600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054866120ec565b600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555083856009540203925082600660008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508b73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167f022c0d992e4d873a3748436d960d5140c1f9721cf73f7ca5ec679d3d9f4fe2d58f88604051808381526020018281526020019250505060405180910390a3849a505b5050505050505050505092915050565b600068010000000000000000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600954020381151561111657fe5b049050919050565b60008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111b45780601f10611189576101008083540402835291602001916111b4565b820191906000526020600020905b81548152906001019060200180831161119757829003601f168201915b505050505081565b6000806000806111d085600a60ff1661210a565b92506111dc8584612125565b91506111e78261213e565b9050809350505050919050565b6000600854905090565b600080600080600854851115151561121557600080fd5b61121e856121cb565b925061122e83600a60ff1661210a565b915061123a8383612125565b9050809350505050919050565b600b60009054906101000a900460ff1681565b601281565b600a6020528060005260406000206000915054906101000a900460ff1681565b600080600061128e600161147b565b11151561129a57600080fd5b3391506112a7600061147b565b9050680100000000000000008102600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054810190506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015156113ca57600080fd5b8173ffffffffffffffffffffffffffffffffffffffff167fccad973dcd043c7d680389db4378bd6b9775db7124092e9e0422c9e46d7985dc826040518082815260200191505060405180910390a25050565b6000806000806000600854141561143c576402540be4008003935061146f565b61144d670de0b6b3a76400006121cb565b925061145d83600a60ff1661210a565b91506114698383612125565b90508093505b50505090565b60025481565b600080339050826114945761148f8161107c565b6114df565b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114dd8261107c565b015b915050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1631905090565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000339050600a600082604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815260140191505060405180910390206000191660001916815260200190815260200160002060009054906101000a900460ff1615156115d857600080fd5b816002819055505050565b60008060008060006008541415611603576402540be40080019350611636565b611614670de0b6b3a76400006121cb565b925061162483600a60ff1661210a565b915061163083836120ec565b90508093505b50505090565b6000339050600a600082604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815260140191505060405180910390206000191660001916815260200190815260200160002060009054906101000a900460ff1615156116c557600080fd5b81600a6000856000191660001916815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b60008033905061170c81611506565b91505090565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117a85780601f1061177d576101008083540402835291602001916117a8565b820191906000526020600020905b81548152906001019060200180831161178b57829003601f168201915b505050505081565b6000339050600a600082604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815260140191505060405180910390206000191660001916815260200190815260200160002060009054906101000a900460ff16151561183957600080fd5b6000600b60006101000a81548160ff02191690831515021790555050565b6000806000806000806118686116fd565b11151561187457600080fd5b339350600b60009054906101000a900460ff161580156118d35750600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548611155b15156118de57600080fd5b60006118ea600161147b565b11156118f9576118f861127f565b5b61190786600a60ff1661210a565b92506119138684612125565b915061191e836121cb565b905061192c60085484612125565b60088190555061197b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205487612125565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a07600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836120ec565b600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560095402600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055508160095402600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611b10600954600854680100000000000000008402811515611b0a57fe5b046120ec565b6009819055508673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600194505050505092915050565b6000339050600a600082604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815260140191505060405180910390206000191660001916815260200190815260200160002060009054906101000a900460ff161515611c1257600080fd5b8160019080519060200190611c289291906122c1565b505050565b6000339050600a600082604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815260140191505060405180910390206000191660001916815260200190815260200160002060009054906101000a900460ff161515611cb657600080fd5b8160009080519060200190611ccc9291906122c1565b505050565b6000806000806000806000611ce46116fd565b111515611cf057600080fd5b339550600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548711151515611d4157600080fd5b869450611d4d856121cb565b9350611d5d84600a60ff1661210a565b9250611d698484612125565b9150611d7760085486612125565b600881905550611dc6600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205486612125565b600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550680100000000000000008202856009540201905080600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555060006008541115611ea057611e99600954600854680100000000000000008602811515611e9357fe5b046120ec565b6009819055505b8573ffffffffffffffffffffffffffffffffffffffff167fc4823739c5787d2ca17e404aa47d5569ae71dfb49cbf21b3f6152ed238a311398684604051808381526020018281526020019250505060405180910390a250505050505050565b600080339150600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811115611f5a57611f5981611cd1565b5b611f6261127f565b5050565b6000611f72348361077c565b50919050565b600080600080611f88600161147b565b111515611f9457600080fd5b611f9e600061147b565b9250339150680100000000000000008302600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054830192506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061208f83600061077c565b90508173ffffffffffffffffffffffffffffffffffffffff167fbe339fc14b041c2b0e0f3dd2cd325d0c3668b78378001e53160eab36153264588483604051808381526020018281526020019250505060405180910390a2505050565b600080828401905083811015151561210057fe5b8091505092915050565b600080828481151561211857fe5b0490508091505092915050565b600082821115151561213357fe5b818303905092915050565b6000806000670de0b6b3a76400006402540be4000291506008546402540be4006121b46121ae600854866402540be400600202020260026008540a60026402540be4000a02670de0b6b3a76400008a02670de0b6b3a76400006402540be40002600202026002890a010101612276565b85612125565b8115156121bd57fe5b040390508092505050919050565b600080600080670de0b6b3a764000085019250670de0b6b3a7640000600854019150670de0b6b3a764000061225f670de0b6b3a764000085036402540be400670de0b6b3a76400008681151561221d57fe5b046402540be400026402540be4000103026002670de0b6b3a7640000876002890a0381151561224857fe5b046402540be4000281151561225957fe5b04612125565b81151561226857fe5b049050809350505050919050565b60008060026001840181151561228857fe5b0490508291505b818110156122bb5780915060028182858115156122a857fe5b04018115156122b357fe5b04905061228f565b50919050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061230257805160ff1916838001178555612330565b82800160010185558215612330579182015b8281111561232f578251825591602001919060010190612314565b5b50905061233d9190612341565b5090565b61236391905b8082111561235f576000816000905550600101612347565b5090565b905600a165627a7a723058207e9db886a6fcb4372a199e671f6d9a5158d29c574cfda00039669c1a9443fce60029
Deployed Bytecode Sourcemap
1523:23044:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7479:30;7494:9;7505:3;7479:14;:30::i;:::-;;1523:23044;15822:254;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4793:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;4793:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17447:398;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14419:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17967:414;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6261:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4869:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6052:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8831:678;;;;;;;;;;;;;;16158:543;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5207:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15164:310;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14220:128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15562:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13493:161;;;;;;;;;;;;;;;;;;;;;;;;;;16784:542;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13218:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14620:182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4834:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;4834:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13003:123;;;;;;;;;;;;;;11020:1782;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13904:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13723:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9577:1300;;;;;;;;;;;;;;;;;;;;;;;;;;8438:320;;;;;;;;;;;;;;7085:155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7601:767;;;;;;;;;;;;;;18549:3444;18699:7;18747:24;18795:27;18881:22;18953:18;19034:22;19122:23;19192:12;21680:22;18645:17;2710:24;2737:10;2710:37;;2874:15;;;;;;;;;;;:86;;;;;5451:8;2920:17;2895:22;:20;:22::i;:::-;:42;2894:64;;2874:86;2870:907;;;3096:4;3062:38;;:12;:30;3075:16;3062:30;;;;;;;;;;;;;;;;;;;;;;;;;:38;;;:250;;;;;5391:8;3268:17;3220:27;:45;3248:16;3220:45;;;;;;;;;;;;;;;;:65;3219:93;;3062:250;2976:369;;;;;;;;3472:78;3485:27;:45;3513:16;3485:45;;;;;;;;;;;;;;;;3532:17;3472:12;:78::i;:::-;3424:27;:45;3452:16;3424:45;;;;;;;;;;;;;;;:126;;;;18774:10;18747:37;;18825:45;18838:17;4950:2;18825:45;;:12;:45::i;:::-;18795:75;;18906:36;18919:19;18940:1;18906:12;:36::i;:::-;18881:61;;18974:49;18987:19;19008:14;18974:12;:49::i;:::-;18953:70;;19059:52;19072:17;19091:19;19059:12;:52::i;:::-;19034:77;;19148:33;19166:14;19148:17;:33::i;:::-;19122:59;;5141:5;19207:10;:22;19192:37;;19601:1;19583:15;:19;:82;;;;;19652:12;;19607:42;19620:15;19636:12;;19607;:42::i;:::-;:57;19583:82;19575:91;;;;;;;;19814:42;19799:57;;:11;:57;;;;:136;;;;;19919:16;19904:31;;:11;:31;;;;19799:136;:345;;;;;20126:18;;20090:19;:32;20110:11;20090:32;;;;;;;;;;;;;;;;:54;;19799:345;19737:809;;;20240:59;20253:16;:29;20270:11;20253:29;;;;;;;;;;;;;;;;20284:14;20240:12;:59::i;:::-;20208:16;:29;20225:11;20208:29;;;;;;;;;;;;;;;:91;;;;19737:809;;;20450:40;20463:10;20475:14;20450:12;:40::i;:::-;20437:53;;5141:5;20512:10;:22;20505:29;;19737:809;20635:1;20620:12;;:16;20617:671;;;20720:43;20733:12;;20747:15;20720:12;:43::i;:::-;20705:12;:58;;;;20951:12;;5141:5;20925:10;:22;:39;;;;;;;;20905:15;;:60;;;;;;;;;;;21148:12;;5141:5;21122:10;:22;:39;;;;;;;;21103:15;:59;21097:4;:66;21089:4;:75;21082:82;;20617:671;;;21261:15;21246:12;:30;;;;20617:671;21424:68;21437:19;:37;21457:16;21437:37;;;;;;;;;;;;;;;;21476:15;21424:12;:68::i;:::-;21384:19;:37;21404:16;21384:37;;;;;;;;;;;;;;;:108;;;;21753:4;21734:15;21716;;:33;21715:42;21680:78;;21801:15;21769:10;:28;21780:16;21769:28;;;;;;;;;;;;;;;;:47;;;;;;;;;;;21930:11;21860:82;;21876:16;21860:82;;;21894:17;21913:15;21860:82;;;;;;;;;;;;;;;;;;;;;;;;21970:15;21963:22;;2870:907;;;3740:5;3722:15;;:23;;;;;;;;;;;;;;;;;;18774:10;18747:37;;18825:45;18838:17;4950:2;18825:45;;:12;:45::i;:::-;18795:75;;18906:36;18919:19;18940:1;18906:12;:36::i;:::-;18881:61;;18974:49;18987:19;19008:14;18974:12;:49::i;:::-;18953:70;;19059:52;19072:17;19091:19;19059:12;:52::i;:::-;19034:77;;19148:33;19166:14;19148:17;:33::i;:::-;19122:59;;5141:5;19207:10;:22;19192:37;;19601:1;19583:15;:19;:82;;;;;19652:12;;19607:42;19620:15;19636:12;;19607;:42::i;:::-;:57;19583:82;19575:91;;;;;;;;19814:42;19799:57;;:11;:57;;;;:136;;;;;19919:16;19904:31;;:11;:31;;;;19799:136;:345;;;;;20126:18;;20090:19;:32;20110:11;20090:32;;;;;;;;;;;;;;;;:54;;19799:345;19737:809;;;20240:59;20253:16;:29;20270:11;20253:29;;;;;;;;;;;;;;;;20284:14;20240:12;:59::i;:::-;20208:16;:29;20225:11;20208:29;;;;;;;;;;;;;;;:91;;;;19737:809;;;20450:40;20463:10;20475:14;20450:12;:40::i;:::-;20437:53;;5141:5;20512:10;:22;20505:29;;19737:809;20635:1;20620:12;;:16;20617:671;;;20720:43;20733:12;;20747:15;20720:12;:43::i;:::-;20705:12;:58;;;;20951:12;;5141:5;20925:10;:22;:39;;;;;;;;20905:15;;:60;;;;;;;;;;;21148:12;;5141:5;21122:10;:22;:39;;;;;;;;21103:15;:59;21097:4;:66;21089:4;:75;21082:82;;20617:671;;;21261:15;21246:12;:30;;;;20617:671;21424:68;21437:19;:37;21457:16;21437:37;;;;;;;;;;;;;;;;21476:15;21424:12;:68::i;:::-;21384:19;:37;21404:16;21384:37;;;;;;;;;;;;;;;:108;;;;21753:4;21734:15;21716;;:33;21715:42;21680:78;;21801:15;21769:10;:28;21780:16;21769:28;;;;;;;;;;;;;;;;:47;;;;;;;;;;;21930:11;21860:82;;21876:16;21860:82;;;21894:17;21913:15;21860:82;;;;;;;;;;;;;;;;;;;;;;;;21970:15;21963:22;;2870:907;18549:3444;;;;;;;;;;;;;;:::o;15822:254::-;15916:7;5141:5;16027:10;:28;16038:16;16027:28;;;;;;;;;;;;;;;;15986:19;:37;16006:16;15986:37;;;;;;;;;;;;;;;;15968:15;;:55;15959:96;15948:120;;;;;;;;15941:127;;15822:254;;;:::o;4793:34::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17447:398::-;17556:7;17581:18;17657:22;17735:23;17602:44;17615:16;4950:2;17602:44;;:12;:44::i;:::-;17581:65;;17682:42;17695:16;17713:10;17682:12;:42::i;:::-;17657:67;;17761:33;17779:14;17761:17;:33::i;:::-;17735:59;;17822:15;17815:22;;17447:398;;;;;;:::o;14419:122::-;14489:7;14521:12;;14514:19;;14419:122;:::o;17967:414::-;18075:7;18149:17;18212:18;18281:22;18125:12;;18108:13;:29;;18100:38;;;;;;;;18169:32;18187:13;18169:17;:32::i;:::-;18149:52;;18233:37;18246:9;4950:2;18233:37;;:12;:37::i;:::-;18212:58;;18306:35;18319:9;18330:10;18306:12;:35::i;:::-;18281:60;;18359:14;18352:21;;17967:414;;;;;;:::o;6261:34::-;;;;;;;;;;;;;:::o;4869:35::-;4902:2;4869:35;:::o;6052:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;8831:678::-;8933:24;8981:18;1896:1;1876:17;1888:4;1876:11;:17::i;:::-;:21;1868:30;;;;;;;;8960:10;8933:37;;9002:18;9014:5;9002:11;:18::i;:::-;8981:39;;5141:5;9156:10;:22;9113:10;:28;9124:16;9113:28;;;;;;;;;;;;;;;;:66;;;;;;;;;;;9241:16;:34;9258:16;9241:34;;;;;;;;;;;;;;;;9227:48;;;;9323:1;9286:16;:34;9303:16;9286:34;;;;;;;;;;;;;;;:38;;;;9380:16;:25;;:37;9406:10;9380:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9472:16;9461:40;;;9490:10;9461:40;;;;;;;;;;;;;;;;;;8831:678;;:::o;16158:543::-;16229:7;16453:17;16511:18;16586:22;16353:1;16337:12;;:17;16334:360;;;5080:16;5006;16377:43;16370:50;;;;16334:360;16473:23;16491:4;16473:17;:23::i;:::-;16453:43;;16532:39;16545:9;4950:2;16532:39;;:12;:39::i;:::-;16511:60;;16611:35;16624:9;16635:10;16611:12;:35::i;:::-;16586:60;;16668:14;16661:21;;16158:543;;;;;:::o;5207:40::-;;;;:::o;15164:310::-;15263:7;15288:24;15315:10;15288:37;;15343:21;:122;;15436:29;15448:16;15436:11;:29::i;:::-;15343:122;;;15399:16;:34;15416:16;15399:34;;;;;;;;;;;;;;;;15367:29;15379:16;15367:11;:29::i;:::-;:66;15343:122;15336:129;;15164:310;;;;:::o;14220:128::-;14299:4;14328;:12;;;14321:19;;14220:128;:::o;15562:169::-;15654:7;15686:19;:37;15706:16;15686:37;;;;;;;;;;;;;;;;15679:44;;15562:169;;;:::o;13493:161::-;2340:24;2367:10;2340:37;;2396:14;:43;2421:16;2411:27;;;;;;;;;;;;;;;;;;;;;;;;2396:43;;;;;;;;;;;;;;;;;;;;;;;;;;;2388:52;;;;;;;;13631:15;13610:18;:36;;;;13493:161;;:::o;16784:542::-;16854:7;17078:17;17136:18;17211:22;16978:1;16962:12;;:17;16959:360;;;5080:16;5006;17002:43;16995:50;;;;16959:360;17098:23;17116:4;17098:17;:23::i;:::-;17078:43;;17157:39;17170:9;4950:2;17157:39;;:12;:39::i;:::-;17136:60;;17236:35;17249:9;17260:10;17236:12;:35::i;:::-;17211:60;;17293:14;17286:21;;16784:542;;;;;:::o;13218:167::-;2340:24;2367:10;2340:37;;2396:14;:43;2421:16;2411:27;;;;;;;;;;;;;;;;;;;;;;;;2396:43;;;;;;;;;;;;;;;;;;;;;;;;;;;2388:52;;;;;;;;13370:7;13340:14;:27;13355:11;13340:27;;;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;13218:167;;;:::o;14620:182::-;14687:7;14712:24;14739:10;14712:37;;14767:27;14777:16;14767:9;:27::i;:::-;14760:34;;14620:182;;:::o;4834:28::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13003:123::-;2340:24;2367:10;2340:37;;2396:14;:43;2421:16;2411:27;;;;;;;;;;;;;;;;;;;;;;;;2396:43;;;;;;;;;;;;;;;;;;;;;;;;;;;2388:52;;;;;;;;13113:5;13095:15;;:23;;;;;;;;;;;;;;;;;;13003:123;:::o;11020:1782::-;11142:4;11182:24;11724:17;11798:20;11872:18;1763:1;1750:10;:8;:10::i;:::-;:14;1742:23;;;;;;;;11209:10;11182:37;;11411:15;;;;;;;;;;;11410:16;:76;;;;;11449:19;:37;11469:16;11449:37;;;;;;;;;;;;;;;;11430:15;:56;;11410:76;11402:85;;;;;;;;11584:1;11564:17;11576:4;11564:11;:17::i;:::-;:21;11561:36;;;11587:10;:8;:10::i;:::-;11561:36;11744:43;11757:15;4950:2;11744:43;;:12;:43::i;:::-;11724:63;;11821:40;11834:15;11851:9;11821:12;:40::i;:::-;11798:63;;11893:28;11911:9;11893:17;:28::i;:::-;11872:49;;11983:37;11996:12;;12010:9;11983:12;:37::i;:::-;11968:12;:52;;;;12101:68;12114:19;:37;12134:16;12114:37;;;;;;;;;;;;;;;;12153:15;12101:12;:68::i;:::-;12061:19;:37;12081:16;12061:37;;;;;;;;;;;;;;;:108;;;;12214:59;12227:19;:31;12247:10;12227:31;;;;;;;;;;;;;;;;12260:12;12214;:59::i;:::-;12180:19;:31;12200:10;12180:31;;;;;;;;;;;;;;;:93;;;;12391:15;12373;;:33;12331:10;:28;12342:16;12331:28;;;;;;;;;;;;;;;;:76;;;;;;;;;;;12472:12;12454:15;;:30;12418:10;:22;12429:10;12418:22;;;;;;;;;;;;;;;;:67;;;;;;;;;;;12569:70;12582:15;;12626:12;;5141:5;12600:10;:22;12599:39;;;;;;;;12569:12;:70::i;:::-;12551:15;:88;;;;12710:10;12683:52;;12692:16;12683:52;;;12722:12;12683:52;;;;;;;;;;;;;;;;;;12781:4;12774:11;;11020:1782;;;;;;;;:::o;13904:120::-;2340:24;2367:10;2340:37;;2396:14;:43;2421:16;2411:27;;;;;;;;;;;;;;;;;;;;;;;;2396:43;;;;;;;;;;;;;;;;;;;;;;;;;;;2388:52;;;;;;;;14009:7;14000:6;:16;;;;;;;;;;;;:::i;:::-;;13904:120;;:::o;13723:112::-;2340:24;2367:10;2340:37;;2396:14;:43;2421:16;2411:27;;;;;;;;;;;;;;;;;;;;;;;;2396:43;;;;;;;;;;;;;;;;;;;;;;;;;;;2388:52;;;;;;;;13822:5;13815:4;:12;;;;;;;;;;;;:::i;:::-;;13723:112;;:::o;9577:1300::-;9697:24;9854:15;9898:17;9955:18;10024:22;10357;1763:1;1750:10;:8;:10::i;:::-;:14;1742:23;;;;;;;;9724:10;9697:37;;9805:19;:37;9825:16;9805:37;;;;;;;;;;;;;;;;9786:15;:56;;9778:65;;;;;;;;9872:15;9854:33;;9918:26;9936:7;9918:17;:26::i;:::-;9898:46;;9976:37;9989:9;4950:2;9976:37;;:12;:37::i;:::-;9955:58;;10049:35;10062:9;10073:10;10049:12;:35::i;:::-;10024:60;;10153:35;10166:12;;10180:7;10153:12;:35::i;:::-;10138:12;:50;;;;10239:60;10252:19;:37;10272:16;10252:37;;;;;;;;;;;;;;;;10291:7;10239:12;:60::i;:::-;10199:19;:37;10219:16;10199:37;;;;;;;;;;;;;;;:100;;;;5141:5;10421:14;:26;10410:7;10392:15;;:25;:56;10357:92;;10492:15;10460:10;:28;10471:16;10460:28;;;;;;;;;;;;;;;;:47;;;;;;;;;;;10597:1;10582:12;;:16;10578:194;;;10690:70;10703:15;;10747:12;;5141:5;10721:10;:22;10720:39;;;;;;;;10690:12;:70::i;:::-;10672:15;:88;;;;10578:194;10827:16;10815:54;;;10845:7;10854:14;10815:54;;;;;;;;;;;;;;;;;;;;;;;;9577:1300;;;;;;;:::o;8438:320::-;8541:24;8589:15;8568:10;8541:37;;8607:19;:37;8627:16;8607:37;;;;;;;;;;;;;;;;8589:55;;8668:1;8658:7;:11;8655:29;;;8671:13;8676:7;8671:4;:13::i;:::-;8655:29;8740:10;:8;:10::i;:::-;8438:320;;:::o;7085:155::-;7169:7;7194:38;7209:9;7220:11;7194:14;:38::i;:::-;;7085:155;;;:::o;7601:767::-;7708:18;7853:24;8214:15;1896:1;1876:17;1888:4;1876:11;:17::i;:::-;:21;1868:30;;;;;;;;7729:18;7741:5;7729:11;:18::i;:::-;7708:39;;7880:10;7853:37;;5141:5;7944:10;:22;7901:10;:28;7912:16;7901:28;;;;;;;;;;;;;;;;:66;;;;;;;;;;;8034:16;:34;8051:16;8034:34;;;;;;;;;;;;;;;;8020:48;;;;8116:1;8079:16;:34;8096:16;8079:34;;;;;;;;;;;;;;;:38;;;;8232:31;8247:10;8259:3;8232:14;:31::i;:::-;8214:49;;8322:16;8307:53;;;8340:10;8352:7;8307:53;;;;;;;;;;;;;;;;;;;;;;;;7601:767;;;:::o;25679:147::-;25737:7;25757:9;25773:1;25769;:5;25757:17;;25797:1;25792;:6;;25785:14;;;;;;25817:1;25810:8;;25679:147;;;;;:::o;25067:288::-;25125:7;25224:9;25240:1;25236;:5;;;;;;;;25224:17;;25346:1;25339:8;;25067:288;;;;;:::o;25481:123::-;25539:7;25571:1;25566;:6;;25559:14;;;;;;25595:1;25591;:5;25584:12;;25481:123;;;;:::o;22289:976::-;22384:7;22409:26;22474:23;22459:4;5006:16;22438:25;22409:54;;23197:12;;5080:16;22589:555;22625:457;23042:12;;23023:18;5080:16;22996:1;:26;:45;:58;22931:1;22917:12;;:15;22913:1;5080:16;22887:27;22886:47;22818:4;22806:9;:16;22799:4;5080:16;22774:29;22771:1;:33;:52;22707:1;22687:18;:21;22686:138;:248;:369;22625:4;:457::i;:::-;23107:18;22589:12;:555::i;:::-;22526:658;;;;;;;;22511:699;22474:736;;23242:15;23235:22;;22289:976;;;;;:::o;23532:722::-;23625:7;23652:15;23697:20;23752:22;23681:4;23671:7;:14;23652:34;;23736:4;23721:12;;:19;23697:44;;24209:4;23841:357;24104:4;24094:7;:14;5080:16;24013:4;24000:12;:17;;;;;;;;5080:16;23974:44;5006:16;23953:66;23922:147;23895:214;24182:1;24175:4;24166:7;24164:1;24155:7;:10;:18;24154:25;;;;;;;;5080:16;24130:50;24129:54;;;;;;;;23841:12;:357::i;:::-;:372;;;;;;;;23752:462;;24232:14;24225:21;;23532:722;;;;;;:::o;24366:198::-;24411:6;24430;24449:1;24444;24440;:5;24439:11;;;;;;;;24430:20;;24465:1;24461:5;;24477:80;24488:1;24484;:5;24477:80;;;24510:1;24506:5;;24544:1;24539;24535;24531;:5;;;;;;;;:9;24530:15;;;;;;;;24526:19;;24477:80;;;24366:198;;;;:::o;1523:23044::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
bzzr://7e9db886a6fcb4372a199e671f6d9a5158d29c574cfda00039669c1a9443fce6
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.