ETH Price: $3,065.70 (+2.13%)
Gas: 6 Gwei

Token

DotBased (xDOT)
 

Overview

Max Total Supply

28,382.189353200579226794 xDOT

Holders

95

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

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
UFragments

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-19
*/

pragma solidity 0.4.24;


/**
 * @title SafeMath
 * @dev Math operations with safety checks that revert on error
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, reverts on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (a == 0) {
      return 0;
    }

    uint256 c = a * b;
    require(c / a == b);

    return c;
  }

  /**
  * @dev Integer division of two numbers truncating the quotient, reverts on division by zero.
  */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b > 0); // Solidity only automatically asserts 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 Subtracts two numbers, reverts on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b <= a);
    uint256 c = a - b;

    return c;
  }

  /**
  * @dev Adds two numbers, reverts on overflow.
  */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    require(c >= a);

    return c;
  }

  /**
  * @dev Divides two numbers and returns the remainder (unsigned integer modulo),
  * reverts when dividing by zero.
  */
  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b != 0);
    return a % b;
  }
}

/**
 * @title Initializable
 *
 * @dev Helper contract to support initializer functions. To use it, replace
 * the constructor with a function that has the `initializer` modifier.
 * WARNING: Unlike constructors, initializer functions must be manually
 * invoked. This applies both to deploying an Initializable contract, as well
 * as extending an Initializable contract via inheritance.
 * WARNING: When used with inheritance, manual care must be taken to not invoke
 * a parent initializer twice, or ensure that all initializers are idempotent,
 * because this is not dealt with automatically as with constructors.
 */
contract Initializable {

  /**
   * @dev Indicates that the contract has been initialized.
   */
  bool private initialized;

  /**
   * @dev Indicates that the contract is in the process of being initialized.
   */
  bool private initializing;

  /**
   * @dev Modifier to use in the initializer function of a contract.
   */
  modifier initializer() {
    require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized");

    bool wasInitializing = initializing;
    initializing = true;
    initialized = true;

    _;

    initializing = wasInitializing;
  }

  /// @dev Returns true if and only if the function is running in the constructor
  function isConstructor() private view returns (bool) {
    // extcodesize checks the size of the code stored in an address, and
    // address returns the current address. Since the code is still not
    // deployed when running a constructor, any checks on its code size will
    // yield zero, making it an effective way to detect if a contract is
    // under construction or not.
    uint256 cs;
    assembly { cs := extcodesize(address) }
    return cs == 0;
  }

  // Reserved storage space to allow for layout changes in the future.
  uint256[50] private ______gap;
}

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable is Initializable {
  address private _owner;


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


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

  /**
   * @return the address of the owner.
   */
  function owner() public view returns(address) {
    return _owner;
  }

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

  /**
   * @return true if `msg.sender` is the owner of the contract.
   */
  function isOwner() public view returns(bool) {
    return msg.sender == _owner;
  }

  /**
   * @dev Allows the current owner to relinquish control of the contract.
   * @notice Renouncing to ownership will leave the contract without an owner.
   * It will not be possible to call the functions with the `onlyOwner`
   * modifier anymore.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipRenounced(_owner);
    _owner = address(0);
  }

  /**
   * @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 {
    _transferOwnership(newOwner);
  }

  /**
   * @dev Transfers control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function _transferOwnership(address newOwner) internal {
    require(newOwner != address(0));
    emit OwnershipTransferred(_owner, newOwner);
    _owner = newOwner;
  }

  uint256[50] private ______gap;
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
interface IERC20 {
  function totalSupply() external view returns (uint256);

  function balanceOf(address who) external view returns (uint256);

  function allowance(address owner, address spender)
    external view returns (uint256);

  function transfer(address to, uint256 value) external returns (bool);

  function approve(address spender, uint256 value)
    external returns (bool);

  function transferFrom(address from, address to, uint256 value)
    external returns (bool);

  event Transfer(
    address indexed from,
    address indexed to,
    uint256 value
  );

  event Approval(
    address indexed owner,
    address indexed spender,
    uint256 value
  );
}

/**
 * @title ERC20Detailed token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
contract ERC20Detailed is Initializable, IERC20 {
  string private _name;
  string private _symbol;
  uint8 private _decimals;

  function initialize(string name, string symbol, uint8 decimals) public initializer {
    _name = name;
    _symbol = symbol;
    _decimals = decimals;
  }

  /**
   * @return the name of the token.
   */
  function name() public view returns(string) {
    return _name;
  }

  /**
   * @return the symbol of the token.
   */
  function symbol() public view returns(string) {
    return _symbol;
  }

  /**
   * @return the number of decimals of the token.
   */
  function decimals() public view returns(uint8) {
    return _decimals;
  }

  uint256[50] private ______gap;
}

/*
MIT License

Copyright (c) 2018 requestnetwork
Copyright (c) 2018 Fragments, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
/**
 * @title SafeMathInt
 * @dev Math operations for int256 with overflow safety checks.
 */
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a)
        internal
        pure
        returns (int256)
    {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }
}

/**
 * @title uFragments ERC20 token
 * @dev This is part of an implementation of the uFragments Ideal Money protocol.
 *      uFragments is a normal ERC20 token, but its supply can be adjusted by splitting and
 *      combining tokens proportionally across all wallets.
 *
 *      uFragment balances are internally represented with a hidden denomination, 'gons'.
 *      We support splitting the currency in expansion and combining the currency on contraction by
 *      changing the exchange rate between the hidden 'gons' and the public 'fragments'.
 */
