ETH Price: $2,744.97 (+2.98%)

Token

Nsure ETH (nETH)
 

Overview

Max Total Supply

94.432 nETH

Holders

4

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 nETH

Value
$0.00
0x049940feda4277b7f01ef10fca0b975c541d8fca
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:
CapitalConverter

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv2 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-03-30
*/

// File: @openzeppelin/contracts/GSN/Context.sol



pragma solidity ^0.6.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol



pragma solidity ^0.6.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: 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
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/math/SafeMath.sol



pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot 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-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.6.2;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol



pragma solidity ^0.6.0;





/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

// File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol



pragma solidity ^0.6.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: @openzeppelin/contracts/utils/Pausable.sol



pragma solidity ^0.6.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () internal {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/contracts/utils/ReentrancyGuard.sol



pragma solidity ^0.6.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor () internal {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.6.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
 
contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/CapitalConverter.sol

/**
 * @dev a contract for convert eth to nETH or token to nToken.
 *   
 * @notice  there would be a ratio between Token and nToken when emit a claim event.
 */








pragma solidity ^0.6.0;

contract CapitalConverter is ERC20, Ownable, Pausable, ReentrancyGuard {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    address public constant ETHEREUM = address(0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE);

    uint256 public maxConvert = 10000e18;
    address public token;
    uint256 public tokenDecimal;

    address public operator;

    mapping (address => uint256) public depositAt; // in case of flashloan attacks

    constructor(address _token, uint256 _tokenDecimal,string memory name,string memory symbol) public  ERC20(name,symbol)
    {
        token           = _token;
        tokenDecimal    = _tokenDecimal;
    }

    receive() external payable {
        revert();
    }


    function smartBalance() public view returns (uint256) {
        if (token == ETHEREUM) {
            return address(this).balance;
        }

        return IERC20(token).balanceOf(address(this));
    }

    function calculateMintAmount(uint256 _depositAmount) internal view returns (uint256) {
        if (totalSupply() == 0) {
            uint256 value = _depositAmount.mul(uint256(1e18)).div(10**tokenDecimal);
            return value;
        }

        uint256 initialBalance = smartBalance().sub(_depositAmount);
        return _depositAmount.mul(totalSupply()).div(initialBalance);
    }
    
    // convert ETH or USDx to nETH/nUSDx
    function convert(uint256 _amount) external payable nonReentrant whenNotPaused {
        require(_amount > 0, "CapitalConverter: Cannot stake 0.");
        require(_amount <= maxConvert, "exceeding the maximum limit");

        depositAt[msg.sender] = block.number;

        if (token != ETHEREUM) {
            require(msg.value == 0, "CapitalConverter: Should not allow ETH deposits.");
            IERC20(token).safeTransferFrom(_msgSender(), address(this), _amount);
        } else {
            require(_amount == msg.value, "CapitalConverter: Incorrect eth amount.");
        }

        uint256 value = calculateMintAmount(_amount);
        _mint(_msgSender(), value);
        
        // emit event
        emit eMint(_msgSender(), _amount, value);
    }

    // withdraw the ETH or USDx
    function exit(uint256 _value) external nonReentrant whenNotPaused {
        require(balanceOf(_msgSender()) >= _value && _value > 0, 
                "CapitalConverter: insufficient assets");

        require(depositAt[msg.sender] > 0, "No deposit history");
        require(depositAt[msg.sender] < block.number, "Reject flashloan");

        uint256 value = _value.mul(smartBalance()).div(totalSupply());
        if (token != ETHEREUM) {
            IERC20(token).safeTransfer(_msgSender(), value);
        } else {
            _msgSender().transfer(value);
        }

        _burn(_msgSender(), _value);
        
        // emit event
        emit eBurn(_msgSender(), _value, value);
    }

    function payouts(address payable _to, uint256 _amount) external onlyOperator {
        require(_to != address(0),"_to is zero");
        if (token != ETHEREUM) {
            IERC20(token).safeTransfer(_to, _amount);
        } else {
            _to.transfer(_amount);
        }

        emit ePayouts(_to, _amount);
    }

    modifier onlyOperator() {
        require(msg.sender == operator, "not operator");
        _;
    }

    function setOperator(address _operator) external onlyOwner {
        require(_operator != address(0),"_operator is zero");
        operator = _operator;
        emit eSetOperator(_operator);
    }

    function setMaxConvert(uint256 _max) external onlyOwner {
        maxConvert = _max;
        emit eSetMaxConvert(_max);
    }


    event eMint(address indexed sender, uint256 input, uint256 amount);
    event eBurn(address indexed sender, uint256 amount, uint256 output);
    event ePayouts(address indexed to, uint256 amount);
    event eSetOperator(address indexed operator);
    event eSetMaxConvert(uint256 max);
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_tokenDecimal","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"output","type":"uint256"}],"name":"eBurn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"input","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"eMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ePayouts","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"max","type":"uint256"}],"name":"eSetMaxConvert","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"}],"name":"eSetOperator","type":"event"},{"inputs":[],"name":"ETHEREUM","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"convert","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"depositAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"exit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxConvert","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"payouts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxConvert","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"setOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"smartBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenDecimal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405269021e19e0c9bab24000006007553480156200001f57600080fd5b50604051620023fd380380620023fd833981810160405260808110156200004557600080fd5b815160208301516040808501805191519395929483019291846401000000008211156200007157600080fd5b9083019060208201858111156200008757600080fd5b8251640100000000811182820188101715620000a257600080fd5b82525081516020918201929091019080838360005b83811015620000d1578181015183820152602001620000b7565b50505050905090810190601f168015620000ff5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200012357600080fd5b9083019060208201858111156200013957600080fd5b82516401000000008111828201881017156200015457600080fd5b82525081516020918201929091019080838360005b838110156200018357818101518382015260200162000169565b50505050905090810190601f168015620001b15780820380516001836020036101000a031916815260200191505b50604052505082518391508290620001d19060039060208501906200029b565b508051620001e79060049060208401906200029b565b50506005805460ff191660121790555060006200020362000297565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350506005805460ff60a81b19169055506001600655600880546001600160a01b0319166001600160a01b03939093169290921790915560095562000337565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002de57805160ff19168380011785556200030e565b828001600101855582156200030e579182015b828111156200030e578251825591602001919060010190620002f1565b506200031c92915062000320565b5090565b5b808211156200031c576000815560010162000321565b6120b680620003476000396000f3fe6080604052600436106101a05760003560e01c80637f8661a1116100ec578063b3ab15fb1161008a578063edd2cfe311610064578063edd2cfe3146105e0578063f2fde38b1461060a578063f7cdf47c1461063d578063fc0c546a14610652576101aa565b8063b3ab15fb1461053f578063dd62ed3e14610572578063e6b05950146105ad576101aa565b80639d484693116100c65780639d48469314610477578063a3908e1b146104b0578063a457c2d7146104cd578063a9059cbb14610506576101aa565b80637f8661a1146104235780638da5cb5b1461044d57806395d89b4114610462576101aa565b8063313ce567116101595780635c975abb116101335780635c975abb146103af5780635caed029146103c457806370a08231146103d9578063715018a61461040c576101aa565b8063313ce5671461031a5780633950935114610345578063570ca7351461037e576101aa565b806306fdde03146101af578063095ea7b3146102395780630a227f2f1461028657806318160ddd146102ad57806323b872dd146102c257806328421bf714610305576101aa565b366101aa57600080fd5b600080fd5b3480156101bb57600080fd5b506101c4610667565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101fe5781810151838201526020016101e6565b50505050905090810190601f16801561022b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561024557600080fd5b506102726004803603604081101561025c57600080fd5b506001600160a01b0381351690602001356106fe565b604080519115158252519081900360200190f35b34801561029257600080fd5b5061029b61071c565b60408051918252519081900360200190f35b3480156102b957600080fd5b5061029b610722565b3480156102ce57600080fd5b50610272600480360360608110156102e557600080fd5b506001600160a01b03813581169160208101359091169060400135610728565b34801561031157600080fd5b5061029b6107af565b34801561032657600080fd5b5061032f61085c565b6040805160ff9092168252519081900360200190f35b34801561035157600080fd5b506102726004803603604081101561036857600080fd5b506001600160a01b038135169060200135610865565b34801561038a57600080fd5b506103936108b3565b604080516001600160a01b039092168252519081900360200190f35b3480156103bb57600080fd5b506102726108c2565b3480156103d057600080fd5b5061029b6108d2565b3480156103e557600080fd5b5061029b600480360360208110156103fc57600080fd5b50356001600160a01b03166108d8565b34801561041857600080fd5b506104216108f7565b005b34801561042f57600080fd5b506104216004803603602081101561044657600080fd5b50356109a4565b34801561045957600080fd5b50610393610c76565b34801561046e57600080fd5b506101c4610c8a565b34801561048357600080fd5b506104216004803603604081101561049a57600080fd5b506001600160a01b038135169060200135610ceb565b610421600480360360208110156104c657600080fd5b5035610e3f565b3480156104d957600080fd5b50610272600480360360408110156104f057600080fd5b506001600160a01b0381351690602001356110d2565b34801561051257600080fd5b506102726004803603604081101561052957600080fd5b506001600160a01b03813516906020013561113a565b34801561054b57600080fd5b506104216004803603602081101561056257600080fd5b50356001600160a01b031661114e565b34801561057e57600080fd5b5061029b6004803603604081101561059557600080fd5b506001600160a01b0381358116916020013516611244565b3480156105b957600080fd5b5061029b600480360360208110156105d057600080fd5b50356001600160a01b031661126f565b3480156105ec57600080fd5b506104216004803603602081101561060357600080fd5b5035611281565b34801561061657600080fd5b506104216004803603602081101561062d57600080fd5b50356001600160a01b0316611319565b34801561064957600080fd5b50610393611422565b34801561065e57600080fd5b5061039361143a565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106f35780601f106106c8576101008083540402835291602001916106f3565b820191906000526020600020905b8154815290600101906020018083116106d657829003601f168201915b505050505090505b90565b600061071261070b611449565b848461144d565b5060015b92915050565b60075481565b60025490565b6000610735848484611539565b6107a584610741611449565b6107a085604051806060016040528060288152602001611f2f602891396001600160a01b038a1660009081526001602052604081209061077f611449565b6001600160a01b031681526020810191909152604001600020549190611694565b61144d565b5060019392505050565b6008546000906001600160a01b031673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14156107e05750476106fb565b600854604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561082b57600080fd5b505afa15801561083f573d6000803e3d6000fd5b505050506040513d602081101561085557600080fd5b5051905090565b60055460ff1690565b6000610712610872611449565b846107a08560016000610883611449565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061172b565b600a546001600160a01b031681565b600554600160a81b900460ff1690565b60095481565b6001600160a01b0381166000908152602081905260409020545b919050565b6108ff611449565b60055461010090046001600160a01b03908116911614610954576040805162461bcd60e51b81526020600482018190526024820152600080516020611f57833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b600260065414156109fc576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600655600554600160a81b900460ff1615610a53576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b80610a64610a5f611449565b6108d8565b10158015610a725750600081115b610aad5760405162461bcd60e51b8152600401808060200182810382526025815260200180611e596025913960400191505060405180910390fd5b336000908152600b6020526040902054610b03576040805162461bcd60e51b81526020600482015260126024820152714e6f206465706f73697420686973746f727960701b604482015290519081900360640190fd5b336000908152600b60205260409020544311610b59576040805162461bcd60e51b815260206004820152601060248201526f2932b532b1ba10333630b9b43637b0b760811b604482015290519081900360640190fd5b6000610b7e610b66610722565b610b78610b716107af565b859061178c565b906117e5565b6008549091506001600160a01b031673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14610bca57610bc5610bb2611449565b6008546001600160a01b03169083611827565b610c0c565b610bd2611449565b6001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015610c0a573d6000803e3d6000fd5b505b610c1d610c17611449565b8361187e565b610c25611449565b6001600160a01b03167f6449312ba024a9c00ca0dd68f369ba499ed0cf6d751e1534c71008555713cac98383604051808381526020018281526020019250505060405180910390a250506001600655565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106f35780601f106106c8576101008083540402835291602001916106f3565b600a546001600160a01b03163314610d39576040805162461bcd60e51b815260206004820152600c60248201526b3737ba1037b832b930ba37b960a11b604482015290519081900360640190fd5b6001600160a01b038216610d82576040805162461bcd60e51b815260206004820152600b60248201526a5f746f206973207a65726f60a81b604482015290519081900360640190fd5b6008546001600160a01b031673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14610dc457600854610dbf906001600160a01b03168383611827565b610dfc565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610dfa573d6000803e3d6000fd5b505b6040805182815290516001600160a01b038416917f21f5d51767dbc29c660e79e98830844af5399b7623bbdfbe6ce5d6cb216bc2fe919081900360200190a25050565b60026006541415610e97576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600655600554600160a81b900460ff1615610eee576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b60008111610f2d5760405162461bcd60e51b81526004018080602001828103825260218152602001806120606021913960400191505060405180910390fd5b600754811115610f84576040805162461bcd60e51b815260206004820152601b60248201527f657863656564696e6720746865206d6178696d756d206c696d69740000000000604482015290519081900360640190fd5b336000908152600b602052604090204390556008546001600160a01b031673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1461101d573415610ff95760405162461bcd60e51b815260040180806020018281038252603081526020018061200b6030913960400191505060405180910390fd5b611018611004611449565b6008546001600160a01b031690308461197a565b61105b565b34811461105b5760405162461bcd60e51b8152600401808060200182810382526027815260200180611e326027913960400191505060405180910390fd5b6000611066826119da565b9050611079611073611449565b82611a3c565b611081611449565b6001600160a01b03167f422ec69e49281bc8ab782423bec4967c366c3df5607d206cb6d32fd1d3a2868e8383604051808381526020018281526020019250505060405180910390a250506001600655565b60006107126110df611449565b846107a08560405180606001604052806025815260200161203b6025913960016000611109611449565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611694565b6000610712611147611449565b8484611539565b611156611449565b60055461010090046001600160a01b039081169116146111ab576040805162461bcd60e51b81526020600482018190526024820152600080516020611f57833981519152604482015290519081900360640190fd5b6001600160a01b0381166111fa576040805162461bcd60e51b81526020600482015260116024820152705f6f70657261746f72206973207a65726f60781b604482015290519081900360640190fd5b600a80546001600160a01b0319166001600160a01b0383169081179091556040517f22b76827cedebd97fbe4b16a026ed043bde58720fc1f4f0802457397016ceb1c90600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600b6020526000908152604090205481565b611289611449565b60055461010090046001600160a01b039081169116146112de576040805162461bcd60e51b81526020600482018190526024820152600080516020611f57833981519152604482015290519081900360640190fd5b60078190556040805182815290517f5fc9ca1346f8d325bac67b7d73d90b93f86003ba4a44095dfbdf55532c5e8e969181900360200190a150565b611321611449565b60055461010090046001600160a01b03908116911614611376576040805162461bcd60e51b81526020600482018190526024820152600080516020611f57833981519152604482015290519081900360640190fd5b6001600160a01b0381166113bb5760405162461bcd60e51b8152600401808060200182810382526026815260200180611ea06026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee81565b6008546001600160a01b031681565b3390565b6001600160a01b0383166114925760405162461bcd60e51b8152600401808060200182810382526024815260200180611fbd6024913960400191505060405180910390fd5b6001600160a01b0382166114d75760405162461bcd60e51b8152600401808060200182810382526022815260200180611ec66022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661157e5760405162461bcd60e51b8152600401808060200182810382526025815260200180611f986025913960400191505060405180910390fd5b6001600160a01b0382166115c35760405162461bcd60e51b8152600401808060200182810382526023815260200180611e0f6023913960400191505060405180910390fd5b6115ce838383611879565b61160b81604051806060016040528060268152602001611ee8602691396001600160a01b0386166000908152602081905260409020549190611694565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461163a908261172b565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156117235760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156116e85781810151838201526020016116d0565b50505050905090810190601f1680156117155780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611785576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60008261179b57506000610716565b828202828482816117a857fe5b04146117855760405162461bcd60e51b8152600401808060200182810382526021815260200180611f0e6021913960400191505060405180910390fd5b600061178583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611b2c565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611879908490611b91565b505050565b6001600160a01b0382166118c35760405162461bcd60e51b8152600401808060200182810382526021815260200180611f776021913960400191505060405180910390fd5b6118cf82600083611879565b61190c81604051806060016040528060228152602001611e7e602291396001600160a01b0385166000908152602081905260409020549190611694565b6001600160a01b0383166000908152602081905260409020556002546119329082611c42565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526119d4908590611b91565b50505050565b60006119e4610722565b611a1057600954600090611a0790600a0a610b7885670de0b6b3a764000061178c565b91506108f29050565b6000611a2483611a1e6107af565b90611c42565b905061178581610b78611a35610722565b869061178c565b6001600160a01b038216611a97576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611aa360008383611879565b600254611ab0908261172b565b6002556001600160a01b038216600090815260208190526040902054611ad6908261172b565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008183611b7b5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156116e85781810151838201526020016116d0565b506000838581611b8757fe5b0495945050505050565b6060611be6826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611c849092919063ffffffff16565b80519091501561187957808060200190516020811015611c0557600080fd5b50516118795760405162461bcd60e51b815260040180806020018281038252602a815260200180611fe1602a913960400191505060405180910390fd5b600061178583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611694565b6060611c938484600085611c9b565b949350505050565b6060611ca685611e08565b611cf7576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310611d365780518252601f199092019160209182019101611d17565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611d98576040519150601f19603f3d011682016040523d82523d6000602084013e611d9d565b606091505b50915091508115611db1579150611c939050565b805115611dc15780518082602001fd5b60405162461bcd60e51b81526020600482018181528651602484015286518793919283926044019190850190808383600083156116e85781810151838201526020016116d0565b3b15159056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734361706974616c436f6e7665727465723a20496e636f72726563742065746820616d6f756e742e4361706974616c436f6e7665727465723a20696e73756666696369656e742061737365747345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565644361706974616c436f6e7665727465723a2053686f756c64206e6f7420616c6c6f7720455448206465706f736974732e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4361706974616c436f6e7665727465723a2043616e6e6f74207374616b6520302ea26469706673582212200a928c406f4284c250cb17d1406cdfe998cb2267187c92f23a4ec545ddd89a5d64736f6c634300060c0033000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000094e7375726520455448000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046e45544800000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101a05760003560e01c80637f8661a1116100ec578063b3ab15fb1161008a578063edd2cfe311610064578063edd2cfe3146105e0578063f2fde38b1461060a578063f7cdf47c1461063d578063fc0c546a14610652576101aa565b8063b3ab15fb1461053f578063dd62ed3e14610572578063e6b05950146105ad576101aa565b80639d484693116100c65780639d48469314610477578063a3908e1b146104b0578063a457c2d7146104cd578063a9059cbb14610506576101aa565b80637f8661a1146104235780638da5cb5b1461044d57806395d89b4114610462576101aa565b8063313ce567116101595780635c975abb116101335780635c975abb146103af5780635caed029146103c457806370a08231146103d9578063715018a61461040c576101aa565b8063313ce5671461031a5780633950935114610345578063570ca7351461037e576101aa565b806306fdde03146101af578063095ea7b3146102395780630a227f2f1461028657806318160ddd146102ad57806323b872dd146102c257806328421bf714610305576101aa565b366101aa57600080fd5b600080fd5b3480156101bb57600080fd5b506101c4610667565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101fe5781810151838201526020016101e6565b50505050905090810190601f16801561022b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561024557600080fd5b506102726004803603604081101561025c57600080fd5b506001600160a01b0381351690602001356106fe565b604080519115158252519081900360200190f35b34801561029257600080fd5b5061029b61071c565b60408051918252519081900360200190f35b3480156102b957600080fd5b5061029b610722565b3480156102ce57600080fd5b50610272600480360360608110156102e557600080fd5b506001600160a01b03813581169160208101359091169060400135610728565b34801561031157600080fd5b5061029b6107af565b34801561032657600080fd5b5061032f61085c565b6040805160ff9092168252519081900360200190f35b34801561035157600080fd5b506102726004803603604081101561036857600080fd5b506001600160a01b038135169060200135610865565b34801561038a57600080fd5b506103936108b3565b604080516001600160a01b039092168252519081900360200190f35b3480156103bb57600080fd5b506102726108c2565b3480156103d057600080fd5b5061029b6108d2565b3480156103e557600080fd5b5061029b600480360360208110156103fc57600080fd5b50356001600160a01b03166108d8565b34801561041857600080fd5b506104216108f7565b005b34801561042f57600080fd5b506104216004803603602081101561044657600080fd5b50356109a4565b34801561045957600080fd5b50610393610c76565b34801561046e57600080fd5b506101c4610c8a565b34801561048357600080fd5b506104216004803603604081101561049a57600080fd5b506001600160a01b038135169060200135610ceb565b610421600480360360208110156104c657600080fd5b5035610e3f565b3480156104d957600080fd5b50610272600480360360408110156104f057600080fd5b506001600160a01b0381351690602001356110d2565b34801561051257600080fd5b506102726004803603604081101561052957600080fd5b506001600160a01b03813516906020013561113a565b34801561054b57600080fd5b506104216004803603602081101561056257600080fd5b50356001600160a01b031661114e565b34801561057e57600080fd5b5061029b6004803603604081101561059557600080fd5b506001600160a01b0381358116916020013516611244565b3480156105b957600080fd5b5061029b600480360360208110156105d057600080fd5b50356001600160a01b031661126f565b3480156105ec57600080fd5b506104216004803603602081101561060357600080fd5b5035611281565b34801561061657600080fd5b506104216004803603602081101561062d57600080fd5b50356001600160a01b0316611319565b34801561064957600080fd5b50610393611422565b34801561065e57600080fd5b5061039361143a565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106f35780601f106106c8576101008083540402835291602001916106f3565b820191906000526020600020905b8154815290600101906020018083116106d657829003601f168201915b505050505090505b90565b600061071261070b611449565b848461144d565b5060015b92915050565b60075481565b60025490565b6000610735848484611539565b6107a584610741611449565b6107a085604051806060016040528060288152602001611f2f602891396001600160a01b038a1660009081526001602052604081209061077f611449565b6001600160a01b031681526020810191909152604001600020549190611694565b61144d565b5060019392505050565b6008546000906001600160a01b031673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14156107e05750476106fb565b600854604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561082b57600080fd5b505afa15801561083f573d6000803e3d6000fd5b505050506040513d602081101561085557600080fd5b5051905090565b60055460ff1690565b6000610712610872611449565b846107a08560016000610883611449565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061172b565b600a546001600160a01b031681565b600554600160a81b900460ff1690565b60095481565b6001600160a01b0381166000908152602081905260409020545b919050565b6108ff611449565b60055461010090046001600160a01b03908116911614610954576040805162461bcd60e51b81526020600482018190526024820152600080516020611f57833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b600260065414156109fc576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600655600554600160a81b900460ff1615610a53576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b80610a64610a5f611449565b6108d8565b10158015610a725750600081115b610aad5760405162461bcd60e51b8152600401808060200182810382526025815260200180611e596025913960400191505060405180910390fd5b336000908152600b6020526040902054610b03576040805162461bcd60e51b81526020600482015260126024820152714e6f206465706f73697420686973746f727960701b604482015290519081900360640190fd5b336000908152600b60205260409020544311610b59576040805162461bcd60e51b815260206004820152601060248201526f2932b532b1ba10333630b9b43637b0b760811b604482015290519081900360640190fd5b6000610b7e610b66610722565b610b78610b716107af565b859061178c565b906117e5565b6008549091506001600160a01b031673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14610bca57610bc5610bb2611449565b6008546001600160a01b03169083611827565b610c0c565b610bd2611449565b6001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015610c0a573d6000803e3d6000fd5b505b610c1d610c17611449565b8361187e565b610c25611449565b6001600160a01b03167f6449312ba024a9c00ca0dd68f369ba499ed0cf6d751e1534c71008555713cac98383604051808381526020018281526020019250505060405180910390a250506001600655565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106f35780601f106106c8576101008083540402835291602001916106f3565b600a546001600160a01b03163314610d39576040805162461bcd60e51b815260206004820152600c60248201526b3737ba1037b832b930ba37b960a11b604482015290519081900360640190fd5b6001600160a01b038216610d82576040805162461bcd60e51b815260206004820152600b60248201526a5f746f206973207a65726f60a81b604482015290519081900360640190fd5b6008546001600160a01b031673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14610dc457600854610dbf906001600160a01b03168383611827565b610dfc565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610dfa573d6000803e3d6000fd5b505b6040805182815290516001600160a01b038416917f21f5d51767dbc29c660e79e98830844af5399b7623bbdfbe6ce5d6cb216bc2fe919081900360200190a25050565b60026006541415610e97576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600655600554600160a81b900460ff1615610eee576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b60008111610f2d5760405162461bcd60e51b81526004018080602001828103825260218152602001806120606021913960400191505060405180910390fd5b600754811115610f84576040805162461bcd60e51b815260206004820152601b60248201527f657863656564696e6720746865206d6178696d756d206c696d69740000000000604482015290519081900360640190fd5b336000908152600b602052604090204390556008546001600160a01b031673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1461101d573415610ff95760405162461bcd60e51b815260040180806020018281038252603081526020018061200b6030913960400191505060405180910390fd5b611018611004611449565b6008546001600160a01b031690308461197a565b61105b565b34811461105b5760405162461bcd60e51b8152600401808060200182810382526027815260200180611e326027913960400191505060405180910390fd5b6000611066826119da565b9050611079611073611449565b82611a3c565b611081611449565b6001600160a01b03167f422ec69e49281bc8ab782423bec4967c366c3df5607d206cb6d32fd1d3a2868e8383604051808381526020018281526020019250505060405180910390a250506001600655565b60006107126110df611449565b846107a08560405180606001604052806025815260200161203b6025913960016000611109611449565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611694565b6000610712611147611449565b8484611539565b611156611449565b60055461010090046001600160a01b039081169116146111ab576040805162461bcd60e51b81526020600482018190526024820152600080516020611f57833981519152604482015290519081900360640190fd5b6001600160a01b0381166111fa576040805162461bcd60e51b81526020600482015260116024820152705f6f70657261746f72206973207a65726f60781b604482015290519081900360640190fd5b600a80546001600160a01b0319166001600160a01b0383169081179091556040517f22b76827cedebd97fbe4b16a026ed043bde58720fc1f4f0802457397016ceb1c90600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600b6020526000908152604090205481565b611289611449565b60055461010090046001600160a01b039081169116146112de576040805162461bcd60e51b81526020600482018190526024820152600080516020611f57833981519152604482015290519081900360640190fd5b60078190556040805182815290517f5fc9ca1346f8d325bac67b7d73d90b93f86003ba4a44095dfbdf55532c5e8e969181900360200190a150565b611321611449565b60055461010090046001600160a01b03908116911614611376576040805162461bcd60e51b81526020600482018190526024820152600080516020611f57833981519152604482015290519081900360640190fd5b6001600160a01b0381166113bb5760405162461bcd60e51b8152600401808060200182810382526026815260200180611ea06026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee81565b6008546001600160a01b031681565b3390565b6001600160a01b0383166114925760405162461bcd60e51b8152600401808060200182810382526024815260200180611fbd6024913960400191505060405180910390fd5b6001600160a01b0382166114d75760405162461bcd60e51b8152600401808060200182810382526022815260200180611ec66022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661157e5760405162461bcd60e51b8152600401808060200182810382526025815260200180611f986025913960400191505060405180910390fd5b6001600160a01b0382166115c35760405162461bcd60e51b8152600401808060200182810382526023815260200180611e0f6023913960400191505060405180910390fd5b6115ce838383611879565b61160b81604051806060016040528060268152602001611ee8602691396001600160a01b0386166000908152602081905260409020549190611694565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461163a908261172b565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156117235760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156116e85781810151838201526020016116d0565b50505050905090810190601f1680156117155780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611785576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60008261179b57506000610716565b828202828482816117a857fe5b04146117855760405162461bcd60e51b8152600401808060200182810382526021815260200180611f0e6021913960400191505060405180910390fd5b600061178583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611b2c565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611879908490611b91565b505050565b6001600160a01b0382166118c35760405162461bcd60e51b8152600401808060200182810382526021815260200180611f776021913960400191505060405180910390fd5b6118cf82600083611879565b61190c81604051806060016040528060228152602001611e7e602291396001600160a01b0385166000908152602081905260409020549190611694565b6001600160a01b0383166000908152602081905260409020556002546119329082611c42565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526119d4908590611b91565b50505050565b60006119e4610722565b611a1057600954600090611a0790600a0a610b7885670de0b6b3a764000061178c565b91506108f29050565b6000611a2483611a1e6107af565b90611c42565b905061178581610b78611a35610722565b869061178c565b6001600160a01b038216611a97576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611aa360008383611879565b600254611ab0908261172b565b6002556001600160a01b038216600090815260208190526040902054611ad6908261172b565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008183611b7b5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156116e85781810151838201526020016116d0565b506000838581611b8757fe5b0495945050505050565b6060611be6826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611c849092919063ffffffff16565b80519091501561187957808060200190516020811015611c0557600080fd5b50516118795760405162461bcd60e51b815260040180806020018281038252602a815260200180611fe1602a913960400191505060405180910390fd5b600061178583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611694565b6060611c938484600085611c9b565b949350505050565b6060611ca685611e08565b611cf7576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310611d365780518252601f199092019160209182019101611d17565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611d98576040519150601f19603f3d011682016040523d82523d6000602084013e611d9d565b606091505b50915091508115611db1579150611c939050565b805115611dc15780518082602001fd5b60405162461bcd60e51b81526020600482018181528651602484015286518793919283926044019190850190808383600083156116e85781810151838201526020016116d0565b3b15159056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734361706974616c436f6e7665727465723a20496e636f72726563742065746820616d6f756e742e4361706974616c436f6e7665727465723a20696e73756666696369656e742061737365747345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565644361706974616c436f6e7665727465723a2053686f756c64206e6f7420616c6c6f7720455448206465706f736974732e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4361706974616c436f6e7665727465723a2043616e6e6f74207374616b6520302ea26469706673582212200a928c406f4284c250cb17d1406cdfe998cb2267187c92f23a4ec545ddd89a5d64736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000094e7375726520455448000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046e45544800000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _token (address): 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE
Arg [1] : _tokenDecimal (uint256): 18
Arg [2] : name (string): Nsure ETH
Arg [3] : symbol (string): nETH

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 4e73757265204554480000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 6e45544800000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

37435:4033:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38154:8;;;37435:4033;;;;17405:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19511:169;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19511:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;37676:36;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;18480:100;;;;;;;;;;;;;:::i;20154:321::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20154:321:0;;;;;;;;;;;;;;;;;:::i;38180:208::-;;;;;;;;;;;;;:::i;18332:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20884:218;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20884:218:0;;;;;;;;:::i;37782:23::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;37782:23:0;;;;;;;;;;;;;;31023:78;;;;;;;;;;;;;:::i;37746:27::-;;;;;;;;;;;;;:::i;18643:119::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18643:119:0;-1:-1:-1;;;;;18643:119:0;;:::i;36628:148::-;;;;;;;;;;;;;:::i;:::-;;39664:710;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39664:710:0;;:::i;35986:79::-;;;;;;;;;;;;;:::i;17607:87::-;;;;;;;;;;;;;:::i;40382:330::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40382:330:0;;;;;;;;:::i;38845:778::-;;;;;;;;;;;;;;;;-1:-1:-1;38845:778:0;;:::i;21605:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21605:269:0;;;;;;;;:::i;18975:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18975:175:0;;;;;;;;:::i;40830:200::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40830:200:0;-1:-1:-1;;;;;40830:200:0;;:::i;19213:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19213:151:0;;;;;;;;;;:::i;37814:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37814:45:0;-1:-1:-1;;;;;37814:45:0;;:::i;41038:128::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41038:128:0;;:::i;36931:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36931:244:0;-1:-1:-1;;;;;36931:244:0;;:::i;37581:86::-;;;;;;;;;;;;;:::i;37719:20::-;;;;;;;;;;;;;:::i;17405:83::-;17475:5;17468:12;;;;;;;;-1:-1:-1;;17468:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17442:13;;17468:12;;17475:5;;17468:12;;17475:5;17468:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17405:83;;:::o;19511:169::-;19594:4;19611:39;19620:12;:10;:12::i;:::-;19634:7;19643:6;19611:8;:39::i;:::-;-1:-1:-1;19668:4:0;19511:169;;;;;:::o;37676:36::-;;;;:::o;18480:100::-;18560:12;;18480:100;:::o;20154:321::-;20260:4;20277:36;20287:6;20295:9;20306:6;20277:9;:36::i;:::-;20324:121;20333:6;20341:12;:10;:12::i;:::-;20355:89;20393:6;20355:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20355:19:0;;;;;;:11;:19;;;;;;20375:12;:10;:12::i;:::-;-1:-1:-1;;;;;20355:33:0;;;;;;;;;;;;-1:-1:-1;20355:33:0;;;:89;:37;:89::i;:::-;20324:8;:121::i;:::-;-1:-1:-1;20463:4:0;20154:321;;;;;:::o;38180:208::-;38249:5;;38225:7;;-1:-1:-1;;;;;38249:5:0;37624:42;38249:17;38245:78;;;-1:-1:-1;38290:21:0;38283:28;;38245:78;38349:5;;38342:38;;;-1:-1:-1;;;38342:38:0;;38374:4;38342:38;;;;;;-1:-1:-1;;;;;38349:5:0;;;;38342:23;;:38;;;;;;;;;;;;;;;38349:5;38342:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38342:38:0;;-1:-1:-1;38180:208:0;:::o;18332:83::-;18398:9;;;;18332:83;:::o;20884:218::-;20972:4;20989:83;20998:12;:10;:12::i;:::-;21012:7;21021:50;21060:10;21021:11;:25;21033:12;:10;:12::i;:::-;-1:-1:-1;;;;;21021:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21021:25:0;;;:34;;;;;;;;;;;:38;:50::i;37782:23::-;;;-1:-1:-1;;;;;37782:23:0;;:::o;31023:78::-;31086:7;;-1:-1:-1;;;31086:7:0;;;;;31023:78::o;37746:27::-;;;;:::o;18643:119::-;-1:-1:-1;;;;;18736:18:0;;18709:7;18736:18;;;;;;;;;;;18643:119;;;;:::o;36628:148::-;36208:12;:10;:12::i;:::-;36198:6;;;;;-1:-1:-1;;;;;36198:6:0;;;:22;;;36190:67;;;;;-1:-1:-1;;;36190:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;36190:67:0;;;;;;;;;;;;;;;36719:6:::1;::::0;36698:40:::1;::::0;36735:1:::1;::::0;36719:6:::1;::::0;::::1;-1:-1:-1::0;;;;;36719:6:0::1;::::0;36698:40:::1;::::0;36735:1;;36698:40:::1;36749:6;:19:::0;;-1:-1:-1;;;;;;36749:19:0::1;::::0;;36628:148::o;39664:710::-;33934:1;34540:7;;:19;;34532:63;;;;;-1:-1:-1;;;34532:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;33934:1;34673:7;:18;31341:7:::1;::::0;-1:-1:-1;;;31341:7:0;::::1;;;31340:8;31332:37;;;::::0;;-1:-1:-1;;;31332:37:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;31332:37:0;;;;;;;;;;;;;::::1;;39776:6:::2;39749:23;39759:12;:10;:12::i;:::-;39749:9;:23::i;:::-;:33;;:47;;;;;39795:1;39786:6;:10;39749:47;39741:115;;;;-1:-1:-1::0;;;39741:115:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39887:10;39901:1;39877:21:::0;;;:9:::2;:21;::::0;;;;;39869:56:::2;;;::::0;;-1:-1:-1;;;39869:56:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;39869:56:0;;;;;;;;;;;;;::::2;;39954:10;39944:21;::::0;;;:9:::2;:21;::::0;;;;;39968:12:::2;-1:-1:-1::0;39936:65:0::2;;;::::0;;-1:-1:-1;;;39936:65:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;39936:65:0;;;;;;;;;;;;;::::2;;40014:13;40030:45;40061:13;:11;:13::i;:::-;40030:26;40041:14;:12;:14::i;:::-;40030:6:::0;;:10:::2;:26::i;:::-;:30:::0;::::2;:45::i;:::-;40090:5;::::0;40014:61;;-1:-1:-1;;;;;;40090:5:0::2;37624:42;40090:17;40086:158;;40124:47;40151:12;:10;:12::i;:::-;40131:5;::::0;-1:-1:-1;;;;;40131:5:0::2;::::0;40165;40124:26:::2;:47::i;:::-;40086:158;;;40204:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;40204:21:0::2;:28;40226:5;40204:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;40086:158;40256:27;40262:12;:10;:12::i;:::-;40276:6;40256:5;:27::i;:::-;40338:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;40332:34:0::2;;40352:6;40360:5;40332:34;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;33890:1:0;34852:7;:22;39664:710::o;35986:79::-;36051:6;;;;;-1:-1:-1;;;;;36051:6:0;;35986:79::o;17607:87::-;17679:7;17672:14;;;;;;;;-1:-1:-1;;17672:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17646:13;;17672:14;;17679:7;;17672:14;;17679:7;17672:14;;;;;;;;;;;;;;;;;;;;;;;;40382:330;40777:8;;-1:-1:-1;;;;;40777:8:0;40763:10;:22;40755:47;;;;;-1:-1:-1;;;40755:47:0;;;;;;;;;;;;-1:-1:-1;;;40755:47:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40478:17:0;::::1;40470:40;;;::::0;;-1:-1:-1;;;40470:40:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;40470:40:0;;;;;;;;;;;;;::::1;;40525:5;::::0;-1:-1:-1;;;;;40525:5:0::1;37624:42;40525:17;40521:144;;40566:5;::::0;40559:40:::1;::::0;-1:-1:-1;;;;;40566:5:0::1;40586:3:::0;40591:7;40559:26:::1;:40::i;:::-;40521:144;;;40632:21;::::0;-1:-1:-1;;;;;40632:12:0;::::1;::::0;:21;::::1;;;::::0;40645:7;;40632:21:::1;::::0;;;40645:7;40632:12;:21;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;40521:144;40682:22;::::0;;;;;;;-1:-1:-1;;;;;40682:22:0;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;40382:330:::0;;:::o;38845:778::-;33934:1;34540:7;;:19;;34532:63;;;;;-1:-1:-1;;;34532:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;33934:1;34673:7;:18;31341:7:::1;::::0;-1:-1:-1;;;31341:7:0;::::1;;;31340:8;31332:37;;;::::0;;-1:-1:-1;;;31332:37:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;31332:37:0;;;;;;;;;;;;;::::1;;38952:1:::2;38942:7;:11;38934:57;;;;-1:-1:-1::0;;;38934:57:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39021:10;;39010:7;:21;;39002:61;;;::::0;;-1:-1:-1;;;39002:61:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;39086:10;39076:21;::::0;;;:9:::2;:21;::::0;;;;39100:12:::2;39076:36:::0;;39129:5:::2;::::0;-1:-1:-1;;;;;39129:5:0::2;37624:42;39129:17;39125:313;;39171:9;:14:::0;39163:75:::2;;;;-1:-1:-1::0;;;39163:75:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39253:68;39284:12;:10;:12::i;:::-;39260:5;::::0;-1:-1:-1;;;;;39260:5:0::2;::::0;39306:4:::2;39313:7:::0;39253:30:::2;:68::i;:::-;39125:313;;;39373:9;39362:7;:20;39354:72;;;;-1:-1:-1::0;;;39354:72:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39450:13;39466:28;39486:7;39466:19;:28::i;:::-;39450:44;;39505:26;39511:12;:10;:12::i;:::-;39525:5;39505;:26::i;:::-;39586:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;39580:35:0::2;;39600:7;39609:5;39580:35;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;33890:1:0;34852:7;:22;38845:778::o;21605:269::-;21698:4;21715:129;21724:12;:10;:12::i;:::-;21738:7;21747:96;21786:15;21747:96;;;;;;;;;;;;;;;;;:11;:25;21759:12;:10;:12::i;:::-;-1:-1:-1;;;;;21747:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21747:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;18975:175::-;19061:4;19078:42;19088:12;:10;:12::i;:::-;19102:9;19113:6;19078:9;:42::i;40830:200::-;36208:12;:10;:12::i;:::-;36198:6;;;;;-1:-1:-1;;;;;36198:6:0;;;:22;;;36190:67;;;;;-1:-1:-1;;;36190:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;36190:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40908:23:0;::::1;40900:52;;;::::0;;-1:-1:-1;;;40900:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;40900:52:0;;;;;;;;;;;;;::::1;;40963:8;:20:::0;;-1:-1:-1;;;;;;40963:20:0::1;-1:-1:-1::0;;;;;40963:20:0;::::1;::::0;;::::1;::::0;;;40999:23:::1;::::0;::::1;::::0;-1:-1:-1;;40999:23:0::1;40830:200:::0;:::o;19213:151::-;-1:-1:-1;;;;;19329:18:0;;;19302:7;19329:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19213:151::o;37814:45::-;;;;;;;;;;;;;:::o;41038:128::-;36208:12;:10;:12::i;:::-;36198:6;;;;;-1:-1:-1;;;;;36198:6:0;;;:22;;;36190:67;;;;;-1:-1:-1;;;36190:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;36190:67:0;;;;;;;;;;;;;;;41105:10:::1;:17:::0;;;41138:20:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;41038:128:::0;:::o;36931:244::-;36208:12;:10;:12::i;:::-;36198:6;;;;;-1:-1:-1;;;;;36198:6:0;;;:22;;;36190:67;;;;;-1:-1:-1;;;36190:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;36190:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;37020:22:0;::::1;37012:73;;;;-1:-1:-1::0;;;37012:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37122:6;::::0;37101:38:::1;::::0;-1:-1:-1;;;;;37101:38:0;;::::1;::::0;37122:6:::1;::::0;::::1;;::::0;37101:38:::1;::::0;;;::::1;37150:6;:17:::0;;-1:-1:-1;;;;;37150:17:0;;::::1;;;-1:-1:-1::0;;;;;;37150:17:0;;::::1;::::0;;;::::1;::::0;;36931:244::o;37581:86::-;37624:42;37581:86;:::o;37719:20::-;;;-1:-1:-1;;;;;37719:20:0;;:::o;626:106::-;714:10;626:106;:::o;24750:346::-;-1:-1:-1;;;;;24852:19:0;;24844:68;;;;-1:-1:-1;;;24844:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24931:21:0;;24923:68;;;;-1:-1:-1;;;24923:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25004:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25056:32;;;;;;;;;;;;;;;;;24750:346;;;:::o;22364:539::-;-1:-1:-1;;;;;22470:20:0;;22462:70;;;;-1:-1:-1;;;22462:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22551:23:0;;22543:71;;;;-1:-1:-1;;;22543:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22627:47;22648:6;22656:9;22667:6;22627:20;:47::i;:::-;22707:71;22729:6;22707:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22707:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;22687:17:0;;;:9;:17;;;;;;;;;;;:91;;;;22812:20;;;;;;;:32;;22837:6;22812:24;:32::i;:::-;-1:-1:-1;;;;;22789:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;22860:35;;;;;;;22789:20;;22860:35;;;;;;;;;;;;;22364:539;;;:::o;5611:192::-;5697:7;5733:12;5725:6;;;;5717:29;;;;-1:-1:-1;;;5717:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5769:5:0;;;5611:192::o;4708:181::-;4766:7;4798:5;;;4822:6;;;;4814:46;;;;;-1:-1:-1;;;4814:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4880:1;4708:181;-1:-1:-1;;;4708:181:0:o;6062:471::-;6120:7;6365:6;6361:47;;-1:-1:-1;6395:1:0;6388:8;;6361:47;6432:5;;;6436:1;6432;:5;:1;6456:5;;;;;:10;6448:56;;;;-1:-1:-1;;;6448:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7009:132;7067:7;7094:39;7098:1;7101;7094:39;;;;;;;;;;;;;;;;;:3;:39::i;26878:177::-;26988:58;;;-1:-1:-1;;;;;26988:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26988:58:0;-1:-1:-1;;;26988:58:0;;;26961:86;;26981:5;;26961:19;:86::i;:::-;26878:177;;;:::o;23894:418::-;-1:-1:-1;;;;;23978:21:0;;23970:67;;;;-1:-1:-1;;;23970:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24050:49;24071:7;24088:1;24092:6;24050:20;:49::i;:::-;24133:68;24156:6;24133:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24133:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;24112:18:0;;:9;:18;;;;;;;;;;:89;24227:12;;:24;;24244:6;24227:16;:24::i;:::-;24212:12;:39;24267:37;;;;;;;;24293:1;;-1:-1:-1;;;;;24267:37:0;;;;;;;;;;;;23894:418;;:::o;27063:205::-;27191:68;;;-1:-1:-1;;;;;27191:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27191:68:0;-1:-1:-1;;;27191:68:0;;;27164:96;;27184:5;;27164:19;:96::i;:::-;27063:205;;;;:::o;38396:395::-;38472:7;38496:13;:11;:13::i;:::-;38492:149;;38589:12;;38531:13;;38547:55;;38585:2;:16;38547:33;:14;38574:4;38547:18;:33::i;:55::-;38531:71;-1:-1:-1;38617:12:0;;-1:-1:-1;38617:12:0;38492:149;38653:22;38678:34;38697:14;38678;:12;:14::i;:::-;:18;;:34::i;:::-;38653:59;;38730:53;38768:14;38730:33;38749:13;:11;:13::i;:::-;38730:14;;:18;:33::i;23184:378::-;-1:-1:-1;;;;;23268:21:0;;23260:65;;;;;-1:-1:-1;;;23260:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23338:49;23367:1;23371:7;23380:6;23338:20;:49::i;:::-;23415:12;;:24;;23432:6;23415:16;:24::i;:::-;23400:12;:39;-1:-1:-1;;;;;23471:18:0;;:9;:18;;;;;;;;;;;:30;;23494:6;23471:22;:30::i;:::-;-1:-1:-1;;;;;23450:18:0;;:9;:18;;;;;;;;;;;:51;;;;23517:37;;;;;;;23450:18;;:9;;23517:37;;;;;;;;;;23184:378;;:::o;7637:278::-;7723:7;7758:12;7751:5;7743:28;;;;-1:-1:-1;;;7743:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7782:9;7798:1;7794;:5;;;;;;;7637:278;-1:-1:-1;;;;;7637:278:0:o;29183:761::-;29607:23;29633:69;29661:4;29633:69;;;;;;;;;;;;;;;;;29641:5;-1:-1:-1;;;;;29633:27:0;;;:69;;;;;:::i;:::-;29717:17;;29607:95;;-1:-1:-1;29717:21:0;29713:224;;29859:10;29848:30;;;;;;;;;;;;;;;-1:-1:-1;29848:30:0;29840:85;;;;-1:-1:-1;;;29840:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5172:136;5230:7;5257:43;5261:1;5264;5257:43;;;;;;;;;;;;;;;;;:3;:43::i;12852:196::-;12955:12;12987:53;13010:6;13018:4;13024:1;13027:12;12987:22;:53::i;:::-;12980:60;12852:196;-1:-1:-1;;;;12852:196:0:o;14229:979::-;14359:12;14392:18;14403:6;14392:10;:18::i;:::-;14384:60;;;;;-1:-1:-1;;;14384:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14518:12;14532:23;14559:6;-1:-1:-1;;;;;14559:11:0;14579:8;14590:4;14559:36;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;14559:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14517:78;;;;14610:7;14606:595;;;14641:10;-1:-1:-1;14634:17:0;;-1:-1:-1;14634:17:0;14606:595;14755:17;;:21;14751:439;;15018:10;15012:17;15079:15;15066:10;15062:2;15058:19;15051:44;14966:148;15154:20;;-1:-1:-1;;;15154:20:0;;;;;;;;;;;;;;;;;15161:12;;15154:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9934:422;10301:20;10340:8;;;9934:422::o

Swarm Source

ipfs://0a928c406f4284c250cb17d1406cdfe998cb2267187c92f23a4ec545ddd89a5d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.