ETH Price: $3,826.73 (+4.73%)

CumRocket Cuties (Cuties)
 

Overview

TokenID

4

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CumRocketCuties

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : CumRocketCuties.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;

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

contract CumRocketCuties is ERC721Enumerable, Ownable {
    using Strings for uint256;

    uint256 public TOTAL_SUPPLY = 100; 
    uint256 public MINT_PRICE = 0.069 ether; 
    uint256 public MAX_PER_ADDRESS = 2;
    uint256 public MAX_PER_TX = 2;

    uint256 public supplyMinted;

    string public baseTokenURI;

    bool public saleStarted;
    bool public whitelistOn = true;

    mapping(address => bool) private whitelist;

    mapping(address => uint256) public totalClaimed;

    event BaseURIChanged(string baseURI);
    event NftMinted(address minter, uint256 amount);
    event WhitelistToggled(bool toggled);
    event SaleToggled(bool toggled);

    modifier whenSaleStarted() {
        require(saleStarted, "Sale has not started");
        _;
    }

    constructor(string memory baseURI) ERC721("CumRocket Cuties", "Cuties") {
        baseTokenURI = baseURI;
    }

    function addToWhitelist(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Cannot add null address");

            whitelist[addresses[i]] = true;
        }
    }

    function checkWhitelistEligibility(address addr) external view returns (bool) {
        return whitelist[addr];
    }

    function mint(uint256 amount) external payable whenSaleStarted {
        if(whitelistOn) {
            require(whitelist[msg.sender], "You're not in the whitelist");
        }
        require(totalSupply() + amount <= TOTAL_SUPPLY, "Minting would exceed max supply");
        require(totalClaimed[msg.sender] + amount <= MAX_PER_ADDRESS, "Purchase exceeds max allowed per address");
        require(amount > 0, "Must mint at least one");
        require(amount <= MAX_PER_TX, "Amount over max per transaction. ");
        require(MINT_PRICE * amount <= msg.value, "Amount is incorrect");
        
        for (uint256 i = 0; i < amount; i++) {
            supplyMinted += 1;
            totalClaimed[msg.sender] += 1;
            _safeMint(msg.sender, supplyMinted);
        }

        emit NftMinted(msg.sender, amount);
    }

    function startSale() external onlyOwner {
        saleStarted = !saleStarted;
        emit SaleToggled(saleStarted);
    }

    function toggleWhitelist() external onlyOwner {
        whitelistOn = !whitelistOn;
        emit WhitelistToggled(whitelistOn);
    }

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

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

    function withdrawAll(address recipient) public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Insufficent balance");
        _widthdraw(recipient, address(this).balance);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{ value: _amount }("");
        require(success, "Failed to widthdraw Ether");
    }
}

File 2 of 14 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 14 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

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

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

    bool private _paused;

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

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

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

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

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

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

File 5 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

