ETH Price: $3,149.49 (+1.56%)

Token

DystoSpaces (D3D)
 

Overview

Max Total Supply

0 D3D

Holders

40

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 D3D
0x9C6d4c10df976205DE101f8039184B2a8191f0a7
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
DystoSpaces

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : dy-spaces.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

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

contract DystoSpaces is ERC721, Ownable {
    using ECDSA for bytes32;

    uint256 public price;
    uint256 public maxSupply;
    uint256 public lastTokenId;
    bool public paused;
    string public baseURI;

    address public signerAddress;
    address public paymentMethod;

    mapping(uint256 => bool) public transactions;
    mapping(address => bool) public hasMintedWhitelisted;

    event PaymentMethodUpdated(address oldPaymentMethod, address newPaymentMethod);

    constructor(address _signerAddress, address _dystoTokenAddress)
        ERC721("DystoSpaces", "D3D") {
        maxSupply = 1000000;
        lastTokenId = 0;

        price = 50000000000000000000;
        paused = false;
        baseURI = "https://api.dystoworld.ai/metadata/";

        signerAddress = _signerAddress;
        paymentMethod = _dystoTokenAddress;
    }

    function mint(uint256 _issued,
                  uint256 _expiration,
                  uint256 _numTokens,
                  uint256 _txId,
                  uint256 _chainId,
                  bool _shouldMintForFree,
                  bytes calldata _signature) external payable {
        require(paused == false, "Contract is paused.");
        require(_chainId == block.chainid, "Invalid chain");
        require(!transactions[_txId], "Transaction used");
        require(maxSupply >= lastTokenId + _numTokens, "Minted tokens would exceed supply.");

        if (_shouldMintForFree) {
            require(!hasMintedWhitelisted[msg.sender], "Already minted");
        } else {
            uint256 amountToSpend = price * _numTokens;
            if (paymentMethod == address(0)) {
                require(msg.value >= amountToSpend, "Not enough ether to purchase NFTs.");
            } else {
                IERC20(paymentMethod).transferFrom(msg.sender, address(this), amountToSpend);
            }
        }

        bytes32 msgHash = keccak256(abi.encodePacked(msg.sender, _issued, _expiration, _numTokens, _txId, _chainId, _shouldMintForFree));
        require(signerAddress == msgHash.toEthSignedMessageHash().recover(_signature), "Signature mismatch");

        transactions[_txId] = true;
        if (_shouldMintForFree) {
            hasMintedWhitelisted[msg.sender] = true;
        }

        uint256 i;
        for (; i < _numTokens; i++) {
            lastTokenId++;
            _safeMint(msg.sender, lastTokenId);
        }
    }

    function mintTeam(address _receiver, uint256 _numTokens) external onlyOwner {
        require(maxSupply >= lastTokenId + _numTokens, "Minted tokens would exceed supply.");

        uint256 i;
        for (; i < _numTokens; i++) {
            lastTokenId++;
            _safeMint(_receiver, lastTokenId);
        }
    }

    function setPaymentMethod(address _paymentMethod) public onlyOwner {
        emit PaymentMethodUpdated(paymentMethod, _paymentMethod);
        paymentMethod = _paymentMethod;
    }

    function setPrice(uint256 _price) public onlyOwner {
        price = _price;
    }

    function setPaused(bool _paused) public onlyOwner {
        paused = _paused;
    }

    function setSignerAddress(address _signerAddress) public onlyOwner {
        signerAddress = _signerAddress;
    }

    function withdrawETH(address _receiver) external onlyOwner {
        uint256 _balance = address(this).balance;
        require(_balance > 0, "No ether left to withdraw");

        payable(_receiver).transfer(_balance);
    }

    function withdrawERC20(address _tokenContractAddress, address _receiver)
        external
        onlyOwner
    {
        IERC20 _tokenContract = IERC20(_tokenContractAddress);
        uint256 _balance = _tokenContract.balanceOf(address(this));
        require(_balance > 0, "No tokens left to withdraw");

        _tokenContract.transfer(_receiver, _balance);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function setBaseURI(string memory newBaseURI) public virtual onlyOwner {
        baseURI = newBaseURI;
    }
}

File 2 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` 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 tokenId
    ) 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.
     * - `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 tokenId
    ) internal virtual {}
}

File 3 of 13 : IERC20.sol
// SPDX-License-Identifier: MIT
// 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 4 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../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.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _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);
    }
}

File 5 of 13 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

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

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * 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]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        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.
            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 if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        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]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        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.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // 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);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // 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);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @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) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 6 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