contract UFragments is ERC20Detailed, Ownable {
    // PLEASE READ BEFORE CHANGING ANY ACCOUNTING OR MATH
    // Anytime there is division, there is a risk of numerical instability from rounding errors. In
    // order to minimize this risk, we adhere to the following guidelines:
    // 1) The conversion rate adopted is the number of gons that equals 1 fragment.
    //    The inverse rate must not be used--TOTAL_GONS is always the numerator and _totalSupply is
    //    always the denominator. (i.e. If you want to convert gons to fragments instead of
    //    multiplying by the inverse rate, you should divide by the normal rate)
    // 2) Gon balances converted into Fragments are always rounded down (truncated).
    //
    // We make the following guarantees:
    // - If address 'A' transfers x Fragments to address 'B'. A's resulting external balance will
    //   be decreased by precisely x Fragments, and B's external balance will be precisely
    //   increased by x Fragments.
    //
    // We do not guarantee that the sum of all balances equals the result of calling totalSupply().
    // This is because, for any conversion function 'f()' that has non-zero rounding error,
    // f(x0) + f(x1) + ... + f(xn) is not always equal to f(x0 + x1 + ... xn).
    using SafeMath for uint256;
    using SafeMathInt for int256;

    event LogRebase(uint256 indexed epoch, uint256 totalSupply);
    event LogRebasePaused(bool paused);
    event LogTokenPaused(bool paused);
    event LogMonetaryPolicyUpdated(address monetaryPolicy);

    // Used for authentication
    address public monetaryPolicy;

    modifier onlyMonetaryPolicy() {
        require(msg.sender == monetaryPolicy);
        _;
    }

    // Precautionary emergency controls.
    bool public rebasePaused;
    bool public tokenPaused;

    modifier whenRebaseNotPaused() {
        require(!rebasePaused);
        _;
    }

    modifier whenTokenNotPaused() {
        require(!tokenPaused);
        _;
    }

    modifier validRecipient(address to) {
        require(to != address(0x0));
        require(to != address(this));
        _;
    }

    uint256 private constant DECIMALS = 18;
    uint256 private constant MAX_UINT256 = ~uint256(0);
    uint256 private constant INITIAL_FRAGMENTS_SUPPLY = 100000 * 10**DECIMALS;

    // TOTAL_GONS is a multiple of INITIAL_FRAGMENTS_SUPPLY so that _gonsPerFragment is an integer.
    // Use the highest value that fits in a uint256 for max granularity.
    uint256 private constant TOTAL_GONS = MAX_UINT256 -
        (MAX_UINT256 % INITIAL_FRAGMENTS_SUPPLY);

    // MAX_SUPPLY = maximum integer < (sqrt(4*TOTAL_GONS + 1) - 1) / 2
    uint256 private constant MAX_SUPPLY = ~uint128(0); // (2^128) - 1

    uint256 private _totalSupply;
    uint256 private _gonsPerFragment;
    mapping(address => uint256) private _gonBalances;

    // This is denominated in Fragments, because the gons-fragments conversion might change before
    // it's fully paid.
    mapping(address => mapping(address => uint256)) private _allowedFragments;

    /**
     * @param monetaryPolicy_ The address of the monetary policy contract to use for authentication.
     */
    function setMonetaryPolicy(address monetaryPolicy_) external onlyOwner {
        monetaryPolicy = monetaryPolicy_;
        emit LogMonetaryPolicyUpdated(monetaryPolicy_);
    }

    /**
     * @dev Pauses or unpauses the execution of rebase operations.
     * @param paused Pauses rebase operations if this is true.
     */
    function setRebasePaused(bool paused) external onlyOwner {
        rebasePaused = paused;
        emit LogRebasePaused(paused);
    }

    /**
     * @dev Pauses or unpauses execution of ERC-20 transactions.
     * @param paused Pauses ERC-20 transactions if this is true.
     */
    function setTokenPaused(bool paused) external onlyOwner {
        tokenPaused = paused;
        emit LogTokenPaused(paused);
    }

    /**
     * @dev Notifies Fragments contract about a new rebase cycle.
     * @param supplyDelta The number of new fragment tokens to add into circulation via expansion.
     * @return The total number of fragments after the supply adjustment.
     */
    function rebase(uint256 epoch, int256 supplyDelta)
        external
        onlyMonetaryPolicy
        whenRebaseNotPaused
        returns (uint256)
    {
        if (supplyDelta == 0) {
            emit LogRebase(epoch, _totalSupply);
            return _totalSupply;
        }

        if (supplyDelta < 0) {
            _totalSupply = _totalSupply.sub(uint256(supplyDelta.abs()));
        } else {
            _totalSupply = _totalSupply.add(uint256(supplyDelta));
        }

        if (_totalSupply > MAX_SUPPLY) {
            _totalSupply = MAX_SUPPLY;
        }

        _gonsPerFragment = TOTAL_GONS.div(_totalSupply);

        // From this point forward, _gonsPerFragment is taken as the source of truth.
        // We recalculate a new _totalSupply to be in agreement with the _gonsPerFragment
        // conversion rate.
        // This means our applied supplyDelta can deviate from the requested supplyDelta,
        // but this deviation is guaranteed to be < (_totalSupply^2)/(TOTAL_GONS - _totalSupply).
        //
        // In the case of _totalSupply <= MAX_UINT128 (our current supply cap), this
        // deviation is guaranteed to be < 1, so we can omit this step. If the supply cap is
        // ever increased, it must be re-included.
        // _totalSupply = TOTAL_GONS.div(_gonsPerFragment)

        emit LogRebase(epoch, _totalSupply);
        return _totalSupply;
    }

    function initialize(address owner_) public initializer {
        ERC20Detailed.initialize("DotBased", "xDOT", uint8(DECIMALS));
        Ownable.initialize(owner_);

        rebasePaused = false;
        tokenPaused = false;

        _totalSupply = INITIAL_FRAGMENTS_SUPPLY;
        _gonBalances[owner_] = TOTAL_GONS;
        _gonsPerFragment = TOTAL_GONS.div(_totalSupply);

        emit Transfer(address(0x0), owner_, _totalSupply);
    }

    /**
     * @return The total number of fragments.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @param who The address to query.
     * @return The balance of the specified address.
     */
    function balanceOf(address who) public view returns (uint256) {
        return _gonBalances[who].div(_gonsPerFragment);
    }

    /**
     * @dev Transfer tokens to a specified address.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     * @return True on success, false otherwise.
     */
    function transfer(address to, uint256 value)
        public
        validRecipient(to)
        whenTokenNotPaused
        returns (bool)
    {
        uint256 gonValue = value.mul(_gonsPerFragment);
        _gonBalances[msg.sender] = _gonBalances[msg.sender].sub(gonValue);
        _gonBalances[to] = _gonBalances[to].add(gonValue);
        emit Transfer(msg.sender, to, value);
        return true;
    }

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

    /**
     * @dev Transfer tokens from one address to another.
     * @param from The address you want to send tokens from.
     * @param to The address you want to transfer to.
     * @param value The amount of tokens to be transferred.
     */
    function transferFrom(
        address from,
        address to,
        uint256 value
    ) public validRecipient(to) whenTokenNotPaused returns (bool) {
        _allowedFragments[from][msg.sender] = _allowedFragments[from][msg
            .sender]
            .sub(value);

        uint256 gonValue = value.mul(_gonsPerFragment);
        _gonBalances[from] = _gonBalances[from].sub(gonValue);
        _gonBalances[to] = _gonBalances[to].add(gonValue);
        emit Transfer(from, to, value);

        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of
     * msg.sender. This method is included for ERC20 compatibility.
     * increaseAllowance and decreaseAllowance should be used instead.
     * Changing an allowance with this method brings the risk that someone may transfer both
     * the old and the new allowance - if they are both greater than zero - if a transfer
     * transaction is mined before the later approve() call is mined.
     *
     * @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
        whenTokenNotPaused
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner has allowed to a spender.
     * This method should be used instead of approve() to avoid the double approval vulnerability
     * described above.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        whenTokenNotPaused
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] = _allowedFragments[msg
            .sender][spender]
            .add(addedValue);
        emit Approval(
            msg.sender,
            spender,
            _allowedFragments[msg.sender][spender]
        );
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner has allowed to a spender.
     *
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        whenTokenNotPaused
        returns (bool)
    {
        uint256 oldValue = _allowedFragments[msg.sender][spender];
        if (subtractedValue >= oldValue) {
            _allowedFragments[msg.sender][spender] = 0;
        } else {
            _allowedFragments[msg.sender][spender] = oldValue.sub(
                subtractedValue
            );
        }
        emit Approval(
            msg.sender,
            spender,
            _allowedFragments[msg.sender][spender]
        );
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"name","type":"string"},{"name":"symbol","type":"string"},{"name":"decimals","type":"uint8"}],"name":"initialize","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":"paused","type":"bool"}],"name":"setRebasePaused","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"paused","type":"bool"}],"name":"setTokenPaused","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"rebasePaused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"who","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"epoch","type":"uint256"},{"name":"supplyDelta","type":"int256"}],"name":"rebase","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokenPaused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"monetaryPolicy_","type":"address"}],"name":"setMonetaryPolicy","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"monetaryPolicy","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"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":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":false,"inputs":[{"name":"owner_","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner_","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"epoch","type":"uint256"},{"indexed":false,"name":"totalSupply","type":"uint256"}],"name":"LogRebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"paused","type":"bool"}],"name":"LogRebasePaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"paused","type":"bool"}],"name":"LogTokenPaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"monetaryPolicy","type":"address"}],"name":"LogMonetaryPolicyUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