File 6 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 7 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "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":false,"internalType":"string","name":"baseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"NftMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"toggled","type":"bool"}],"name":"SaleToggled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"toggled","type":"bool"}],"name":"WhitelistToggled","type":"event"},{"inputs":[],"name":"MAX_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","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":"address","name":"addr","type":"address"}],"name":"checkWhitelistEligibility","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","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":"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":[],"name":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526064600b5566f5232269808000600c556002600d556002600e556001601160016101000a81548160ff0219169083151502179055503480156200004657600080fd5b5060405162004d3638038062004d3683398181016040528101906200006c91906200033c565b6040518060400160405280601081526020017f43756d526f636b657420437574696573000000000000000000000000000000008152506040518060400160405280600681526020017f43757469657300000000000000000000000000000000000000000000000000008152508160009080519060200190620000f09291906200021a565b508060019080519060200190620001099291906200021a565b5050506200012c620001206200014c60201b60201c565b6200015460201b60201c565b8060109080519060200190620001449291906200021a565b5050620004b2565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000228906200041e565b90600052602060002090601f0160209004810192826200024c576000855562000298565b82601f106200026757805160ff191683800117855562000298565b8280016001018555821562000298579182015b82811115620002975782518255916020019190600101906200027a565b5b509050620002a79190620002ab565b5090565b5b80821115620002c6576000816000905550600101620002ac565b5090565b6000620002e1620002db84620003b5565b62000381565b905082815260208101848484011115620002fa57600080fd5b62000307848285620003e8565b509392505050565b600082601f8301126200032157600080fd5b815162000333848260208601620002ca565b91505092915050565b6000602082840312156200034f57600080fd5b600082015167ffffffffffffffff8111156200036a57600080fd5b62000378848285016200030f565b91505092915050565b6000604051905081810181811067ffffffffffffffff82111715620003ab57620003aa62000483565b5b8060405250919050565b600067ffffffffffffffff821115620003d357620003d262000483565b5b601f19601f8301169050602081019050919050565b60005b8381101562000408578082015181840152602081019050620003eb565b8381111562000418576000848401525b50505050565b600060028204905060018216806200043757607f821691505b602082108114156200044e576200044d62000454565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61487480620004c26000396000f3fe6080604052600436106102045760003560e01c80637e9845f511610118578063c002d23d116100a0578063ef5d9ae81161006f578063ef5d9ae81461074a578063f2fde38b14610787578063f43a22dc146107b0578063f6f27960146107db578063fa09e6301461081857610204565b8063c002d23d1461067a578063c87b56dd146106a5578063d547cfb7146106e2578063e985e9c51461070d57610204565b806395d89b41116100e757806395d89b41146105ca578063a0712d68146105f5578063a22cb46514610611578063b66a0e5d1461063a578063b88d4fde1461065157610204565b80637e9845f5146105205780637f6497831461054b5780638da5cb5b14610574578063902d55a51461059f57610204565b806342842e0e1161019b5780635c474f9e1161016a5780635c474f9e1461044d5780636352211e1461047857806370a08231146104b5578063715018a6146104f25780637e15144b1461050957610204565b806342842e0e146103935780634917aa3f146103bc5780634f6ccce7146103e757806355f804b31461042457610204565b80630aaef285116101d75780630aaef285146102d757806318160ddd1461030257806323b872dd1461032d5780632f745c591461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613418565b610841565b60405161023d9190613fe7565b60405180910390f35b34801561025257600080fd5b5061025b6108bb565b6040516102689190614002565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906134ab565b61094d565b6040516102a59190613f57565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613397565b6109d2565b005b3480156102e357600080fd5b506102ec610aea565b6040516102f991906143a4565b60405180910390f35b34801561030e57600080fd5b50610317610af0565b60405161032491906143a4565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190613291565b610afd565b005b34801561036257600080fd5b5061037d60048036038101906103789190613397565b610b5d565b60405161038a91906143a4565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b59190613291565b610c02565b005b3480156103c857600080fd5b506103d1610c22565b6040516103de9190613fe7565b60405180910390f35b3480156103f357600080fd5b5061040e600480360381019061040991906134ab565b610c35565b60405161041b91906143a4565b60405180910390f35b34801561043057600080fd5b5061044b6004803603810190610446919061346a565b610ccc565b005b34801561045957600080fd5b50610462610d99565b60405161046f9190613fe7565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a91906134ab565b610dac565b6040516104ac9190613f57565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d7919061322c565b610e5e565b6040516104e991906143a4565b60405180910390f35b3480156104fe57600080fd5b50610507610f16565b005b34801561051557600080fd5b5061051e610f9e565b005b34801561052c57600080fd5b5061053561108c565b60405161054291906143a4565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d91906133d3565b611092565b005b34801561058057600080fd5b50610589611296565b6040516105969190613f57565b60405180910390f35b3480156105ab57600080fd5b506105b46112c0565b6040516105c191906143a4565b60405180910390f35b3480156105d657600080fd5b506105df6112c6565b6040516105ec9190614002565b60405180910390f35b61060f600480360381019061060a91906134ab565b611358565b005b34801561061d57600080fd5b506106386004803603810190610633919061335b565b6116df565b005b34801561064657600080fd5b5061064f6116f5565b005b34801561065d57600080fd5b50610678600480360381019061067391906132e0565b6117e3565b005b34801561068657600080fd5b5061068f611845565b60405161069c91906143a4565b60405180910390f35b3480156106b157600080fd5b506106cc60048036038101906106c791906134ab565b61184b565b6040516106d99190614002565b60405180910390f35b3480156106ee57600080fd5b506106f76118f2565b6040516107049190614002565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f9190613255565b611980565b6040516107419190613fe7565b60405180910390f35b34801561075657600080fd5b50610771600480360381019061076c919061322c565b611a14565b60405161077e91906143a4565b60405180910390f35b34801561079357600080fd5b506107ae60048036038101906107a9919061322c565b611a2c565b005b3480156107bc57600080fd5b506107c5611b24565b6040516107d291906143a4565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd919061322c565b611b2a565b60405161080f9190613fe7565b60405180910390f35b34801561082457600080fd5b5061083f600480360381019061083a919061322c565b611b80565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b457506108b382611c52565b5b9050919050565b6060600080546108ca90614669565b80601f01602080910402602001604051908101604052809291908181526020018280546108f690614669565b80156109435780601f1061091857610100808354040283529160200191610943565b820191906000526020600020905b81548152906001019060200180831161092657829003601f168201915b5050505050905090565b600061095882611d34565b610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e906141e4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109dd82610dac565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a45906142c4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a6d611da0565b73ffffffffffffffffffffffffffffffffffffffff161480610a9c5750610a9b81610a96611da0565b611980565b5b610adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad290614144565b60405180910390fd5b610ae58383611da8565b505050565b600d5481565b6000600880549050905090565b610b0e610b08611da0565b82611e61565b610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4490614304565b60405180910390fd5b610b58838383611f3f565b505050565b6000610b6883610e5e565b8210610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090614044565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c1d838383604051806020016040528060008152506117e3565b505050565b601160019054906101000a900460ff1681565b6000610c3f610af0565b8210610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7790614324565b60405180910390fd5b60088281548110610cba577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610cd4611da0565b73ffffffffffffffffffffffffffffffffffffffff16610cf2611296565b73ffffffffffffffffffffffffffffffffffffffff1614610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f90614224565b60405180910390fd5b8060109080519060200190610d5e929190613006565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051610d8e9190614002565b60405180910390a150565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90614184565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec690614164565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f1e611da0565b73ffffffffffffffffffffffffffffffffffffffff16610f3c611296565b73ffffffffffffffffffffffffffffffffffffffff1614610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990614224565b60405180910390fd5b610f9c600061219b565b565b610fa6611da0565b73ffffffffffffffffffffffffffffffffffffffff16610fc4611296565b73ffffffffffffffffffffffffffffffffffffffff161461101a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101190614224565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff0219169083151502179055507fc816dd38770d8cbe6a8fb169cb4961c28b697d528ebfd3c353ab8f74e82f1f9a601160019054906101000a900460ff166040516110829190613fe7565b60405180910390a1565b600f5481565b61109a611da0565b73ffffffffffffffffffffffffffffffffffffffff166110b8611296565b73ffffffffffffffffffffffffffffffffffffffff161461110e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110590614224565b60405180910390fd5b60005b8282905081101561129157600073ffffffffffffffffffffffffffffffffffffffff1683838381811061116d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611182919061322c565b73ffffffffffffffffffffffffffffffffffffffff1614156111d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d0906142e4565b60405180910390fd5b600160126000858585818110611218577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061122d919061322c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806112899061469b565b915050611111565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b6060600180546112d590614669565b80601f016020809104026020016040519081016040528092919081815260200182805461130190614669565b801561134e5780601f106113235761010080835404028352916020019161134e565b820191906000526020600020905b81548152906001019060200180831161133157829003601f168201915b5050505050905090565b601160009054906101000a900460ff166113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e90614344565b60405180910390fd5b601160019054906101000a900460ff161561144957601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143f90614024565b60405180910390fd5b5b600b5481611455610af0565b61145f919061449e565b11156114a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611497906141a4565b60405180910390fd5b600d5481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114ee919061449e565b111561152f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611526906142a4565b60405180910390fd5b60008111611572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156990614364565b60405180910390fd5b600e548111156115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90614384565b60405180910390fd5b3481600c546115c69190614525565b1115611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe90614124565b60405180910390fd5b60005b818110156116a2576001600f6000828254611625919061449e565b925050819055506001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461167c919061449e565b9250508190555061168f33600f54612261565b808061169a9061469b565b91505061160a565b507ff2b290a76feb54be358b555507421d765609171aefa0646f109a653228ff81b833826040516116d4929190613fbe565b60405180910390a150565b6116f16116ea611da0565b838361227f565b5050565b6116fd611da0565b73ffffffffffffffffffffffffffffffffffffffff1661171b611296565b73ffffffffffffffffffffffffffffffffffffffff1614611771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176890614224565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff0219169083151502179055507f37ae8f893f8baa4aef207505c0e4d730119d73dc1363bbee6fda5f5d52c3cf17601160009054906101000a900460ff166040516117d99190613fe7565b60405180910390a1565b6117f46117ee611da0565b83611e61565b611833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182a90614304565b60405180910390fd5b61183f848484846123ec565b50505050565b600c5481565b606061185682611d34565b611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c90614264565b60405180910390fd5b600061189f612448565b905060008151116118bf57604051806020016040528060008152506118ea565b806118c9846124da565b6040516020016118da929190613f1e565b6040516020818303038152906040525b915050919050565b601080546118ff90614669565b80601f016020809104026020016040519081016040528092919081815260200182805461192b90614669565b80156119785780601f1061194d57610100808354040283529160200191611978565b820191906000526020600020905b81548152906001019060200180831161195b57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60136020528060005260406000206000915090505481565b611a34611da0565b73ffffffffffffffffffffffffffffffffffffffff16611a52611296565b73ffffffffffffffffffffffffffffffffffffffff1614611aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9f90614224565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f90614084565b60405180910390fd5b611b218161219b565b50565b600e5481565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611b88611da0565b73ffffffffffffffffffffffffffffffffffffffff16611ba6611296565b73ffffffffffffffffffffffffffffffffffffffff1614611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf390614224565b60405180910390fd5b600047905060008111611c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3b90614204565b60405180910390fd5b611c4e8247612687565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d1d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d2d5750611d2c82612738565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e1b83610dac565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e6c82611d34565b611eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea290614104565b60405180910390fd5b6000611eb683610dac565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f2557508373ffffffffffffffffffffffffffffffffffffffff16611f0d8461094d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f365750611f358185611980565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f5f82610dac565b73ffffffffffffffffffffffffffffffffffffffff1614611fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fac90614244565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c906140c4565b60405180910390fd5b6120308383836127a2565b61203b600082611da8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461208b919061457f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120e2919061449e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61227b8282604051806020016040528060008152506128b6565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e5906140e4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123df9190613fe7565b60405180910390a3505050565b6123f7848484611f3f565b61240384848484612911565b612442576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243990614064565b60405180910390fd5b50505050565b60606010805461245790614669565b80601f016020809104026020016040519081016040528092919081815260200182805461248390614669565b80156124d05780601f106124a5576101008083540402835291602001916124d0565b820191906000526020600020905b8154815290600101906020018083116124b357829003601f168201915b5050505050905090565b60606000821415612522576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612682565b600082905060005b6000821461255457808061253d9061469b565b915050600a8261254d91906144f4565b915061252a565b60008167ffffffffffffffff811115612596577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125c85781602001600182028036833780820191505090505b5090505b6000851461267b576001826125e1919061457f565b9150600a856125f091906146e4565b60306125fc919061449e565b60f81b818381518110612638577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561267491906144f4565b94506125cc565b8093505050505b919050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516126ad90613f42565b60006040518083038185875af1925050503d80600081146126ea576040519150601f19603f3d011682016040523d82523d6000602084013e6126ef565b606091505b5050905080612733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272a90614284565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6127ad838383612aa8565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127f0576127eb81612aad565b61282f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461282e5761282d8382612af6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128725761286d81612c63565b6128b1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146128b0576128af8282612da6565b5b5b505050565b6128c08383612e25565b6128cd6000848484612911565b61290c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290390614064565b60405180910390fd5b505050565b60006129328473ffffffffffffffffffffffffffffffffffffffff16612ff3565b15612a9b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261295b611da0565b8786866040518563ffffffff1660e01b815260040161297d9493929190613f72565b602060405180830381600087803b15801561299757600080fd5b505af19250505080156129c857506040513d601f19601f820116820180604052508101906129c59190613441565b60015b612a4b573d80600081146129f8576040519150601f19603f3d011682016040523d82523d6000602084013e6129fd565b606091505b50600081511415612a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3a90614064565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612aa0565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612b0384610e5e565b612b0d919061457f565b9050600060076000848152602001908152602001600020549050818114612bf2576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c77919061457f565b9050600060096000848152602001908152602001600020549050600060088381548110612ccd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612d15577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612d8a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612db183610e5e565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8c906141c4565b60405180910390fd5b612e9e81611d34565b15612ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed5906140a4565b60405180910390fd5b612eea600083836127a2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f3a919061449e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461301290614669565b90600052602060002090601f016020900481019282613034576000855561307b565b82601f1061304d57805160ff191683800117855561307b565b8280016001018555821561307b579182015b8281111561307a57825182559160200191906001019061305f565b5b509050613088919061308c565b5090565b5b808211156130a557600081600090555060010161308d565b5090565b60006130bc6130b7846143f0565b6143bf565b9050828152602081018484840111156130d457600080fd5b6130df848285614627565b509392505050565b60006130fa6130f584614420565b6143bf565b90508281526020810184848401111561311257600080fd5b61311d848285614627565b509392505050565b600081359050613134816147e2565b92915050565b60008083601f84011261314c57600080fd5b8235905067ffffffffffffffff81111561316557600080fd5b60208301915083602082028301111561317d57600080fd5b9250929050565b600081359050613193816147f9565b92915050565b6000813590506131a881614810565b92915050565b6000815190506131bd81614810565b92915050565b600082601f8301126131d457600080fd5b81356131e48482602086016130a9565b91505092915050565b600082601f8301126131fe57600080fd5b813561320e8482602086016130e7565b91505092915050565b60008135905061322681614827565b92915050565b60006020828403121561323e57600080fd5b600061324c84828501613125565b91505092915050565b6000806040838503121561326857600080fd5b600061327685828601613125565b925050602061328785828601613125565b9150509250929050565b6000806000606084860312156132a657600080fd5b60006132b486828701613125565b93505060206132c586828701613125565b92505060406132d686828701613217565b9150509250925092565b600080600080608085870312156132f657600080fd5b600061330487828801613125565b945050602061331587828801613125565b935050604061332687828801613217565b925050606085013567ffffffffffffffff81111561334357600080fd5b61334f878288016131c3565b91505092959194509250565b6000806040838503121561336e57600080fd5b600061337c85828601613125565b925050602061338d85828601613184565b9150509250929050565b600080604083850312156133aa57600080fd5b60006133b885828601613125565b92505060206133c985828601613217565b9150509250929050565b600080602083850312156133e657600080fd5b600083013567ffffffffffffffff81111561340057600080fd5b61340c8582860161313a565b92509250509250929050565b60006020828403121561342a57600080fd5b600061343884828501613199565b91505092915050565b60006020828403121561345357600080fd5b6000613461848285016131ae565b91505092915050565b60006020828403121561347c57600080fd5b600082013567ffffffffffffffff81111561349657600080fd5b6134a2848285016131ed565b91505092915050565b6000602082840312156134bd57600080fd5b60006134cb84828501613217565b91505092915050565b6134dd816145b3565b82525050565b6134ec816145c5565b82525050565b60006134fd82614450565b6135078185614466565b9350613517818560208601614636565b613520816147d1565b840191505092915050565b60006135368261445b565b6135408185614482565b9350613550818560208601614636565b613559816147d1565b840191505092915050565b600061356f8261445b565b6135798185614493565b9350613589818560208601614636565b80840191505092915050565b60006135a2601b83614482565b91507f596f75277265206e6f7420696e207468652077686974656c69737400000000006000830152602082019050919050565b60006135e2602b83614482565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613648603283614482565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006136ae602683614482565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613714601c83614482565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613754602483614482565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137ba601983614482565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006137fa602c83614482565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613860601383614482565b91507f416d6f756e7420697320696e636f7272656374000000000000000000000000006000830152602082019050919050565b60006138a0603883614482565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613906602a83614482565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061396c602983614482565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006139d2601f83614482565b91507f4d696e74696e6720776f756c6420657863656564206d617820737570706c79006000830152602082019050919050565b6000613a12602083614482565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613a52602c83614482565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613ab8601383614482565b91507f496e737566666963656e742062616c616e6365000000000000000000000000006000830152602082019050919050565b6000613af8602083614482565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613b38602983614482565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b9e602f83614482565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613c04601983614482565b91507f4661696c656420746f20776964746864726177204574686572000000000000006000830152602082019050919050565b6000613c44602883614482565b91507f50757263686173652065786365656473206d617820616c6c6f7765642070657260008301527f20616464726573730000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613caa602183614482565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d10600083614477565b9150600082019050919050565b6000613d2a601783614482565b91507f43616e6e6f7420616464206e756c6c20616464726573730000000000000000006000830152602082019050919050565b6000613d6a603183614482565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613dd0602c83614482565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613e36601483614482565b91507f53616c6520686173206e6f7420737461727465640000000000000000000000006000830152602082019050919050565b6000613e76601683614482565b91507f4d757374206d696e74206174206c65617374206f6e65000000000000000000006000830152602082019050919050565b6000613eb6602183614482565b91507f416d6f756e74206f766572206d617820706572207472616e73616374696f6e2e60008301527f20000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b613f188161461d565b82525050565b6000613f2a8285613564565b9150613f368284613564565b91508190509392505050565b6000613f4d82613d03565b9150819050919050565b6000602082019050613f6c60008301846134d4565b92915050565b6000608082019050613f8760008301876134d4565b613f9460208301866134d4565b613fa16040830185613f0f565b8181036060830152613fb381846134f2565b905095945050505050565b6000604082019050613fd360008301856134d4565b613fe06020830184613f0f565b9392505050565b6000602082019050613ffc60008301846134e3565b92915050565b6000602082019050818103600083015261401c818461352b565b905092915050565b6000602082019050818103600083015261403d81613595565b9050919050565b6000602082019050818103600083015261405d816135d5565b9050919050565b6000602082019050818103600083015261407d8161363b565b9050919050565b6000602082019050818103600083015261409d816136a1565b9050919050565b600060208201905081810360008301526140bd81613707565b9050919050565b600060208201905081810360008301526140dd81613747565b9050919050565b600060208201905081810360008301526140fd816137ad565b9050919050565b6000602082019050818103600083015261411d816137ed565b9050919050565b6000602082019050818103600083015261413d81613853565b9050919050565b6000602082019050818103600083015261415d81613893565b9050919050565b6000602082019050818103600083015261417d816138f9565b9050919050565b6000602082019050818103600083015261419d8161395f565b9050919050565b600060208201905081810360008301526141bd816139c5565b9050919050565b600060208201905081810360008301526141dd81613a05565b9050919050565b600060208201905081810360008301526141fd81613a45565b9050919050565b6000602082019050818103600083015261421d81613aab565b9050919050565b6000602082019050818103600083015261423d81613aeb565b9050919050565b6000602082019050818103600083015261425d81613b2b565b9050919050565b6000602082019050818103600083015261427d81613b91565b9050919050565b6000602082019050818103600083015261429d81613bf7565b9050919050565b600060208201905081810360008301526142bd81613c37565b9050919050565b600060208201905081810360008301526142dd81613c9d565b9050919050565b600060208201905081810360008301526142fd81613d1d565b9050919050565b6000602082019050818103600083015261431d81613d5d565b9050919050565b6000602082019050818103600083015261433d81613dc3565b9050919050565b6000602082019050818103600083015261435d81613e29565b9050919050565b6000602082019050818103600083015261437d81613e69565b9050919050565b6000602082019050818103600083015261439d81613ea9565b9050919050565b60006020820190506143b96000830184613f0f565b92915050565b6000604051905081810181811067ffffffffffffffff821117156143e6576143e56147a2565b5b8060405250919050565b600067ffffffffffffffff82111561440b5761440a6147a2565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561443b5761443a6147a2565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006144a98261461d565b91506144b48361461d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144e9576144e8614715565b5b828201905092915050565b60006144ff8261461d565b915061450a8361461d565b92508261451a57614519614744565b5b828204905092915050565b60006145308261461d565b915061453b8361461d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561457457614573614715565b5b828202905092915050565b600061458a8261461d565b91506145958361461d565b9250828210156145a8576145a7614715565b5b828203905092915050565b60006145be826145fd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614654578082015181840152602081019050614639565b83811115614663576000848401525b50505050565b6000600282049050600182168061468157607f821691505b6020821081141561469557614694614773565b5b50919050565b60006146a68261461d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146d9576146d8614715565b5b600182019050919050565b60006146ef8261461d565b91506146fa8361461d565b92508261470a57614709614744565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6147eb816145b3565b81146147f657600080fd5b50565b614802816145c5565b811461480d57600080fd5b50565b614819816145d1565b811461482457600080fd5b50565b6148308161461d565b811461483b57600080fd5b5056fea2646970667358221220b3b8f310d39592b28a30cee9850c3ba9f95976d2a1e309139786a40beae6754d64736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5a5256685a596e6b48555a56683465474538416833356432394a456e325948675133696f45556f73384b664a2f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80637e9845f511610118578063c002d23d116100a0578063ef5d9ae81161006f578063ef5d9ae81461074a578063f2fde38b14610787578063f43a22dc146107b0578063f6f27960146107db578063fa09e6301461081857610204565b8063c002d23d1461067a578063c87b56dd146106a5578063d547cfb7146106e2578063e985e9c51461070d57610204565b806395d89b41116100e757806395d89b41146105ca578063a0712d68146105f5578063a22cb46514610611578063b66a0e5d1461063a578063b88d4fde1461065157610204565b80637e9845f5146105205780637f6497831461054b5780638da5cb5b14610574578063902d55a51461059f57610204565b806342842e0e1161019b5780635c474f9e1161016a5780635c474f9e1461044d5780636352211e1461047857806370a08231146104b5578063715018a6146104f25780637e15144b1461050957610204565b806342842e0e146103935780634917aa3f146103bc5780634f6ccce7146103e757806355f804b31461042457610204565b80630aaef285116101d75780630aaef285146102d757806318160ddd1461030257806323b872dd1461032d5780632f745c591461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613418565b610841565b60405161023d9190613fe7565b60405180910390f35b34801561025257600080fd5b5061025b6108bb565b6040516102689190614002565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906134ab565b61094d565b6040516102a59190613f57565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613397565b6109d2565b005b3480156102e357600080fd5b506102ec610aea565b6040516102f991906143a4565b60405180910390f35b34801561030e57600080fd5b50610317610af0565b60405161032491906143a4565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190613291565b610afd565b005b34801561036257600080fd5b5061037d60048036038101906103789190613397565b610b5d565b60405161038a91906143a4565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b59190613291565b610c02565b005b3480156103c857600080fd5b506103d1610c22565b6040516103de9190613fe7565b60405180910390f35b3480156103f357600080fd5b5061040e600480360381019061040991906134ab565b610c35565b60405161041b91906143a4565b60405180910390f35b34801561043057600080fd5b5061044b6004803603810190610446919061346a565b610ccc565b005b34801561045957600080fd5b50610462610d99565b60405161046f9190613fe7565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a91906134ab565b610dac565b6040516104ac9190613f57565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d7919061322c565b610e5e565b6040516104e991906143a4565b60405180910390f35b3480156104fe57600080fd5b50610507610f16565b005b34801561051557600080fd5b5061051e610f9e565b005b34801561052c57600080fd5b5061053561108c565b60405161054291906143a4565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d91906133d3565b611092565b005b34801561058057600080fd5b50610589611296565b6040516105969190613f57565b60405180910390f35b3480156105ab57600080fd5b506105b46112c0565b6040516105c191906143a4565b60405180910390f35b3480156105d657600080fd5b506105df6112c6565b6040516105ec9190614002565b60405180910390f35b61060f600480360381019061060a91906134ab565b611358565b005b34801561061d57600080fd5b506106386004803603810190610633919061335b565b6116df565b005b34801561064657600080fd5b5061064f6116f5565b005b34801561065d57600080fd5b50610678600480360381019061067391906132e0565b6117e3565b005b34801561068657600080fd5b5061068f611845565b60405161069c91906143a4565b60405180910390f35b3480156106b157600080fd5b506106cc60048036038101906106c791906134ab565b61184b565b6040516106d99190614002565b60405180910390f35b3480156106ee57600080fd5b506106f76118f2565b6040516107049190614002565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f9190613255565b611980565b6040516107419190613fe7565b60405180910390f35b34801561075657600080fd5b50610771600480360381019061076c919061322c565b611a14565b60405161077e91906143a4565b60405180910390f35b34801561079357600080fd5b506107ae60048036038101906107a9919061322c565b611a2c565b005b3480156107bc57600080fd5b506107c5611b24565b6040516107d291906143a4565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd919061322c565b611b2a565b60405161080f9190613fe7565b60405180910390f35b34801561082457600080fd5b5061083f600480360381019061083a919061322c565b611b80565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b457506108b382611c52565b5b9050919050565b6060600080546108ca90614669565b80601f01602080910402602001604051908101604052809291908181526020018280546108f690614669565b80156109435780601f1061091857610100808354040283529160200191610943565b820191906000526020600020905b81548152906001019060200180831161092657829003601f168201915b5050505050905090565b600061095882611d34565b610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e906141e4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109dd82610dac565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a45906142c4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a6d611da0565b73ffffffffffffffffffffffffffffffffffffffff161480610a9c5750610a9b81610a96611da0565b611980565b5b610adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad290614144565b60405180910390fd5b610ae58383611da8565b505050565b600d5481565b6000600880549050905090565b610b0e610b08611da0565b82611e61565b610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4490614304565b60405180910390fd5b610b58838383611f3f565b505050565b6000610b6883610e5e565b8210610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090614044565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c1d838383604051806020016040528060008152506117e3565b505050565b601160019054906101000a900460ff1681565b6000610c3f610af0565b8210610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7790614324565b60405180910390fd5b60088281548110610cba577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610cd4611da0565b73ffffffffffffffffffffffffffffffffffffffff16610cf2611296565b73ffffffffffffffffffffffffffffffffffffffff1614610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f90614224565b60405180910390fd5b8060109080519060200190610d5e929190613006565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051610d8e9190614002565b60405180910390a150565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90614184565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec690614164565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f1e611da0565b73ffffffffffffffffffffffffffffffffffffffff16610f3c611296565b73ffffffffffffffffffffffffffffffffffffffff1614610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990614224565b60405180910390fd5b610f9c600061219b565b565b610fa6611da0565b73ffffffffffffffffffffffffffffffffffffffff16610fc4611296565b73ffffffffffffffffffffffffffffffffffffffff161461101a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101190614224565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff0219169083151502179055507fc816dd38770d8cbe6a8fb169cb4961c28b697d528ebfd3c353ab8f74e82f1f9a601160019054906101000a900460ff166040516110829190613fe7565b60405180910390a1565b600f5481565b61109a611da0565b73ffffffffffffffffffffffffffffffffffffffff166110b8611296565b73ffffffffffffffffffffffffffffffffffffffff161461110e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110590614224565b60405180910390fd5b60005b8282905081101561129157600073ffffffffffffffffffffffffffffffffffffffff1683838381811061116d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611182919061322c565b73ffffffffffffffffffffffffffffffffffffffff1614156111d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d0906142e4565b60405180910390fd5b600160126000858585818110611218577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061122d919061322c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806112899061469b565b915050611111565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b6060600180546112d590614669565b80601f016020809104026020016040519081016040528092919081815260200182805461130190614669565b801561134e5780601f106113235761010080835404028352916020019161134e565b820191906000526020600020905b81548152906001019060200180831161133157829003601f168201915b5050505050905090565b601160009054906101000a900460ff166113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e90614344565b60405180910390fd5b601160019054906101000a900460ff161561144957601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143f90614024565b60405180910390fd5b5b600b5481611455610af0565b61145f919061449e565b11156114a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611497906141a4565b60405180910390fd5b600d5481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114ee919061449e565b111561152f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611526906142a4565b60405180910390fd5b60008111611572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156990614364565b60405180910390fd5b600e548111156115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90614384565b60405180910390fd5b3481600c546115c69190614525565b1115611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe90614124565b60405180910390fd5b60005b818110156116a2576001600f6000828254611625919061449e565b925050819055506001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461167c919061449e565b9250508190555061168f33600f54612261565b808061169a9061469b565b91505061160a565b507ff2b290a76feb54be358b555507421d765609171aefa0646f109a653228ff81b833826040516116d4929190613fbe565b60405180910390a150565b6116f16116ea611da0565b838361227f565b5050565b6116fd611da0565b73ffffffffffffffffffffffffffffffffffffffff1661171b611296565b73ffffffffffffffffffffffffffffffffffffffff1614611771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176890614224565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff0219169083151502179055507f37ae8f893f8baa4aef207505c0e4d730119d73dc1363bbee6fda5f5d52c3cf17601160009054906101000a900460ff166040516117d99190613fe7565b60405180910390a1565b6117f46117ee611da0565b83611e61565b611833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182a90614304565b60405180910390fd5b61183f848484846123ec565b50505050565b600c5481565b606061185682611d34565b611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c90614264565b60405180910390fd5b600061189f612448565b905060008151116118bf57604051806020016040528060008152506118ea565b806118c9846124da565b6040516020016118da929190613f1e565b6040516020818303038152906040525b915050919050565b601080546118ff90614669565b80601f016020809104026020016040519081016040528092919081815260200182805461192b90614669565b80156119785780601f1061194d57610100808354040283529160200191611978565b820191906000526020600020905b81548152906001019060200180831161195b57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60136020528060005260406000206000915090505481565b611a34611da0565b73ffffffffffffffffffffffffffffffffffffffff16611a52611296565b73ffffffffffffffffffffffffffffffffffffffff1614611aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9f90614224565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f90614084565b60405180910390fd5b611b218161219b565b50565b600e5481565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611b88611da0565b73ffffffffffffffffffffffffffffffffffffffff16611ba6611296565b73ffffffffffffffffffffffffffffffffffffffff1614611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf390614224565b60405180910390fd5b600047905060008111611c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3b90614204565b60405180910390fd5b611c4e8247612687565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d1d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d2d5750611d2c82612738565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e1b83610dac565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e6c82611d34565b611eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea290614104565b60405180910390fd5b6000611eb683610dac565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f2557508373ffffffffffffffffffffffffffffffffffffffff16611f0d8461094d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f365750611f358185611980565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f5f82610dac565b73ffffffffffffffffffffffffffffffffffffffff1614611fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fac90614244565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c906140c4565b60405180910390fd5b6120308383836127a2565b61203b600082611da8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461208b919061457f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120e2919061449e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61227b8282604051806020016040528060008152506128b6565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e5906140e4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123df9190613fe7565b60405180910390a3505050565b6123f7848484611f3f565b61240384848484612911565b612442576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243990614064565b60405180910390fd5b50505050565b60606010805461245790614669565b80601f016020809104026020016040519081016040528092919081815260200182805461248390614669565b80156124d05780601f106124a5576101008083540402835291602001916124d0565b820191906000526020600020905b8154815290600101906020018083116124b357829003601f168201915b5050505050905090565b60606000821415612522576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612682565b600082905060005b6000821461255457808061253d9061469b565b915050600a8261254d91906144f4565b915061252a565b60008167ffffffffffffffff811115612596577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125c85781602001600182028036833780820191505090505b5090505b6000851461267b576001826125e1919061457f565b9150600a856125f091906146e4565b60306125fc919061449e565b60f81b818381518110612638577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561267491906144f4565b94506125cc565b8093505050505b919050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516126ad90613f42565b60006040518083038185875af1925050503d80600081146126ea576040519150601f19603f3d011682016040523d82523d6000602084013e6126ef565b606091505b5050905080612733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272a90614284565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6127ad838383612aa8565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127f0576127eb81612aad565b61282f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461282e5761282d8382612af6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128725761286d81612c63565b6128b1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146128b0576128af8282612da6565b5b5b505050565b6128c08383612e25565b6128cd6000848484612911565b61290c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290390614064565b60405180910390fd5b505050565b60006129328473ffffffffffffffffffffffffffffffffffffffff16612ff3565b15612a9b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261295b611da0565b8786866040518563ffffffff1660e01b815260040161297d9493929190613f72565b602060405180830381600087803b15801561299757600080fd5b505af19250505080156129c857506040513d601f19601f820116820180604052508101906129c59190613441565b60015b612a4b573d80600081146129f8576040519150601f19603f3d011682016040523d82523d6000602084013e6129fd565b606091505b50600081511415612a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3a90614064565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612aa0565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612b0384610e5e565b612b0d919061457f565b9050600060076000848152602001908152602001600020549050818114612bf2576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c77919061457f565b9050600060096000848152602001908152602001600020549050600060088381548110612ccd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612d15577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612d8a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612db183610e5e565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8c906141c4565b60405180910390fd5b612e9e81611d34565b15612ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed5906140a4565b60405180910390fd5b612eea600083836127a2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f3a919061449e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461301290614669565b90600052602060002090601f016020900481019282613034576000855561307b565b82601f1061304d57805160ff191683800117855561307b565b8280016001018555821561307b579182015b8281111561307a57825182559160200191906001019061305f565b5b509050613088919061308c565b5090565b5b808211156130a557600081600090555060010161308d565b5090565b60006130bc6130b7846143f0565b6143bf565b9050828152602081018484840111156130d457600080fd5b6130df848285614627565b509392505050565b60006130fa6130f584614420565b6143bf565b90508281526020810184848401111561311257600080fd5b61311d848285614627565b509392505050565b600081359050613134816147e2565b92915050565b60008083601f84011261314c57600080fd5b8235905067ffffffffffffffff81111561316557600080fd5b60208301915083602082028301111561317d57600080fd5b9250929050565b600081359050613193816147f9565b92915050565b6000813590506131a881614810565b92915050565b6000815190506131bd81614810565b92915050565b600082601f8301126131d457600080fd5b81356131e48482602086016130a9565b91505092915050565b600082601f8301126131fe57600080fd5b813561320e8482602086016130e7565b91505092915050565b60008135905061322681614827565b92915050565b60006020828403121561323e57600080fd5b600061324c84828501613125565b91505092915050565b6000806040838503121561326857600080fd5b600061327685828601613125565b925050602061328785828601613125565b9150509250929050565b6000806000606084860312156132a657600080fd5b60006132b486828701613125565b93505060206132c586828701613125565b92505060406132d686828701613217565b9150509250925092565b600080600080608085870312156132f657600080fd5b600061330487828801613125565b945050602061331587828801613125565b935050604061332687828801613217565b925050606085013567ffffffffffffffff81111561334357600080fd5b61334f878288016131c3565b91505092959194509250565b6000806040838503121561336e57600080fd5b600061337c85828601613125565b925050602061338d85828601613184565b9150509250929050565b600080604083850312156133aa57600080fd5b60006133b885828601613125565b92505060206133c985828601613217565b9150509250929050565b600080602083850312156133e657600080fd5b600083013567ffffffffffffffff81111561340057600080fd5b61340c8582860161313a565b92509250509250929050565b60006020828403121561342a57600080fd5b600061343884828501613199565b91505092915050565b60006020828403121561345357600080fd5b6000613461848285016131ae565b91505092915050565b60006020828403121561347c57600080fd5b600082013567ffffffffffffffff81111561349657600080fd5b6134a2848285016131ed565b91505092915050565b6000602082840312156134bd57600080fd5b60006134cb84828501613217565b91505092915050565b6134dd816145b3565b82525050565b6134ec816145c5565b82525050565b60006134fd82614450565b6135078185614466565b9350613517818560208601614636565b613520816147d1565b840191505092915050565b60006135368261445b565b6135408185614482565b9350613550818560208601614636565b613559816147d1565b840191505092915050565b600061356f8261445b565b6135798185614493565b9350613589818560208601614636565b80840191505092915050565b60006135a2601b83614482565b91507f596f75277265206e6f7420696e207468652077686974656c69737400000000006000830152602082019050919050565b60006135e2602b83614482565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613648603283614482565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006136ae602683614482565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613714601c83614482565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613754602483614482565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137ba601983614482565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006137fa602c83614482565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613860601383614482565b91507f416d6f756e7420697320696e636f7272656374000000000000000000000000006000830152602082019050919050565b60006138a0603883614482565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613906602a83614482565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061396c602983614482565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006139d2601f83614482565b91507f4d696e74696e6720776f756c6420657863656564206d617820737570706c79006000830152602082019050919050565b6000613a12602083614482565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613a52602c83614482565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613ab8601383614482565b91507f496e737566666963656e742062616c616e6365000000000000000000000000006000830152602082019050919050565b6000613af8602083614482565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613b38602983614482565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b9e602f83614482565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613c04601983614482565b91507f4661696c656420746f20776964746864726177204574686572000000000000006000830152602082019050919050565b6000613c44602883614482565b91507f50757263686173652065786365656473206d617820616c6c6f7765642070657260008301527f20616464726573730000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613caa602183614482565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d10600083614477565b9150600082019050919050565b6000613d2a601783614482565b91507f43616e6e6f7420616464206e756c6c20616464726573730000000000000000006000830152602082019050919050565b6000613d6a603183614482565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613dd0602c83614482565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613e36601483614482565b91507f53616c6520686173206e6f7420737461727465640000000000000000000000006000830152602082019050919050565b6000613e76601683614482565b91507f4d757374206d696e74206174206c65617374206f6e65000000000000000000006000830152602082019050919050565b6000613eb6602183614482565b91507f416d6f756e74206f766572206d617820706572207472616e73616374696f6e2e60008301527f20000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b613f188161461d565b82525050565b6000613f2a8285613564565b9150613f368284613564565b91508190509392505050565b6000613f4d82613d03565b9150819050919050565b6000602082019050613f6c60008301846134d4565b92915050565b6000608082019050613f8760008301876134d4565b613f9460208301866134d4565b613fa16040830185613f0f565b8181036060830152613fb381846134f2565b905095945050505050565b6000604082019050613fd360008301856134d4565b613fe06020830184613f0f565b9392505050565b6000602082019050613ffc60008301846134e3565b92915050565b6000602082019050818103600083015261401c818461352b565b905092915050565b6000602082019050818103600083015261403d81613595565b9050919050565b6000602082019050818103600083015261405d816135d5565b9050919050565b6000602082019050818103600083015261407d8161363b565b9050919050565b6000602082019050818103600083015261409d816136a1565b9050919050565b600060208201905081810360008301526140bd81613707565b9050919050565b600060208201905081810360008301526140dd81613747565b9050919050565b600060208201905081810360008301526140fd816137ad565b9050919050565b6000602082019050818103600083015261411d816137ed565b9050919050565b6000602082019050818103600083015261413d81613853565b9050919050565b6000602082019050818103600083015261415d81613893565b9050919050565b6000602082019050818103600083015261417d816138f9565b9050919050565b6000602082019050818103600083015261419d8161395f565b9050919050565b600060208201905081810360008301526141bd816139c5565b9050919050565b600060208201905081810360008301526141dd81613a05565b9050919050565b600060208201905081810360008301526141fd81613a45565b9050919050565b6000602082019050818103600083015261421d81613aab565b9050919050565b6000602082019050818103600083015261423d81613aeb565b9050919050565b6000602082019050818103600083015261425d81613b2b565b9050919050565b6000602082019050818103600083015261427d81613b91565b9050919050565b6000602082019050818103600083015261429d81613bf7565b9050919050565b600060208201905081810360008301526142bd81613c37565b9050919050565b600060208201905081810360008301526142dd81613c9d565b9050919050565b600060208201905081810360008301526142fd81613d1d565b9050919050565b6000602082019050818103600083015261431d81613d5d565b9050919050565b6000602082019050818103600083015261433d81613dc3565b9050919050565b6000602082019050818103600083015261435d81613e29565b9050919050565b6000602082019050818103600083015261437d81613e69565b9050919050565b6000602082019050818103600083015261439d81613ea9565b9050919050565b60006020820190506143b96000830184613f0f565b92915050565b6000604051905081810181811067ffffffffffffffff821117156143e6576143e56147a2565b5b8060405250919050565b600067ffffffffffffffff82111561440b5761440a6147a2565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561443b5761443a6147a2565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006144a98261461d565b91506144b48361461d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144e9576144e8614715565b5b828201905092915050565b60006144ff8261461d565b915061450a8361461d565b92508261451a57614519614744565b5b828204905092915050565b60006145308261461d565b915061453b8361461d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561457457614573614715565b5b828202905092915050565b600061458a8261461d565b91506145958361461d565b9250828210156145a8576145a7614715565b5b828203905092915050565b60006145be826145fd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614654578082015181840152602081019050614639565b83811115614663576000848401525b50505050565b6000600282049050600182168061468157607f821691505b6020821081141561469557614694614773565b5b50919050565b60006146a68261461d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146d9576146d8614715565b5b600182019050919050565b60006146ef8261461d565b91506146fa8361461d565b92508261470a57614709614744565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6147eb816145b3565b81146147f657600080fd5b50565b614802816145c5565b811461480d57600080fd5b50565b614819816145d1565b811461482457600080fd5b50565b6148308161461d565b811461483b57600080fd5b5056fea2646970667358221220b3b8f310d39592b28a30cee9850c3ba9f95976d2a1e309139786a40beae6754d64736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5a5256685a596e6b48555a56683465474538416833356432394a456e325948675133696f45556f73384b664a2f000000000000000000000000000000

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

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d5a5256685a596e6b48555a56683465474538416833356432394a456e
Arg [4] : 325948675133696f45556f73384b664a2f000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ 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.