false
true
0

Contract Address Details

0x7FB5120D2DB148e91f572d2f69bC04FE454Dbd9b

Token
uPLS (www.PlusX.app) (uPLS)
Creator
0x01b7d4–616c33 at 0xa5ab15–c2058b
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
6,091 Transactions
Transfers
0 Transfers
Gas Used
0
Last Balance Update
25984780
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
VX




Optimization enabled
true
Compiler version
v0.8.17+commit.8df45f5f




Optimization runs
200
EVM Version
london




Verified at
2025-01-26T23:52:48.191148Z

Constructor Arguments

0x00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001475504c5320287777772e506c7573582e61707029000000000000000000000000000000000000000000000000000000000000000000000000000000000000000475504c5300000000000000000000000000000000000000000000000000000000

Arg [0] (string) : uPLS (www.PlusX.app)
Arg [1] (string) : uPLS

              

Contract source code

// SPDX-License-Identifier: MIT
// File: .deps/openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: .deps/openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: .deps/openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead 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, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * 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 virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

// File: interfaces/IVController.sol


pragma solidity ^0.8.4;

interface IVController {

    function preStake(address sender, uint value) external returns(uint mintValue);
    function postStake(address sender, uint value, uint mintValue) external;

    function preUnstake(address sender, uint vxValue) external returns(uint unstakeValue);
    function postUnstake(address sender, uint vxValue, uint unstakeValue, uint withdrawal) external returns(uint withdrawn);

    function withdraw(address for_, uint value) external;
}
// File: interfaces/IVX.sol


pragma solidity ^0.8.4;

interface IVX {
    function stake(bool withPost) external payable;
    function unstake(uint vxValue, bool withPost) external;
    function withdraw(uint value, address for_) external;
    function getWithdrawal(address for_) external view returns(uint value);
    function reserveOf(address account) external view returns (uint value, uint cooldownUntil);
    function withdrawReserve() external;
    function totalWithdrawalValue() external view returns(uint);
}
// File: contracts/VX.sol


pragma solidity ^0.8.4;




