ETH Price: $3,410.29 (-1.76%)
Gas: 14 Gwei

Token

Axie Generations (AGEN)
 

Overview

Max Total Supply

0 AGEN

Holders

88

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
hhiker42.kongz.eth
Balance
3 AGEN
0xa4fcf064131db228cfa72bfb64f0f50b940538fc
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Axie Generations represents the 7 generations bred from each Origin Axie. These few generations started the play-2-earn movement as we know it.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AxieGenerations

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : AxieGenerations.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
// import "hardhat/console.sol";

//  ______                         ____                                      __                                
// /\  _  \         __            /\  _`\                                   /\ \__ __                          
// \ \ \L\ \  __  _/\_\     __    \ \ \L\_\    __    ___      __  _ __   __ \ \ ,_/\_\    ___    ___     ____  
//  \ \  __ \/\ \/'\/\ \  /'__`\   \ \ \L_L  /'__`\/' _ `\  /'__`/\`'__/'__`\\ \ \\/\ \  / __`\/' _ `\  /',__\ 
//   \ \ \/\ \/>  </\ \ \/\  __/    \ \ \/, /\  __//\ \/\ \/\  __\ \ \/\ \L\.\\ \ \\ \ \/\ \L\ /\ \/\ \/\__, `\
//    \ \_\ \_/\_/\_\\ \_\ \____\    \ \____\ \____\ \_\ \_\ \____\ \_\ \__/.\_\ \__\ \_\ \____\ \_\ \_\/\____/
//     \/_/\/_\//\/_/ \/_/\/____/     \/___/ \/____/\/_/\/_/\/____/\/_/\/__/\/_/\/__/\/_/\/___/ \/_/\/_/\/___/ 

// created by @trumperyD
// axiegen.axietrends.com 
// October 2021
// With thanks to @maxbrand99, @yuukiandhisaxie, @davevsaxie, @fuujinaxs and @fund911                                                                                                         
            