608060405234801561001057600080fd5b50611596806100206000396000f30060806040526004361061013d5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610142578063095ea7b3146101cc5780631624f6c61461020457806318160ddd146102a257806322872e0b146102c957806323b872dd146102e3578063295194571461030d578063313ce56714610327578063395093511461035257806353ca9f241461037657806370a082311461038b578063715018a6146103ac5780637a43e23f146103c157806386c75e74146103dc5780638b5a6a08146103f15780638da5cb5b146104125780638e27d7d7146104435780638f32d59b1461045857806395d89b411461046d578063a457c2d714610482578063a9059cbb146104a6578063c4d66de8146104ca578063dd62ed3e146104eb578063f2fde38b14610512575b600080fd5b34801561014e57600080fd5b50610157610533565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610191578181015183820152602001610179565b50505050905090810190601f1680156101be5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101d857600080fd5b506101f0600160a060020a03600435166024356105ca565b604080519115158252519081900360200190f35b34801561021057600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526102a094369492936024939284019190819084018382808284375050604080516020601f89358b018035918201839004830284018301909452808352979a9998810197919650918201945092508291508401838280828437509497505050923560ff16935061064c92505050565b005b3480156102ae57600080fd5b506102b7610785565b60408051918252519081900360200190f35b3480156102d557600080fd5b506102a0600435151561078b565b3480156102ef57600080fd5b506101f0600160a060020a0360043581169060243516604435610813565b34801561031957600080fd5b506102a06004351515610989565b34801561033357600080fd5b5061033c610a01565b6040805160ff9092168252519081900360200190f35b34801561035e57600080fd5b506101f0600160a060020a0360043516602435610a0a565b34801561038257600080fd5b506101f0610abd565b34801561039757600080fd5b506102b7600160a060020a0360043516610ade565b3480156103b857600080fd5b506102a0610b0c565b3480156103cd57600080fd5b506102b7600435602435610b76565b3480156103e857600080fd5b506101f0610cde565b3480156103fd57600080fd5b506102a0600160a060020a0360043516610cee565b34801561041e57600080fd5b50610427610d62565b60408051600160a060020a039092168252519081900360200190f35b34801561044f57600080fd5b50610427610d71565b34801561046457600080fd5b506101f0610d80565b34801561047957600080fd5b50610157610d91565b34801561048e57600080fd5b506101f0600160a060020a0360043516602435610df2565b3480156104b257600080fd5b506101f0600160a060020a0360043516602435610f00565b3480156104d657600080fd5b506102a0600160a060020a036004351661100f565b3480156104f757600080fd5b506102b7600160a060020a036004358116906024351661122e565b34801561051e57600080fd5b506102a0600160a060020a0360043516611259565b60338054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105bf5780601f10610594576101008083540402835291602001916105bf565b820191906000526020600020905b8154815290600101906020018083116105a257829003601f168201915b505050505090505b90565b609b5460009060a860020a900460ff16156105e457600080fd5b336000818152609f60209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60008054610100900460ff16806106665750610666611278565b80610674575060005460ff16155b151561070757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b5060008054600161010061ff00198316811760ff191691909117909255845191900460ff169061073e9060339060208701906114dc565b5082516107529060349060208601906114dc565b506035805460ff90931660ff1990931692909217909155600080549115156101000261ff00199092169190911790555050565b609c5490565b610793610d80565b151561079e57600080fd5b609b805482151574010000000000000000000000000000000000000000810274ff0000000000000000000000000000000000000000199092169190911790915560408051918252517fb36927c68760751ec71d827eb30be804be612d87c7c6b6a1f255258c6a1bea669181900360200190a150565b60008083600160a060020a038116151561082c57600080fd5b600160a060020a03811630141561084257600080fd5b609b5460a860020a900460ff161561085957600080fd5b600160a060020a0386166000908152609f6020908152604080832033845290915290205461088d908563ffffffff61128216565b600160a060020a0387166000908152609f60209081526040808320338452909152902055609d546108c590859063ffffffff61129916565b600160a060020a0387166000908152609e60205260409020549092506108f1908363ffffffff61128216565b600160a060020a038088166000908152609e60205260408082209390935590871681522054610926908363ffffffff6112ce16565b600160a060020a038087166000818152609e602090815260409182902094909455805188815290519193928a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600195945050505050565b610991610d80565b151561099c57600080fd5b609b805482151560a860020a810275ff000000000000000000000000000000000000000000199092169190911790915560408051918252517f398c4e18c8ef7f11eb3921fe2d01d3b469329a5f01febf5ba17f2462f27f439c9181900360200190a150565b60355460ff1690565b609b5460009060a860020a900460ff1615610a2457600080fd5b336000908152609f60209081526040808320600160a060020a0387168452909152902054610a58908363ffffffff6112ce16565b336000818152609f60209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b609b5474010000000000000000000000000000000000000000900460ff1681565b609d54600160a060020a0382166000908152609e60205260408120549091610646919063ffffffff6112e016565b610b14610d80565b1515610b1f57600080fd5b606854604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26068805473ffffffffffffffffffffffffffffffffffffffff19169055565b609b54600090600160a060020a03163314610b9057600080fd5b609b5474010000000000000000000000000000000000000000900460ff1615610bb857600080fd5b811515610c0057609c54604080519182525184917f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2919081900360200190a250609c54610646565b6000821215610c2c57610c24610c1583611303565b609c549063ffffffff61128216565b609c55610c43565b609c54610c3f908363ffffffff6112ce16565b609c555b609c546fffffffffffffffffffffffffffffffff1015610c72576fffffffffffffffffffffffffffffffff609c555b609c54610c999069152d02c7e14af68000006000195b06600019039063ffffffff6112e016565b609d55609c54604080519182525184917f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2919081900360200190a250609c5492915050565b609b5460a860020a900460ff1681565b610cf6610d80565b1515610d0157600080fd5b609b8054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff19909116811790915560408051918252517f0e6961f1a1afb87eaf51fd64f22ddc10062e23aa7838eac5d0bdf140bfd389729181900360200190a150565b606854600160a060020a031690565b609b54600160a060020a031681565b606854600160a060020a0316331490565b60348054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105bf5780601f10610594576101008083540402835291602001916105bf565b609b54600090819060a860020a900460ff1615610e0e57600080fd5b50336000908152609f60209081526040808320600160a060020a0387168452909152902054808310610e6357336000908152609f60209081526040808320600160a060020a0388168452909152812055610e98565b610e73818463ffffffff61128216565b336000908152609f60209081526040808320600160a060020a03891684529091529020555b336000818152609f60209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a3600191505b5092915050565b60008083600160a060020a0381161515610f1957600080fd5b600160a060020a038116301415610f2f57600080fd5b609b5460a860020a900460ff1615610f4657600080fd5b609d54610f5a90859063ffffffff61129916565b336000908152609e6020526040902054909250610f7d908363ffffffff61128216565b336000908152609e602052604080822092909255600160a060020a03871681522054610faf908363ffffffff6112ce16565b600160a060020a0386166000818152609e60209081526040918290209390935580518781529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001949350505050565b60008054610100900460ff16806110295750611029611278565b80611037575060005460ff16155b15156110ca57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b5060008054600161010061ff00198316811760ff191691909117909255604080518082018252600881527f446f7442617365640000000000000000000000000000000000000000000000006020808301919091528251808401909352600483527f78444f5400000000000000000000000000000000000000000000000000000000908301529290910460ff169161116291601261064c565b61116b82611347565b609b805475ffff00000000000000000000000000000000000000001916905569152d02c7e14af6800000609c818155600160a060020a0384166000908152609e6020526040902069085afffa6ff50bffffff199055546111cd91600019610c88565b609d55609c546040805191825251600160a060020a038416916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3600080549115156101000261ff001990921691909117905550565b600160a060020a039182166000908152609f6020908152604080832093909416825291909152205490565b611261610d80565b151561126c57600080fd5b6112758161145e565b50565b303b8015905b5090565b6000808383111561129257600080fd5b5050900390565b6000808315156112ac5760009150610ef9565b508282028284828115156112bc57fe5b04146112c757600080fd5b9392505050565b6000828201838110156112c757600080fd5b6000808083116112ef57600080fd5b82848115156112fa57fe5b04949350505050565b60007f800000000000000000000000000000000000000000000000000000000000000082141561133257600080fd5b600082126113405781610646565b5060000390565b60008054610100900460ff16806113615750611361611278565b8061136f575060005460ff16155b151561140257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b50600080546068805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03949094169390931790925561ff001980831661010090811760ff19166001179091169281900460ff16151502919091179055565b600160a060020a038116151561147357600080fd5b606854604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36068805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061151d57805160ff191683800117855561154a565b8280016001018555821561154a579182015b8281111561154a57825182559160200191906001019061152f565b5061127e926105c79250905b8082111561127e57600081556001016115565600a165627a7a723058208a9e813c8d0e6a1e8910a3251cf93452c7686feae2218b823e7800a0128c8da00029

