ETH Price: $3,385.46 (-1.51%)
Gas: 2 Gwei

Token

Wrapped NXM (wNXM)
 

Overview

Max Total Supply

940,607.567433519810270027 wNXM

Holders

4,436 ( -0.023%)

Market

Price

$73.34 @ 0.021663 ETH (-2.42%)

Onchain Market Cap

$68,984,159.00

Circulating Supply Market Cap

$68,900,734.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
SCI Finance: SCIFI Token
Balance
0.000000000001552698 wNXM

Value
$0.00 ( ~0 Eth) [0.0000%]
0xfDC4a3FC36df16a78edCAf1B837d3ACAaeDB2CB4
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Blockchain based solutions for smart contract cover.

Market

Volume (24H):$663,357.00
Market Capitalization:$68,900,734.00
Circulating Supply:940,608.00 wNXM
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
wNXM

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-07-02
*/

/**
 *                                                                        .o8
                                                                         "888
oooo oooo    ooo oooo d8b  .oooo.   oo.ooooo.  oo.ooooo.   .ooooo.   .oooo888
 `88. `88.  .8'  `888""8P `P  )88b   888' `88b  888' `88b d88' `88b d88' `888
  `88..]88..8'    888      .oP"888   888   888  888   888 888ooo888 888   888
   `888'`888'     888     d8(  888   888   888  888   888 888    .o 888   888
    `8'  `8'     d888b    `Y888""8o  888bod8P'  888bod8P' `Y8bod8P' `Y8bod88P"
                                     888        888
                                    o888o      o888o

ooooo      ooo ooooooo  ooooo ooo        ooooo
`888b.     `8'  `8888    d8'  `88.       .888'
 8 `88b.    8     Y888..8P     888b     d'888
 8   `88b.  8      `8888'      8 Y88. .P  888
 8     `88b.8     .8PY888.     8  `888'   888
 8       `888    d8'  `888b    8    Y     888
o8o        `8  o888o  o88888o o8o        o888o
*/
// Made by https://peppersec.com

pragma solidity 0.5.17;

/*
 * @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.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view 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.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
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.5.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.
     *
     * _Available since v2.4.0._
     */
    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.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        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.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

