ETH Price: $2,649.49 (+1.12%)

Token

GridironBattleships (GRIDDYSHIPS)
 

Overview

Max Total Supply

1,392 GRIDDYSHIPS

Holders

179

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
redirectedpanda.eth
Balance
11 GRIDDYSHIPS
0xF04015eE858865263047da1f95407782E9f3F53d
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:
Griddy

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : griddy.sol
// contracts/GameItem.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";

contract Griddy is ERC721URIStorage, Ownable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;
    uint public constant maxPurchase = 10;
    uint public constant maxFreeMint = 1000;
    uint public constant maxNFTs = 5000;
    uint256 public constant purchasePrice = 5000000000000000; //0.005 ETH

    constructor() ERC721("GridironBattleships", "GRIDDYSHIPS") {}

    function withdraw(address _recipient) public payable onlyOwner {
        payable(_recipient).transfer(address(this).balance);
    }

    function totalSupply() public view returns (uint256) {
        return _tokenIds.current();
    }

    function awardmint(address wallet)
        internal virtual 
        returns (uint256)
    {
        _tokenIds.increment();
        
        uint256 newItemId = _tokenIds.current();
        _mint(wallet, newItemId);
        _setTokenURI(newItemId, string(abi.encodePacked(
                "https://gridiron-nft.s3.us-east-2.amazonaws.com/",
                Strings.toString(newItemId),
                ".json"
            )));

        return newItemId;
    }

    function mintFree_First1kMints_MAX10perTXN(uint numberOfTokens) public {
        require(_tokenIds.current() <= maxFreeMint);
        require(numberOfTokens <= maxPurchase, "Can only mint 10 tokens at a time");
        require(_tokenIds.current().add(numberOfTokens) <= maxNFTs, "Purchase would exceed max supply of NFTs");

        for(uint i = 0; i < numberOfTokens; i++) {
            if (_tokenIds.current() < maxNFTs) {
                awardmint(msg.sender);
            }
        }
    }

    function mintBattleships_005_ETH_Each_MAX10perTXN(uint numberOfTokens) public payable {
        require(numberOfTokens <= maxPurchase, "Can only mint 10 tokens at a time");
        require(_tokenIds.current().add(numberOfTokens) <= maxNFTs, "Purchase would exceed max supply of NFTs");
        require(purchasePrice.mul(numberOfTokens) == msg.value, "Ether value sent is not correct");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            if (_tokenIds.current() < maxNFTs) {
                awardmint(msg.sender);
            }
        }
    }

    function ownerMint(address wallet, uint numberOfTokens) public onlyOwner {
        require(numberOfTokens <= maxPurchase, "Can only mint 10 tokens at a time");
        require(_tokenIds.current().add(numberOfTokens) <= maxNFTs, "Purchase would exceed max supply of NFTs");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            if (_tokenIds.current() < maxNFTs) {
                awardmint(wallet);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 3 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 4 of 14 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 5 of 14 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

File 7 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 8 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 9 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 10 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 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 12 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 14 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNFTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintBattleships_005_ETH_Each_MAX10perTXN","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintFree_First1kMints_MAX10perTXN","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchasePrice","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"address","name":"_recipient","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601381526020017f4772696469726f6e426174746c657368697073000000000000000000000000008152506040518060400160405280600b81526020017f4752494444595348495053000000000000000000000000000000000000000000815250816000908051906020019062000096929190620001a6565b508060019080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002bb565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000256565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b600060028204905060018216806200026f57607f821691505b602082108114156200028657620002856200028c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61343e80620002cb6000396000f3fe6080604052600436106101665760003560e01c806370a08231116100d1578063a591252d1161008a578063c87b56dd11610064578063c87b56dd146104fa578063defd6c5f14610537578063e985e9c514610562578063f2fde38b1461059f57610166565b8063a591252d1461047d578063b88d4fde146104a8578063b9539932146104d157610166565b806370a082311461037f578063715018a6146103bc5780638da5cb5b146103d357806395d89b41146103fe578063977b055b14610429578063a22cb4651461045457610166565b806342842e0e1161012357806342842e0e1461028d578063484b973c146102b65780634e9e1ec6146102df57806351cff8d91461030a5780636352211e146103265780636bfe21ed1461036357610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b31461021057806318160ddd1461023957806323b872dd14610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612368565b6105c8565b60405161019f9190612810565b60405180910390f35b3480156101b457600080fd5b506101bd6106aa565b6040516101ca919061282b565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f591906123c2565b61073c565b60405161020791906127a9565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190612328565b610782565b005b34801561024557600080fd5b5061024e61089a565b60405161025b9190612a6d565b60405180910390f35b34801561027057600080fd5b5061028b60048036038101906102869190612212565b6108ab565b005b34801561029957600080fd5b506102b460048036038101906102af9190612212565b61090b565b005b3480156102c257600080fd5b506102dd60048036038101906102d89190612328565b61092b565b005b3480156102eb57600080fd5b506102f4610a18565b6040516103019190612a6d565b60405180910390f35b610324600480360381019061031f91906121a5565b610a1e565b005b34801561033257600080fd5b5061034d600480360381019061034891906123c2565b610a70565b60405161035a91906127a9565b60405180910390f35b61037d600480360381019061037891906123c2565b610b22565b005b34801561038b57600080fd5b506103a660048036038101906103a191906121a5565b610c61565b6040516103b39190612a6d565b60405180910390f35b3480156103c857600080fd5b506103d1610d19565b005b3480156103df57600080fd5b506103e8610d2d565b6040516103f591906127a9565b60405180910390f35b34801561040a57600080fd5b50610413610d57565b604051610420919061282b565b60405180910390f35b34801561043557600080fd5b5061043e610de9565b60405161044b9190612a6d565b60405180910390f35b34801561046057600080fd5b5061047b600480360381019061047691906122e8565b610dee565b005b34801561048957600080fd5b50610492610e04565b60405161049f9190612a6d565b60405180910390f35b3480156104b457600080fd5b506104cf60048036038101906104ca9190612265565b610e0a565b005b3480156104dd57600080fd5b506104f860048036038101906104f391906123c2565b610e6c565b005b34801561050657600080fd5b50610521600480360381019061051c91906123c2565b610f68565b60405161052e919061282b565b60405180910390f35b34801561054357600080fd5b5061054c61107b565b6040516105599190612a6d565b60405180910390f35b34801561056e57600080fd5b50610589600480360381019061058491906121d2565b611086565b6040516105969190612810565b60405180910390f35b3480156105ab57600080fd5b506105c660048036038101906105c191906121a5565b61111a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a357506106a28261119e565b5b9050919050565b6060600080546106b990612cec565b80601f01602080910402602001604051908101604052809291908181526020018280546106e590612cec565b80156107325780601f1061070757610100808354040283529160200191610732565b820191906000526020600020905b81548152906001019060200180831161071557829003601f168201915b5050505050905090565b600061074782611208565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061078d82610a70565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f590612a0d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661081d611253565b73ffffffffffffffffffffffffffffffffffffffff16148061084c575061084b81610846611253565b611086565b5b61088b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108829061298d565b60405180910390fd5b610895838361125b565b505050565b60006108a66008611314565b905090565b6108bc6108b6611253565b82611322565b6108fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f290612a2d565b60405180910390fd5b6109068383836113b7565b505050565b61092683838360405180602001604052806000815250610e0a565b505050565b61093361161e565b600a811115610977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096e90612a4d565b60405180910390fd5b611388610996826109886008611314565b61169c90919063ffffffff16565b11156109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce9061286d565b60405180910390fd5b60005b81811015610a13576113886109ef6008611314565b1015610a00576109fe836116b2565b505b8080610a0b90612d4f565b9150506109da565b505050565b61138881565b610a2661161e565b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a6c573d6000803e3d6000fd5b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b10906129ed565b60405180910390fd5b80915050919050565b600a811115610b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5d90612a4d565b60405180910390fd5b611388610b8582610b776008611314565b61169c90919063ffffffff16565b1115610bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbd9061286d565b60405180910390fd5b34610be1826611c37937e0800061171090919063ffffffff16565b14610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c189061292d565b60405180910390fd5b60005b81811015610c5d57611388610c396008611314565b1015610c4a57610c48336116b2565b505b8080610c5590612d4f565b915050610c24565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc99061294d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d2161161e565b610d2b6000611726565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610d6690612cec565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9290612cec565b8015610ddf5780601f10610db457610100808354040283529160200191610ddf565b820191906000526020600020905b815481529060010190602001808311610dc257829003601f168201915b5050505050905090565b600a81565b610e00610df9611253565b83836117ec565b5050565b6103e881565b610e1b610e15611253565b83611322565b610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5190612a2d565b60405180910390fd5b610e6684848484611959565b50505050565b6103e8610e796008611314565b1115610e8457600080fd5b600a811115610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90612a4d565b60405180910390fd5b611388610ee782610ed96008611314565b61169c90919063ffffffff16565b1115610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f9061286d565b60405180910390fd5b60005b81811015610f6457611388610f406008611314565b1015610f5157610f4f336116b2565b505b8080610f5c90612d4f565b915050610f2b565b5050565b6060610f7382611208565b6000600660008481526020019081526020016000208054610f9390612cec565b80601f0160208091040260200160405190810160405280929190818152602001828054610fbf90612cec565b801561100c5780601f10610fe15761010080835404028352916020019161100c565b820191906000526020600020905b815481529060010190602001808311610fef57829003601f168201915b50505050509050600061101d6119b5565b9050600081511415611033578192505050611076565b600082511115611068578082604051602001611050929190612758565b60405160208183030381529060405292505050611076565b611071846119cc565b925050505b919050565b6611c37937e0800081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61112261161e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611192576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111899061288d565b60405180910390fd5b61119b81611726565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61121181611a34565b611250576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611247906129ed565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166112ce83610a70565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60008061132e83610a70565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611370575061136f8185611086565b5b806113ae57508373ffffffffffffffffffffffffffffffffffffffff166113968461073c565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166113d782610a70565b73ffffffffffffffffffffffffffffffffffffffff161461142d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611424906128ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561149d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611494906128ed565b60405180910390fd5b6114a8838383611aa0565b6114b360008261125b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115039190612c02565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461155a9190612b21565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611619838383611aa5565b505050565b611626611253565b73ffffffffffffffffffffffffffffffffffffffff16611644610d2d565b73ffffffffffffffffffffffffffffffffffffffff161461169a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611691906129cd565b60405180910390fd5b565b600081836116aa9190612b21565b905092915050565b60006116be6008611aaa565b60006116ca6008611314565b90506116d68382611ac0565b611707816116e383611c9a565b6040516020016116f3919061277c565b604051602081830303815290604052611dfb565b80915050919050565b6000818361171e9190612ba8565b905092915050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561185b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118529061290d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161194c9190612810565b60405180910390a3505050565b6119648484846113b7565b61197084848484611e6f565b6119af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a69061284d565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b60606119d782611208565b60006119e16119b5565b90506000815111611a015760405180602001604052806000815250611a2c565b80611a0b84611c9a565b604051602001611a1c929190612758565b6040516020818303038152906040525b915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b27906129ad565b60405180910390fd5b611b3981611a34565b15611b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b70906128cd565b60405180910390fd5b611b8560008383611aa0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bd59190612b21565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c9660008383611aa5565b5050565b60606000821415611ce2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611df6565b600082905060005b60008214611d14578080611cfd90612d4f565b915050600a82611d0d9190612b77565b9150611cea565b60008167ffffffffffffffff811115611d3057611d2f612e85565b5b6040519080825280601f01601f191660200182016040528015611d625781602001600182028036833780820191505090505b5090505b60008514611def57600182611d7b9190612c02565b9150600a85611d8a9190612d98565b6030611d969190612b21565b60f81b818381518110611dac57611dab612e56565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611de89190612b77565b9450611d66565b8093505050505b919050565b611e0482611a34565b611e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3a9061296d565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611e6a929190612029565b505050565b6000611e908473ffffffffffffffffffffffffffffffffffffffff16612006565b15611ff9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eb9611253565b8786866040518563ffffffff1660e01b8152600401611edb94939291906127c4565b602060405180830381600087803b158015611ef557600080fd5b505af1925050508015611f2657506040513d601f19601f82011682018060405250810190611f239190612395565b60015b611fa9573d8060008114611f56576040519150601f19603f3d011682016040523d82523d6000602084013e611f5b565b606091505b50600081511415611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f989061284d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ffe565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461203590612cec565b90600052602060002090601f016020900481019282612057576000855561209e565b82601f1061207057805160ff191683800117855561209e565b8280016001018555821561209e579182015b8281111561209d578251825591602001919060010190612082565b5b5090506120ab91906120af565b5090565b5b808211156120c85760008160009055506001016120b0565b5090565b60006120df6120da84612aad565b612a88565b9050828152602081018484840111156120fb576120fa612eb9565b5b612106848285612caa565b509392505050565b60008135905061211d816133ac565b92915050565b600081359050612132816133c3565b92915050565b600081359050612147816133da565b92915050565b60008151905061215c816133da565b92915050565b600082601f83011261217757612176612eb4565b5b81356121878482602086016120cc565b91505092915050565b60008135905061219f816133f1565b92915050565b6000602082840312156121bb576121ba612ec3565b5b60006121c98482850161210e565b91505092915050565b600080604083850312156121e9576121e8612ec3565b5b60006121f78582860161210e565b92505060206122088582860161210e565b9150509250929050565b60008060006060848603121561222b5761222a612ec3565b5b60006122398682870161210e565b935050602061224a8682870161210e565b925050604061225b86828701612190565b9150509250925092565b6000806000806080858703121561227f5761227e612ec3565b5b600061228d8782880161210e565b945050602061229e8782880161210e565b93505060406122af87828801612190565b925050606085013567ffffffffffffffff8111156122d0576122cf612ebe565b5b6122dc87828801612162565b91505092959194509250565b600080604083850312156122ff576122fe612ec3565b5b600061230d8582860161210e565b925050602061231e85828601612123565b9150509250929050565b6000806040838503121561233f5761233e612ec3565b5b600061234d8582860161210e565b925050602061235e85828601612190565b9150509250929050565b60006020828403121561237e5761237d612ec3565b5b600061238c84828501612138565b91505092915050565b6000602082840312156123ab576123aa612ec3565b5b60006123b98482850161214d565b91505092915050565b6000602082840312156123d8576123d7612ec3565b5b60006123e684828501612190565b91505092915050565b6123f881612c36565b82525050565b61240781612c48565b82525050565b600061241882612ade565b6124228185612af4565b9350612432818560208601612cb9565b61243b81612ec8565b840191505092915050565b600061245182612ae9565b61245b8185612b05565b935061246b818560208601612cb9565b61247481612ec8565b840191505092915050565b600061248a82612ae9565b6124948185612b16565b93506124a4818560208601612cb9565b80840191505092915050565b60006124bd603283612b05565b91506124c882612ed9565b604082019050919050565b60006124e0602883612b05565b91506124eb82612f28565b604082019050919050565b6000612503602683612b05565b915061250e82612f77565b604082019050919050565b6000612526602583612b05565b915061253182612fc6565b604082019050919050565b6000612549601c83612b05565b915061255482613015565b602082019050919050565b600061256c602483612b05565b91506125778261303e565b604082019050919050565b600061258f601983612b05565b915061259a8261308d565b602082019050919050565b60006125b2601f83612b05565b91506125bd826130b6565b602082019050919050565b60006125d5603083612b16565b91506125e0826130df565b603082019050919050565b60006125f8602983612b05565b91506126038261312e565b604082019050919050565b600061261b602e83612b05565b91506126268261317d565b604082019050919050565b600061263e603e83612b05565b9150612649826131cc565b604082019050919050565b6000612661602083612b05565b915061266c8261321b565b602082019050919050565b6000612684600583612b16565b915061268f82613244565b600582019050919050565b60006126a7602083612b05565b91506126b28261326d565b602082019050919050565b60006126ca601883612b05565b91506126d582613296565b602082019050919050565b60006126ed602183612b05565b91506126f8826132bf565b604082019050919050565b6000612710602e83612b05565b915061271b8261330e565b604082019050919050565b6000612733602183612b05565b915061273e8261335d565b604082019050919050565b61275281612ca0565b82525050565b6000612764828561247f565b9150612770828461247f565b91508190509392505050565b6000612787826125c8565b9150612793828461247f565b915061279e82612677565b915081905092915050565b60006020820190506127be60008301846123ef565b92915050565b60006080820190506127d960008301876123ef565b6127e660208301866123ef565b6127f36040830185612749565b8181036060830152612805818461240d565b905095945050505050565b600060208201905061282560008301846123fe565b92915050565b600060208201905081810360008301526128458184612446565b905092915050565b60006020820190508181036000830152612866816124b0565b9050919050565b60006020820190508181036000830152612886816124d3565b9050919050565b600060208201905081810360008301526128a6816124f6565b9050919050565b600060208201905081810360008301526128c681612519565b9050919050565b600060208201905081810360008301526128e68161253c565b9050919050565b600060208201905081810360008301526129068161255f565b9050919050565b6000602082019050818103600083015261292681612582565b9050919050565b60006020820190508181036000830152612946816125a5565b9050919050565b60006020820190508181036000830152612966816125eb565b9050919050565b600060208201905081810360008301526129868161260e565b9050919050565b600060208201905081810360008301526129a681612631565b9050919050565b600060208201905081810360008301526129c681612654565b9050919050565b600060208201905081810360008301526129e68161269a565b9050919050565b60006020820190508181036000830152612a06816126bd565b9050919050565b60006020820190508181036000830152612a26816126e0565b9050919050565b60006020820190508181036000830152612a4681612703565b9050919050565b60006020820190508181036000830152612a6681612726565b9050919050565b6000602082019050612a826000830184612749565b92915050565b6000612a92612aa3565b9050612a9e8282612d1e565b919050565b6000604051905090565b600067ffffffffffffffff821115612ac857612ac7612e85565b5b612ad182612ec8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b2c82612ca0565b9150612b3783612ca0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b6c57612b6b612dc9565b5b828201905092915050565b6000612b8282612ca0565b9150612b8d83612ca0565b925082612b9d57612b9c612df8565b5b828204905092915050565b6000612bb382612ca0565b9150612bbe83612ca0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bf757612bf6612dc9565b5b828202905092915050565b6000612c0d82612ca0565b9150612c1883612ca0565b925082821015612c2b57612c2a612dc9565b5b828203905092915050565b6000612c4182612c80565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612cd7578082015181840152602081019050612cbc565b83811115612ce6576000848401525b50505050565b60006002820490506001821680612d0457607f821691505b60208210811415612d1857612d17612e27565b5b50919050565b612d2782612ec8565b810181811067ffffffffffffffff82111715612d4657612d45612e85565b5b80604052505050565b6000612d5a82612ca0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d8d57612d8c612dc9565b5b600182019050919050565b6000612da382612ca0565b9150612dae83612ca0565b925082612dbe57612dbd612df8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66204e465473000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f68747470733a2f2f6772696469726f6e2d6e66742e73332e75732d656173742d60008201527f322e616d617a6f6e6177732e636f6d2f00000000000000000000000000000000602082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b6133b581612c36565b81146133c057600080fd5b50565b6133cc81612c48565b81146133d757600080fd5b50565b6133e381612c54565b81146133ee57600080fd5b50565b6133fa81612ca0565b811461340557600080fd5b5056fea264697066735822122027d128be9a09cf4a042855b94e605efce00982e15fd28b6e1650938abdba5f2864736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101665760003560e01c806370a08231116100d1578063a591252d1161008a578063c87b56dd11610064578063c87b56dd146104fa578063defd6c5f14610537578063e985e9c514610562578063f2fde38b1461059f57610166565b8063a591252d1461047d578063b88d4fde146104a8578063b9539932146104d157610166565b806370a082311461037f578063715018a6146103bc5780638da5cb5b146103d357806395d89b41146103fe578063977b055b14610429578063a22cb4651461045457610166565b806342842e0e1161012357806342842e0e1461028d578063484b973c146102b65780634e9e1ec6146102df57806351cff8d91461030a5780636352211e146103265780636bfe21ed1461036357610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b31461021057806318160ddd1461023957806323b872dd14610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612368565b6105c8565b60405161019f9190612810565b60405180910390f35b3480156101b457600080fd5b506101bd6106aa565b6040516101ca919061282b565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f591906123c2565b61073c565b60405161020791906127a9565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190612328565b610782565b005b34801561024557600080fd5b5061024e61089a565b60405161025b9190612a6d565b60405180910390f35b34801561027057600080fd5b5061028b60048036038101906102869190612212565b6108ab565b005b34801561029957600080fd5b506102b460048036038101906102af9190612212565b61090b565b005b3480156102c257600080fd5b506102dd60048036038101906102d89190612328565b61092b565b005b3480156102eb57600080fd5b506102f4610a18565b6040516103019190612a6d565b60405180910390f35b610324600480360381019061031f91906121a5565b610a1e565b005b34801561033257600080fd5b5061034d600480360381019061034891906123c2565b610a70565b60405161035a91906127a9565b60405180910390f35b61037d600480360381019061037891906123c2565b610b22565b005b34801561038b57600080fd5b506103a660048036038101906103a191906121a5565b610c61565b6040516103b39190612a6d565b60405180910390f35b3480156103c857600080fd5b506103d1610d19565b005b3480156103df57600080fd5b506103e8610d2d565b6040516103f591906127a9565b60405180910390f35b34801561040a57600080fd5b50610413610d57565b604051610420919061282b565b60405180910390f35b34801561043557600080fd5b5061043e610de9565b60405161044b9190612a6d565b60405180910390f35b34801561046057600080fd5b5061047b600480360381019061047691906122e8565b610dee565b005b34801561048957600080fd5b50610492610e04565b60405161049f9190612a6d565b60405180910390f35b3480156104b457600080fd5b506104cf60048036038101906104ca9190612265565b610e0a565b005b3480156104dd57600080fd5b506104f860048036038101906104f391906123c2565b610e6c565b005b34801561050657600080fd5b50610521600480360381019061051c91906123c2565b610f68565b60405161052e919061282b565b60405180910390f35b34801561054357600080fd5b5061054c61107b565b6040516105599190612a6d565b60405180910390f35b34801561056e57600080fd5b50610589600480360381019061058491906121d2565b611086565b6040516105969190612810565b60405180910390f35b3480156105ab57600080fd5b506105c660048036038101906105c191906121a5565b61111a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a357506106a28261119e565b5b9050919050565b6060600080546106b990612cec565b80601f01602080910402602001604051908101604052809291908181526020018280546106e590612cec565b80156107325780601f1061070757610100808354040283529160200191610732565b820191906000526020600020905b81548152906001019060200180831161071557829003601f168201915b5050505050905090565b600061074782611208565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061078d82610a70565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f590612a0d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661081d611253565b73ffffffffffffffffffffffffffffffffffffffff16148061084c575061084b81610846611253565b611086565b5b61088b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108829061298d565b60405180910390fd5b610895838361125b565b505050565b60006108a66008611314565b905090565b6108bc6108b6611253565b82611322565b6108fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f290612a2d565b60405180910390fd5b6109068383836113b7565b505050565b61092683838360405180602001604052806000815250610e0a565b505050565b61093361161e565b600a811115610977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096e90612a4d565b60405180910390fd5b611388610996826109886008611314565b61169c90919063ffffffff16565b11156109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce9061286d565b60405180910390fd5b60005b81811015610a13576113886109ef6008611314565b1015610a00576109fe836116b2565b505b8080610a0b90612d4f565b9150506109da565b505050565b61138881565b610a2661161e565b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a6c573d6000803e3d6000fd5b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b10906129ed565b60405180910390fd5b80915050919050565b600a811115610b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5d90612a4d565b60405180910390fd5b611388610b8582610b776008611314565b61169c90919063ffffffff16565b1115610bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbd9061286d565b60405180910390fd5b34610be1826611c37937e0800061171090919063ffffffff16565b14610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c189061292d565b60405180910390fd5b60005b81811015610c5d57611388610c396008611314565b1015610c4a57610c48336116b2565b505b8080610c5590612d4f565b915050610c24565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc99061294d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d2161161e565b610d2b6000611726565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610d6690612cec565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9290612cec565b8015610ddf5780601f10610db457610100808354040283529160200191610ddf565b820191906000526020600020905b815481529060010190602001808311610dc257829003601f168201915b5050505050905090565b600a81565b610e00610df9611253565b83836117ec565b5050565b6103e881565b610e1b610e15611253565b83611322565b610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5190612a2d565b60405180910390fd5b610e6684848484611959565b50505050565b6103e8610e796008611314565b1115610e8457600080fd5b600a811115610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90612a4d565b60405180910390fd5b611388610ee782610ed96008611314565b61169c90919063ffffffff16565b1115610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f9061286d565b60405180910390fd5b60005b81811015610f6457611388610f406008611314565b1015610f5157610f4f336116b2565b505b8080610f5c90612d4f565b915050610f2b565b5050565b6060610f7382611208565b6000600660008481526020019081526020016000208054610f9390612cec565b80601f0160208091040260200160405190810160405280929190818152602001828054610fbf90612cec565b801561100c5780601f10610fe15761010080835404028352916020019161100c565b820191906000526020600020905b815481529060010190602001808311610fef57829003601f168201915b50505050509050600061101d6119b5565b9050600081511415611033578192505050611076565b600082511115611068578082604051602001611050929190612758565b60405160208183030381529060405292505050611076565b611071846119cc565b925050505b919050565b6611c37937e0800081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61112261161e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611192576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111899061288d565b60405180910390fd5b61119b81611726565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61121181611a34565b611250576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611247906129ed565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166112ce83610a70565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60008061132e83610a70565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611370575061136f8185611086565b5b806113ae57508373ffffffffffffffffffffffffffffffffffffffff166113968461073c565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166113d782610a70565b73ffffffffffffffffffffffffffffffffffffffff161461142d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611424906128ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561149d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611494906128ed565b60405180910390fd5b6114a8838383611aa0565b6114b360008261125b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115039190612c02565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461155a9190612b21565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611619838383611aa5565b505050565b611626611253565b73ffffffffffffffffffffffffffffffffffffffff16611644610d2d565b73ffffffffffffffffffffffffffffffffffffffff161461169a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611691906129cd565b60405180910390fd5b565b600081836116aa9190612b21565b905092915050565b60006116be6008611aaa565b60006116ca6008611314565b90506116d68382611ac0565b611707816116e383611c9a565b6040516020016116f3919061277c565b604051602081830303815290604052611dfb565b80915050919050565b6000818361171e9190612ba8565b905092915050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561185b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118529061290d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161194c9190612810565b60405180910390a3505050565b6119648484846113b7565b61197084848484611e6f565b6119af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a69061284d565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b60606119d782611208565b60006119e16119b5565b90506000815111611a015760405180602001604052806000815250611a2c565b80611a0b84611c9a565b604051602001611a1c929190612758565b6040516020818303038152906040525b915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b27906129ad565b60405180910390fd5b611b3981611a34565b15611b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b70906128cd565b60405180910390fd5b611b8560008383611aa0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bd59190612b21565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c9660008383611aa5565b5050565b60606000821415611ce2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611df6565b600082905060005b60008214611d14578080611cfd90612d4f565b915050600a82611d0d9190612b77565b9150611cea565b60008167ffffffffffffffff811115611d3057611d2f612e85565b5b6040519080825280601f01601f191660200182016040528015611d625781602001600182028036833780820191505090505b5090505b60008514611def57600182611d7b9190612c02565b9150600a85611d8a9190612d98565b6030611d969190612b21565b60f81b818381518110611dac57611dab612e56565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611de89190612b77565b9450611d66565b8093505050505b919050565b611e0482611a34565b611e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3a9061296d565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611e6a929190612029565b505050565b6000611e908473ffffffffffffffffffffffffffffffffffffffff16612006565b15611ff9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eb9611253565b8786866040518563ffffffff1660e01b8152600401611edb94939291906127c4565b602060405180830381600087803b158015611ef557600080fd5b505af1925050508015611f2657506040513d601f19601f82011682018060405250810190611f239190612395565b60015b611fa9573d8060008114611f56576040519150601f19603f3d011682016040523d82523d6000602084013e611f5b565b606091505b50600081511415611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f989061284d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ffe565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461203590612cec565b90600052602060002090601f016020900481019282612057576000855561209e565b82601f1061207057805160ff191683800117855561209e565b8280016001018555821561209e579182015b8281111561209d578251825591602001919060010190612082565b5b5090506120ab91906120af565b5090565b5b808211156120c85760008160009055506001016120b0565b5090565b60006120df6120da84612aad565b612a88565b9050828152602081018484840111156120fb576120fa612eb9565b5b612106848285612caa565b509392505050565b60008135905061211d816133ac565b92915050565b600081359050612132816133c3565b92915050565b600081359050612147816133da565b92915050565b60008151905061215c816133da565b92915050565b600082601f83011261217757612176612eb4565b5b81356121878482602086016120cc565b91505092915050565b60008135905061219f816133f1565b92915050565b6000602082840312156121bb576121ba612ec3565b5b60006121c98482850161210e565b91505092915050565b600080604083850312156121e9576121e8612ec3565b5b60006121f78582860161210e565b92505060206122088582860161210e565b9150509250929050565b60008060006060848603121561222b5761222a612ec3565b5b60006122398682870161210e565b935050602061224a8682870161210e565b925050604061225b86828701612190565b9150509250925092565b6000806000806080858703121561227f5761227e612ec3565b5b600061228d8782880161210e565b945050602061229e8782880161210e565b93505060406122af87828801612190565b925050606085013567ffffffffffffffff8111156122d0576122cf612ebe565b5b6122dc87828801612162565b91505092959194509250565b600080604083850312156122ff576122fe612ec3565b5b600061230d8582860161210e565b925050602061231e85828601612123565b9150509250929050565b6000806040838503121561233f5761233e612ec3565b5b600061234d8582860161210e565b925050602061235e85828601612190565b9150509250929050565b60006020828403121561237e5761237d612ec3565b5b600061238c84828501612138565b91505092915050565b6000602082840312156123ab576123aa612ec3565b5b60006123b98482850161214d565b91505092915050565b6000602082840312156123d8576123d7612ec3565b5b60006123e684828501612190565b91505092915050565b6123f881612c36565b82525050565b61240781612c48565b82525050565b600061241882612ade565b6124228185612af4565b9350612432818560208601612cb9565b61243b81612ec8565b840191505092915050565b600061245182612ae9565b61245b8185612b05565b935061246b818560208601612cb9565b61247481612ec8565b840191505092915050565b600061248a82612ae9565b6124948185612b16565b93506124a4818560208601612cb9565b80840191505092915050565b60006124bd603283612b05565b91506124c882612ed9565b604082019050919050565b60006124e0602883612b05565b91506124eb82612f28565b604082019050919050565b6000612503602683612b05565b915061250e82612f77565b604082019050919050565b6000612526602583612b05565b915061253182612fc6565b604082019050919050565b6000612549601c83612b05565b915061255482613015565b602082019050919050565b600061256c602483612b05565b91506125778261303e565b604082019050919050565b600061258f601983612b05565b915061259a8261308d565b602082019050919050565b60006125b2601f83612b05565b91506125bd826130b6565b602082019050919050565b60006125d5603083612b16565b91506125e0826130df565b603082019050919050565b60006125f8602983612b05565b91506126038261312e565b604082019050919050565b600061261b602e83612b05565b91506126268261317d565b604082019050919050565b600061263e603e83612b05565b9150612649826131cc565b604082019050919050565b6000612661602083612b05565b915061266c8261321b565b602082019050919050565b6000612684600583612b16565b915061268f82613244565b600582019050919050565b60006126a7602083612b05565b91506126b28261326d565b602082019050919050565b60006126ca601883612b05565b91506126d582613296565b602082019050919050565b60006126ed602183612b05565b91506126f8826132bf565b604082019050919050565b6000612710602e83612b05565b915061271b8261330e565b604082019050919050565b6000612733602183612b05565b915061273e8261335d565b604082019050919050565b61275281612ca0565b82525050565b6000612764828561247f565b9150612770828461247f565b91508190509392505050565b6000612787826125c8565b9150612793828461247f565b915061279e82612677565b915081905092915050565b60006020820190506127be60008301846123ef565b92915050565b60006080820190506127d960008301876123ef565b6127e660208301866123ef565b6127f36040830185612749565b8181036060830152612805818461240d565b905095945050505050565b600060208201905061282560008301846123fe565b92915050565b600060208201905081810360008301526128458184612446565b905092915050565b60006020820190508181036000830152612866816124b0565b9050919050565b60006020820190508181036000830152612886816124d3565b9050919050565b600060208201905081810360008301526128a6816124f6565b9050919050565b600060208201905081810360008301526128c681612519565b9050919050565b600060208201905081810360008301526128e68161253c565b9050919050565b600060208201905081810360008301526129068161255f565b9050919050565b6000602082019050818103600083015261292681612582565b9050919050565b60006020820190508181036000830152612946816125a5565b9050919050565b60006020820190508181036000830152612966816125eb565b9050919050565b600060208201905081810360008301526129868161260e565b9050919050565b600060208201905081810360008301526129a681612631565b9050919050565b600060208201905081810360008301526129c681612654565b9050919050565b600060208201905081810360008301526129e68161269a565b9050919050565b60006020820190508181036000830152612a06816126bd565b9050919050565b60006020820190508181036000830152612a26816126e0565b9050919050565b60006020820190508181036000830152612a4681612703565b9050919050565b60006020820190508181036000830152612a6681612726565b9050919050565b6000602082019050612a826000830184612749565b92915050565b6000612a92612aa3565b9050612a9e8282612d1e565b919050565b6000604051905090565b600067ffffffffffffffff821115612ac857612ac7612e85565b5b612ad182612ec8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b2c82612ca0565b9150612b3783612ca0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b6c57612b6b612dc9565b5b828201905092915050565b6000612b8282612ca0565b9150612b8d83612ca0565b925082612b9d57612b9c612df8565b5b828204905092915050565b6000612bb382612ca0565b9150612bbe83612ca0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bf757612bf6612dc9565b5b828202905092915050565b6000612c0d82612ca0565b9150612c1883612ca0565b925082821015612c2b57612c2a612dc9565b5b828203905092915050565b6000612c4182612c80565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612cd7578082015181840152602081019050612cbc565b83811115612ce6576000848401525b50505050565b60006002820490506001821680612d0457607f821691505b60208210811415612d1857612d17612e27565b5b50919050565b612d2782612ec8565b810181811067ffffffffffffffff82111715612d4657612d45612e85565b5b80604052505050565b6000612d5a82612ca0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d8d57612d8c612dc9565b5b600182019050919050565b6000612da382612ca0565b9150612dae83612ca0565b925082612dbe57612dbd612df8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66204e465473000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f68747470733a2f2f6772696469726f6e2d6e66742e73332e75732d656173742d60008201527f322e616d617a6f6e6177732e636f6d2f00000000000000000000000000000000602082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b6133b581612c36565b81146133c057600080fd5b50565b6133cc81612c48565b81146133d757600080fd5b50565b6133e381612c54565b81146133ee57600080fd5b50565b6133fa81612ca0565b811461340557600080fd5b5056fea264697066735822122027d128be9a09cf4a042855b94e605efce00982e15fd28b6e1650938abdba5f2864736f6c63430008070033

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.