Deployed Bytecode

0x60806040526004361061013d5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610142578063095ea7b3146101cc5780631624f6c61461020457806318160ddd146102a257806322872e0b146102c957806323b872dd146102e3578063295194571461030d578063313ce56714610327578063395093511461035257806353ca9f241461037657806370a082311461038b578063715018a6146103ac5780637a43e23f146103c157806386c75e74146103dc5780638b5a6a08146103f15780638da5cb5b146104125780638e27d7d7146104435780638f32d59b1461045857806395d89b411461046d578063a457c2d714610482578063a9059cbb146104a6578063c4d66de8146104ca578063dd62ed3e146104eb578063f2fde38b14610512575b600080fd5b34801561014e57600080fd5b50610157610533565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610191578181015183820152602001610179565b50505050905090810190601f1680156101be5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101d857600080fd5b506101f0600160a060020a03600435166024356105ca565b604080519115158252519081900360200190f35b34801561021057600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526102a094369492936024939284019190819084018382808284375050604080516020601f89358b018035918201839004830284018301909452808352979a9998810197919650918201945092508291508401838280828437509497505050923560ff16935061064c92505050565b005b3480156102ae57600080fd5b506102b7610785565b60408051918252519081900360200190f35b3480156102d557600080fd5b506102a0600435151561078b565b3480156102ef57600080fd5b506101f0600160a060020a0360043581169060243516604435610813565b34801561031957600080fd5b506102a06004351515610989565b34801561033357600080fd5b5061033c610a01565b6040805160ff9092168252519081900360200190f35b34801561035e57600080fd5b506101f0600160a060020a0360043516602435610a0a565b34801561038257600080fd5b506101f0610abd565b34801561039757600080fd5b506102b7600160a060020a0360043516610ade565b3480156103b857600080fd5b506102a0610b0c565b3480156103cd57600080fd5b506102b7600435602435610b76565b3480156103e857600080fd5b506101f0610cde565b3480156103fd57600080fd5b506102a0600160a060020a0360043516610cee565b34801561041e57600080fd5b50610427610d62565b60408051600160a060020a039092168252519081900360200190f35b34801561044f57600080fd5b50610427610d71565b34801561046457600080fd5b506101f0610d80565b34801561047957600080fd5b50610157610d91565b34801561048e57600080fd5b506101f0600160a060020a0360043516602435610df2565b3480156104b257600080fd5b506101f0600160a060020a0360043516602435610f00565b3480156104d657600080fd5b506102a0600160a060020a036004351661100f565b3480156104f757600080fd5b506102b7600160a060020a036004358116906024351661122e565b34801561051e57600080fd5b506102a0600160a060020a0360043516611259565b60338054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105bf5780601f10610594576101008083540402835291602001916105bf565b820191906000526020600020905b8154815290600101906020018083116105a257829003601f168201915b505050505090505b90565b609b5460009060a860020a900460ff16156105e457600080fd5b336000818152609f60209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60008054610100900460ff16806106665750610666611278565b80610674575060005460ff16155b151561070757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b5060008054600161010061ff00198316811760ff191691909117909255845191900460ff169061073e9060339060208701906114dc565b5082516107529060349060208601906114dc565b506035805460ff90931660ff1990931692909217909155600080549115156101000261ff00199092169190911790555050565b609c5490565b610793610d80565b151561079e57600080fd5b609b805482151574010000000000000000000000000000000000000000810274ff0000000000000000000000000000000000000000199092169190911790915560408051918252517fb36927c68760751ec71d827eb30be804be612d87c7c6b6a1f255258c6a1bea669181900360200190a150565b60008083600160a060020a038116151561082c57600080fd5b600160a060020a03811630141561084257600080fd5b609b5460a860020a900460ff161561085957600080fd5b600160a060020a0386166000908152609f6020908152604080832033845290915290205461088d908563ffffffff61128216565b600160a060020a0387166000908152609f60209081526040808320338452909152902055609d546108c590859063ffffffff61129916565b600160a060020a0387166000908152609e60205260409020549092506108f1908363ffffffff61128216565b600160a060020a038088166000908152609e60205260408082209390935590871681522054610926908363ffffffff6112ce16565b600160a060020a038087166000818152609e602090815260409182902094909455805188815290519193928a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600195945050505050565b610991610d80565b151561099c57600080fd5b609b805482151560a860020a810275ff000000000000000000000000000000000000000000199092169190911790915560408051918252517f398c4e18c8ef7f11eb3921fe2d01d3b469329a5f01febf5ba17f2462f27f439c9181900360200190a150565b60355460ff1690565b609b5460009060a860020a900460ff1615610a2457600080fd5b336000908152609f60209081526040808320600160a060020a0387168452909152902054610a58908363ffffffff6112ce16565b336000818152609f60209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b609b5474010000000000000000000000000000000000000000900460ff1681565b609d54600160a060020a0382166000908152609e60205260408120549091610646919063ffffffff6112e016565b610b14610d80565b1515610b1f57600080fd5b606854604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26068805473ffffffffffffffffffffffffffffffffffffffff19169055565b609b54600090600160a060020a03163314610b9057600080fd5b609b5474010000000000000000000000000000000000000000900460ff1615610bb857600080fd5b811515610c0057609c54604080519182525184917f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2919081900360200190a250609c54610646565b6000821215610c2c57610c24610c1583611303565b609c549063ffffffff61128216565b609c55610c43565b609c54610c3f908363ffffffff6112ce16565b609c555b609c546fffffffffffffffffffffffffffffffff1015610c72576fffffffffffffffffffffffffffffffff609c555b609c54610c999069152d02c7e14af68000006000195b06600019039063ffffffff6112e016565b609d55609c54604080519182525184917f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2919081900360200190a250609c5492915050565b609b5460a860020a900460ff1681565b610cf6610d80565b1515610d0157600080fd5b609b8054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff19909116811790915560408051918252517f0e6961f1a1afb87eaf51fd64f22ddc10062e23aa7838eac5d0bdf140bfd389729181900360200190a150565b606854600160a060020a031690565b609b54600160a060020a031681565b606854600160a060020a0316331490565b60348054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105bf5780601f10610594576101008083540402835291602001916105bf565b609b54600090819060a860020a900460ff1615610e0e57600080fd5b50336000908152609f60209081526040808320600160a060020a0387168452909152902054808310610e6357336000908152609f60209081526040808320600160a060020a0388168452909152812055610e98565b610e73818463ffffffff61128216565b336000908152609f60209081526040808320600160a060020a03891684529091529020555b336000818152609f60209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a3600191505b5092915050565b60008083600160a060020a0381161515610f1957600080fd5b600160a060020a038116301415610f2f57600080fd5b609b5460a860020a900460ff1615610f4657600080fd5b609d54610f5a90859063ffffffff61129916565b336000908152609e6020526040902054909250610f7d908363ffffffff61128216565b336000908152609e602052604080822092909255600160a060020a03871681522054610faf908363ffffffff6112ce16565b600160a060020a0386166000818152609e60209081526040918290209390935580518781529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001949350505050565b60008054610100900460ff16806110295750611029611278565b80611037575060005460ff16155b15156110ca57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b5060008054600161010061ff00198316811760ff191691909117909255604080518082018252600881527f446f7442617365640000000000000000000000000000000000000000000000006020808301919091528251808401909352600483527f78444f5400000000000000000000000000000000000000000000000000000000908301529290910460ff169161116291601261064c565b61116b82611347565b609b805475ffff00000000000000000000000000000000000000001916905569152d02c7e14af6800000609c818155600160a060020a0384166000908152609e6020526040902069085afffa6ff50bffffff199055546111cd91600019610c88565b609d55609c546040805191825251600160a060020a038416916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3600080549115156101000261ff001990921691909117905550565b600160a060020a039182166000908152609f6020908152604080832093909416825291909152205490565b611261610d80565b151561126c57600080fd5b6112758161145e565b50565b303b8015905b5090565b6000808383111561129257600080fd5b5050900390565b6000808315156112ac5760009150610ef9565b508282028284828115156112bc57fe5b04146112c757600080fd5b9392505050565b6000828201838110156112c757600080fd5b6000808083116112ef57600080fd5b82848115156112fa57fe5b04949350505050565b60007f800000000000000000000000000000000000000000000000000000000000000082141561133257600080fd5b600082126113405781610646565b5060000390565b60008054610100900460ff16806113615750611361611278565b8061136f575060005460ff16155b151561140257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b50600080546068805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03949094169390931790925561ff001980831661010090811760ff19166001179091169281900460ff16151502919091179055565b600160a060020a038116151561147357600080fd5b606854604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36068805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061151d57805160ff191683800117855561154a565b8280016001018555821561154a579182015b8281111561154a57825182559160200191906001019061152f565b5061127e926105c79250905b8082111561127e57600081556001016115565600a165627a7a723058208a9e813c8d0e6a1e8910a3251cf93452c7686feae2218b823e7800a0128c8da00029