File 7 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 8 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 10 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// 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 11 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_signerAddress","type":"address"},{"internalType":"address","name":"_dystoTokenAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldPaymentMethod","type":"address"},{"indexed":false,"internalType":"address","name":"newPaymentMethod","type":"address"}],"name":"PaymentMethodUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasMintedWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_issued","type":"uint256"},{"internalType":"uint256","name":"_expiration","type":"uint256"},{"internalType":"uint256","name":"_numTokens","type":"uint256"},{"internalType":"uint256","name":"_txId","type":"uint256"},{"internalType":"uint256","name":"_chainId","type":"uint256"},{"internalType":"bool","name":"_shouldMintForFree","type":"bool"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"mintTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paymentMethod","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_paymentMethod","type":"address"}],"name":"setPaymentMethod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signerAddress","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"transactions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContractAddress","type":"address"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200577538038062005775833981810160405281019062000037919062000313565b6040518060400160405280600b81526020017f447973746f5370616365730000000000000000000000000000000000000000008152506040518060400160405280600381526020017f44334400000000000000000000000000000000000000000000000000000000008152508160009081620000b49190620005d4565b508060019081620000c69190620005d4565b505050620000e9620000dd620001db60201b60201c565b620001e360201b60201c565b620f424060088190555060006009819055506802b5e3af16b18800006007819055506000600a60006101000a81548160ff0219169083151502179055506040518060600160405280602381526020016200575260239139600b9081620001509190620005d4565b5081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050620006bb565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620002db82620002ae565b9050919050565b620002ed81620002ce565b8114620002f957600080fd5b50565b6000815190506200030d81620002e2565b92915050565b600080604083850312156200032d576200032c620002a9565b5b60006200033d85828601620002fc565b92505060206200035085828601620002fc565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003dc57607f821691505b602082108103620003f257620003f162000394565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200045c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200041d565b6200046886836200041d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004b5620004af620004a98462000480565b6200048a565b62000480565b9050919050565b6000819050919050565b620004d18362000494565b620004e9620004e082620004bc565b8484546200042a565b825550505050565b600090565b62000500620004f1565b6200050d818484620004c6565b505050565b5b81811015620005355762000529600082620004f6565b60018101905062000513565b5050565b601f82111562000584576200054e81620003f8565b62000559846200040d565b8101602085101562000569578190505b6200058162000578856200040d565b83018262000512565b50505b505050565b600082821c905092915050565b6000620005a96000198460080262000589565b1980831691505092915050565b6000620005c4838362000596565b9150826002028217905092915050565b620005df826200035a565b67ffffffffffffffff811115620005fb57620005fa62000365565b5b620006078254620003c3565b6200061482828562000539565b600060209050601f8311600181146200064c576000841562000637578287015190505b620006438582620005b6565b865550620006b3565b601f1984166200065c86620003f8565b60005b8281101562000686578489015182556001820191506020850194506020810190506200065f565b86831015620006a65784890151620006a2601f89168262000596565b8355505b6001600288020188555050505b505050505050565b61508780620006cb6000396000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063a035b1fe116100a0578063d5abeb011161006f578063d5abeb011461072d578063df383e6214610758578063e985e9c514610774578063f2fde38b146107b1578063f84ddf0b146107da576101f9565b8063a035b1fe14610673578063a22cb4651461069e578063b88d4fde146106c7578063c87b56dd146106f0576101f9565b806393f84cfe116100dc57806393f84cfe146105b95780639456fbcc146105e257806395d89b411461060b5780639ace38c214610636576101f9565b8063715018a61461052557806374910a871461053c5780638da5cb5b1461056557806391b7f5ed14610590576101f9565b806342842e0e116101905780636352211e1161015f5780636352211e1461042c578063690d8320146104695780636c0360eb146104925780636e5d0208146104bd57806370a08231146104e8576101f9565b806342842e0e1461038457806355f804b3146103ad5780635b7633d0146103d65780635c975abb14610401576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806314028102146102f557806316c38b3c1461033257806323b872dd1461035b576101f9565b806301ffc9a7146101fe578063046dc1661461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906130b1565b610805565b60405161023291906130f9565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190613172565b6108e7565b005b34801561027057600080fd5b506102796109a7565b604051610286919061322f565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190613287565b610a39565b6040516102c391906132c3565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee91906132de565b610abe565b005b34801561030157600080fd5b5061031c60048036038101906103179190613172565b610bd5565b60405161032991906130f9565b60405180910390f35b34801561033e57600080fd5b506103596004803603810190610354919061334a565b610bf5565b005b34801561036757600080fd5b50610382600480360381019061037d9190613377565b610c8e565b005b34801561039057600080fd5b506103ab60048036038101906103a69190613377565b610cee565b005b3480156103b957600080fd5b506103d460048036038101906103cf91906134ff565b610d0e565b005b3480156103e257600080fd5b506103eb610d9d565b6040516103f891906132c3565b60405180910390f35b34801561040d57600080fd5b50610416610dc3565b60405161042391906130f9565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190613287565b610dd6565b60405161046091906132c3565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b9190613172565b610e87565b005b34801561049e57600080fd5b506104a7610f96565b6040516104b4919061322f565b60405180910390f35b3480156104c957600080fd5b506104d2611024565b6040516104df91906132c3565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190613172565b61104a565b60405161051c9190613557565b60405180910390f35b34801561053157600080fd5b5061053a611101565b005b34801561054857600080fd5b50610563600480360381019061055e9190613172565b611189565b005b34801561057157600080fd5b5061057a6112a4565b60405161058791906132c3565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b29190613287565b6112ce565b005b3480156105c557600080fd5b506105e060048036038101906105db91906132de565b611354565b005b3480156105ee57600080fd5b5061060960048036038101906106049190613572565b611469565b005b34801561061757600080fd5b50610620611630565b60405161062d919061322f565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190613287565b6116c2565b60405161066a91906130f9565b60405180910390f35b34801561067f57600080fd5b506106886116e2565b6040516106959190613557565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c091906135b2565b6116e8565b005b3480156106d357600080fd5b506106ee60048036038101906106e99190613693565b6116fe565b005b3480156106fc57600080fd5b5061071760048036038101906107129190613287565b611760565b604051610724919061322f565b60405180910390f35b34801561073957600080fd5b50610742611807565b60405161074f9190613557565b60405180910390f35b610772600480360381019061076d9190613776565b61180d565b005b34801561078057600080fd5b5061079b60048036038101906107969190613572565b611d44565b6040516107a891906130f9565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d39190613172565b611dd8565b005b3480156107e657600080fd5b506107ef611ecf565b6040516107fc9190613557565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e057506108df82611ed5565b5b9050919050565b6108ef611f3f565b73ffffffffffffffffffffffffffffffffffffffff1661090d6112a4565b73ffffffffffffffffffffffffffffffffffffffff1614610963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095a90613884565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600080546109b6906138d3565b80601f01602080910402602001604051908101604052809291908181526020018280546109e2906138d3565b8015610a2f5780601f10610a0457610100808354040283529160200191610a2f565b820191906000526020600020905b815481529060010190602001808311610a1257829003601f168201915b5050505050905090565b6000610a4482611f47565b610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a90613976565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac982610dd6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3090613a08565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b58611f3f565b73ffffffffffffffffffffffffffffffffffffffff161480610b875750610b8681610b81611f3f565b611d44565b5b610bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbd90613a9a565b60405180910390fd5b610bd08383611fb3565b505050565b600f6020528060005260406000206000915054906101000a900460ff1681565b610bfd611f3f565b73ffffffffffffffffffffffffffffffffffffffff16610c1b6112a4565b73ffffffffffffffffffffffffffffffffffffffff1614610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6890613884565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b610c9f610c99611f3f565b8261206c565b610cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd590613b2c565b60405180910390fd5b610ce983838361214a565b505050565b610d09838383604051806020016040528060008152506116fe565b505050565b610d16611f3f565b73ffffffffffffffffffffffffffffffffffffffff16610d346112a4565b73ffffffffffffffffffffffffffffffffffffffff1614610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8190613884565b60405180910390fd5b80600b9081610d999190613cf8565b5050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7590613e3c565b60405180910390fd5b80915050919050565b610e8f611f3f565b73ffffffffffffffffffffffffffffffffffffffff16610ead6112a4565b73ffffffffffffffffffffffffffffffffffffffff1614610f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa90613884565b60405180910390fd5b600047905060008111610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290613ea8565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f91573d6000803e3d6000fd5b505050565b600b8054610fa3906138d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610fcf906138d3565b801561101c5780601f10610ff15761010080835404028352916020019161101c565b820191906000526020600020905b815481529060010190602001808311610fff57829003601f168201915b505050505081565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190613f3a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611109611f3f565b73ffffffffffffffffffffffffffffffffffffffff166111276112a4565b73ffffffffffffffffffffffffffffffffffffffff161461117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490613884565b60405180910390fd5b61118760006123b0565b565b611191611f3f565b73ffffffffffffffffffffffffffffffffffffffff166111af6112a4565b73ffffffffffffffffffffffffffffffffffffffff1614611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc90613884565b60405180910390fd5b7f2d7b40be59985f4e3c0cbc0a4f92c0ffa71e327e81325bc45612acf01432cb63600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051611258929190613f5a565b60405180910390a180600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112d6611f3f565b73ffffffffffffffffffffffffffffffffffffffff166112f46112a4565b73ffffffffffffffffffffffffffffffffffffffff161461134a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134190613884565b60405180910390fd5b8060078190555050565b61135c611f3f565b73ffffffffffffffffffffffffffffffffffffffff1661137a6112a4565b73ffffffffffffffffffffffffffffffffffffffff16146113d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c790613884565b60405180910390fd5b806009546113de9190613fb2565b6008541015611422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141990614058565b60405180910390fd5b60005b81811015611464576009600081548092919061144090614078565b919050555061145183600954612476565b808061145c90614078565b915050611425565b505050565b611471611f3f565b73ffffffffffffffffffffffffffffffffffffffff1661148f6112a4565b73ffffffffffffffffffffffffffffffffffffffff16146114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc90613884565b60405180910390fd5b600082905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161152591906132c3565b602060405180830381865afa158015611542573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156691906140d5565b9050600081116115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a29061414e565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b81526004016115e692919061416e565b6020604051808303816000875af1158015611605573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061162991906141ac565b5050505050565b60606001805461163f906138d3565b80601f016020809104026020016040519081016040528092919081815260200182805461166b906138d3565b80156116b85780601f1061168d576101008083540402835291602001916116b8565b820191906000526020600020905b81548152906001019060200180831161169b57829003601f168201915b5050505050905090565b600e6020528060005260406000206000915054906101000a900460ff1681565b60075481565b6116fa6116f3611f3f565b8383612494565b5050565b61170f611709611f3f565b8361206c565b61174e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174590613b2c565b60405180910390fd5b61175a84848484612600565b50505050565b606061176b82611f47565b6117aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a19061424b565b60405180910390fd5b60006117b461265c565b905060008151116117d457604051806020016040528060008152506117ff565b806117de846126ee565b6040516020016117ef9291906142a7565b6040516020818303038152906040525b915050919050565b60085481565b60001515600a60009054906101000a900460ff16151514611863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185a90614317565b60405180910390fd5b4684146118a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189c90614383565b60405180910390fd5b600e600086815260200190815260200160002060009054906101000a900460ff1615611906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fd906143ef565b60405180910390fd5b856009546119149190613fb2565b6008541015611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90614058565b60405180910390fd5b82156119f057600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e29061445b565b60405180910390fd5b611b46565b600086600754611a00919061447b565b9050600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611aa05780341015611a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a929061452f565b60405180910390fd5b611b44565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401611aff9392919061454f565b6020604051808303816000875af1158015611b1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b4291906141ac565b505b505b600033898989898989604051602001611b659796959493929190614637565b604051602081830303815290604052805190602001209050611bdc83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611bce8361284e565b61287e90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6290614704565b60405180910390fd5b6001600e600088815260200190815260200160002060006101000a81548160ff0219169083151502179055508315611cf6576001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60005b87811015611d385760096000815480929190611d1490614078565b9190505550611d2533600954612476565b8080611d3090614078565b915050611cf9565b50505050505050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611de0611f3f565b73ffffffffffffffffffffffffffffffffffffffff16611dfe6112a4565b73ffffffffffffffffffffffffffffffffffffffff1614611e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4b90613884565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eba90614796565b60405180910390fd5b611ecc816123b0565b50565b60095481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661202683610dd6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061207782611f47565b6120b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ad90614828565b60405180910390fd5b60006120c183610dd6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061210357506121028185611d44565b5b8061214157508373ffffffffffffffffffffffffffffffffffffffff1661212984610a39565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661216a82610dd6565b73ffffffffffffffffffffffffffffffffffffffff16146121c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b7906148ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361222f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122269061494c565b60405180910390fd5b61223a8383836128a5565b612245600082611fb3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612295919061496c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122ec9190613fb2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123ab8383836128aa565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124908282604051806020016040528060008152506128af565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f9906149ec565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125f391906130f9565b60405180910390a3505050565b61260b84848461214a565b6126178484848461290a565b612656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264d90614a7e565b60405180910390fd5b50505050565b6060600b805461266b906138d3565b80601f0160208091040260200160405190810160405280929190818152602001828054612697906138d3565b80156126e45780601f106126b9576101008083540402835291602001916126e4565b820191906000526020600020905b8154815290600101906020018083116126c757829003601f168201915b5050505050905090565b606060008203612735576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612849565b600082905060005b6000821461276757808061275090614078565b915050600a826127609190614acd565b915061273d565b60008167ffffffffffffffff811115612783576127826133d4565b5b6040519080825280601f01601f1916602001820160405280156127b55781602001600182028036833780820191505090505b5090505b60008514612842576001826127ce919061496c565b9150600a856127dd9190614afe565b60306127e99190613fb2565b60f81b8183815181106127ff576127fe614b2f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561283b9190614acd565b94506127b9565b8093505050505b919050565b6000816040516020016128619190614bd5565b604051602081830303815290604052805190602001209050919050565b600080600061288d8585612a91565b9150915061289a81612b12565b819250505092915050565b505050565b505050565b6128b98383612cde565b6128c6600084848461290a565b612905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fc90614a7e565b60405180910390fd5b505050565b600061292b8473ffffffffffffffffffffffffffffffffffffffff16612eb7565b15612a84578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612954611f3f565b8786866040518563ffffffff1660e01b81526004016129769493929190614c50565b6020604051808303816000875af19250505080156129b257506040513d601f19601f820116820180604052508101906129af9190614cb1565b60015b612a34573d80600081146129e2576040519150601f19603f3d011682016040523d82523d6000602084013e6129e7565b606091505b506000815103612a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2390614a7e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a89565b600190505b949350505050565b6000806041835103612ad25760008060006020860151925060408601519150606086015160001a9050612ac687828585612eda565b94509450505050612b0b565b6040835103612b02576000806020850151915060408501519050612af7868383612fe6565b935093505050612b0b565b60006002915091505b9250929050565b60006004811115612b2657612b25614cde565b5b816004811115612b3957612b38614cde565b5b0315612cdb5760016004811115612b5357612b52614cde565b5b816004811115612b6657612b65614cde565b5b03612ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9d90614d59565b60405180910390fd5b60026004811115612bba57612bb9614cde565b5b816004811115612bcd57612bcc614cde565b5b03612c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0490614dc5565b60405180910390fd5b60036004811115612c2157612c20614cde565b5b816004811115612c3457612c33614cde565b5b03612c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6b90614e57565b60405180910390fd5b600480811115612c8757612c86614cde565b5b816004811115612c9a57612c99614cde565b5b03612cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd190614ee9565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4490614f55565b60405180910390fd5b612d5681611f47565b15612d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8d90614fc1565b60405180910390fd5b612da2600083836128a5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612df29190613fb2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612eb3600083836128aa565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612f15576000600391509150612fdd565b601b8560ff1614158015612f2d5750601c8560ff1614155b15612f3f576000600491509150612fdd565b600060018787878760405160008152602001604052604051612f64949392919061500c565b6020604051602081039080840390855afa158015612f86573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612fd457600060019250925050612fdd565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c6130299190613fb2565b905061303787828885612eda565b935093505050935093915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61308e81613059565b811461309957600080fd5b50565b6000813590506130ab81613085565b92915050565b6000602082840312156130c7576130c661304f565b5b60006130d58482850161309c565b91505092915050565b60008115159050919050565b6130f3816130de565b82525050565b600060208201905061310e60008301846130ea565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061313f82613114565b9050919050565b61314f81613134565b811461315a57600080fd5b50565b60008135905061316c81613146565b92915050565b6000602082840312156131885761318761304f565b5b60006131968482850161315d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131d95780820151818401526020810190506131be565b60008484015250505050565b6000601f19601f8301169050919050565b60006132018261319f565b61320b81856131aa565b935061321b8185602086016131bb565b613224816131e5565b840191505092915050565b6000602082019050818103600083015261324981846131f6565b905092915050565b6000819050919050565b61326481613251565b811461326f57600080fd5b50565b6000813590506132818161325b565b92915050565b60006020828403121561329d5761329c61304f565b5b60006132ab84828501613272565b91505092915050565b6132bd81613134565b82525050565b60006020820190506132d860008301846132b4565b92915050565b600080604083850312156132f5576132f461304f565b5b60006133038582860161315d565b925050602061331485828601613272565b9150509250929050565b613327816130de565b811461333257600080fd5b50565b6000813590506133448161331e565b92915050565b6000602082840312156133605761335f61304f565b5b600061336e84828501613335565b91505092915050565b6000806000606084860312156133905761338f61304f565b5b600061339e8682870161315d565b93505060206133af8682870161315d565b92505060406133c086828701613272565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61340c826131e5565b810181811067ffffffffffffffff8211171561342b5761342a6133d4565b5b80604052505050565b600061343e613045565b905061344a8282613403565b919050565b600067ffffffffffffffff82111561346a576134696133d4565b5b613473826131e5565b9050602081019050919050565b82818337600083830152505050565b60006134a261349d8461344f565b613434565b9050828152602081018484840111156134be576134bd6133cf565b5b6134c9848285613480565b509392505050565b600082601f8301126134e6576134e56133ca565b5b81356134f684826020860161348f565b91505092915050565b6000602082840312156135155761351461304f565b5b600082013567ffffffffffffffff81111561353357613532613054565b5b61353f848285016134d1565b91505092915050565b61355181613251565b82525050565b600060208201905061356c6000830184613548565b92915050565b600080604083850312156135895761358861304f565b5b60006135978582860161315d565b92505060206135a88582860161315d565b9150509250929050565b600080604083850312156135c9576135c861304f565b5b60006135d78582860161315d565b92505060206135e885828601613335565b9150509250929050565b600067ffffffffffffffff82111561360d5761360c6133d4565b5b613616826131e5565b9050602081019050919050565b6000613636613631846135f2565b613434565b905082815260208101848484011115613652576136516133cf565b5b61365d848285613480565b509392505050565b600082601f83011261367a576136796133ca565b5b813561368a848260208601613623565b91505092915050565b600080600080608085870312156136ad576136ac61304f565b5b60006136bb8782880161315d565b94505060206136cc8782880161315d565b93505060406136dd87828801613272565b925050606085013567ffffffffffffffff8111156136fe576136fd613054565b5b61370a87828801613665565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112613736576137356133ca565b5b8235905067ffffffffffffffff81111561375357613752613716565b5b60208301915083600182028301111561376f5761376e61371b565b5b9250929050565b60008060008060008060008060e0898b0312156137965761379561304f565b5b60006137a48b828c01613272565b98505060206137b58b828c01613272565b97505060406137c68b828c01613272565b96505060606137d78b828c01613272565b95505060806137e88b828c01613272565b94505060a06137f98b828c01613335565b93505060c089013567ffffffffffffffff81111561381a57613819613054565b5b6138268b828c01613720565b92509250509295985092959890939650565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061386e6020836131aa565b915061387982613838565b602082019050919050565b6000602082019050818103600083015261389d81613861565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806138eb57607f821691505b6020821081036138fe576138fd6138a4565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613960602c836131aa565b915061396b82613904565b604082019050919050565b6000602082019050818103600083015261398f81613953565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006139f26021836131aa565b91506139fd82613996565b604082019050919050565b60006020820190508181036000830152613a21816139e5565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613a846038836131aa565b9150613a8f82613a28565b604082019050919050565b60006020820190508181036000830152613ab381613a77565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613b166031836131aa565b9150613b2182613aba565b604082019050919050565b60006020820190508181036000830152613b4581613b09565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613bae7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613b71565b613bb88683613b71565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613bf5613bf0613beb84613251565b613bd0565b613251565b9050919050565b6000819050919050565b613c0f83613bda565b613c23613c1b82613bfc565b848454613b7e565b825550505050565b600090565b613c38613c2b565b613c43818484613c06565b505050565b5b81811015613c6757613c5c600082613c30565b600181019050613c49565b5050565b601f821115613cac57613c7d81613b4c565b613c8684613b61565b81016020851015613c95578190505b613ca9613ca185613b61565b830182613c48565b50505b505050565b600082821c905092915050565b6000613ccf60001984600802613cb1565b1980831691505092915050565b6000613ce88383613cbe565b9150826002028217905092915050565b613d018261319f565b67ffffffffffffffff811115613d1a57613d196133d4565b5b613d2482546138d3565b613d2f828285613c6b565b600060209050601f831160018114613d625760008415613d50578287015190505b613d5a8582613cdc565b865550613dc2565b601f198416613d7086613b4c565b60005b82811015613d9857848901518255600182019150602085019450602081019050613d73565b86831015613db55784890151613db1601f891682613cbe565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613e266029836131aa565b9150613e3182613dca565b604082019050919050565b60006020820190508181036000830152613e5581613e19565b9050919050565b7f4e6f206574686572206c65667420746f20776974686472617700000000000000600082015250565b6000613e926019836131aa565b9150613e9d82613e5c565b602082019050919050565b60006020820190508181036000830152613ec181613e85565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613f24602a836131aa565b9150613f2f82613ec8565b604082019050919050565b60006020820190508181036000830152613f5381613f17565b9050919050565b6000604082019050613f6f60008301856132b4565b613f7c60208301846132b4565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fbd82613251565b9150613fc883613251565b9250828201905080821115613fe057613fdf613f83565b5b92915050565b7f4d696e74656420746f6b656e7320776f756c642065786365656420737570706c60008201527f792e000000000000000000000000000000000000000000000000000000000000602082015250565b60006140426022836131aa565b915061404d82613fe6565b604082019050919050565b6000602082019050818103600083015261407181614035565b9050919050565b600061408382613251565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036140b5576140b4613f83565b5b600182019050919050565b6000815190506140cf8161325b565b92915050565b6000602082840312156140eb576140ea61304f565b5b60006140f9848285016140c0565b91505092915050565b7f4e6f20746f6b656e73206c65667420746f207769746864726177000000000000600082015250565b6000614138601a836131aa565b915061414382614102565b602082019050919050565b600060208201905081810360008301526141678161412b565b9050919050565b600060408201905061418360008301856132b4565b6141906020830184613548565b9392505050565b6000815190506141a68161331e565b92915050565b6000602082840312156141c2576141c161304f565b5b60006141d084828501614197565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614235602f836131aa565b9150614240826141d9565b604082019050919050565b6000602082019050818103600083015261426481614228565b9050919050565b600081905092915050565b60006142818261319f565b61428b818561426b565b935061429b8185602086016131bb565b80840191505092915050565b60006142b38285614276565b91506142bf8284614276565b91508190509392505050565b7f436f6e7472616374206973207061757365642e00000000000000000000000000600082015250565b60006143016013836131aa565b915061430c826142cb565b602082019050919050565b60006020820190508181036000830152614330816142f4565b9050919050565b7f496e76616c696420636861696e00000000000000000000000000000000000000600082015250565b600061436d600d836131aa565b915061437882614337565b602082019050919050565b6000602082019050818103600083015261439c81614360565b9050919050565b7f5472616e73616374696f6e207573656400000000000000000000000000000000600082015250565b60006143d96010836131aa565b91506143e4826143a3565b602082019050919050565b60006020820190508181036000830152614408816143cc565b9050919050565b7f416c7265616479206d696e746564000000000000000000000000000000000000600082015250565b6000614445600e836131aa565b91506144508261440f565b602082019050919050565b6000602082019050818103600083015261447481614438565b9050919050565b600061448682613251565b915061449183613251565b925082820261449f81613251565b915082820484148315176144b6576144b5613f83565b5b5092915050565b7f4e6f7420656e6f75676820657468657220746f207075726368617365204e465460008201527f732e000000000000000000000000000000000000000000000000000000000000602082015250565b60006145196022836131aa565b9150614524826144bd565b604082019050919050565b600060208201905081810360008301526145488161450c565b9050919050565b600060608201905061456460008301866132b4565b61457160208301856132b4565b61457e6040830184613548565b949350505050565b60008160601b9050919050565b600061459e82614586565b9050919050565b60006145b082614593565b9050919050565b6145c86145c382613134565b6145a5565b82525050565b6000819050919050565b6145e96145e482613251565b6145ce565b82525050565b60008160f81b9050919050565b6000614607826145ef565b9050919050565b6000614619826145fc565b9050919050565b61463161462c826130de565b61460e565b82525050565b6000614643828a6145b7565b60148201915061465382896145d8565b60208201915061466382886145d8565b60208201915061467382876145d8565b60208201915061468382866145d8565b60208201915061469382856145d8565b6020820191506146a38284614620565b60018201915081905098975050505050505050565b7f5369676e6174757265206d69736d617463680000000000000000000000000000600082015250565b60006146ee6012836131aa565b91506146f9826146b8565b602082019050919050565b6000602082019050818103600083015261471d816146e1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147806026836131aa565b915061478b82614724565b604082019050919050565b600060208201905081810360008301526147af81614773565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614812602c836131aa565b915061481d826147b6565b604082019050919050565b6000602082019050818103600083015261484181614805565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006148a46025836131aa565b91506148af82614848565b604082019050919050565b600060208201905081810360008301526148d381614897565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006149366024836131aa565b9150614941826148da565b604082019050919050565b6000602082019050818103600083015261496581614929565b9050919050565b600061497782613251565b915061498283613251565b925082820390508181111561499a57614999613f83565b5b92915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006149d66019836131aa565b91506149e1826149a0565b602082019050919050565b60006020820190508181036000830152614a05816149c9565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614a686032836131aa565b9150614a7382614a0c565b604082019050919050565b60006020820190508181036000830152614a9781614a5b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ad882613251565b9150614ae383613251565b925082614af357614af2614a9e565b5b828204905092915050565b6000614b0982613251565b9150614b1483613251565b925082614b2457614b23614a9e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614b94601c8361426b565b9150614b9f82614b5e565b601c82019050919050565b6000819050919050565b6000819050919050565b614bcf614bca82614baa565b614bb4565b82525050565b6000614be082614b87565b9150614bec8284614bbe565b60208201915081905092915050565b600081519050919050565b600082825260208201905092915050565b6000614c2282614bfb565b614c2c8185614c06565b9350614c3c8185602086016131bb565b614c45816131e5565b840191505092915050565b6000608082019050614c6560008301876132b4565b614c7260208301866132b4565b614c7f6040830185613548565b8181036060830152614c918184614c17565b905095945050505050565b600081519050614cab81613085565b92915050565b600060208284031215614cc757614cc661304f565b5b6000614cd584828501614c9c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000614d436018836131aa565b9150614d4e82614d0d565b602082019050919050565b60006020820190508181036000830152614d7281614d36565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000614daf601f836131aa565b9150614dba82614d79565b602082019050919050565b60006020820190508181036000830152614dde81614da2565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e416022836131aa565b9150614e4c82614de5565b604082019050919050565b60006020820190508181036000830152614e7081614e34565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614ed36022836131aa565b9150614ede82614e77565b604082019050919050565b60006020820190508181036000830152614f0281614ec6565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614f3f6020836131aa565b9150614f4a82614f09565b602082019050919050565b60006020820190508181036000830152614f6e81614f32565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614fab601c836131aa565b9150614fb682614f75565b602082019050919050565b60006020820190508181036000830152614fda81614f9e565b9050919050565b614fea81614baa565b82525050565b600060ff82169050919050565b61500681614ff0565b82525050565b60006080820190506150216000830187614fe1565b61502e6020830186614ffd565b61503b6040830185614fe1565b6150486060830184614fe1565b9594505050505056fea2646970667358221220909f2dd265bcfab7e5609898cd2b5e7ec8107e20cb9e6426e4fcadf56532e52e64736f6c6343000811003368747470733a2f2f6170692e647973746f776f726c642e61692f6d657461646174612f0000000000000000000000001d9b16648d723d4d85d2d82d62844598e2060175000000000000000000000000de466831fde62e5141d49ba9d962d3fa3fae466f

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063715018a61161010d578063a035b1fe116100a0578063d5abeb011161006f578063d5abeb011461072d578063df383e6214610758578063e985e9c514610774578063f2fde38b146107b1578063f84ddf0b146107da576101f9565b8063a035b1fe14610673578063a22cb4651461069e578063b88d4fde146106c7578063c87b56dd146106f0576101f9565b806393f84cfe116100dc57806393f84cfe146105b95780639456fbcc146105e257806395d89b411461060b5780639ace38c214610636576101f9565b8063715018a61461052557806374910a871461053c5780638da5cb5b1461056557806391b7f5ed14610590576101f9565b806342842e0e116101905780636352211e1161015f5780636352211e1461042c578063690d8320146104695780636c0360eb146104925780636e5d0208146104bd57806370a08231146104e8576101f9565b806342842e0e1461038457806355f804b3146103ad5780635b7633d0146103d65780635c975abb14610401576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806314028102146102f557806316c38b3c1461033257806323b872dd1461035b576101f9565b806301ffc9a7146101fe578063046dc1661461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906130b1565b610805565b60405161023291906130f9565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190613172565b6108e7565b005b34801561027057600080fd5b506102796109a7565b604051610286919061322f565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190613287565b610a39565b6040516102c391906132c3565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee91906132de565b610abe565b005b34801561030157600080fd5b5061031c60048036038101906103179190613172565b610bd5565b60405161032991906130f9565b60405180910390f35b34801561033e57600080fd5b506103596004803603810190610354919061334a565b610bf5565b005b34801561036757600080fd5b50610382600480360381019061037d9190613377565b610c8e565b005b34801561039057600080fd5b506103ab60048036038101906103a69190613377565b610cee565b005b3480156103b957600080fd5b506103d460048036038101906103cf91906134ff565b610d0e565b005b3480156103e257600080fd5b506103eb610d9d565b6040516103f891906132c3565b60405180910390f35b34801561040d57600080fd5b50610416610dc3565b60405161042391906130f9565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190613287565b610dd6565b60405161046091906132c3565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b9190613172565b610e87565b005b34801561049e57600080fd5b506104a7610f96565b6040516104b4919061322f565b60405180910390f35b3480156104c957600080fd5b506104d2611024565b6040516104df91906132c3565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190613172565b61104a565b60405161051c9190613557565b60405180910390f35b34801561053157600080fd5b5061053a611101565b005b34801561054857600080fd5b50610563600480360381019061055e9190613172565b611189565b005b34801561057157600080fd5b5061057a6112a4565b60405161058791906132c3565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b29190613287565b6112ce565b005b3480156105c557600080fd5b506105e060048036038101906105db91906132de565b611354565b005b3480156105ee57600080fd5b5061060960048036038101906106049190613572565b611469565b005b34801561061757600080fd5b50610620611630565b60405161062d919061322f565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190613287565b6116c2565b60405161066a91906130f9565b60405180910390f35b34801561067f57600080fd5b506106886116e2565b6040516106959190613557565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c091906135b2565b6116e8565b005b3480156106d357600080fd5b506106ee60048036038101906106e99190613693565b6116fe565b005b3480156106fc57600080fd5b5061071760048036038101906107129190613287565b611760565b604051610724919061322f565b60405180910390f35b34801561073957600080fd5b50610742611807565b60405161074f9190613557565b60405180910390f35b610772600480360381019061076d9190613776565b61180d565b005b34801561078057600080fd5b5061079b60048036038101906107969190613572565b611d44565b6040516107a891906130f9565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d39190613172565b611dd8565b005b3480156107e657600080fd5b506107ef611ecf565b6040516107fc9190613557565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e057506108df82611ed5565b5b9050919050565b6108ef611f3f565b73ffffffffffffffffffffffffffffffffffffffff1661090d6112a4565b73ffffffffffffffffffffffffffffffffffffffff1614610963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095a90613884565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600080546109b6906138d3565b80601f01602080910402602001604051908101604052809291908181526020018280546109e2906138d3565b8015610a2f5780601f10610a0457610100808354040283529160200191610a2f565b820191906000526020600020905b815481529060010190602001808311610a1257829003601f168201915b5050505050905090565b6000610a4482611f47565b610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a90613976565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac982610dd6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3090613a08565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b58611f3f565b73ffffffffffffffffffffffffffffffffffffffff161480610b875750610b8681610b81611f3f565b611d44565b5b610bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbd90613a9a565b60405180910390fd5b610bd08383611fb3565b505050565b600f6020528060005260406000206000915054906101000a900460ff1681565b610bfd611f3f565b73ffffffffffffffffffffffffffffffffffffffff16610c1b6112a4565b73ffffffffffffffffffffffffffffffffffffffff1614610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6890613884565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b610c9f610c99611f3f565b8261206c565b610cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd590613b2c565b60405180910390fd5b610ce983838361214a565b505050565b610d09838383604051806020016040528060008152506116fe565b505050565b610d16611f3f565b73ffffffffffffffffffffffffffffffffffffffff16610d346112a4565b73ffffffffffffffffffffffffffffffffffffffff1614610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8190613884565b60405180910390fd5b80600b9081610d999190613cf8565b5050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7590613e3c565b60405180910390fd5b80915050919050565b610e8f611f3f565b73ffffffffffffffffffffffffffffffffffffffff16610ead6112a4565b73ffffffffffffffffffffffffffffffffffffffff1614610f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa90613884565b60405180910390fd5b600047905060008111610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290613ea8565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f91573d6000803e3d6000fd5b505050565b600b8054610fa3906138d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610fcf906138d3565b801561101c5780601f10610ff15761010080835404028352916020019161101c565b820191906000526020600020905b815481529060010190602001808311610fff57829003601f168201915b505050505081565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190613f3a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611109611f3f565b73ffffffffffffffffffffffffffffffffffffffff166111276112a4565b73ffffffffffffffffffffffffffffffffffffffff161461117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490613884565b60405180910390fd5b61118760006123b0565b565b611191611f3f565b73ffffffffffffffffffffffffffffffffffffffff166111af6112a4565b73ffffffffffffffffffffffffffffffffffffffff1614611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc90613884565b60405180910390fd5b7f2d7b40be59985f4e3c0cbc0a4f92c0ffa71e327e81325bc45612acf01432cb63600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051611258929190613f5a565b60405180910390a180600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112d6611f3f565b73ffffffffffffffffffffffffffffffffffffffff166112f46112a4565b73ffffffffffffffffffffffffffffffffffffffff161461134a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134190613884565b60405180910390fd5b8060078190555050565b61135c611f3f565b73ffffffffffffffffffffffffffffffffffffffff1661137a6112a4565b73ffffffffffffffffffffffffffffffffffffffff16146113d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c790613884565b60405180910390fd5b806009546113de9190613fb2565b6008541015611422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141990614058565b60405180910390fd5b60005b81811015611464576009600081548092919061144090614078565b919050555061145183600954612476565b808061145c90614078565b915050611425565b505050565b611471611f3f565b73ffffffffffffffffffffffffffffffffffffffff1661148f6112a4565b73ffffffffffffffffffffffffffffffffffffffff16146114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc90613884565b60405180910390fd5b600082905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161152591906132c3565b602060405180830381865afa158015611542573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156691906140d5565b9050600081116115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a29061414e565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b81526004016115e692919061416e565b6020604051808303816000875af1158015611605573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061162991906141ac565b5050505050565b60606001805461163f906138d3565b80601f016020809104026020016040519081016040528092919081815260200182805461166b906138d3565b80156116b85780601f1061168d576101008083540402835291602001916116b8565b820191906000526020600020905b81548152906001019060200180831161169b57829003601f168201915b5050505050905090565b600e6020528060005260406000206000915054906101000a900460ff1681565b60075481565b6116fa6116f3611f3f565b8383612494565b5050565b61170f611709611f3f565b8361206c565b61174e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174590613b2c565b60405180910390fd5b61175a84848484612600565b50505050565b606061176b82611f47565b6117aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a19061424b565b60405180910390fd5b60006117b461265c565b905060008151116117d457604051806020016040528060008152506117ff565b806117de846126ee565b6040516020016117ef9291906142a7565b6040516020818303038152906040525b915050919050565b60085481565b60001515600a60009054906101000a900460ff16151514611863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185a90614317565b60405180910390fd5b4684146118a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189c90614383565b60405180910390fd5b600e600086815260200190815260200160002060009054906101000a900460ff1615611906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fd906143ef565b60405180910390fd5b856009546119149190613fb2565b6008541015611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90614058565b60405180910390fd5b82156119f057600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e29061445b565b60405180910390fd5b611b46565b600086600754611a00919061447b565b9050600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611aa05780341015611a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a929061452f565b60405180910390fd5b611b44565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401611aff9392919061454f565b6020604051808303816000875af1158015611b1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b4291906141ac565b505b505b600033898989898989604051602001611b659796959493929190614637565b604051602081830303815290604052805190602001209050611bdc83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611bce8361284e565b61287e90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6290614704565b60405180910390fd5b6001600e600088815260200190815260200160002060006101000a81548160ff0219169083151502179055508315611cf6576001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60005b87811015611d385760096000815480929190611d1490614078565b9190505550611d2533600954612476565b8080611d3090614078565b915050611cf9565b50505050505050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611de0611f3f565b73ffffffffffffffffffffffffffffffffffffffff16611dfe6112a4565b73ffffffffffffffffffffffffffffffffffffffff1614611e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4b90613884565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eba90614796565b60405180910390fd5b611ecc816123b0565b50565b60095481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661202683610dd6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061207782611f47565b6120b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ad90614828565b60405180910390fd5b60006120c183610dd6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061210357506121028185611d44565b5b8061214157508373ffffffffffffffffffffffffffffffffffffffff1661212984610a39565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661216a82610dd6565b73ffffffffffffffffffffffffffffffffffffffff16146121c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b7906148ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361222f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122269061494c565b60405180910390fd5b61223a8383836128a5565b612245600082611fb3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612295919061496c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122ec9190613fb2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123ab8383836128aa565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124908282604051806020016040528060008152506128af565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f9906149ec565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125f391906130f9565b60405180910390a3505050565b61260b84848461214a565b6126178484848461290a565b612656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264d90614a7e565b60405180910390fd5b50505050565b6060600b805461266b906138d3565b80601f0160208091040260200160405190810160405280929190818152602001828054612697906138d3565b80156126e45780601f106126b9576101008083540402835291602001916126e4565b820191906000526020600020905b8154815290600101906020018083116126c757829003601f168201915b5050505050905090565b606060008203612735576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612849565b600082905060005b6000821461276757808061275090614078565b915050600a826127609190614acd565b915061273d565b60008167ffffffffffffffff811115612783576127826133d4565b5b6040519080825280601f01601f1916602001820160405280156127b55781602001600182028036833780820191505090505b5090505b60008514612842576001826127ce919061496c565b9150600a856127dd9190614afe565b60306127e99190613fb2565b60f81b8183815181106127ff576127fe614b2f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561283b9190614acd565b94506127b9565b8093505050505b919050565b6000816040516020016128619190614bd5565b604051602081830303815290604052805190602001209050919050565b600080600061288d8585612a91565b9150915061289a81612b12565b819250505092915050565b505050565b505050565b6128b98383612cde565b6128c6600084848461290a565b612905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fc90614a7e565b60405180910390fd5b505050565b600061292b8473ffffffffffffffffffffffffffffffffffffffff16612eb7565b15612a84578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612954611f3f565b8786866040518563ffffffff1660e01b81526004016129769493929190614c50565b6020604051808303816000875af19250505080156129b257506040513d601f19601f820116820180604052508101906129af9190614cb1565b60015b612a34573d80600081146129e2576040519150601f19603f3d011682016040523d82523d6000602084013e6129e7565b606091505b506000815103612a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2390614a7e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a89565b600190505b949350505050565b6000806041835103612ad25760008060006020860151925060408601519150606086015160001a9050612ac687828585612eda565b94509450505050612b0b565b6040835103612b02576000806020850151915060408501519050612af7868383612fe6565b935093505050612b0b565b60006002915091505b9250929050565b60006004811115612b2657612b25614cde565b5b816004811115612b3957612b38614cde565b5b0315612cdb5760016004811115612b5357612b52614cde565b5b816004811115612b6657612b65614cde565b5b03612ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9d90614d59565b60405180910390fd5b60026004811115612bba57612bb9614cde565b5b816004811115612bcd57612bcc614cde565b5b03612c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0490614dc5565b60405180910390fd5b60036004811115612c2157612c20614cde565b5b816004811115612c3457612c33614cde565b5b03612c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6b90614e57565b60405180910390fd5b600480811115612c8757612c86614cde565b5b816004811115612c9a57612c99614cde565b5b03612cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd190614ee9565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4490614f55565b60405180910390fd5b612d5681611f47565b15612d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8d90614fc1565b60405180910390fd5b612da2600083836128a5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612df29190613fb2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612eb3600083836128aa565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612f15576000600391509150612fdd565b601b8560ff1614158015612f2d5750601c8560ff1614155b15612f3f576000600491509150612fdd565b600060018787878760405160008152602001604052604051612f64949392919061500c565b6020604051602081039080840390855afa158015612f86573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612fd457600060019250925050612fdd565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c6130299190613fb2565b905061303787828885612eda565b935093505050935093915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61308e81613059565b811461309957600080fd5b50565b6000813590506130ab81613085565b92915050565b6000602082840312156130c7576130c661304f565b5b60006130d58482850161309c565b91505092915050565b60008115159050919050565b6130f3816130de565b82525050565b600060208201905061310e60008301846130ea565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061313f82613114565b9050919050565b61314f81613134565b811461315a57600080fd5b50565b60008135905061316c81613146565b92915050565b6000602082840312156131885761318761304f565b5b60006131968482850161315d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131d95780820151818401526020810190506131be565b60008484015250505050565b6000601f19601f8301169050919050565b60006132018261319f565b61320b81856131aa565b935061321b8185602086016131bb565b613224816131e5565b840191505092915050565b6000602082019050818103600083015261324981846131f6565b905092915050565b6000819050919050565b61326481613251565b811461326f57600080fd5b50565b6000813590506132818161325b565b92915050565b60006020828403121561329d5761329c61304f565b5b60006132ab84828501613272565b91505092915050565b6132bd81613134565b82525050565b60006020820190506132d860008301846132b4565b92915050565b600080604083850312156132f5576132f461304f565b5b60006133038582860161315d565b925050602061331485828601613272565b9150509250929050565b613327816130de565b811461333257600080fd5b50565b6000813590506133448161331e565b92915050565b6000602082840312156133605761335f61304f565b5b600061336e84828501613335565b91505092915050565b6000806000606084860312156133905761338f61304f565b5b600061339e8682870161315d565b93505060206133af8682870161315d565b92505060406133c086828701613272565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61340c826131e5565b810181811067ffffffffffffffff8211171561342b5761342a6133d4565b5b80604052505050565b600061343e613045565b905061344a8282613403565b919050565b600067ffffffffffffffff82111561346a576134696133d4565b5b613473826131e5565b9050602081019050919050565b82818337600083830152505050565b60006134a261349d8461344f565b613434565b9050828152602081018484840111156134be576134bd6133cf565b5b6134c9848285613480565b509392505050565b600082601f8301126134e6576134e56133ca565b5b81356134f684826020860161348f565b91505092915050565b6000602082840312156135155761351461304f565b5b600082013567ffffffffffffffff81111561353357613532613054565b5b61353f848285016134d1565b91505092915050565b61355181613251565b82525050565b600060208201905061356c6000830184613548565b92915050565b600080604083850312156135895761358861304f565b5b60006135978582860161315d565b92505060206135a88582860161315d565b9150509250929050565b600080604083850312156135c9576135c861304f565b5b60006135d78582860161315d565b92505060206135e885828601613335565b9150509250929050565b600067ffffffffffffffff82111561360d5761360c6133d4565b5b613616826131e5565b9050602081019050919050565b6000613636613631846135f2565b613434565b905082815260208101848484011115613652576136516133cf565b5b61365d848285613480565b509392505050565b600082601f83011261367a576136796133ca565b5b813561368a848260208601613623565b91505092915050565b600080600080608085870312156136ad576136ac61304f565b5b60006136bb8782880161315d565b94505060206136cc8782880161315d565b93505060406136dd87828801613272565b925050606085013567ffffffffffffffff8111156136fe576136fd613054565b5b61370a87828801613665565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112613736576137356133ca565b5b8235905067ffffffffffffffff81111561375357613752613716565b5b60208301915083600182028301111561376f5761376e61371b565b5b9250929050565b60008060008060008060008060e0898b0312156137965761379561304f565b5b60006137a48b828c01613272565b98505060206137b58b828c01613272565b97505060406137c68b828c01613272565b96505060606137d78b828c01613272565b95505060806137e88b828c01613272565b94505060a06137f98b828c01613335565b93505060c089013567ffffffffffffffff81111561381a57613819613054565b5b6138268b828c01613720565b92509250509295985092959890939650565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061386e6020836131aa565b915061387982613838565b602082019050919050565b6000602082019050818103600083015261389d81613861565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806138eb57607f821691505b6020821081036138fe576138fd6138a4565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613960602c836131aa565b915061396b82613904565b604082019050919050565b6000602082019050818103600083015261398f81613953565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006139f26021836131aa565b91506139fd82613996565b604082019050919050565b60006020820190508181036000830152613a21816139e5565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613a846038836131aa565b9150613a8f82613a28565b604082019050919050565b60006020820190508181036000830152613ab381613a77565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613b166031836131aa565b9150613b2182613aba565b604082019050919050565b60006020820190508181036000830152613b4581613b09565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613bae7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613b71565b613bb88683613b71565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613bf5613bf0613beb84613251565b613bd0565b613251565b9050919050565b6000819050919050565b613c0f83613bda565b613c23613c1b82613bfc565b848454613b7e565b825550505050565b600090565b613c38613c2b565b613c43818484613c06565b505050565b5b81811015613c6757613c5c600082613c30565b600181019050613c49565b5050565b601f821115613cac57613c7d81613b4c565b613c8684613b61565b81016020851015613c95578190505b613ca9613ca185613b61565b830182613c48565b50505b505050565b600082821c905092915050565b6000613ccf60001984600802613cb1565b1980831691505092915050565b6000613ce88383613cbe565b9150826002028217905092915050565b613d018261319f565b67ffffffffffffffff811115613d1a57613d196133d4565b5b613d2482546138d3565b613d2f828285613c6b565b600060209050601f831160018114613d625760008415613d50578287015190505b613d5a8582613cdc565b865550613dc2565b601f198416613d7086613b4c565b60005b82811015613d9857848901518255600182019150602085019450602081019050613d73565b86831015613db55784890151613db1601f891682613cbe565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613e266029836131aa565b9150613e3182613dca565b604082019050919050565b60006020820190508181036000830152613e5581613e19565b9050919050565b7f4e6f206574686572206c65667420746f20776974686472617700000000000000600082015250565b6000613e926019836131aa565b9150613e9d82613e5c565b602082019050919050565b60006020820190508181036000830152613ec181613e85565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613f24602a836131aa565b9150613f2f82613ec8565b604082019050919050565b60006020820190508181036000830152613f5381613f17565b9050919050565b6000604082019050613f6f60008301856132b4565b613f7c60208301846132b4565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fbd82613251565b9150613fc883613251565b9250828201905080821115613fe057613fdf613f83565b5b92915050565b7f4d696e74656420746f6b656e7320776f756c642065786365656420737570706c60008201527f792e000000000000000000000000000000000000000000000000000000000000602082015250565b60006140426022836131aa565b915061404d82613fe6565b604082019050919050565b6000602082019050818103600083015261407181614035565b9050919050565b600061408382613251565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036140b5576140b4613f83565b5b600182019050919050565b6000815190506140cf8161325b565b92915050565b6000602082840312156140eb576140ea61304f565b5b60006140f9848285016140c0565b91505092915050565b7f4e6f20746f6b656e73206c65667420746f207769746864726177000000000000600082015250565b6000614138601a836131aa565b915061414382614102565b602082019050919050565b600060208201905081810360008301526141678161412b565b9050919050565b600060408201905061418360008301856132b4565b6141906020830184613548565b9392505050565b6000815190506141a68161331e565b92915050565b6000602082840312156141c2576141c161304f565b5b60006141d084828501614197565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614235602f836131aa565b9150614240826141d9565b604082019050919050565b6000602082019050818103600083015261426481614228565b9050919050565b600081905092915050565b60006142818261319f565b61428b818561426b565b935061429b8185602086016131bb565b80840191505092915050565b60006142b38285614276565b91506142bf8284614276565b91508190509392505050565b7f436f6e7472616374206973207061757365642e00000000000000000000000000600082015250565b60006143016013836131aa565b915061430c826142cb565b602082019050919050565b60006020820190508181036000830152614330816142f4565b9050919050565b7f496e76616c696420636861696e00000000000000000000000000000000000000600082015250565b600061436d600d836131aa565b915061437882614337565b602082019050919050565b6000602082019050818103600083015261439c81614360565b9050919050565b7f5472616e73616374696f6e207573656400000000000000000000000000000000600082015250565b60006143d96010836131aa565b91506143e4826143a3565b602082019050919050565b60006020820190508181036000830152614408816143cc565b9050919050565b7f416c7265616479206d696e746564000000000000000000000000000000000000600082015250565b6000614445600e836131aa565b91506144508261440f565b602082019050919050565b6000602082019050818103600083015261447481614438565b9050919050565b600061448682613251565b915061449183613251565b925082820261449f81613251565b915082820484148315176144b6576144b5613f83565b5b5092915050565b7f4e6f7420656e6f75676820657468657220746f207075726368617365204e465460008201527f732e000000000000000000000000000000000000000000000000000000000000602082015250565b60006145196022836131aa565b9150614524826144bd565b604082019050919050565b600060208201905081810360008301526145488161450c565b9050919050565b600060608201905061456460008301866132b4565b61457160208301856132b4565b61457e6040830184613548565b949350505050565b60008160601b9050919050565b600061459e82614586565b9050919050565b60006145b082614593565b9050919050565b6145c86145c382613134565b6145a5565b82525050565b6000819050919050565b6145e96145e482613251565b6145ce565b82525050565b60008160f81b9050919050565b6000614607826145ef565b9050919050565b6000614619826145fc565b9050919050565b61463161462c826130de565b61460e565b82525050565b6000614643828a6145b7565b60148201915061465382896145d8565b60208201915061466382886145d8565b60208201915061467382876145d8565b60208201915061468382866145d8565b60208201915061469382856145d8565b6020820191506146a38284614620565b60018201915081905098975050505050505050565b7f5369676e6174757265206d69736d617463680000000000000000000000000000600082015250565b60006146ee6012836131aa565b91506146f9826146b8565b602082019050919050565b6000602082019050818103600083015261471d816146e1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147806026836131aa565b915061478b82614724565b604082019050919050565b600060208201905081810360008301526147af81614773565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614812602c836131aa565b915061481d826147b6565b604082019050919050565b6000602082019050818103600083015261484181614805565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006148a46025836131aa565b91506148af82614848565b604082019050919050565b600060208201905081810360008301526148d381614897565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006149366024836131aa565b9150614941826148da565b604082019050919050565b6000602082019050818103600083015261496581614929565b9050919050565b600061497782613251565b915061498283613251565b925082820390508181111561499a57614999613f83565b5b92915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006149d66019836131aa565b91506149e1826149a0565b602082019050919050565b60006020820190508181036000830152614a05816149c9565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614a686032836131aa565b9150614a7382614a0c565b604082019050919050565b60006020820190508181036000830152614a9781614a5b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ad882613251565b9150614ae383613251565b925082614af357614af2614a9e565b5b828204905092915050565b6000614b0982613251565b9150614b1483613251565b925082614b2457614b23614a9e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614b94601c8361426b565b9150614b9f82614b5e565b601c82019050919050565b6000819050919050565b6000819050919050565b614bcf614bca82614baa565b614bb4565b82525050565b6000614be082614b87565b9150614bec8284614bbe565b60208201915081905092915050565b600081519050919050565b600082825260208201905092915050565b6000614c2282614bfb565b614c2c8185614c06565b9350614c3c8185602086016131bb565b614c45816131e5565b840191505092915050565b6000608082019050614c6560008301876132b4565b614c7260208301866132b4565b614c7f6040830185613548565b8181036060830152614c918184614c17565b905095945050505050565b600081519050614cab81613085565b92915050565b600060208284031215614cc757614cc661304f565b5b6000614cd584828501614c9c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000614d436018836131aa565b9150614d4e82614d0d565b602082019050919050565b60006020820190508181036000830152614d7281614d36565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000614daf601f836131aa565b9150614dba82614d79565b602082019050919050565b60006020820190508181036000830152614dde81614da2565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e416022836131aa565b9150614e4c82614de5565b604082019050919050565b60006020820190508181036000830152614e7081614e34565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614ed36022836131aa565b9150614ede82614e77565b604082019050919050565b60006020820190508181036000830152614f0281614ec6565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614f3f6020836131aa565b9150614f4a82614f09565b602082019050919050565b60006020820190508181036000830152614f6e81614f32565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614fab601c836131aa565b9150614fb682614f75565b602082019050919050565b60006020820190508181036000830152614fda81614f9e565b9050919050565b614fea81614baa565b82525050565b600060ff82169050919050565b61500681614ff0565b82525050565b60006080820190506150216000830187614fe1565b61502e6020830186614ffd565b61503b6040830185614fe1565b6150486060830184614fe1565b9594505050505056fea2646970667358221220909f2dd265bcfab7e5609898cd2b5e7ec8107e20cb9e6426e4fcadf56532e52e64736f6c63430008110033

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

0000000000000000000000001d9b16648d723d4d85d2d82d62844598e2060175000000000000000000000000de466831fde62e5141d49ba9d962d3fa3fae466f

-----Decoded View---------------
Arg [0] : _signerAddress (address): 0x1d9b16648D723d4d85d2d82d62844598E2060175
Arg [1] : _dystoTokenAddress (address): 0xDe466831fdE62e5141d49BA9d962D3fa3fAe466F

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000001d9b16648d723d4d85d2d82d62844598e2060175
Arg [1] : 000000000000000000000000de466831fde62e5141d49ba9d962d3fa3fae466f


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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