ETH Price: $3,445.68 (-0.91%)
Gas: 3 Gwei

Token

Fishtank Heads (FishtankHeads)
 

Overview

Max Total Supply

5,600 FishtankHeads

Holders

1,218

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
pollanza.eth
Balance
6 FishtankHeads
0x7b69098901deb62737ff9675680446dde158f03f
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:
FishtankHeads

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : TheLakeClub.sol
// SPDX-License-Identifier: MIT
// ERC-721 Smart Contract for the Fishtank Heads NFT Collection - https://thelakeclub.io
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract FishtankHeads is ERC721, ERC721Enumerable, Pausable, Ownable {
    using Strings for uint256;

    string public baseTokenURI;
    string public contractURI;
    
    uint256 public constant MAX_TOKENS = 10000; // 10 000 Fishtank Heads
    uint256 public maxMint = 5; // Max 20 Fishtank Heads per transaction
    uint256 public price = 0.15 ether; // Each Fishtank Head cost 0.05 ETH to mint
    uint256 public preMintPrice = 0.1 ether; // Lower price for pre-sale
    bool public mainSale = false; // Main Sale is disabled by default
    mapping(address => bool) public presaleAccessList; // Whitelist for pre-sale

    mapping(address => uint256) public presaleAddressMinted;

    constructor(string memory _baseTokenURI) ERC721("Fishtank Heads", "FishtankHeads") {
        setBaseURI(_baseTokenURI);

        // The first 100 Fishtank Heads are minted for the team, giveaways and our community
        mint(msg.sender, 100);
        
        // Transactions are paused after deploy
        pause();
    }

    function preMint(address _to, uint256 _quantity) public payable {
        uint256 supply = totalSupply();

        require(hasPresaleAccess(_to), "You are not whitelisted for the Fishtank Heads pre-sale");
        require(presaleAddressMinted[_to] + _quantity <= 5, "NFT mint limit exceeded");
        require(!mainSale, "You can't pre-mint Fishtank Heads at the moment");
        require(_quantity > 0 && _quantity <= maxMint, "You can only mint 1 to 5 Fishtank Heads");
        require(msg.value >= preMintPrice * _quantity, "Ether sent is not correct");
        require(supply + _quantity <= MAX_TOKENS, "Exceeds maximum supply");

        presaleAddressMinted[_to] = presaleAddressMinted[_to] + _quantity;
        for (uint256 i = 1; i <= _quantity; i++) {
          _safeMint(_to, supply + i);
        }
    }

    function mint(address _to, uint256 _quantity) public payable {
        uint256 supply = totalSupply();

        if (msg.sender != owner()) {
            require(mainSale, "The Fishtank Heads main sale is not open");
            require(_quantity > 0 && _quantity <= maxMint, "You can only mint 1 to 5 Fishtank Heads");
            require(msg.value >= price * _quantity, "Ether sent is not correct");
        }

        require(supply + _quantity <= MAX_TOKENS, "Exceeds maximum supply");

        for (uint256 i = 1; i <= _quantity; i++) {
          _safeMint(_to, supply + i);
        }
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);

        for (uint256 i; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokensId;
    }

    function setPresaleAccessList(address[] memory _addressList) public onlyOwner {
        for (uint256 i; i < _addressList.length; i++) {
            presaleAccessList[_addressList[i]] = true;
        }
    }

    function hasPresaleAccess(address wallet) public view returns (bool) {
        return presaleAccessList[wallet];
    }

    function hasMintedNfts(address wallet) public view returns (uint256) {
        return presaleAddressMinted[wallet];
    }

    function setBaseURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function setContractURI(string memory _contractURI) public onlyOwner {
        contractURI = _contractURI;
    }

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

    function setPreMintPrice(uint256 _price) public onlyOwner() {
        preMintPrice = _price;
    }

    function setMaxMint(uint256 _maxMint) public onlyOwner() {
        maxMint = _maxMint;
    }

    function updateMainSaleStatus(bool _mainSale) public onlyOwner {
        mainSale = _mainSale;
    }

    function pause() public onlyOwner {
        _pause();
    }

    function start() public onlyOwner {
        _unpause();
    }

    function withdraw(uint256 _amount) public payable onlyOwner {
        require(payable(msg.sender).send(_amount));
    }

    function withdrawAll() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

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

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

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

File 2 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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);
    }

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

    /**
     * @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 of token that is not own");
        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);
    }

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

File 3 of 14 : 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 14 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

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

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

    bool private _paused;

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

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

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

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

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

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

File 5 of 14 : 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 14 : 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 7 of 14 : 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 8 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 11 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 13 of 14 : 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 14 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 tokenId);

    /**
     * @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":"string","name":"_baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"hasMintedNfts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"hasPresaleAccess","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleAccessList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleAddressMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPreMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addressList","type":"address[]"}],"name":"setPresaleAccessList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","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":"bool","name":"_mainSale","type":"bool"}],"name":"updateMainSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526005600d55670214e8348c4f0000600e5567016345785d8a0000600f556000601060006101000a81548160ff0219169083151502179055503480156200004957600080fd5b5060405162006eb938038062006eb983398181016040528101906200006f91906200133d565b6040518060400160405280600e81526020017f4669736874616e6b2048656164730000000000000000000000000000000000008152506040518060400160405280600d81526020017f4669736874616e6b4865616473000000000000000000000000000000000000008152508160009080519060200190620000f3929190620010f0565b5080600190805190602001906200010c929190620010f0565b5050506000600a60006101000a81548160ff0219169083151502179055506200014a6200013e6200018560201b60201c565b6200018d60201b60201c565b6200015b816200025360201b60201c565b6200016e336064620002fe60201b60201c565b6200017e620004f160201b60201c565b5062001ca1565b600033905090565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002636200018560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002896200059260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d990620013ef565b60405180910390fd5b80600b9080519060200190620002fa929190620010f0565b5050565b600062000310620005bc60201b60201c565b9050620003226200059260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146200045257601060009054906101000a900460ff16620003a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200039e9062001487565b60405180910390fd5b600082118015620003ba5750600d548211155b620003fc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003f3906200151f565b60405180910390fd5b81600e546200040c91906200157a565b34101562000451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000448906200162b565b60405180910390fd5b5b61271082826200046391906200164d565b1115620004a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200049e90620016fa565b60405180910390fd5b6000600190505b828111620004eb57620004d5848284620004c991906200164d565b620005c960201b60201c565b8080620004e2906200171c565b915050620004ae565b50505050565b620005016200018560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005276200059260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000580576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200057790620013ef565b60405180910390fd5b62000590620005ef60201b60201c565b565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600880549050905090565b620005eb828260405180602001604052806000815250620006a760201b60201c565b5050565b620005ff6200071560201b60201c565b1562000642576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200063990620017ba565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200068e6200018560201b60201c565b6040516200069d919062001821565b60405180910390a1565b620006b983836200072c60201b60201c565b620006ce60008484846200091260201b60201c565b62000710576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200070790620018b4565b60405180910390fd5b505050565b6000600a60009054906101000a900460ff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200079f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007969062001926565b60405180910390fd5b620007b08162000acc60201b60201c565b15620007f3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007ea9062001998565b60405180910390fd5b620008076000838362000b3860201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200085991906200164d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620009408473ffffffffffffffffffffffffffffffffffffffff1662000ba860201b620022091760201c565b1562000abf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620009726200018560201b60201c565b8786866040518563ffffffff1660e01b815260040162000996949392919062001a28565b602060405180830381600087803b158015620009b157600080fd5b505af1925050508015620009e557506040513d601f19601f82011682018060405250810190620009e2919062001ad9565b60015b62000a6e573d806000811462000a18576040519150601f19603f3d011682016040523d82523d6000602084013e62000a1d565b606091505b5060008151141562000a66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a5d90620018b4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000ac4565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b62000b486200071560201b60201c565b1562000b8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b8290620017ba565b60405180910390fd5b62000ba383838362000bbb60201b6200221c1760201c565b505050565b600080823b905060008111915050919050565b62000bd383838362000d0260201b620023301760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000c205762000c1a8162000d0760201b60201c565b62000c68565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000c675762000c66838262000d5060201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000cb55762000caf8162000ecd60201b60201c565b62000cfd565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000cfc5762000cfb828262000fa960201b60201c565b5b5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000d6a846200103560201b6200182b1760201c565b62000d76919062001b0b565b905060006007600084815260200190815260200160002054905081811462000e5c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000ee3919062001b0b565b905060006009600084815260200190815260200160002054905060006008838154811062000f165762000f1562001b46565b5b90600052602060002001549050806008838154811062000f3b5762000f3a62001b46565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000f8d5762000f8c62001b75565b5b6001900381819060005260206000200160009055905550505050565b600062000fc1836200103560201b6200182b1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620010a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620010a09062001c1a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b828054620010fe9062001c6b565b90600052602060002090601f0160209004810192826200112257600085556200116e565b82601f106200113d57805160ff19168380011785556200116e565b828001600101855582156200116e579182015b828111156200116d57825182559160200191906001019062001150565b5b5090506200117d919062001181565b5090565b5b808211156200119c57600081600090555060010162001182565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200120982620011be565b810181811067ffffffffffffffff821117156200122b576200122a620011cf565b5b80604052505050565b600062001240620011a0565b90506200124e8282620011fe565b919050565b600067ffffffffffffffff821115620012715762001270620011cf565b5b6200127c82620011be565b9050602081019050919050565b60005b83811015620012a95780820151818401526020810190506200128c565b83811115620012b9576000848401525b50505050565b6000620012d6620012d08462001253565b62001234565b905082815260208101848484011115620012f557620012f4620011b9565b5b6200130284828562001289565b509392505050565b600082601f830112620013225762001321620011b4565b5b815162001334848260208601620012bf565b91505092915050565b600060208284031215620013565762001355620011aa565b5b600082015167ffffffffffffffff811115620013775762001376620011af565b5b62001385848285016200130a565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620013d76020836200138e565b9150620013e4826200139f565b602082019050919050565b600060208201905081810360008301526200140a81620013c8565b9050919050565b7f546865204669736874616e6b204865616473206d61696e2073616c652069732060008201527f6e6f74206f70656e000000000000000000000000000000000000000000000000602082015250565b60006200146f6028836200138e565b91506200147c8262001411565b604082019050919050565b60006020820190508181036000830152620014a28162001460565b9050919050565b7f596f752063616e206f6e6c79206d696e74203120746f2035204669736874616e60008201527f6b20486561647300000000000000000000000000000000000000000000000000602082015250565b6000620015076027836200138e565b91506200151482620014a9565b604082019050919050565b600060208201905081810360008301526200153a81620014f8565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620015878262001541565b9150620015948362001541565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620015d057620015cf6200154b565b5b828202905092915050565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b6000620016136019836200138e565b91506200162082620015db565b602082019050919050565b60006020820190508181036000830152620016468162001604565b9050919050565b60006200165a8262001541565b9150620016678362001541565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200169f576200169e6200154b565b5b828201905092915050565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b6000620016e26016836200138e565b9150620016ef82620016aa565b602082019050919050565b600060208201905081810360008301526200171581620016d3565b9050919050565b6000620017298262001541565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200175f576200175e6200154b565b5b600182019050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000620017a26010836200138e565b9150620017af826200176a565b602082019050919050565b60006020820190508181036000830152620017d58162001793565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200180982620017dc565b9050919050565b6200181b81620017fc565b82525050565b600060208201905062001838600083018462001810565b92915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006200189c6032836200138e565b9150620018a9826200183e565b604082019050919050565b60006020820190508181036000830152620018cf816200188d565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006200190e6020836200138e565b91506200191b82620018d6565b602082019050919050565b600060208201905081810360008301526200194181620018ff565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600062001980601c836200138e565b91506200198d8262001948565b602082019050919050565b60006020820190508181036000830152620019b38162001971565b9050919050565b620019c58162001541565b82525050565b600081519050919050565b600082825260208201905092915050565b6000620019f482620019cb565b62001a008185620019d6565b935062001a1281856020860162001289565b62001a1d81620011be565b840191505092915050565b600060808201905062001a3f600083018762001810565b62001a4e602083018662001810565b62001a5d6040830185620019ba565b818103606083015262001a718184620019e7565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62001ab38162001a7c565b811462001abf57600080fd5b50565b60008151905062001ad38162001aa8565b92915050565b60006020828403121562001af25762001af1620011aa565b5b600062001b028482850162001ac2565b91505092915050565b600062001b188262001541565b915062001b258362001541565b92508282101562001b3b5762001b3a6200154b565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600062001c02602a836200138e565b915062001c0f8262001ba4565b604082019050919050565b6000602082019050818103600083015262001c358162001bf3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062001c8457607f821691505b6020821081141562001c9b5762001c9a62001c3c565b5b50919050565b6152088062001cb16000396000f3fe6080604052600436106102725760003560e01c80636352211e1161014f578063a187c89b116100c1578063d547cfb71161007a578063d547cfb71461093c578063da6405e114610967578063e8a3d48514610990578063e985e9c5146109bb578063f2fde38b146109f8578063f47c84c514610a2157610272565b8063a187c89b14610842578063a22cb4651461086d578063b88d4fde14610896578063be9a6555146108bf578063c1d7ae31146108d6578063c87b56dd146108ff57610272565b8063853828b611610113578063853828b6146107655780638da5cb5b1461076f57806391b7f5ed1461079a578063938e3d7b146107c357806395d89b41146107ec578063a035b1fe1461081757610272565b80636352211e1461069257806370a08231146106cf578063715018a61461070c5780637501f741146107235780638456cb591461074e57610272565b80632f745c59116101e8578063438b6300116101ac578063438b6300146105705780634f6ccce7146105ad578063547520fe146105ea57806355f804b3146106135780635c975abb1461063c57806360cfd3591461066757610272565b80632f745c59146104885780632f994122146104c557806334131cd31461050257806340c10f191461052b57806342842e0e1461054757610272565b806318160ddd1161023a57806318160ddd1461038257806323b872dd146103ad5780632555ca8a146103d6578063290c292d146104135780632e1a7d4d1461042f5780632f1e2c261461044b57610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c5780630f20918614610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613774565b610a4c565b6040516102ab91906137bc565b60405180910390f35b3480156102c057600080fd5b506102c9610a5e565b6040516102d69190613870565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906138c8565b610af0565b6040516103139190613936565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e919061397d565b610b75565b005b34801561035157600080fd5b5061036c600480360381019061036791906139bd565b610c8d565b60405161037991906137bc565b60405180910390f35b34801561038e57600080fd5b50610397610ce3565b6040516103a491906139f9565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190613a14565b610cf0565b005b3480156103e257600080fd5b506103fd60048036038101906103f891906139bd565b610d50565b60405161040a91906139f9565b60405180910390f35b61042d6004803603810190610428919061397d565b610d68565b005b610449600480360381019061044491906138c8565b611055565b005b34801561045757600080fd5b50610472600480360381019061046d91906139bd565b611112565b60405161047f91906139f9565b60405180910390f35b34801561049457600080fd5b506104af60048036038101906104aa919061397d565b61115b565b6040516104bc91906139f9565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e791906139bd565b611200565b6040516104f991906137bc565b60405180910390f35b34801561050e57600080fd5b5061052960048036038101906105249190613baf565b611220565b005b6105456004803603810190610540919061397d565b611331565b005b34801561055357600080fd5b5061056e60048036038101906105699190613a14565b6114f4565b005b34801561057c57600080fd5b50610597600480360381019061059291906139bd565b611514565b6040516105a49190613cb6565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf91906138c8565b6115c2565b6040516105e191906139f9565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c91906138c8565b611633565b005b34801561061f57600080fd5b5061063a60048036038101906106359190613d8d565b6116b9565b005b34801561064857600080fd5b5061065161174f565b60405161065e91906137bc565b60405180910390f35b34801561067357600080fd5b5061067c611766565b60405161068991906137bc565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b491906138c8565b611779565b6040516106c69190613936565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f191906139bd565b61182b565b60405161070391906139f9565b60405180910390f35b34801561071857600080fd5b506107216118e3565b005b34801561072f57600080fd5b5061073861196b565b60405161074591906139f9565b60405180910390f35b34801561075a57600080fd5b50610763611971565b005b61076d6119f7565b005b34801561077b57600080fd5b50610784611ab3565b6040516107919190613936565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc91906138c8565b611add565b005b3480156107cf57600080fd5b506107ea60048036038101906107e59190613d8d565b611b63565b005b3480156107f857600080fd5b50610801611bf9565b60405161080e9190613870565b60405180910390f35b34801561082357600080fd5b5061082c611c8b565b60405161083991906139f9565b60405180910390f35b34801561084e57600080fd5b50610857611c91565b60405161086491906139f9565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190613e02565b611c97565b005b3480156108a257600080fd5b506108bd60048036038101906108b89190613ee3565b611cad565b005b3480156108cb57600080fd5b506108d4611d0f565b005b3480156108e257600080fd5b506108fd60048036038101906108f89190613f66565b611d95565b005b34801561090b57600080fd5b50610926600480360381019061092191906138c8565b611e2e565b6040516109339190613870565b60405180910390f35b34801561094857600080fd5b50610951611ed5565b60405161095e9190613870565b60405180910390f35b34801561097357600080fd5b5061098e600480360381019061098991906138c8565b611f63565b005b34801561099c57600080fd5b506109a5611fe9565b6040516109b29190613870565b60405180910390f35b3480156109c757600080fd5b506109e260048036038101906109dd9190613f93565b612077565b6040516109ef91906137bc565b60405180910390f35b348015610a0457600080fd5b50610a1f6004803603810190610a1a91906139bd565b61210b565b005b348015610a2d57600080fd5b50610a36612203565b604051610a4391906139f9565b60405180910390f35b6000610a5782612335565b9050919050565b606060008054610a6d90614002565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9990614002565b8015610ae65780601f10610abb57610100808354040283529160200191610ae6565b820191906000526020600020905b815481529060010190602001808311610ac957829003601f168201915b5050505050905090565b6000610afb826123af565b610b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b31906140a6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b8082611779565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be890614138565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c1061241b565b73ffffffffffffffffffffffffffffffffffffffff161480610c3f5750610c3e81610c3961241b565b612077565b5b610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c75906141ca565b60405180910390fd5b610c888383612423565b505050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600880549050905090565b610d01610cfb61241b565b826124dc565b610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d379061425c565b60405180910390fd5b610d4b8383836125ba565b505050565b60126020528060005260406000206000915090505481565b6000610d72610ce3565b9050610d7d83610c8d565b610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db3906142ee565b60405180910390fd5b600582601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e09919061433d565b1115610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e41906143df565b60405180910390fd5b601060009054906101000a900460ff1615610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190614471565b60405180910390fd5b600082118015610eac5750600d548211155b610eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee290614503565b60405180910390fd5b81600f54610ef99190614523565b341015610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f32906145c9565b60405180910390fd5b6127108282610f4a919061433d565b1115610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290614635565b60405180910390fd5b81601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fd6919061433d565b601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600190505b82811161104f5761103c848284611037919061433d565b612816565b808061104790614655565b915050611020565b50505050565b61105d61241b565b73ffffffffffffffffffffffffffffffffffffffff1661107b611ab3565b73ffffffffffffffffffffffffffffffffffffffff16146110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c8906146ea565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061110f57600080fd5b50565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006111668361182b565b82106111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e9061477c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60116020528060005260406000206000915054906101000a900460ff1681565b61122861241b565b73ffffffffffffffffffffffffffffffffffffffff16611246611ab3565b73ffffffffffffffffffffffffffffffffffffffff161461129c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611293906146ea565b60405180910390fd5b60005b815181101561132d576001601160008484815181106112c1576112c061479c565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061132590614655565b91505061129f565b5050565b600061133b610ce3565b9050611345611ab3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461146857601060009054906101000a900460ff166113c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bd9061483d565b60405180910390fd5b6000821180156113d85750600d548211155b611417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140e90614503565b60405180910390fd5b81600e546114259190614523565b341015611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e906145c9565b60405180910390fd5b5b6127108282611477919061433d565b11156114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af90614635565b60405180910390fd5b6000600190505b8281116114ee576114db8482846114d6919061433d565b612816565b80806114e690614655565b9150506114bf565b50505050565b61150f83838360405180602001604052806000815250611cad565b505050565b606060006115218361182b565b905060008167ffffffffffffffff81111561153f5761153e613a6c565b5b60405190808252806020026020018201604052801561156d5781602001602082028036833780820191505090505b50905060005b828110156115b757611585858261115b565b8282815181106115985761159761479c565b5b60200260200101818152505080806115af90614655565b915050611573565b508092505050919050565b60006115cc610ce3565b821061160d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611604906148cf565b60405180910390fd5b600882815481106116215761162061479c565b5b90600052602060002001549050919050565b61163b61241b565b73ffffffffffffffffffffffffffffffffffffffff16611659611ab3565b73ffffffffffffffffffffffffffffffffffffffff16146116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a6906146ea565b60405180910390fd5b80600d8190555050565b6116c161241b565b73ffffffffffffffffffffffffffffffffffffffff166116df611ab3565b73ffffffffffffffffffffffffffffffffffffffff1614611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172c906146ea565b60405180910390fd5b80600b908051906020019061174b929190613665565b5050565b6000600a60009054906101000a900460ff16905090565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181990614961565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561189c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611893906149f3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118eb61241b565b73ffffffffffffffffffffffffffffffffffffffff16611909611ab3565b73ffffffffffffffffffffffffffffffffffffffff161461195f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611956906146ea565b60405180910390fd5b6119696000612834565b565b600d5481565b61197961241b565b73ffffffffffffffffffffffffffffffffffffffff16611997611ab3565b73ffffffffffffffffffffffffffffffffffffffff16146119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e4906146ea565b60405180910390fd5b6119f56128fa565b565b6119ff61241b565b73ffffffffffffffffffffffffffffffffffffffff16611a1d611ab3565b73ffffffffffffffffffffffffffffffffffffffff1614611a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6a906146ea565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050611ab157600080fd5b565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ae561241b565b73ffffffffffffffffffffffffffffffffffffffff16611b03611ab3565b73ffffffffffffffffffffffffffffffffffffffff1614611b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b50906146ea565b60405180910390fd5b80600e8190555050565b611b6b61241b565b73ffffffffffffffffffffffffffffffffffffffff16611b89611ab3565b73ffffffffffffffffffffffffffffffffffffffff1614611bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd6906146ea565b60405180910390fd5b80600c9080519060200190611bf5929190613665565b5050565b606060018054611c0890614002565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3490614002565b8015611c815780601f10611c5657610100808354040283529160200191611c81565b820191906000526020600020905b815481529060010190602001808311611c6457829003601f168201915b5050505050905090565b600e5481565b600f5481565b611ca9611ca261241b565b838361299d565b5050565b611cbe611cb861241b565b836124dc565b611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf49061425c565b60405180910390fd5b611d0984848484612b0a565b50505050565b611d1761241b565b73ffffffffffffffffffffffffffffffffffffffff16611d35611ab3565b73ffffffffffffffffffffffffffffffffffffffff1614611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d82906146ea565b60405180910390fd5b611d93612b66565b565b611d9d61241b565b73ffffffffffffffffffffffffffffffffffffffff16611dbb611ab3565b73ffffffffffffffffffffffffffffffffffffffff1614611e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e08906146ea565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060611e39826123af565b611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f90614a85565b60405180910390fd5b6000611e82612c08565b90506000815111611ea25760405180602001604052806000815250611ecd565b80611eac84612c9a565b604051602001611ebd929190614ae1565b6040516020818303038152906040525b915050919050565b600b8054611ee290614002565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0e90614002565b8015611f5b5780601f10611f3057610100808354040283529160200191611f5b565b820191906000526020600020905b815481529060010190602001808311611f3e57829003601f168201915b505050505081565b611f6b61241b565b73ffffffffffffffffffffffffffffffffffffffff16611f89611ab3565b73ffffffffffffffffffffffffffffffffffffffff1614611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd6906146ea565b60405180910390fd5b80600f8190555050565b600c8054611ff690614002565b80601f016020809104026020016040519081016040528092919081815260200182805461202290614002565b801561206f5780601f106120445761010080835404028352916020019161206f565b820191906000526020600020905b81548152906001019060200180831161205257829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61211361241b565b73ffffffffffffffffffffffffffffffffffffffff16612131611ab3565b73ffffffffffffffffffffffffffffffffffffffff1614612187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217e906146ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ee90614b77565b60405180910390fd5b61220081612834565b50565b61271081565b600080823b905060008111915050919050565b612227838383612330565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561226a5761226581612dfb565b6122a9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122a8576122a78382612e44565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122ec576122e781612fb1565b61232b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461232a576123298282613082565b5b5b505050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806123a857506123a782613101565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661249683611779565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124e7826123af565b612526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251d90614c09565b60405180910390fd5b600061253183611779565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125a057508373ffffffffffffffffffffffffffffffffffffffff1661258884610af0565b73ffffffffffffffffffffffffffffffffffffffff16145b806125b157506125b08185612077565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125da82611779565b73ffffffffffffffffffffffffffffffffffffffff1614612630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262790614c9b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269790614d2d565b60405180910390fd5b6126ab8383836131e3565b6126b6600082612423565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127069190614d4d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461275d919061433d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61283082826040518060200160405280600081525061323b565b5050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61290261174f565b15612942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293990614dcd565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861298661241b565b6040516129939190613936565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0390614e39565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612afd91906137bc565b60405180910390a3505050565b612b158484846125ba565b612b2184848484613296565b612b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5790614ecb565b60405180910390fd5b50505050565b612b6e61174f565b612bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba490614f37565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612bf161241b565b604051612bfe9190613936565b60405180910390a1565b6060600b8054612c1790614002565b80601f0160208091040260200160405190810160405280929190818152602001828054612c4390614002565b8015612c905780601f10612c6557610100808354040283529160200191612c90565b820191906000526020600020905b815481529060010190602001808311612c7357829003601f168201915b5050505050905090565b60606000821415612ce2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612df6565b600082905060005b60008214612d14578080612cfd90614655565b915050600a82612d0d9190614f86565b9150612cea565b60008167ffffffffffffffff811115612d3057612d2f613a6c565b5b6040519080825280601f01601f191660200182016040528015612d625781602001600182028036833780820191505090505b5090505b60008514612def57600182612d7b9190614d4d565b9150600a85612d8a9190614fb7565b6030612d96919061433d565b60f81b818381518110612dac57612dab61479c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612de89190614f86565b9450612d66565b8093505050505b919050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612e518461182b565b612e5b9190614d4d565b9050600060076000848152602001908152602001600020549050818114612f40576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612fc59190614d4d565b9050600060096000848152602001908152602001600020549050600060088381548110612ff557612ff461479c565b5b9060005260206000200154905080600883815481106130175761301661479c565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061306657613065614fe8565b5b6001900381819060005260206000200160009055905550505050565b600061308d8361182b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806131cc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806131dc57506131db8261342d565b5b9050919050565b6131eb61174f565b1561322b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322290614dcd565b60405180910390fd5b61323683838361221c565b505050565b6132458383613497565b6132526000848484613296565b613291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328890614ecb565b60405180910390fd5b505050565b60006132b78473ffffffffffffffffffffffffffffffffffffffff16612209565b15613420578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132e061241b565b8786866040518563ffffffff1660e01b8152600401613302949392919061506c565b602060405180830381600087803b15801561331c57600080fd5b505af192505050801561334d57506040513d601f19601f8201168201806040525081019061334a91906150cd565b60015b6133d0573d806000811461337d576040519150601f19603f3d011682016040523d82523d6000602084013e613382565b606091505b506000815114156133c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133bf90614ecb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613425565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134fe90615146565b60405180910390fd5b613510816123af565b15613550576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613547906151b2565b60405180910390fd5b61355c600083836131e3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135ac919061433d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461367190614002565b90600052602060002090601f01602090048101928261369357600085556136da565b82601f106136ac57805160ff19168380011785556136da565b828001600101855582156136da579182015b828111156136d95782518255916020019190600101906136be565b5b5090506136e791906136eb565b5090565b5b808211156137045760008160009055506001016136ec565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137518161371c565b811461375c57600080fd5b50565b60008135905061376e81613748565b92915050565b60006020828403121561378a57613789613712565b5b60006137988482850161375f565b91505092915050565b60008115159050919050565b6137b6816137a1565b82525050565b60006020820190506137d160008301846137ad565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138115780820151818401526020810190506137f6565b83811115613820576000848401525b50505050565b6000601f19601f8301169050919050565b6000613842826137d7565b61384c81856137e2565b935061385c8185602086016137f3565b61386581613826565b840191505092915050565b6000602082019050818103600083015261388a8184613837565b905092915050565b6000819050919050565b6138a581613892565b81146138b057600080fd5b50565b6000813590506138c28161389c565b92915050565b6000602082840312156138de576138dd613712565b5b60006138ec848285016138b3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613920826138f5565b9050919050565b61393081613915565b82525050565b600060208201905061394b6000830184613927565b92915050565b61395a81613915565b811461396557600080fd5b50565b60008135905061397781613951565b92915050565b6000806040838503121561399457613993613712565b5b60006139a285828601613968565b92505060206139b3858286016138b3565b9150509250929050565b6000602082840312156139d3576139d2613712565b5b60006139e184828501613968565b91505092915050565b6139f381613892565b82525050565b6000602082019050613a0e60008301846139ea565b92915050565b600080600060608486031215613a2d57613a2c613712565b5b6000613a3b86828701613968565b9350506020613a4c86828701613968565b9250506040613a5d868287016138b3565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613aa482613826565b810181811067ffffffffffffffff82111715613ac357613ac2613a6c565b5b80604052505050565b6000613ad6613708565b9050613ae28282613a9b565b919050565b600067ffffffffffffffff821115613b0257613b01613a6c565b5b602082029050602081019050919050565b600080fd5b6000613b2b613b2684613ae7565b613acc565b90508083825260208201905060208402830185811115613b4e57613b4d613b13565b5b835b81811015613b775780613b638882613968565b845260208401935050602081019050613b50565b5050509392505050565b600082601f830112613b9657613b95613a67565b5b8135613ba6848260208601613b18565b91505092915050565b600060208284031215613bc557613bc4613712565b5b600082013567ffffffffffffffff811115613be357613be2613717565b5b613bef84828501613b81565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613c2d81613892565b82525050565b6000613c3f8383613c24565b60208301905092915050565b6000602082019050919050565b6000613c6382613bf8565b613c6d8185613c03565b9350613c7883613c14565b8060005b83811015613ca9578151613c908882613c33565b9750613c9b83613c4b565b925050600181019050613c7c565b5085935050505092915050565b60006020820190508181036000830152613cd08184613c58565b905092915050565b600080fd5b600067ffffffffffffffff821115613cf857613cf7613a6c565b5b613d0182613826565b9050602081019050919050565b82818337600083830152505050565b6000613d30613d2b84613cdd565b613acc565b905082815260208101848484011115613d4c57613d4b613cd8565b5b613d57848285613d0e565b509392505050565b600082601f830112613d7457613d73613a67565b5b8135613d84848260208601613d1d565b91505092915050565b600060208284031215613da357613da2613712565b5b600082013567ffffffffffffffff811115613dc157613dc0613717565b5b613dcd84828501613d5f565b91505092915050565b613ddf816137a1565b8114613dea57600080fd5b50565b600081359050613dfc81613dd6565b92915050565b60008060408385031215613e1957613e18613712565b5b6000613e2785828601613968565b9250506020613e3885828601613ded565b9150509250929050565b600067ffffffffffffffff821115613e5d57613e5c613a6c565b5b613e6682613826565b9050602081019050919050565b6000613e86613e8184613e42565b613acc565b905082815260208101848484011115613ea257613ea1613cd8565b5b613ead848285613d0e565b509392505050565b600082601f830112613eca57613ec9613a67565b5b8135613eda848260208601613e73565b91505092915050565b60008060008060808587031215613efd57613efc613712565b5b6000613f0b87828801613968565b9450506020613f1c87828801613968565b9350506040613f2d878288016138b3565b925050606085013567ffffffffffffffff811115613f4e57613f4d613717565b5b613f5a87828801613eb5565b91505092959194509250565b600060208284031215613f7c57613f7b613712565b5b6000613f8a84828501613ded565b91505092915050565b60008060408385031215613faa57613fa9613712565b5b6000613fb885828601613968565b9250506020613fc985828601613968565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061401a57607f821691505b6020821081141561402e5761402d613fd3565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614090602c836137e2565b915061409b82614034565b604082019050919050565b600060208201905081810360008301526140bf81614083565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006141226021836137e2565b915061412d826140c6565b604082019050919050565b6000602082019050818103600083015261415181614115565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006141b46038836137e2565b91506141bf82614158565b604082019050919050565b600060208201905081810360008301526141e3816141a7565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006142466031836137e2565b9150614251826141ea565b604082019050919050565b6000602082019050818103600083015261427581614239565b9050919050565b7f596f7520617265206e6f742077686974656c697374656420666f72207468652060008201527f4669736874616e6b204865616473207072652d73616c65000000000000000000602082015250565b60006142d86037836137e2565b91506142e38261427c565b604082019050919050565b60006020820190508181036000830152614307816142cb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061434882613892565b915061435383613892565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143885761438761430e565b5b828201905092915050565b7f4e4654206d696e74206c696d6974206578636565646564000000000000000000600082015250565b60006143c96017836137e2565b91506143d482614393565b602082019050919050565b600060208201905081810360008301526143f8816143bc565b9050919050565b7f596f752063616e2774207072652d6d696e74204669736874616e6b204865616460008201527f7320617420746865206d6f6d656e740000000000000000000000000000000000602082015250565b600061445b602f836137e2565b9150614466826143ff565b604082019050919050565b6000602082019050818103600083015261448a8161444e565b9050919050565b7f596f752063616e206f6e6c79206d696e74203120746f2035204669736874616e60008201527f6b20486561647300000000000000000000000000000000000000000000000000602082015250565b60006144ed6027836137e2565b91506144f882614491565b604082019050919050565b6000602082019050818103600083015261451c816144e0565b9050919050565b600061452e82613892565b915061453983613892565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145725761457161430e565b5b828202905092915050565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b60006145b36019836137e2565b91506145be8261457d565b602082019050919050565b600060208201905081810360008301526145e2816145a6565b9050919050565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b600061461f6016836137e2565b915061462a826145e9565b602082019050919050565b6000602082019050818103600083015261464e81614612565b9050919050565b600061466082613892565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146935761469261430e565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006146d46020836137e2565b91506146df8261469e565b602082019050919050565b60006020820190508181036000830152614703816146c7565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614766602b836137e2565b91506147718261470a565b604082019050919050565b6000602082019050818103600083015261479581614759565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f546865204669736874616e6b204865616473206d61696e2073616c652069732060008201527f6e6f74206f70656e000000000000000000000000000000000000000000000000602082015250565b60006148276028836137e2565b9150614832826147cb565b604082019050919050565b600060208201905081810360008301526148568161481a565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006148b9602c836137e2565b91506148c48261485d565b604082019050919050565b600060208201905081810360008301526148e8816148ac565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061494b6029836137e2565b9150614956826148ef565b604082019050919050565b6000602082019050818103600083015261497a8161493e565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006149dd602a836137e2565b91506149e882614981565b604082019050919050565b60006020820190508181036000830152614a0c816149d0565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614a6f602f836137e2565b9150614a7a82614a13565b604082019050919050565b60006020820190508181036000830152614a9e81614a62565b9050919050565b600081905092915050565b6000614abb826137d7565b614ac58185614aa5565b9350614ad58185602086016137f3565b80840191505092915050565b6000614aed8285614ab0565b9150614af98284614ab0565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b616026836137e2565b9150614b6c82614b05565b604082019050919050565b60006020820190508181036000830152614b9081614b54565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614bf3602c836137e2565b9150614bfe82614b97565b604082019050919050565b60006020820190508181036000830152614c2281614be6565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614c856029836137e2565b9150614c9082614c29565b604082019050919050565b60006020820190508181036000830152614cb481614c78565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614d176024836137e2565b9150614d2282614cbb565b604082019050919050565b60006020820190508181036000830152614d4681614d0a565b9050919050565b6000614d5882613892565b9150614d6383613892565b925082821015614d7657614d7561430e565b5b828203905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614db76010836137e2565b9150614dc282614d81565b602082019050919050565b60006020820190508181036000830152614de681614daa565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614e236019836137e2565b9150614e2e82614ded565b602082019050919050565b60006020820190508181036000830152614e5281614e16565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614eb56032836137e2565b9150614ec082614e59565b604082019050919050565b60006020820190508181036000830152614ee481614ea8565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614f216014836137e2565b9150614f2c82614eeb565b602082019050919050565b60006020820190508181036000830152614f5081614f14565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614f9182613892565b9150614f9c83613892565b925082614fac57614fab614f57565b5b828204905092915050565b6000614fc282613892565b9150614fcd83613892565b925082614fdd57614fdc614f57565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061503e82615017565b6150488185615022565b93506150588185602086016137f3565b61506181613826565b840191505092915050565b60006080820190506150816000830187613927565b61508e6020830186613927565b61509b60408301856139ea565b81810360608301526150ad8184615033565b905095945050505050565b6000815190506150c781613748565b92915050565b6000602082840312156150e3576150e2613712565b5b60006150f1848285016150b8565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006151306020836137e2565b915061513b826150fa565b602082019050919050565b6000602082019050818103600083015261515f81615123565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061519c601c836137e2565b91506151a782615166565b602082019050919050565b600060208201905081810360008301526151cb8161518f565b905091905056fea26469706673582212207f238c5d885ed542e9f363306c8299a57badf70ebf081666c999c2a37e0e020e64736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d59377078394670684c4564694253556e686164386a4a6538737a7347483752764238657474427543533758562f00000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636352211e1161014f578063a187c89b116100c1578063d547cfb71161007a578063d547cfb71461093c578063da6405e114610967578063e8a3d48514610990578063e985e9c5146109bb578063f2fde38b146109f8578063f47c84c514610a2157610272565b8063a187c89b14610842578063a22cb4651461086d578063b88d4fde14610896578063be9a6555146108bf578063c1d7ae31146108d6578063c87b56dd146108ff57610272565b8063853828b611610113578063853828b6146107655780638da5cb5b1461076f57806391b7f5ed1461079a578063938e3d7b146107c357806395d89b41146107ec578063a035b1fe1461081757610272565b80636352211e1461069257806370a08231146106cf578063715018a61461070c5780637501f741146107235780638456cb591461074e57610272565b80632f745c59116101e8578063438b6300116101ac578063438b6300146105705780634f6ccce7146105ad578063547520fe146105ea57806355f804b3146106135780635c975abb1461063c57806360cfd3591461066757610272565b80632f745c59146104885780632f994122146104c557806334131cd31461050257806340c10f191461052b57806342842e0e1461054757610272565b806318160ddd1161023a57806318160ddd1461038257806323b872dd146103ad5780632555ca8a146103d6578063290c292d146104135780632e1a7d4d1461042f5780632f1e2c261461044b57610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c5780630f20918614610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613774565b610a4c565b6040516102ab91906137bc565b60405180910390f35b3480156102c057600080fd5b506102c9610a5e565b6040516102d69190613870565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906138c8565b610af0565b6040516103139190613936565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e919061397d565b610b75565b005b34801561035157600080fd5b5061036c600480360381019061036791906139bd565b610c8d565b60405161037991906137bc565b60405180910390f35b34801561038e57600080fd5b50610397610ce3565b6040516103a491906139f9565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190613a14565b610cf0565b005b3480156103e257600080fd5b506103fd60048036038101906103f891906139bd565b610d50565b60405161040a91906139f9565b60405180910390f35b61042d6004803603810190610428919061397d565b610d68565b005b610449600480360381019061044491906138c8565b611055565b005b34801561045757600080fd5b50610472600480360381019061046d91906139bd565b611112565b60405161047f91906139f9565b60405180910390f35b34801561049457600080fd5b506104af60048036038101906104aa919061397d565b61115b565b6040516104bc91906139f9565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e791906139bd565b611200565b6040516104f991906137bc565b60405180910390f35b34801561050e57600080fd5b5061052960048036038101906105249190613baf565b611220565b005b6105456004803603810190610540919061397d565b611331565b005b34801561055357600080fd5b5061056e60048036038101906105699190613a14565b6114f4565b005b34801561057c57600080fd5b50610597600480360381019061059291906139bd565b611514565b6040516105a49190613cb6565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf91906138c8565b6115c2565b6040516105e191906139f9565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c91906138c8565b611633565b005b34801561061f57600080fd5b5061063a60048036038101906106359190613d8d565b6116b9565b005b34801561064857600080fd5b5061065161174f565b60405161065e91906137bc565b60405180910390f35b34801561067357600080fd5b5061067c611766565b60405161068991906137bc565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b491906138c8565b611779565b6040516106c69190613936565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f191906139bd565b61182b565b60405161070391906139f9565b60405180910390f35b34801561071857600080fd5b506107216118e3565b005b34801561072f57600080fd5b5061073861196b565b60405161074591906139f9565b60405180910390f35b34801561075a57600080fd5b50610763611971565b005b61076d6119f7565b005b34801561077b57600080fd5b50610784611ab3565b6040516107919190613936565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc91906138c8565b611add565b005b3480156107cf57600080fd5b506107ea60048036038101906107e59190613d8d565b611b63565b005b3480156107f857600080fd5b50610801611bf9565b60405161080e9190613870565b60405180910390f35b34801561082357600080fd5b5061082c611c8b565b60405161083991906139f9565b60405180910390f35b34801561084e57600080fd5b50610857611c91565b60405161086491906139f9565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190613e02565b611c97565b005b3480156108a257600080fd5b506108bd60048036038101906108b89190613ee3565b611cad565b005b3480156108cb57600080fd5b506108d4611d0f565b005b3480156108e257600080fd5b506108fd60048036038101906108f89190613f66565b611d95565b005b34801561090b57600080fd5b50610926600480360381019061092191906138c8565b611e2e565b6040516109339190613870565b60405180910390f35b34801561094857600080fd5b50610951611ed5565b60405161095e9190613870565b60405180910390f35b34801561097357600080fd5b5061098e600480360381019061098991906138c8565b611f63565b005b34801561099c57600080fd5b506109a5611fe9565b6040516109b29190613870565b60405180910390f35b3480156109c757600080fd5b506109e260048036038101906109dd9190613f93565b612077565b6040516109ef91906137bc565b60405180910390f35b348015610a0457600080fd5b50610a1f6004803603810190610a1a91906139bd565b61210b565b005b348015610a2d57600080fd5b50610a36612203565b604051610a4391906139f9565b60405180910390f35b6000610a5782612335565b9050919050565b606060008054610a6d90614002565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9990614002565b8015610ae65780601f10610abb57610100808354040283529160200191610ae6565b820191906000526020600020905b815481529060010190602001808311610ac957829003601f168201915b5050505050905090565b6000610afb826123af565b610b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b31906140a6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b8082611779565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be890614138565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c1061241b565b73ffffffffffffffffffffffffffffffffffffffff161480610c3f5750610c3e81610c3961241b565b612077565b5b610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c75906141ca565b60405180910390fd5b610c888383612423565b505050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600880549050905090565b610d01610cfb61241b565b826124dc565b610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d379061425c565b60405180910390fd5b610d4b8383836125ba565b505050565b60126020528060005260406000206000915090505481565b6000610d72610ce3565b9050610d7d83610c8d565b610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db3906142ee565b60405180910390fd5b600582601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e09919061433d565b1115610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e41906143df565b60405180910390fd5b601060009054906101000a900460ff1615610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190614471565b60405180910390fd5b600082118015610eac5750600d548211155b610eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee290614503565b60405180910390fd5b81600f54610ef99190614523565b341015610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f32906145c9565b60405180910390fd5b6127108282610f4a919061433d565b1115610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290614635565b60405180910390fd5b81601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fd6919061433d565b601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600190505b82811161104f5761103c848284611037919061433d565b612816565b808061104790614655565b915050611020565b50505050565b61105d61241b565b73ffffffffffffffffffffffffffffffffffffffff1661107b611ab3565b73ffffffffffffffffffffffffffffffffffffffff16146110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c8906146ea565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061110f57600080fd5b50565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006111668361182b565b82106111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e9061477c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60116020528060005260406000206000915054906101000a900460ff1681565b61122861241b565b73ffffffffffffffffffffffffffffffffffffffff16611246611ab3565b73ffffffffffffffffffffffffffffffffffffffff161461129c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611293906146ea565b60405180910390fd5b60005b815181101561132d576001601160008484815181106112c1576112c061479c565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061132590614655565b91505061129f565b5050565b600061133b610ce3565b9050611345611ab3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461146857601060009054906101000a900460ff166113c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bd9061483d565b60405180910390fd5b6000821180156113d85750600d548211155b611417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140e90614503565b60405180910390fd5b81600e546114259190614523565b341015611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e906145c9565b60405180910390fd5b5b6127108282611477919061433d565b11156114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af90614635565b60405180910390fd5b6000600190505b8281116114ee576114db8482846114d6919061433d565b612816565b80806114e690614655565b9150506114bf565b50505050565b61150f83838360405180602001604052806000815250611cad565b505050565b606060006115218361182b565b905060008167ffffffffffffffff81111561153f5761153e613a6c565b5b60405190808252806020026020018201604052801561156d5781602001602082028036833780820191505090505b50905060005b828110156115b757611585858261115b565b8282815181106115985761159761479c565b5b60200260200101818152505080806115af90614655565b915050611573565b508092505050919050565b60006115cc610ce3565b821061160d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611604906148cf565b60405180910390fd5b600882815481106116215761162061479c565b5b90600052602060002001549050919050565b61163b61241b565b73ffffffffffffffffffffffffffffffffffffffff16611659611ab3565b73ffffffffffffffffffffffffffffffffffffffff16146116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a6906146ea565b60405180910390fd5b80600d8190555050565b6116c161241b565b73ffffffffffffffffffffffffffffffffffffffff166116df611ab3565b73ffffffffffffffffffffffffffffffffffffffff1614611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172c906146ea565b60405180910390fd5b80600b908051906020019061174b929190613665565b5050565b6000600a60009054906101000a900460ff16905090565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181990614961565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561189c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611893906149f3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118eb61241b565b73ffffffffffffffffffffffffffffffffffffffff16611909611ab3565b73ffffffffffffffffffffffffffffffffffffffff161461195f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611956906146ea565b60405180910390fd5b6119696000612834565b565b600d5481565b61197961241b565b73ffffffffffffffffffffffffffffffffffffffff16611997611ab3565b73ffffffffffffffffffffffffffffffffffffffff16146119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e4906146ea565b60405180910390fd5b6119f56128fa565b565b6119ff61241b565b73ffffffffffffffffffffffffffffffffffffffff16611a1d611ab3565b73ffffffffffffffffffffffffffffffffffffffff1614611a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6a906146ea565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050611ab157600080fd5b565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ae561241b565b73ffffffffffffffffffffffffffffffffffffffff16611b03611ab3565b73ffffffffffffffffffffffffffffffffffffffff1614611b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b50906146ea565b60405180910390fd5b80600e8190555050565b611b6b61241b565b73ffffffffffffffffffffffffffffffffffffffff16611b89611ab3565b73ffffffffffffffffffffffffffffffffffffffff1614611bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd6906146ea565b60405180910390fd5b80600c9080519060200190611bf5929190613665565b5050565b606060018054611c0890614002565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3490614002565b8015611c815780601f10611c5657610100808354040283529160200191611c81565b820191906000526020600020905b815481529060010190602001808311611c6457829003601f168201915b5050505050905090565b600e5481565b600f5481565b611ca9611ca261241b565b838361299d565b5050565b611cbe611cb861241b565b836124dc565b611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf49061425c565b60405180910390fd5b611d0984848484612b0a565b50505050565b611d1761241b565b73ffffffffffffffffffffffffffffffffffffffff16611d35611ab3565b73ffffffffffffffffffffffffffffffffffffffff1614611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d82906146ea565b60405180910390fd5b611d93612b66565b565b611d9d61241b565b73ffffffffffffffffffffffffffffffffffffffff16611dbb611ab3565b73ffffffffffffffffffffffffffffffffffffffff1614611e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e08906146ea565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060611e39826123af565b611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f90614a85565b60405180910390fd5b6000611e82612c08565b90506000815111611ea25760405180602001604052806000815250611ecd565b80611eac84612c9a565b604051602001611ebd929190614ae1565b6040516020818303038152906040525b915050919050565b600b8054611ee290614002565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0e90614002565b8015611f5b5780601f10611f3057610100808354040283529160200191611f5b565b820191906000526020600020905b815481529060010190602001808311611f3e57829003601f168201915b505050505081565b611f6b61241b565b73ffffffffffffffffffffffffffffffffffffffff16611f89611ab3565b73ffffffffffffffffffffffffffffffffffffffff1614611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd6906146ea565b60405180910390fd5b80600f8190555050565b600c8054611ff690614002565b80601f016020809104026020016040519081016040528092919081815260200182805461202290614002565b801561206f5780601f106120445761010080835404028352916020019161206f565b820191906000526020600020905b81548152906001019060200180831161205257829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61211361241b565b73ffffffffffffffffffffffffffffffffffffffff16612131611ab3565b73ffffffffffffffffffffffffffffffffffffffff1614612187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217e906146ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ee90614b77565b60405180910390fd5b61220081612834565b50565b61271081565b600080823b905060008111915050919050565b612227838383612330565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561226a5761226581612dfb565b6122a9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122a8576122a78382612e44565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122ec576122e781612fb1565b61232b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461232a576123298282613082565b5b5b505050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806123a857506123a782613101565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661249683611779565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124e7826123af565b612526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251d90614c09565b60405180910390fd5b600061253183611779565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125a057508373ffffffffffffffffffffffffffffffffffffffff1661258884610af0565b73ffffffffffffffffffffffffffffffffffffffff16145b806125b157506125b08185612077565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125da82611779565b73ffffffffffffffffffffffffffffffffffffffff1614612630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262790614c9b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269790614d2d565b60405180910390fd5b6126ab8383836131e3565b6126b6600082612423565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127069190614d4d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461275d919061433d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61283082826040518060200160405280600081525061323b565b5050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61290261174f565b15612942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293990614dcd565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861298661241b565b6040516129939190613936565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0390614e39565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612afd91906137bc565b60405180910390a3505050565b612b158484846125ba565b612b2184848484613296565b612b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5790614ecb565b60405180910390fd5b50505050565b612b6e61174f565b612bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba490614f37565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612bf161241b565b604051612bfe9190613936565b60405180910390a1565b6060600b8054612c1790614002565b80601f0160208091040260200160405190810160405280929190818152602001828054612c4390614002565b8015612c905780601f10612c6557610100808354040283529160200191612c90565b820191906000526020600020905b815481529060010190602001808311612c7357829003601f168201915b5050505050905090565b60606000821415612ce2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612df6565b600082905060005b60008214612d14578080612cfd90614655565b915050600a82612d0d9190614f86565b9150612cea565b60008167ffffffffffffffff811115612d3057612d2f613a6c565b5b6040519080825280601f01601f191660200182016040528015612d625781602001600182028036833780820191505090505b5090505b60008514612def57600182612d7b9190614d4d565b9150600a85612d8a9190614fb7565b6030612d96919061433d565b60f81b818381518110612dac57612dab61479c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612de89190614f86565b9450612d66565b8093505050505b919050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612e518461182b565b612e5b9190614d4d565b9050600060076000848152602001908152602001600020549050818114612f40576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612fc59190614d4d565b9050600060096000848152602001908152602001600020549050600060088381548110612ff557612ff461479c565b5b9060005260206000200154905080600883815481106130175761301661479c565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061306657613065614fe8565b5b6001900381819060005260206000200160009055905550505050565b600061308d8361182b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806131cc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806131dc57506131db8261342d565b5b9050919050565b6131eb61174f565b1561322b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322290614dcd565b60405180910390fd5b61323683838361221c565b505050565b6132458383613497565b6132526000848484613296565b613291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328890614ecb565b60405180910390fd5b505050565b60006132b78473ffffffffffffffffffffffffffffffffffffffff16612209565b15613420578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132e061241b565b8786866040518563ffffffff1660e01b8152600401613302949392919061506c565b602060405180830381600087803b15801561331c57600080fd5b505af192505050801561334d57506040513d601f19601f8201168201806040525081019061334a91906150cd565b60015b6133d0573d806000811461337d576040519150601f19603f3d011682016040523d82523d6000602084013e613382565b606091505b506000815114156133c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133bf90614ecb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613425565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134fe90615146565b60405180910390fd5b613510816123af565b15613550576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613547906151b2565b60405180910390fd5b61355c600083836131e3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135ac919061433d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461367190614002565b90600052602060002090601f01602090048101928261369357600085556136da565b82601f106136ac57805160ff19168380011785556136da565b828001600101855582156136da579182015b828111156136d95782518255916020019190600101906136be565b5b5090506136e791906136eb565b5090565b5b808211156137045760008160009055506001016136ec565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137518161371c565b811461375c57600080fd5b50565b60008135905061376e81613748565b92915050565b60006020828403121561378a57613789613712565b5b60006137988482850161375f565b91505092915050565b60008115159050919050565b6137b6816137a1565b82525050565b60006020820190506137d160008301846137ad565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138115780820151818401526020810190506137f6565b83811115613820576000848401525b50505050565b6000601f19601f8301169050919050565b6000613842826137d7565b61384c81856137e2565b935061385c8185602086016137f3565b61386581613826565b840191505092915050565b6000602082019050818103600083015261388a8184613837565b905092915050565b6000819050919050565b6138a581613892565b81146138b057600080fd5b50565b6000813590506138c28161389c565b92915050565b6000602082840312156138de576138dd613712565b5b60006138ec848285016138b3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613920826138f5565b9050919050565b61393081613915565b82525050565b600060208201905061394b6000830184613927565b92915050565b61395a81613915565b811461396557600080fd5b50565b60008135905061397781613951565b92915050565b6000806040838503121561399457613993613712565b5b60006139a285828601613968565b92505060206139b3858286016138b3565b9150509250929050565b6000602082840312156139d3576139d2613712565b5b60006139e184828501613968565b91505092915050565b6139f381613892565b82525050565b6000602082019050613a0e60008301846139ea565b92915050565b600080600060608486031215613a2d57613a2c613712565b5b6000613a3b86828701613968565b9350506020613a4c86828701613968565b9250506040613a5d868287016138b3565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613aa482613826565b810181811067ffffffffffffffff82111715613ac357613ac2613a6c565b5b80604052505050565b6000613ad6613708565b9050613ae28282613a9b565b919050565b600067ffffffffffffffff821115613b0257613b01613a6c565b5b602082029050602081019050919050565b600080fd5b6000613b2b613b2684613ae7565b613acc565b90508083825260208201905060208402830185811115613b4e57613b4d613b13565b5b835b81811015613b775780613b638882613968565b845260208401935050602081019050613b50565b5050509392505050565b600082601f830112613b9657613b95613a67565b5b8135613ba6848260208601613b18565b91505092915050565b600060208284031215613bc557613bc4613712565b5b600082013567ffffffffffffffff811115613be357613be2613717565b5b613bef84828501613b81565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613c2d81613892565b82525050565b6000613c3f8383613c24565b60208301905092915050565b6000602082019050919050565b6000613c6382613bf8565b613c6d8185613c03565b9350613c7883613c14565b8060005b83811015613ca9578151613c908882613c33565b9750613c9b83613c4b565b925050600181019050613c7c565b5085935050505092915050565b60006020820190508181036000830152613cd08184613c58565b905092915050565b600080fd5b600067ffffffffffffffff821115613cf857613cf7613a6c565b5b613d0182613826565b9050602081019050919050565b82818337600083830152505050565b6000613d30613d2b84613cdd565b613acc565b905082815260208101848484011115613d4c57613d4b613cd8565b5b613d57848285613d0e565b509392505050565b600082601f830112613d7457613d73613a67565b5b8135613d84848260208601613d1d565b91505092915050565b600060208284031215613da357613da2613712565b5b600082013567ffffffffffffffff811115613dc157613dc0613717565b5b613dcd84828501613d5f565b91505092915050565b613ddf816137a1565b8114613dea57600080fd5b50565b600081359050613dfc81613dd6565b92915050565b60008060408385031215613e1957613e18613712565b5b6000613e2785828601613968565b9250506020613e3885828601613ded565b9150509250929050565b600067ffffffffffffffff821115613e5d57613e5c613a6c565b5b613e6682613826565b9050602081019050919050565b6000613e86613e8184613e42565b613acc565b905082815260208101848484011115613ea257613ea1613cd8565b5b613ead848285613d0e565b509392505050565b600082601f830112613eca57613ec9613a67565b5b8135613eda848260208601613e73565b91505092915050565b60008060008060808587031215613efd57613efc613712565b5b6000613f0b87828801613968565b9450506020613f1c87828801613968565b9350506040613f2d878288016138b3565b925050606085013567ffffffffffffffff811115613f4e57613f4d613717565b5b613f5a87828801613eb5565b91505092959194509250565b600060208284031215613f7c57613f7b613712565b5b6000613f8a84828501613ded565b91505092915050565b60008060408385031215613faa57613fa9613712565b5b6000613fb885828601613968565b9250506020613fc985828601613968565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061401a57607f821691505b6020821081141561402e5761402d613fd3565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614090602c836137e2565b915061409b82614034565b604082019050919050565b600060208201905081810360008301526140bf81614083565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006141226021836137e2565b915061412d826140c6565b604082019050919050565b6000602082019050818103600083015261415181614115565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006141b46038836137e2565b91506141bf82614158565b604082019050919050565b600060208201905081810360008301526141e3816141a7565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006142466031836137e2565b9150614251826141ea565b604082019050919050565b6000602082019050818103600083015261427581614239565b9050919050565b7f596f7520617265206e6f742077686974656c697374656420666f72207468652060008201527f4669736874616e6b204865616473207072652d73616c65000000000000000000602082015250565b60006142d86037836137e2565b91506142e38261427c565b604082019050919050565b60006020820190508181036000830152614307816142cb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061434882613892565b915061435383613892565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143885761438761430e565b5b828201905092915050565b7f4e4654206d696e74206c696d6974206578636565646564000000000000000000600082015250565b60006143c96017836137e2565b91506143d482614393565b602082019050919050565b600060208201905081810360008301526143f8816143bc565b9050919050565b7f596f752063616e2774207072652d6d696e74204669736874616e6b204865616460008201527f7320617420746865206d6f6d656e740000000000000000000000000000000000602082015250565b600061445b602f836137e2565b9150614466826143ff565b604082019050919050565b6000602082019050818103600083015261448a8161444e565b9050919050565b7f596f752063616e206f6e6c79206d696e74203120746f2035204669736874616e60008201527f6b20486561647300000000000000000000000000000000000000000000000000602082015250565b60006144ed6027836137e2565b91506144f882614491565b604082019050919050565b6000602082019050818103600083015261451c816144e0565b9050919050565b600061452e82613892565b915061453983613892565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145725761457161430e565b5b828202905092915050565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b60006145b36019836137e2565b91506145be8261457d565b602082019050919050565b600060208201905081810360008301526145e2816145a6565b9050919050565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b600061461f6016836137e2565b915061462a826145e9565b602082019050919050565b6000602082019050818103600083015261464e81614612565b9050919050565b600061466082613892565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146935761469261430e565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006146d46020836137e2565b91506146df8261469e565b602082019050919050565b60006020820190508181036000830152614703816146c7565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614766602b836137e2565b91506147718261470a565b604082019050919050565b6000602082019050818103600083015261479581614759565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f546865204669736874616e6b204865616473206d61696e2073616c652069732060008201527f6e6f74206f70656e000000000000000000000000000000000000000000000000602082015250565b60006148276028836137e2565b9150614832826147cb565b604082019050919050565b600060208201905081810360008301526148568161481a565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006148b9602c836137e2565b91506148c48261485d565b604082019050919050565b600060208201905081810360008301526148e8816148ac565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061494b6029836137e2565b9150614956826148ef565b604082019050919050565b6000602082019050818103600083015261497a8161493e565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006149dd602a836137e2565b91506149e882614981565b604082019050919050565b60006020820190508181036000830152614a0c816149d0565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614a6f602f836137e2565b9150614a7a82614a13565b604082019050919050565b60006020820190508181036000830152614a9e81614a62565b9050919050565b600081905092915050565b6000614abb826137d7565b614ac58185614aa5565b9350614ad58185602086016137f3565b80840191505092915050565b6000614aed8285614ab0565b9150614af98284614ab0565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b616026836137e2565b9150614b6c82614b05565b604082019050919050565b60006020820190508181036000830152614b9081614b54565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614bf3602c836137e2565b9150614bfe82614b97565b604082019050919050565b60006020820190508181036000830152614c2281614be6565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614c856029836137e2565b9150614c9082614c29565b604082019050919050565b60006020820190508181036000830152614cb481614c78565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614d176024836137e2565b9150614d2282614cbb565b604082019050919050565b60006020820190508181036000830152614d4681614d0a565b9050919050565b6000614d5882613892565b9150614d6383613892565b925082821015614d7657614d7561430e565b5b828203905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614db76010836137e2565b9150614dc282614d81565b602082019050919050565b60006020820190508181036000830152614de681614daa565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614e236019836137e2565b9150614e2e82614ded565b602082019050919050565b60006020820190508181036000830152614e5281614e16565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614eb56032836137e2565b9150614ec082614e59565b604082019050919050565b60006020820190508181036000830152614ee481614ea8565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614f216014836137e2565b9150614f2c82614eeb565b602082019050919050565b60006020820190508181036000830152614f5081614f14565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614f9182613892565b9150614f9c83613892565b925082614fac57614fab614f57565b5b828204905092915050565b6000614fc282613892565b9150614fcd83613892565b925082614fdd57614fdc614f57565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061503e82615017565b6150488185615022565b93506150588185602086016137f3565b61506181613826565b840191505092915050565b60006080820190506150816000830187613927565b61508e6020830186613927565b61509b60408301856139ea565b81810360608301526150ad8184615033565b905095945050505050565b6000815190506150c781613748565b92915050565b6000602082840312156150e3576150e2613712565b5b60006150f1848285016150b8565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006151306020836137e2565b915061513b826150fa565b602082019050919050565b6000602082019050818103600083015261515f81615123565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061519c601c836137e2565b91506151a782615166565b602082019050919050565b600060208201905081810360008301526151cb8161518f565b905091905056fea26469706673582212207f238c5d885ed542e9f363306c8299a57badf70ebf081666c999c2a37e0e020e64736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d59377078394670684c4564694253556e686164386a4a6538737a7347483752764238657474427543533758562f00000000000000000000

-----Decoded View---------------
Arg [0] : _baseTokenURI (string): ipfs://QmY7px9FphLEdiBSUnhad8jJe8szsGH7RvB8ettBuCS7XV/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d59377078394670684c4564694253556e686164386a4a65
Arg [3] : 38737a7347483752764238657474427543533758562f00000000000000000000


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.