false
false

Contract Address Details

0xb9e12bcd1cff56b7e39278bfdfb6679e7b6a8a37

Contract Name
UnicornFightClubStashing
Creator
0xb25bee–d422c6 at 0xaaef57–3c404a
Balance
0 Xai ( )
Tokens
Fetching tokens...
Transactions
37 Transactions
Transfers
35 Transfers
Gas Used
2,763,924
Last Balance Update
66257092
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
UnicornFightClubStashing




Optimization enabled
false
Compiler version
v0.8.26+commit.8a97fa7a




EVM Version
default




Verified at
2024-06-27T15:24:50.207681Z

stash.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

contract UnicornFightClubStashing is Ownable, Pausable {

    constructor() Ownable(msg.sender) {
        setSigner(msg.sender);
    }

    address private signer;

    IERC20 private token;

    mapping(uint256 => bool) private requests;

    /*
    * @notice stash specified amount of token
    */
    function stash(uint256 amount) public whenNotPaused {

        require(token.allowance(msg.sender, address(this)) >= amount, "Insufficient allowance");

        token.transferFrom(msg.sender, address(this), amount);

        emit Stashed(msg.sender, amount);
    }

    /*
    * @notice unstash tokens, request need to be signed by the game server
    */
    function unstash(
        uint256 amount,
        uint256 requestId,
        uint256 deadline,
        bytes memory signature) public whenNotPaused {

        require(!requests[requestId], "Request already processed");

        require(block.number <= deadline, "Deadline expired");

        bytes32 hash = unstashHash(msg.sender, amount, requestId, deadline);

        require(isValidSignature(hash, signature), "Invalid Signature");

        token.transfer(msg.sender, amount);

        requests[requestId] = true;

        emit Unstashed(msg.sender, requestId, amount);
    }

    function isValidSignature(bytes32 hash, bytes memory signature) internal view returns (bool res) {

        (address recovered, ECDSA.RecoverError error, bytes32 length) = ECDSA.tryRecover(hash, signature);
        if (error == ECDSA.RecoverError.NoError && recovered == signer) {
            return true;
        }
    }

    /*
    * @notice disable the stash/unstash functionalities
    */
    function pause() public onlyOwner {
        _pause();
    }

    /*
    * @notice enable the stash/unstash functionalities
    */
    function unpause() public onlyOwner {
        _unpause();
    }

    /*
    * @notice set the signer public key
    */
    function setSigner(address newSigner) public onlyOwner {
        signer = newSigner;
    }

    /*
    * @notice set the Token address
    */
    function setToken(address tokenAddress) public onlyOwner {
        token = IERC20(tokenAddress);
    }

    function getToken() public view returns (address) {
        return address(token);
    }

    function withdraw(uint256 amount) public onlyOwner {
        token.transfer(msg.sender, amount);
    }

    function unstashHash(
        address user,
        uint256 amount,
        uint256 requestId,
        uint256 deadline
    ) public pure returns (bytes32) {
        return keccak256(
            abi.encode(
                keccak256(
                    "Unstash(address user, uint256 amount, uint256 requestId, uint256 deadline)"
                ),
                user,
                amount,
                requestId,
                deadline
            )
        );
    }

    event Stashed(
        address indexed user,
        uint256 amount
    );

    event Unstashed(
        address indexed user,
        uint256 indexed requestId,
        uint256 amount
    );
}
        

@openzeppelin/contracts/access/Ownable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

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

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
          

@openzeppelin/contracts/security/Pausable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

    bool private _paused;

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

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

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

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

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}
          

@openzeppelin/contracts/utils/Context.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}
          

@openzeppelin/contracts/utils/cryptography/ECDSA.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.20;

