账户
0x09...6108
0x09...6108

0x09...6108

$500
此合同的源代码已经过验证!
合同元数据
编译器
0.4.21+commit.dfe3193c
语言
Solidity
合同源代码
文件 1 的 1:OMPxContract.sol
pragma solidity ^0.4.13;

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;
  }
}

library SafeERC20 {
    function safeTransfer(ERC20Basic token, address to, uint256 value) internal {
        assert(token.transfer(to, value));
    }

    function safeTransferFrom(ERC20 token, address from, address to, uint256 value) internal {
        assert(token.transferFrom(from, to, value));
    }

    function safeApprove(ERC20 token, address spender, uint256 value) internal {
        assert(token.approve(spender, value));
    }
}

contract Ownable {
  address public owner;


  event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  function Ownable() public {
    owner = msg.sender;
  }

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(msg.sender == owner);
    _;
  }

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function transferOwnership(address newOwner) public onlyOwner {
    require(newOwner != address(0));
    emit OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}

contract Discountable is Ownable {
    struct DiscStruct {
        uint256 amount;
        uint256 disc;
    }
    uint256 descPrecision = 1e2;
    uint256 defaultCoef = 200;
    DiscStruct[] public discounts;

    function addDiscount(uint256 _amount, uint256 _disc) onlyOwner public{
        discounts.push(DiscStruct(_amount, _disc));
    }

    function editDiscount(uint256 num, uint256 _amount, uint256 _disc) onlyOwner public{
        discounts[num] = DiscStruct(_amount, _disc);
    }

    function getDiscountsAmount() public view returns(uint256 amount_){
        return discounts.length;
    }

    function getDiscountByAmount(uint256 amount) internal view returns(uint256 disc_){
        uint256 arrayLength = discounts.length;
        if (amount < discounts[0].amount){
            return defaultCoef;
        }
        for (uint8 i=0; i<arrayLength; i++) {
            if(i == arrayLength - 1){
                return discounts[arrayLength - 1].disc;
            }
            if (amount < discounts[i+1].amount){
                return discounts[i].disc;
            }
        }
        return defaultCoef;
    }

}

contract TransferStatistics {
    using SafeMath for uint256;

    uint256 private stat_tokensBoughtBack = 0;
    uint256 private stat_timesBoughtBack = 0;
    uint256 private stat_tokensPurchased = 0;
    uint256 private stat_timesPurchased = 0;

    uint256 private stat_ethSent = 0;
    uint256 private stat_ethReceived = 0;

    uint256 private stat_tokensSpend = 0;
    uint256 private stat_timesSpend = 0;

    uint256 private oddSent = 0;
    uint256 private feeSent = 0;

    function trackPurchase(uint256 tokens, uint256 sum) internal {
        stat_tokensPurchased = stat_tokensPurchased.add(tokens);
        stat_timesPurchased = stat_timesPurchased.add(1);
        stat_ethSent = stat_ethSent.add(sum);
    }

    function trackBuyBack(uint256 tokens, uint256 sum) internal {
        stat_tokensBoughtBack = stat_tokensBoughtBack.add(tokens);
        stat_timesBoughtBack = stat_timesBoughtBack.add(1);
        stat_ethReceived = stat_ethReceived.add(sum);
    }

    function trackSpend(uint256 tokens) internal{
        stat_tokensSpend = stat_tokensSpend.add(tokens);
        stat_timesSpend = stat_timesSpend.add(1);
    }

    function trackOdd(uint256 odd) internal {
        oddSent = oddSent.add(odd);
    }

    function trackFee(uint256 fee) internal {
        feeSent = feeSent.add(fee);
    }

    function getStatistics() internal view returns(
        uint256 tokensBoughtBack_, uint256 timesBoughtBack_,
        uint256 tokensPurchased_, uint256 timesPurchased_,
        uint256 ethSent_, uint256 ethReceived_,
        uint256 tokensSpend_, uint256 timesSpend_,
        uint256 oddSent_, uint256 feeSent_) {
        return (stat_tokensBoughtBack, stat_timesBoughtBack,
        stat_tokensPurchased, stat_timesPurchased,
        stat_ethSent, stat_ethReceived,
        stat_tokensSpend, stat_timesSpend,
        oddSent, feeSent);
    }
}

