ETH Price: $3,263.18 (-0.57%)
Gas: 2 Gwei

Token

Alpha Flyers (FLYER)
 

Overview

Max Total Supply

0 FLYER

Holders

296

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FLYER
0x925020bf82437c3d37b7Ea6a70Fb6a70D3983304
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:
AlphaFlyersNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : AlphaFlyersNFT.sol
// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

import { Base64 } from "./libraries/Base64.sol";

contract AlphaFlyersNFT is ERC721URIStorage, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    uint256 public immutable whitelistMintPrice = 0.15 ether;
    uint256 public immutable maxIds = 333;

    bool public whitelistMintState;

    mapping(address => uint256) public allowlist;
    uint256 public minted = 0;

    modifier whitelistOnly() {
        require(whitelistMintState, "Whitelist mint has not started yet.");
        _;
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    event NewAlphaFlyersNFTMinted(address sender, uint256 tokenId);

    constructor() ERC721("Alpha Flyers", "FLYER") {
        whitelistMintState = false;
    }

    function seedAllowlist(
        address[] memory addresses,
        uint256[] memory numSlots
    ) external onlyOwner {
        require(
            addresses.length == numSlots.length,
            "addresses does not match numSlots length"
        );
        for (uint256 i = 0; i < addresses.length; i++) {
            allowlist[addresses[i]] = numSlots[i];
        }
    }

    function devMint(uint256 quantity) external onlyOwner {
        for (uint256 i = 0; i < quantity; i++) {
            uint256 currentTokenIds = _tokenIds.current();

            string memory combinedTokenURI =
                string(abi.encodePacked("https://ipfs.io/ipfs/bafybeibwfqrtp6q4on4t7cdr55zx4j4uephpp6vswc4773uji32shjou4u/", Strings.toString(currentTokenIds), ".token.json"));
            
            _safeMint(msg.sender, currentTokenIds);
            _setTokenURI(currentTokenIds, combinedTokenURI);
            _tokenIds.increment();
            minted++;

            emit NewAlphaFlyersNFTMinted(msg.sender, currentTokenIds);
        }
    }

    function openWhiteListMint() public onlyOwner {
        whitelistMintState = true;
    }

    function closeWhiteListMint() public onlyOwner {
        whitelistMintState = false;
    }

    function whitelistMint() external payable callerIsUser whitelistOnly {
        require(whitelistMintState == true, "whitelist sale has not begun yet");

        // To check if the sender is whitelisted
        require(allowlist[msg.sender] > 0, "not eligible for whitelist mint");

        // To double check the mint price
        require(
            msg.value >= whitelistMintPrice,
            "change your mint price to 0.15 eth"
        );

        allowlist[msg.sender]--;

        uint256 currentTokenIds = _tokenIds.current();

        string memory combinedTokenURI =
            string(abi.encodePacked("https://ipfs.io/ipfs/bafybeibwfqrtp6q4on4t7cdr55zx4j4uephpp6vswc4773uji32shjou4u/", Strings.toString(currentTokenIds), ".token.json"));

        _safeMint(msg.sender, currentTokenIds);
        _setTokenURI(currentTokenIds, combinedTokenURI);
        _tokenIds.increment();
        minted++;
        emit NewAlphaFlyersNFTMinted(msg.sender, currentTokenIds);
    }

    function withdrawMoney() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

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

pragma solidity ^0.8.0;

import "../ERC721.sol";

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

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

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

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

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

        return super.tokenURI(tokenId);
    }

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

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

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

