ETH Price: $1,880.17 (+1.07%)

Transaction Decoder

Block:
6544831 at Oct-19-2018 03:12:25 PM +UTC
Transaction Fee:
0.001121868 ETH $2.11
Gas Used:
124,652 Gas / 9 Gwei

Emitted Events:

24 Zethr.onWithdraw( customerAddress=[Receiver] ZethrSnap, ethereumWithdrawn=1446577894563689 )
25 Zethr.Transfer( from=[Receiver] ZethrSnap, to=[Sender] 0xa1927fc3048faede2b0411f2c934fa8bad48e13d, tokens=4661856935286862371000 )

Account State Difference:

  Address   Before After State Difference Code
0x6FBC1B8F...5650fF3D6 0.27247229132094757 Eth0.273918869215511259 Eth0.001446577894563689
0xA1927fc3...BaD48E13D
39.185988459802918177 Eth
Nonce: 57
39.184866591802918177 Eth
Nonce: 58
0.001121868
(MiningPoolHub: Old Address)
14,433.829040333754350001 Eth14,433.830162201754350001 Eth0.001121868
0xD48B6330...8351E020D 4,887.956797471512567003 Eth4,887.955350893618003314 Eth0.001446577894563689

Execution Trace

ZethrSnap.claim( _snapId=1, _payTo=0xA1927fc3048fAEdE2B0411F2C934FA8BaD48E13D, _amount=4661856935286862371000, _signatureBytes=0xAC203B1F615D88A2348C15DCF922FC204A6BCF6E95B67D7E80590FDB1E7968923BB1B1CEB1C6E0D60CF4FFEC200A12459A122820863A421A80DC6B68597E344C1B )
  • Null: 0x000...001.685a166e( )
  • Zethr.transfer( _toAddress=0xA1927fc3048fAEdE2B0411F2C934FA8BaD48E13D, _amountOfTokens=4661856935286862371000 ) => ( True )
    • ETH 0.001446577894563689 ZethrSnap.CALL( )
      File 1 of 2: ZethrSnap
      /*
        Zethr | https://zethr.io
        (c) Copyright 2018 | All Rights Reserved
        This smart contract was developed by the Zethr Dev Team and its source code remains property of the Zethr Project.
      */
      
      pragma solidity ^0.4.24;
      
      // File: contracts/Libraries/SafeMath.sol
      
      library SafeMath {
        function mul(uint a, uint b) internal pure returns (uint) {
          if (a == 0) {
            return 0;
          }
          uint c = a * b;
          assert(c / a == b);
          return c;
        }
      
        function div(uint a, uint b) internal pure returns (uint) {
          // assert(b > 0); // Solidity automatically throws when dividing by 0
          uint c = a / b;
          // assert(a == b * c + a % b); // There is no case in which this doesn't hold
          return c;
        }
      
        function sub(uint a, uint b) internal pure returns (uint) {
          assert(b <= a);
          return a - b;
        }
      
        function add(uint a, uint b) internal pure returns (uint) {
          uint c = a + b;
          assert(c >= a);
          return c;
        }
      }
      
      // File: contracts/Bankroll/ZethrSnap.sol
      
      contract ZethrInterface {
        function transfer(address _from, uint _amount) public;
      
        function myFrontEndTokens() public view returns (uint);
      }
      
      contract ZethrMultiSigWalletInterface {
        mapping(address => bool) public isOwner;
      }
      
      contract ZethrSnap {
      
        struct SnapEntry {
          uint blockNumber;
          uint profit;
        }
      
        struct Sig {
          bytes32 r;
          bytes32 s;
          uint8 v;
        }
      
        // Reference to the Zethr multi sig wallet for authentication
        ZethrMultiSigWalletInterface public multiSigWallet;
      
        // Reference to Zethr token contract
        ZethrInterface zethr;
      
        // The server's public address (used to confirm valid claims)
        address signer;
      
        // Mapping of user address => snap.id => claimStatus
        mapping(address => mapping(uint => bool)) public claimedMap;
      
        // Array of all snaps
        SnapEntry[] public snaps;
      
        // Used to pause the contract in an emergency
        bool public paused;
      
        // The number of tokens in this contract allocated to snaps
        uint public allocatedTokens;
      
        constructor(address _multiSigWalletAddress, address _zethrAddress, address _signer)
        public
        {
          multiSigWallet = ZethrMultiSigWalletInterface(_multiSigWalletAddress);
          zethr = ZethrInterface(_zethrAddress);
          signer = _signer;
          paused = false;
        }
      
        /**
         * @dev Needs to accept ETH dividends from Zethr token contract
         */
        function()
        public payable
        {}
      
        /**
         * @dev Paused claims in an emergency
         * @param _paused The new pause state
         */
        function ownerSetPaused(bool _paused)
        public
        ownerOnly
        {
          paused = _paused;
        }
      
        /**
         * @dev Updates the multi sig wallet reference
         * @param _multiSigWalletAddress The new multi sig wallet address
         */
        function walletSetWallet(address _multiSigWalletAddress)
        public
        walletOnly
        {
          multiSigWallet = ZethrMultiSigWalletInterface(_multiSigWalletAddress);
        }
      
        /**
         * @dev Withdraws dividends to multi sig wallet
         */
        function withdraw()
        public
        {
          (address(multiSigWallet)).transfer(address(this).balance);
        }
      
        /**
         * @dev Updates the signer address
         */
        function walletSetSigner(address _signer)
        public walletOnly
        {
          signer = _signer;
        }
      
        /**
         * @dev Withdraws tokens (for migrating to a new contract)
         */
        function walletWithdrawTokens(uint _amount)
        public walletOnly
        {
          zethr.transfer(address(multiSigWallet), _amount);
        }
      
        /**
         * @return Total number of snaps stored
         */
        function getSnapsLength()
        public view
        returns (uint)
        {
          return snaps.length;
        }
      
        /**
         * @dev Creates a new snap
         * @param _blockNumber The block number the server should use to calculate ownership
         * @param _profitToShare The amount of profit to divide between all holders
         */
        function walletCreateSnap(uint _blockNumber, uint _profitToShare)
        public
        walletOnly
        {
          uint index = snaps.length;
          snaps.length++;
      
          snaps[index].blockNumber = _blockNumber;
          snaps[index].profit = _profitToShare;
      
          // Make sure we have enough free tokens to create this snap
          uint balance = zethr.myFrontEndTokens();
          balance = balance - allocatedTokens;
          require(balance >= _profitToShare);
      
          // Update allocation token count
          allocatedTokens = allocatedTokens + _profitToShare;
        }
      
        /**
         * @dev Retrieves snap details
         * @param _snapId The ID of the snap to get details of
         */
        function getSnap(uint _snapId)
        public view
        returns (uint blockNumber, uint profit, bool claimed)
        {
          SnapEntry storage entry = snaps[_snapId];
          return (entry.blockNumber, entry.profit, claimedMap[msg.sender][_snapId]);
        }
      
        /**
         * @dev Process a claim
         * @param _snapId ID of the snap this claim is for
         * @param _payTo Address to send the proceeds to
         * @param _amount The amount of profit claiming
         * @param _signatureBytes Signature of the server approving this claim
         */
        function claim(uint _snapId, address _payTo, uint _amount, bytes _signatureBytes)
        public
        {
          // Check pause state
          require(!paused);
      
          // Prevent multiple calls
          require(claimedMap[msg.sender][_snapId] == false);
          claimedMap[msg.sender][_snapId] = true;
      
          // Confirm that the server has approved this claim
          // Note: the player cannot modify the _amount arbitrarily because it will invalidate the signature
          Sig memory sig = toSig(_signatureBytes);
          bytes32 hash = keccak256(abi.encodePacked("SNAP", _snapId, msg.sender, _amount));
          address recoveredSigner = ecrecover(hash, sig.v, sig.r, sig.s);
          require(signer == recoveredSigner);
      
          // Reduce allocated tokens by claim amount
          require(_amount <= allocatedTokens);
          allocatedTokens = allocatedTokens - _amount;
      
          // Send tokens
          zethr.transfer(_payTo, _amount);
        }
      
        /**
         * @dev The contract accepts ZTH tokens in order to pay out claims
         */
        function tokenFallback(address /*_from*/, uint /*_amountOfTokens*/, bytes /*_data*/)
        public view
        returns (bool)
        {
          require(msg.sender == address(zethr), "Tokens must be ZTH");
          return true;
        }
      
        /**
         * @dev Extract a Sig struct from given bytes
         */
        function toSig(bytes b)
        internal pure
        returns (Sig memory sig)
        {
          sig.r = bytes32(toUint(b, 0));
          sig.s = bytes32(toUint(b, 32));
          sig.v = uint8(b[64]);
        }
      
        /**
         * @dev Extracts a uint from bytes
         */
        function toUint(bytes _bytes, uint _start)
        internal pure
        returns (uint256)
        {
          require(_bytes.length >= (_start + 32));
          uint256 tempUint;
      
          assembly {
            tempUint := mload(add(add(_bytes, 0x20), _start))
          }
      
          return tempUint;
        }
      
        // Only the multi sig wallet can call this method
        modifier walletOnly()
        {
          require(msg.sender == address(multiSigWallet));
          _;
        }
      
        // Only an owner can call this method (multi sig is always an owner)
        modifier ownerOnly()
        {
          require(msg.sender == address(multiSigWallet) || multiSigWallet.isOwner(msg.sender));
          _;
        }
      }

      File 2 of 2: Zethr
      pragma solidity ^0.4.23;
      
      /**
      
        https://zethr.io  https://zethr.io  https://zethr.io  https://zethr.io  https://zethr.io
      
      
                                ███████╗███████╗████████╗██╗  ██╗██████╗
                                ╚══███╔╝██╔════╝╚══██╔══╝██║  ██║██╔══██╗
                                  ███╔╝ █████╗     ██║   ███████║██████╔╝
                                 ███╔╝  ██╔══╝     ██║   ██╔══██║██╔══██╗
                                ███████╗███████╗   ██║   ██║  ██║██║  ██║
                                ╚══════╝╚══════╝   ╚═╝   ╚═╝  ╚═╝╚═╝  ╚═╝
      
      
      .------..------.     .------..------..------.     .------..------..------..------..------.
      |B.--. ||E.--. |.-.  |T.--. ||H.--. ||E.--. |.-.  |H.--. ||O.--. ||U.--. ||S.--. ||E.--. |
      | :(): || (\/) (( )) | :/\: || :/\: || (\/) (( )) | :/\: || :/\: || (\/) || :/\: || (\/) |
      | ()() || :\/: |'-.-.| (__) || (__) || :\/: |'-.-.| (__) || :\/: || :\/: || :\/: || :\/: |
      | '--'B|| '--'E| (( )) '--'T|| '--'H|| '--'E| (( )) '--'H|| '--'O|| '--'U|| '--'S|| '--'E|
      `------'`------'  '-'`------'`------'`------'  '-'`------'`------'`------'`------'`------'
      
      An interactive, variable-dividend rate contract with an ICO-capped price floor and collectibles.
      
      Credits
      =======
      
      Analysis:
          blurr
          Randall
      
      Contract Developers:
          Etherguy
          klob
          Norsefire
      
      Front-End Design:
          cryptodude
          oguzhanox
          TropicalRogue
      
      **/
      
      contract Zethr {
        using SafeMath for uint;
      
        /*=================================
        =            MODIFIERS            =
        =================================*/
      
        modifier onlyHolders() {
          require(myFrontEndTokens() > 0);
          _;
        }
      
        modifier dividendHolder() {
          require(myDividends(true) > 0);
          _;
        }
      
        modifier onlyAdministrator(){
          address _customerAddress = msg.sender;
          require(administrators[_customerAddress]);
          _;
        }
      
        /*==============================
        =            EVENTS            =
        ==============================*/
      
        event onTokenPurchase(
          address indexed customerAddress,
          uint incomingEthereum,
          uint tokensMinted,
          address indexed referredBy
        );
      
        event UserDividendRate(
          address user,
          uint divRate
        );
      
        event onTokenSell(
          address indexed customerAddress,
          uint tokensBurned,
          uint ethereumEarned
        );
      
        event onReinvestment(
          address indexed customerAddress,
          uint ethereumReinvested,
          uint tokensMinted
        );
      
        event onWithdraw(
          address indexed customerAddress,
          uint ethereumWithdrawn
        );
      
        event Transfer(
          address indexed from,
          address indexed to,
          uint tokens
        );
      
        event Approval(
          address indexed tokenOwner,
          address indexed spender,
          uint tokens
        );
      
        event Allocation(
          uint toBankRoll,
          uint toReferrer,
          uint toTokenHolders,
          uint toDivCardHolders,
          uint forTokens
        );
      
        event Referral(
          address referrer,
          uint amountReceived
        );
      
        /*=====================================
        =            CONSTANTS                =
        =====================================*/
      
        uint8 constant public                decimals              = 18;
      
        uint constant internal               tokenPriceInitial_    = 0.000653 ether;
        uint constant internal               magnitude             = 2**64;
      
        uint constant internal               icoHardCap            = 250 ether;
        uint constant internal               addressICOLimit       = 1   ether;
        uint constant internal               icoMinBuyIn           = 0.1 finney;
        uint constant internal               icoMaxGasPrice        = 50000000000 wei;
      
        uint constant internal               MULTIPLIER            = 9615;
      
        uint constant internal               MIN_ETH_BUYIN         = 0.0001 ether;
        uint constant internal               MIN_TOKEN_SELL_AMOUNT = 0.0001 ether;
        uint constant internal               MIN_TOKEN_TRANSFER    = 1e10;
        uint constant internal               referrer_percentage   = 25;
      
        uint public                          stakingRequirement    = 100e18;
      
        /*================================
         =          CONFIGURABLES         =
         ================================*/
      
        string public                        name               = "Zethr";
        string public                        symbol             = "ZTH";
      
        bytes32 constant public              icoHashedPass      = bytes32(0x5ddcde33b94b19bdef79dd9ea75be591942b9ec78286d64b44a356280fb6a262);
      
        address internal                     bankrollAddress;
      
        ZethrDividendCards                   divCardContract;
      
        /*================================
         =            DATASETS            =
         ================================*/
      
        // Tracks front & backend tokens
        mapping(address => uint) internal    frontTokenBalanceLedger_;
        mapping(address => uint) internal    dividendTokenBalanceLedger_;
        mapping(address =>
        mapping (address => uint))
        public      allowed;
      
        // Tracks dividend rates for users
        mapping(uint8   => bool)    internal validDividendRates_;
        mapping(address => bool)    internal userSelectedRate;
        mapping(address => uint8)   internal userDividendRate;
      
        // Payout tracking
        mapping(address => uint)    internal referralBalance_;
        mapping(address => int256)  internal payoutsTo_;
      
        // ICO per-address limit tracking
        mapping(address => uint)    internal ICOBuyIn;
      
        uint public                          tokensMintedDuringICO;
        uint public                          ethInvestedDuringICO;
      
        uint public                          currentEthInvested;
      
        uint internal                        tokenSupply    = 0;
        uint internal                        divTokenSupply = 0;
      
        uint internal                        profitPerDivToken;
      
        mapping(address => bool) public      administrators;
      
        bool public                          icoPhase     = false;
        bool public                          regularPhase = false;
      
        uint                                 icoOpenTime;
      
        /*=======================================
        =            PUBLIC FUNCTIONS           =
        =======================================*/
        constructor (address _bankrollAddress, address _divCardAddress)
        public
        {
          bankrollAddress = _bankrollAddress;
          divCardContract = ZethrDividendCards(_divCardAddress);
      
          administrators[0x4F4eBF556CFDc21c3424F85ff6572C77c514Fcae] = true; // Norsefire
          administrators[0x11e52c75998fe2E7928B191bfc5B25937Ca16741] = true; // klob
          administrators[0x20C945800de43394F70D789874a4daC9cFA57451] = true; // Etherguy
          administrators[0xef764BAC8a438E7E498c2E5fcCf0f174c3E3F8dB] = true; // blurr
          administrators[0x8537aa2911b193e5B377938A723D805bb0865670] = true; // oguzhanox
          administrators[0x9D221b2100CbE5F05a0d2048E2556a6Df6f9a6C3] = true; // Randall
          administrators[0xDa83156106c4dba7A26E9bF2Ca91E273350aa551] = true; // TropicalRogue
          administrators[0x71009e9E4e5e68e77ECc7ef2f2E95cbD98c6E696] = true; // cryptodude
      
          administrators[msg.sender] = true; // Helps with debugging!
      
          validDividendRates_[2] = true;
          validDividendRates_[5] = true;
          validDividendRates_[10] = true;
          validDividendRates_[15] = true;
          validDividendRates_[20] = true;
          validDividendRates_[25] = true;
          validDividendRates_[33] = true;
      
          userSelectedRate[bankrollAddress] = true;
          userDividendRate[bankrollAddress] = 33;
      
        }
      
        /**
         * Same as buy, but explicitly sets your dividend percentage.
         * If this has been called before, it will update your `default' dividend
         *   percentage for regular buy transactions going forward.
         */
        function buyAndSetDivPercentage(address _referredBy, uint8 _divChoice, string providedUnhashedPass)
        public
        payable
        returns (uint)
        {
          require(icoPhase || regularPhase);
      
          if (icoPhase) {
       
            // Anti-bot measures - not perfect, but should help some.
            bytes32 hashedProvidedPass = keccak256(providedUnhashedPass);
            require(hashedProvidedPass == icoHashedPass || msg.sender == bankrollAddress);
      
            uint gasPrice = tx.gasprice;
      
            // Prevents ICO buyers from getting substantially burned if the ICO is reached
            //   before their transaction is processed.
            require(gasPrice <= icoMaxGasPrice && ethInvestedDuringICO <= icoHardCap);
      
          }
      
          // Dividend percentage should be a currently accepted value.
          require (validDividendRates_[_divChoice]);
      
          // Set the dividend fee percentage denominator.
          userSelectedRate[msg.sender] = true;
          userDividendRate[msg.sender] = _divChoice;
          emit UserDividendRate(msg.sender, _divChoice);
      
          // Finally, purchase tokens.
          purchaseTokens(msg.value, _referredBy);
        }
      
        // All buys except for the above one require regular phase.
      
        function buy(address _referredBy)
        public
        payable
        returns(uint)
        {
          require(regularPhase);
          address _customerAddress = msg.sender;
          require (userSelectedRate[_customerAddress]);
          purchaseTokens(msg.value, _referredBy);
        }
      
        function buyAndTransfer(address _referredBy, address target)
        public
        payable
        {
          bytes memory empty;
          buyAndTransfer(_referredBy,target, empty, 20);
        }
      
        function buyAndTransfer(address _referredBy, address target, bytes _data)
        public
        payable
        {
          buyAndTransfer(_referredBy, target, _data, 20);
        }
      
        // Overload
        function buyAndTransfer(address _referredBy, address target, bytes _data, uint8 divChoice)
        public
        payable
        {
          require(regularPhase);
          address _customerAddress = msg.sender;
          uint256 frontendBalance = frontTokenBalanceLedger_[msg.sender];
          if (userSelectedRate[_customerAddress] && divChoice == 0) {
            purchaseTokens(msg.value, _referredBy);
          } else {
            buyAndSetDivPercentage(_referredBy, divChoice, "0x0");
          }
          uint256 difference = SafeMath.sub(frontTokenBalanceLedger_[msg.sender], frontendBalance);
          transferTo(msg.sender, target, difference, _data);
        }
      
        // Fallback function only works during regular phase - part of anti-bot protection.
        function()
        payable
        public
        {
          /**
          / If the user has previously set a dividend rate, sending
          /   Ether directly to the contract simply purchases more at
          /   the most recent rate. If this is their first time, they
          /   are automatically placed into the 20% rate `bucket'.
          **/
          require(regularPhase);
          address _customerAddress = msg.sender;
          if (userSelectedRate[_customerAddress]) {
            purchaseTokens(msg.value, 0x0);
          } else {
            buyAndSetDivPercentage(0x0, 20, "0x0");
          }
        }
      
        function reinvest()
        dividendHolder()
        public
        {
          require(regularPhase);
          uint _dividends = myDividends(false);
      
          // Pay out requisite `virtual' dividends.
          address _customerAddress            = msg.sender;
          payoutsTo_[_customerAddress]       += (int256) (_dividends * magnitude);
      
          _dividends                         += referralBalance_[_customerAddress];
          referralBalance_[_customerAddress]  = 0;
      
          uint _tokens                        = purchaseTokens(_dividends, 0x0);
      
          // Fire logging event.
          emit onReinvestment(_customerAddress, _dividends, _tokens);
        }
      
        function exit()
        public
        {
          require(regularPhase);
          // Retrieve token balance for caller, then sell them all.
          address _customerAddress = msg.sender;
          uint _tokens             = frontTokenBalanceLedger_[_customerAddress];
      
          if(_tokens > 0) sell(_tokens);
      
          withdraw(_customerAddress);
        }
      
        function withdraw(address _recipient)
        dividendHolder()
        public
        {
          require(regularPhase);
          // Setup data
          address _customerAddress           = msg.sender;
          uint _dividends                    = myDividends(false);
      
          // update dividend tracker
          payoutsTo_[_customerAddress]       +=  (int256) (_dividends * magnitude);
      
          // add ref. bonus
          _dividends                         += referralBalance_[_customerAddress];
          referralBalance_[_customerAddress]  = 0;
      
          if (_recipient == address(0x0)){
            _recipient = msg.sender;
          }
          _recipient.transfer(_dividends);
      
          // Fire logging event.
          emit onWithdraw(_recipient, _dividends);
        }
      
        // Sells front-end tokens.
        // Logic concerning step-pricing of tokens pre/post-ICO is encapsulated in tokensToEthereum_.
        function sell(uint _amountOfTokens)
        onlyHolders()
        public
        {
          // No selling during the ICO. You don't get to flip that fast, sorry!
          require(!icoPhase);
          require(regularPhase);
      
          require(_amountOfTokens <= frontTokenBalanceLedger_[msg.sender]);
      
          uint _frontEndTokensToBurn = _amountOfTokens;
      
          // Calculate how many dividend tokens this action burns.
          // Computed as the caller's average dividend rate multiplied by the number of front-end tokens held.
          // As an additional guard, we ensure that the dividend rate is between 2 and 50 inclusive.
          uint userDivRate  = getUserAverageDividendRate(msg.sender);
          require ((2*magnitude) <= userDivRate && (50*magnitude) >= userDivRate );
          uint _divTokensToBurn = (_frontEndTokensToBurn.mul(userDivRate)).div(magnitude);
      
          // Calculate ethereum received before dividends
          uint _ethereum = tokensToEthereum_(_frontEndTokensToBurn);
      
          if (_ethereum > currentEthInvested){
            // Well, congratulations, you've emptied the coffers.
            currentEthInvested = 0;
          } else { currentEthInvested = currentEthInvested - _ethereum; }
      
          // Calculate dividends generated from the sale.
          uint _dividends = (_ethereum.mul(getUserAverageDividendRate(msg.sender)).div(100)).div(magnitude);
      
          // Calculate Ethereum receivable net of dividends.
          uint _taxedEthereum = _ethereum.sub(_dividends);
      
          // Burn the sold tokens (both front-end and back-end variants).
          tokenSupply         = tokenSupply.sub(_frontEndTokensToBurn);
          divTokenSupply      = divTokenSupply.sub(_divTokensToBurn);
      
          // Subtract the token balances for the seller
          frontTokenBalanceLedger_[msg.sender]    = frontTokenBalanceLedger_[msg.sender].sub(_frontEndTokensToBurn);
          dividendTokenBalanceLedger_[msg.sender] = dividendTokenBalanceLedger_[msg.sender].sub(_divTokensToBurn);
      
          // Update dividends tracker
          int256 _updatedPayouts  = (int256) (profitPerDivToken * _divTokensToBurn + (_taxedEthereum * magnitude));
          payoutsTo_[msg.sender] -= _updatedPayouts;
      
          // Let's avoid breaking arithmetic where we can, eh?
          if (divTokenSupply > 0) {
            // Update the value of each remaining back-end dividend token.
            profitPerDivToken = profitPerDivToken.add((_dividends * magnitude) / divTokenSupply);
          }
      
          // Fire logging event.
          emit onTokenSell(msg.sender, _frontEndTokensToBurn, _taxedEthereum);
        }
      
        /**
         * Transfer tokens from the caller to a new holder.
         * No charge incurred for the transfer. We'd make a terrible bank.
         */
        function transfer(address _toAddress, uint _amountOfTokens)
        onlyHolders()
        public
        returns(bool)
        {
          require(_amountOfTokens >= MIN_TOKEN_TRANSFER
          && _amountOfTokens <= frontTokenBalanceLedger_[msg.sender]);
          bytes memory empty;
          transferFromInternal(msg.sender, _toAddress, _amountOfTokens, empty);
          return true;
      
        }
      
        function approve(address spender, uint tokens)
        public
        returns (bool)
        {
          address _customerAddress           = msg.sender;
          allowed[_customerAddress][spender] = tokens;
      
          // Fire logging event.
          emit Approval(_customerAddress, spender, tokens);
      
          // Good old ERC20.
          return true;
        }
      
        /**
         * Transfer tokens from the caller to a new holder: the Used By Smart Contracts edition.
         * No charge incurred for the transfer. No seriously, we'd make a terrible bank.
         */
        function transferFrom(address _from, address _toAddress, uint _amountOfTokens)
        public
        returns(bool)
        {
          // Setup variables
          address _customerAddress     = _from;
          bytes memory empty;
          // Make sure we own the tokens we're transferring, are ALLOWED to transfer that many tokens,
          // and are transferring at least one full token.
          require(_amountOfTokens >= MIN_TOKEN_TRANSFER
          && _amountOfTokens <= frontTokenBalanceLedger_[_customerAddress]
          && _amountOfTokens <= allowed[_customerAddress][msg.sender]);
      
          transferFromInternal(_from, _toAddress, _amountOfTokens, empty);
      
          // Good old ERC20.
          return true;
      
        }
      
        function transferTo (address _from, address _to, uint _amountOfTokens, bytes _data)
        public
        {
          if (_from != msg.sender){
            require(_amountOfTokens >= MIN_TOKEN_TRANSFER
            && _amountOfTokens <= frontTokenBalanceLedger_[_from]
            && _amountOfTokens <= allowed[_from][msg.sender]);
          }
          else{
            require(_amountOfTokens >= MIN_TOKEN_TRANSFER
            && _amountOfTokens <= frontTokenBalanceLedger_[_from]);
          }
      
          transferFromInternal(_from, _to, _amountOfTokens, _data);
        }
      
        // Who'd have thought we'd need this thing floating around?
        function totalSupply()
        public
        view
        returns (uint256)
        {
          return tokenSupply;
        }
      
        // Anyone can start the regular phase 2 weeks after the ICO phase starts.
        // In case the devs die. Or something.
        function publicStartRegularPhase()
        public
        {
          require(now > (icoOpenTime + 2 weeks) && icoOpenTime != 0);
      
          icoPhase     = false;
          regularPhase = true;
        }
      
        /*----------  ADMINISTRATOR ONLY FUNCTIONS  ----------*/
      
      
        // Fire the starting gun and then duck for cover.
        function startICOPhase()
        onlyAdministrator()
        public
        {
          // Prevent us from startaring the ICO phase again
          require(icoOpenTime == 0);
          icoPhase = true;
          icoOpenTime = now;
        }
      
        // Fire the ... ending gun?
        function endICOPhase()
        onlyAdministrator()
        public
        {
          icoPhase = false;
        }
      
        function startRegularPhase()
        onlyAdministrator
        public
        {
          // disable ico phase in case if that was not disabled yet
          icoPhase = false;
          regularPhase = true;
        }
      
        // The death of a great man demands the birth of a great son.
        function setAdministrator(address _newAdmin, bool _status)
        onlyAdministrator()
        public
        {
          administrators[_newAdmin] = _status;
        }
      
        function setStakingRequirement(uint _amountOfTokens)
        onlyAdministrator()
        public
        {
          // This plane only goes one way, lads. Never below the initial.
          require (_amountOfTokens >= 100e18);
          stakingRequirement = _amountOfTokens;
        }
      
        function setName(string _name)
        onlyAdministrator()
        public
        {
          name = _name;
        }
      
        function setSymbol(string _symbol)
        onlyAdministrator()
        public
        {
          symbol = _symbol;
        }
      
        function changeBankroll(address _newBankrollAddress)
        onlyAdministrator
        public
        {
          bankrollAddress = _newBankrollAddress;
        }
      
        /*----------  HELPERS AND CALCULATORS  ----------*/
      
        function totalEthereumBalance()
        public
        view
        returns(uint)
        {
          return address(this).balance;
        }
      
        function totalEthereumICOReceived()
        public
        view
        returns(uint)
        {
          return ethInvestedDuringICO;
        }
      
        /**
         * Retrieves your currently selected dividend rate.
         */
        function getMyDividendRate()
        public
        view
        returns(uint8)
        {
          address _customerAddress = msg.sender;
          require(userSelectedRate[_customerAddress]);
          return userDividendRate[_customerAddress];
        }
      
        /**
         * Retrieve the total frontend token supply
         */
        function getFrontEndTokenSupply()
        public
        view
        returns(uint)
        {
          return tokenSupply;
        }
      
        /**
         * Retreive the total dividend token supply
         */
        function getDividendTokenSupply()
        public
        view
        returns(uint)
        {
          return divTokenSupply;
        }
      
        /**
         * Retrieve the frontend tokens owned by the caller
         */
        function myFrontEndTokens()
        public
        view
        returns(uint)
        {
          address _customerAddress = msg.sender;
          return getFrontEndTokenBalanceOf(_customerAddress);
        }
      
        /**
         * Retrieve the dividend tokens owned by the caller
         */
        function myDividendTokens()
        public
        view
        returns(uint)
        {
          address _customerAddress = msg.sender;
          return getDividendTokenBalanceOf(_customerAddress);
        }
      
        function myReferralDividends()
        public
        view
        returns(uint)
        {
          return myDividends(true) - myDividends(false);
        }
      
        function myDividends(bool _includeReferralBonus)
        public
        view
        returns(uint)
        {
          address _customerAddress = msg.sender;
          return _includeReferralBonus ? dividendsOf(_customerAddress) + referralBalance_[_customerAddress] : dividendsOf(_customerAddress) ;
        }
      
        function theDividendsOf(bool _includeReferralBonus, address _customerAddress)
        public
        view
        returns(uint)
        {
          return _includeReferralBonus ? dividendsOf(_customerAddress) + referralBalance_[_customerAddress] : dividendsOf(_customerAddress) ;
        }
      
        function getFrontEndTokenBalanceOf(address _customerAddress)
        view
        public
        returns(uint)
        {
          return frontTokenBalanceLedger_[_customerAddress];
        }
      
        function balanceOf(address _owner)
        view
        public
        returns(uint)
        {
          return getFrontEndTokenBalanceOf(_owner);
        }
      
        function getDividendTokenBalanceOf(address _customerAddress)
        view
        public
        returns(uint)
        {
          return dividendTokenBalanceLedger_[_customerAddress];
        }
      
        function dividendsOf(address _customerAddress)
        view
        public
        returns(uint)
        {
          return (uint) ((int256)(profitPerDivToken * dividendTokenBalanceLedger_[_customerAddress]) - payoutsTo_[_customerAddress]) / magnitude;
        }
      
        // Get the sell price at the user's average dividend rate
        function sellPrice()
        public
        view
        returns(uint)
        {
          uint price;
      
          if (icoPhase || currentEthInvested < ethInvestedDuringICO) {
            price = tokenPriceInitial_;
          } else {
      
            // Calculate the tokens received for 100 finney.
            // Divide to find the average, to calculate the price.
            uint tokensReceivedForEth = ethereumToTokens_(0.001 ether);
      
            price = (1e18 * 0.001 ether) / tokensReceivedForEth;
          }
      
          // Factor in the user's average dividend rate
          uint theSellPrice = price.sub((price.mul(getUserAverageDividendRate(msg.sender)).div(100)).div(magnitude));
      
          return theSellPrice;
        }
      
        // Get the buy price at a particular dividend rate
        function buyPrice(uint dividendRate)
        public
        view
        returns(uint)
        {
          uint price;
      
          if (icoPhase || currentEthInvested < ethInvestedDuringICO) {
            price = tokenPriceInitial_;
          } else {
      
            // Calculate the tokens received for 100 finney.
            // Divide to find the average, to calculate the price.
            uint tokensReceivedForEth = ethereumToTokens_(0.001 ether);
      
            price = (1e18 * 0.001 ether) / tokensReceivedForEth;
          }
      
          // Factor in the user's selected dividend rate
          uint theBuyPrice = (price.mul(dividendRate).div(100)).add(price);
      
          return theBuyPrice;
        }
      
        function calculateTokensReceived(uint _ethereumToSpend)
        public
        view
        returns(uint)
        {
          uint _dividends      = (_ethereumToSpend.mul(userDividendRate[msg.sender])).div(100);
          uint _taxedEthereum  = _ethereumToSpend.sub(_dividends);
          uint _amountOfTokens = ethereumToTokens_(_taxedEthereum);
          return  _amountOfTokens;
        }
      
        // When selling tokens, we need to calculate the user's current dividend rate.
        // This is different from their selected dividend rate.
        function calculateEthereumReceived(uint _tokensToSell)
        public
        view
        returns(uint)
        {
          require(_tokensToSell <= tokenSupply);
          uint _ethereum               = tokensToEthereum_(_tokensToSell);
          uint userAverageDividendRate = getUserAverageDividendRate(msg.sender);
          uint _dividends              = (_ethereum.mul(userAverageDividendRate).div(100)).div(magnitude);
          uint _taxedEthereum          = _ethereum.sub(_dividends);
          return  _taxedEthereum;
        }
      
        /*
         * Get's a user's average dividend rate - which is just their divTokenBalance / tokenBalance
         * We multiply by magnitude to avoid precision errors.
         */
      
        function getUserAverageDividendRate(address user) public view returns (uint) {
          return (magnitude * dividendTokenBalanceLedger_[user]).div(frontTokenBalanceLedger_[user]);
        }
      
        function getMyAverageDividendRate() public view returns (uint) {
          return getUserAverageDividendRate(msg.sender);
        }
      
        /*==========================================
        =            INTERNAL FUNCTIONS            =
        ==========================================*/
      
        /* Purchase tokens with Ether.
           During ICO phase, dividends should go to the bankroll
           During normal operation:
             0.5% should go to the master dividend card
             0.5% should go to the matching dividend card
             25% of dividends should go to the referrer, if any is provided. */
        function purchaseTokens(uint _incomingEthereum, address _referredBy)
        internal
        returns(uint)
        {
          require(_incomingEthereum >= MIN_ETH_BUYIN || msg.sender == bankrollAddress, "Tried to buy below the min eth buyin threshold.");
      
          uint toBankRoll;
          uint toReferrer;
          uint toTokenHolders;
          uint toDivCardHolders;
      
          uint dividendAmount;
      
          uint tokensBought;
          uint dividendTokensBought;
      
          uint remainingEth = _incomingEthereum;
      
          uint fee;
      
          // 1% for dividend card holders is taken off before anything else
          if (regularPhase) {
            toDivCardHolders = _incomingEthereum.div(100);
            remainingEth = remainingEth.sub(toDivCardHolders);
          }
      
          /* Next, we tax for dividends:
             Dividends = (ethereum * div%) / 100
             Important note: if we're out of the ICO phase, the 1% sent to div-card holders
                             is handled prior to any dividend taxes are considered. */
      
          // Grab the user's dividend rate
          uint dividendRate = userDividendRate[msg.sender];
      
          // Calculate the total dividends on this buy
          dividendAmount = (remainingEth.mul(dividendRate)).div(100);
      
          remainingEth   = remainingEth.sub(dividendAmount);
      
          // If we're in the ICO and bankroll is buying, don't tax
          if (icoPhase && msg.sender == bankrollAddress) {
            remainingEth = remainingEth + dividendAmount;
          }
      
          // Calculate how many tokens to buy:
          tokensBought         = ethereumToTokens_(remainingEth);
          dividendTokensBought = tokensBought.mul(dividendRate);
      
          // This is where we actually mint tokens:
          tokenSupply    = tokenSupply.add(tokensBought);
          divTokenSupply = divTokenSupply.add(dividendTokensBought);
      
          /* Update the total investment tracker
             Note that this must be done AFTER we calculate how many tokens are bought -
             because ethereumToTokens needs to know the amount *before* investment, not *after* investment. */
      
          currentEthInvested = currentEthInvested + remainingEth;
      
          // If ICO phase, all the dividends go to the bankroll
          if (icoPhase) {
            toBankRoll     = dividendAmount;
      
            // If the bankroll is buying, we don't want to send eth back to the bankroll
            // Instead, let's just give it the tokens it would get in an infinite recursive buy
            if (msg.sender == bankrollAddress) {
              toBankRoll = 0;
            }
      
            toReferrer     = 0;
            toTokenHolders = 0;
      
            /* ethInvestedDuringICO tracks how much Ether goes straight to tokens,
               not how much Ether we get total.
               this is so that our calculation using "investment" is accurate. */
            ethInvestedDuringICO = ethInvestedDuringICO + remainingEth;
            tokensMintedDuringICO = tokensMintedDuringICO + tokensBought;
      
            // Cannot purchase more than the hard cap during ICO.
            require(ethInvestedDuringICO <= icoHardCap);
            // Contracts aren't allowed to participate in the ICO.
            require(tx.origin == msg.sender || msg.sender == bankrollAddress);
      
            // Cannot purchase more then the limit per address during the ICO.
            ICOBuyIn[msg.sender] += remainingEth;
            require(ICOBuyIn[msg.sender] <= addressICOLimit || msg.sender == bankrollAddress);
      
            // Stop the ICO phase if we reach the hard cap
            if (ethInvestedDuringICO == icoHardCap){
              icoPhase = false;
            }
      
          } else {
            // Not ICO phase, check for referrals
      
            // 25% goes to referrers, if set
            // toReferrer = (dividends * 25)/100
            if (_referredBy != 0x0000000000000000000000000000000000000000 &&
            _referredBy != msg.sender &&
            frontTokenBalanceLedger_[_referredBy] >= stakingRequirement)
            {
              toReferrer = (dividendAmount.mul(referrer_percentage)).div(100);
              referralBalance_[_referredBy] += toReferrer;
              emit Referral(_referredBy, toReferrer);
            }
      
            // The rest of the dividends go to token holders
            toTokenHolders = dividendAmount.sub(toReferrer);
      
            fee = toTokenHolders * magnitude;
            fee = fee - (fee - (dividendTokensBought * (toTokenHolders * magnitude / (divTokenSupply))));
      
            // Finally, increase the divToken value
            profitPerDivToken       = profitPerDivToken.add((toTokenHolders.mul(magnitude)).div(divTokenSupply));
            payoutsTo_[msg.sender] += (int256) ((profitPerDivToken * dividendTokensBought) - fee);
          }
      
          // Update the buyer's token amounts
          frontTokenBalanceLedger_[msg.sender] = frontTokenBalanceLedger_[msg.sender].add(tokensBought);
          dividendTokenBalanceLedger_[msg.sender] = dividendTokenBalanceLedger_[msg.sender].add(dividendTokensBought);
      
          // Transfer to bankroll and div cards
          if (toBankRoll != 0) { ZethrBankroll(bankrollAddress).receiveDividends.value(toBankRoll)(); }
          if (regularPhase) { divCardContract.receiveDividends.value(toDivCardHolders)(dividendRate); }
      
          // This event should help us track where all the eth is going
          emit Allocation(toBankRoll, toReferrer, toTokenHolders, toDivCardHolders, remainingEth);
      
          // Sanity checking
          uint sum = toBankRoll + toReferrer + toTokenHolders + toDivCardHolders + remainingEth - _incomingEthereum;
          assert(sum == 0);
        }
      
        // How many tokens one gets from a certain amount of ethereum.
        function ethereumToTokens_(uint _ethereumAmount)
        public
        view
        returns(uint)
        {
          require(_ethereumAmount > MIN_ETH_BUYIN, "Tried to buy tokens with too little eth.");
      
          if (icoPhase) {
            return _ethereumAmount.div(tokenPriceInitial_) * 1e18;
          }
      
          /*
           *  i = investment, p = price, t = number of tokens
           *
           *  i_current = p_initial * t_current                   (for t_current <= t_initial)
           *  i_current = i_initial + (2/3)(t_current)^(3/2)      (for t_current >  t_initial)
           *
           *  t_current = i_current / p_initial                   (for i_current <= i_initial)
           *  t_current = t_initial + ((3/2)(i_current))^(2/3)    (for i_current >  i_initial)
           */
      
          // First, separate out the buy into two segments:
          //  1) the amount of eth going towards ico-price tokens
          //  2) the amount of eth going towards pyramid-price (variable) tokens
          uint ethTowardsICOPriceTokens = 0;
          uint ethTowardsVariablePriceTokens = 0;
      
          if (currentEthInvested >= ethInvestedDuringICO) {
            // Option One: All the ETH goes towards variable-price tokens
            ethTowardsVariablePriceTokens = _ethereumAmount;
      
          } else if (currentEthInvested < ethInvestedDuringICO && currentEthInvested + _ethereumAmount <= ethInvestedDuringICO) {
            // Option Two: All the ETH goes towards ICO-price tokens
            ethTowardsICOPriceTokens = _ethereumAmount;
      
          } else if (currentEthInvested < ethInvestedDuringICO && currentEthInvested + _ethereumAmount > ethInvestedDuringICO) {
            // Option Three: Some ETH goes towards ICO-price tokens, some goes towards variable-price tokens
            ethTowardsICOPriceTokens = ethInvestedDuringICO.sub(currentEthInvested);
            ethTowardsVariablePriceTokens = _ethereumAmount.sub(ethTowardsICOPriceTokens);
          } else {
            // Option Four: Should be impossible, and compiler should optimize it out of existence.
            revert();
          }
      
          // Sanity check:
          assert(ethTowardsICOPriceTokens + ethTowardsVariablePriceTokens == _ethereumAmount);
      
          // Separate out the number of tokens of each type this will buy:
          uint icoPriceTokens = 0;
          uint varPriceTokens = 0;
      
          // Now calculate each one per the above formulas.
          // Note: since tokens have 18 decimals of precision we multiply the result by 1e18.
          if (ethTowardsICOPriceTokens != 0) {
            icoPriceTokens = ethTowardsICOPriceTokens.mul(1e18).div(tokenPriceInitial_);
          }
      
          if (ethTowardsVariablePriceTokens != 0) {
            // Note: we can't use "currentEthInvested" for this calculation, we must use:
            //  currentEthInvested + ethTowardsICOPriceTokens
            // This is because a split-buy essentially needs to simulate two separate buys -
            // including the currentEthInvested update that comes BEFORE variable price tokens are bought!
      
            uint simulatedEthBeforeInvested = toPowerOfThreeHalves(tokenSupply.div(MULTIPLIER * 1e6)).mul(2).div(3) + ethTowardsICOPriceTokens;
            uint simulatedEthAfterInvested  = simulatedEthBeforeInvested + ethTowardsVariablePriceTokens;
      
            /* We have the equations for total tokens above; note that this is for TOTAL.
               To get the number of tokens this purchase buys, use the simulatedEthInvestedBefore
               and the simulatedEthInvestedAfter and calculate the difference in tokens.
               This is how many we get. */
      
            uint tokensBefore = toPowerOfTwoThirds(simulatedEthBeforeInvested.mul(3).div(2)).mul(MULTIPLIER);
            uint tokensAfter  = toPowerOfTwoThirds(simulatedEthAfterInvested.mul(3).div(2)).mul(MULTIPLIER);
      
            /* Note that we could use tokensBefore = tokenSupply + icoPriceTokens instead of dynamically calculating tokensBefore;
               either should work.
      
               Investment IS already multiplied by 1e18; however, because this is taken to a power of (2/3),
               we need to multiply the result by 1e6 to get back to the correct number of decimals. */
      
            varPriceTokens = (1e6) * tokensAfter.sub(tokensBefore);
          }
      
          uint totalTokensReceived = icoPriceTokens + varPriceTokens;
      
          assert(totalTokensReceived > 0);
          return totalTokensReceived;
        }
      
        // How much Ether we get from selling N tokens
        function tokensToEthereum_(uint _tokens)
        public
        view
        returns(uint)
        {
          require (_tokens >= MIN_TOKEN_SELL_AMOUNT, "Tried to sell too few tokens.");
      
          /*
           *  i = investment, p = price, t = number of tokens
           *
           *  i_current = p_initial * t_current                   (for t_current <= t_initial)
           *  i_current = i_initial + (2/3)(t_current)^(3/2)      (for t_current >  t_initial)
           *
           *  t_current = i_current / p_initial                   (for i_current <= i_initial)
           *  t_current = t_initial + ((3/2)(i_current))^(2/3)    (for i_current >  i_initial)
           */
      
          // First, separate out the sell into two segments:
          //  1) the amount of tokens selling at the ICO price.
          //  2) the amount of tokens selling at the variable (pyramid) price
          uint tokensToSellAtICOPrice = 0;
          uint tokensToSellAtVariablePrice = 0;
      
          if (tokenSupply <= tokensMintedDuringICO) {
            // Option One: All the tokens sell at the ICO price.
            tokensToSellAtICOPrice = _tokens;
      
          } else if (tokenSupply > tokensMintedDuringICO && tokenSupply - _tokens >= tokensMintedDuringICO) {
            // Option Two: All the tokens sell at the variable price.
            tokensToSellAtVariablePrice = _tokens;
      
          } else if (tokenSupply > tokensMintedDuringICO && tokenSupply - _tokens < tokensMintedDuringICO) {
            // Option Three: Some tokens sell at the ICO price, and some sell at the variable price.
            tokensToSellAtVariablePrice = tokenSupply.sub(tokensMintedDuringICO);
            tokensToSellAtICOPrice      = _tokens.sub(tokensToSellAtVariablePrice);
      
          } else {
            // Option Four: Should be impossible, and the compiler should optimize it out of existence.
            revert();
          }
      
          // Sanity check:
          assert(tokensToSellAtVariablePrice + tokensToSellAtICOPrice == _tokens);
      
          // Track how much Ether we get from selling at each price function:
          uint ethFromICOPriceTokens;
          uint ethFromVarPriceTokens;
      
          // Now, actually calculate:
      
          if (tokensToSellAtICOPrice != 0) {
      
            /* Here, unlike the sister equation in ethereumToTokens, we DON'T need to multiply by 1e18, since
               we will be passed in an amount of tokens to sell that's already at the 18-decimal precision.
               We need to divide by 1e18 or we'll have too much Ether. */
      
            ethFromICOPriceTokens = tokensToSellAtICOPrice.mul(tokenPriceInitial_).div(1e18);
          }
      
          if (tokensToSellAtVariablePrice != 0) {
      
            /* Note: Unlike the sister function in ethereumToTokens, we don't have to calculate any "virtual" token count.
               This is because in sells, we sell the variable price tokens **first**, and then we sell the ICO-price tokens.
               Thus there isn't any weird stuff going on with the token supply.
      
               We have the equations for total investment above; note that this is for TOTAL.
               To get the eth received from this sell, we calculate the new total investment after this sell.
               Note that we divide by 1e6 here as the inverse of multiplying by 1e6 in ethereumToTokens. */
      
            uint investmentBefore = toPowerOfThreeHalves(tokenSupply.div(MULTIPLIER * 1e6)).mul(2).div(3);
            uint investmentAfter  = toPowerOfThreeHalves((tokenSupply - tokensToSellAtVariablePrice).div(MULTIPLIER * 1e6)).mul(2).div(3);
      
            ethFromVarPriceTokens = investmentBefore.sub(investmentAfter);
          }
      
          uint totalEthReceived = ethFromVarPriceTokens + ethFromICOPriceTokens;
      
          assert(totalEthReceived > 0);
          return totalEthReceived;
        }
      
        function transferFromInternal(address _from, address _toAddress, uint _amountOfTokens, bytes _data)
        internal
        {
          require(regularPhase);
          require(_toAddress != address(0x0));
          address _customerAddress     = _from;
          uint _amountOfFrontEndTokens = _amountOfTokens;
      
          // Withdraw all outstanding dividends first (including those generated from referrals).
          if(theDividendsOf(true, _customerAddress) > 0) withdrawFrom(_customerAddress);
      
          // Calculate how many back-end dividend tokens to transfer.
          // This amount is proportional to the caller's average dividend rate multiplied by the proportion of tokens being transferred.
          uint _amountOfDivTokens = _amountOfFrontEndTokens.mul(getUserAverageDividendRate(_customerAddress)).div(magnitude);
      
          if (_customerAddress != msg.sender){
            // Update the allowed balance.
            // Don't update this if we are transferring our own tokens (via transfer or buyAndTransfer)
            allowed[_customerAddress][msg.sender] -= _amountOfTokens;
          }
      
          // Exchange tokens
          frontTokenBalanceLedger_[_customerAddress]    = frontTokenBalanceLedger_[_customerAddress].sub(_amountOfFrontEndTokens);
          frontTokenBalanceLedger_[_toAddress]          = frontTokenBalanceLedger_[_toAddress].add(_amountOfFrontEndTokens);
          dividendTokenBalanceLedger_[_customerAddress] = dividendTokenBalanceLedger_[_customerAddress].sub(_amountOfDivTokens);
          dividendTokenBalanceLedger_[_toAddress]       = dividendTokenBalanceLedger_[_toAddress].add(_amountOfDivTokens);
      
          // Recipient inherits dividend percentage if they have not already selected one.
          if(!userSelectedRate[_toAddress])
          {
            userSelectedRate[_toAddress] = true;
            userDividendRate[_toAddress] = userDividendRate[_customerAddress];
          }
      
          // Update dividend trackers
          payoutsTo_[_customerAddress] -= (int256) (profitPerDivToken * _amountOfDivTokens);
          payoutsTo_[_toAddress]       += (int256) (profitPerDivToken * _amountOfDivTokens);
      
          uint length;
      
          assembly {
            length := extcodesize(_toAddress)
          }
      
          if (length > 0){
            // its a contract
            // note: at ethereum update ALL addresses are contracts
            ERC223Receiving receiver = ERC223Receiving(_toAddress);
            receiver.tokenFallback(_from, _amountOfTokens, _data);
          }
      
          // Fire logging event.
          emit Transfer(_customerAddress, _toAddress, _amountOfFrontEndTokens);
        }
      
        // Called from transferFrom. Always checks if _customerAddress has dividends.
        function withdrawFrom(address _customerAddress)
        internal
        {
          // Setup data
          uint _dividends                    = theDividendsOf(false, _customerAddress);
      
          // update dividend tracker
          payoutsTo_[_customerAddress]       +=  (int256) (_dividends * magnitude);
      
          // add ref. bonus
          _dividends                         += referralBalance_[_customerAddress];
          referralBalance_[_customerAddress]  = 0;
      
          _customerAddress.transfer(_dividends);
      
          // Fire logging event.
          emit onWithdraw(_customerAddress, _dividends);
        }
      
      
        /*=======================
         =    RESET FUNCTIONS   =
         ======================*/
      
        function injectEther()
        public
        payable
        onlyAdministrator
        {
      
        }
      
        /*=======================
         =   MATHS FUNCTIONS    =
         ======================*/
      
        function toPowerOfThreeHalves(uint x) public pure returns (uint) {
          // m = 3, n = 2
          // sqrt(x^3)
          return sqrt(x**3);
        }
      
        function toPowerOfTwoThirds(uint x) public pure returns (uint) {
          // m = 2, n = 3
          // cbrt(x^2)
          return cbrt(x**2);
        }
      
        function sqrt(uint x) public pure returns (uint y) {
          uint z = (x + 1) / 2;
          y = x;
          while (z < y) {
            y = z;
            z = (x / z + z) / 2;
          }
        }
      
        function cbrt(uint x) public pure returns (uint y) {
          uint z = (x + 1) / 3;
          y = x;
          while (z < y) {
            y = z;
            z = (x / (z*z) + 2 * z) / 3;
          }
        }
      }
      
      /*=======================
       =     INTERFACES       =
       ======================*/
      
      
      contract ZethrDividendCards {
        function ownerOf(uint /*_divCardId*/) public pure returns (address) {}
        function receiveDividends(uint /*_divCardRate*/) public payable {}
      }
      
      contract ZethrBankroll{
        function receiveDividends() public payable {}
      }
      
      
      contract ERC223Receiving {
        function tokenFallback(address _from, uint _amountOfTokens, bytes _data) public returns (bool);
      }
      
      // Think it's safe to say y'all know what this is.
      
      library SafeMath {
      
        function mul(uint a, uint b) internal pure returns (uint) {
          if (a == 0) {
            return 0;
          }
          uint c = a * b;
          assert(c / a == b);
          return c;
        }
      
        function div(uint a, uint b) internal pure returns (uint) {
          // assert(b > 0); // Solidity automatically throws when dividing by 0
          uint c = a / b;
          // assert(a == b * c + a % b); // There is no case in which this doesn't hold
          return c;
        }
      
        function sub(uint a, uint b) internal pure returns (uint) {
          assert(b <= a);
          return a - b;
        }
      
        function add(uint a, uint b) internal pure returns (uint) {
          uint c = a + b;
          assert(c >= a);
          return c;
        }
      }