contract VX is ERC20, IVX {

    uint constant RESERVE_COOLDOWN = 60*60*24*2; //2 days 

    struct Reserve
    {
        uint value;
        uint timestamp;
    }

    event ControllerChanged(address oldController, address newController);
    event Staked(address owner, uint stakedValue, uint mintedVX);
    event Unstaked(address owner, uint unstakedValue, uint burnedVX);
    event Withdrawn(address owner, uint value);

    uint public totalWithdrawalValue;
    address public controller;

    mapping(address => uint256) private withdrawals;
    mapping(address => Reserve) private reserved;

    constructor(string memory name_, string memory symbol_) ERC20(name_, symbol_) {
        controller=msg.sender;
    }

    modifier onlyVController {
        require(msg.sender==controller, "Only for VController");
        _;
    }

    function changeController(address newController_) external onlyVController {
        require(newController_ != address(0), "Address not allowed");
        emit ControllerChanged(controller, newController_);
        controller = newController_;
    }

    function transferBalance(address to_, uint value_) external onlyVController {
        (bool success, ) = to_.call{value:value_}("");
        require(success, "Insufficient Balance");
    }

    function stake(bool withPost_) external payable {
        uint _mintValue = IVController(controller).preStake(msg.sender, msg.value);
        _mint(address(this), _mintValue);
        reserved[msg.sender] = Reserve(reserved[msg.sender].value+_mintValue, block.timestamp);
        if (withPost_) IVController(controller).postStake(msg.sender, msg.value, _mintValue);
        emit Staked(msg.sender, msg.value, _mintValue);
    }

    function unstake(uint vxValue_, bool withPost_) external {
        uint _unstakeValue = IVController(controller).preUnstake(msg.sender, vxValue_);
        _burn(msg.sender, vxValue_);

        uint _withdrawal = withdrawals[msg.sender];
        uint _totalWithdrawalValue = totalWithdrawalValue;
        _withdrawal +=_unstakeValue;
        _totalWithdrawalValue+=_unstakeValue;
        withdrawals[msg.sender] = _withdrawal;
        totalWithdrawalValue = _totalWithdrawalValue;
        emit Unstaked(msg.sender, _unstakeValue, vxValue_);

        if (withPost_)
        {
            uint _withdrawn = IVController(controller).postUnstake(msg.sender, vxValue_, _unstakeValue, _withdrawal);
            require(_withdrawn<=_withdrawal, "Math error");
            withdrawals[msg.sender] = _withdrawal-_withdrawn;
            totalWithdrawalValue = _totalWithdrawalValue-_withdrawn;
            emit Withdrawn(msg.sender, _withdrawn);
        }
    }

    function withdrawReserve() external
    {
        Reserve memory _reserve = reserved[msg.sender];
        require(_reserve.timestamp+RESERVE_COOLDOWN<block.timestamp, "Reserve cooldown");
        require(_reserve.value>0, "Reserve is zero");
        reserved[msg.sender] = Reserve(0, 0);
        _transfer(address(this), msg.sender, _reserve.value);
    }

    function withdraw(uint value_, address for_) external {
        uint _toWithdraw = withdrawals[for_];
        require(value_>0, "Withdrawal is zero");
        require(_toWithdraw>=value_, "Withdrawal is more than allowed");
        totalWithdrawalValue-=value_;
        withdrawals[for_]=_toWithdraw-value_;
        IVController(controller).withdraw(for_, value_);
        emit Withdrawn(for_, value_);
    }

    function reserveOf(address account_) external view returns (uint value_, uint cooldownUntil_) {
        Reserve memory _reserve = reserved[account_];
        return(_reserve.value, _reserve.timestamp+RESERVE_COOLDOWN);
    }

    function getWithdrawal(address for_) external view returns(uint value) { value = withdrawals[for_]; }
}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"string","name":"name_","internalType":"string"},{"type":"string","name":"symbol_","internalType":"string"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"ControllerChanged","inputs":[{"type":"address","name":"oldController","internalType":"address","indexed":false},{"type":"address","name":"newController","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"Staked","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":false},{"type":"uint256","name":"stakedValue","internalType":"uint256","indexed":false},{"type":"uint256","name":"mintedVX","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Unstaked","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":false},{"type":"uint256","name":"unstakedValue","internalType":"uint256","indexed":false},{"type":"uint256","name":"burnedVX","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Withdrawn","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":false},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"changeController","inputs":[{"type":"address","name":"newController_","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"controller","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"value","internalType":"uint256"}],"name":"getWithdrawal","inputs":[{"type":"address","name":"for_","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"value_","internalType":"uint256"},{"type":"uint256","name":"cooldownUntil_","internalType":"uint256"}],"name":"reserveOf","inputs":[{"type":"address","name":"account_","internalType":"address"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"stake","inputs":[{"type":"bool","name":"withPost_","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalWithdrawalValue","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferBalance","inputs":[{"type":"address","name":"to_","internalType":"address"},{"type":"uint256","name":"value_","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"unstake","inputs":[{"type":"uint256","name":"vxValue_","internalType":"uint256"},{"type":"bool","name":"withPost_","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdraw","inputs":[{"type":"uint256","name":"value_","internalType":"uint256"},{"type":"address","name":"for_","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdrawReserve","inputs":[]}]
              

Contract Creation Code

Verify & Publish
0x60806040523480156200001157600080fd5b506040516200194d3803806200194d833981016040819052620000349162000136565b818160036200004483826200022f565b5060046200005382826200022f565b5050600680546001600160a01b0319163317905550620002fb915050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200009957600080fd5b81516001600160401b0380821115620000b657620000b662000071565b604051601f8301601f19908116603f01168101908282118183101715620000e157620000e162000071565b81604052838152602092508683858801011115620000fe57600080fd5b600091505b8382101562000122578582018301518183018401529082019062000103565b600093810190920192909252949350505050565b600080604083850312156200014a57600080fd5b82516001600160401b03808211156200016257600080fd5b620001708683870162000087565b935060208501519150808211156200018757600080fd5b50620001968582860162000087565b9150509250929050565b600181811c90821680620001b557607f821691505b602082108103620001d657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200022a57600081815260208120601f850160051c81016020861015620002055750805b601f850160051c820191505b81811015620002265782815560010162000211565b5050505b505050565b81516001600160401b038111156200024b576200024b62000071565b62000263816200025c8454620001a0565b84620001dc565b602080601f8311600181146200029b5760008415620002825750858301515b600019600386901b1c1916600185901b17855562000226565b600085815260208120601f198616915b82811015620002cc57888601518255948401946001909101908401620002ab565b5085821015620002eb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611642806200030b6000396000f3fe6080604052600436106101295760003560e01c806370a08231116100ab5780639fa77b201161006f5780639fa77b2014610330578063a457c2d714610365578063a9059cbb14610385578063ace1fab1146103a5578063dd62ed3e146103ba578063f77c4791146103da57600080fd5b806370a082311461027c5780637fab9e46146102b257806395d89b41146102c557806399f62bab146102da5780639ebea88c1461031057600080fd5b8063313ce567116100f2578063313ce567146101ea57806339509351146102065780633cebb82314610226578063495ffd7c1461024657806356a6d9ef1461025c57600080fd5b8062f714ce1461012e57806306fdde0314610150578063095ea7b31461017b57806318160ddd146101ab57806323b872dd146101ca575b600080fd5b34801561013a57600080fd5b5061014e610149366004611403565b610412565b005b34801561015c57600080fd5b506101656105a7565b604051610172919061142f565b60405180910390f35b34801561018757600080fd5b5061019b61019636600461147d565b610639565b6040519015158152602001610172565b3480156101b757600080fd5b506002545b604051908152602001610172565b3480156101d657600080fd5b5061019b6101e53660046114a7565b610653565b3480156101f657600080fd5b5060405160128152602001610172565b34801561021257600080fd5b5061019b61022136600461147d565b610677565b34801561023257600080fd5b5061014e6102413660046114e3565b610699565b34801561025257600080fd5b506101bc60055481565b34801561026857600080fd5b5061014e61027736600461147d565b61079f565b34801561028857600080fd5b506101bc6102973660046114e3565b6001600160a01b031660009081526020819052604090205490565b61014e6102c0366004611515565b61088f565b3480156102d157600080fd5b50610165610a0e565b3480156102e657600080fd5b506101bc6102f53660046114e3565b6001600160a01b031660009081526007602052604090205490565b34801561031c57600080fd5b5061014e61032b366004611530565b610a1d565b34801561033c57600080fd5b5061035061034b3660046114e3565b610c54565b60408051928352602083019190915201610172565b34801561037157600080fd5b5061019b61038036600461147d565b610ca2565b34801561039157600080fd5b5061019b6103a036600461147d565b610d1d565b3480156103b157600080fd5b5061014e610d2b565b3480156103c657600080fd5b506101bc6103d5366004611553565b610e23565b3480156103e657600080fd5b506006546103fa906001600160a01b031681565b6040516001600160a01b039091168152602001610172565b6001600160a01b038116600090815260076020526040902054826104725760405162461bcd60e51b81526020600482015260126024820152715769746864726177616c206973207a65726f60701b60448201526064015b60405180910390fd5b828110156104c25760405162461bcd60e51b815260206004820152601f60248201527f5769746864726177616c206973206d6f7265207468616e20616c6c6f776564006044820152606401610469565b82600560008282546104d49190611593565b909155506104e490508382611593565b6001600160a01b038381166000818152600760205260409081902093909355600654925163f3fef3a360e01b815260048101919091526024810186905291169063f3fef3a390604401600060405180830381600087803b15801561054757600080fd5b505af115801561055b573d6000803e3d6000fd5b5050604080516001600160a01b0386168152602081018790527f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5935001905060405180910390a1505050565b6060600380546105b6906115a6565b80601f01602080910402602001604051908101604052809291908181526020018280546105e2906115a6565b801561062f5780601f106106045761010080835404028352916020019161062f565b820191906000526020600020905b81548152906001019060200180831161061257829003601f168201915b5050505050905090565b600033610647818585610e4e565b60019150505b92915050565b600033610661858285610f72565b61066c858585610fec565b506001949350505050565b60003361064781858561068a8383610e23565b61069491906115e0565b610e4e565b6006546001600160a01b031633146106ea5760405162461bcd60e51b815260206004820152601460248201527327b7363c903337b9102b21b7b73a3937b63632b960611b6044820152606401610469565b6001600160a01b0381166107365760405162461bcd60e51b81526020600482015260136024820152721059191c995cdcc81b9bdd08185b1b1bddd959606a1b6044820152606401610469565b600654604080516001600160a01b03928316815291831660208301527f6aef1fb5b23d0e109fc7f2b0601019e1edbacd177e31a441ec8548e8dd14f0f7910160405180910390a1600680546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146107f05760405162461bcd60e51b815260206004820152601460248201527327b7363c903337b9102b21b7b73a3937b63632b960611b6044820152606401610469565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461083d576040519150601f19603f3d011682016040523d82523d6000602084013e610842565b606091505b505090508061088a5760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742042616c616e636560601b6044820152606401610469565b505050565b6006546040516308bec76f60e11b81523360048201523460248201526000916001600160a01b03169063117d8ede906044016020604051808303816000875af11580156108e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061090491906115f3565b905061091030826111ba565b6040805180820182523360009081526008602052919091205481906109369084906115e0565b81524260209182015233600090815260088252604090208251815591015160019091015581156109ca5760065460405162dab94f60e21b8152336004820152346024820152604481018390526001600160a01b039091169063036ae53c90606401600060405180830381600087803b1580156109b157600080fd5b505af11580156109c5573d6000803e3d6000fd5b505050505b604080513381523460208201529081018290527f1449c6dd7851abc30abf37f57715f492010519147cc2652fbc38202c18a6ee909060600160405180910390a15050565b6060600480546105b6906115a6565b6006546040516323ef1b6b60e21b8152336004820152602481018490526000916001600160a01b031690638fbc6dac906044016020604051808303816000875af1158015610a6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a9391906115f3565b9050610a9f3384611299565b33600090815260076020526040902054600554610abc83836115e0565b9150610ac883826115e0565b3360008181526007602090815260409182902086905560058490558151928352820186905281018790529091507f7fc4727e062e336010f2c282598ef5f14facb3de68cf8195c2f23e1454b2b74e9060600160405180910390a18315610c4d57600654604051631a1e3d8d60e31b81523360048201526024810187905260448101859052606481018490526000916001600160a01b03169063d0f1ec68906084016020604051808303816000875af1158015610b88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bac91906115f3565b905082811115610beb5760405162461bcd60e51b815260206004820152600a60248201526926b0ba341032b93937b960b11b6044820152606401610469565b610bf58184611593565b33600090815260076020526040902055610c0f8183611593565b60055560408051338152602081018390527f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5910160405180910390a1505b5050505050565b6001600160a01b0381166000908152600860209081526040808320815180830190925280548083526001909101549282018390528392610c98906202a300906115e0565b9250925050915091565b60003381610cb08286610e23565b905083811015610d105760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610469565b61066c8286868403610e4e565b600033610647818585610fec565b33600090815260086020908152604091829020825180840190935280548352600101549082018190524290610d64906202a300906115e0565b10610da45760405162461bcd60e51b815260206004820152601060248201526f2932b9b2b93b329031b7b7b63237bbb760811b6044820152606401610469565b8051610de45760405162461bcd60e51b815260206004820152600f60248201526e52657365727665206973207a65726f60881b6044820152606401610469565b60408051808201825260008082526020808301828152338084526008909252939091209151825591516001909101558151610e20913091610fec565b50565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b038316610eb05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610469565b6001600160a01b038216610f115760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610469565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610f7e8484610e23565b90506000198114610fe65781811015610fd95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610469565b610fe68484848403610e4e565b50505050565b6001600160a01b0383166110505760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610469565b6001600160a01b0382166110b25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610469565b6001600160a01b0383166000908152602081905260409020548181101561112a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610469565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906111619084906115e0565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111ad91815260200190565b60405180910390a3610fe6565b6001600160a01b0382166112105760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610469565b806002600082825461122291906115e0565b90915550506001600160a01b0382166000908152602081905260408120805483929061124f9084906115e0565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166112f95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610469565b6001600160a01b0382166000908152602081905260409020548181101561136d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610469565b6001600160a01b038316600090815260208190526040812083830390556002805484929061139c908490611593565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b80356001600160a01b03811681146113fe57600080fd5b919050565b6000806040838503121561141657600080fd5b82359150611426602084016113e7565b90509250929050565b600060208083528351808285015260005b8181101561145c57858101830151858201604001528201611440565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561149057600080fd5b611499836113e7565b946020939093013593505050565b6000806000606084860312156114bc57600080fd5b6114c5846113e7565b92506114d3602085016113e7565b9150604084013590509250925092565b6000602082840312156114f557600080fd5b6114fe826113e7565b9392505050565b803580151581146113fe57600080fd5b60006020828403121561152757600080fd5b6114fe82611505565b6000806040838503121561154357600080fd5b8235915061142660208401611505565b6000806040838503121561156657600080fd5b61156f836113e7565b9150611426602084016113e7565b634e487b7160e01b600052601160045260246000fd5b8181038181111561064d5761064d61157d565b600181811c908216806115ba57607f821691505b6020821081036115da57634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561064d5761064d61157d565b60006020828403121561160557600080fd5b505191905056fea264697066735822122028c94c4b0b265d0c6410ebd3418a8dff39613dde7d8214803e3182f30a7f67a264736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001475504c5320287777772e506c7573582e61707029000000000000000000000000000000000000000000000000000000000000000000000000000000000000000475504c5300000000000000000000000000000000000000000000000000000000

Deployed ByteCode

0x6080604052600436106101295760003560e01c806370a08231116100ab5780639fa77b201161006f5780639fa77b2014610330578063a457c2d714610365578063a9059cbb14610385578063ace1fab1146103a5578063dd62ed3e146103ba578063f77c4791146103da57600080fd5b806370a082311461027c5780637fab9e46146102b257806395d89b41146102c557806399f62bab146102da5780639ebea88c1461031057600080fd5b8063313ce567116100f2578063313ce567146101ea57806339509351146102065780633cebb82314610226578063495ffd7c1461024657806356a6d9ef1461025c57600080fd5b8062f714ce1461012e57806306fdde0314610150578063095ea7b31461017b57806318160ddd146101ab57806323b872dd146101ca575b600080fd5b34801561013a57600080fd5b5061014e610149366004611403565b610412565b005b34801561015c57600080fd5b506101656105a7565b604051610172919061142f565b60405180910390f35b34801561018757600080fd5b5061019b61019636600461147d565b610639565b6040519015158152602001610172565b3480156101b757600080fd5b506002545b604051908152602001610172565b3480156101d657600080fd5b5061019b6101e53660046114a7565b610653565b3480156101f657600080fd5b5060405160128152602001610172565b34801561021257600080fd5b5061019b61022136600461147d565b610677565b34801561023257600080fd5b5061014e6102413660046114e3565b610699565b34801561025257600080fd5b506101bc60055481565b34801561026857600080fd5b5061014e61027736600461147d565b61079f565b34801561028857600080fd5b506101bc6102973660046114e3565b6001600160a01b031660009081526020819052604090205490565b61014e6102c0366004611515565b61088f565b3480156102d157600080fd5b50610165610a0e565b3480156102e657600080fd5b506101bc6102f53660046114e3565b6001600160a01b031660009081526007602052604090205490565b34801561031c57600080fd5b5061014e61032b366004611530565b610a1d565b34801561033c57600080fd5b5061035061034b3660046114e3565b610c54565b60408051928352602083019190915201610172565b34801561037157600080fd5b5061019b61038036600461147d565b610ca2565b34801561039157600080fd5b5061019b6103a036600461147d565b610d1d565b3480156103b157600080fd5b5061014e610d2b565b3480156103c657600080fd5b506101bc6103d5366004611553565b610e23565b3480156103e657600080fd5b506006546103fa906001600160a01b031681565b6040516001600160a01b039091168152602001610172565b6001600160a01b038116600090815260076020526040902054826104725760405162461bcd60e51b81526020600482015260126024820152715769746864726177616c206973207a65726f60701b60448201526064015b60405180910390fd5b828110156104c25760405162461bcd60e51b815260206004820152601f60248201527f5769746864726177616c206973206d6f7265207468616e20616c6c6f776564006044820152606401610469565b82600560008282546104d49190611593565b909155506104e490508382611593565b6001600160a01b038381166000818152600760205260409081902093909355600654925163f3fef3a360e01b815260048101919091526024810186905291169063f3fef3a390604401600060405180830381600087803b15801561054757600080fd5b505af115801561055b573d6000803e3d6000fd5b5050604080516001600160a01b0386168152602081018790527f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5935001905060405180910390a1505050565b6060600380546105b6906115a6565b80601f01602080910402602001604051908101604052809291908181526020018280546105e2906115a6565b801561062f5780601f106106045761010080835404028352916020019161062f565b820191906000526020600020905b81548152906001019060200180831161061257829003601f168201915b5050505050905090565b600033610647818585610e4e565b60019150505b92915050565b600033610661858285610f72565b61066c858585610fec565b506001949350505050565b60003361064781858561068a8383610e23565b61069491906115e0565b610e4e565b6006546001600160a01b031633146106ea5760405162461bcd60e51b815260206004820152601460248201527327b7363c903337b9102b21b7b73a3937b63632b960611b6044820152606401610469565b6001600160a01b0381166107365760405162461bcd60e51b81526020600482015260136024820152721059191c995cdcc81b9bdd08185b1b1bddd959606a1b6044820152606401610469565b600654604080516001600160a01b03928316815291831660208301527f6aef1fb5b23d0e109fc7f2b0601019e1edbacd177e31a441ec8548e8dd14f0f7910160405180910390a1600680546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146107f05760405162461bcd60e51b815260206004820152601460248201527327b7363c903337b9102b21b7b73a3937b63632b960611b6044820152606401610469565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461083d576040519150601f19603f3d011682016040523d82523d6000602084013e610842565b606091505b505090508061088a5760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742042616c616e636560601b6044820152606401610469565b505050565b6006546040516308bec76f60e11b81523360048201523460248201526000916001600160a01b03169063117d8ede906044016020604051808303816000875af11580156108e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061090491906115f3565b905061091030826111ba565b6040805180820182523360009081526008602052919091205481906109369084906115e0565b81524260209182015233600090815260088252604090208251815591015160019091015581156109ca5760065460405162dab94f60e21b8152336004820152346024820152604481018390526001600160a01b039091169063036ae53c90606401600060405180830381600087803b1580156109b157600080fd5b505af11580156109c5573d6000803e3d6000fd5b505050505b604080513381523460208201529081018290527f1449c6dd7851abc30abf37f57715f492010519147cc2652fbc38202c18a6ee909060600160405180910390a15050565b6060600480546105b6906115a6565b6006546040516323ef1b6b60e21b8152336004820152602481018490526000916001600160a01b031690638fbc6dac906044016020604051808303816000875af1158015610a6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a9391906115f3565b9050610a9f3384611299565b33600090815260076020526040902054600554610abc83836115e0565b9150610ac883826115e0565b3360008181526007602090815260409182902086905560058490558151928352820186905281018790529091507f7fc4727e062e336010f2c282598ef5f14facb3de68cf8195c2f23e1454b2b74e9060600160405180910390a18315610c4d57600654604051631a1e3d8d60e31b81523360048201526024810187905260448101859052606481018490526000916001600160a01b03169063d0f1ec68906084016020604051808303816000875af1158015610b88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bac91906115f3565b905082811115610beb5760405162461bcd60e51b815260206004820152600a60248201526926b0ba341032b93937b960b11b6044820152606401610469565b610bf58184611593565b33600090815260076020526040902055610c0f8183611593565b60055560408051338152602081018390527f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5910160405180910390a1505b5050505050565b6001600160a01b0381166000908152600860209081526040808320815180830190925280548083526001909101549282018390528392610c98906202a300906115e0565b9250925050915091565b60003381610cb08286610e23565b905083811015610d105760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610469565b61066c8286868403610e4e565b600033610647818585610fec565b33600090815260086020908152604091829020825180840190935280548352600101549082018190524290610d64906202a300906115e0565b10610da45760405162461bcd60e51b815260206004820152601060248201526f2932b9b2b93b329031b7b7b63237bbb760811b6044820152606401610469565b8051610de45760405162461bcd60e51b815260206004820152600f60248201526e52657365727665206973207a65726f60881b6044820152606401610469565b60408051808201825260008082526020808301828152338084526008909252939091209151825591516001909101558151610e20913091610fec565b50565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b038316610eb05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610469565b6001600160a01b038216610f115760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610469565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610f7e8484610e23565b90506000198114610fe65781811015610fd95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610469565b610fe68484848403610e4e565b50505050565b6001600160a01b0383166110505760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610469565b6001600160a01b0382166110b25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610469565b6001600160a01b0383166000908152602081905260409020548181101561112a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610469565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906111619084906115e0565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111ad91815260200190565b60405180910390a3610fe6565b6001600160a01b0382166112105760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610469565b806002600082825461122291906115e0565b90915550506001600160a01b0382166000908152602081905260408120805483929061124f9084906115e0565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166112f95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610469565b6001600160a01b0382166000908152602081905260409020548181101561136d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610469565b6001600160a01b038316600090815260208190526040812083830390556002805484929061139c908490611593565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b80356001600160a01b03811681146113fe57600080fd5b919050565b6000806040838503121561141657600080fd5b82359150611426602084016113e7565b90509250929050565b600060208083528351808285015260005b8181101561145c57858101830151858201604001528201611440565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561149057600080fd5b611499836113e7565b946020939093013593505050565b6000806000606084860312156114bc57600080fd5b6114c5846113e7565b92506114d3602085016113e7565b9150604084013590509250925092565b6000602082840312156114f557600080fd5b6114fe826113e7565b9392505050565b803580151581146113fe57600080fd5b60006020828403121561152757600080fd5b6114fe82611505565b6000806040838503121561154357600080fd5b8235915061142660208401611505565b6000806040838503121561156657600080fd5b61156f836113e7565b9150611426602084016113e7565b634e487b7160e01b600052601160045260246000fd5b8181038181111561064d5761064d61157d565b600181811c908216806115ba57607f821691505b6020821081036115da57634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561064d5761064d61157d565b60006020828403121561160557600080fd5b505191905056fea264697066735822122028c94c4b0b265d0c6410ebd3418a8dff39613dde7d8214803e3182f30a7f67a264736f6c63430008110033