contract Haltable is Ownable {
    bool public halted;

    modifier stopInEmergency {
        require(!halted);
        _;
    }


    modifier onlyInEmergency {
        require(halted);
        _;
    }


    /// @dev called by the owner on emergency, triggers stopped state
    function halt() external onlyOwner {
        halted = true;
    }


    /// @dev called by the owner on end of emergency, returns to normal state
    function unhalt() external onlyOwner onlyInEmergency {
        halted = false;
    }

}

contract ERC20Basic {
  function totalSupply() public view returns (uint256);
  function balanceOf(address who) public view returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  uint256 totalSupply_;

  /**
  * @dev total number of tokens in existence
  */
  function totalSupply() public view returns (uint256) {
    return totalSupply_;
  }

  /**
  * @dev transfer token for a specified address
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  */
  function transfer(address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[msg.sender]);

    // SafeMath.sub will throw if there is not enough balance.
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    emit Transfer(msg.sender, _to, _value);
    return true;
  }

  /**
  * @dev Gets the balance of the specified address.
  * @param _owner The address to query the the balance of.
  * @return An uint256 representing the amount owned by the passed address.
  */
  function balanceOf(address _owner) public view returns (uint256 balance) {
    return balances[_owner];
  }

}

contract BurnableToken is BasicToken, Ownable {

  event Burn(address indexed burner, uint256 value);

  /**
   * @dev Burns a specific amount of tokens.
   * @param _value The amount of token to be burned.
   */
  function burn(uint256 _value) public onlyOwner{
    require(_value <= balances[msg.sender]);
    // no need to require value <= totalSupply, since that would imply the
    // sender's balance is greater than the totalSupply, which *should* be an assertion failure

    address burner = msg.sender;
    balances[burner] = balances[burner].sub(_value);
    totalSupply_ = totalSupply_.sub(_value);
    emit Burn(burner, _value);
  }
}

contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) public view returns (uint256);
  function transferFrom(address from, address to, uint256 value) public returns (bool);
  function approve(address spender, uint256 value) public returns (bool);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract OMPxContract is BasicToken, Haltable, Discountable, TransferStatistics {
    using SafeMath for uint256;
    using SafeERC20 for ERC20Basic;
    using SafeERC20 for OMPxToken;
    /// @dev Token
    OMPxToken public token;
    Distribution public feeReceiverContract;    
    uint256 private feeBalance = 0;

    event TransferMoneyBack(address indexed to, uint256 value);
    event Donation(address indexed donator, uint256 value);
    event Spend(address indexed spender, uint256 tokensAmount, bytes32 indexed orderId);
    event Purchase(address indexed received, uint256 tokensAmount, uint256 value);
    event BuyBack(address indexed received, uint256 tokensAmount, uint256 value);
    event NewReceiverSet(address newReceiver);

    function OMPxContract() public payable{
        addDiscount(1000 * 1e18,198);
        addDiscount(5000 * 1e18,190);
        addDiscount(20000 * 1e18,180);
        addDiscount(100000 * 1e18,150);

        token = new OMPxToken();
        token.mint(owner, token.initialSupply());
    }

    // payable fallback

    function() public payable {
        emit Donation(msg.sender, msg.value);
    }

    function setFeeReceiver(address newReceiver) public onlyOwner {
        require(newReceiver != address(0));
        feeReceiverContract = Distribution(newReceiver);
        emit NewReceiverSet(newReceiver);
    }

    function getFee() public {
        if(feeBalance > 1e15){
            feeReceiverContract.receiveFunds.value(feeBalance).gas(150000)();
            trackFee(feeBalance);
            feeBalance = 0;
        }
    }

    function totalTokenSupply() public view returns(uint256 totalSupply_) {
        return token.totalSupply();
    }

    function balanceOf(address _owner) public view returns (uint256 balance_) {
        return token.balanceOf(_owner);
    }

    // base price. How much eth-wui for 1e18 of wui-tokens (1 real token).
    function getBuyBackPrice(uint256 buyBackValue) public view returns(uint256 price_) {
        if (address(this).balance==0) {
            return 0;
        }
        uint256 eth;
        uint256 tokens = token.totalSupply();
        if (buyBackValue > 0) {
            eth = address(this).balance.sub(buyBackValue);
        } else {
            eth = address(this).balance;
        }
        return (eth.sub(feeBalance)).mul(1e18).div(tokens);
    }


    function getPurchasePrice(uint256 purchaseValue, uint256 amount) public view returns(uint256 price_) {
        require(purchaseValue >= 0);
        require(amount >= 0);
        uint256 buyerContributionCoefficient = getDiscountByAmount(amount);
        uint256 price = getBuyBackPrice(purchaseValue).mul(buyerContributionCoefficient).div(descPrecision);
        if (price <= 0) {price = 1e11;}
        return price;
    }


    // Purchase tokens to user.
    // Money back should happens if current price is lower, then expected
    function purchase(uint256 tokensToPurchase, uint256 maxPrice) public payable returns(uint256 tokensBought_) {
        require(tokensToPurchase > 0);
        require(msg.value > 0);
        return purchaseSafe(tokensToPurchase, maxPrice);
    }

    function purchaseSafe(uint256 tokensToPurchase, uint256 maxPrice) internal returns(uint256 tokensBought_){
        require(maxPrice >= 0);

        uint256 currentPrice = getPurchasePrice(msg.value, tokensToPurchase);
        require(currentPrice <= maxPrice);

        uint256 tokensWuiAvailableByCurrentPrice = msg.value.mul(1e18).div(currentPrice);
        if(tokensWuiAvailableByCurrentPrice > tokensToPurchase) {
            tokensWuiAvailableByCurrentPrice = tokensToPurchase;
        }
        uint256 totalDealPrice = currentPrice.mul(tokensWuiAvailableByCurrentPrice).div(1e18);
        require(msg.value >= tokensToPurchase.mul(maxPrice).div(1e18));
        require(msg.value >= totalDealPrice);

        // 9% system support fee
        feeBalance = feeBalance + totalDealPrice.div(9);

        //mint tokens to sender
        uint256 availableTokens = token.balanceOf(this);
        if (availableTokens < tokensWuiAvailableByCurrentPrice) {
            uint256 tokensToMint = tokensWuiAvailableByCurrentPrice.sub(availableTokens);
            token.mint(this, tokensToMint);
        }
        token.safeTransfer(msg.sender, tokensWuiAvailableByCurrentPrice);

        // money back
        if (totalDealPrice < msg.value) {
            //            uint256 tokensToRefund = tokensToPurchase.sub(tokensWuiAvailableByCurrentPrice);
            uint256 oddEthers = msg.value.sub(totalDealPrice);
            if (oddEthers > 0) {
                require(oddEthers < msg.value);
                emit TransferMoneyBack(msg.sender, oddEthers);
                msg.sender.transfer(oddEthers);
                trackOdd(oddEthers);
            }
        }
        emit Purchase(msg.sender, tokensToPurchase, totalDealPrice);
        trackPurchase(tokensWuiAvailableByCurrentPrice, totalDealPrice);
        return tokensWuiAvailableByCurrentPrice;
    }

    // buyback tokens from user
    function buyBack(uint256 tokensToBuyBack, uint256 minPrice) public {
        uint currentPrice = getBuyBackPrice(0);
        require(currentPrice >= minPrice);
        uint256 totalPrice = tokensToBuyBack.mul(currentPrice).div(1e18);
        require(tokensToBuyBack > 0);
        require(tokensToBuyBack <= token.balanceOf(msg.sender));

        token.safeTransferFrom(msg.sender, this, tokensToBuyBack);

        emit BuyBack(msg.sender, tokensToBuyBack, totalPrice);
        trackBuyBack(tokensToBuyBack, totalPrice);
        // send out eth
        msg.sender.transfer(totalPrice);
    }

    // spend available tokens
    function spend(uint256 tokensToSpend, bytes32 orderId) public {
        token.safeTransferFrom(msg.sender, this, tokensToSpend);
        token.burn(tokensToSpend);
        trackSpend(tokensToSpend);
        emit Spend(msg.sender, tokensToSpend, orderId);
    }

    // spend available and purchase up more if not enough
    function purchaseUpAndSpend(uint256 tokensToSpend, uint256 maxPrice, bytes32 orderId) public payable returns(uint256 tokensSpent_){
        uint256 tokensToPurchaseUp = tokensToSpend.sub(token.balanceOf(msg.sender));
        uint256 currentPrice = getPurchasePrice(msg.value, tokensToPurchaseUp);
        uint256 tokensAvailableByCurrentPrice = msg.value.mul(1e18).div(currentPrice);
        require(tokensToPurchaseUp <= tokensAvailableByCurrentPrice);

        if (tokensToPurchaseUp>0) {
            purchase(tokensToPurchaseUp, maxPrice);
        }
        spend(tokensToSpend, orderId);
        return tokensToSpend;
    }

    function getStat() onlyOwner public view returns(
        uint256 tokensBoughtBack_, uint256 timesBoughtBack_,
        uint256 tokensPurchased_, uint256 timesPurchased_,
        uint256 ethSent_, uint256 ethReceived_,
        uint256 tokensSpend_, uint256 timesSpend_,
        uint256 oddSent_, uint256 feeSent_) {
        return getStatistics();
    }
}