/**
 * @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 {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS
    }

    /**
     * @dev The signature derives the `address(0)`.
     */
    error ECDSAInvalidSignature();

    /**
     * @dev The signature has an invalid length.
     */
    error ECDSAInvalidSignatureLength(uint256 length);

    /**
     * @dev The signature has an S value that is in the upper half order.
     */
    error ECDSAInvalidSignatureS(bytes32 s);

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not
     * return address(0) without also returning an error description. Errors are documented using an enum (error type)
     * and a bytes32 providing additional information about the error.
     *
     * If no error is returned, then the address can be used for verification purposes.
     *
     * The `ecrecover` EVM precompile 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 {MessageHashUtils-toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError, bytes32) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length));
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM precompile 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 {MessageHashUtils-toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     */
    function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError, bytes32) {
        unchecked {
            bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
            // We do not check for an overflow here since the shift operation results in 0 or 1.
            uint8 v = uint8((uint256(vs) >> 255) + 27);
            return tryRecover(hash, v, r, s);
        }
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     */
    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError, bytes32) {
        // 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 (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): 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) {
            return (address(0), RecoverError.InvalidSignatureS, s);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature, bytes32(0));
        }

        return (signer, RecoverError.NoError, bytes32(0));
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided.
     */
    function _throwError(RecoverError error, bytes32 errorArg) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert ECDSAInvalidSignature();
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert ECDSAInvalidSignatureLength(uint256(errorArg));
        } else if (error == RecoverError.InvalidSignatureS) {
            revert ECDSAInvalidSignatureS(errorArg);
        }
    }
}
          

Compiler Settings

{"outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers"]}},"optimizer":{"runs":200,"enabled":false},"libraries":{}}
              

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"error","name":"OwnableInvalidOwner","inputs":[{"type":"address","name":"owner","internalType":"address"}]},{"type":"error","name":"OwnableUnauthorizedAccount","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Paused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"Stashed","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Unpaused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"Unstashed","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"requestId","internalType":"uint256","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"getToken","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"pause","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"paused","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setSigner","inputs":[{"type":"address","name":"newSigner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setToken","inputs":[{"type":"address","name":"tokenAddress","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"stash","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"unpause","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"unstash","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"uint256","name":"requestId","internalType":"uint256"},{"type":"uint256","name":"deadline","internalType":"uint256"},{"type":"bytes","name":"signature","internalType":"bytes"}]},{"type":"function","stateMutability":"pure","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"unstashHash","inputs":[{"type":"address","name":"user","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"uint256","name":"requestId","internalType":"uint256"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdraw","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]}]
              

Contract Creation Code