contract AxieGenerations is ERC721, Ownable  {
  using Counters for Counters.Counter;
  using SafeMath for uint;

  Counters.Counter private _tokenIds;
  string public baseTokenURI;
  uint public MAX_TOKENS = 3416;
  bool public hasSaleStarted = false;
  uint public SINGLE_PRICE = 15000000000000000; // 0.015 Eth
  uint public COSTCO_PRICE = 10000000000000000; // 0.01 ETH


  constructor(string memory baseURI) ERC721 ("Axie Generations", "AGEN") {
    baseTokenURI = baseURI;
    // console.log("Contract deployed");
  }

  function getCurrentCount() public view returns (uint256) {
    return _tokenIds.current();
  }
  
  function startSale(bool ss) public {
        hasSaleStarted = ss;
  }

  function calculatePrice(uint256 numTokens) public view returns (uint256) {
    require(hasSaleStarted == true, "Sale hasn't started");

    uint tokenPrice;

    if (numTokens < 10) {
        tokenPrice = SafeMath.mul(SINGLE_PRICE, numTokens);
    } else if (numTokens >= 10 ) {
        tokenPrice = SafeMath.mul(COSTCO_PRICE, numTokens);
    }     
    return tokenPrice; 
  }

  function tokensMinted() public view returns(uint) {
    uint tl = getCurrentCount();  
    return tl;
  } 

  function mint(uint256 numTokens) public payable {
    require(hasSaleStarted == true, "Sale hasn't started");
    require(SafeMath.add(getCurrentCount(), numTokens) <= MAX_TOKENS , "Exceeds maximum token supply.");
    require(numTokens > 0, "Cannot mint 0 tokens");
    require(msg.value >= calculatePrice(numTokens), "Amount of Ether sent is not correct.");
    
    for (uint i = 0; i < numTokens; i++) {
        uint mintIndex = getCurrentCount();
        _safeMint(msg.sender, mintIndex);
        _tokenIds.increment();
    }
  }

  function reserveMint(uint256 numTokens) public onlyOwner {
    require(SafeMath.add(getCurrentCount(), numTokens) <= MAX_TOKENS , "Exceeds maximum token supply.");
    require(numTokens > 0, "Cannot mint 0 tokens");
    
    for (uint i = 0; i < numTokens; i++) {
        uint mintIndex = getCurrentCount();
        _safeMint(msg.sender, mintIndex);
        _tokenIds.increment();
    }
  }
  
  function withdraw() public onlyOwner {
    uint256 _balance = address(this).balance;
    address payable _sender = payable(_msgSender());
    _sender.transfer(_balance);
  }
  
  function _baseURI() internal view virtual override returns (string memory) {
      return baseTokenURI;
  }

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

File 2 of 14 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

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) {
        require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");

        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 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 override {
        super._burn(tokenId);

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

File 3 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 5 of 14 : Counters.sol
// SPDX-License-Identifier: MIT

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 6 of 14 : SafeMath.sol
// SPDX-License-Identifier: MIT

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 no longer needed starting with Solidity 0.8. 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 substraction 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 7 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 9 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 10 of 14 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 14 : Context.sol
// SPDX-License-Identifier: MIT

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 12 of 14 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 13 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT

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 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT

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"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COSTCO_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SINGLE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"calculatePrice","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":[],"name":"getCurrentCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"ss","type":"bool"}],"name":"startSale","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":"tokensMinted","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610d586009556000600a60006101000a81548160ff02191690831515021790555066354a6ba7a18000600b55662386f26fc10000600c553480156200004857600080fd5b5060405162003c6c38038062003c6c83398181016040528101906200006e91906200033e565b6040518060400160405280601081526020017f417869652047656e65726174696f6e73000000000000000000000000000000008152506040518060400160405280600481526020017f4147454e000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000f29291906200021c565b5080600190805190602001906200010b9291906200021c565b5050506200012e620001226200014e60201b60201c565b6200015660201b60201c565b8060089080519060200190620001469291906200021c565b5050620004b4565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022a9062000420565b90600052602060002090601f0160209004810192826200024e57600085556200029a565b82601f106200026957805160ff19168380011785556200029a565b828001600101855582156200029a579182015b82811115620002995782518255916020019190600101906200027c565b5b509050620002a99190620002ad565b5090565b5b80821115620002c8576000816000905550600101620002ae565b5090565b6000620002e3620002dd84620003b7565b62000383565b905082815260208101848484011115620002fc57600080fd5b62000309848285620003ea565b509392505050565b600082601f8301126200032357600080fd5b815162000335848260208601620002cc565b91505092915050565b6000602082840312156200035157600080fd5b600082015167ffffffffffffffff8111156200036c57600080fd5b6200037a8482850162000311565b91505092915050565b6000604051905081810181811067ffffffffffffffff82111715620003ad57620003ac62000485565b5b8060405250919050565b600067ffffffffffffffff821115620003d557620003d462000485565b5b601f19601f8301169050602081019050919050565b60005b838110156200040a578082015181840152602081019050620003ed565b838111156200041a576000848401525b50505050565b600060028204905060018216806200043957607f821691505b6020821081141562000450576200044f62000456565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6137a880620004c46000396000f3fe6080604052600436106101c25760003560e01c8063715018a6116100f7578063b88d4fde11610095578063dd51babf11610064578063dd51babf1461061f578063e985e9c51461064a578063f2fde38b14610687578063f47c84c5146106b0576101c2565b8063b88d4fde14610563578063bd6e33ab1461058c578063c87b56dd146105b7578063d547cfb7146105f4576101c2565b80639c4c557c116100d15780639c4c557c146104b8578063a0712d68146104e1578063a22cb465146104fd578063ae10426514610526576101c2565b8063715018a61461044b5780638da5cb5b1461046257806395d89b411461048d576101c2565b80633ccfd60b1161016457806355f804b31161013e57806355f804b31461037d5780636352211e146103a65780636de9f32b146103e357806370a082311461040e576101c2565b80633ccfd60b1461031257806342842e0e146103295780634a15287814610352576101c2565b8063095ea7b3116101a0578063095ea7b31461026c5780631342ff4c146102955780631c8b232d146102be57806323b872dd146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612721565b6106db565b6040516101fb9190613026565b60405180910390f35b34801561021057600080fd5b506102196107bd565b6040516102269190613041565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906127b4565b61084f565b6040516102639190612fbf565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e91906126bc565b6108d4565b005b3480156102a157600080fd5b506102bc60048036038101906102b791906127b4565b6109ec565b005b3480156102ca57600080fd5b506102d3610b43565b6040516102e09190613026565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b91906125b6565b610b56565b005b34801561031e57600080fd5b50610327610bb6565b005b34801561033557600080fd5b50610350600480360381019061034b91906125b6565b610c8e565b005b34801561035e57600080fd5b50610367610cae565b60405161037491906132e3565b60405180910390f35b34801561038957600080fd5b506103a4600480360381019061039f9190612773565b610cb4565b005b3480156103b257600080fd5b506103cd60048036038101906103c891906127b4565b610d4a565b6040516103da9190612fbf565b60405180910390f35b3480156103ef57600080fd5b506103f8610dfc565b60405161040591906132e3565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190612551565b610e10565b60405161044291906132e3565b60405180910390f35b34801561045757600080fd5b50610460610ec8565b005b34801561046e57600080fd5b50610477610f50565b6040516104849190612fbf565b60405180910390f35b34801561049957600080fd5b506104a2610f7a565b6040516104af9190613041565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da91906126f8565b61100c565b005b6104fb60048036038101906104f691906127b4565b611029565b005b34801561050957600080fd5b50610524600480360381019061051f9190612680565b6111a5565b005b34801561053257600080fd5b5061054d600480360381019061054891906127b4565b611326565b60405161055a91906132e3565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190612605565b6113bd565b005b34801561059857600080fd5b506105a161141f565b6040516105ae91906132e3565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d991906127b4565b611425565b6040516105eb9190613041565b60405180910390f35b34801561060057600080fd5b506106096114cc565b6040516106169190613041565b60405180910390f35b34801561062b57600080fd5b5061063461155a565b60405161064191906132e3565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c919061257a565b61156b565b60405161067e9190613026565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a99190612551565b6115ff565b005b3480156106bc57600080fd5b506106c56116f7565b6040516106d291906132e3565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107b657506107b5826116fd565b5b9050919050565b6060600080546107cc9061359d565b80601f01602080910402602001604051908101604052809291908181526020018280546107f89061359d565b80156108455780601f1061081a57610100808354040283529160200191610845565b820191906000526020600020905b81548152906001019060200180831161082857829003601f168201915b5050505050905090565b600061085a82611767565b610899576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610890906131e3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108df82610d4a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094790613283565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661096f6117d3565b73ffffffffffffffffffffffffffffffffffffffff16148061099e575061099d816109986117d3565b61156b565b5b6109dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d490613163565b60405180910390fd5b6109e783836117db565b505050565b6109f46117d3565b73ffffffffffffffffffffffffffffffffffffffff16610a12610f50565b73ffffffffffffffffffffffffffffffffffffffff1614610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f90613203565b60405180910390fd5b600954610a7c610a7661155a565b83611894565b1115610abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab490613123565b60405180910390fd5b60008111610b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af790613263565b60405180910390fd5b60005b81811015610b3f576000610b1561155a565b9050610b2133826118aa565b610b2b60076118c8565b508080610b37906135cf565b915050610b03565b5050565b600a60009054906101000a900460ff1681565b610b67610b616117d3565b826118de565b610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d906132a3565b60405180910390fd5b610bb18383836119bc565b505050565b610bbe6117d3565b73ffffffffffffffffffffffffffffffffffffffff16610bdc610f50565b73ffffffffffffffffffffffffffffffffffffffff1614610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990613203565b60405180910390fd5b60004790506000610c416117d3565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610c89573d6000803e3d6000fd5b505050565b610ca9838383604051806020016040528060008152506113bd565b505050565b600b5481565b610cbc6117d3565b73ffffffffffffffffffffffffffffffffffffffff16610cda610f50565b73ffffffffffffffffffffffffffffffffffffffff1614610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790613203565b60405180910390fd5b8060089080519060200190610d46929190612375565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea906131a3565b60405180910390fd5b80915050919050565b600080610e0761155a565b90508091505090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7890613183565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ed06117d3565b73ffffffffffffffffffffffffffffffffffffffff16610eee610f50565b73ffffffffffffffffffffffffffffffffffffffff1614610f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3b90613203565b60405180910390fd5b610f4e6000611c18565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f899061359d565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb59061359d565b80156110025780601f10610fd757610100808354040283529160200191611002565b820191906000526020600020905b815481529060010190602001808311610fe557829003601f168201915b5050505050905090565b80600a60006101000a81548160ff02191690831515021790555050565b60011515600a60009054906101000a900460ff1615151461107f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611076906132c3565b60405180910390fd5b60095461109361108d61155a565b83611894565b11156110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb90613123565b60405180910390fd5b60008111611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90613263565b60405180910390fd5b61112081611326565b341015611162576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115990613063565b60405180910390fd5b60005b818110156111a157600061117761155a565b905061118333826118aa565b61118d60076118c8565b508080611199906135cf565b915050611165565b5050565b6111ad6117d3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121290613103565b60405180910390fd5b80600560006112286117d3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112d56117d3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161131a9190613026565b60405180910390a35050565b600060011515600a60009054906101000a900460ff1615151461137e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611375906132c3565b60405180910390fd5b6000600a83101561139c57611395600b5484611cde565b90506113b4565b600a83106113b3576113b0600c5484611cde565b90505b5b80915050919050565b6113ce6113c86117d3565b836118de565b61140d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611404906132a3565b60405180910390fd5b61141984848484611cf4565b50505050565b600c5481565b606061143082611767565b61146f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146690613243565b60405180910390fd5b6000611479611d50565b9050600081511161149957604051806020016040528060008152506114c4565b806114a384611de2565b6040516020016114b4929190612f9b565b6040516020818303038152906040525b915050919050565b600880546114d99061359d565b80601f01602080910402602001604051908101604052809291908181526020018280546115059061359d565b80156115525780601f1061152757610100808354040283529160200191611552565b820191906000526020600020905b81548152906001019060200180831161153557829003601f168201915b505050505081565b60006115666007611f8f565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116076117d3565b73ffffffffffffffffffffffffffffffffffffffff16611625610f50565b73ffffffffffffffffffffffffffffffffffffffff161461167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290613203565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e2906130a3565b60405180910390fd5b6116f481611c18565b50565b60095481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661184e83610d4a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081836118a291906133d2565b905092915050565b6118c4828260405180602001604052806000815250611f9d565b5050565b6001816000016000828254019250508190555050565b60006118e982611767565b611928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191f90613143565b60405180910390fd5b600061193383610d4a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119a257508373ffffffffffffffffffffffffffffffffffffffff1661198a8461084f565b73ffffffffffffffffffffffffffffffffffffffff16145b806119b357506119b2818561156b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119dc82610d4a565b73ffffffffffffffffffffffffffffffffffffffff1614611a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2990613223565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a99906130e3565b60405180910390fd5b611aad838383611ff8565b611ab86000826117db565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b0891906134b3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b5f91906133d2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611cec9190613459565b905092915050565b611cff8484846119bc565b611d0b84848484611ffd565b611d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4190613083565b60405180910390fd5b50505050565b606060088054611d5f9061359d565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8b9061359d565b8015611dd85780601f10611dad57610100808354040283529160200191611dd8565b820191906000526020600020905b815481529060010190602001808311611dbb57829003601f168201915b5050505050905090565b60606000821415611e2a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f8a565b600082905060005b60008214611e5c578080611e45906135cf565b915050600a82611e559190613428565b9150611e32565b60008167ffffffffffffffff811115611e9e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ed05781602001600182028036833780820191505090505b5090505b60008514611f8357600182611ee991906134b3565b9150600a85611ef89190613618565b6030611f0491906133d2565b60f81b818381518110611f40577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f7c9190613428565b9450611ed4565b8093505050505b919050565b600081600001549050919050565b611fa78383612194565b611fb46000848484611ffd565b611ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fea90613083565b60405180910390fd5b505050565b505050565b600061201e8473ffffffffffffffffffffffffffffffffffffffff16612362565b15612187578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120476117d3565b8786866040518563ffffffff1660e01b81526004016120699493929190612fda565b602060405180830381600087803b15801561208357600080fd5b505af19250505080156120b457506040513d601f19601f820116820180604052508101906120b1919061274a565b60015b612137573d80600081146120e4576040519150601f19603f3d011682016040523d82523d6000602084013e6120e9565b606091505b5060008151141561212f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212690613083565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061218c565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fb906131c3565b60405180910390fd5b61220d81611767565b1561224d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612244906130c3565b60405180910390fd5b61225960008383611ff8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122a991906133d2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546123819061359d565b90600052602060002090601f0160209004810192826123a357600085556123ea565b82601f106123bc57805160ff19168380011785556123ea565b828001600101855582156123ea579182015b828111156123e95782518255916020019190600101906123ce565b5b5090506123f791906123fb565b5090565b5b808211156124145760008160009055506001016123fc565b5090565b600061242b6124268461332f565b6132fe565b90508281526020810184848401111561244357600080fd5b61244e84828561355b565b509392505050565b60006124696124648461335f565b6132fe565b90508281526020810184848401111561248157600080fd5b61248c84828561355b565b509392505050565b6000813590506124a381613716565b92915050565b6000813590506124b88161372d565b92915050565b6000813590506124cd81613744565b92915050565b6000815190506124e281613744565b92915050565b600082601f8301126124f957600080fd5b8135612509848260208601612418565b91505092915050565b600082601f83011261252357600080fd5b8135612533848260208601612456565b91505092915050565b60008135905061254b8161375b565b92915050565b60006020828403121561256357600080fd5b600061257184828501612494565b91505092915050565b6000806040838503121561258d57600080fd5b600061259b85828601612494565b92505060206125ac85828601612494565b9150509250929050565b6000806000606084860312156125cb57600080fd5b60006125d986828701612494565b93505060206125ea86828701612494565b92505060406125fb8682870161253c565b9150509250925092565b6000806000806080858703121561261b57600080fd5b600061262987828801612494565b945050602061263a87828801612494565b935050604061264b8782880161253c565b925050606085013567ffffffffffffffff81111561266857600080fd5b612674878288016124e8565b91505092959194509250565b6000806040838503121561269357600080fd5b60006126a185828601612494565b92505060206126b2858286016124a9565b9150509250929050565b600080604083850312156126cf57600080fd5b60006126dd85828601612494565b92505060206126ee8582860161253c565b9150509250929050565b60006020828403121561270a57600080fd5b6000612718848285016124a9565b91505092915050565b60006020828403121561273357600080fd5b6000612741848285016124be565b91505092915050565b60006020828403121561275c57600080fd5b600061276a848285016124d3565b91505092915050565b60006020828403121561278557600080fd5b600082013567ffffffffffffffff81111561279f57600080fd5b6127ab84828501612512565b91505092915050565b6000602082840312156127c657600080fd5b60006127d48482850161253c565b91505092915050565b6127e6816134e7565b82525050565b6127f5816134f9565b82525050565b60006128068261338f565b61281081856133a5565b935061282081856020860161356a565b61282981613705565b840191505092915050565b600061283f8261339a565b61284981856133b6565b935061285981856020860161356a565b61286281613705565b840191505092915050565b60006128788261339a565b61288281856133c7565b935061289281856020860161356a565b80840191505092915050565b60006128ab6024836133b6565b91507f416d6f756e74206f662045746865722073656e74206973206e6f7420636f727260008301527f6563742e000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006129116032836133b6565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006129776026836133b6565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006129dd601c836133b6565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612a1d6024836133b6565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612a836019836133b6565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612ac3601d836133b6565b91507f45786365656473206d6178696d756d20746f6b656e20737570706c792e0000006000830152602082019050919050565b6000612b03602c836133b6565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612b696038836133b6565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000612bcf602a836133b6565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c356029836133b6565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c9b6020836133b6565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000612cdb602c836133b6565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612d416020836133b6565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612d816029836133b6565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612de7602f836133b6565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000612e4d6014836133b6565b91507f43616e6e6f74206d696e74203020746f6b656e730000000000000000000000006000830152602082019050919050565b6000612e8d6021836133b6565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ef36031836133b6565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000612f596013836133b6565b91507f53616c65206861736e27742073746172746564000000000000000000000000006000830152602082019050919050565b612f9581613551565b82525050565b6000612fa7828561286d565b9150612fb3828461286d565b91508190509392505050565b6000602082019050612fd460008301846127dd565b92915050565b6000608082019050612fef60008301876127dd565b612ffc60208301866127dd565b6130096040830185612f8c565b818103606083015261301b81846127fb565b905095945050505050565b600060208201905061303b60008301846127ec565b92915050565b6000602082019050818103600083015261305b8184612834565b905092915050565b6000602082019050818103600083015261307c8161289e565b9050919050565b6000602082019050818103600083015261309c81612904565b9050919050565b600060208201905081810360008301526130bc8161296a565b9050919050565b600060208201905081810360008301526130dc816129d0565b9050919050565b600060208201905081810360008301526130fc81612a10565b9050919050565b6000602082019050818103600083015261311c81612a76565b9050919050565b6000602082019050818103600083015261313c81612ab6565b9050919050565b6000602082019050818103600083015261315c81612af6565b9050919050565b6000602082019050818103600083015261317c81612b5c565b9050919050565b6000602082019050818103600083015261319c81612bc2565b9050919050565b600060208201905081810360008301526131bc81612c28565b9050919050565b600060208201905081810360008301526131dc81612c8e565b9050919050565b600060208201905081810360008301526131fc81612cce565b9050919050565b6000602082019050818103600083015261321c81612d34565b9050919050565b6000602082019050818103600083015261323c81612d74565b9050919050565b6000602082019050818103600083015261325c81612dda565b9050919050565b6000602082019050818103600083015261327c81612e40565b9050919050565b6000602082019050818103600083015261329c81612e80565b9050919050565b600060208201905081810360008301526132bc81612ee6565b9050919050565b600060208201905081810360008301526132dc81612f4c565b9050919050565b60006020820190506132f86000830184612f8c565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613325576133246136d6565b5b8060405250919050565b600067ffffffffffffffff82111561334a576133496136d6565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561337a576133796136d6565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006133dd82613551565b91506133e883613551565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561341d5761341c613649565b5b828201905092915050565b600061343382613551565b915061343e83613551565b92508261344e5761344d613678565b5b828204905092915050565b600061346482613551565b915061346f83613551565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134a8576134a7613649565b5b828202905092915050565b60006134be82613551565b91506134c983613551565b9250828210156134dc576134db613649565b5b828203905092915050565b60006134f282613531565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561358857808201518184015260208101905061356d565b83811115613597576000848401525b50505050565b600060028204905060018216806135b557607f821691505b602082108114156135c9576135c86136a7565b5b50919050565b60006135da82613551565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561360d5761360c613649565b5b600182019050919050565b600061362382613551565b915061362e83613551565b92508261363e5761363d613678565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61371f816134e7565b811461372a57600080fd5b50565b613736816134f9565b811461374157600080fd5b50565b61374d81613505565b811461375857600080fd5b50565b61376481613551565b811461376f57600080fd5b5056fea26469706673582212208425926f55aec87c9a798b8b999f115cd09d0ca7004ba33280e6c068a89921aa64736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d66346f575a634b516f34566e507878626a544679776e4b6368596334383361744b3361706b6343776962776f2f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c8063715018a6116100f7578063b88d4fde11610095578063dd51babf11610064578063dd51babf1461061f578063e985e9c51461064a578063f2fde38b14610687578063f47c84c5146106b0576101c2565b8063b88d4fde14610563578063bd6e33ab1461058c578063c87b56dd146105b7578063d547cfb7146105f4576101c2565b80639c4c557c116100d15780639c4c557c146104b8578063a0712d68146104e1578063a22cb465146104fd578063ae10426514610526576101c2565b8063715018a61461044b5780638da5cb5b1461046257806395d89b411461048d576101c2565b80633ccfd60b1161016457806355f804b31161013e57806355f804b31461037d5780636352211e146103a65780636de9f32b146103e357806370a082311461040e576101c2565b80633ccfd60b1461031257806342842e0e146103295780634a15287814610352576101c2565b8063095ea7b3116101a0578063095ea7b31461026c5780631342ff4c146102955780631c8b232d146102be57806323b872dd146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612721565b6106db565b6040516101fb9190613026565b60405180910390f35b34801561021057600080fd5b506102196107bd565b6040516102269190613041565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906127b4565b61084f565b6040516102639190612fbf565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e91906126bc565b6108d4565b005b3480156102a157600080fd5b506102bc60048036038101906102b791906127b4565b6109ec565b005b3480156102ca57600080fd5b506102d3610b43565b6040516102e09190613026565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b91906125b6565b610b56565b005b34801561031e57600080fd5b50610327610bb6565b005b34801561033557600080fd5b50610350600480360381019061034b91906125b6565b610c8e565b005b34801561035e57600080fd5b50610367610cae565b60405161037491906132e3565b60405180910390f35b34801561038957600080fd5b506103a4600480360381019061039f9190612773565b610cb4565b005b3480156103b257600080fd5b506103cd60048036038101906103c891906127b4565b610d4a565b6040516103da9190612fbf565b60405180910390f35b3480156103ef57600080fd5b506103f8610dfc565b60405161040591906132e3565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190612551565b610e10565b60405161044291906132e3565b60405180910390f35b34801561045757600080fd5b50610460610ec8565b005b34801561046e57600080fd5b50610477610f50565b6040516104849190612fbf565b60405180910390f35b34801561049957600080fd5b506104a2610f7a565b6040516104af9190613041565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da91906126f8565b61100c565b005b6104fb60048036038101906104f691906127b4565b611029565b005b34801561050957600080fd5b50610524600480360381019061051f9190612680565b6111a5565b005b34801561053257600080fd5b5061054d600480360381019061054891906127b4565b611326565b60405161055a91906132e3565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190612605565b6113bd565b005b34801561059857600080fd5b506105a161141f565b6040516105ae91906132e3565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d991906127b4565b611425565b6040516105eb9190613041565b60405180910390f35b34801561060057600080fd5b506106096114cc565b6040516106169190613041565b60405180910390f35b34801561062b57600080fd5b5061063461155a565b60405161064191906132e3565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c919061257a565b61156b565b60405161067e9190613026565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a99190612551565b6115ff565b005b3480156106bc57600080fd5b506106c56116f7565b6040516106d291906132e3565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107b657506107b5826116fd565b5b9050919050565b6060600080546107cc9061359d565b80601f01602080910402602001604051908101604052809291908181526020018280546107f89061359d565b80156108455780601f1061081a57610100808354040283529160200191610845565b820191906000526020600020905b81548152906001019060200180831161082857829003601f168201915b5050505050905090565b600061085a82611767565b610899576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610890906131e3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108df82610d4a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094790613283565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661096f6117d3565b73ffffffffffffffffffffffffffffffffffffffff16148061099e575061099d816109986117d3565b61156b565b5b6109dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d490613163565b60405180910390fd5b6109e783836117db565b505050565b6109f46117d3565b73ffffffffffffffffffffffffffffffffffffffff16610a12610f50565b73ffffffffffffffffffffffffffffffffffffffff1614610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f90613203565b60405180910390fd5b600954610a7c610a7661155a565b83611894565b1115610abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab490613123565b60405180910390fd5b60008111610b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af790613263565b60405180910390fd5b60005b81811015610b3f576000610b1561155a565b9050610b2133826118aa565b610b2b60076118c8565b508080610b37906135cf565b915050610b03565b5050565b600a60009054906101000a900460ff1681565b610b67610b616117d3565b826118de565b610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d906132a3565b60405180910390fd5b610bb18383836119bc565b505050565b610bbe6117d3565b73ffffffffffffffffffffffffffffffffffffffff16610bdc610f50565b73ffffffffffffffffffffffffffffffffffffffff1614610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990613203565b60405180910390fd5b60004790506000610c416117d3565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610c89573d6000803e3d6000fd5b505050565b610ca9838383604051806020016040528060008152506113bd565b505050565b600b5481565b610cbc6117d3565b73ffffffffffffffffffffffffffffffffffffffff16610cda610f50565b73ffffffffffffffffffffffffffffffffffffffff1614610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790613203565b60405180910390fd5b8060089080519060200190610d46929190612375565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea906131a3565b60405180910390fd5b80915050919050565b600080610e0761155a565b90508091505090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7890613183565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ed06117d3565b73ffffffffffffffffffffffffffffffffffffffff16610eee610f50565b73ffffffffffffffffffffffffffffffffffffffff1614610f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3b90613203565b60405180910390fd5b610f4e6000611c18565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f899061359d565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb59061359d565b80156110025780601f10610fd757610100808354040283529160200191611002565b820191906000526020600020905b815481529060010190602001808311610fe557829003601f168201915b5050505050905090565b80600a60006101000a81548160ff02191690831515021790555050565b60011515600a60009054906101000a900460ff1615151461107f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611076906132c3565b60405180910390fd5b60095461109361108d61155a565b83611894565b11156110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb90613123565b60405180910390fd5b60008111611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90613263565b60405180910390fd5b61112081611326565b341015611162576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115990613063565b60405180910390fd5b60005b818110156111a157600061117761155a565b905061118333826118aa565b61118d60076118c8565b508080611199906135cf565b915050611165565b5050565b6111ad6117d3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121290613103565b60405180910390fd5b80600560006112286117d3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112d56117d3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161131a9190613026565b60405180910390a35050565b600060011515600a60009054906101000a900460ff1615151461137e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611375906132c3565b60405180910390fd5b6000600a83101561139c57611395600b5484611cde565b90506113b4565b600a83106113b3576113b0600c5484611cde565b90505b5b80915050919050565b6113ce6113c86117d3565b836118de565b61140d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611404906132a3565b60405180910390fd5b61141984848484611cf4565b50505050565b600c5481565b606061143082611767565b61146f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146690613243565b60405180910390fd5b6000611479611d50565b9050600081511161149957604051806020016040528060008152506114c4565b806114a384611de2565b6040516020016114b4929190612f9b565b6040516020818303038152906040525b915050919050565b600880546114d99061359d565b80601f01602080910402602001604051908101604052809291908181526020018280546115059061359d565b80156115525780601f1061152757610100808354040283529160200191611552565b820191906000526020600020905b81548152906001019060200180831161153557829003601f168201915b505050505081565b60006115666007611f8f565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116076117d3565b73ffffffffffffffffffffffffffffffffffffffff16611625610f50565b73ffffffffffffffffffffffffffffffffffffffff161461167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290613203565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e2906130a3565b60405180910390fd5b6116f481611c18565b50565b60095481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661184e83610d4a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081836118a291906133d2565b905092915050565b6118c4828260405180602001604052806000815250611f9d565b5050565b6001816000016000828254019250508190555050565b60006118e982611767565b611928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191f90613143565b60405180910390fd5b600061193383610d4a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119a257508373ffffffffffffffffffffffffffffffffffffffff1661198a8461084f565b73ffffffffffffffffffffffffffffffffffffffff16145b806119b357506119b2818561156b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119dc82610d4a565b73ffffffffffffffffffffffffffffffffffffffff1614611a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2990613223565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a99906130e3565b60405180910390fd5b611aad838383611ff8565b611ab86000826117db565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b0891906134b3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b5f91906133d2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611cec9190613459565b905092915050565b611cff8484846119bc565b611d0b84848484611ffd565b611d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4190613083565b60405180910390fd5b50505050565b606060088054611d5f9061359d565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8b9061359d565b8015611dd85780601f10611dad57610100808354040283529160200191611dd8565b820191906000526020600020905b815481529060010190602001808311611dbb57829003601f168201915b5050505050905090565b60606000821415611e2a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f8a565b600082905060005b60008214611e5c578080611e45906135cf565b915050600a82611e559190613428565b9150611e32565b60008167ffffffffffffffff811115611e9e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ed05781602001600182028036833780820191505090505b5090505b60008514611f8357600182611ee991906134b3565b9150600a85611ef89190613618565b6030611f0491906133d2565b60f81b818381518110611f40577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f7c9190613428565b9450611ed4565b8093505050505b919050565b600081600001549050919050565b611fa78383612194565b611fb46000848484611ffd565b611ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fea90613083565b60405180910390fd5b505050565b505050565b600061201e8473ffffffffffffffffffffffffffffffffffffffff16612362565b15612187578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120476117d3565b8786866040518563ffffffff1660e01b81526004016120699493929190612fda565b602060405180830381600087803b15801561208357600080fd5b505af19250505080156120b457506040513d601f19601f820116820180604052508101906120b1919061274a565b60015b612137573d80600081146120e4576040519150601f19603f3d011682016040523d82523d6000602084013e6120e9565b606091505b5060008151141561212f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212690613083565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061218c565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fb906131c3565b60405180910390fd5b61220d81611767565b1561224d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612244906130c3565b60405180910390fd5b61225960008383611ff8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122a991906133d2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546123819061359d565b90600052602060002090601f0160209004810192826123a357600085556123ea565b82601f106123bc57805160ff19168380011785556123ea565b828001600101855582156123ea579182015b828111156123e95782518255916020019190600101906123ce565b5b5090506123f791906123fb565b5090565b5b808211156124145760008160009055506001016123fc565b5090565b600061242b6124268461332f565b6132fe565b90508281526020810184848401111561244357600080fd5b61244e84828561355b565b509392505050565b60006124696124648461335f565b6132fe565b90508281526020810184848401111561248157600080fd5b61248c84828561355b565b509392505050565b6000813590506124a381613716565b92915050565b6000813590506124b88161372d565b92915050565b6000813590506124cd81613744565b92915050565b6000815190506124e281613744565b92915050565b600082601f8301126124f957600080fd5b8135612509848260208601612418565b91505092915050565b600082601f83011261252357600080fd5b8135612533848260208601612456565b91505092915050565b60008135905061254b8161375b565b92915050565b60006020828403121561256357600080fd5b600061257184828501612494565b91505092915050565b6000806040838503121561258d57600080fd5b600061259b85828601612494565b92505060206125ac85828601612494565b9150509250929050565b6000806000606084860312156125cb57600080fd5b60006125d986828701612494565b93505060206125ea86828701612494565b92505060406125fb8682870161253c565b9150509250925092565b6000806000806080858703121561261b57600080fd5b600061262987828801612494565b945050602061263a87828801612494565b935050604061264b8782880161253c565b925050606085013567ffffffffffffffff81111561266857600080fd5b612674878288016124e8565b91505092959194509250565b6000806040838503121561269357600080fd5b60006126a185828601612494565b92505060206126b2858286016124a9565b9150509250929050565b600080604083850312156126cf57600080fd5b60006126dd85828601612494565b92505060206126ee8582860161253c565b9150509250929050565b60006020828403121561270a57600080fd5b6000612718848285016124a9565b91505092915050565b60006020828403121561273357600080fd5b6000612741848285016124be565b91505092915050565b60006020828403121561275c57600080fd5b600061276a848285016124d3565b91505092915050565b60006020828403121561278557600080fd5b600082013567ffffffffffffffff81111561279f57600080fd5b6127ab84828501612512565b91505092915050565b6000602082840312156127c657600080fd5b60006127d48482850161253c565b91505092915050565b6127e6816134e7565b82525050565b6127f5816134f9565b82525050565b60006128068261338f565b61281081856133a5565b935061282081856020860161356a565b61282981613705565b840191505092915050565b600061283f8261339a565b61284981856133b6565b935061285981856020860161356a565b61286281613705565b840191505092915050565b60006128788261339a565b61288281856133c7565b935061289281856020860161356a565b80840191505092915050565b60006128ab6024836133b6565b91507f416d6f756e74206f662045746865722073656e74206973206e6f7420636f727260008301527f6563742e000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006129116032836133b6565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006129776026836133b6565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006129dd601c836133b6565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612a1d6024836133b6565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612a836019836133b6565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612ac3601d836133b6565b91507f45786365656473206d6178696d756d20746f6b656e20737570706c792e0000006000830152602082019050919050565b6000612b03602c836133b6565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612b696038836133b6565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000612bcf602a836133b6565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c356029836133b6565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c9b6020836133b6565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000612cdb602c836133b6565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612d416020836133b6565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612d816029836133b6565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612de7602f836133b6565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000612e4d6014836133b6565b91507f43616e6e6f74206d696e74203020746f6b656e730000000000000000000000006000830152602082019050919050565b6000612e8d6021836133b6565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ef36031836133b6565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000612f596013836133b6565b91507f53616c65206861736e27742073746172746564000000000000000000000000006000830152602082019050919050565b612f9581613551565b82525050565b6000612fa7828561286d565b9150612fb3828461286d565b91508190509392505050565b6000602082019050612fd460008301846127dd565b92915050565b6000608082019050612fef60008301876127dd565b612ffc60208301866127dd565b6130096040830185612f8c565b818103606083015261301b81846127fb565b905095945050505050565b600060208201905061303b60008301846127ec565b92915050565b6000602082019050818103600083015261305b8184612834565b905092915050565b6000602082019050818103600083015261307c8161289e565b9050919050565b6000602082019050818103600083015261309c81612904565b9050919050565b600060208201905081810360008301526130bc8161296a565b9050919050565b600060208201905081810360008301526130dc816129d0565b9050919050565b600060208201905081810360008301526130fc81612a10565b9050919050565b6000602082019050818103600083015261311c81612a76565b9050919050565b6000602082019050818103600083015261313c81612ab6565b9050919050565b6000602082019050818103600083015261315c81612af6565b9050919050565b6000602082019050818103600083015261317c81612b5c565b9050919050565b6000602082019050818103600083015261319c81612bc2565b9050919050565b600060208201905081810360008301526131bc81612c28565b9050919050565b600060208201905081810360008301526131dc81612c8e565b9050919050565b600060208201905081810360008301526131fc81612cce565b9050919050565b6000602082019050818103600083015261321c81612d34565b9050919050565b6000602082019050818103600083015261323c81612d74565b9050919050565b6000602082019050818103600083015261325c81612dda565b9050919050565b6000602082019050818103600083015261327c81612e40565b9050919050565b6000602082019050818103600083015261329c81612e80565b9050919050565b600060208201905081810360008301526132bc81612ee6565b9050919050565b600060208201905081810360008301526132dc81612f4c565b9050919050565b60006020820190506132f86000830184612f8c565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613325576133246136d6565b5b8060405250919050565b600067ffffffffffffffff82111561334a576133496136d6565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561337a576133796136d6565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006133dd82613551565b91506133e883613551565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561341d5761341c613649565b5b828201905092915050565b600061343382613551565b915061343e83613551565b92508261344e5761344d613678565b5b828204905092915050565b600061346482613551565b915061346f83613551565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134a8576134a7613649565b5b828202905092915050565b60006134be82613551565b91506134c983613551565b9250828210156134dc576134db613649565b5b828203905092915050565b60006134f282613531565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561358857808201518184015260208101905061356d565b83811115613597576000848401525b50505050565b600060028204905060018216806135b557607f821691505b602082108114156135c9576135c86136a7565b5b50919050565b60006135da82613551565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561360d5761360c613649565b5b600182019050919050565b600061362382613551565b915061362e83613551565b92508261363e5761363d613678565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61371f816134e7565b811461372a57600080fd5b50565b613736816134f9565b811461374157600080fd5b50565b61374d81613505565b811461375857600080fd5b50565b61376481613551565b811461376f57600080fd5b5056fea26469706673582212208425926f55aec87c9a798b8b999f115cd09d0ca7004ba33280e6c068a89921aa64736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d66346f575a634b516f34566e507878626a544679776e4b6368596334383361744b3361706b6343776962776f2f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/Qmf4oWZcKQo4VnPxxbjTFywnKchYc483atK3apkcCwibwo/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d66346f575a634b516f34566e507878626a544679776e4b6368596334
Arg [4] : 383361744b3361706b6343776962776f2f000000000000000000000000000000


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.