Deployed Bytecode Sourcemap

11153:11109:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7147:69;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7147:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;7147:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20305:261;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;20305:261:0;-1:-1:-1;;;;;20305:261:0;;;;;;;;;;;;;;;;;;;;;;;;;6932:158;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6932:158:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;6932:158:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6932:158:0;;;;-1:-1:-1;6932:158:0;-1:-1:-1;6932:158:0;;-1:-1:-1;6932:158:0;;;;;;;;-1:-1:-1;6932:158:0;;-1:-1:-1;;;6932:158:0;;;;;-1:-1:-1;6932:158:0;;-1:-1:-1;;;6932:158:0;;;17403:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17403:91:0;;;;;;;;;;;;;;;;;;;;14741:136;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14741:136:0;;;;;;;19127:536;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;19127:536:0;-1:-1:-1;;;;;19127:536:0;;;;;;;;;;;;15035:133;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15035:133:0;;;;;;;7419:76;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7419:76:0;;;;;;;;;;;;;;;;;;;;;;;20939:436;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;20939:436:0;-1:-1:-1;;;;;20939:436:0;;;;;;;12946:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12946:24:0;;;;17615:127;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;17615:127:0;-1:-1:-1;;;;;17615:127:0;;;;;5016:116;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5016:116:0;;;;15436:1435;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15436:1435:0;;;;;;;12977:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12977:23:0;;;;14404:179;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14404:179:0;-1:-1:-1;;;;;14404:179:0;;;;;4357:72;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4357:72:0;;;;;;;;-1:-1:-1;;;;;4357:72:0;;;;;;;;;;;;;;12760:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12760:29:0;;;;4659:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4659:85:0;;;;7275:73;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7275:73:0;;;;21637:622;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;21637:622:0;-1:-1:-1;;;;;21637:622:0;;;;;;;17968:416;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;17968:416:0;-1:-1:-1;;;;;17968:416:0;;;;;;;16879:451;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;16879:451:0;-1:-1:-1;;;;;16879:451:0;;;;;18691:174;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;18691:174:0;-1:-1:-1;;;;;18691:174:0;;;;;;;;;;5299:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5299:103:0;-1:-1:-1;;;;;5299:103:0;;;;;7147:69;7205:5;7198:12;;;;;;;;-1:-1:-1;;7198:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7183:6;;7198:12;;7205:5;;7198:12;;7205:5;7198:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7147:69;;:::o;20305:261::-;13151:11;;20416:4;;-1:-1:-1;;;13151:11:0;;;;13150:12;13142:21;;;;;;20456:10;20438:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;20438:38:0;;;;;;;;;;;;:46;;;20500:36;;;;;;;20438:38;;20456:10;20500:36;;;;;;;;;;;-1:-1:-1;20554:4:0;13174:1;20305:261;;;;:::o;6932:158::-;2841:20;2734:12;;;;;;;;:31;;;2750:15;:13;:15::i;:::-;2734:47;;;-1:-1:-1;2770:11:0;;;;2769:12;2734:47;2726:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2864:12:0;;;;;-1:-1:-1;;2883:19:0;;;;-1:-1:-1;;2909:18:0;;;;;;;;7022:12;;2864;;;;;;7022;;:5;;:12;;;;;:::i;:::-;-1:-1:-1;7041:16:0;;;;:7;;:16;;;;;:::i;:::-;-1:-1:-1;7064:9:0;:20;;;;;;-1:-1:-1;;7064:20:0;;;;;;;;;;:9;2946:30;;;;;7064:20;2946:30;-1:-1:-1;;2946:30:0;;;;;;;;;-1:-1:-1;;6932:158:0:o;17403:91::-;17474:12;;17403:91;:::o;14741:136::-;4550:9;:7;:9::i;:::-;4542:18;;;;;;;;14809:12;:21;;;;;;;;-1:-1:-1;;14809:21:0;;;;;;;;;;14846:23;;;;;;;;;;;;;;;;14741:136;:::o;19127:536::-;19278:4;;19246:2;-1:-1:-1;;;;;13246:18:0;;;;13238:27;;;;;;-1:-1:-1;;;;;13284:19:0;;13298:4;13284:19;;13276:28;;;;;;13151:11;;-1:-1:-1;;;13151:11:0;;;;13150:12;13142:21;;;;;;-1:-1:-1;;;;;19333:23:0;;;;;;:17;:23;;;;;;;;19357:24;19333:49;;;;;;;;:74;;19401:5;19333:74;:67;:74;:::i;:::-;-1:-1:-1;;;;;19295:23:0;;;;;;:17;:23;;;;;;;;19319:10;19295:35;;;;;;;:112;19449:16;;19439:27;;:5;;:27;:9;:27;:::i;:::-;-1:-1:-1;;;;;19498:18:0;;;;;;:12;:18;;;;;;19420:46;;-1:-1:-1;19498:32:0;;19420:46;19498:32;:22;:32;:::i;:::-;-1:-1:-1;;;;;19477:18:0;;;;;;;:12;:18;;;;;;:53;;;;19560:16;;;;;;;:30;;19581:8;19560:30;:20;:30;:::i;:::-;-1:-1:-1;;;;;19541:16:0;;;;;;;:12;:16;;;;;;;;;:49;;;;19606:25;;;;;;;19541:16;;19606:25;;;;;;;;;;;;;-1:-1:-1;19651:4:0;;19127:536;-1:-1:-1;;;;;19127:536:0:o;15035:133::-;4550:9;:7;:9::i;:::-;4542:18;;;;;;;;15102:11;:20;;;;;-1:-1:-1;;;15102:20:0;;-1:-1:-1;;15102:20:0;;;;;;;;;;15138:22;;;;;;;;;;;;;;;;15035:133;:::o;7419:76::-;7480:9;;;;7419:76;:::o;20939:436::-;13151:11;;21065:4;;-1:-1:-1;;;13151:11:0;;;;13150:12;13142:21;;;;;;21146:24;21128:43;;;;:17;:43;;;;;;;;-1:-1:-1;;;;;21128:52:0;;;;;;;;;;:82;;21199:10;21128:82;:70;:82;:::i;:::-;21105:10;21087:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;21087:38:0;;;;;;;;;;;;:123;;;21226:119;;;;;;21087:38;;21226:119;;;;;;;;;;;-1:-1:-1;21363:4:0;20939:436;;;;:::o;12946:24::-;;;;;;;;;:::o;17615:127::-;17717:16;;-1:-1:-1;;;;;17695:17:0;;17668:7;17695:17;;;:12;:17;;;;;;17668:7;;17695:39;;:17;:39;:21;:39;:::i;5016:116::-;4550:9;:7;:9::i;:::-;4542:18;;;;;;;;5093:6;;5074:26;;-1:-1:-1;;;;;5093:6:0;;;;5074:26;;5093:6;;5074:26;5107:6;:19;;-1:-1:-1;;5107:19:0;;;5016:116::o;15436:1435::-;12861:14;;15580:7;;-1:-1:-1;;;;;12861:14:0;12847:10;:28;12839:37;;;;;;13060:12;;;;;;;13059:13;13051:22;;;;;;15609:16;;15605:118;;;15664:12;;15647:30;;;;;;;15657:5;;15647:30;;;;;;;;;;-1:-1:-1;15699:12:0;;15692:19;;15605:118;15753:1;15739:11;:15;15735:193;;;15786:44;15811:17;:11;:15;:17::i;:::-;15786:12;;;:44;:16;:44;:::i;:::-;15771:12;:59;15735:193;;;15878:12;;:38;;15903:11;15878:38;:16;:38;:::i;:::-;15863:12;:53;15735:193;15944:12;;15959:10;-1:-1:-1;15940:83:0;;;16001:10;15986:12;:25;15940:83;16069:12;;16054:28;;13486:21;-1:-1:-1;;13753:38:0;;-1:-1:-1;;13729:63:0;;16054:28;:14;:28;:::i;:::-;16035:16;:47;16820:12;;16803:30;;;;;;;16813:5;;16803:30;;;;;;;;;;-1:-1:-1;16851:12:0;;15436:1435;;;;:::o;12977:23::-;;;-1:-1:-1;;;12977:23:0;;;;;:::o;14404:179::-;4550:9;:7;:9::i;:::-;4542:18;;;;;;;;14486:14;:32;;-1:-1:-1;;;;;14486:32:0;;-1:-1:-1;;14486:32:0;;;;;;;;14534:41;;;;;;;;;;;;;;;;14404:179;:::o;4357:72::-;4417:6;;-1:-1:-1;;;;;4417:6:0;4357:72;:::o;12760:29::-;;;-1:-1:-1;;;;;12760:29:0;;:::o;4659:85::-;4732:6;;-1:-1:-1;;;;;4732:6:0;4718:10;:20;;4659:85::o;7275:73::-;7335:7;7328:14;;;;;;;;-1:-1:-1;;7328:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7313:6;;7328:14;;7335:7;;7328:14;;7335:7;7328:14;;;;;;;;;;;;;;;;;;;;;;;;21637:622;13151:11;;21768:4;;;;-1:-1:-1;;;13151:11:0;;;;13150:12;13142:21;;;;;;-1:-1:-1;21827:10:0;21809:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;21809:38:0;;;;;;;;;;21862:27;;;21858:237;;21924:10;21947:1;21906:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;21906:38:0;;;;;;;;;:42;21858:237;;;22022:61;:8;22053:15;22022:61;:12;:61;:::i;:::-;21999:10;21981:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;21981:38:0;;;;;;;;;:102;21858:237;22133:10;22180:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;22110:119:0;;22180:38;;;;;;;;;;;22110:119;;;;;;;;;22133:10;22110:119;;;;;;;;;;;22247:4;22240:11;;13174:1;21637:622;;;;;:::o;17968:416::-;18103:4;;18053:2;-1:-1:-1;;;;;13246:18:0;;;;13238:27;;;;;;-1:-1:-1;;;;;13284:19:0;;13298:4;13284:19;;13276:28;;;;;;13151:11;;-1:-1:-1;;;13151:11:0;;;;13150:12;13142:21;;;;;;18154:16;;18144:27;;:5;;:27;:9;:27;:::i;:::-;18222:10;18209:24;;;;:12;:24;;;;;;18125:46;;-1:-1:-1;18209:38:0;;18125:46;18209:38;:28;:38;:::i;:::-;18195:10;18182:24;;;;:12;:24;;;;;;:65;;;;-1:-1:-1;;;;;18277:16:0;;;;;;:30;;18298:8;18277:30;:20;:30;:::i;:::-;-1:-1:-1;;;;;18258:16:0;;;;;;:12;:16;;;;;;;;;:49;;;;18323:31;;;;;;;18258:16;;18332:10;;18323:31;;;;;;;;;;-1:-1:-1;18372:4:0;;17968:416;-1:-1:-1;;;;17968:416:0:o;16879:451::-;2841:20;2734:12;;;;;;;;:31;;;2750:15;:13;:15::i;:::-;2734:47;;;-1:-1:-1;2770:11:0;;;;2769:12;2734:47;2726:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2864:12:0;;;;;-1:-1:-1;;2883:19:0;;;;-1:-1:-1;;2909:18:0;;;;;;;;16945:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2864:12;;;;;;;16945:61;;13368:2;16945:24;:61::i;:::-;17017:26;17036:6;17017:18;:26::i;:::-;17056:12;:20;;-1:-1:-1;;17087:19:0;;;13486:21;17119:12;:39;;;-1:-1:-1;;;;;17169:20:0;;-1:-1:-1;17169:20:0;;;:12;:20;;;;;-1:-1:-1;;17169:33:0;;17247:12;17232:28;;-1:-1:-1;;13753:38:0;;17232:28;17213:16;:47;17309:12;;17278:44;;;;;;;-1:-1:-1;;;;;17278:44:0;;;17295:3;;17278:44;;;;;;;;;2946:12;:30;;;;;;;-1:-1:-1;;2946:30:0;;;;;;;;;-1:-1:-1;16879:451:0:o;18691:174::-;-1:-1:-1;;;;;18823:25:0;;;18791:7;18823:25;;;:17;:25;;;;;;;;:34;;;;;;;;;;;;;18691:174::o;5299:103::-;4550:9;:7;:9::i;:::-;4542:18;;;;;;;;5368:28;5387:8;5368:18;:28::i;:::-;5299:103;:::o;3071:476::-;3511:7;3499:20;3534:7;;;3071:476;;;:::o;1118:136::-;1176:7;;1200:6;;;;1192:15;;;;;;-1:-1:-1;;1226:5:0;;;1118:136::o;216:393::-;274:7;;502:6;;498:37;;;526:1;519:8;;;;498:37;-1:-1:-1;555:5:0;;;559:1;555;:5;575;;;;;;;;:10;567:19;;;;;;602:1;216:393;-1:-1:-1;;;216:393:0:o;1322:136::-;1380:7;1408:5;;;1428:6;;;;1420:15;;;;;724:276;782:7;;806:5;;;798:14;;;;;;893:1;889;:5;;;;;;;;;724:276;-1:-1:-1;;;;724:276:0:o;10418:161::-;10491:6;8836:16;10523:15;;;10515:24;;;;;;10561:1;10557;:5;:14;;10570:1;10557:14;;;-1:-1:-1;10565:2:0;;;10418:161::o;4214:83::-;2841:20;2734:12;;;;;;;;:31;;;2750:15;:13;:15::i;:::-;2734:47;;;-1:-1:-1;2770:11:0;;;;2769:12;2734:47;2726:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2864:12:0;;;4276:6;:15;;-1:-1:-1;;4276:15:0;-1:-1:-1;;;;;4276:15:0;;;;;;;;;;;-1:-1:-1;;2883:19:0;;;2864:12;2883:19;;;-1:-1:-1;;2909:18:0;-1:-1:-1;2909:18:0;2946:30;;;2864:12;;;;;;2946:30;;;;;;;;;4214:83::o;5542:173::-;-1:-1:-1;;;;;5612:22:0;;;;5604:31;;;;;;5668:6;;5647:38;;-1:-1:-1;;;;;5647:38:0;;;;5668:6;;5647:38;;5668:6;;5647:38;5692:6;:17;;-1:-1:-1;;5692:17:0;-1:-1:-1;;;;;5692:17:0;;;;;;;;;;5542:173::o;11153:11109::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11153:11109:0;;;;-1:-1:-1;11153:11109:0;;;;;;;;;;;;;;

Swarm Source

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