0x608060405234801561000f575f80fd5b50335f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610081575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161007891906102d6565b60405180910390fd5b610090816100be60201b60201c565b505f8060146101000a81548160ff0219169083151502179055506100b93361017f60201b60201c565b6102ef565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61018d6101d060201b60201c565b8060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6101de61026960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1661020261027060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146102675761022b61026960201b60201c565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161025e91906102d6565b60405180910390fd5b565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6102c082610297565b9050919050565b6102d0816102b6565b82525050565b5f6020820190506102e95f8301846102c7565b92915050565b6115ca806102fc5f395ff3fe608060405234801561000f575f80fd5b50600436106100cd575f3560e01c80636c19e7831161008a5780638456cb59116100645780638456cb59146101c15780638da5cb5b146101cb578063bcc5dce5146101e9578063f2fde38b14610205576100cd565b80636c19e7831461016b578063715018a6146101875780638288b3dc14610191576100cd565b8063144fa6d7146100d157806321df0da7146100ed5780632e1a7d4d1461010b5780633f4ba83a14610127578063409b3feb146101315780635c975abb1461014d575b5f80fd5b6100eb60048036038101906100e69190610dc4565b610221565b005b6100f561026c565b6040516101029190610dfe565b60405180910390f35b61012560048036038101906101209190610e4a565b610294565b005b61012f61033c565b005b61014b60048036038101906101469190610fb1565b61034e565b005b61015561056b565b604051610162919061104b565b60405180910390f35b61018560048036038101906101809190610dc4565b610580565b005b61018f6105cb565b005b6101ab60048036038101906101a69190611064565b6105de565b6040516101b891906110e0565b60405180910390f35b6101c9610638565b005b6101d361064a565b6040516101e09190610dfe565b60405180910390f35b61020360048036038101906101fe9190610e4a565b610671565b005b61021f600480360381019061021a9190610dc4565b610846565b005b6102296108ca565b8060025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61029c6108ca565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016102f8929190611108565b6020604051808303815f875af1158015610314573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103389190611159565b5050565b6103446108ca565b61034c610951565b565b6103566109b2565b60035f8481526020019081526020015f205f9054906101000a900460ff16156103b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab906111de565b60405180910390fd5b814311156103f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ee90611246565b60405180910390fd5b5f610404338686866105de565b905061041081836109fc565b61044f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610446906112ae565b60405180910390fd5b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33876040518363ffffffff1660e01b81526004016104ab929190611108565b6020604051808303815f875af11580156104c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104eb9190611159565b50600160035f8681526020019081526020015f205f6101000a81548160ff021916908315150217905550833373ffffffffffffffffffffffffffffffffffffffff167fee790332d8352b6e93ff3af3e726430b7d77b449eb32802c5e738dfaac57ef158760405161055c91906112cc565b60405180910390a35050505050565b5f8060149054906101000a900460ff16905090565b6105886108ca565b8060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6105d36108ca565b6105dc5f610aaa565b565b5f7fc2ab7f59176fec885e9e893cc55cfdd0b8c44d220343c1e8e3f4aa29097bfab3858585856040516020016106189594939291906112e5565b604051602081830303815290604052805190602001209050949350505050565b6106406108ca565b610648610b6b565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6106796109b2565b8060025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b81526004016106d6929190611336565b602060405180830381865afa1580156106f1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107159190611371565b1015610756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074d906113e6565b60405180910390fd5b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b81526004016107b493929190611404565b6020604051808303815f875af11580156107d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107f49190611159565b503373ffffffffffffffffffffffffffffffffffffffff167f3c54659ea5ff21964d07447ffa8cd103abb28ac25fe4af22bd7536d60ecfab328260405161083b91906112cc565b60405180910390a250565b61084e6108ca565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108be575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016108b59190610dfe565b60405180910390fd5b6108c781610aaa565b50565b6108d2610bcd565b73ffffffffffffffffffffffffffffffffffffffff166108f061064a565b73ffffffffffffffffffffffffffffffffffffffff161461094f57610913610bcd565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016109469190610dfe565b60405180910390fd5b565b610959610bd4565b5f8060146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61099b610bcd565b6040516109a89190610dfe565b60405180910390a1565b6109ba61056b565b156109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f190611483565b60405180910390fd5b565b5f805f80610a0a8686610c1d565b9250925092505f6003811115610a2357610a226114a1565b5b826003811115610a3657610a356114a1565b5b148015610a8f575060015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15610aa05760019350505050610aa4565b5050505b92915050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610b736109b2565b60015f60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610bb6610bcd565b604051610bc39190610dfe565b60405180910390a1565b5f33905090565b610bdc61056b565b610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290611518565b60405180910390fd5b565b5f805f6041845103610c5d575f805f602087015192506040870151915060608701515f1a9050610c4f88828585610c72565b955095509550505050610c6b565b5f600285515f1b9250925092505b9250925092565b5f805f7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0845f1c1115610cae575f600385925092509250610d4f565b5f6001888888886040515f8152602001604052604051610cd19493929190611551565b6020604051602081039080840390855afa158015610cf1573d5f803e3d5ffd5b5050506020604051035190505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d42575f60015f801b93509350935050610d4f565b805f805f1b935093509350505b9450945094915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d9382610d6a565b9050919050565b610da381610d89565b8114610dad575f80fd5b50565b5f81359050610dbe81610d9a565b92915050565b5f60208284031215610dd957610dd8610d62565b5b5f610de684828501610db0565b91505092915050565b610df881610d89565b82525050565b5f602082019050610e115f830184610def565b92915050565b5f819050919050565b610e2981610e17565b8114610e33575f80fd5b50565b5f81359050610e4481610e20565b92915050565b5f60208284031215610e5f57610e5e610d62565b5b5f610e6c84828501610e36565b91505092915050565b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610ec382610e7d565b810181811067ffffffffffffffff82111715610ee257610ee1610e8d565b5b80604052505050565b5f610ef4610d59565b9050610f008282610eba565b919050565b5f67ffffffffffffffff821115610f1f57610f1e610e8d565b5b610f2882610e7d565b9050602081019050919050565b828183375f83830152505050565b5f610f55610f5084610f05565b610eeb565b905082815260208101848484011115610f7157610f70610e79565b5b610f7c848285610f35565b509392505050565b5f82601f830112610f9857610f97610e75565b5b8135610fa8848260208601610f43565b91505092915050565b5f805f8060808587031215610fc957610fc8610d62565b5b5f610fd687828801610e36565b9450506020610fe787828801610e36565b9350506040610ff887828801610e36565b925050606085013567ffffffffffffffff81111561101957611018610d66565b5b61102587828801610f84565b91505092959194509250565b5f8115159050919050565b61104581611031565b82525050565b5f60208201905061105e5f83018461103c565b92915050565b5f805f806080858703121561107c5761107b610d62565b5b5f61108987828801610db0565b945050602061109a87828801610e36565b93505060406110ab87828801610e36565b92505060606110bc87828801610e36565b91505092959194509250565b5f819050919050565b6110da816110c8565b82525050565b5f6020820190506110f35f8301846110d1565b92915050565b61110281610e17565b82525050565b5f60408201905061111b5f830185610def565b61112860208301846110f9565b9392505050565b61113881611031565b8114611142575f80fd5b50565b5f815190506111538161112f565b92915050565b5f6020828403121561116e5761116d610d62565b5b5f61117b84828501611145565b91505092915050565b5f82825260208201905092915050565b7f5265717565737420616c72656164792070726f636573736564000000000000005f82015250565b5f6111c8601983611184565b91506111d382611194565b602082019050919050565b5f6020820190508181035f8301526111f5816111bc565b9050919050565b7f446561646c696e652065787069726564000000000000000000000000000000005f82015250565b5f611230601083611184565b915061123b826111fc565b602082019050919050565b5f6020820190508181035f83015261125d81611224565b9050919050565b7f496e76616c6964205369676e61747572650000000000000000000000000000005f82015250565b5f611298601183611184565b91506112a382611264565b602082019050919050565b5f6020820190508181035f8301526112c58161128c565b9050919050565b5f6020820190506112df5f8301846110f9565b92915050565b5f60a0820190506112f85f8301886110d1565b6113056020830187610def565b61131260408301866110f9565b61131f60608301856110f9565b61132c60808301846110f9565b9695505050505050565b5f6040820190506113495f830185610def565b6113566020830184610def565b9392505050565b5f8151905061136b81610e20565b92915050565b5f6020828403121561138657611385610d62565b5b5f6113938482850161135d565b91505092915050565b7f496e73756666696369656e7420616c6c6f77616e6365000000000000000000005f82015250565b5f6113d0601683611184565b91506113db8261139c565b602082019050919050565b5f6020820190508181035f8301526113fd816113c4565b9050919050565b5f6060820190506114175f830186610def565b6114246020830185610def565b61143160408301846110f9565b949350505050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f61146d601083611184565b915061147882611439565b602082019050919050565b5f6020820190508181035f83015261149a81611461565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b7f5061757361626c653a206e6f74207061757365640000000000000000000000005f82015250565b5f611502601483611184565b915061150d826114ce565b602082019050919050565b5f6020820190508181035f83015261152f816114f6565b9050919050565b5f60ff82169050919050565b61154b81611536565b82525050565b5f6080820190506115645f8301876110d1565b6115716020830186611542565b61157e60408301856110d1565b61158b60608301846110d1565b9594505050505056fea264697066735822122071f2edeb5081caddd43f9c18a23c3cdf6bcbdc29477f786fcc5340230c343ca664736f6c634300081a0033