contract Distribution is Ownable {
    using SafeMath for uint256;

    struct Recipient {
        address addr;
        uint256 share;
        uint256 balance;
        uint256 received;
    }

    uint256 sharesSum;
    uint8 constant maxRecsAmount = 12;
    mapping(address => Recipient) public recs;
    address[maxRecsAmount] public recsLookUpTable; //to iterate

    event Payment(address indexed to, uint256 value);
    event AddShare(address to, uint256 value);
    event ChangeShare(address to, uint256 value);
    event DeleteShare(address to);
    event ChangeAddessShare(address newAddress);
    event FoundsReceived(uint256 value);

    function Distribution() public {
        sharesSum = 0;
    }

    function receiveFunds() public payable {
        emit FoundsReceived(msg.value);
        for (uint8 i = 0; i < maxRecsAmount; i++) {
            Recipient storage rec = recs[recsLookUpTable[i]];
            uint ethAmount = (rec.share.mul(msg.value)).div(sharesSum);
            rec.balance = rec.balance + ethAmount;
        }
    }

    modifier onlyMembers(){
        require(recs[msg.sender].addr != address(0));
        _;
    }

    function doPayments() public {
        Recipient storage rec = recs[msg.sender];
        require(rec.balance >= 1e12);
        rec.addr.transfer(rec.balance);
        emit Payment(rec.addr, rec.balance);
        rec.received = (rec.received).add(rec.balance);
        rec.balance = 0;
    }

    function addShare(address _rec, uint256 share) public onlyOwner {
        require(_rec != address(0));
        require(share > 0);
        require(recs[_rec].addr == address(0));
        recs[_rec].addr = _rec;
        recs[_rec].share = share;
        recs[_rec].received = 0;
        for(uint8 i = 0; i < maxRecsAmount; i++ ) {
            if (recsLookUpTable[i] == address(0)) {
                recsLookUpTable[i] = _rec;
                break;
            }
        }
        sharesSum = sharesSum.add(share);
        emit AddShare(_rec, share);
    }

    function changeShare(address _rec, uint share) public onlyOwner {
        require(_rec != address(0));
        require(share > 0);
        require(recs[_rec].addr != address(0));
        Recipient storage rec = recs[_rec];
        sharesSum = sharesSum.sub(rec.share).add(share);
        rec.share = share;
        emit ChangeShare(_rec, share);
    }

    function deleteShare(address _rec) public onlyOwner {
        require(_rec != address(0));
        require(recs[_rec].addr != address(0));
        sharesSum = sharesSum.sub(recs[_rec].share);
        for(uint8 i = 0; i < maxRecsAmount; i++ ) {
            if (recsLookUpTable[i] == recs[_rec].addr) {
                recsLookUpTable[i] = address(0);
                break;
            }
        }
        delete recs[_rec];
        emit DeleteShare(msg.sender);
    }

    function changeRecipientAddress(address _newRec) public {
        require(msg.sender != address(0));
        require(_newRec != address(0));
        require(recs[msg.sender].addr != address(0));
        require(recs[_newRec].addr == address(0));
        require(recs[msg.sender].addr != _newRec);

        Recipient storage rec = recs[msg.sender];
        uint256 prevBalance = rec.balance;
        addShare(_newRec, rec.share);
        emit ChangeAddessShare(_newRec);
        deleteShare(msg.sender);
        recs[_newRec].balance = prevBalance;
        emit DeleteShare(msg.sender);

    }

    function getMyBalance() public view returns(uint256) {
        return recs[msg.sender].balance;
    }
}

contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) internal allowed;
  address internal owner;

  function StandardToken() public {
    // tokens available to sale
    owner = msg.sender;
  }
  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amount of tokens to be transferred
   */
  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender] || msg.sender == owner);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    if (msg.sender != owner) {
      allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    }
    emit Transfer(_from, _to, _value);
    return true;
  }

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   *
   * Beware that changing an allowance with this method brings the risk that someone may use both the old
   * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
   * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) public returns (bool) {
    allowed[msg.sender][_spender] = _value;
    emit Approval(msg.sender, _spender, _value);
    return true;
  }

  /**
   * @dev Function to check the amount of tokens that an owner allowed to a spender.
   * @param _owner address The address which owns the funds.
   * @param _spender address The address which will spend the funds.
   * @return A uint256 specifying the amount of tokens still available for the spender.
   */
  function allowance(address _owner, address _spender) public view returns (uint256) {
    return allowed[_owner][_spender];
  }

  /**
   * @dev Increase the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _addedValue The amount of tokens to increase the allowance by.
   */
  function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  /**
   * @dev Decrease the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To decrement
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

contract MintableToken is StandardToken, Ownable {
  event Mint(address indexed to, uint256 amount);
  event MintFinished();

  bool public mintingFinished = false;


  modifier canMint() {
    require(!mintingFinished);
    _;
  }

  /**
   * @dev Function to mint tokens
   * @param _to The address that will receive the minted tokens.
   * @param _amount The amount of tokens to mint.
   * @return A boolean that indicates if the operation was successful.
   */
  function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) {
    totalSupply_ = totalSupply_.add(_amount);
    balances[_to] = balances[_to].add(_amount);
    emit Mint(_to, _amount);
    emit Transfer(address(0), _to, _amount);
    return true;
  }

  /**
   * @dev Function to stop minting new tokens.
   * @return True if the operation was successful.
   */
  function finishMinting() onlyOwner canMint public returns (bool) {
    mintingFinished = true;
    emit MintFinished();
    return true;
  }
}

contract OMPxToken is BurnableToken, MintableToken{
    using SafeMath for uint256;
    uint32 public constant decimals = 18;
    uint256 public constant initialSupply = 1e24;

    string public constant name = "OMPx Token";
    string public constant symbol = "OMPX";
}
设置
{
  "compilationTarget": {
    "OMPxContract.sol": "OMPxContract"
  },
  "evmVersion": "byzantium",
  "libraries": {},
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "remappings": []
}
ABI
[{"constant":false,"inputs":[{"name":"_amount","type":"uint256"},{"name":"_disc","type":"uint256"}],"name":"addDiscount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"num","type":"uint256"},{"name":"_amount","type":"uint256"},{"name":"_disc","type":"uint256"}],"name":"editDiscount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalTokenSupply","outputs":[{"name":"totalSupply_","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getDiscountsAmount","outputs":[{"name":"amount_","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"buyBackValue","type":"uint256"}],"name":"getBuyBackPrice","outputs":[{"name":"price_","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getStat","outputs":[{"name":"tokensBoughtBack_","type":"uint256"},{"name":"timesBoughtBack_","type":"uint256"},{"name":"tokensPurchased_","type":"uint256"},{"name":"timesPurchased_","type":"uint256"},{"name":"ethSent_","type":"uint256"},{"name":"ethReceived_","type":"uint256"},{"name":"tokensSpend_","type":"uint256"},{"name":"timesSpend_","type":"uint256"},{"name":"oddSent_","type":"uint256"},{"name":"feeSent_","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"tokensToBuyBack","type":"uint256"},{"name":"minPrice","type":"uint256"}],"name":"buyBack","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"purchaseValue","type":"uint256"},{"name":"amount","type":"uint256"}],"name":"getPurchasePrice","outputs":[{"name":"price_","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"halt","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"tokensToSpend","type":"uint256"},{"name":"maxPrice","type":"uint256"},{"name":"orderId","type":"bytes32"}],"name":"purchaseUpAndSpend","outputs":[{"name":"tokensSpent_","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"tokensToPurchase","type":"uint256"},{"name":"maxPrice","type":"uint256"}],"name":"purchase","outputs":[{"name":"tokensBought_","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance_","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"feeReceiverContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"halted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"discounts","outputs":[{"name":"amount","type":"uint256"},{"name":"disc","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"tokensToSpend","type":"uint256"},{"name":"orderId","type":"bytes32"}],"name":"spend","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unhalt","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getFee","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newReceiver","type":"address"}],"name":"setFeeReceiver","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":true,"stateMutability":"payable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"TransferMoneyBack","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"donator","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Donation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"tokensAmount","type":"uint256"},{"indexed":true,"name":"orderId","type":"bytes32"}],"name":"Spend","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"received","type":"address"},{"indexed":false,"name":"tokensAmount","type":"uint256"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Purchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"received","type":"address"},{"indexed":false,"name":"tokensAmount","type":"uint256"},{"indexed":false,"name":"value","type":"uint256"}],"name":"BuyBack","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newReceiver","type":"address"}],"name":"NewReceiverSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]