pragma solidity ^0.5.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 {ERC20Mintable}.
 *
 * 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;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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 returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public 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 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 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 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 {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _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 {
        require(account != address(0), "ERC20: mint to the zero address");

        _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 {
        require(account != address(0), "ERC20: burn from the zero address");

        _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 is 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 {
        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 Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}

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

pragma solidity ^0.5.0;


/**
 * @dev Optional functions from the ERC20 standard.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

    /**
     * @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.
     *
     * 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;
    }
}

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

pragma solidity ^0.5.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow, so we distribute
        return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
    }
}

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

pragma solidity ^0.5.5;

/**
 * @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) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Converts an `address` into `address payable`. Note that this is
     * simply a type cast: the actual underlying value is not changed.
     *
     * _Available since v2.4.0._
     */
    function toPayable(address account) internal pure returns (address payable) {
        return address(uint160(account));
    }

    /**
     * @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].
     *
     * _Available since v2.4.0._
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

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

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

pragma solidity ^0.5.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 ERC20;` 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));
    }

    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.

        // A Solidity high level call has three parts:
        //  1. The target address is checked to verify it contains contract code
        //  2. The call itself is made, and success asserted
        //  3. The return value is decoded, which in turn checks the size of the returned data.
        // solhint-disable-next-line max-line-length
        require(address(token).isContract(), "SafeERC20: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = address(token).call(data);
        require(success, "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: contracts/INXM.sol

pragma solidity 0.5.17;


contract INXM is IERC20 {
    function whiteListed(address owner) external view returns (bool);
    function isLockedForMV(address owner) external view returns (uint256);
}

// File: contracts/ECDSA.sol

pragma solidity ^0.5.0;

// A copy from https://github.com/OpenZeppelin/openzeppelin-contracts/pull/2237/files

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        // Check the signature length
        if (signature.length != 65) {
            revert("ECDSA: invalid signature length");
        }

        // Divide the signature in r, s and v variables
        bytes32 r;
        bytes32 s;
        uint8 v;

        // ecrecover takes the signature parameters, and the only way to get them
        // currently is to use assembly.
        // solhint-disable-next-line no-inline-assembly
        assembly {
            r := mload(add(signature, 0x20))
            s := mload(add(signature, 0x40))
            v := byte(0, mload(add(signature, 0x60)))
        }

        return recover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover-bytes32-bytes-} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            revert("ECDSA: invalid signature 's' value");
        }

        if (v != 27 && v != 28) {
            revert("ECDSA: invalid signature 'v' value");
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        require(signer != address(0), "ECDSA: invalid signature");

        return signer;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * replicates the behavior of the
     * https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_sign[`eth_sign`]
     * JSON-RPC method.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }
}

// File: contracts/ERC20Permit.sol

pragma solidity ^0.5.0;

// Adapted copy from https://github.com/OpenZeppelin/openzeppelin-contracts/pull/2237/files





/**
 * @dev Extension of {ERC20} that allows token holders to use their tokens
 * without sending any transactions by setting {IERC20-allowance} with a
 * signature using the {permit} method, and then spend them via
 * {IERC20-transferFrom}.
 *
 * The {permit} signature mechanism conforms to the {IERC2612Permit} interface.
 */
contract ERC20Permit is ERC20, ERC20Detailed {
    mapping(address => uint256) private _nonces;

    bytes32 private constant _PERMIT_TYPEHASH = keccak256(
        "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"
    );

    // Mapping of ChainID to domain separators. This is a very gas efficient way
    // to not recalculate the domain separator on every call, while still
    // automatically detecting ChainID changes.
    mapping(uint256 => bytes32) private _domainSeparators;

    constructor() internal {
        _updateDomainSeparator();
    }

    /**
     * @dev See {IERC2612Permit-permit}.
     *
     * If https://eips.ethereum.org/EIPS/eip-1344[ChainID] ever changes, the
     * EIP712 Domain Separator is automatically recalculated.
     */
    function permit(
        address owner,
        address spender,
        uint256 amount,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public {
        require(blockTimestamp() <= deadline, "ERC20Permit: expired deadline");

        bytes32 hashStruct = keccak256(
            abi.encode(_PERMIT_TYPEHASH, owner, spender, amount, _nonces[owner], deadline)
        );

        bytes32 hash = keccak256(abi.encodePacked(uint16(0x1901), _domainSeparator(), hashStruct));

        address signer = ECDSA.recover(hash, v, r, s);
        require(signer == owner, "ERC20Permit: invalid signature");

        _nonces[owner]++;
        _approve(owner, spender, amount);
    }

    /**
     * @dev See {IERC2612Permit-nonces}.
     */
    function nonces(address owner) public view returns (uint256) {
        return _nonces[owner];
    }

    function _updateDomainSeparator() private returns (bytes32) {
        uint256 _chainID = chainID();

        bytes32 newDomainSeparator = keccak256(
            abi.encode(
                keccak256(
                    "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
                ),
                keccak256(bytes(name())),
                keccak256(bytes("1")), // Version
                _chainID,
                address(this)
            )
        );

        _domainSeparators[_chainID] = newDomainSeparator;

        return newDomainSeparator;
    }

    // Returns the domain separator, updating it if chainID changes
    function _domainSeparator() private returns (bytes32) {
        bytes32 domainSeparator = _domainSeparators[chainID()];
        if (domainSeparator != 0x00) {
            return domainSeparator;
        } else {
            return _updateDomainSeparator();
        }
    }

    function chainID() public view returns (uint256 _chainID) {
        assembly {
            _chainID := chainid()
        }
    }

    function blockTimestamp() public view returns (uint256) {
        return block.timestamp;
    }
}

// File: contracts/wNXM.sol

pragma solidity 0.5.17;

contract wNXM is ERC20, ERC20Detailed, ERC20Permit {
    using SafeERC20 for ERC20;
    using SafeMath for uint256;

    INXM public NXM;

    modifier notwNXM(address recipient) {
        require(recipient != address(this), "wNXM: can not send to self");
        _;
    }

    constructor(INXM _nxm) public ERC20Detailed("Wrapped NXM", "wNXM", 18) {
        NXM = _nxm;
    }

    function _transfer(address sender, address recipient, uint256 amount)
        internal
        notwNXM(recipient)
    {
        super._transfer(sender, recipient, amount);
    }

    function wrap(uint256 _amount) external {
        require(NXM.transferFrom(msg.sender, address(this), _amount), "wNXM: transferFrom failed");
        _mint(msg.sender, _amount);
    }

    function unwrap(uint256 _amount) external {
        unwrapTo(msg.sender, _amount);
    }

    function unwrapTo(address _to, uint256 _amount) public notwNXM(_to) {
        _burn(msg.sender, _amount);
        require(NXM.transfer(_to, _amount), "wNXM: transfer failed");
    }

    function canWrap(address _owner, uint256 _amount)
        external
        view
        returns (bool success, string memory reason)
    {
        if (NXM.allowance(_owner, address(this)) < _amount) {
            return (false, "insufficient allowance");
        }

        if (NXM.balanceOf(_owner) < _amount) {
            return (false, "insufficient NXM balance");
        }

        if (NXM.isLockedForMV(_owner) > now) {
            return (false, "NXM balance lockedForMv");
        }

        if (!NXM.whiteListed(address(this))) {
            return (false, "wNXM is not whitelisted");
        }

        return (true, "");
    }

    function canUnwrap(address _owner, address _recipient, uint256 _amount)
        external
        view
        returns (bool success, string memory reason)
    {
        if (balanceOf(_owner) < _amount) {
            return (false, "insufficient wNXM balance");
        }

        if (!NXM.whiteListed(_recipient)) {
            return (false, "recipient is not whitelisted");
        }

        if (NXM.isLockedForMV(address(this)) > now) {
            return (false, "wNXM is lockedForMv");
        }

        return (true, "");
    }

    /// @dev Method to claim junk and accidentally sent tokens
    function claimTokens(ERC20 _token, address payable _to, uint256 _balance) external {
        require(_to != address(0), "wNXM: can not send to zero address");

        if (_token == ERC20(address(NXM))) {
            uint256 surplusBalance = _token.balanceOf(address(this)).sub(totalSupply());
            require(surplusBalance > 0, "wNXM: there is no accidentally sent NXM");
            uint256 balance = _balance == 0 ? surplusBalance : Math.min(surplusBalance, _balance);
            _token.safeTransfer(_to, balance);
        } else if (_token == ERC20(0)) {
            // for Ether
            uint256 totalBalance = address(this).balance;
            uint256 balance = _balance == 0 ? totalBalance : Math.min(totalBalance, _balance);
            _to.transfer(balance);
        } else {
            // any other erc20
            uint256 totalBalance = _token.balanceOf(address(this));
            uint256 balance = _balance == 0 ? totalBalance : Math.min(totalBalance, _balance);
            require(balance > 0, "wNXM: trying to send 0 balance");
            _token.safeTransfer(_to, balance);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract INXM","name":"_nxm","type":"address"}],"payable":false,"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[],"name":"NXM","outputs":[{"internalType":"contract INXM","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"blockTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"canUnwrap","outputs":[{"internalType":"bool","name":"success","type":"bool"},{"internalType":"string","name":"reason","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"canWrap","outputs":[{"internalType":"bool","name":"success","type":"bool"},{"internalType":"string","name":"reason","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"chainID","outputs":[{"internalType":"uint256","name":"_chainID","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"contract ERC20","name":"_token","type":"address"},{"internalType":"address payable","name":"_to","type":"address"},{"internalType":"uint256","name":"_balance","type":"uint256"}],"name":"claimTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"unwrap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"unwrapTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"wrap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200253c3803806200253c833981810160405260208110156200003757600080fd5b5051604080518082018252600b81526a57726170706564204e584d60a81b602082810191825283518085019094526004845263774e584d60e01b9084015281519192916012916200008c916003919062000266565b508151620000a290600490602085019062000266565b506005805460ff191660ff9290921691909117905550620000c49050620000eb565b50600880546001600160a01b0319166001600160a01b039290921691909117905562000308565b600080620001016001600160e01b03620001c816565b905060006040518080620024ea605291396040519081900360520190209050620001336001600160e01b03620001cc16565b805160209182012060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66060840152608083018590523060a0808501919091528151808503909101815260c090930181528251928201929092206000948552600790915292208290555090505b90565b4690565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156200025c5780601f1062000230576101008083540402835291602001916200025c565b820191906000526020600020905b8154815290600101906020018083116200023e57829003601f168201915b5050505050905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002a957805160ff1916838001178555620002d9565b82800160010185558215620002d9579182015b82811115620002d9578251825591602001919060010190620002bc565b50620002e7929150620002eb565b5090565b620001c591905b80821115620002e75760008155600101620002f2565b6121d280620003186000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80639fc314c8116100b8578063c12ea3ca1161007c578063c12ea3ca14610477578063caeadc07146104a3578063d505accf146104c7578063dd62ed3e14610518578063de0e9a3e14610546578063ea598cb01461056357610142565b80639fc314c8146103d7578063a457c2d71461040f578063a9059cbb1461043b578063adb6183214610467578063adc879e91461046f57610142565b8063395093511161010a578063395093511461027257806347d8a0591461029e5780635bd481191461034d57806370a08231146103835780637ecebe00146103a957806395d89b41146103cf57610142565b806306fdde0314610147578063095ea7b3146101c457806318160ddd1461020457806323b872dd1461021e578063313ce56714610254575b600080fd5b61014f610580565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610189578181015183820152602001610171565b50505050905090810190601f1680156101b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f0600480360360408110156101da57600080fd5b506001600160a01b038135169060200135610617565b604080519115158252519081900360200190f35b61020c610634565b60408051918252519081900360200190f35b6101f06004803603606081101561023457600080fd5b506001600160a01b0381358116916020810135909116906040013561063a565b61025c6106c7565b6040805160ff9092168252519081900360200190f35b6101f06004803603604081101561028857600080fd5b506001600160a01b0381351690602001356106d0565b6102ca600480360360408110156102b457600080fd5b506001600160a01b038135169060200135610724565b604051808315151515815260200180602001828103825283818151815260200191508051906020019080838360005b838110156103115781810151838201526020016102f9565b50505050905090810190601f16801561033e5780820380516001836020036101000a031916815260200191505b50935050505060405180910390f35b6102ca6004803603606081101561036357600080fd5b506001600160a01b03813581169160208101359091169060400135610a3c565b61020c6004803603602081101561039957600080fd5b50356001600160a01b0316610c16565b61020c600480360360208110156103bf57600080fd5b50356001600160a01b0316610c31565b61014f610c4c565b61040d600480360360608110156103ed57600080fd5b506001600160a01b03813581169160208101359091169060400135610cad565b005b6101f06004803603604081101561042557600080fd5b506001600160a01b038135169060200135610f83565b6101f06004803603604081101561045157600080fd5b506001600160a01b038135169060200135610ff1565b61020c611005565b61020c611009565b61040d6004803603604081101561048d57600080fd5b506001600160a01b03813516906020013561100d565b6104ab611141565b604080516001600160a01b039092168252519081900360200190f35b61040d600480360360e08110156104dd57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611150565b61020c6004803603604081101561052e57600080fd5b506001600160a01b0381358116916020013516611326565b61040d6004803603602081101561055c57600080fd5b5035611351565b61040d6004803603602081101561057957600080fd5b503561135e565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561060c5780601f106105e15761010080835404028352916020019161060c565b820191906000526020600020905b8154815290600101906020018083116105ef57829003601f168201915b505050505090505b90565b600061062b61062461143f565b8484611443565b50600192915050565b60025490565b600061064784848461152f565b6106bd8461065361143f565b6106b885604051806060016040528060288152602001612074602891396001600160a01b038a1660009081526001602052604081209061069161143f565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61159f16565b611443565b5060019392505050565b60055460ff1690565b600061062b6106dd61143f565b846106b885600160006106ee61143f565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61163616565b60085460408051636eb1769f60e11b81526001600160a01b0385811660048301523060248301529151600093606093869391169163dd62ed3e91604480820192602092909190829003018186803b15801561077e57600080fd5b505afa158015610792573d6000803e3d6000fd5b505050506040513d60208110156107a857600080fd5b505110156107e7575050604080518082019091526016815275696e73756666696369656e7420616c6c6f77616e636560501b6020820152600090610a35565b600854604080516370a0823160e01b81526001600160a01b0387811660048301529151869392909216916370a0823191602480820192602092909190829003018186803b15801561083757600080fd5b505afa15801561084b573d6000803e3d6000fd5b505050506040513d602081101561086157600080fd5b505110156108a757505060408051808201909152601881527f696e73756666696369656e74204e584d2062616c616e636500000000000000006020820152600090610a35565b600854604080516398fd371f60e01b81526001600160a01b0387811660048301529151429392909216916398fd371f91602480820192602092909190829003018186803b1580156108f757600080fd5b505afa15801561090b573d6000803e3d6000fd5b505050506040513d602081101561092157600080fd5b5051111561096757505060408051808201909152601781527f4e584d2062616c616e6365206c6f636b6564466f724d760000000000000000006020820152600090610a35565b60085460408051633e83f2a160e21b815230600482015290516001600160a01b039092169163fa0fca8491602480820192602092909190829003018186803b1580156109b257600080fd5b505afa1580156109c6573d6000803e3d6000fd5b505050506040513d60208110156109dc57600080fd5b5051610a2057505060408051808201909152601781527f774e584d206973206e6f742077686974656c69737465640000000000000000006020820152600090610a35565b50506040805160208101909152600081526001905b9250929050565b6000606082610a4a86610c16565b1015610a8e57505060408051808201909152601981527f696e73756666696369656e7420774e584d2062616c616e6365000000000000006020820152600090610c0e565b60085460408051633e83f2a160e21b81526001600160a01b0387811660048301529151919092169163fa0fca84916024808301926020929190829003018186803b158015610adb57600080fd5b505afa158015610aef573d6000803e3d6000fd5b505050506040513d6020811015610b0557600080fd5b5051610b4957505060408051808201909152601c81527f726563697069656e74206973206e6f742077686974656c6973746564000000006020820152600090610c0e565b600854604080516398fd371f60e01b8152306004820152905142926001600160a01b0316916398fd371f916024808301926020929190829003018186803b158015610b9357600080fd5b505afa158015610ba7573d6000803e3d6000fd5b505050506040513d6020811015610bbd57600080fd5b50511115610bf95750506040805180820190915260138152723ba72c269034b9903637b1b5b2b22337b926bb60691b6020820152600090610c0e565b50506040805160208101909152600081526001905b935093915050565b6001600160a01b031660009081526020819052604090205490565b6001600160a01b031660009081526006602052604090205490565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561060c5780601f106105e15761010080835404028352916020019161060c565b6001600160a01b038216610cf25760405162461bcd60e51b81526004018080602001828103825260228152602001806121096022913960400191505060405180910390fd5b6008546001600160a01b0384811691161415610e10576000610d93610d15610634565b604080516370a0823160e01b815230600482015290516001600160a01b038816916370a08231916024808301926020929190829003018186803b158015610d5b57600080fd5b505afa158015610d6f573d6000803e3d6000fd5b505050506040513d6020811015610d8557600080fd5b50519063ffffffff61169716565b905060008111610dd45760405162461bcd60e51b815260040180806020018281038252602781526020018061209c6027913960400191505060405180910390fd5b60008215610deb57610de682846116d9565b610ded565b815b9050610e096001600160a01b038616858363ffffffff6116ef16565b5050610f7e565b6001600160a01b038316610e79574760008215610e3657610e3182846116d9565b610e38565b815b6040519091506001600160a01b0385169082156108fc029083906000818181858888f19350505050158015610e71573d6000803e3d6000fd5b505050610f7e565b604080516370a0823160e01b815230600482015290516000916001600160a01b038616916370a0823191602480820192602092909190829003018186803b158015610ec357600080fd5b505afa158015610ed7573d6000803e3d6000fd5b505050506040513d6020811015610eed57600080fd5b5051905060008215610f0857610f0382846116d9565b610f0a565b815b905060008111610f61576040805162461bcd60e51b815260206004820152601e60248201527f774e584d3a20747279696e6720746f2073656e6420302062616c616e63650000604482015290519081900360640190fd5b610f7b6001600160a01b038616858363ffffffff6116ef16565b50505b505050565b600061062b610f9061143f565b846106b8856040518060600160405280602581526020016121796025913960016000610fba61143f565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61159f16565b600061062b610ffe61143f565b848461152f565b4290565b4690565b816001600160a01b03811630141561106c576040805162461bcd60e51b815260206004820152601a60248201527f774e584d3a2063616e206e6f742073656e6420746f2073656c66000000000000604482015290519081900360640190fd5b6110763383611741565b6008546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018690529151919092169163a9059cbb9160448083019260209291908290030181600087803b1580156110cc57600080fd5b505af11580156110e0573d6000803e3d6000fd5b505050506040513d60208110156110f657600080fd5b5051610f7e576040805162461bcd60e51b81526020600482015260156024820152741dd396134e881d1c985b9cd9995c8819985a5b1959605a1b604482015290519081900360640190fd5b6008546001600160a01b031681565b83611159611005565b11156111ac576040805162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015290519081900360640190fd5b60006040518080611fae60529139604080519182900360520182206001600160a01b03808d16600081815260066020908152858220548188019590955286860192909252918d166060860152608085018c905260a085019290925260c08085018b90528351808603909101815260e090940190925282519201919091209250905061190161123861183d565b83604051602001808461ffff1661ffff1660f01b8152600201838152602001828152602001935050505060405160208183030381529060405280519060200120905060006112888287878761187c565b9050896001600160a01b0316816001600160a01b0316146112f0576040805162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015290519081900360640190fd5b6001600160a01b038a1660009081526006602052604090208054600101905561131a8a8a8a611443565b50505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61135b338261100d565b50565b600854604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b1580156113b857600080fd5b505af11580156113cc573d6000803e3d6000fd5b505050506040513d60208110156113e257600080fd5b5051611435576040805162461bcd60e51b815260206004820152601960248201527f774e584d3a207472616e7366657246726f6d206661696c656400000000000000604482015290519081900360640190fd5b61135b33826119fa565b3390565b6001600160a01b0383166114885760405162461bcd60e51b815260040180806020018281038252602481526020018061212b6024913960400191505060405180910390fd5b6001600160a01b0382166114cd5760405162461bcd60e51b8152600401808060200182810382526022815260200180611f446022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b816001600160a01b03811630141561158e576040805162461bcd60e51b815260206004820152601a60248201527f774e584d3a2063616e206e6f742073656e6420746f2073656c66000000000000604482015290519081900360640190fd5b611599848484611aea565b50505050565b6000818484111561162e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156115f35781810151838201526020016115db565b50505050905090810190601f1680156116205780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611690576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600061169083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061159f565b60008183106116e85781611690565b5090919050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610f7e908490611c46565b6001600160a01b0382166117865760405162461bcd60e51b81526004018080602001828103825260218152602001806120c36021913960400191505060405180910390fd5b6117c981604051806060016040528060228152602001611f22602291396001600160a01b038516600090815260208190526040902054919063ffffffff61159f16565b6001600160a01b0383166000908152602081905260409020556002546117f5908263ffffffff61169716565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000806007600061184c611009565b81526020810191909152604001600020549050801561186c579050610614565b611874611dfe565b915050610614565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156118dd5760405162461bcd60e51b8152600401808060200182810382526022815260200180611f8c6022913960400191505060405180910390fd5b8360ff16601b141580156118f557508360ff16601c14155b156119315760405162461bcd60e51b81526004018080602001828103825260228152602001806120006022913960400191505060405180910390fd5b604080516000808252602080830180855289905260ff88168385015260608301879052608083018690529251909260019260a080820193601f1981019281900390910190855afa158015611989573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166119f1576040805162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015290519081900360640190fd5b95945050505050565b6001600160a01b038216611a55576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254611a68908263ffffffff61163616565b6002556001600160a01b038216600090815260208190526040902054611a94908263ffffffff61163616565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038316611b2f5760405162461bcd60e51b81526004018080602001828103825260258152602001806120e46025913960400191505060405180910390fd5b6001600160a01b038216611b745760405162461bcd60e51b8152600401808060200182810382526023815260200180611eff6023913960400191505060405180910390fd5b611bb781604051806060016040528060268152602001611f66602691396001600160a01b038616600090815260208190526040902054919063ffffffff61159f16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611bec908263ffffffff61163616565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b611c58826001600160a01b0316611ec2565b611ca9576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310611ce75780518252601f199092019160209182019101611cc8565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611d49576040519150601f19603f3d011682016040523d82523d6000602084013e611d4e565b606091505b509150915081611da5576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b80511561159957808060200190516020811015611dc157600080fd5b50516115995760405162461bcd60e51b815260040180806020018281038252602a81526020018061214f602a913960400191505060405180910390fd5b600080611e09611009565b9050600060405180806120226052913960520190506040518091039020611e2e610580565b805160209182012060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66060840152608083018590523060a0808501919091528151808503909101815260c0909301815282519282019290922060009485526007909152922082905550905090565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611ef657508115155b94935050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545434453413a20696e76616c6964207369676e6174757265202773272076616c75655065726d69742861646472657373206f776e65722c61646472657373207370656e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63652c75696e7432353620646561646c696e652945434453413a20696e76616c6964207369676e6174757265202776272076616c7565454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e74726163742945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365774e584d3a207468657265206973206e6f206163636964656e74616c6c792073656e74204e584d45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373774e584d3a2063616e206e6f742073656e6420746f207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158202b40a804d878b37534645a522456aa40eeee8f592195296103ebb27d8ea5312b64736f6c63430005110032454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429000000000000000000000000d7c49cee7e9188cca6ad8ff264c1da2e69d4cf3b

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80639fc314c8116100b8578063c12ea3ca1161007c578063c12ea3ca14610477578063caeadc07146104a3578063d505accf146104c7578063dd62ed3e14610518578063de0e9a3e14610546578063ea598cb01461056357610142565b80639fc314c8146103d7578063a457c2d71461040f578063a9059cbb1461043b578063adb6183214610467578063adc879e91461046f57610142565b8063395093511161010a578063395093511461027257806347d8a0591461029e5780635bd481191461034d57806370a08231146103835780637ecebe00146103a957806395d89b41146103cf57610142565b806306fdde0314610147578063095ea7b3146101c457806318160ddd1461020457806323b872dd1461021e578063313ce56714610254575b600080fd5b61014f610580565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610189578181015183820152602001610171565b50505050905090810190601f1680156101b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f0600480360360408110156101da57600080fd5b506001600160a01b038135169060200135610617565b604080519115158252519081900360200190f35b61020c610634565b60408051918252519081900360200190f35b6101f06004803603606081101561023457600080fd5b506001600160a01b0381358116916020810135909116906040013561063a565b61025c6106c7565b6040805160ff9092168252519081900360200190f35b6101f06004803603604081101561028857600080fd5b506001600160a01b0381351690602001356106d0565b6102ca600480360360408110156102b457600080fd5b506001600160a01b038135169060200135610724565b604051808315151515815260200180602001828103825283818151815260200191508051906020019080838360005b838110156103115781810151838201526020016102f9565b50505050905090810190601f16801561033e5780820380516001836020036101000a031916815260200191505b50935050505060405180910390f35b6102ca6004803603606081101561036357600080fd5b506001600160a01b03813581169160208101359091169060400135610a3c565b61020c6004803603602081101561039957600080fd5b50356001600160a01b0316610c16565b61020c600480360360208110156103bf57600080fd5b50356001600160a01b0316610c31565b61014f610c4c565b61040d600480360360608110156103ed57600080fd5b506001600160a01b03813581169160208101359091169060400135610cad565b005b6101f06004803603604081101561042557600080fd5b506001600160a01b038135169060200135610f83565b6101f06004803603604081101561045157600080fd5b506001600160a01b038135169060200135610ff1565b61020c611005565b61020c611009565b61040d6004803603604081101561048d57600080fd5b506001600160a01b03813516906020013561100d565b6104ab611141565b604080516001600160a01b039092168252519081900360200190f35b61040d600480360360e08110156104dd57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611150565b61020c6004803603604081101561052e57600080fd5b506001600160a01b0381358116916020013516611326565b61040d6004803603602081101561055c57600080fd5b5035611351565b61040d6004803603602081101561057957600080fd5b503561135e565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561060c5780601f106105e15761010080835404028352916020019161060c565b820191906000526020600020905b8154815290600101906020018083116105ef57829003601f168201915b505050505090505b90565b600061062b61062461143f565b8484611443565b50600192915050565b60025490565b600061064784848461152f565b6106bd8461065361143f565b6106b885604051806060016040528060288152602001612074602891396001600160a01b038a1660009081526001602052604081209061069161143f565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61159f16565b611443565b5060019392505050565b60055460ff1690565b600061062b6106dd61143f565b846106b885600160006106ee61143f565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61163616565b60085460408051636eb1769f60e11b81526001600160a01b0385811660048301523060248301529151600093606093869391169163dd62ed3e91604480820192602092909190829003018186803b15801561077e57600080fd5b505afa158015610792573d6000803e3d6000fd5b505050506040513d60208110156107a857600080fd5b505110156107e7575050604080518082019091526016815275696e73756666696369656e7420616c6c6f77616e636560501b6020820152600090610a35565b600854604080516370a0823160e01b81526001600160a01b0387811660048301529151869392909216916370a0823191602480820192602092909190829003018186803b15801561083757600080fd5b505afa15801561084b573d6000803e3d6000fd5b505050506040513d602081101561086157600080fd5b505110156108a757505060408051808201909152601881527f696e73756666696369656e74204e584d2062616c616e636500000000000000006020820152600090610a35565b600854604080516398fd371f60e01b81526001600160a01b0387811660048301529151429392909216916398fd371f91602480820192602092909190829003018186803b1580156108f757600080fd5b505afa15801561090b573d6000803e3d6000fd5b505050506040513d602081101561092157600080fd5b5051111561096757505060408051808201909152601781527f4e584d2062616c616e6365206c6f636b6564466f724d760000000000000000006020820152600090610a35565b60085460408051633e83f2a160e21b815230600482015290516001600160a01b039092169163fa0fca8491602480820192602092909190829003018186803b1580156109b257600080fd5b505afa1580156109c6573d6000803e3d6000fd5b505050506040513d60208110156109dc57600080fd5b5051610a2057505060408051808201909152601781527f774e584d206973206e6f742077686974656c69737465640000000000000000006020820152600090610a35565b50506040805160208101909152600081526001905b9250929050565b6000606082610a4a86610c16565b1015610a8e57505060408051808201909152601981527f696e73756666696369656e7420774e584d2062616c616e6365000000000000006020820152600090610c0e565b60085460408051633e83f2a160e21b81526001600160a01b0387811660048301529151919092169163fa0fca84916024808301926020929190829003018186803b158015610adb57600080fd5b505afa158015610aef573d6000803e3d6000fd5b505050506040513d6020811015610b0557600080fd5b5051610b4957505060408051808201909152601c81527f726563697069656e74206973206e6f742077686974656c6973746564000000006020820152600090610c0e565b600854604080516398fd371f60e01b8152306004820152905142926001600160a01b0316916398fd371f916024808301926020929190829003018186803b158015610b9357600080fd5b505afa158015610ba7573d6000803e3d6000fd5b505050506040513d6020811015610bbd57600080fd5b50511115610bf95750506040805180820190915260138152723ba72c269034b9903637b1b5b2b22337b926bb60691b6020820152600090610c0e565b50506040805160208101909152600081526001905b935093915050565b6001600160a01b031660009081526020819052604090205490565b6001600160a01b031660009081526006602052604090205490565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561060c5780601f106105e15761010080835404028352916020019161060c565b6001600160a01b038216610cf25760405162461bcd60e51b81526004018080602001828103825260228152602001806121096022913960400191505060405180910390fd5b6008546001600160a01b0384811691161415610e10576000610d93610d15610634565b604080516370a0823160e01b815230600482015290516001600160a01b038816916370a08231916024808301926020929190829003018186803b158015610d5b57600080fd5b505afa158015610d6f573d6000803e3d6000fd5b505050506040513d6020811015610d8557600080fd5b50519063ffffffff61169716565b905060008111610dd45760405162461bcd60e51b815260040180806020018281038252602781526020018061209c6027913960400191505060405180910390fd5b60008215610deb57610de682846116d9565b610ded565b815b9050610e096001600160a01b038616858363ffffffff6116ef16565b5050610f7e565b6001600160a01b038316610e79574760008215610e3657610e3182846116d9565b610e38565b815b6040519091506001600160a01b0385169082156108fc029083906000818181858888f19350505050158015610e71573d6000803e3d6000fd5b505050610f7e565b604080516370a0823160e01b815230600482015290516000916001600160a01b038616916370a0823191602480820192602092909190829003018186803b158015610ec357600080fd5b505afa158015610ed7573d6000803e3d6000fd5b505050506040513d6020811015610eed57600080fd5b5051905060008215610f0857610f0382846116d9565b610f0a565b815b905060008111610f61576040805162461bcd60e51b815260206004820152601e60248201527f774e584d3a20747279696e6720746f2073656e6420302062616c616e63650000604482015290519081900360640190fd5b610f7b6001600160a01b038616858363ffffffff6116ef16565b50505b505050565b600061062b610f9061143f565b846106b8856040518060600160405280602581526020016121796025913960016000610fba61143f565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61159f16565b600061062b610ffe61143f565b848461152f565b4290565b4690565b816001600160a01b03811630141561106c576040805162461bcd60e51b815260206004820152601a60248201527f774e584d3a2063616e206e6f742073656e6420746f2073656c66000000000000604482015290519081900360640190fd5b6110763383611741565b6008546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018690529151919092169163a9059cbb9160448083019260209291908290030181600087803b1580156110cc57600080fd5b505af11580156110e0573d6000803e3d6000fd5b505050506040513d60208110156110f657600080fd5b5051610f7e576040805162461bcd60e51b81526020600482015260156024820152741dd396134e881d1c985b9cd9995c8819985a5b1959605a1b604482015290519081900360640190fd5b6008546001600160a01b031681565b83611159611005565b11156111ac576040805162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015290519081900360640190fd5b60006040518080611fae60529139604080519182900360520182206001600160a01b03808d16600081815260066020908152858220548188019590955286860192909252918d166060860152608085018c905260a085019290925260c08085018b90528351808603909101815260e090940190925282519201919091209250905061190161123861183d565b83604051602001808461ffff1661ffff1660f01b8152600201838152602001828152602001935050505060405160208183030381529060405280519060200120905060006112888287878761187c565b9050896001600160a01b0316816001600160a01b0316146112f0576040805162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015290519081900360640190fd5b6001600160a01b038a1660009081526006602052604090208054600101905561131a8a8a8a611443565b50505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61135b338261100d565b50565b600854604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b1580156113b857600080fd5b505af11580156113cc573d6000803e3d6000fd5b505050506040513d60208110156113e257600080fd5b5051611435576040805162461bcd60e51b815260206004820152601960248201527f774e584d3a207472616e7366657246726f6d206661696c656400000000000000604482015290519081900360640190fd5b61135b33826119fa565b3390565b6001600160a01b0383166114885760405162461bcd60e51b815260040180806020018281038252602481526020018061212b6024913960400191505060405180910390fd5b6001600160a01b0382166114cd5760405162461bcd60e51b8152600401808060200182810382526022815260200180611f446022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b816001600160a01b03811630141561158e576040805162461bcd60e51b815260206004820152601a60248201527f774e584d3a2063616e206e6f742073656e6420746f2073656c66000000000000604482015290519081900360640190fd5b611599848484611aea565b50505050565b6000818484111561162e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156115f35781810151838201526020016115db565b50505050905090810190601f1680156116205780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611690576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600061169083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061159f565b60008183106116e85781611690565b5090919050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610f7e908490611c46565b6001600160a01b0382166117865760405162461bcd60e51b81526004018080602001828103825260218152602001806120c36021913960400191505060405180910390fd5b6117c981604051806060016040528060228152602001611f22602291396001600160a01b038516600090815260208190526040902054919063ffffffff61159f16565b6001600160a01b0383166000908152602081905260409020556002546117f5908263ffffffff61169716565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000806007600061184c611009565b81526020810191909152604001600020549050801561186c579050610614565b611874611dfe565b915050610614565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156118dd5760405162461bcd60e51b8152600401808060200182810382526022815260200180611f8c6022913960400191505060405180910390fd5b8360ff16601b141580156118f557508360ff16601c14155b156119315760405162461bcd60e51b81526004018080602001828103825260228152602001806120006022913960400191505060405180910390fd5b604080516000808252602080830180855289905260ff88168385015260608301879052608083018690529251909260019260a080820193601f1981019281900390910190855afa158015611989573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166119f1576040805162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015290519081900360640190fd5b95945050505050565b6001600160a01b038216611a55576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254611a68908263ffffffff61163616565b6002556001600160a01b038216600090815260208190526040902054611a94908263ffffffff61163616565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038316611b2f5760405162461bcd60e51b81526004018080602001828103825260258152602001806120e46025913960400191505060405180910390fd5b6001600160a01b038216611b745760405162461bcd60e51b8152600401808060200182810382526023815260200180611eff6023913960400191505060405180910390fd5b611bb781604051806060016040528060268152602001611f66602691396001600160a01b038616600090815260208190526040902054919063ffffffff61159f16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611bec908263ffffffff61163616565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b611c58826001600160a01b0316611ec2565b611ca9576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310611ce75780518252601f199092019160209182019101611cc8565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611d49576040519150601f19603f3d011682016040523d82523d6000602084013e611d4e565b606091505b509150915081611da5576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b80511561159957808060200190516020811015611dc157600080fd5b50516115995760405162461bcd60e51b815260040180806020018281038252602a81526020018061214f602a913960400191505060405180910390fd5b600080611e09611009565b9050600060405180806120226052913960520190506040518091039020611e2e610580565b805160209182012060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66060840152608083018590523060a0808501919091528151808503909101815260c0909301815282519282019290922060009485526007909152922082905550905090565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611ef657508115155b94935050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545434453413a20696e76616c6964207369676e6174757265202773272076616c75655065726d69742861646472657373206f776e65722c61646472657373207370656e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63652c75696e7432353620646561646c696e652945434453413a20696e76616c6964207369676e6174757265202776272076616c7565454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e74726163742945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365774e584d3a207468657265206973206e6f206163636964656e74616c6c792073656e74204e584d45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373774e584d3a2063616e206e6f742073656e6420746f207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158202b40a804d878b37534645a522456aa40eeee8f592195296103ebb27d8ea5312b64736f6c63430005110032

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

000000000000000000000000d7c49cee7e9188cca6ad8ff264c1da2e69d4cf3b

-----Decoded View---------------
Arg [0] : _nxm (address): 0xd7c49CEE7E9188cCa6AD8FF264C1DA2e69D4Cf3B

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000d7c49cee7e9188cca6ad8ff264c1da2e69d4cf3b


Deployed Bytecode Sourcemap

36144:3506:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36144:3506:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19580:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;19580:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13124:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13124:152:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;12145:91;;;:::i;:::-;;;;;;;;;;;;;;;;13748:304;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13748:304:0;;;;;;;;;;;;;;;;;:::i;20432:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14461:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14461:210:0;;;;;;;;:::i;37215:660::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;37215:660:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;37215:660:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37883:553;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;37883:553:0;;;;;;;;;;;;;;;;;:::i;12299:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12299:110:0;-1:-1:-1;;;;;12299:110:0;;:::i;34754:101::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34754:101:0;-1:-1:-1;;;;;34754:101:0;;:::i;19782:87::-;;;:::i;38508:1139::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;38508:1139:0;;;;;;;;;;;;;;;;;:::i;:::-;;15174:261;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15174:261:0;;;;;;;;:::i;12622:158::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12622:158:0;;;;;;;;:::i;35982:97::-;;;:::i;35842:132::-;;;:::i;37023:184::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;37023:184:0;;;;;;;;:::i;36269:15::-;;;:::i;:::-;;;;-1:-1:-1;;;;;36269:15:0;;;;;;;;;;;;;;33958:728;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;33958:728:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;12843:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12843:134:0;;;;;;;;;;:::i;36925:90::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36925:90:0;;:::i;36731:186::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36731:186:0;;:::i;19580:83::-;19650:5;19643:12;;;;;;;;-1:-1:-1;;19643:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19617:13;;19643:12;;19650:5;;19643:12;;19650:5;19643:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19580:83;;:::o;13124:152::-;13190:4;13207:39;13216:12;:10;:12::i;:::-;13230:7;13239:6;13207:8;:39::i;:::-;-1:-1:-1;13264:4:0;13124:152;;;;:::o;12145:91::-;12216:12;;12145:91;:::o;13748:304::-;13837:4;13854:36;13864:6;13872:9;13883:6;13854:9;:36::i;:::-;13901:121;13910:6;13918:12;:10;:12::i;:::-;13932:89;13970:6;13932:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13932:19:0;;;;;;:11;:19;;;;;;13952:12;:10;:12::i;:::-;-1:-1:-1;;;;;13932:33:0;;;;;;;;;;;;-1:-1:-1;13932:33:0;;;:89;;:37;:89;:::i;:::-;13901:8;:121::i;:::-;-1:-1:-1;14040:4:0;13748:304;;;;;:::o;20432:83::-;20498:9;;;;20432:83;:::o;14461:210::-;14541:4;14558:83;14567:12;:10;:12::i;:::-;14581:7;14590:50;14629:10;14590:11;:25;14602:12;:10;:12::i;:::-;-1:-1:-1;;;;;14590:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14590:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;37215:660::-;37371:3;;:36;;;-1:-1:-1;;;37371:36:0;;-1:-1:-1;;;;;37371:36:0;;;;;;;37401:4;37371:36;;;;;;37315:12;;37329:20;;37410:7;;37371:3;;;:13;;:36;;;;;;;;;;;;;;;:3;:36;;;5:2:-1;;;;30:1;27;20:12;5:2;37371:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37371:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37371:36:0;:46;37367:119;;;-1:-1:-1;;37434:40:0;;;;;;;;;;;;-1:-1:-1;;;37434:40:0;;;;37442:5;;37434:40;;37367:119;37502:3;;:21;;;-1:-1:-1;;;37502:21:0;;-1:-1:-1;;;;;37502:21:0;;;;;;;;;37526:7;;37502:3;;;;;:13;;:21;;;;;;;;;;;;;;;:3;:21;;;5:2:-1;;;;30:1;27;20:12;5:2;37502:21:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37502:21:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37502:21:0;:31;37498:106;;;-1:-1:-1;;37550:42:0;;;;;;;;;;;;;;;;;37558:5;;37550:42;;37498:106;37620:3;;:25;;;-1:-1:-1;;;37620:25:0;;-1:-1:-1;;;;;37620:25:0;;;;;;;;;37648:3;;37620;;;;;:17;;:25;;;;;;;;;;;;;;;:3;:25;;;5:2:-1;;;;30:1;27;20:12;5:2;37620:25:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37620:25:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37620:25:0;:31;37616:105;;;-1:-1:-1;;37668:41:0;;;;;;;;;;;;;;;;;37676:5;;37668:41;;37616:105;37738:3;;:30;;;-1:-1:-1;;;37738:30:0;;37762:4;37738:30;;;;;;-1:-1:-1;;;;;37738:3:0;;;;:15;;:30;;;;;;;;;;;;;;;:3;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;37738:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37738:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37738:30:0;37733:105;;-1:-1:-1;;37785:41:0;;;;;;;;;;;;;;;;;37793:5;;37785:41;;37733:105;-1:-1:-1;;37850:17:0;;;;;;;;;-1:-1:-1;37850:17:0;;37858:4;;37215:660;;;;;;:::o;37883:553::-;38005:12;38019:20;38081:7;38061:17;38071:6;38061:9;:17::i;:::-;:27;38057:103;;;-1:-1:-1;;38105:43:0;;;;;;;;;;;;;;;;;38113:5;;38105:43;;38057:103;38177:3;;:27;;;-1:-1:-1;;;38177:27:0;;-1:-1:-1;;;;;38177:27:0;;;;;;;;;:3;;;;;:15;;:27;;;;;;;;;;;;;;:3;:27;;;5:2:-1;;;;30:1;27;20:12;5:2;38177:27:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38177:27:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38177:27:0;38172:107;;-1:-1:-1;;38221:46:0;;;;;;;;;;;;;;;;;38229:5;;38221:46;;38172:107;38295:3;;:32;;;-1:-1:-1;;;38295:32:0;;38321:4;38295:32;;;;;;38330:3;;-1:-1:-1;;;;;38295:3:0;;:17;;:32;;;;;;;;;;;;;;:3;:32;;;5:2:-1;;;;30:1;27;20:12;5:2;38295:32:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38295:32:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38295:32:0;:38;38291:108;;;-1:-1:-1;;38350:37:0;;;;;;;;;;;;-1:-1:-1;;;38350:37:0;;;;38358:5;;38350:37;;38291:108;-1:-1:-1;;38411:17:0;;;;;;;;;-1:-1:-1;38411:17:0;;38419:4;;37883:553;;;;;;;:::o;12299:110::-;-1:-1:-1;;;;;12383:18:0;12356:7;12383:18;;;;;;;;;;;;12299:110::o;34754:101::-;-1:-1:-1;;;;;34833:14:0;34806:7;34833:14;;;:7;:14;;;;;;;34754:101::o;19782:87::-;19854:7;19847:14;;;;;;;;-1:-1:-1;;19847:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19821:13;;19847:14;;19854:7;;19847:14;;19854:7;19847:14;;;;;;;;;;;;;;;;;;;;;;;;38508:1139;-1:-1:-1;;;;;38610:17:0;;38602:64;;;;-1:-1:-1;;;38602:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38707:3;;-1:-1:-1;;;;;38683:29:0;;;38707:3;;38683:29;38679:961;;;38729:22;38754:50;38790:13;:11;:13::i;:::-;38754:31;;;-1:-1:-1;;;38754:31:0;;38779:4;38754:31;;;;;;-1:-1:-1;;;;;38754:16:0;;;;;:31;;;;;;;;;;;;;;:16;:31;;;5:2:-1;;;;30:1;27;20:12;5:2;38754:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38754:31:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38754:31:0;;:50;:35;:50;:::i;:::-;38729:75;;38844:1;38827:14;:18;38819:70;;;;-1:-1:-1;;;38819:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38904:15;38922:13;;:67;;38955:34;38964:14;38980:8;38955;:34::i;:::-;38922:67;;;38938:14;38922:67;38904:85;-1:-1:-1;39004:33:0;-1:-1:-1;;;;;39004:19:0;;39024:3;38904:85;39004:33;:19;:33;:::i;:::-;38679:961;;;;;-1:-1:-1;;;;;39059:18:0;;39055:585;;39143:21;39120:20;39197:13;;:63;;39228:32;39237:12;39251:8;39228;:32::i;:::-;39197:63;;;39213:12;39197:63;39275:21;;39179:81;;-1:-1:-1;;;;;;39275:12:0;;;:21;;;;;39179:81;;39275:21;;;;39179:81;39275:12;:21;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39275:21:0;39055:585;;;;;39384:31;;;-1:-1:-1;;;39384:31:0;;39409:4;39384:31;;;;;;39361:20;;-1:-1:-1;;;;;39384:16:0;;;;;:31;;;;;;;;;;;;;;;:16;:31;;;5:2:-1;;;;30:1;27;20:12;5:2;39384:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39384:31:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39384:31:0;;-1:-1:-1;39430:15:0;39448:13;;:63;;39479:32;39488:12;39502:8;39479;:32::i;:::-;39448:63;;;39464:12;39448:63;39430:81;;39544:1;39534:7;:11;39526:54;;;;;-1:-1:-1;;;39526:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;39595:33;-1:-1:-1;;;;;39595:19:0;;39615:3;39620:7;39595:33;:19;:33;:::i;:::-;39055:585;;;38508:1139;;;:::o;15174:261::-;15259:4;15276:129;15285:12;:10;:12::i;:::-;15299:7;15308:96;15347:15;15308:96;;;;;;;;;;;;;;;;;:11;:25;15320:12;:10;:12::i;:::-;-1:-1:-1;;;;;15308:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15308:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;12622:158::-;12691:4;12708:42;12718:12;:10;:12::i;:::-;12732:9;12743:6;12708:9;:42::i;35982:97::-;36056:15;35982:97;:::o;35842:132::-;35947:9;;35920:47::o;37023:184::-;37086:3;-1:-1:-1;;;;;36348:26:0;;36369:4;36348:26;;36340:65;;;;;-1:-1:-1;;;36340:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37102:26;37108:10;37120:7;37102:5;:26::i;:::-;37147:3;;:26;;;-1:-1:-1;;;37147:26:0;;-1:-1:-1;;;;;37147:26:0;;;;;;;;;;;;;;;:3;;;;;:12;;:26;;;;;;;;;;;;;;:3;;:26;;;5:2:-1;;;;30:1;27;20:12;5:2;37147:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37147:26:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37147:26:0;37139:60;;;;;-1:-1:-1;;;37139:60:0;;;;;;;;;;;;-1:-1:-1;;;37139:60:0;;;;;;;;;;;;;;36269:15;;;-1:-1:-1;;;;;36269:15:0;;:::o;33958:728::-;34187:8;34167:16;:14;:16::i;:::-;:28;;34159:70;;;;;-1:-1:-1;;;34159:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;34242:18;33287:111;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34340:14:0;;;;;;;:7;:14;;;;;;;;34287:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;34287:78:0;;;;;;;34263:113;;;;;;;;;-1:-1:-1;34340:14:0;-1:-1:-1;34438:6:0;34447:18;:16;:18::i;:::-;34467:10;34414:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;34414:64:0;;;34404:75;;;;;;34389:90;;34492:14;34509:28;34523:4;34529:1;34532;34535;34509:13;:28::i;:::-;34492:45;;34566:5;-1:-1:-1;;;;;34556:15:0;:6;-1:-1:-1;;;;;34556:15:0;;34548:58;;;;;-1:-1:-1;;;34548:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34619:14:0;;;;;;:7;:14;;;;;:16;;;;;;34646:32;34627:5;34662:7;34671:6;34646:8;:32::i;:::-;33958:728;;;;;;;;;;:::o;12843:134::-;-1:-1:-1;;;;;12942:18:0;;;12915:7;12942:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12843:134::o;36925:90::-;36978:29;36987:10;36999:7;36978:8;:29::i;:::-;36925:90;:::o;36731:186::-;36790:3;;:52;;;-1:-1:-1;;;36790:52:0;;36807:10;36790:52;;;;36827:4;36790:52;;;;;;;;;;;;-1:-1:-1;;;;;36790:3:0;;;;:16;;:52;;;;;;;;;;;;;;;:3;;:52;;;5:2:-1;;;;30:1;27;20:12;5:2;36790:52:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36790:52:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36790:52:0;36782:90;;;;;-1:-1:-1;;;36782:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36883:26;36889:10;36901:7;36883:5;:26::i;1846:98::-;1926:10;1846:98;:::o;18105:338::-;-1:-1:-1;;;;;18199:19:0;;18191:68;;;;-1:-1:-1;;;18191:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18278:21:0;;18270:68;;;;-1:-1:-1;;;18270:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18351:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18403:32;;;;;;;;;;;;;;;;;18105:338;;;:::o;36541:182::-;36646:9;-1:-1:-1;;;;;36348:26:0;;36369:4;36348:26;;36340:65;;;;;-1:-1:-1;;;36340:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36673:42;36689:6;36697:9;36708:6;36673:15;:42::i;:::-;36541:182;;;;:::o;6906:192::-;6992:7;7028:12;7020:6;;;;7012:29;;;;-1:-1:-1;;;7012:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;7012:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7064:5:0;;;6906:192::o;5977:181::-;6035:7;6067:5;;;6091:6;;;;6083:46;;;;;-1:-1:-1;;;6083:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6149:1;5977:181;-1:-1:-1;;;5977:181:0:o;6433:136::-;6491:7;6518:43;6522:1;6525;6518:43;;;;;;;;;;;;;;;;;:3;:43::i;20946:106::-;21004:7;21035:1;21031;:5;:13;;21043:1;21031:13;;;-1:-1:-1;21039:1:0;;20946:106;-1:-1:-1;20946:106:0:o;25104:176::-;25213:58;;;-1:-1:-1;;;;;25213:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;25213:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;25187:85:0;;25206:5;;25187:18;:85::i;17317:348::-;-1:-1:-1;;;;;17393:21:0;;17385:67;;;;-1:-1:-1;;;17385:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17486:68;17509:6;17486:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17486:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;17465:18:0;;:9;:18;;;;;;;;;;:89;17580:12;;:24;;17597:6;17580:24;:16;:24;:::i;:::-;17565:12;:39;17620:37;;;;;;;;17646:1;;-1:-1:-1;;;;;17620:37:0;;;;;;;;;;;;17317:348;;:::o;35555:279::-;35600:7;35620:23;35646:17;:28;35664:9;:7;:9::i;:::-;35646:28;;;;;;;;;;;-1:-1:-1;35646:28:0;;;-1:-1:-1;35689:23:0;;35685:142;;35736:15;-1:-1:-1;35729:22:0;;35685:142;35791:24;:22;:24::i;:::-;35784:31;;;;;30593:1491;30678:7;31598:66;31585:79;;31581:156;;;31681:44;;-1:-1:-1;;;31681:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31581:156;31753:1;:7;;31758:2;31753:7;;:18;;;;;31764:1;:7;;31769:2;31764:7;;31753:18;31749:95;;;31788:44;;-1:-1:-1;;;31788:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31749:95;31958:24;;;31941:14;31958:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31941:14;;31958:24;;;;;;;-1:-1:-1;;31958:24:0;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;31958:24:0;;-1:-1:-1;;31958:24:0;;;-1:-1:-1;;;;;;;32001:20:0;;31993:57;;;;;-1:-1:-1;;;31993:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;32070:6;30593:1491;-1:-1:-1;;;;;30593:1491:0:o;16677:308::-;-1:-1:-1;;;;;16753:21:0;;16745:65;;;;;-1:-1:-1;;;16745:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16838:12;;:24;;16855:6;16838:24;:16;:24;:::i;:::-;16823:12;:39;-1:-1:-1;;;;;16894:18:0;;:9;:18;;;;;;;;;;;:30;;16917:6;16894:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;16873:18:0;;:9;:18;;;;;;;;;;;:51;;;;16940:37;;;;;;;16873:18;;:9;;16940:37;;;;;;;;;;16677:308;;:::o;15925:471::-;-1:-1:-1;;;;;16023:20:0;;16015:70;;;;-1:-1:-1;;;16015:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16104:23:0;;16096:71;;;;-1:-1:-1;;;16096:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16200;16222:6;16200:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16200:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;16180:17:0;;;:9;:17;;;;;;;;;;;:91;;;;16305:20;;;;;;;:32;;16330:6;16305:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;16282:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;16353:35;;;;;;;16282:20;;16353:35;;;;;;;;;;;;;15925:471;;;:::o;27143:1114::-;27747:27;27755:5;-1:-1:-1;;;;;27747:25:0;;:27::i;:::-;27739:71;;;;;-1:-1:-1;;;27739:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27884:12;27898:23;27933:5;-1:-1:-1;;;;;27925:19:0;27945:4;27925:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;27925:25:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;27883:67:0;;;;27969:7;27961:52;;;;;-1:-1:-1;;;27961:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28030:17;;:21;28026:224;;28172:10;28161:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28161:30:0;28153:85;;;;-1:-1:-1;;;28153:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34863:615;34914:7;34934:16;34953:9;:7;:9::i;:::-;34934:28;;34975:26;35057:135;;;;;;;;;;;;;;;;;;;35227:6;:4;:6::i;:::-;35211:24;;;;;;;35264:10;;;;;;;;;;;-1:-1:-1;;;35264:10:0;;;;35028:332;;;;;;;;;;;;;;;;35254:21;35028:332;;;;;;;;;;35340:4;35028:332;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;35028:332:0;;;;;;35004:367;;;;;;;;;-1:-1:-1;35384:27:0;;;:17;:27;;;;;:48;;;-1:-1:-1;35004:367:0;-1:-1:-1;34863:615:0;:::o;22133:619::-;22193:4;22661:20;;22504:66;22701:23;;;;;;:42;;-1:-1:-1;22728:15:0;;;22701:42;22693:51;22133:619;-1:-1:-1;;;;22133:619:0:o

Swarm Source

bzzr://2b40a804d878b37534645a522456aa40eeee8f592195296103ebb27d8ea5312b
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.