File 3 of 15 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 15 : 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 7 of 15 : Base64.sol
/**
 *Submitted for verification at Etherscan.io on 2021-09-05
 */

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Base64 {
    bytes internal constant TABLE =
        "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)
                )
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)
                )
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)
                )
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 12 of 15 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 13 of 15 : 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 14 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 15 of 15 : 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":[],"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":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"NewAlphaFlyersNFTMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeWhiteListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openWhiteListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"seedAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052670214e8348c4f000060809081525061014d60a0908152506000600c553480156200002e57600080fd5b506040518060400160405280600c81526020017f416c70686120466c7965727300000000000000000000000000000000000000008152506040518060400160405280600581526020017f464c5945520000000000000000000000000000000000000000000000000000008152508160009080519060200190620000b3929190620001e6565b508060019080519060200190620000cc929190620001e6565b505050620000ef620000e36200011860201b60201c565b6200012060201b60201c565b60016008819055506000600a60006101000a81548160ff021916908315150217905550620002fb565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001f49062000296565b90600052602060002090601f01602090048101928262000218576000855562000264565b82601f106200023357805160ff191683800117855562000264565b8280016001018555821562000264579182015b828111156200026357825182559160200191906001019062000246565b5b50905062000273919062000277565b5090565b5b808211156200029257600081600090555060010162000278565b5090565b60006002820490506001821680620002af57607f821691505b60208210811415620002c657620002c5620002cc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160a0516141ff62000328600039600061099a0152600081816109be0152610ed801526141ff6000f3fe60806040526004361061019c5760003560e01c8063804f43cd116100ec578063ac4460021161008a578063b88d4fde11610064578063b88d4fde1461055b578063c87b56dd14610584578063e985e9c5146105c1578063f2fde38b146105fe5761019c565b8063ac44600214610504578063b05863d51461051b578063b5c16e81146105445761019c565b806392dbe9a9116100c657806392dbe9a91461045c57806395d89b4114610473578063a22cb4651461049e578063a7cd52cb146104c75761019c565b8063804f43cd146103fc5780638da5cb5b14610406578063922400ff146104315761019c565b806335c6aaf8116101595780634f02c420116101335780634f02c420146103405780636352211e1461036b57806370a08231146103a8578063715018a6146103e55761019c565b806335c6aaf8146102c3578063375a069a146102ee57806342842e0e146103175761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806323b872dd1461026f57806327e18f0014610298575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612c0b565b610627565b6040516101d59190613243565b60405180910390f35b3480156101ea57600080fd5b506101f3610709565b604051610200919061325e565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612c5d565b61079b565b60405161023d91906131b3565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612b63565b610820565b005b34801561027b57600080fd5b5061029660048036038101906102919190612a5d565b610938565b005b3480156102a457600080fd5b506102ad610998565b6040516102ba91906135c0565b60405180910390f35b3480156102cf57600080fd5b506102d86109bc565b6040516102e591906135c0565b60405180910390f35b3480156102fa57600080fd5b5061031560048036038101906103109190612c5d565b6109e0565b005b34801561032357600080fd5b5061033e60048036038101906103399190612a5d565b610b29565b005b34801561034c57600080fd5b50610355610b49565b60405161036291906135c0565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190612c5d565b610b4f565b60405161039f91906131b3565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca91906129f8565b610c01565b6040516103dc91906135c0565b60405180910390f35b3480156103f157600080fd5b506103fa610cb9565b005b610404610d41565b005b34801561041257600080fd5b5061041b61103b565b60405161042891906131b3565b60405180910390f35b34801561043d57600080fd5b50610446611065565b6040516104539190613243565b60405180910390f35b34801561046857600080fd5b50610471611078565b005b34801561047f57600080fd5b50610488611111565b604051610495919061325e565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c09190612b27565b6111a3565b005b3480156104d357600080fd5b506104ee60048036038101906104e991906129f8565b6111b9565b6040516104fb91906135c0565b60405180910390f35b34801561051057600080fd5b506105196111d1565b005b34801561052757600080fd5b50610542600480360381019061053d9190612b9f565b611352565b005b34801561055057600080fd5b506105596114fa565b005b34801561056757600080fd5b50610582600480360381019061057d9190612aac565b611593565b005b34801561059057600080fd5b506105ab60048036038101906105a69190612c5d565b6115f5565b6040516105b8919061325e565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e39190612a21565b611747565b6040516105f59190613243565b60405180910390f35b34801561060a57600080fd5b50610625600480360381019061062091906129f8565b6117db565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107025750610701826118d3565b5b9050919050565b60606000805461071890613872565b80601f016020809104026020016040519081016040528092919081815260200182805461074490613872565b80156107915780601f1061076657610100808354040283529160200191610791565b820191906000526020600020905b81548152906001019060200180831161077457829003601f168201915b5050505050905090565b60006107a68261193d565b6107e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107dc906134a0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061082b82610b4f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561089c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089390613520565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108bb6119a9565b73ffffffffffffffffffffffffffffffffffffffff1614806108ea57506108e9816108e46119a9565b611747565b5b610929576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610920906133e0565b60405180910390fd5b61093383836119b1565b505050565b6109496109436119a9565b82611a6a565b610988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097f90613560565b60405180910390fd5b610993838383611b48565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b6109e86119a9565b73ffffffffffffffffffffffffffffffffffffffff16610a0661103b565b73ffffffffffffffffffffffffffffffffffffffff1614610a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a53906134c0565b60405180910390fd5b60005b81811015610b25576000610a736009611daf565b90506000610a8082611dbd565b604051602001610a909190613186565b6040516020818303038152906040529050610aab3383611f6a565b610ab58282611f88565b610abf6009611ffc565b600c6000815480929190610ad2906138d5565b91905055507f9562219d8ea958f10d3996f62dbd348f63dfed6a765808b9c53b2f47594663ae3383604051610b0892919061321a565b60405180910390a150508080610b1d906138d5565b915050610a5f565b5050565b610b4483838360405180602001604052806000815250611593565b505050565b600c5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bef90613420565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6990613400565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cc16119a9565b73ffffffffffffffffffffffffffffffffffffffff16610cdf61103b565b73ffffffffffffffffffffffffffffffffffffffff1614610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c906134c0565b60405180910390fd5b610d3f6000612012565b565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da6906133c0565b60405180910390fd5b600a60009054906101000a900460ff16610dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df590613320565b60405180910390fd5b60011515600a60009054906101000a900460ff16151514610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b906132a0565b60405180910390fd5b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecd90613500565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000341015610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090613380565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610f8990613848565b91905055506000610f9a6009611daf565b90506000610fa782611dbd565b604051602001610fb79190613186565b6040516020818303038152906040529050610fd23383611f6a565b610fdc8282611f88565b610fe66009611ffc565b600c6000815480929190610ff9906138d5565b91905055507f9562219d8ea958f10d3996f62dbd348f63dfed6a765808b9c53b2f47594663ae338360405161102f92919061321a565b60405180910390a15050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900460ff1681565b6110806119a9565b73ffffffffffffffffffffffffffffffffffffffff1661109e61103b565b73ffffffffffffffffffffffffffffffffffffffff16146110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb906134c0565b60405180910390fd5b6000600a60006101000a81548160ff021916908315150217905550565b60606001805461112090613872565b80601f016020809104026020016040519081016040528092919081815260200182805461114c90613872565b80156111995780601f1061116e57610100808354040283529160200191611199565b820191906000526020600020905b81548152906001019060200180831161117c57829003601f168201915b5050505050905090565b6111b56111ae6119a9565b83836120d8565b5050565b600b6020528060005260406000206000915090505481565b6111d96119a9565b73ffffffffffffffffffffffffffffffffffffffff166111f761103b565b73ffffffffffffffffffffffffffffffffffffffff161461124d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611244906134c0565b60405180910390fd5b60026008541415611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90613580565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516112c190613171565b60006040518083038185875af1925050503d80600081146112fe576040519150601f19603f3d011682016040523d82523d6000602084013e611303565b606091505b5050905080611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e90613540565b60405180910390fd5b506001600881905550565b61135a6119a9565b73ffffffffffffffffffffffffffffffffffffffff1661137861103b565b73ffffffffffffffffffffffffffffffffffffffff16146113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c5906134c0565b60405180910390fd5b8051825114611412576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611409906135a0565b60405180910390fd5b60005b82518110156114f557818181518110611457577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600b600085848151811061149c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806114ed906138d5565b915050611415565b505050565b6115026119a9565b73ffffffffffffffffffffffffffffffffffffffff1661152061103b565b73ffffffffffffffffffffffffffffffffffffffff1614611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d906134c0565b60405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550565b6115a461159e6119a9565b83611a6a565b6115e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115da90613560565b60405180910390fd5b6115ef84848484612245565b50505050565b60606116008261193d565b61163f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163690613480565b60405180910390fd5b600060066000848152602001908152602001600020805461165f90613872565b80601f016020809104026020016040519081016040528092919081815260200182805461168b90613872565b80156116d85780601f106116ad576101008083540402835291602001916116d8565b820191906000526020600020905b8154815290600101906020018083116116bb57829003601f168201915b5050505050905060006116e96122a1565b90506000815114156116ff578192505050611742565b60008251111561173457808260405160200161171c92919061314d565b60405160208183030381529060405292505050611742565b61173d846122b8565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117e36119a9565b73ffffffffffffffffffffffffffffffffffffffff1661180161103b565b73ffffffffffffffffffffffffffffffffffffffff1614611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e906134c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be906132c0565b60405180910390fd5b6118d081612012565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a2483610b4f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a758261193d565b611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab906133a0565b60405180910390fd5b6000611abf83610b4f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b2e57508373ffffffffffffffffffffffffffffffffffffffff16611b168461079b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b3f5750611b3e8185611747565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b6882610b4f565b73ffffffffffffffffffffffffffffffffffffffff1614611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb5906132e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2590613340565b60405180910390fd5b611c3983838361235f565b611c446000826119b1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c94919061375e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ceb91906136d7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611daa838383612364565b505050565b600081600001549050919050565b60606000821415611e05576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f65565b600082905060005b60008214611e37578080611e20906138d5565b915050600a82611e30919061372d565b9150611e0d565b60008167ffffffffffffffff811115611e79577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611eab5781602001600182028036833780820191505090505b5090505b60008514611f5e57600182611ec4919061375e565b9150600a85611ed3919061391e565b6030611edf91906136d7565b60f81b818381518110611f1b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f57919061372d565b9450611eaf565b8093505050505b919050565b611f84828260405180602001604052806000815250612369565b5050565b611f918261193d565b611fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc790613440565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611ff7929190612758565b505050565b6001816000016000828254019250508190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213e90613360565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122389190613243565b60405180910390a3505050565b612250848484611b48565b61225c848484846123c4565b61229b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229290613280565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b60606122c38261193d565b612302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f9906134e0565b60405180910390fd5b600061230c6122a1565b9050600081511161232c5760405180602001604052806000815250612357565b8061233684611dbd565b60405160200161234792919061314d565b6040516020818303038152906040525b915050919050565b505050565b505050565b612373838361255b565b61238060008484846123c4565b6123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b690613280565b60405180910390fd5b505050565b60006123e58473ffffffffffffffffffffffffffffffffffffffff16612735565b1561254e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261240e6119a9565b8786866040518563ffffffff1660e01b815260040161243094939291906131ce565b602060405180830381600087803b15801561244a57600080fd5b505af192505050801561247b57506040513d601f19601f820116820180604052508101906124789190612c34565b60015b6124fe573d80600081146124ab576040519150601f19603f3d011682016040523d82523d6000602084013e6124b0565b606091505b506000815114156124f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ed90613280565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612553565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c290613460565b60405180910390fd5b6125d48161193d565b15612614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260b90613300565b60405180910390fd5b6126206000838361235f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461267091906136d7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461273160008383612364565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461276490613872565b90600052602060002090601f01602090048101928261278657600085556127cd565b82601f1061279f57805160ff19168380011785556127cd565b828001600101855582156127cd579182015b828111156127cc5782518255916020019190600101906127b1565b5b5090506127da91906127de565b5090565b5b808211156127f75760008160009055506001016127df565b5090565b600061280e61280984613600565b6135db565b9050808382526020820190508285602086028201111561282d57600080fd5b60005b8581101561285d57816128438882612911565b845260208401935060208301925050600181019050612830565b5050509392505050565b600061287a6128758461362c565b6135db565b9050808382526020820190508285602086028201111561289957600080fd5b60005b858110156128c957816128af88826129e3565b84526020840193506020830192505060018101905061289c565b5050509392505050565b60006128e66128e184613658565b6135db565b9050828152602081018484840111156128fe57600080fd5b612909848285613806565b509392505050565b6000813590506129208161416d565b92915050565b600082601f83011261293757600080fd5b81356129478482602086016127fb565b91505092915050565b600082601f83011261296157600080fd5b8135612971848260208601612867565b91505092915050565b60008135905061298981614184565b92915050565b60008135905061299e8161419b565b92915050565b6000815190506129b38161419b565b92915050565b600082601f8301126129ca57600080fd5b81356129da8482602086016128d3565b91505092915050565b6000813590506129f2816141b2565b92915050565b600060208284031215612a0a57600080fd5b6000612a1884828501612911565b91505092915050565b60008060408385031215612a3457600080fd5b6000612a4285828601612911565b9250506020612a5385828601612911565b9150509250929050565b600080600060608486031215612a7257600080fd5b6000612a8086828701612911565b9350506020612a9186828701612911565b9250506040612aa2868287016129e3565b9150509250925092565b60008060008060808587031215612ac257600080fd5b6000612ad087828801612911565b9450506020612ae187828801612911565b9350506040612af2878288016129e3565b925050606085013567ffffffffffffffff811115612b0f57600080fd5b612b1b878288016129b9565b91505092959194509250565b60008060408385031215612b3a57600080fd5b6000612b4885828601612911565b9250506020612b598582860161297a565b9150509250929050565b60008060408385031215612b7657600080fd5b6000612b8485828601612911565b9250506020612b95858286016129e3565b9150509250929050565b60008060408385031215612bb257600080fd5b600083013567ffffffffffffffff811115612bcc57600080fd5b612bd885828601612926565b925050602083013567ffffffffffffffff811115612bf557600080fd5b612c0185828601612950565b9150509250929050565b600060208284031215612c1d57600080fd5b6000612c2b8482850161298f565b91505092915050565b600060208284031215612c4657600080fd5b6000612c54848285016129a4565b91505092915050565b600060208284031215612c6f57600080fd5b6000612c7d848285016129e3565b91505092915050565b612c8f81613792565b82525050565b612c9e816137a4565b82525050565b6000612caf82613689565b612cb9818561369f565b9350612cc9818560208601613815565b612cd281613a0b565b840191505092915050565b6000612ce882613694565b612cf281856136bb565b9350612d02818560208601613815565b612d0b81613a0b565b840191505092915050565b6000612d2182613694565b612d2b81856136cc565b9350612d3b818560208601613815565b80840191505092915050565b6000612d546032836136bb565b9150612d5f82613a1c565b604082019050919050565b6000612d776020836136bb565b9150612d8282613a6b565b602082019050919050565b6000612d9a6026836136bb565b9150612da582613a94565b604082019050919050565b6000612dbd6025836136bb565b9150612dc882613ae3565b604082019050919050565b6000612de0601c836136bb565b9150612deb82613b32565b602082019050919050565b6000612e036023836136bb565b9150612e0e82613b5b565b604082019050919050565b6000612e266024836136bb565b9150612e3182613baa565b604082019050919050565b6000612e496019836136bb565b9150612e5482613bf9565b602082019050919050565b6000612e6c6022836136bb565b9150612e7782613c22565b604082019050919050565b6000612e8f602c836136bb565b9150612e9a82613c71565b604082019050919050565b6000612eb2601e836136bb565b9150612ebd82613cc0565b602082019050919050565b6000612ed56038836136bb565b9150612ee082613ce9565b604082019050919050565b6000612ef8602a836136bb565b9150612f0382613d38565b604082019050919050565b6000612f1b6029836136bb565b9150612f2682613d87565b604082019050919050565b6000612f3e602e836136bb565b9150612f4982613dd6565b604082019050919050565b6000612f616020836136bb565b9150612f6c82613e25565b602082019050919050565b6000612f846031836136bb565b9150612f8f82613e4e565b604082019050919050565b6000612fa7602c836136bb565b9150612fb282613e9d565b604082019050919050565b6000612fca6020836136bb565b9150612fd582613eec565b602082019050919050565b6000612fed602f836136bb565b9150612ff882613f15565b604082019050919050565b6000613010601f836136bb565b915061301b82613f64565b602082019050919050565b60006130336021836136bb565b915061303e82613f8d565b604082019050919050565b6000613056600b836136cc565b915061306182613fdc565b600b82019050919050565b60006130796000836136b0565b915061308482614005565b600082019050919050565b600061309c6010836136bb565b91506130a782614008565b602082019050919050565b60006130bf6031836136bb565b91506130ca82614031565b604082019050919050565b60006130e26051836136cc565b91506130ed82614080565b605182019050919050565b6000613105601f836136bb565b9150613110826140f5565b602082019050919050565b60006131286028836136bb565b91506131338261411e565b604082019050919050565b613147816137fc565b82525050565b60006131598285612d16565b91506131658284612d16565b91508190509392505050565b600061317c8261306c565b9150819050919050565b6000613191826130d5565b915061319d8284612d16565b91506131a882613049565b915081905092915050565b60006020820190506131c86000830184612c86565b92915050565b60006080820190506131e36000830187612c86565b6131f06020830186612c86565b6131fd604083018561313e565b818103606083015261320f8184612ca4565b905095945050505050565b600060408201905061322f6000830185612c86565b61323c602083018461313e565b9392505050565b60006020820190506132586000830184612c95565b92915050565b600060208201905081810360008301526132788184612cdd565b905092915050565b6000602082019050818103600083015261329981612d47565b9050919050565b600060208201905081810360008301526132b981612d6a565b9050919050565b600060208201905081810360008301526132d981612d8d565b9050919050565b600060208201905081810360008301526132f981612db0565b9050919050565b6000602082019050818103600083015261331981612dd3565b9050919050565b6000602082019050818103600083015261333981612df6565b9050919050565b6000602082019050818103600083015261335981612e19565b9050919050565b6000602082019050818103600083015261337981612e3c565b9050919050565b6000602082019050818103600083015261339981612e5f565b9050919050565b600060208201905081810360008301526133b981612e82565b9050919050565b600060208201905081810360008301526133d981612ea5565b9050919050565b600060208201905081810360008301526133f981612ec8565b9050919050565b6000602082019050818103600083015261341981612eeb565b9050919050565b6000602082019050818103600083015261343981612f0e565b9050919050565b6000602082019050818103600083015261345981612f31565b9050919050565b6000602082019050818103600083015261347981612f54565b9050919050565b6000602082019050818103600083015261349981612f77565b9050919050565b600060208201905081810360008301526134b981612f9a565b9050919050565b600060208201905081810360008301526134d981612fbd565b9050919050565b600060208201905081810360008301526134f981612fe0565b9050919050565b6000602082019050818103600083015261351981613003565b9050919050565b6000602082019050818103600083015261353981613026565b9050919050565b600060208201905081810360008301526135598161308f565b9050919050565b60006020820190508181036000830152613579816130b2565b9050919050565b60006020820190508181036000830152613599816130f8565b9050919050565b600060208201905081810360008301526135b98161311b565b9050919050565b60006020820190506135d5600083018461313e565b92915050565b60006135e56135f6565b90506135f182826138a4565b919050565b6000604051905090565b600067ffffffffffffffff82111561361b5761361a6139dc565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613647576136466139dc565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613673576136726139dc565b5b61367c82613a0b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136e2826137fc565b91506136ed836137fc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137225761372161394f565b5b828201905092915050565b6000613738826137fc565b9150613743836137fc565b9250826137535761375261397e565b5b828204905092915050565b6000613769826137fc565b9150613774836137fc565b9250828210156137875761378661394f565b5b828203905092915050565b600061379d826137dc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613833578082015181840152602081019050613818565b83811115613842576000848401525b50505050565b6000613853826137fc565b915060008214156138675761386661394f565b5b600182039050919050565b6000600282049050600182168061388a57607f821691505b6020821081141561389e5761389d6139ad565b5b50919050565b6138ad82613a0b565b810181811067ffffffffffffffff821117156138cc576138cb6139dc565b5b80604052505050565b60006138e0826137fc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139135761391261394f565b5b600182019050919050565b6000613929826137fc565b9150613934836137fc565b9250826139445761394361397e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f77686974656c6973742073616c6520686173206e6f7420626567756e20796574600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f57686974656c697374206d696e7420686173206e6f742073746172746564207960008201527f65742e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6368616e676520796f7572206d696e7420707269636520746f20302e3135206560008201527f7468000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6e6f7420656c696769626c6520666f722077686974656c697374206d696e7400600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f2e746f6b656e2e6a736f6e000000000000000000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f68747470733a2f2f697066732e696f2f697066732f626166796265696277667160008201527f7274703671346f6e34743763647235357a78346a34756570687070367673776360208201527f34373733756a69333273686a6f7534752f000000000000000000000000000000604082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f7460008201527f73206c656e677468000000000000000000000000000000000000000000000000602082015250565b61417681613792565b811461418157600080fd5b50565b61418d816137a4565b811461419857600080fd5b50565b6141a4816137b0565b81146141af57600080fd5b50565b6141bb816137fc565b81146141c657600080fd5b5056fea2646970667358221220b47dfbfd5a04cf88659abcff7986bcc6168d7afe1f0a871822c4e33a44ea279d64736f6c63430008040033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c8063804f43cd116100ec578063ac4460021161008a578063b88d4fde11610064578063b88d4fde1461055b578063c87b56dd14610584578063e985e9c5146105c1578063f2fde38b146105fe5761019c565b8063ac44600214610504578063b05863d51461051b578063b5c16e81146105445761019c565b806392dbe9a9116100c657806392dbe9a91461045c57806395d89b4114610473578063a22cb4651461049e578063a7cd52cb146104c75761019c565b8063804f43cd146103fc5780638da5cb5b14610406578063922400ff146104315761019c565b806335c6aaf8116101595780634f02c420116101335780634f02c420146103405780636352211e1461036b57806370a08231146103a8578063715018a6146103e55761019c565b806335c6aaf8146102c3578063375a069a146102ee57806342842e0e146103175761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806323b872dd1461026f57806327e18f0014610298575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612c0b565b610627565b6040516101d59190613243565b60405180910390f35b3480156101ea57600080fd5b506101f3610709565b604051610200919061325e565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612c5d565b61079b565b60405161023d91906131b3565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612b63565b610820565b005b34801561027b57600080fd5b5061029660048036038101906102919190612a5d565b610938565b005b3480156102a457600080fd5b506102ad610998565b6040516102ba91906135c0565b60405180910390f35b3480156102cf57600080fd5b506102d86109bc565b6040516102e591906135c0565b60405180910390f35b3480156102fa57600080fd5b5061031560048036038101906103109190612c5d565b6109e0565b005b34801561032357600080fd5b5061033e60048036038101906103399190612a5d565b610b29565b005b34801561034c57600080fd5b50610355610b49565b60405161036291906135c0565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190612c5d565b610b4f565b60405161039f91906131b3565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca91906129f8565b610c01565b6040516103dc91906135c0565b60405180910390f35b3480156103f157600080fd5b506103fa610cb9565b005b610404610d41565b005b34801561041257600080fd5b5061041b61103b565b60405161042891906131b3565b60405180910390f35b34801561043d57600080fd5b50610446611065565b6040516104539190613243565b60405180910390f35b34801561046857600080fd5b50610471611078565b005b34801561047f57600080fd5b50610488611111565b604051610495919061325e565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c09190612b27565b6111a3565b005b3480156104d357600080fd5b506104ee60048036038101906104e991906129f8565b6111b9565b6040516104fb91906135c0565b60405180910390f35b34801561051057600080fd5b506105196111d1565b005b34801561052757600080fd5b50610542600480360381019061053d9190612b9f565b611352565b005b34801561055057600080fd5b506105596114fa565b005b34801561056757600080fd5b50610582600480360381019061057d9190612aac565b611593565b005b34801561059057600080fd5b506105ab60048036038101906105a69190612c5d565b6115f5565b6040516105b8919061325e565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e39190612a21565b611747565b6040516105f59190613243565b60405180910390f35b34801561060a57600080fd5b50610625600480360381019061062091906129f8565b6117db565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107025750610701826118d3565b5b9050919050565b60606000805461071890613872565b80601f016020809104026020016040519081016040528092919081815260200182805461074490613872565b80156107915780601f1061076657610100808354040283529160200191610791565b820191906000526020600020905b81548152906001019060200180831161077457829003601f168201915b5050505050905090565b60006107a68261193d565b6107e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107dc906134a0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061082b82610b4f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561089c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089390613520565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108bb6119a9565b73ffffffffffffffffffffffffffffffffffffffff1614806108ea57506108e9816108e46119a9565b611747565b5b610929576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610920906133e0565b60405180910390fd5b61093383836119b1565b505050565b6109496109436119a9565b82611a6a565b610988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097f90613560565b60405180910390fd5b610993838383611b48565b505050565b7f000000000000000000000000000000000000000000000000000000000000014d81565b7f0000000000000000000000000000000000000000000000000214e8348c4f000081565b6109e86119a9565b73ffffffffffffffffffffffffffffffffffffffff16610a0661103b565b73ffffffffffffffffffffffffffffffffffffffff1614610a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a53906134c0565b60405180910390fd5b60005b81811015610b25576000610a736009611daf565b90506000610a8082611dbd565b604051602001610a909190613186565b6040516020818303038152906040529050610aab3383611f6a565b610ab58282611f88565b610abf6009611ffc565b600c6000815480929190610ad2906138d5565b91905055507f9562219d8ea958f10d3996f62dbd348f63dfed6a765808b9c53b2f47594663ae3383604051610b0892919061321a565b60405180910390a150508080610b1d906138d5565b915050610a5f565b5050565b610b4483838360405180602001604052806000815250611593565b505050565b600c5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bef90613420565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6990613400565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cc16119a9565b73ffffffffffffffffffffffffffffffffffffffff16610cdf61103b565b73ffffffffffffffffffffffffffffffffffffffff1614610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c906134c0565b60405180910390fd5b610d3f6000612012565b565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da6906133c0565b60405180910390fd5b600a60009054906101000a900460ff16610dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df590613320565b60405180910390fd5b60011515600a60009054906101000a900460ff16151514610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b906132a0565b60405180910390fd5b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecd90613500565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000214e8348c4f0000341015610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090613380565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610f8990613848565b91905055506000610f9a6009611daf565b90506000610fa782611dbd565b604051602001610fb79190613186565b6040516020818303038152906040529050610fd23383611f6a565b610fdc8282611f88565b610fe66009611ffc565b600c6000815480929190610ff9906138d5565b91905055507f9562219d8ea958f10d3996f62dbd348f63dfed6a765808b9c53b2f47594663ae338360405161102f92919061321a565b60405180910390a15050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900460ff1681565b6110806119a9565b73ffffffffffffffffffffffffffffffffffffffff1661109e61103b565b73ffffffffffffffffffffffffffffffffffffffff16146110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb906134c0565b60405180910390fd5b6000600a60006101000a81548160ff021916908315150217905550565b60606001805461112090613872565b80601f016020809104026020016040519081016040528092919081815260200182805461114c90613872565b80156111995780601f1061116e57610100808354040283529160200191611199565b820191906000526020600020905b81548152906001019060200180831161117c57829003601f168201915b5050505050905090565b6111b56111ae6119a9565b83836120d8565b5050565b600b6020528060005260406000206000915090505481565b6111d96119a9565b73ffffffffffffffffffffffffffffffffffffffff166111f761103b565b73ffffffffffffffffffffffffffffffffffffffff161461124d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611244906134c0565b60405180910390fd5b60026008541415611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90613580565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516112c190613171565b60006040518083038185875af1925050503d80600081146112fe576040519150601f19603f3d011682016040523d82523d6000602084013e611303565b606091505b5050905080611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e90613540565b60405180910390fd5b506001600881905550565b61135a6119a9565b73ffffffffffffffffffffffffffffffffffffffff1661137861103b565b73ffffffffffffffffffffffffffffffffffffffff16146113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c5906134c0565b60405180910390fd5b8051825114611412576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611409906135a0565b60405180910390fd5b60005b82518110156114f557818181518110611457577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600b600085848151811061149c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806114ed906138d5565b915050611415565b505050565b6115026119a9565b73ffffffffffffffffffffffffffffffffffffffff1661152061103b565b73ffffffffffffffffffffffffffffffffffffffff1614611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d906134c0565b60405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550565b6115a461159e6119a9565b83611a6a565b6115e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115da90613560565b60405180910390fd5b6115ef84848484612245565b50505050565b60606116008261193d565b61163f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163690613480565b60405180910390fd5b600060066000848152602001908152602001600020805461165f90613872565b80601f016020809104026020016040519081016040528092919081815260200182805461168b90613872565b80156116d85780601f106116ad576101008083540402835291602001916116d8565b820191906000526020600020905b8154815290600101906020018083116116bb57829003601f168201915b5050505050905060006116e96122a1565b90506000815114156116ff578192505050611742565b60008251111561173457808260405160200161171c92919061314d565b60405160208183030381529060405292505050611742565b61173d846122b8565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117e36119a9565b73ffffffffffffffffffffffffffffffffffffffff1661180161103b565b73ffffffffffffffffffffffffffffffffffffffff1614611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e906134c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be906132c0565b60405180910390fd5b6118d081612012565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a2483610b4f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a758261193d565b611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab906133a0565b60405180910390fd5b6000611abf83610b4f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b2e57508373ffffffffffffffffffffffffffffffffffffffff16611b168461079b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b3f5750611b3e8185611747565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b6882610b4f565b73ffffffffffffffffffffffffffffffffffffffff1614611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb5906132e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2590613340565b60405180910390fd5b611c3983838361235f565b611c446000826119b1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c94919061375e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ceb91906136d7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611daa838383612364565b505050565b600081600001549050919050565b60606000821415611e05576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f65565b600082905060005b60008214611e37578080611e20906138d5565b915050600a82611e30919061372d565b9150611e0d565b60008167ffffffffffffffff811115611e79577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611eab5781602001600182028036833780820191505090505b5090505b60008514611f5e57600182611ec4919061375e565b9150600a85611ed3919061391e565b6030611edf91906136d7565b60f81b818381518110611f1b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f57919061372d565b9450611eaf565b8093505050505b919050565b611f84828260405180602001604052806000815250612369565b5050565b611f918261193d565b611fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc790613440565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611ff7929190612758565b505050565b6001816000016000828254019250508190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213e90613360565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122389190613243565b60405180910390a3505050565b612250848484611b48565b61225c848484846123c4565b61229b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229290613280565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b60606122c38261193d565b612302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f9906134e0565b60405180910390fd5b600061230c6122a1565b9050600081511161232c5760405180602001604052806000815250612357565b8061233684611dbd565b60405160200161234792919061314d565b6040516020818303038152906040525b915050919050565b505050565b505050565b612373838361255b565b61238060008484846123c4565b6123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b690613280565b60405180910390fd5b505050565b60006123e58473ffffffffffffffffffffffffffffffffffffffff16612735565b1561254e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261240e6119a9565b8786866040518563ffffffff1660e01b815260040161243094939291906131ce565b602060405180830381600087803b15801561244a57600080fd5b505af192505050801561247b57506040513d601f19601f820116820180604052508101906124789190612c34565b60015b6124fe573d80600081146124ab576040519150601f19603f3d011682016040523d82523d6000602084013e6124b0565b606091505b506000815114156124f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ed90613280565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612553565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c290613460565b60405180910390fd5b6125d48161193d565b15612614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260b90613300565b60405180910390fd5b6126206000838361235f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461267091906136d7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461273160008383612364565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461276490613872565b90600052602060002090601f01602090048101928261278657600085556127cd565b82601f1061279f57805160ff19168380011785556127cd565b828001600101855582156127cd579182015b828111156127cc5782518255916020019190600101906127b1565b5b5090506127da91906127de565b5090565b5b808211156127f75760008160009055506001016127df565b5090565b600061280e61280984613600565b6135db565b9050808382526020820190508285602086028201111561282d57600080fd5b60005b8581101561285d57816128438882612911565b845260208401935060208301925050600181019050612830565b5050509392505050565b600061287a6128758461362c565b6135db565b9050808382526020820190508285602086028201111561289957600080fd5b60005b858110156128c957816128af88826129e3565b84526020840193506020830192505060018101905061289c565b5050509392505050565b60006128e66128e184613658565b6135db565b9050828152602081018484840111156128fe57600080fd5b612909848285613806565b509392505050565b6000813590506129208161416d565b92915050565b600082601f83011261293757600080fd5b81356129478482602086016127fb565b91505092915050565b600082601f83011261296157600080fd5b8135612971848260208601612867565b91505092915050565b60008135905061298981614184565b92915050565b60008135905061299e8161419b565b92915050565b6000815190506129b38161419b565b92915050565b600082601f8301126129ca57600080fd5b81356129da8482602086016128d3565b91505092915050565b6000813590506129f2816141b2565b92915050565b600060208284031215612a0a57600080fd5b6000612a1884828501612911565b91505092915050565b60008060408385031215612a3457600080fd5b6000612a4285828601612911565b9250506020612a5385828601612911565b9150509250929050565b600080600060608486031215612a7257600080fd5b6000612a8086828701612911565b9350506020612a9186828701612911565b9250506040612aa2868287016129e3565b9150509250925092565b60008060008060808587031215612ac257600080fd5b6000612ad087828801612911565b9450506020612ae187828801612911565b9350506040612af2878288016129e3565b925050606085013567ffffffffffffffff811115612b0f57600080fd5b612b1b878288016129b9565b91505092959194509250565b60008060408385031215612b3a57600080fd5b6000612b4885828601612911565b9250506020612b598582860161297a565b9150509250929050565b60008060408385031215612b7657600080fd5b6000612b8485828601612911565b9250506020612b95858286016129e3565b9150509250929050565b60008060408385031215612bb257600080fd5b600083013567ffffffffffffffff811115612bcc57600080fd5b612bd885828601612926565b925050602083013567ffffffffffffffff811115612bf557600080fd5b612c0185828601612950565b9150509250929050565b600060208284031215612c1d57600080fd5b6000612c2b8482850161298f565b91505092915050565b600060208284031215612c4657600080fd5b6000612c54848285016129a4565b91505092915050565b600060208284031215612c6f57600080fd5b6000612c7d848285016129e3565b91505092915050565b612c8f81613792565b82525050565b612c9e816137a4565b82525050565b6000612caf82613689565b612cb9818561369f565b9350612cc9818560208601613815565b612cd281613a0b565b840191505092915050565b6000612ce882613694565b612cf281856136bb565b9350612d02818560208601613815565b612d0b81613a0b565b840191505092915050565b6000612d2182613694565b612d2b81856136cc565b9350612d3b818560208601613815565b80840191505092915050565b6000612d546032836136bb565b9150612d5f82613a1c565b604082019050919050565b6000612d776020836136bb565b9150612d8282613a6b565b602082019050919050565b6000612d9a6026836136bb565b9150612da582613a94565b604082019050919050565b6000612dbd6025836136bb565b9150612dc882613ae3565b604082019050919050565b6000612de0601c836136bb565b9150612deb82613b32565b602082019050919050565b6000612e036023836136bb565b9150612e0e82613b5b565b604082019050919050565b6000612e266024836136bb565b9150612e3182613baa565b604082019050919050565b6000612e496019836136bb565b9150612e5482613bf9565b602082019050919050565b6000612e6c6022836136bb565b9150612e7782613c22565b604082019050919050565b6000612e8f602c836136bb565b9150612e9a82613c71565b604082019050919050565b6000612eb2601e836136bb565b9150612ebd82613cc0565b602082019050919050565b6000612ed56038836136bb565b9150612ee082613ce9565b604082019050919050565b6000612ef8602a836136bb565b9150612f0382613d38565b604082019050919050565b6000612f1b6029836136bb565b9150612f2682613d87565b604082019050919050565b6000612f3e602e836136bb565b9150612f4982613dd6565b604082019050919050565b6000612f616020836136bb565b9150612f6c82613e25565b602082019050919050565b6000612f846031836136bb565b9150612f8f82613e4e565b604082019050919050565b6000612fa7602c836136bb565b9150612fb282613e9d565b604082019050919050565b6000612fca6020836136bb565b9150612fd582613eec565b602082019050919050565b6000612fed602f836136bb565b9150612ff882613f15565b604082019050919050565b6000613010601f836136bb565b915061301b82613f64565b602082019050919050565b60006130336021836136bb565b915061303e82613f8d565b604082019050919050565b6000613056600b836136cc565b915061306182613fdc565b600b82019050919050565b60006130796000836136b0565b915061308482614005565b600082019050919050565b600061309c6010836136bb565b91506130a782614008565b602082019050919050565b60006130bf6031836136bb565b91506130ca82614031565b604082019050919050565b60006130e26051836136cc565b91506130ed82614080565b605182019050919050565b6000613105601f836136bb565b9150613110826140f5565b602082019050919050565b60006131286028836136bb565b91506131338261411e565b604082019050919050565b613147816137fc565b82525050565b60006131598285612d16565b91506131658284612d16565b91508190509392505050565b600061317c8261306c565b9150819050919050565b6000613191826130d5565b915061319d8284612d16565b91506131a882613049565b915081905092915050565b60006020820190506131c86000830184612c86565b92915050565b60006080820190506131e36000830187612c86565b6131f06020830186612c86565b6131fd604083018561313e565b818103606083015261320f8184612ca4565b905095945050505050565b600060408201905061322f6000830185612c86565b61323c602083018461313e565b9392505050565b60006020820190506132586000830184612c95565b92915050565b600060208201905081810360008301526132788184612cdd565b905092915050565b6000602082019050818103600083015261329981612d47565b9050919050565b600060208201905081810360008301526132b981612d6a565b9050919050565b600060208201905081810360008301526132d981612d8d565b9050919050565b600060208201905081810360008301526132f981612db0565b9050919050565b6000602082019050818103600083015261331981612dd3565b9050919050565b6000602082019050818103600083015261333981612df6565b9050919050565b6000602082019050818103600083015261335981612e19565b9050919050565b6000602082019050818103600083015261337981612e3c565b9050919050565b6000602082019050818103600083015261339981612e5f565b9050919050565b600060208201905081810360008301526133b981612e82565b9050919050565b600060208201905081810360008301526133d981612ea5565b9050919050565b600060208201905081810360008301526133f981612ec8565b9050919050565b6000602082019050818103600083015261341981612eeb565b9050919050565b6000602082019050818103600083015261343981612f0e565b9050919050565b6000602082019050818103600083015261345981612f31565b9050919050565b6000602082019050818103600083015261347981612f54565b9050919050565b6000602082019050818103600083015261349981612f77565b9050919050565b600060208201905081810360008301526134b981612f9a565b9050919050565b600060208201905081810360008301526134d981612fbd565b9050919050565b600060208201905081810360008301526134f981612fe0565b9050919050565b6000602082019050818103600083015261351981613003565b9050919050565b6000602082019050818103600083015261353981613026565b9050919050565b600060208201905081810360008301526135598161308f565b9050919050565b60006020820190508181036000830152613579816130b2565b9050919050565b60006020820190508181036000830152613599816130f8565b9050919050565b600060208201905081810360008301526135b98161311b565b9050919050565b60006020820190506135d5600083018461313e565b92915050565b60006135e56135f6565b90506135f182826138a4565b919050565b6000604051905090565b600067ffffffffffffffff82111561361b5761361a6139dc565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613647576136466139dc565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613673576136726139dc565b5b61367c82613a0b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136e2826137fc565b91506136ed836137fc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137225761372161394f565b5b828201905092915050565b6000613738826137fc565b9150613743836137fc565b9250826137535761375261397e565b5b828204905092915050565b6000613769826137fc565b9150613774836137fc565b9250828210156137875761378661394f565b5b828203905092915050565b600061379d826137dc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613833578082015181840152602081019050613818565b83811115613842576000848401525b50505050565b6000613853826137fc565b915060008214156138675761386661394f565b5b600182039050919050565b6000600282049050600182168061388a57607f821691505b6020821081141561389e5761389d6139ad565b5b50919050565b6138ad82613a0b565b810181811067ffffffffffffffff821117156138cc576138cb6139dc565b5b80604052505050565b60006138e0826137fc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139135761391261394f565b5b600182019050919050565b6000613929826137fc565b9150613934836137fc565b9250826139445761394361397e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f77686974656c6973742073616c6520686173206e6f7420626567756e20796574600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f57686974656c697374206d696e7420686173206e6f742073746172746564207960008201527f65742e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6368616e676520796f7572206d696e7420707269636520746f20302e3135206560008201527f7468000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6e6f7420656c696769626c6520666f722077686974656c697374206d696e7400600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f2e746f6b656e2e6a736f6e000000000000000000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f68747470733a2f2f697066732e696f2f697066732f626166796265696277667160008201527f7274703671346f6e34743763647235357a78346a34756570687070367673776360208201527f34373733756a69333273686a6f7534752f000000000000000000000000000000604082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f7460008201527f73206c656e677468000000000000000000000000000000000000000000000000602082015250565b61417681613792565b811461418157600080fd5b50565b61418d816137a4565b811461419857600080fd5b50565b6141a4816137b0565b81146141af57600080fd5b50565b6141bb816137fc565b81146141c657600080fd5b5056fea2646970667358221220b47dfbfd5a04cf88659abcff7986bcc6168d7afe1f0a871822c4e33a44ea279d64736f6c63430008040033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.