Deployed ByteCode

0x608060405234801561000f575f80fd5b50600436106100cd575f3560e01c80636c19e7831161008a5780638456cb59116100645780638456cb59146101c15780638da5cb5b146101cb578063bcc5dce5146101e9578063f2fde38b14610205576100cd565b80636c19e7831461016b578063715018a6146101875780638288b3dc14610191576100cd565b8063144fa6d7146100d157806321df0da7146100ed5780632e1a7d4d1461010b5780633f4ba83a14610127578063409b3feb146101315780635c975abb1461014d575b5f80fd5b6100eb60048036038101906100e69190610dc4565b610221565b005b6100f561026c565b6040516101029190610dfe565b60405180910390f35b61012560048036038101906101209190610e4a565b610294565b005b61012f61033c565b005b61014b60048036038101906101469190610fb1565b61034e565b005b61015561056b565b604051610162919061104b565b60405180910390f35b61018560048036038101906101809190610dc4565b610580565b005b61018f6105cb565b005b6101ab60048036038101906101a69190611064565b6105de565b6040516101b891906110e0565b60405180910390f35b6101c9610638565b005b6101d361064a565b6040516101e09190610dfe565b60405180910390f35b61020360048036038101906101fe9190610e4a565b610671565b005b61021f600480360381019061021a9190610dc4565b610846565b005b6102296108ca565b8060025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61029c6108ca565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016102f8929190611108565b6020604051808303815f875af1158015610314573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103389190611159565b5050565b6103446108ca565b61034c610951565b565b6103566109b2565b60035f8481526020019081526020015f205f9054906101000a900460ff16156103b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab906111de565b60405180910390fd5b814311156103f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ee90611246565b60405180910390fd5b5f610404338686866105de565b905061041081836109fc565b61044f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610446906112ae565b60405180910390fd5b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33876040518363ffffffff1660e01b81526004016104ab929190611108565b6020604051808303815f875af11580156104c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104eb9190611159565b50600160035f8681526020019081526020015f205f6101000a81548160ff021916908315150217905550833373ffffffffffffffffffffffffffffffffffffffff167fee790332d8352b6e93ff3af3e726430b7d77b449eb32802c5e738dfaac57ef158760405161055c91906112cc565b60405180910390a35050505050565b5f8060149054906101000a900460ff16905090565b6105886108ca565b8060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6105d36108ca565b6105dc5f610aaa565b565b5f7fc2ab7f59176fec885e9e893cc55cfdd0b8c44d220343c1e8e3f4aa29097bfab3858585856040516020016106189594939291906112e5565b604051602081830303815290604052805190602001209050949350505050565b6106406108ca565b610648610b6b565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6106796109b2565b8060025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b81526004016106d6929190611336565b602060405180830381865afa1580156106f1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107159190611371565b1015610756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074d906113e6565b60405180910390fd5b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b81526004016107b493929190611404565b6020604051808303815f875af11580156107d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107f49190611159565b503373ffffffffffffffffffffffffffffffffffffffff167f3c54659ea5ff21964d07447ffa8cd103abb28ac25fe4af22bd7536d60ecfab328260405161083b91906112cc565b60405180910390a250565b61084e6108ca565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108be575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016108b59190610dfe565b60405180910390fd5b6108c781610aaa565b50565b6108d2610bcd565b73ffffffffffffffffffffffffffffffffffffffff166108f061064a565b73ffffffffffffffffffffffffffffffffffffffff161461094f57610913610bcd565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016109469190610dfe565b60405180910390fd5b565b610959610bd4565b5f8060146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61099b610bcd565b6040516109a89190610dfe565b60405180910390a1565b6109ba61056b565b156109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f190611483565b60405180910390fd5b565b5f805f80610a0a8686610c1d565b9250925092505f6003811115610a2357610a226114a1565b5b826003811115610a3657610a356114a1565b5b148015610a8f575060015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15610aa05760019350505050610aa4565b5050505b92915050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610b736109b2565b60015f60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610bb6610bcd565b604051610bc39190610dfe565b60405180910390a1565b5f33905090565b610bdc61056b565b610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290611518565b60405180910390fd5b565b5f805f6041845103610c5d575f805f602087015192506040870151915060608701515f1a9050610c4f88828585610c72565b955095509550505050610c6b565b5f600285515f1b9250925092505b9250925092565b5f805f7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0845f1c1115610cae575f600385925092509250610d4f565b5f6001888888886040515f8152602001604052604051610cd19493929190611551565b6020604051602081039080840390855afa158015610cf1573d5f803e3d5ffd5b5050506020604051035190505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d42575f60015f801b93509350935050610d4f565b805f805f1b935093509350505b9450945094915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d9382610d6a565b9050919050565b610da381610d89565b8114610dad575f80fd5b50565b5f81359050610dbe81610d9a565b92915050565b5f60208284031215610dd957610dd8610d62565b5b5f610de684828501610db0565b91505092915050565b610df881610d89565b82525050565b5f602082019050610e115f830184610def565b92915050565b5f819050919050565b610e2981610e17565b8114610e33575f80fd5b50565b5f81359050610e4481610e20565b92915050565b5f60208284031215610e5f57610e5e610d62565b5b5f610e6c84828501610e36565b91505092915050565b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610ec382610e7d565b810181811067ffffffffffffffff82111715610ee257610ee1610e8d565b5b80604052505050565b5f610ef4610d59565b9050610f008282610eba565b919050565b5f67ffffffffffffffff821115610f1f57610f1e610e8d565b5b610f2882610e7d565b9050602081019050919050565b828183375f83830152505050565b5f610f55610f5084610f05565b610eeb565b905082815260208101848484011115610f7157610f70610e79565b5b610f7c848285610f35565b509392505050565b5f82601f830112610f9857610f97610e75565b5b8135610fa8848260208601610f43565b91505092915050565b5f805f8060808587031215610fc957610fc8610d62565b5b5f610fd687828801610e36565b9450506020610fe787828801610e36565b9350506040610ff887828801610e36565b925050606085013567ffffffffffffffff81111561101957611018610d66565b5b61102587828801610f84565b91505092959194509250565b5f8115159050919050565b61104581611031565b82525050565b5f60208201905061105e5f83018461103c565b92915050565b5f805f806080858703121561107c5761107b610d62565b5b5f61108987828801610db0565b945050602061109a87828801610e36565b93505060406110ab87828801610e36565b92505060606110bc87828801610e36565b91505092959194509250565b5f819050919050565b6110da816110c8565b82525050565b5f6020820190506110f35f8301846110d1565b92915050565b61110281610e17565b82525050565b5f60408201905061111b5f830185610def565b61112860208301846110f9565b9392505050565b61113881611031565b8114611142575f80fd5b50565b5f815190506111538161112f565b92915050565b5f6020828403121561116e5761116d610d62565b5b5f61117b84828501611145565b91505092915050565b5f82825260208201905092915050565b7f5265717565737420616c72656164792070726f636573736564000000000000005f82015250565b5f6111c8601983611184565b91506111d382611194565b602082019050919050565b5f6020820190508181035f8301526111f5816111bc565b9050919050565b7f446561646c696e652065787069726564000000000000000000000000000000005f82015250565b5f611230601083611184565b915061123b826111fc565b602082019050919050565b5f6020820190508181035f83015261125d81611224565b9050919050565b7f496e76616c6964205369676e61747572650000000000000000000000000000005f82015250565b5f611298601183611184565b91506112a382611264565b602082019050919050565b5f6020820190508181035f8301526112c58161128c565b9050919050565b5f6020820190506112df5f8301846110f9565b92915050565b5f60a0820190506112f85f8301886110d1565b6113056020830187610def565b61131260408301866110f9565b61131f60608301856110f9565b61132c60808301846110f9565b9695505050505050565b5f6040820190506113495f830185610def565b6113566020830184610def565b9392505050565b5f8151905061136b81610e20565b92915050565b5f6020828403121561138657611385610d62565b5b5f6113938482850161135d565b91505092915050565b7f496e73756666696369656e7420616c6c6f77616e6365000000000000000000005f82015250565b5f6113d0601683611184565b91506113db8261139c565b602082019050919050565b5f6020820190508181035f8301526113fd816113c4565b9050919050565b5f6060820190506114175f830186610def565b6114246020830185610def565b61143160408301846110f9565b949350505050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f61146d601083611184565b915061147882611439565b602082019050919050565b5f6020820190508181035f83015261149a81611461565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b7f5061757361626c653a206e6f74207061757365640000000000000000000000005f82015250565b5f611502601483611184565b915061150d826114ce565b602082019050919050565b5f6020820190508181035f83015261152f816114f6565b9050919050565b5f60ff82169050919050565b61154b81611536565b82525050565b5f6080820190506115645f8301876110d1565b6115716020830186611542565b61157e60408301856110d1565b61158b60608301846110d1565b9594505050505056fea264697066735822122071f2edeb5081caddd43f9c18a23c3cdf6bcbdc29477f786fcc5340230c343ca664736f6c634300081a0033