ETH Price: $2,877.33 (-9.11%)
Gas: 12 Gwei

Token

Flipside ShroomDK (Shroom)
 

Overview

Max Total Supply

2,589 Shroom

Holders

1,854

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ritoo.eth
Balance
2 Shroom
0x3d0af7759c096293fbc37308db7c9629ba721730
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:
ShroomDK

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

/// @custom:security-contact [email protected]
contract ShroomDK is ERC721, ERC721Enumerable, ERC721Burnable, Ownable {
    using Counters for Counters.Counter;
    using ECDSA for bytes32;

    Counters.Counter private _tokenIdCounter;

    bool public mintOpen = false;

    string public _baseURL = "https://api.flipsidenfts.com/metadata/shroomdk/";
    address internal _verifiedSigner;

    mapping(string => uint16) public mintCount; // this is formatUserName(username) to the user's mintcount
    mapping(string => uint16) public round; // this is raw username to the user's minting round

    uint256 public defaultMintPrice = 0;
    uint16 public defaultMaxMint = 3;

    constructor(address verifiedSigner) ERC721("Flipside ShroomDK", "Shroom") {
        _verifiedSigner = verifiedSigner;
    }

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

    function contractURI() public view returns (string memory) {
        return _baseURI();
    }

    function mint(bytes calldata signature, string calldata username) external payable {
        require(msg.value >= defaultMintPrice, "Not enough ETH sent; check price!");
        require(mintOpen, "Minting is not open");
        require(mintCount[formatUserName(username)] < defaultMaxMint, "Cannot mint more any more with this account!");

        uint256 tokenId = _tokenIdCounter.current();
        require(verify(signature, username), "Signature is not valid, can only mint through flipside website!");

        _tokenIdCounter.increment();
        mintCount[formatUserName(username)] = mintCount[formatUserName(username)] + 1;

        _safeMint(_msgSender(), tokenId); // we mint to the sender
    }

    // ----------------------------------------------------------------- Verification

    /**
     * @dev Verifies the data hosted at the URI matches the signature
     */
    function verify(bytes memory signature, string calldata username) public view returns (bool) {
        bytes32 hashed = hashPayload(username);
        address signer = recoverSignerAddress(hashed, signature);

        return (signer == _verifiedSigner);
    }

    /**
     * @dev Hashes the data payload
     */
    function hashPayload(string calldata username) public pure returns (bytes32) {
        return keccak256(abi.encode(username)).toEthSignedMessageHash();
    }

    /**
     * @dev Verifies the data hosted at the URI matches the signature
     */
    function recoverSignerAddress(bytes32 data, bytes memory signedData) public pure returns (address) {
        return data.toEthSignedMessageHash().recover(signedData);
    }

    function formatUserName(string memory username) public view returns (string memory) {
        return string(abi.encodePacked(round[username], "-+-", username));
    }

    // ----------------------------------------------------------------- Owner Functions

    function setMintPrice(uint256 price) external onlyOwner {
        defaultMintPrice = price;
    }

    function updateBaseURI(string calldata newBaseURI) external onlyOwner {
        _baseURL = newBaseURI;
    }

    function openMint(bool open) external onlyOwner {
        mintOpen = open;
    }

    function setVerifiedSigner(address signer) external onlyOwner {
        _verifiedSigner = signer;
    }

    function withdraw() external onlyOwner {
        payable(address(_msgSender())).transfer(address(this).balance);
    }

    function setMaxMint(uint16 newMax) external onlyOwner {
        defaultMaxMint = newMax;
    }

    function increaseRoundForUser(string memory user) public onlyOwner {
        round[user] = round[user] + 1;
    }

    // ----------------------------------------------------------------- Solidity

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

File 2 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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 overriden 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 || getApproved(tokenId) == spender || isApprovedForAll(owner, 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 16 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 4 of 16 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 5 of 16 : 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 6 of 16 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 7 of 16 : 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 8 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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`, 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

File 9 of 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 16 : 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 11 of 16 : 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 12 of 16 : 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 13 of 16 : 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 14 of 16 : 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 15 of 16 : 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);
}

File 16 of 16 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"verifiedSigner","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":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":[],"name":"_baseURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultMaxMint","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"username","type":"string"}],"name":"formatUserName","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":"string","name":"username","type":"string"}],"name":"hashPayload","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string","name":"user","type":"string"}],"name":"increaseRoundForUser","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"string","name":"username","type":"string"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"mintCount","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"open","type":"bool"}],"name":"openMint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"bytes32","name":"data","type":"bytes32"},{"internalType":"bytes","name":"signedData","type":"bytes"}],"name":"recoverSignerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"round","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","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":"uint16","name":"newMax","type":"uint16"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"setVerifiedSigner","outputs":[],"stateMutability":"nonpayable","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"string","name":"newBaseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"string","name":"username","type":"string"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600c60006101000a81548160ff0219169083151502179055506040518060600160405280602f815260200162005953602f9139600d9080519060200190620000509291906200027d565b5060006011556003601260006101000a81548161ffff021916908361ffff1602179055503480156200008157600080fd5b5060405162005982380380620059828339818101604052810190620000a7919062000397565b6040518060400160405280601181526020017f466c697073696465205368726f6f6d444b0000000000000000000000000000008152506040518060400160405280600681526020017f5368726f6f6d000000000000000000000000000000000000000000000000000081525081600090805190602001906200012b9291906200027d565b508060019080519060200190620001449291906200027d565b505050620001676200015b620001af60201b60201c565b620001b760201b60201c565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506200042e565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028b90620003f8565b90600052602060002090601f016020900481019282620002af5760008555620002fb565b82601f10620002ca57805160ff1916838001178555620002fb565b82800160010185558215620002fb579182015b82811115620002fa578251825591602001919060010190620002dd565b5b5090506200030a91906200030e565b5090565b5b80821115620003295760008160009055506001016200030f565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200035f8262000332565b9050919050565b620003718162000352565b81146200037d57600080fd5b50565b600081519050620003918162000366565b92915050565b600060208284031215620003b057620003af6200032d565b5b6000620003c08482850162000380565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200041157607f821691505b60208210811415620004285762000427620003c9565b5b50919050565b615515806200043e6000396000f3fe6080604052600436106102305760003560e01c8063715018a61161012e578063b88d4fde116100ab578063e8a3d4851161006f578063e8a3d48514610888578063e985e9c5146108b3578063f2fde38b146108f0578063f4a0a52814610919578063f9e0edae1461094257610230565b8063b88d4fde14610793578063bd9e7ec2146107bc578063c28b9668146107e5578063c2962bc714610822578063c87b56dd1461084b57610230565b8063931688cb116100f2578063931688cb146106b057806395d89b41146106d9578063978528c0146107045780639969fcba1461072d578063a22cb4651461076a57610230565b8063715018a6146105c95780637954a7d4146105e057806389c92b991461060b5780638da5cb5b14610648578063914f0e951461067357610230565b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce7146104ac57806358a85bca146104e9578063606cd543146105125780636352211e1461054f57806370a082311461058c57610230565b80632f745c59146103db5780633ccfd60b1461041857806342842e0e1461042f57806342966c6814610458578063471b8c461461048157610230565b806318160ddd1161020357806318160ddd14610303578063185da0a31461032e57806323b872dd1461036b57806324bbd049146103945780632b1ccc9a146103bf57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906136bb565b61096d565b6040516102699190613703565b60405180910390f35b34801561027e57600080fd5b5061028761097f565b60405161029491906137b7565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf919061380f565b610a11565b6040516102d1919061387d565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc91906138c4565b610a96565b005b34801561030f57600080fd5b50610318610bae565b6040516103259190613913565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190613993565b610bbb565b60405161036291906139f9565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190613a14565b610bf6565b005b3480156103a057600080fd5b506103a9610c56565b6040516103b69190613703565b60405180910390f35b6103d960048036038101906103d49190613abd565b610c69565b005b3480156103e757600080fd5b5061040260048036038101906103fd91906138c4565b610f96565b60405161040f9190613913565b60405180910390f35b34801561042457600080fd5b5061042d61103b565b005b34801561043b57600080fd5b5061045660048036038101906104519190613a14565b611107565b005b34801561046457600080fd5b5061047f600480360381019061047a919061380f565b611127565b005b34801561048d57600080fd5b50610496611183565b6040516104a39190613b5b565b60405180910390f35b3480156104b857600080fd5b506104d360048036038101906104ce919061380f565b611197565b6040516104e09190613913565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b9190613ba2565b611208565b005b34801561051e57600080fd5b5061053960048036038101906105349190613cff565b6112a1565b6040516105469190613b5b565b60405180910390f35b34801561055b57600080fd5b506105766004803603810190610571919061380f565b6112d8565b604051610583919061387d565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae9190613d48565b61138a565b6040516105c09190613913565b60405180910390f35b3480156105d557600080fd5b506105de611442565b005b3480156105ec57600080fd5b506105f56114ca565b6040516106029190613913565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d9190613e42565b6114d0565b60405161063f919061387d565b60405180910390f35b34801561065457600080fd5b5061065d6114f5565b60405161066a919061387d565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190613e9e565b61151f565b6040516106a79190613703565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190613993565b611598565b005b3480156106e557600080fd5b506106ee61162a565b6040516106fb91906137b7565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190613d48565b6116bc565b005b34801561073957600080fd5b50610754600480360381019061074f9190613cff565b61177c565b60405161076191906137b7565b60405180910390f35b34801561077657600080fd5b50610791600480360381019061078c9190613f1a565b6117d3565b005b34801561079f57600080fd5b506107ba60048036038101906107b59190613f5a565b6117e9565b005b3480156107c857600080fd5b506107e360048036038101906107de9190613cff565b61184b565b005b3480156107f157600080fd5b5061080c60048036038101906108079190613cff565b61193b565b6040516108199190613b5b565b60405180910390f35b34801561082e57600080fd5b5061084960048036038101906108449190614009565b611972565b005b34801561085757600080fd5b50610872600480360381019061086d919061380f565b611a0e565b60405161087f91906137b7565b60405180910390f35b34801561089457600080fd5b5061089d611ab5565b6040516108aa91906137b7565b60405180910390f35b3480156108bf57600080fd5b506108da60048036038101906108d59190614036565b611ac4565b6040516108e79190613703565b60405180910390f35b3480156108fc57600080fd5b5061091760048036038101906109129190613d48565b611b58565b005b34801561092557600080fd5b50610940600480360381019061093b919061380f565b611c50565b005b34801561094e57600080fd5b50610957611cd6565b60405161096491906137b7565b60405180910390f35b600061097882611d64565b9050919050565b60606000805461098e906140a5565b80601f01602080910402602001604051908101604052809291908181526020018280546109ba906140a5565b8015610a075780601f106109dc57610100808354040283529160200191610a07565b820191906000526020600020905b8154815290600101906020018083116109ea57829003601f168201915b5050505050905090565b6000610a1c82611dde565b610a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5290614149565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa1826112d8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b09906141db565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b31611e4a565b73ffffffffffffffffffffffffffffffffffffffff161480610b605750610b5f81610b5a611e4a565b611ac4565b5b610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b969061426d565b60405180910390fd5b610ba98383611e52565b505050565b6000600880549050905090565b6000610bee8383604051602001610bd39291906142ba565b60405160208183030381529060405280519060200120611f0b565b905092915050565b610c07610c01611e4a565b82611f3b565b610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d90614350565b60405180910390fd5b610c51838383612019565b505050565b600c60009054906101000a900460ff1681565b601154341015610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca5906143e2565b60405180910390fd5b600c60009054906101000a900460ff16610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf49061444e565b60405180910390fd5b601260009054906101000a900461ffff1661ffff16600f610d6184848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061177c565b604051610d6e91906144aa565b908152602001604051809103902060009054906101000a900461ffff1661ffff1610610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc690614533565b60405180910390fd5b6000610ddb600b612280565b9050610e2c85858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050848461151f565b610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e62906145c5565b60405180910390fd5b610e75600b61228e565b6001600f610ec685858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061177c565b604051610ed391906144aa565b908152602001604051809103902060009054906101000a900461ffff16610efa9190614614565b600f610f4985858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061177c565b604051610f5691906144aa565b908152602001604051809103902060006101000a81548161ffff021916908361ffff160217905550610f8f610f89611e4a565b826122a4565b5050505050565b6000610fa18361138a565b8210610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd9906146be565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611043611e4a565b73ffffffffffffffffffffffffffffffffffffffff166110616114f5565b73ffffffffffffffffffffffffffffffffffffffff16146110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae9061472a565b60405180910390fd5b6110bf611e4a565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611104573d6000803e3d6000fd5b50565b611122838383604051806020016040528060008152506117e9565b505050565b611138611132611e4a565b82611f3b565b611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e906147bc565b60405180910390fd5b611180816122c2565b50565b601260009054906101000a900461ffff1681565b60006111a1610bae565b82106111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d99061484e565b60405180910390fd5b600882815481106111f6576111f561486e565b5b90600052602060002001549050919050565b611210611e4a565b73ffffffffffffffffffffffffffffffffffffffff1661122e6114f5565b73ffffffffffffffffffffffffffffffffffffffff1614611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b9061472a565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b600f818051602081018201805184825260208301602085012081835280955050505050506000915054906101000a900461ffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611381576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113789061490f565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f2906149a1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61144a611e4a565b73ffffffffffffffffffffffffffffffffffffffff166114686114f5565b73ffffffffffffffffffffffffffffffffffffffff16146114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b59061472a565b60405180910390fd5b6114c860006123df565b565b60115481565b60006114ed826114df85611f0b565b6124a590919063ffffffff16565b905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008061152c8484610bbb565b9050600061153a82876114d0565b9050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614925050509392505050565b6115a0611e4a565b73ffffffffffffffffffffffffffffffffffffffff166115be6114f5565b73ffffffffffffffffffffffffffffffffffffffff1614611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b9061472a565b60405180910390fd5b8181600d91906116259291906135ac565b505050565b606060018054611639906140a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611665906140a5565b80156116b25780601f10611687576101008083540402835291602001916116b2565b820191906000526020600020905b81548152906001019060200180831161169557829003601f168201915b5050505050905090565b6116c4611e4a565b73ffffffffffffffffffffffffffffffffffffffff166116e26114f5565b73ffffffffffffffffffffffffffffffffffffffff1614611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f9061472a565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060108260405161178e91906144aa565b908152602001604051809103902060009054906101000a900461ffff16826040516020016117bd929190614a43565b6040516020818303038152906040529050919050565b6117e56117de611e4a565b83836124cc565b5050565b6117fa6117f4611e4a565b83611f3b565b611839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183090614350565b60405180910390fd5b61184584848484612639565b50505050565b611853611e4a565b73ffffffffffffffffffffffffffffffffffffffff166118716114f5565b73ffffffffffffffffffffffffffffffffffffffff16146118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be9061472a565b60405180910390fd5b60016010826040516118d991906144aa565b908152602001604051809103902060009054906101000a900461ffff166119009190614614565b60108260405161191091906144aa565b908152602001604051809103902060006101000a81548161ffff021916908361ffff16021790555050565b6010818051602081018201805184825260208301602085012081835280955050505050506000915054906101000a900461ffff1681565b61197a611e4a565b73ffffffffffffffffffffffffffffffffffffffff166119986114f5565b73ffffffffffffffffffffffffffffffffffffffff16146119ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e59061472a565b60405180910390fd5b80601260006101000a81548161ffff021916908361ffff16021790555050565b6060611a1982611dde565b611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90614ae8565b60405180910390fd5b6000611a62612695565b90506000815111611a825760405180602001604052806000815250611aad565b80611a8c84612727565b604051602001611a9d929190614b08565b6040516020818303038152906040525b915050919050565b6060611abf612695565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b60611e4a565b73ffffffffffffffffffffffffffffffffffffffff16611b7e6114f5565b73ffffffffffffffffffffffffffffffffffffffff1614611bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcb9061472a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3b90614b9e565b60405180910390fd5b611c4d816123df565b50565b611c58611e4a565b73ffffffffffffffffffffffffffffffffffffffff16611c766114f5565b73ffffffffffffffffffffffffffffffffffffffff1614611ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc39061472a565b60405180910390fd5b8060118190555050565b600d8054611ce3906140a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0f906140a5565b8015611d5c5780601f10611d3157610100808354040283529160200191611d5c565b820191906000526020600020905b815481529060010190602001808311611d3f57829003601f168201915b505050505081565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611dd75750611dd682612888565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ec5836112d8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081604051602001611f1e9190614c2b565b604051602081830303815290604052805190602001209050919050565b6000611f4682611dde565b611f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7c90614cc3565b60405180910390fd5b6000611f90836112d8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fff57508373ffffffffffffffffffffffffffffffffffffffff16611fe784610a11565b73ffffffffffffffffffffffffffffffffffffffff16145b80612010575061200f8185611ac4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612039826112d8565b73ffffffffffffffffffffffffffffffffffffffff161461208f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208690614d55565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f690614de7565b60405180910390fd5b61210a83838361296a565b612115600082611e52565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121659190614e07565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121bc9190614e3b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461227b83838361297a565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b6122be82826040518060200160405280600081525061297f565b5050565b60006122cd826112d8565b90506122db8160008461296a565b6122e6600083611e52565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123369190614e07565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123db8160008461297a565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060006124b485856129da565b915091506124c181612a5d565b819250505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561253b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253290614edd565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161262c9190613703565b60405180910390a3505050565b612644848484612019565b61265084848484612c32565b61268f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268690614f6f565b60405180910390fd5b50505050565b6060600d80546126a4906140a5565b80601f01602080910402602001604051908101604052809291908181526020018280546126d0906140a5565b801561271d5780601f106126f25761010080835404028352916020019161271d565b820191906000526020600020905b81548152906001019060200180831161270057829003601f168201915b5050505050905090565b6060600082141561276f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612883565b600082905060005b600082146127a157808061278a90614f8f565b915050600a8261279a9190615007565b9150612777565b60008167ffffffffffffffff8111156127bd576127bc613bd4565b5b6040519080825280601f01601f1916602001820160405280156127ef5781602001600182028036833780820191505090505b5090505b6000851461287c576001826128089190614e07565b9150600a856128179190615038565b60306128239190614e3b565b60f81b8183815181106128395761283861486e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128759190615007565b94506127f3565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061295357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612963575061296282612dba565b5b9050919050565b612975838383612e24565b505050565b505050565b6129898383612f38565b6129966000848484612c32565b6129d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cc90614f6f565b60405180910390fd5b505050565b600080604183511415612a1c5760008060006020860151925060408601519150606086015160001a9050612a1087828585613112565b94509450505050612a56565b604083511415612a4d576000806020850151915060408501519050612a4286838361321f565b935093505050612a56565b60006002915091505b9250929050565b60006004811115612a7157612a70615069565b5b816004811115612a8457612a83615069565b5b1415612a8f57612c2f565b60016004811115612aa357612aa2615069565b5b816004811115612ab657612ab5615069565b5b1415612af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aee906150e4565b60405180910390fd5b60026004811115612b0b57612b0a615069565b5b816004811115612b1e57612b1d615069565b5b1415612b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5690615150565b60405180910390fd5b60036004811115612b7357612b72615069565b5b816004811115612b8657612b85615069565b5b1415612bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbe906151e2565b60405180910390fd5b600480811115612bda57612bd9615069565b5b816004811115612bed57612bec615069565b5b1415612c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2590615274565b60405180910390fd5b5b50565b6000612c538473ffffffffffffffffffffffffffffffffffffffff1661327e565b15612dad578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c7c611e4a565b8786866040518563ffffffff1660e01b8152600401612c9e94939291906152e9565b6020604051808303816000875af1925050508015612cda57506040513d601f19601f82011682018060405250810190612cd7919061534a565b60015b612d5d573d8060008114612d0a576040519150601f19603f3d011682016040523d82523d6000602084013e612d0f565b606091505b50600081511415612d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4c90614f6f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612db2565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612e2f8383836132a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e7257612e6d816132a6565b612eb1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612eb057612eaf83826132ef565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ef457612eef8161345c565b612f33565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612f3257612f31828261352d565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9f906153c3565b60405180910390fd5b612fb181611dde565b15612ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe89061542f565b60405180910390fd5b612ffd6000838361296a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461304d9190614e3b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461310e6000838361297a565b5050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561314d576000600391509150613216565b601b8560ff16141580156131655750601c8560ff1614155b15613177576000600491509150613216565b60006001878787876040516000815260200160405260405161319c949392919061546b565b6020604051602081039080840390855afa1580156131be573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561320d57600060019250925050613216565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c6132629190614e3b565b905061327087828885613112565b935093505050935093915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016132fc8461138a565b6133069190614e07565b90506000600760008481526020019081526020016000205490508181146133eb576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134709190614e07565b90506000600960008481526020019081526020016000205490506000600883815481106134a05761349f61486e565b5b9060005260206000200154905080600883815481106134c2576134c161486e565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613511576135106154b0565b5b6001900381819060005260206000200160009055905550505050565b60006135388361138a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546135b8906140a5565b90600052602060002090601f0160209004810192826135da5760008555613621565b82601f106135f357803560ff1916838001178555613621565b82800160010185558215613621579182015b82811115613620578235825591602001919060010190613605565b5b50905061362e9190613632565b5090565b5b8082111561364b576000816000905550600101613633565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61369881613663565b81146136a357600080fd5b50565b6000813590506136b58161368f565b92915050565b6000602082840312156136d1576136d0613659565b5b60006136df848285016136a6565b91505092915050565b60008115159050919050565b6136fd816136e8565b82525050565b600060208201905061371860008301846136f4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561375857808201518184015260208101905061373d565b83811115613767576000848401525b50505050565b6000601f19601f8301169050919050565b60006137898261371e565b6137938185613729565b93506137a381856020860161373a565b6137ac8161376d565b840191505092915050565b600060208201905081810360008301526137d1818461377e565b905092915050565b6000819050919050565b6137ec816137d9565b81146137f757600080fd5b50565b600081359050613809816137e3565b92915050565b60006020828403121561382557613824613659565b5b6000613833848285016137fa565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138678261383c565b9050919050565b6138778161385c565b82525050565b6000602082019050613892600083018461386e565b92915050565b6138a18161385c565b81146138ac57600080fd5b50565b6000813590506138be81613898565b92915050565b600080604083850312156138db576138da613659565b5b60006138e9858286016138af565b92505060206138fa858286016137fa565b9150509250929050565b61390d816137d9565b82525050565b60006020820190506139286000830184613904565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126139535761395261392e565b5b8235905067ffffffffffffffff8111156139705761396f613933565b5b60208301915083600182028301111561398c5761398b613938565b5b9250929050565b600080602083850312156139aa576139a9613659565b5b600083013567ffffffffffffffff8111156139c8576139c761365e565b5b6139d48582860161393d565b92509250509250929050565b6000819050919050565b6139f3816139e0565b82525050565b6000602082019050613a0e60008301846139ea565b92915050565b600080600060608486031215613a2d57613a2c613659565b5b6000613a3b868287016138af565b9350506020613a4c868287016138af565b9250506040613a5d868287016137fa565b9150509250925092565b60008083601f840112613a7d57613a7c61392e565b5b8235905067ffffffffffffffff811115613a9a57613a99613933565b5b602083019150836001820283011115613ab657613ab5613938565b5b9250929050565b60008060008060408587031215613ad757613ad6613659565b5b600085013567ffffffffffffffff811115613af557613af461365e565b5b613b0187828801613a67565b9450945050602085013567ffffffffffffffff811115613b2457613b2361365e565b5b613b308782880161393d565b925092505092959194509250565b600061ffff82169050919050565b613b5581613b3e565b82525050565b6000602082019050613b706000830184613b4c565b92915050565b613b7f816136e8565b8114613b8a57600080fd5b50565b600081359050613b9c81613b76565b92915050565b600060208284031215613bb857613bb7613659565b5b6000613bc684828501613b8d565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613c0c8261376d565b810181811067ffffffffffffffff82111715613c2b57613c2a613bd4565b5b80604052505050565b6000613c3e61364f565b9050613c4a8282613c03565b919050565b600067ffffffffffffffff821115613c6a57613c69613bd4565b5b613c738261376d565b9050602081019050919050565b82818337600083830152505050565b6000613ca2613c9d84613c4f565b613c34565b905082815260208101848484011115613cbe57613cbd613bcf565b5b613cc9848285613c80565b509392505050565b600082601f830112613ce657613ce561392e565b5b8135613cf6848260208601613c8f565b91505092915050565b600060208284031215613d1557613d14613659565b5b600082013567ffffffffffffffff811115613d3357613d3261365e565b5b613d3f84828501613cd1565b91505092915050565b600060208284031215613d5e57613d5d613659565b5b6000613d6c848285016138af565b91505092915050565b613d7e816139e0565b8114613d8957600080fd5b50565b600081359050613d9b81613d75565b92915050565b600067ffffffffffffffff821115613dbc57613dbb613bd4565b5b613dc58261376d565b9050602081019050919050565b6000613de5613de084613da1565b613c34565b905082815260208101848484011115613e0157613e00613bcf565b5b613e0c848285613c80565b509392505050565b600082601f830112613e2957613e2861392e565b5b8135613e39848260208601613dd2565b91505092915050565b60008060408385031215613e5957613e58613659565b5b6000613e6785828601613d8c565b925050602083013567ffffffffffffffff811115613e8857613e8761365e565b5b613e9485828601613e14565b9150509250929050565b600080600060408486031215613eb757613eb6613659565b5b600084013567ffffffffffffffff811115613ed557613ed461365e565b5b613ee186828701613e14565b935050602084013567ffffffffffffffff811115613f0257613f0161365e565b5b613f0e8682870161393d565b92509250509250925092565b60008060408385031215613f3157613f30613659565b5b6000613f3f858286016138af565b9250506020613f5085828601613b8d565b9150509250929050565b60008060008060808587031215613f7457613f73613659565b5b6000613f82878288016138af565b9450506020613f93878288016138af565b9350506040613fa4878288016137fa565b925050606085013567ffffffffffffffff811115613fc557613fc461365e565b5b613fd187828801613e14565b91505092959194509250565b613fe681613b3e565b8114613ff157600080fd5b50565b60008135905061400381613fdd565b92915050565b60006020828403121561401f5761401e613659565b5b600061402d84828501613ff4565b91505092915050565b6000806040838503121561404d5761404c613659565b5b600061405b858286016138af565b925050602061406c858286016138af565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140bd57607f821691505b602082108114156140d1576140d0614076565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614133602c83613729565b915061413e826140d7565b604082019050919050565b6000602082019050818103600083015261416281614126565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006141c5602183613729565b91506141d082614169565b604082019050919050565b600060208201905081810360008301526141f4816141b8565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614257603883613729565b9150614262826141fb565b604082019050919050565b600060208201905081810360008301526142868161424a565b9050919050565b60006142998385613729565b93506142a6838584613c80565b6142af8361376d565b840190509392505050565b600060208201905081810360008301526142d581848661428d565b90509392505050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061433a603183613729565b9150614345826142de565b604082019050919050565b600060208201905081810360008301526143698161432d565b9050919050565b7f4e6f7420656e6f756768204554482073656e743b20636865636b20707269636560008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b60006143cc602183613729565b91506143d782614370565b604082019050919050565b600060208201905081810360008301526143fb816143bf565b9050919050565b7f4d696e74696e67206973206e6f74206f70656e00000000000000000000000000600082015250565b6000614438601383613729565b915061444382614402565b602082019050919050565b600060208201905081810360008301526144678161442b565b9050919050565b600081905092915050565b60006144848261371e565b61448e818561446e565b935061449e81856020860161373a565b80840191505092915050565b60006144b68284614479565b915081905092915050565b7f43616e6e6f74206d696e74206d6f726520616e79206d6f72652077697468207460008201527f686973206163636f756e74210000000000000000000000000000000000000000602082015250565b600061451d602c83613729565b9150614528826144c1565b604082019050919050565b6000602082019050818103600083015261454c81614510565b9050919050565b7f5369676e6174757265206973206e6f742076616c69642c2063616e206f6e6c7960008201527f206d696e74207468726f75676820666c69707369646520776562736974652100602082015250565b60006145af603f83613729565b91506145ba82614553565b604082019050919050565b600060208201905081810360008301526145de816145a2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061461f82613b3e565b915061462a83613b3e565b92508261ffff03821115614641576146406145e5565b5b828201905092915050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006146a8602b83613729565b91506146b38261464c565b604082019050919050565b600060208201905081810360008301526146d78161469b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614714602083613729565b915061471f826146de565b602082019050919050565b6000602082019050818103600083015261474381614707565b9050919050565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b60006147a6603083613729565b91506147b18261474a565b604082019050919050565b600060208201905081810360008301526147d581614799565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614838602c83613729565b9150614843826147dc565b604082019050919050565b600060208201905081810360008301526148678161482b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006148f9602983613729565b91506149048261489d565b604082019050919050565b60006020820190508181036000830152614928816148ec565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061498b602a83613729565b91506149968261492f565b604082019050919050565b600060208201905081810360008301526149ba8161497e565b9050919050565b60008160f01b9050919050565b60006149d9826149c1565b9050919050565b6149f16149ec82613b3e565b6149ce565b82525050565b7f2d2b2d0000000000000000000000000000000000000000000000000000000000600082015250565b6000614a2d60038361446e565b9150614a38826149f7565b600382019050919050565b6000614a4f82856149e0565b600282019150614a5e82614a20565b9150614a6a8284614479565b91508190509392505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614ad2602f83613729565b9150614add82614a76565b604082019050919050565b60006020820190508181036000830152614b0181614ac5565b9050919050565b6000614b148285614479565b9150614b208284614479565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b88602683613729565b9150614b9382614b2c565b604082019050919050565b60006020820190508181036000830152614bb781614b7b565b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614bf4601c8361446e565b9150614bff82614bbe565b601c82019050919050565b6000819050919050565b614c25614c20826139e0565b614c0a565b82525050565b6000614c3682614be7565b9150614c428284614c14565b60208201915081905092915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614cad602c83613729565b9150614cb882614c51565b604082019050919050565b60006020820190508181036000830152614cdc81614ca0565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614d3f602583613729565b9150614d4a82614ce3565b604082019050919050565b60006020820190508181036000830152614d6e81614d32565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614dd1602483613729565b9150614ddc82614d75565b604082019050919050565b60006020820190508181036000830152614e0081614dc4565b9050919050565b6000614e12826137d9565b9150614e1d836137d9565b925082821015614e3057614e2f6145e5565b5b828203905092915050565b6000614e46826137d9565b9150614e51836137d9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e8657614e856145e5565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614ec7601983613729565b9150614ed282614e91565b602082019050919050565b60006020820190508181036000830152614ef681614eba565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614f59603283613729565b9150614f6482614efd565b604082019050919050565b60006020820190508181036000830152614f8881614f4c565b9050919050565b6000614f9a826137d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614fcd57614fcc6145e5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615012826137d9565b915061501d836137d9565b92508261502d5761502c614fd8565b5b828204905092915050565b6000615043826137d9565b915061504e836137d9565b92508261505e5761505d614fd8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006150ce601883613729565b91506150d982615098565b602082019050919050565b600060208201905081810360008301526150fd816150c1565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b600061513a601f83613729565b915061514582615104565b602082019050919050565b600060208201905081810360008301526151698161512d565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006151cc602283613729565b91506151d782615170565b604082019050919050565b600060208201905081810360008301526151fb816151bf565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061525e602283613729565b915061526982615202565b604082019050919050565b6000602082019050818103600083015261528d81615251565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006152bb82615294565b6152c5818561529f565b93506152d581856020860161373a565b6152de8161376d565b840191505092915050565b60006080820190506152fe600083018761386e565b61530b602083018661386e565b6153186040830185613904565b818103606083015261532a81846152b0565b905095945050505050565b6000815190506153448161368f565b92915050565b6000602082840312156153605761535f613659565b5b600061536e84828501615335565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006153ad602083613729565b91506153b882615377565b602082019050919050565b600060208201905081810360008301526153dc816153a0565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615419601c83613729565b9150615424826153e3565b602082019050919050565b600060208201905081810360008301526154488161540c565b9050919050565b600060ff82169050919050565b6154658161544f565b82525050565b600060808201905061548060008301876139ea565b61548d602083018661545c565b61549a60408301856139ea565b6154a760608301846139ea565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220f1bb79c2c31c192bf13341a48b0f8441c41219e0409bf2bc6cc39d55c3c4c8d864736f6c634300080b003368747470733a2f2f6170692e666c6970736964656e6674732e636f6d2f6d657461646174612f7368726f6f6d646b2f000000000000000000000000c8d92c65c56783a44873f7041371455e48212342

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063715018a61161012e578063b88d4fde116100ab578063e8a3d4851161006f578063e8a3d48514610888578063e985e9c5146108b3578063f2fde38b146108f0578063f4a0a52814610919578063f9e0edae1461094257610230565b8063b88d4fde14610793578063bd9e7ec2146107bc578063c28b9668146107e5578063c2962bc714610822578063c87b56dd1461084b57610230565b8063931688cb116100f2578063931688cb146106b057806395d89b41146106d9578063978528c0146107045780639969fcba1461072d578063a22cb4651461076a57610230565b8063715018a6146105c95780637954a7d4146105e057806389c92b991461060b5780638da5cb5b14610648578063914f0e951461067357610230565b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce7146104ac57806358a85bca146104e9578063606cd543146105125780636352211e1461054f57806370a082311461058c57610230565b80632f745c59146103db5780633ccfd60b1461041857806342842e0e1461042f57806342966c6814610458578063471b8c461461048157610230565b806318160ddd1161020357806318160ddd14610303578063185da0a31461032e57806323b872dd1461036b57806324bbd049146103945780632b1ccc9a146103bf57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906136bb565b61096d565b6040516102699190613703565b60405180910390f35b34801561027e57600080fd5b5061028761097f565b60405161029491906137b7565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf919061380f565b610a11565b6040516102d1919061387d565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc91906138c4565b610a96565b005b34801561030f57600080fd5b50610318610bae565b6040516103259190613913565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190613993565b610bbb565b60405161036291906139f9565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190613a14565b610bf6565b005b3480156103a057600080fd5b506103a9610c56565b6040516103b69190613703565b60405180910390f35b6103d960048036038101906103d49190613abd565b610c69565b005b3480156103e757600080fd5b5061040260048036038101906103fd91906138c4565b610f96565b60405161040f9190613913565b60405180910390f35b34801561042457600080fd5b5061042d61103b565b005b34801561043b57600080fd5b5061045660048036038101906104519190613a14565b611107565b005b34801561046457600080fd5b5061047f600480360381019061047a919061380f565b611127565b005b34801561048d57600080fd5b50610496611183565b6040516104a39190613b5b565b60405180910390f35b3480156104b857600080fd5b506104d360048036038101906104ce919061380f565b611197565b6040516104e09190613913565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b9190613ba2565b611208565b005b34801561051e57600080fd5b5061053960048036038101906105349190613cff565b6112a1565b6040516105469190613b5b565b60405180910390f35b34801561055b57600080fd5b506105766004803603810190610571919061380f565b6112d8565b604051610583919061387d565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae9190613d48565b61138a565b6040516105c09190613913565b60405180910390f35b3480156105d557600080fd5b506105de611442565b005b3480156105ec57600080fd5b506105f56114ca565b6040516106029190613913565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d9190613e42565b6114d0565b60405161063f919061387d565b60405180910390f35b34801561065457600080fd5b5061065d6114f5565b60405161066a919061387d565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190613e9e565b61151f565b6040516106a79190613703565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190613993565b611598565b005b3480156106e557600080fd5b506106ee61162a565b6040516106fb91906137b7565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190613d48565b6116bc565b005b34801561073957600080fd5b50610754600480360381019061074f9190613cff565b61177c565b60405161076191906137b7565b60405180910390f35b34801561077657600080fd5b50610791600480360381019061078c9190613f1a565b6117d3565b005b34801561079f57600080fd5b506107ba60048036038101906107b59190613f5a565b6117e9565b005b3480156107c857600080fd5b506107e360048036038101906107de9190613cff565b61184b565b005b3480156107f157600080fd5b5061080c60048036038101906108079190613cff565b61193b565b6040516108199190613b5b565b60405180910390f35b34801561082e57600080fd5b5061084960048036038101906108449190614009565b611972565b005b34801561085757600080fd5b50610872600480360381019061086d919061380f565b611a0e565b60405161087f91906137b7565b60405180910390f35b34801561089457600080fd5b5061089d611ab5565b6040516108aa91906137b7565b60405180910390f35b3480156108bf57600080fd5b506108da60048036038101906108d59190614036565b611ac4565b6040516108e79190613703565b60405180910390f35b3480156108fc57600080fd5b5061091760048036038101906109129190613d48565b611b58565b005b34801561092557600080fd5b50610940600480360381019061093b919061380f565b611c50565b005b34801561094e57600080fd5b50610957611cd6565b60405161096491906137b7565b60405180910390f35b600061097882611d64565b9050919050565b60606000805461098e906140a5565b80601f01602080910402602001604051908101604052809291908181526020018280546109ba906140a5565b8015610a075780601f106109dc57610100808354040283529160200191610a07565b820191906000526020600020905b8154815290600101906020018083116109ea57829003601f168201915b5050505050905090565b6000610a1c82611dde565b610a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5290614149565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa1826112d8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b09906141db565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b31611e4a565b73ffffffffffffffffffffffffffffffffffffffff161480610b605750610b5f81610b5a611e4a565b611ac4565b5b610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b969061426d565b60405180910390fd5b610ba98383611e52565b505050565b6000600880549050905090565b6000610bee8383604051602001610bd39291906142ba565b60405160208183030381529060405280519060200120611f0b565b905092915050565b610c07610c01611e4a565b82611f3b565b610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d90614350565b60405180910390fd5b610c51838383612019565b505050565b600c60009054906101000a900460ff1681565b601154341015610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca5906143e2565b60405180910390fd5b600c60009054906101000a900460ff16610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf49061444e565b60405180910390fd5b601260009054906101000a900461ffff1661ffff16600f610d6184848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061177c565b604051610d6e91906144aa565b908152602001604051809103902060009054906101000a900461ffff1661ffff1610610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc690614533565b60405180910390fd5b6000610ddb600b612280565b9050610e2c85858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050848461151f565b610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e62906145c5565b60405180910390fd5b610e75600b61228e565b6001600f610ec685858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061177c565b604051610ed391906144aa565b908152602001604051809103902060009054906101000a900461ffff16610efa9190614614565b600f610f4985858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061177c565b604051610f5691906144aa565b908152602001604051809103902060006101000a81548161ffff021916908361ffff160217905550610f8f610f89611e4a565b826122a4565b5050505050565b6000610fa18361138a565b8210610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd9906146be565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611043611e4a565b73ffffffffffffffffffffffffffffffffffffffff166110616114f5565b73ffffffffffffffffffffffffffffffffffffffff16146110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae9061472a565b60405180910390fd5b6110bf611e4a565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611104573d6000803e3d6000fd5b50565b611122838383604051806020016040528060008152506117e9565b505050565b611138611132611e4a565b82611f3b565b611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e906147bc565b60405180910390fd5b611180816122c2565b50565b601260009054906101000a900461ffff1681565b60006111a1610bae565b82106111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d99061484e565b60405180910390fd5b600882815481106111f6576111f561486e565b5b90600052602060002001549050919050565b611210611e4a565b73ffffffffffffffffffffffffffffffffffffffff1661122e6114f5565b73ffffffffffffffffffffffffffffffffffffffff1614611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b9061472a565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b600f818051602081018201805184825260208301602085012081835280955050505050506000915054906101000a900461ffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611381576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113789061490f565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f2906149a1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61144a611e4a565b73ffffffffffffffffffffffffffffffffffffffff166114686114f5565b73ffffffffffffffffffffffffffffffffffffffff16146114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b59061472a565b60405180910390fd5b6114c860006123df565b565b60115481565b60006114ed826114df85611f0b565b6124a590919063ffffffff16565b905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008061152c8484610bbb565b9050600061153a82876114d0565b9050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614925050509392505050565b6115a0611e4a565b73ffffffffffffffffffffffffffffffffffffffff166115be6114f5565b73ffffffffffffffffffffffffffffffffffffffff1614611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b9061472a565b60405180910390fd5b8181600d91906116259291906135ac565b505050565b606060018054611639906140a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611665906140a5565b80156116b25780601f10611687576101008083540402835291602001916116b2565b820191906000526020600020905b81548152906001019060200180831161169557829003601f168201915b5050505050905090565b6116c4611e4a565b73ffffffffffffffffffffffffffffffffffffffff166116e26114f5565b73ffffffffffffffffffffffffffffffffffffffff1614611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f9061472a565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060108260405161178e91906144aa565b908152602001604051809103902060009054906101000a900461ffff16826040516020016117bd929190614a43565b6040516020818303038152906040529050919050565b6117e56117de611e4a565b83836124cc565b5050565b6117fa6117f4611e4a565b83611f3b565b611839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183090614350565b60405180910390fd5b61184584848484612639565b50505050565b611853611e4a565b73ffffffffffffffffffffffffffffffffffffffff166118716114f5565b73ffffffffffffffffffffffffffffffffffffffff16146118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be9061472a565b60405180910390fd5b60016010826040516118d991906144aa565b908152602001604051809103902060009054906101000a900461ffff166119009190614614565b60108260405161191091906144aa565b908152602001604051809103902060006101000a81548161ffff021916908361ffff16021790555050565b6010818051602081018201805184825260208301602085012081835280955050505050506000915054906101000a900461ffff1681565b61197a611e4a565b73ffffffffffffffffffffffffffffffffffffffff166119986114f5565b73ffffffffffffffffffffffffffffffffffffffff16146119ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e59061472a565b60405180910390fd5b80601260006101000a81548161ffff021916908361ffff16021790555050565b6060611a1982611dde565b611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90614ae8565b60405180910390fd5b6000611a62612695565b90506000815111611a825760405180602001604052806000815250611aad565b80611a8c84612727565b604051602001611a9d929190614b08565b6040516020818303038152906040525b915050919050565b6060611abf612695565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b60611e4a565b73ffffffffffffffffffffffffffffffffffffffff16611b7e6114f5565b73ffffffffffffffffffffffffffffffffffffffff1614611bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcb9061472a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3b90614b9e565b60405180910390fd5b611c4d816123df565b50565b611c58611e4a565b73ffffffffffffffffffffffffffffffffffffffff16611c766114f5565b73ffffffffffffffffffffffffffffffffffffffff1614611ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc39061472a565b60405180910390fd5b8060118190555050565b600d8054611ce3906140a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0f906140a5565b8015611d5c5780601f10611d3157610100808354040283529160200191611d5c565b820191906000526020600020905b815481529060010190602001808311611d3f57829003601f168201915b505050505081565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611dd75750611dd682612888565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ec5836112d8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081604051602001611f1e9190614c2b565b604051602081830303815290604052805190602001209050919050565b6000611f4682611dde565b611f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7c90614cc3565b60405180910390fd5b6000611f90836112d8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fff57508373ffffffffffffffffffffffffffffffffffffffff16611fe784610a11565b73ffffffffffffffffffffffffffffffffffffffff16145b80612010575061200f8185611ac4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612039826112d8565b73ffffffffffffffffffffffffffffffffffffffff161461208f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208690614d55565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f690614de7565b60405180910390fd5b61210a83838361296a565b612115600082611e52565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121659190614e07565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121bc9190614e3b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461227b83838361297a565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b6122be82826040518060200160405280600081525061297f565b5050565b60006122cd826112d8565b90506122db8160008461296a565b6122e6600083611e52565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123369190614e07565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123db8160008461297a565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060006124b485856129da565b915091506124c181612a5d565b819250505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561253b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253290614edd565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161262c9190613703565b60405180910390a3505050565b612644848484612019565b61265084848484612c32565b61268f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268690614f6f565b60405180910390fd5b50505050565b6060600d80546126a4906140a5565b80601f01602080910402602001604051908101604052809291908181526020018280546126d0906140a5565b801561271d5780601f106126f25761010080835404028352916020019161271d565b820191906000526020600020905b81548152906001019060200180831161270057829003601f168201915b5050505050905090565b6060600082141561276f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612883565b600082905060005b600082146127a157808061278a90614f8f565b915050600a8261279a9190615007565b9150612777565b60008167ffffffffffffffff8111156127bd576127bc613bd4565b5b6040519080825280601f01601f1916602001820160405280156127ef5781602001600182028036833780820191505090505b5090505b6000851461287c576001826128089190614e07565b9150600a856128179190615038565b60306128239190614e3b565b60f81b8183815181106128395761283861486e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128759190615007565b94506127f3565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061295357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612963575061296282612dba565b5b9050919050565b612975838383612e24565b505050565b505050565b6129898383612f38565b6129966000848484612c32565b6129d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cc90614f6f565b60405180910390fd5b505050565b600080604183511415612a1c5760008060006020860151925060408601519150606086015160001a9050612a1087828585613112565b94509450505050612a56565b604083511415612a4d576000806020850151915060408501519050612a4286838361321f565b935093505050612a56565b60006002915091505b9250929050565b60006004811115612a7157612a70615069565b5b816004811115612a8457612a83615069565b5b1415612a8f57612c2f565b60016004811115612aa357612aa2615069565b5b816004811115612ab657612ab5615069565b5b1415612af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aee906150e4565b60405180910390fd5b60026004811115612b0b57612b0a615069565b5b816004811115612b1e57612b1d615069565b5b1415612b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5690615150565b60405180910390fd5b60036004811115612b7357612b72615069565b5b816004811115612b8657612b85615069565b5b1415612bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbe906151e2565b60405180910390fd5b600480811115612bda57612bd9615069565b5b816004811115612bed57612bec615069565b5b1415612c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2590615274565b60405180910390fd5b5b50565b6000612c538473ffffffffffffffffffffffffffffffffffffffff1661327e565b15612dad578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c7c611e4a565b8786866040518563ffffffff1660e01b8152600401612c9e94939291906152e9565b6020604051808303816000875af1925050508015612cda57506040513d601f19601f82011682018060405250810190612cd7919061534a565b60015b612d5d573d8060008114612d0a576040519150601f19603f3d011682016040523d82523d6000602084013e612d0f565b606091505b50600081511415612d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4c90614f6f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612db2565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612e2f8383836132a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e7257612e6d816132a6565b612eb1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612eb057612eaf83826132ef565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ef457612eef8161345c565b612f33565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612f3257612f31828261352d565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9f906153c3565b60405180910390fd5b612fb181611dde565b15612ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe89061542f565b60405180910390fd5b612ffd6000838361296a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461304d9190614e3b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461310e6000838361297a565b5050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561314d576000600391509150613216565b601b8560ff16141580156131655750601c8560ff1614155b15613177576000600491509150613216565b60006001878787876040516000815260200160405260405161319c949392919061546b565b6020604051602081039080840390855afa1580156131be573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561320d57600060019250925050613216565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c6132629190614e3b565b905061327087828885613112565b935093505050935093915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016132fc8461138a565b6133069190614e07565b90506000600760008481526020019081526020016000205490508181146133eb576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134709190614e07565b90506000600960008481526020019081526020016000205490506000600883815481106134a05761349f61486e565b5b9060005260206000200154905080600883815481106134c2576134c161486e565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613511576135106154b0565b5b6001900381819060005260206000200160009055905550505050565b60006135388361138a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546135b8906140a5565b90600052602060002090601f0160209004810192826135da5760008555613621565b82601f106135f357803560ff1916838001178555613621565b82800160010185558215613621579182015b82811115613620578235825591602001919060010190613605565b5b50905061362e9190613632565b5090565b5b8082111561364b576000816000905550600101613633565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61369881613663565b81146136a357600080fd5b50565b6000813590506136b58161368f565b92915050565b6000602082840312156136d1576136d0613659565b5b60006136df848285016136a6565b91505092915050565b60008115159050919050565b6136fd816136e8565b82525050565b600060208201905061371860008301846136f4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561375857808201518184015260208101905061373d565b83811115613767576000848401525b50505050565b6000601f19601f8301169050919050565b60006137898261371e565b6137938185613729565b93506137a381856020860161373a565b6137ac8161376d565b840191505092915050565b600060208201905081810360008301526137d1818461377e565b905092915050565b6000819050919050565b6137ec816137d9565b81146137f757600080fd5b50565b600081359050613809816137e3565b92915050565b60006020828403121561382557613824613659565b5b6000613833848285016137fa565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138678261383c565b9050919050565b6138778161385c565b82525050565b6000602082019050613892600083018461386e565b92915050565b6138a18161385c565b81146138ac57600080fd5b50565b6000813590506138be81613898565b92915050565b600080604083850312156138db576138da613659565b5b60006138e9858286016138af565b92505060206138fa858286016137fa565b9150509250929050565b61390d816137d9565b82525050565b60006020820190506139286000830184613904565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126139535761395261392e565b5b8235905067ffffffffffffffff8111156139705761396f613933565b5b60208301915083600182028301111561398c5761398b613938565b5b9250929050565b600080602083850312156139aa576139a9613659565b5b600083013567ffffffffffffffff8111156139c8576139c761365e565b5b6139d48582860161393d565b92509250509250929050565b6000819050919050565b6139f3816139e0565b82525050565b6000602082019050613a0e60008301846139ea565b92915050565b600080600060608486031215613a2d57613a2c613659565b5b6000613a3b868287016138af565b9350506020613a4c868287016138af565b9250506040613a5d868287016137fa565b9150509250925092565b60008083601f840112613a7d57613a7c61392e565b5b8235905067ffffffffffffffff811115613a9a57613a99613933565b5b602083019150836001820283011115613ab657613ab5613938565b5b9250929050565b60008060008060408587031215613ad757613ad6613659565b5b600085013567ffffffffffffffff811115613af557613af461365e565b5b613b0187828801613a67565b9450945050602085013567ffffffffffffffff811115613b2457613b2361365e565b5b613b308782880161393d565b925092505092959194509250565b600061ffff82169050919050565b613b5581613b3e565b82525050565b6000602082019050613b706000830184613b4c565b92915050565b613b7f816136e8565b8114613b8a57600080fd5b50565b600081359050613b9c81613b76565b92915050565b600060208284031215613bb857613bb7613659565b5b6000613bc684828501613b8d565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613c0c8261376d565b810181811067ffffffffffffffff82111715613c2b57613c2a613bd4565b5b80604052505050565b6000613c3e61364f565b9050613c4a8282613c03565b919050565b600067ffffffffffffffff821115613c6a57613c69613bd4565b5b613c738261376d565b9050602081019050919050565b82818337600083830152505050565b6000613ca2613c9d84613c4f565b613c34565b905082815260208101848484011115613cbe57613cbd613bcf565b5b613cc9848285613c80565b509392505050565b600082601f830112613ce657613ce561392e565b5b8135613cf6848260208601613c8f565b91505092915050565b600060208284031215613d1557613d14613659565b5b600082013567ffffffffffffffff811115613d3357613d3261365e565b5b613d3f84828501613cd1565b91505092915050565b600060208284031215613d5e57613d5d613659565b5b6000613d6c848285016138af565b91505092915050565b613d7e816139e0565b8114613d8957600080fd5b50565b600081359050613d9b81613d75565b92915050565b600067ffffffffffffffff821115613dbc57613dbb613bd4565b5b613dc58261376d565b9050602081019050919050565b6000613de5613de084613da1565b613c34565b905082815260208101848484011115613e0157613e00613bcf565b5b613e0c848285613c80565b509392505050565b600082601f830112613e2957613e2861392e565b5b8135613e39848260208601613dd2565b91505092915050565b60008060408385031215613e5957613e58613659565b5b6000613e6785828601613d8c565b925050602083013567ffffffffffffffff811115613e8857613e8761365e565b5b613e9485828601613e14565b9150509250929050565b600080600060408486031215613eb757613eb6613659565b5b600084013567ffffffffffffffff811115613ed557613ed461365e565b5b613ee186828701613e14565b935050602084013567ffffffffffffffff811115613f0257613f0161365e565b5b613f0e8682870161393d565b92509250509250925092565b60008060408385031215613f3157613f30613659565b5b6000613f3f858286016138af565b9250506020613f5085828601613b8d565b9150509250929050565b60008060008060808587031215613f7457613f73613659565b5b6000613f82878288016138af565b9450506020613f93878288016138af565b9350506040613fa4878288016137fa565b925050606085013567ffffffffffffffff811115613fc557613fc461365e565b5b613fd187828801613e14565b91505092959194509250565b613fe681613b3e565b8114613ff157600080fd5b50565b60008135905061400381613fdd565b92915050565b60006020828403121561401f5761401e613659565b5b600061402d84828501613ff4565b91505092915050565b6000806040838503121561404d5761404c613659565b5b600061405b858286016138af565b925050602061406c858286016138af565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140bd57607f821691505b602082108114156140d1576140d0614076565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614133602c83613729565b915061413e826140d7565b604082019050919050565b6000602082019050818103600083015261416281614126565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006141c5602183613729565b91506141d082614169565b604082019050919050565b600060208201905081810360008301526141f4816141b8565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614257603883613729565b9150614262826141fb565b604082019050919050565b600060208201905081810360008301526142868161424a565b9050919050565b60006142998385613729565b93506142a6838584613c80565b6142af8361376d565b840190509392505050565b600060208201905081810360008301526142d581848661428d565b90509392505050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061433a603183613729565b9150614345826142de565b604082019050919050565b600060208201905081810360008301526143698161432d565b9050919050565b7f4e6f7420656e6f756768204554482073656e743b20636865636b20707269636560008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b60006143cc602183613729565b91506143d782614370565b604082019050919050565b600060208201905081810360008301526143fb816143bf565b9050919050565b7f4d696e74696e67206973206e6f74206f70656e00000000000000000000000000600082015250565b6000614438601383613729565b915061444382614402565b602082019050919050565b600060208201905081810360008301526144678161442b565b9050919050565b600081905092915050565b60006144848261371e565b61448e818561446e565b935061449e81856020860161373a565b80840191505092915050565b60006144b68284614479565b915081905092915050565b7f43616e6e6f74206d696e74206d6f726520616e79206d6f72652077697468207460008201527f686973206163636f756e74210000000000000000000000000000000000000000602082015250565b600061451d602c83613729565b9150614528826144c1565b604082019050919050565b6000602082019050818103600083015261454c81614510565b9050919050565b7f5369676e6174757265206973206e6f742076616c69642c2063616e206f6e6c7960008201527f206d696e74207468726f75676820666c69707369646520776562736974652100602082015250565b60006145af603f83613729565b91506145ba82614553565b604082019050919050565b600060208201905081810360008301526145de816145a2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061461f82613b3e565b915061462a83613b3e565b92508261ffff03821115614641576146406145e5565b5b828201905092915050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006146a8602b83613729565b91506146b38261464c565b604082019050919050565b600060208201905081810360008301526146d78161469b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614714602083613729565b915061471f826146de565b602082019050919050565b6000602082019050818103600083015261474381614707565b9050919050565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b60006147a6603083613729565b91506147b18261474a565b604082019050919050565b600060208201905081810360008301526147d581614799565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614838602c83613729565b9150614843826147dc565b604082019050919050565b600060208201905081810360008301526148678161482b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006148f9602983613729565b91506149048261489d565b604082019050919050565b60006020820190508181036000830152614928816148ec565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061498b602a83613729565b91506149968261492f565b604082019050919050565b600060208201905081810360008301526149ba8161497e565b9050919050565b60008160f01b9050919050565b60006149d9826149c1565b9050919050565b6149f16149ec82613b3e565b6149ce565b82525050565b7f2d2b2d0000000000000000000000000000000000000000000000000000000000600082015250565b6000614a2d60038361446e565b9150614a38826149f7565b600382019050919050565b6000614a4f82856149e0565b600282019150614a5e82614a20565b9150614a6a8284614479565b91508190509392505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614ad2602f83613729565b9150614add82614a76565b604082019050919050565b60006020820190508181036000830152614b0181614ac5565b9050919050565b6000614b148285614479565b9150614b208284614479565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b88602683613729565b9150614b9382614b2c565b604082019050919050565b60006020820190508181036000830152614bb781614b7b565b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614bf4601c8361446e565b9150614bff82614bbe565b601c82019050919050565b6000819050919050565b614c25614c20826139e0565b614c0a565b82525050565b6000614c3682614be7565b9150614c428284614c14565b60208201915081905092915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614cad602c83613729565b9150614cb882614c51565b604082019050919050565b60006020820190508181036000830152614cdc81614ca0565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614d3f602583613729565b9150614d4a82614ce3565b604082019050919050565b60006020820190508181036000830152614d6e81614d32565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614dd1602483613729565b9150614ddc82614d75565b604082019050919050565b60006020820190508181036000830152614e0081614dc4565b9050919050565b6000614e12826137d9565b9150614e1d836137d9565b925082821015614e3057614e2f6145e5565b5b828203905092915050565b6000614e46826137d9565b9150614e51836137d9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e8657614e856145e5565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614ec7601983613729565b9150614ed282614e91565b602082019050919050565b60006020820190508181036000830152614ef681614eba565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614f59603283613729565b9150614f6482614efd565b604082019050919050565b60006020820190508181036000830152614f8881614f4c565b9050919050565b6000614f9a826137d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614fcd57614fcc6145e5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615012826137d9565b915061501d836137d9565b92508261502d5761502c614fd8565b5b828204905092915050565b6000615043826137d9565b915061504e836137d9565b92508261505e5761505d614fd8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006150ce601883613729565b91506150d982615098565b602082019050919050565b600060208201905081810360008301526150fd816150c1565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b600061513a601f83613729565b915061514582615104565b602082019050919050565b600060208201905081810360008301526151698161512d565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006151cc602283613729565b91506151d782615170565b604082019050919050565b600060208201905081810360008301526151fb816151bf565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061525e602283613729565b915061526982615202565b604082019050919050565b6000602082019050818103600083015261528d81615251565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006152bb82615294565b6152c5818561529f565b93506152d581856020860161373a565b6152de8161376d565b840191505092915050565b60006080820190506152fe600083018761386e565b61530b602083018661386e565b6153186040830185613904565b818103606083015261532a81846152b0565b905095945050505050565b6000815190506153448161368f565b92915050565b6000602082840312156153605761535f613659565b5b600061536e84828501615335565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006153ad602083613729565b91506153b882615377565b602082019050919050565b600060208201905081810360008301526153dc816153a0565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615419601c83613729565b9150615424826153e3565b602082019050919050565b600060208201905081810360008301526154488161540c565b9050919050565b600060ff82169050919050565b6154658161544f565b82525050565b600060808201905061548060008301876139ea565b61548d602083018661545c565b61549a60408301856139ea565b6154a760608301846139ea565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220f1bb79c2c31c192bf13341a48b0f8441c41219e0409bf2bc6cc39d55c3c4c8d864736f6c634300080b0033

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

000000000000000000000000c8d92c65c56783a44873f7041371455e48212342

-----Decoded View---------------
Arg [0] : verifiedSigner (address): 0xc8D92C65c56783A44873F7041371455E48212342

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


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.