ETH Price: $3,409.27 (-1.79%)
Gas: 16 Gwei

Token

Blood Moon (BLOOD)
 

Overview

Max Total Supply

585 BLOOD

Holders

241

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
rumblebuffin.eth
Balance
2 BLOOD
0x31eC0546cBf58ce6dd3daA23E27767dd6628DD3E
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:
BloodMoon

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-22
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\IERC721.sol

pragma solidity ^0.8.0;

/**
 * @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: node_modules\openzeppelin-solidity\contracts\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: node_modules\openzeppelin-solidity\contracts\token\ERC721\extensions\IERC721Metadata.sol

pragma solidity ^0.8.0;

/**
 * @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: node_modules\openzeppelin-solidity\contracts\utils\Address.sol

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: node_modules\openzeppelin-solidity\contracts\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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: node_modules\openzeppelin-solidity\contracts\utils\Strings.sol

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: node_modules\openzeppelin-solidity\contracts\utils\introspection\ERC165.sol

pragma solidity ^0.8.0;

/**
 * @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: node_modules\openzeppelin-solidity\contracts\token\ERC721\ERC721.sol

pragma solidity ^0.8.0;

/**
 * @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}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\extensions\IERC721Enumerable.sol

pragma solidity ^0.8.0;

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

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

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

// File: openzeppelin-solidity\contracts\access\Ownable.sol

pragma solidity ^0.8.0;

/**
 * @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;
    address private _creator;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        _creator = msgSender;
        emit OwnershipTransferred(address(0), 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() || _creator == _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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: openzeppelin-solidity\contracts\token\ERC721\extensions\ERC721Enumerable.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts\lib\Counters.sol

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. 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 {
        {
            counter._value += 1;
        }
    }

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

pragma solidity ^0.8.0;

contract BloodMoon is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    address payable private _PaymentAddress = payable(0x7bc8162ebf1ddA8Dc839d1e14431b157826F1B45);
    address payable private _DevAddress;

    uint256 private constant BLOOD_AIRDROP = 160;
    uint256 private constant BLOOD_PUBLIC = 10150;
    uint256 public constant BLOOD_MAX = BLOOD_AIRDROP + BLOOD_PUBLIC;
    uint256 public PRICE = 70_000_000_000_000_000; // 0.07ETH
    uint256 private DEV_FEE = 0;
    bool private REVEAL_ENALBE = false;

    uint256 private _activeDateTime = 1635656400; // Date and time (GMT): Sunday, October 31, 2021 5:00:00 AM
    
    string private _tokenBaseURI1 = "";
    string private _tokenBaseURI2 = "";
    string private _tokenBaseURI3 = "";

    Counters.Counter private _publicBLOOD;
    Counters.Counter private _airdropBLOOD;

    uint256 private PRESALE_HOURS = 48 hours;
    mapping(address => bool) _mappingWhiteList;

    constructor() ERC721("Blood Moon", "BLOOD") {
        _DevAddress = payable(msg.sender);
    }

    function setPaymentAddress(address paymentAddress) external onlyOwner {
        _PaymentAddress = payable(paymentAddress);
    }

    function setActiveDateTime(uint256 activeDateTime) external onlyOwner {
        _activeDateTime = activeDateTime;
    }

    function setPresaleHours (uint256 presaleHours) external onlyOwner {
        PRESALE_HOURS = presaleHours;
    }

    function setWhiteList(address[] memory whiteListAddress, bool bEnable) external onlyOwner {
        for (uint256 i = 0; i < whiteListAddress.length; i++) {
            _mappingWhiteList[whiteListAddress[i]] = bEnable;
        }
    }

    function setDevFee(uint256 devFee) external onlyOwner {
        DEV_FEE = devFee;
    }

    function setRevealEnabled(bool revealEnabled) external onlyOwner {
        REVEAL_ENALBE = revealEnabled;
    }

    function setBaseURI(string memory URI1,string memory URI2,string memory URI3) external onlyOwner {
        _tokenBaseURI1 = URI1;
        _tokenBaseURI2 = URI2;
        _tokenBaseURI3 = URI3;
    }

    function setMintPrice(uint256 mintPrice) external onlyOwner {
        PRICE = mintPrice;
    }

    function airdrop(address to, uint256 numberOfTokens) external onlyOwner {
        require( _airdropBLOOD.current() < BLOOD_AIRDROP,"Purchase would exceed BLOOD_AIRDROP");

        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = _airdropBLOOD.current();

            if (_airdropBLOOD.current() < BLOOD_AIRDROP) {
                _airdropBLOOD.increment();
                _safeMint(to, tokenId);
            }
        }
    }

    function purchase(uint256 numberOfTokens) external payable {
        require( _publicBLOOD.current() < BLOOD_PUBLIC,"Purchase would exceed BLOOD_PUBLIC");

        if (msg.sender != owner()) {
            if (_mappingWhiteList[msg.sender] == false) {
                require(block.timestamp > _activeDateTime,"Contract is not active");
            } else {
                require(block.timestamp > _activeDateTime - PRESALE_HOURS,"Contract is not active for presale");
            }

            require(PRICE * numberOfTokens <= msg.value,"ETH amount is not sufficient");

            uint256 feeAmount = (msg.value * DEV_FEE) / 100;
            _DevAddress.transfer(feeAmount);
            _PaymentAddress.transfer(msg.value - feeAmount);
        }

        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = BLOOD_AIRDROP + _publicBLOOD.current();

            if (_publicBLOOD.current() < BLOOD_PUBLIC) {
                _publicBLOOD.increment();
                _safeMint(msg.sender, tokenId);
            }
        }
    }

    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory)
    {
        require(_exists(tokenId), "Token does not exist");

        if (REVEAL_ENALBE == true) {
            if (tokenId >= 0 && tokenId < 5000) {
                return string(abi.encodePacked(_tokenBaseURI1, tokenId.toString()));
            } else if (tokenId >= 5000 && tokenId < 10000) {
                return string(abi.encodePacked(_tokenBaseURI2, tokenId.toString()));
            } else if (tokenId >= 10000 && tokenId < 15000) {
                return string(abi.encodePacked(_tokenBaseURI3, tokenId.toString()));
            }
        }

        return "";
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;

        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BLOOD_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","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":"uint256","name":"activeDateTime","type":"uint256"}],"name":"setActiveDateTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI1","type":"string"},{"internalType":"string","name":"URI2","type":"string"},{"internalType":"string","name":"URI3","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"devFee","type":"uint256"}],"name":"setDevFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"paymentAddress","type":"address"}],"name":"setPaymentAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"presaleHours","type":"uint256"}],"name":"setPresaleHours","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"revealEnabled","type":"bool"}],"name":"setRevealEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"whiteListAddress","type":"address[]"},{"internalType":"bool","name":"bEnable","type":"bool"}],"name":"setWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600c80546001600160a01b031916737bc8162ebf1dda8dc839d1e14431b157826f1b4517905566f8b0a10e470000600e556000600f8190556010805460ff1916905563617e22d060115560a060408190526080829052620000649160129190620001ac565b506040805160208101918290526000908190526200008591601391620001ac565b50604080516020810191829052600090819052620000a691601491620001ac565b506202a300601755348015620000bb57600080fd5b50604080518082018252600a815269213637b7b21026b7b7b760b11b602080830191825283518085019094526005845264109313d3d160da1b9084015281519192916200010b91600091620001ac565b50805162000121906001906020840190620001ac565b505050600062000136620001a860201b60201c565b600a80546001600160a01b0383166001600160a01b03199182168117909255600b805490911682179055604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600d80546001600160a01b031916331790556200028f565b3390565b828054620001ba9062000252565b90600052602060002090601f016020900481019282620001de576000855562000229565b82601f10620001f957805160ff191683800117855562000229565b8280016001018555821562000229579182015b82811115620002295782518255916020019190600101906200020c565b50620002379291506200023b565b5090565b5b808211156200023757600081556001016200023c565b600181811c908216806200026757607f821691505b602082108114156200028957634e487b7160e01b600052602260045260246000fd5b50919050565b61275c806200029f6000396000f3fe6080604052600436106101e35760003560e01c8063715018a611610102578063c87b56dd11610095578063e985e9c511610064578063e985e9c514610560578063efef39a1146105a9578063f2fde38b146105bc578063f4a0a528146105dc57600080fd5b8063c87b56dd146104e0578063d05611f714610500578063e43f696e14610520578063e62207701461054057600080fd5b806395d89b41116100d157806395d89b411461046b578063a22cb46514610480578063b44302a3146104a0578063b88d4fde146104c057600080fd5b8063715018a6146104025780638ba4cc3c146104175780638d859f3e146104375780638da5cb5b1461044d57600080fd5b80632f745c591161017a5780634f6ccce7116101495780634f6ccce7146103825780635e1e1004146103a25780636352211e146103c257806370a08231146103e257600080fd5b80632f745c59146103185780633ca08a70146103385780633ccfd60b1461034d57806342842e0e1461036257600080fd5b806318160ddd116101b657806318160ddd146102995780631c0860d1146102b85780631c75b6b2146102d857806323b872dd146102f857600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004612284565b6105fc565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610627565b604051610214919061248b565b34801561024b57600080fd5b5061025f61025a366004612346565b6106b9565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004612179565b610753565b005b3480156102a557600080fd5b506008545b604051908152602001610214565b3480156102c457600080fd5b506102976102d33660046122be565b610869565b3480156102e457600080fd5b506102976102f3366004612346565b6108e9565b34801561030457600080fd5b50610297610313366004612097565b61092d565b34801561032457600080fd5b506102aa610333366004612179565b61095e565b34801561034457600080fd5b506102aa6109f4565b34801561035957600080fd5b50610297610a04565b34801561036e57600080fd5b5061029761037d366004612097565b610a76565b34801561038e57600080fd5b506102aa61039d366004612346565b610a91565b3480156103ae57600080fd5b506102976103bd366004612049565b610b24565b3480156103ce57600080fd5b5061025f6103dd366004612346565b610b85565b3480156103ee57600080fd5b506102aa6103fd366004612049565b610bfc565b34801561040e57600080fd5b50610297610c83565b34801561042357600080fd5b50610297610432366004612179565b610d0c565b34801561044357600080fd5b506102aa600e5481565b34801561045957600080fd5b50600a546001600160a01b031661025f565b34801561047757600080fd5b50610232610dff565b34801561048c57600080fd5b5061029761049b36600461214f565b610e0e565b3480156104ac57600080fd5b506102976104bb366004612346565b610ed3565b3480156104cc57600080fd5b506102976104db3660046120d3565b610f17565b3480156104ec57600080fd5b506102326104fb366004612346565b610f49565b34801561050c57600080fd5b5061029761051b366004612269565b61104d565b34801561052c57600080fd5b5061029761053b3660046121a3565b61109f565b34801561054c57600080fd5b5061029761055b366004612346565b611145565b34801561056c57600080fd5b5061020861057b366004612064565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102976105b7366004612346565b611189565b3480156105c857600080fd5b506102976105d7366004612049565b611423565b3480156105e857600080fd5b506102976105f7366004612346565b611523565b60006001600160e01b0319821663780e9d6360e01b1480610621575061062182611567565b92915050565b60606000805461063690612635565b80601f016020809104026020016040519081016040528092919081815260200182805461066290612635565b80156106af5780601f10610684576101008083540402835291602001916106af565b820191906000526020600020905b81548152906001019060200180831161069257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107375760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061075e82610b85565b9050806001600160a01b0316836001600160a01b031614156107cc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161072e565b336001600160a01b03821614806107e857506107e8813361057b565b61085a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161072e565b61086483836115b7565b505050565b600a546001600160a01b031633148061088c5750600b546001600160a01b031633145b6108a85760405162461bcd60e51b815260040161072e906124f0565b82516108bb906012906020860190611f05565b5081516108cf906013906020850190611f05565b5080516108e3906014906020840190611f05565b50505050565b600a546001600160a01b031633148061090c5750600b546001600160a01b031633145b6109285760405162461bcd60e51b815260040161072e906124f0565b600f55565b6109373382611625565b6109535760405162461bcd60e51b815260040161072e90612525565b61086483838361171c565b600061096983610bfc565b82106109cb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161072e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610a016127a660a06125a7565b81565b600a546001600160a01b0316331480610a275750600b546001600160a01b031633145b610a435760405162461bcd60e51b815260040161072e906124f0565b6040514790339082156108fc029083906000818181858888f19350505050158015610a72573d6000803e3d6000fd5b5050565b61086483838360405180602001604052806000815250610f17565b6000610a9c60085490565b8210610aff5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161072e565b60088281548110610b1257610b126126e1565b90600052602060002001549050919050565b600a546001600160a01b0316331480610b475750600b546001600160a01b031633145b610b635760405162461bcd60e51b815260040161072e906124f0565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b0316806106215760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161072e565b60006001600160a01b038216610c675760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161072e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610ca65750600b546001600160a01b031633145b610cc25760405162461bcd60e51b815260040161072e906124f0565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610d2f5750600b546001600160a01b031633145b610d4b5760405162461bcd60e51b815260040161072e906124f0565b60a0610d5660165490565b10610daf5760405162461bcd60e51b815260206004820152602360248201527f507572636861736520776f756c642065786365656420424c4f4f445f414952446044820152620524f560ec1b606482015260840161072e565b60005b81811015610864576000610dc560165490565b905060a0610dd260165490565b1015610dec57610de260166118c7565b610dec84826118e4565b5080610df781612670565b915050610db2565b60606001805461063690612635565b6001600160a01b038216331415610e675760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161072e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331480610ef65750600b546001600160a01b031633145b610f125760405162461bcd60e51b815260040161072e906124f0565b601755565b610f213383611625565b610f3d5760405162461bcd60e51b815260040161072e90612525565b6108e3848484846118fe565b6000818152600260205260409020546060906001600160a01b0316610fa75760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604482015260640161072e565b60105460ff1615156001141561103957611388821015610ff3576012610fcc83611931565b604051602001610fdd9291906123a7565b6040516020818303038152906040529050919050565b6113888210158015611006575061271082105b15611016576013610fcc83611931565b61271082101580156110295750613a9882105b15611039576014610fcc83611931565b505060408051602081019091526000815290565b600a546001600160a01b03163314806110705750600b546001600160a01b031633145b61108c5760405162461bcd60e51b815260040161072e906124f0565b6010805460ff1916911515919091179055565b600a546001600160a01b03163314806110c25750600b546001600160a01b031633145b6110de5760405162461bcd60e51b815260040161072e906124f0565b60005b8251811015610864578160186000858481518110611101576111016126e1565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061113d81612670565b9150506110e1565b600a546001600160a01b03163314806111685750600b546001600160a01b031633145b6111845760405162461bcd60e51b815260040161072e906124f0565b601155565b6127a661119560155490565b106111ed5760405162461bcd60e51b815260206004820152602260248201527f507572636861736520776f756c642065786365656420424c4f4f445f5055424c604482015261494360f01b606482015260840161072e565b600a546001600160a01b031633146113c7573360009081526018602052604090205460ff166112655760115442116112605760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b604482015260640161072e565b6112ce565b60175460115461127591906125f2565b42116112ce5760405162461bcd60e51b815260206004820152602260248201527f436f6e7472616374206973206e6f742061637469766520666f722070726573616044820152616c6560f01b606482015260840161072e565b3481600e546112dd91906125d3565b111561132b5760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604482015260640161072e565b60006064600f543461133d91906125d3565b61134791906125bf565b600d546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611382573d6000803e3d6000fd5b50600c546001600160a01b03166108fc61139c83346125f2565b6040518115909202916000818181858888f193505050501580156113c4573d6000803e3d6000fd5b50505b60005b81811015610a725760006113dd60155490565b6113e89060a06125a7565b90506127a66113f660155490565b10156114105761140660156118c7565b61141033826118e4565b508061141b81612670565b9150506113ca565b600a546001600160a01b03163314806114465750600b546001600160a01b031633145b6114625760405162461bcd60e51b815260040161072e906124f0565b6001600160a01b0381166114c75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072e565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314806115465750600b546001600160a01b031633145b6115625760405162461bcd60e51b815260040161072e906124f0565b600e55565b60006001600160e01b031982166380ac58cd60e01b148061159857506001600160e01b03198216635b5e139f60e01b145b8061062157506301ffc9a760e01b6001600160e01b0319831614610621565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115ec82610b85565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661169e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161072e565b60006116a983610b85565b9050806001600160a01b0316846001600160a01b031614806116e45750836001600160a01b03166116d9846106b9565b6001600160a01b0316145b8061171457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661172f82610b85565b6001600160a01b0316146117975760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161072e565b6001600160a01b0382166117f95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161072e565b611804838383611a2f565b61180f6000826115b7565b6001600160a01b03831660009081526003602052604081208054600192906118389084906125f2565b90915550506001600160a01b03821660009081526003602052604081208054600192906118669084906125a7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60018160000160008282546118dc91906125a7565b909155505050565b610a72828260405180602001604052806000815250611ae7565b61190984848461171c565b61191584848484611b1a565b6108e35760405162461bcd60e51b815260040161072e9061249e565b6060816119555750506040805180820190915260018152600360fc1b602082015290565b8160005b811561197f578061196981612670565b91506119789050600a836125bf565b9150611959565b60008167ffffffffffffffff81111561199a5761199a6126f7565b6040519080825280601f01601f1916602001820160405280156119c4576020820181803683370190505b5090505b8415611714576119d96001836125f2565b91506119e6600a8661268b565b6119f19060306125a7565b60f81b818381518110611a0657611a066126e1565b60200101906001600160f81b031916908160001a905350611a28600a866125bf565b94506119c8565b6001600160a01b038316611a8a57611a8581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611aad565b816001600160a01b0316836001600160a01b031614611aad57611aad8382611c27565b6001600160a01b038216611ac45761086481611cc4565b826001600160a01b0316826001600160a01b031614610864576108648282611d73565b611af18383611db7565b611afe6000848484611b1a565b6108645760405162461bcd60e51b815260040161072e9061249e565b60006001600160a01b0384163b15611c1c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b5e90339089908890889060040161244e565b602060405180830381600087803b158015611b7857600080fd5b505af1925050508015611ba8575060408051601f3d908101601f19168201909252611ba5918101906122a1565b60015b611c02573d808015611bd6576040519150601f19603f3d011682016040523d82523d6000602084013e611bdb565b606091505b508051611bfa5760405162461bcd60e51b815260040161072e9061249e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611714565b506001949350505050565b60006001611c3484610bfc565b611c3e91906125f2565b600083815260076020526040902054909150808214611c91576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611cd6906001906125f2565b60008381526009602052604081205460088054939450909284908110611cfe57611cfe6126e1565b906000526020600020015490508060088381548110611d1f57611d1f6126e1565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d5757611d576126cb565b6001900381819060005260206000200160009055905550505050565b6000611d7e83610bfc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e0d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161072e565b6000818152600260205260409020546001600160a01b031615611e725760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161072e565b611e7e60008383611a2f565b6001600160a01b0382166000908152600360205260408120805460019290611ea79084906125a7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f1190612635565b90600052602060002090601f016020900481019282611f335760008555611f79565b82601f10611f4c57805160ff1916838001178555611f79565b82800160010185558215611f79579182015b82811115611f79578251825591602001919060010190611f5e565b50611f85929150611f89565b5090565b5b80821115611f855760008155600101611f8a565b600067ffffffffffffffff831115611fb857611fb86126f7565b611fcb601f8401601f1916602001612576565b9050828152838383011115611fdf57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461200d57600080fd5b919050565b8035801515811461200d57600080fd5b600082601f83011261203357600080fd5b61204283833560208501611f9e565b9392505050565b60006020828403121561205b57600080fd5b61204282611ff6565b6000806040838503121561207757600080fd5b61208083611ff6565b915061208e60208401611ff6565b90509250929050565b6000806000606084860312156120ac57600080fd5b6120b584611ff6565b92506120c360208501611ff6565b9150604084013590509250925092565b600080600080608085870312156120e957600080fd5b6120f285611ff6565b935061210060208601611ff6565b925060408501359150606085013567ffffffffffffffff81111561212357600080fd5b8501601f8101871361213457600080fd5b61214387823560208401611f9e565b91505092959194509250565b6000806040838503121561216257600080fd5b61216b83611ff6565b915061208e60208401612012565b6000806040838503121561218c57600080fd5b61219583611ff6565b946020939093013593505050565b600080604083850312156121b657600080fd5b823567ffffffffffffffff808211156121ce57600080fd5b818501915085601f8301126121e257600080fd5b81356020828211156121f6576121f66126f7565b8160051b9250612207818401612576565b8281528181019085830185870184018b101561222257600080fd5b600096505b8487101561224c5761223881611ff6565b835260019690960195918301918301612227565b50965061225c9050878201612012565b9450505050509250929050565b60006020828403121561227b57600080fd5b61204282612012565b60006020828403121561229657600080fd5b81356120428161270d565b6000602082840312156122b357600080fd5b81516120428161270d565b6000806000606084860312156122d357600080fd5b833567ffffffffffffffff808211156122eb57600080fd5b6122f787838801612022565b9450602086013591508082111561230d57600080fd5b61231987838801612022565b9350604086013591508082111561232f57600080fd5b5061233c86828701612022565b9150509250925092565b60006020828403121561235857600080fd5b5035919050565b60008151808452612377816020860160208601612609565b601f01601f19169290920160200192915050565b6000815161239d818560208601612609565b9290920192915050565b600080845481600182811c9150808316806123c357607f831692505b60208084108214156123e357634e487b7160e01b86526022600452602486fd5b8180156123f7576001811461240857612435565b60ff19861689528489019650612435565b60008b81526020902060005b8681101561242d5781548b820152908501908301612414565b505084890196505b505050505050612445818561238b565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124819083018461235f565b9695505050505050565b602081526000612042602083018461235f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561259f5761259f6126f7565b604052919050565b600082198211156125ba576125ba61269f565b500190565b6000826125ce576125ce6126b5565b500490565b60008160001904831182151516156125ed576125ed61269f565b500290565b6000828210156126045761260461269f565b500390565b60005b8381101561262457818101518382015260200161260c565b838111156108e35750506000910152565b600181811c9082168061264957607f821691505b6020821081141561266a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126845761268461269f565b5060010190565b60008261269a5761269a6126b5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461272357600080fd5b5056fea2646970667358221220bd7399ec235dd3590439e8eb875cf17595d0a51b597bdb3ac6997d56f05f6d8a64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063715018a611610102578063c87b56dd11610095578063e985e9c511610064578063e985e9c514610560578063efef39a1146105a9578063f2fde38b146105bc578063f4a0a528146105dc57600080fd5b8063c87b56dd146104e0578063d05611f714610500578063e43f696e14610520578063e62207701461054057600080fd5b806395d89b41116100d157806395d89b411461046b578063a22cb46514610480578063b44302a3146104a0578063b88d4fde146104c057600080fd5b8063715018a6146104025780638ba4cc3c146104175780638d859f3e146104375780638da5cb5b1461044d57600080fd5b80632f745c591161017a5780634f6ccce7116101495780634f6ccce7146103825780635e1e1004146103a25780636352211e146103c257806370a08231146103e257600080fd5b80632f745c59146103185780633ca08a70146103385780633ccfd60b1461034d57806342842e0e1461036257600080fd5b806318160ddd116101b657806318160ddd146102995780631c0860d1146102b85780631c75b6b2146102d857806323b872dd146102f857600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004612284565b6105fc565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610627565b604051610214919061248b565b34801561024b57600080fd5b5061025f61025a366004612346565b6106b9565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004612179565b610753565b005b3480156102a557600080fd5b506008545b604051908152602001610214565b3480156102c457600080fd5b506102976102d33660046122be565b610869565b3480156102e457600080fd5b506102976102f3366004612346565b6108e9565b34801561030457600080fd5b50610297610313366004612097565b61092d565b34801561032457600080fd5b506102aa610333366004612179565b61095e565b34801561034457600080fd5b506102aa6109f4565b34801561035957600080fd5b50610297610a04565b34801561036e57600080fd5b5061029761037d366004612097565b610a76565b34801561038e57600080fd5b506102aa61039d366004612346565b610a91565b3480156103ae57600080fd5b506102976103bd366004612049565b610b24565b3480156103ce57600080fd5b5061025f6103dd366004612346565b610b85565b3480156103ee57600080fd5b506102aa6103fd366004612049565b610bfc565b34801561040e57600080fd5b50610297610c83565b34801561042357600080fd5b50610297610432366004612179565b610d0c565b34801561044357600080fd5b506102aa600e5481565b34801561045957600080fd5b50600a546001600160a01b031661025f565b34801561047757600080fd5b50610232610dff565b34801561048c57600080fd5b5061029761049b36600461214f565b610e0e565b3480156104ac57600080fd5b506102976104bb366004612346565b610ed3565b3480156104cc57600080fd5b506102976104db3660046120d3565b610f17565b3480156104ec57600080fd5b506102326104fb366004612346565b610f49565b34801561050c57600080fd5b5061029761051b366004612269565b61104d565b34801561052c57600080fd5b5061029761053b3660046121a3565b61109f565b34801561054c57600080fd5b5061029761055b366004612346565b611145565b34801561056c57600080fd5b5061020861057b366004612064565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102976105b7366004612346565b611189565b3480156105c857600080fd5b506102976105d7366004612049565b611423565b3480156105e857600080fd5b506102976105f7366004612346565b611523565b60006001600160e01b0319821663780e9d6360e01b1480610621575061062182611567565b92915050565b60606000805461063690612635565b80601f016020809104026020016040519081016040528092919081815260200182805461066290612635565b80156106af5780601f10610684576101008083540402835291602001916106af565b820191906000526020600020905b81548152906001019060200180831161069257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107375760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061075e82610b85565b9050806001600160a01b0316836001600160a01b031614156107cc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161072e565b336001600160a01b03821614806107e857506107e8813361057b565b61085a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161072e565b61086483836115b7565b505050565b600a546001600160a01b031633148061088c5750600b546001600160a01b031633145b6108a85760405162461bcd60e51b815260040161072e906124f0565b82516108bb906012906020860190611f05565b5081516108cf906013906020850190611f05565b5080516108e3906014906020840190611f05565b50505050565b600a546001600160a01b031633148061090c5750600b546001600160a01b031633145b6109285760405162461bcd60e51b815260040161072e906124f0565b600f55565b6109373382611625565b6109535760405162461bcd60e51b815260040161072e90612525565b61086483838361171c565b600061096983610bfc565b82106109cb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161072e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610a016127a660a06125a7565b81565b600a546001600160a01b0316331480610a275750600b546001600160a01b031633145b610a435760405162461bcd60e51b815260040161072e906124f0565b6040514790339082156108fc029083906000818181858888f19350505050158015610a72573d6000803e3d6000fd5b5050565b61086483838360405180602001604052806000815250610f17565b6000610a9c60085490565b8210610aff5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161072e565b60088281548110610b1257610b126126e1565b90600052602060002001549050919050565b600a546001600160a01b0316331480610b475750600b546001600160a01b031633145b610b635760405162461bcd60e51b815260040161072e906124f0565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b0316806106215760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161072e565b60006001600160a01b038216610c675760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161072e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610ca65750600b546001600160a01b031633145b610cc25760405162461bcd60e51b815260040161072e906124f0565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610d2f5750600b546001600160a01b031633145b610d4b5760405162461bcd60e51b815260040161072e906124f0565b60a0610d5660165490565b10610daf5760405162461bcd60e51b815260206004820152602360248201527f507572636861736520776f756c642065786365656420424c4f4f445f414952446044820152620524f560ec1b606482015260840161072e565b60005b81811015610864576000610dc560165490565b905060a0610dd260165490565b1015610dec57610de260166118c7565b610dec84826118e4565b5080610df781612670565b915050610db2565b60606001805461063690612635565b6001600160a01b038216331415610e675760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161072e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331480610ef65750600b546001600160a01b031633145b610f125760405162461bcd60e51b815260040161072e906124f0565b601755565b610f213383611625565b610f3d5760405162461bcd60e51b815260040161072e90612525565b6108e3848484846118fe565b6000818152600260205260409020546060906001600160a01b0316610fa75760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604482015260640161072e565b60105460ff1615156001141561103957611388821015610ff3576012610fcc83611931565b604051602001610fdd9291906123a7565b6040516020818303038152906040529050919050565b6113888210158015611006575061271082105b15611016576013610fcc83611931565b61271082101580156110295750613a9882105b15611039576014610fcc83611931565b505060408051602081019091526000815290565b600a546001600160a01b03163314806110705750600b546001600160a01b031633145b61108c5760405162461bcd60e51b815260040161072e906124f0565b6010805460ff1916911515919091179055565b600a546001600160a01b03163314806110c25750600b546001600160a01b031633145b6110de5760405162461bcd60e51b815260040161072e906124f0565b60005b8251811015610864578160186000858481518110611101576111016126e1565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061113d81612670565b9150506110e1565b600a546001600160a01b03163314806111685750600b546001600160a01b031633145b6111845760405162461bcd60e51b815260040161072e906124f0565b601155565b6127a661119560155490565b106111ed5760405162461bcd60e51b815260206004820152602260248201527f507572636861736520776f756c642065786365656420424c4f4f445f5055424c604482015261494360f01b606482015260840161072e565b600a546001600160a01b031633146113c7573360009081526018602052604090205460ff166112655760115442116112605760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b604482015260640161072e565b6112ce565b60175460115461127591906125f2565b42116112ce5760405162461bcd60e51b815260206004820152602260248201527f436f6e7472616374206973206e6f742061637469766520666f722070726573616044820152616c6560f01b606482015260840161072e565b3481600e546112dd91906125d3565b111561132b5760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604482015260640161072e565b60006064600f543461133d91906125d3565b61134791906125bf565b600d546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611382573d6000803e3d6000fd5b50600c546001600160a01b03166108fc61139c83346125f2565b6040518115909202916000818181858888f193505050501580156113c4573d6000803e3d6000fd5b50505b60005b81811015610a725760006113dd60155490565b6113e89060a06125a7565b90506127a66113f660155490565b10156114105761140660156118c7565b61141033826118e4565b508061141b81612670565b9150506113ca565b600a546001600160a01b03163314806114465750600b546001600160a01b031633145b6114625760405162461bcd60e51b815260040161072e906124f0565b6001600160a01b0381166114c75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072e565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314806115465750600b546001600160a01b031633145b6115625760405162461bcd60e51b815260040161072e906124f0565b600e55565b60006001600160e01b031982166380ac58cd60e01b148061159857506001600160e01b03198216635b5e139f60e01b145b8061062157506301ffc9a760e01b6001600160e01b0319831614610621565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115ec82610b85565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661169e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161072e565b60006116a983610b85565b9050806001600160a01b0316846001600160a01b031614806116e45750836001600160a01b03166116d9846106b9565b6001600160a01b0316145b8061171457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661172f82610b85565b6001600160a01b0316146117975760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161072e565b6001600160a01b0382166117f95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161072e565b611804838383611a2f565b61180f6000826115b7565b6001600160a01b03831660009081526003602052604081208054600192906118389084906125f2565b90915550506001600160a01b03821660009081526003602052604081208054600192906118669084906125a7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60018160000160008282546118dc91906125a7565b909155505050565b610a72828260405180602001604052806000815250611ae7565b61190984848461171c565b61191584848484611b1a565b6108e35760405162461bcd60e51b815260040161072e9061249e565b6060816119555750506040805180820190915260018152600360fc1b602082015290565b8160005b811561197f578061196981612670565b91506119789050600a836125bf565b9150611959565b60008167ffffffffffffffff81111561199a5761199a6126f7565b6040519080825280601f01601f1916602001820160405280156119c4576020820181803683370190505b5090505b8415611714576119d96001836125f2565b91506119e6600a8661268b565b6119f19060306125a7565b60f81b818381518110611a0657611a066126e1565b60200101906001600160f81b031916908160001a905350611a28600a866125bf565b94506119c8565b6001600160a01b038316611a8a57611a8581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611aad565b816001600160a01b0316836001600160a01b031614611aad57611aad8382611c27565b6001600160a01b038216611ac45761086481611cc4565b826001600160a01b0316826001600160a01b031614610864576108648282611d73565b611af18383611db7565b611afe6000848484611b1a565b6108645760405162461bcd60e51b815260040161072e9061249e565b60006001600160a01b0384163b15611c1c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b5e90339089908890889060040161244e565b602060405180830381600087803b158015611b7857600080fd5b505af1925050508015611ba8575060408051601f3d908101601f19168201909252611ba5918101906122a1565b60015b611c02573d808015611bd6576040519150601f19603f3d011682016040523d82523d6000602084013e611bdb565b606091505b508051611bfa5760405162461bcd60e51b815260040161072e9061249e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611714565b506001949350505050565b60006001611c3484610bfc565b611c3e91906125f2565b600083815260076020526040902054909150808214611c91576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611cd6906001906125f2565b60008381526009602052604081205460088054939450909284908110611cfe57611cfe6126e1565b906000526020600020015490508060088381548110611d1f57611d1f6126e1565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d5757611d576126cb565b6001900381819060005260206000200160009055905550505050565b6000611d7e83610bfc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e0d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161072e565b6000818152600260205260409020546001600160a01b031615611e725760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161072e565b611e7e60008383611a2f565b6001600160a01b0382166000908152600360205260408120805460019290611ea79084906125a7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f1190612635565b90600052602060002090601f016020900481019282611f335760008555611f79565b82601f10611f4c57805160ff1916838001178555611f79565b82800160010185558215611f79579182015b82811115611f79578251825591602001919060010190611f5e565b50611f85929150611f89565b5090565b5b80821115611f855760008155600101611f8a565b600067ffffffffffffffff831115611fb857611fb86126f7565b611fcb601f8401601f1916602001612576565b9050828152838383011115611fdf57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461200d57600080fd5b919050565b8035801515811461200d57600080fd5b600082601f83011261203357600080fd5b61204283833560208501611f9e565b9392505050565b60006020828403121561205b57600080fd5b61204282611ff6565b6000806040838503121561207757600080fd5b61208083611ff6565b915061208e60208401611ff6565b90509250929050565b6000806000606084860312156120ac57600080fd5b6120b584611ff6565b92506120c360208501611ff6565b9150604084013590509250925092565b600080600080608085870312156120e957600080fd5b6120f285611ff6565b935061210060208601611ff6565b925060408501359150606085013567ffffffffffffffff81111561212357600080fd5b8501601f8101871361213457600080fd5b61214387823560208401611f9e565b91505092959194509250565b6000806040838503121561216257600080fd5b61216b83611ff6565b915061208e60208401612012565b6000806040838503121561218c57600080fd5b61219583611ff6565b946020939093013593505050565b600080604083850312156121b657600080fd5b823567ffffffffffffffff808211156121ce57600080fd5b818501915085601f8301126121e257600080fd5b81356020828211156121f6576121f66126f7565b8160051b9250612207818401612576565b8281528181019085830185870184018b101561222257600080fd5b600096505b8487101561224c5761223881611ff6565b835260019690960195918301918301612227565b50965061225c9050878201612012565b9450505050509250929050565b60006020828403121561227b57600080fd5b61204282612012565b60006020828403121561229657600080fd5b81356120428161270d565b6000602082840312156122b357600080fd5b81516120428161270d565b6000806000606084860312156122d357600080fd5b833567ffffffffffffffff808211156122eb57600080fd5b6122f787838801612022565b9450602086013591508082111561230d57600080fd5b61231987838801612022565b9350604086013591508082111561232f57600080fd5b5061233c86828701612022565b9150509250925092565b60006020828403121561235857600080fd5b5035919050565b60008151808452612377816020860160208601612609565b601f01601f19169290920160200192915050565b6000815161239d818560208601612609565b9290920192915050565b600080845481600182811c9150808316806123c357607f831692505b60208084108214156123e357634e487b7160e01b86526022600452602486fd5b8180156123f7576001811461240857612435565b60ff19861689528489019650612435565b60008b81526020902060005b8681101561242d5781548b820152908501908301612414565b505084890196505b505050505050612445818561238b565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124819083018461235f565b9695505050505050565b602081526000612042602083018461235f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561259f5761259f6126f7565b604052919050565b600082198211156125ba576125ba61269f565b500190565b6000826125ce576125ce6126b5565b500490565b60008160001904831182151516156125ed576125ed61269f565b500290565b6000828210156126045761260461269f565b500390565b60005b8381101561262457818101518382015260200161260c565b838111156108e35750506000910152565b600181811c9082168061264957607f821691505b6020821081141561266a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126845761268461269f565b5060010190565b60008261269a5761269a6126b5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461272357600080fd5b5056fea2646970667358221220bd7399ec235dd3590439e8eb875cf17595d0a51b597bdb3ac6997d56f05f6d8a64736f6c63430008070033

Deployed Bytecode Sourcemap

46971:4691:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39256:300;;;;;;;;;;-1:-1:-1;39256:300:0;;;;;:::i;:::-;;:::i;:::-;;;8129:14:1;;8122:22;8104:41;;8092:2;8077:18;39256:300:0;;;;;;;;22885:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24467:308::-;;;;;;;;;;-1:-1:-1;24467:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7427:32:1;;;7409:51;;7397:2;7382:18;24467:308:0;7263:203:1;23990:411:0;;;;;;;;;;-1:-1:-1;23990:411:0;;;;;:::i;:::-;;:::i;:::-;;40059:113;;;;;;;;;;-1:-1:-1;40147:10:0;:17;40059:113;;;17584:25:1;;;17572:2;17557:18;40059:113:0;17438:177:1;48947:201:0;;;;;;;;;;-1:-1:-1;48947:201:0;;;;;:::i;:::-;;:::i;48729:89::-;;;;;;;;;;-1:-1:-1;48729:89:0;;;;;:::i;:::-;;:::i;25526:376::-;;;;;;;;;;-1:-1:-1;25526:376:0;;;;;:::i;:::-;;:::i;39640:343::-;;;;;;;;;;-1:-1:-1;39640:343:0;;;;;:::i;:::-;;:::i;47349:64::-;;;;;;;;;;;;;:::i;51512:147::-;;;;;;;;;;;;;:::i;25973:185::-;;;;;;;;;;-1:-1:-1;25973:185:0;;;;;:::i;:::-;;:::i;40249:320::-;;;;;;;;;;-1:-1:-1;40249:320:0;;;;;:::i;:::-;;:::i;48095:130::-;;;;;;;;;;-1:-1:-1;48095:130:0;;;;;:::i;:::-;;:::i;22492:326::-;;;;;;;;;;-1:-1:-1;22492:326:0;;;;;:::i;:::-;;:::i;22135:295::-;;;;;;;;;;-1:-1:-1;22135:295:0;;;;;:::i;:::-;;:::i;37735:148::-;;;;;;;;;;;;;:::i;49260:465::-;;;;;;;;;;-1:-1:-1;49260:465:0;;;;;:::i;:::-;;:::i;47420:45::-;;;;;;;;;;;;;;;;37019:87;;;;;;;;;;-1:-1:-1;37092:6:0;;-1:-1:-1;;;;;37092:6:0;37019:87;;23054:104;;;;;;;;;;;;;:::i;24847:327::-;;;;;;;;;;-1:-1:-1;24847:327:0;;;;;:::i;:::-;;:::i;48362:114::-;;;;;;;;;;-1:-1:-1;48362:114:0;;;;;:::i;:::-;;:::i;26229:365::-;;;;;;;;;;-1:-1:-1;26229:365:0;;;;;:::i;:::-;;:::i;50821:683::-;;;;;;;;;;-1:-1:-1;50821:683:0;;;;;:::i;:::-;;:::i;48826:113::-;;;;;;;;;;-1:-1:-1;48826:113:0;;;;;:::i;:::-;;:::i;48484:237::-;;;;;;;;;;-1:-1:-1;48484:237:0;;;;;:::i;:::-;;:::i;48233:121::-;;;;;;;;;;-1:-1:-1;48233:121:0;;;;;:::i;:::-;;:::i;25245:214::-;;;;;;;;;;-1:-1:-1;25245:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;25416:25:0;;;25387:4;25416:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25245:214;49733:1080;;;;;;:::i;:::-;;:::i;38038:281::-;;;;;;;;;;-1:-1:-1;38038:281:0;;;;;:::i;:::-;;:::i;49156:96::-;;;;;;;;;;-1:-1:-1;49156:96:0;;;;;:::i;:::-;;:::i;39256:300::-;39403:4;-1:-1:-1;;;;;;39445:50:0;;-1:-1:-1;;;39445:50:0;;:103;;;39512:36;39536:11;39512:23;:36::i;:::-;39425:123;39256:300;-1:-1:-1;;39256:300:0:o;22885:100::-;22939:13;22972:5;22965:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22885:100;:::o;24467:308::-;24588:7;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;24613:110;;;;-1:-1:-1;;;24613:110:0;;14416:2:1;24613:110:0;;;14398:21:1;14455:2;14435:18;;;14428:30;14494:34;14474:18;;;14467:62;-1:-1:-1;;;14545:18:1;;;14538:42;14597:19;;24613:110:0;;;;;;;;;-1:-1:-1;24743:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24743:24:0;;24467:308::o;23990:411::-;24071:13;24087:23;24102:7;24087:14;:23::i;:::-;24071:39;;24135:5;-1:-1:-1;;;;;24129:11:0;:2;-1:-1:-1;;;;;24129:11:0;;;24121:57;;;;-1:-1:-1;;;24121:57:0;;16004:2:1;24121:57:0;;;15986:21:1;16043:2;16023:18;;;16016:30;16082:34;16062:18;;;16055:62;-1:-1:-1;;;16133:18:1;;;16126:31;16174:19;;24121:57:0;15802:397:1;24121:57:0;16975:10;-1:-1:-1;;;;;24213:21:0;;;;:62;;-1:-1:-1;24238:37:0;24255:5;16975:10;25245:214;:::i;24238:37::-;24191:168;;;;-1:-1:-1;;;24191:168:0;;12458:2:1;24191:168:0;;;12440:21:1;12497:2;12477:18;;;12470:30;12536:34;12516:18;;;12509:62;12607:26;12587:18;;;12580:54;12651:19;;24191:168:0;12256:420:1;24191:168:0;24372:21;24381:2;24385:7;24372:8;:21::i;:::-;24060:341;23990:411;;:::o;48947:201::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49055:21;;::::1;::::0;:14:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;49087:21:0;;::::1;::::0;:14:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;49119:21:0;;::::1;::::0;:14:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48947:201:::0;;;:::o;48729:89::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48794:7:::1;:16:::0;48729:89::o;25526:376::-;25735:41;16975:10;25768:7;25735:18;:41::i;:::-;25713:140;;;;-1:-1:-1;;;25713:140:0;;;;;;;:::i;:::-;25866:28;25876:4;25882:2;25886:7;25866:9;:28::i;39640:343::-;39782:7;39837:23;39854:5;39837:16;:23::i;:::-;39829:5;:31;39807:124;;;;-1:-1:-1;;;39807:124:0;;8985:2:1;39807:124:0;;;8967:21:1;9024:2;9004:18;;;8997:30;9063:34;9043:18;;;9036:62;-1:-1:-1;;;9114:18:1;;;9107:41;9165:19;;39807:124:0;8783:407:1;39807:124:0;-1:-1:-1;;;;;;39949:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39640:343::o;47349:64::-;47385:28;47337:5;47287:3;47385:28;:::i;:::-;47349:64;:::o;51512:147::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;51614:37:::1;::::0;51580:21:::1;::::0;51622:10:::1;::::0;51614:37;::::1;;;::::0;51580:21;;51562:15:::1;51614:37:::0;51562:15;51614:37;51580:21;51622:10;51614:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51551:108;51512:147::o:0;25973:185::-;26111:39;26128:4;26134:2;26138:7;26111:39;;;;;;;;;;;;:16;:39::i;40249:320::-;40369:7;40424:30;40147:10;:17;;40059:113;40424:30;40416:5;:38;40394:132;;;;-1:-1:-1;;;40394:132:0;;17227:2:1;40394:132:0;;;17209:21:1;17266:2;17246:18;;;17239:30;17305:34;17285:18;;;17278:62;-1:-1:-1;;;17356:18:1;;;17349:42;17408:19;;40394:132:0;17025:408:1;40394:132:0;40544:10;40555:5;40544:17;;;;;;;;:::i;:::-;;;;;;;;;40537:24;;40249:320;;;:::o;48095:130::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48176:15:::1;:41:::0;;-1:-1:-1;;;;;;48176:41:0::1;-1:-1:-1::0;;;;;48176:41:0;;;::::1;::::0;;;::::1;::::0;;48095:130::o;22492:326::-;22609:7;22650:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22650:16:0;22699:19;22677:110;;;;-1:-1:-1;;;22677:110:0;;13294:2:1;22677:110:0;;;13276:21:1;13333:2;13313:18;;;13306:30;13372:34;13352:18;;;13345:62;-1:-1:-1;;;13423:18:1;;;13416:39;13472:19;;22677:110:0;13092:405:1;22135:295:0;22252:7;-1:-1:-1;;;;;22299:19:0;;22277:111;;;;-1:-1:-1;;;22277:111:0;;12883:2:1;22277:111:0;;;12865:21:1;12922:2;12902:18;;;12895:30;12961:34;12941:18;;;12934:62;-1:-1:-1;;;13012:18:1;;;13005:40;13062:19;;22277:111:0;12681:406:1;22277:111:0;-1:-1:-1;;;;;;22406:16:0;;;;;:9;:16;;;;;;;22135:295::o;37735:148::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;37826:6:::1;::::0;37805:40:::1;::::0;37842:1:::1;::::0;-1:-1:-1;;;;;37826:6:0::1;::::0;37805:40:::1;::::0;37842:1;;37805:40:::1;37856:6;:19:::0;;-1:-1:-1;;;;;;37856:19:0::1;::::0;;37735:148::o;49260:465::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;47287:3:::1;49352:23;:13;46557:14:::0;;46465:114;49352:23:::1;:39;49343:87;;;::::0;-1:-1:-1;;;49343:87:0;;15600:2:1;49343:87:0::1;::::0;::::1;15582:21:1::0;15639:2;15619:18;;;15612:30;15678:34;15658:18;;;15651:62;-1:-1:-1;;;15729:18:1;;;15722:33;15772:19;;49343:87:0::1;15398:399:1::0;49343:87:0::1;49448:9;49443:275;49467:14;49463:1;:18;49443:275;;;49503:15;49521:23;:13;46557:14:::0;;46465:114;49521:23:::1;49503:41;;47287:3;49565:23;:13;46557:14:::0;;46465:114;49565:23:::1;:39;49561:146;;;49625:25;:13;:23;:25::i;:::-;49669:22;49679:2;49683:7;49669:9;:22::i;:::-;-1:-1:-1::0;49483:3:0;::::1;::::0;::::1;:::i;:::-;;;;49443:275;;23054:104:::0;23110:13;23143:7;23136:14;;;;;:::i;24847:327::-;-1:-1:-1;;;;;24982:24:0;;16975:10;24982:24;;24974:62;;;;-1:-1:-1;;;24974:62:0;;10985:2:1;24974:62:0;;;10967:21:1;11024:2;11004:18;;;10997:30;11063:27;11043:18;;;11036:55;11108:18;;24974:62:0;10783:349:1;24974:62:0;16975:10;25049:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25049:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25049:53:0;;;;;;;;;;25118:48;;8104:41:1;;;25049:42:0;;16975:10;25118:48;;8077:18:1;25118:48:0;;;;;;;24847:327;;:::o;48362:114::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48440:13:::1;:28:::0;48362:114::o;26229:365::-;26418:41;16975:10;26451:7;26418:18;:41::i;:::-;26396:140;;;;-1:-1:-1;;;26396:140:0;;;;;;;:::i;:::-;26547:39;26561:4;26567:2;26571:7;26580:5;26547:13;:39::i;50821:683::-;28206:4;28230:16;;;:7;:16;;;;;;50894:13;;-1:-1:-1;;;;;28230:16:0;50925:49;;;;-1:-1:-1;;;50925:49:0;;11339:2:1;50925:49:0;;;11321:21:1;11378:2;11358:18;;;11351:30;-1:-1:-1;;;11397:18:1;;;11390:50;11457:18;;50925:49:0;11137:344:1;50925:49:0;50991:13;;;;:21;;:13;:21;50987:488;;;51059:4;51049:7;:14;51029:435;;;51115:14;51131:18;:7;:16;:18::i;:::-;51098:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51084:67;;50821:683;;;:::o;51029:435::-;51188:4;51177:7;:15;;:34;;;;;51206:5;51196:7;:15;51177:34;51173:291;;;51263:14;51279:18;:7;:16;:18::i;51173:291::-;51336:5;51325:7;:16;;:35;;;;;51355:5;51345:7;:15;51325:35;51321:143;;;51412:14;51428:18;:7;:16;:18::i;51321:143::-;-1:-1:-1;;51487:9:0;;;;;;;;;-1:-1:-1;51487:9:0;;;50821:683::o;48826:113::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48902:13:::1;:29:::0;;-1:-1:-1;;48902:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48826:113::o;48484:237::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48590:9:::1;48585:129;48609:16;:23;48605:1;:27;48585:129;;;48695:7;48654:17;:38;48672:16;48689:1;48672:19;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;48654:38:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;48654:38:0;:48;;-1:-1:-1;;48654:48:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48634:3;::::1;::::0;::::1;:::i;:::-;;;;48585:129;;48233:121:::0;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48314:15:::1;:32:::0;48233:121::o;49733:1080::-;47337:5;49812:22;:12;46557:14;;46465:114;49812:22;:37;49803:84;;;;-1:-1:-1;;;49803:84:0;;8582:2:1;49803:84:0;;;8564:21:1;8621:2;8601:18;;;8594:30;8660:34;8640:18;;;8633:62;-1:-1:-1;;;8711:18:1;;;8704:32;8753:19;;49803:84:0;8380:398:1;49803:84:0;37092:6;;-1:-1:-1;;;;;37092:6:0;49904:10;:21;49900:599;;49964:10;49946:29;;;;:17;:29;;;;;;;;49942:282;;50031:15;;50013;:33;50005:67;;;;-1:-1:-1;;;50005:67:0;;14065:2:1;50005:67:0;;;14047:21:1;14104:2;14084:18;;;14077:30;-1:-1:-1;;;14123:18:1;;;14116:52;14185:18;;50005:67:0;13863:346:1;50005:67:0;49942:282;;;50157:13;;50139:15;;:31;;;;:::i;:::-;50121:15;:49;50113:95;;;;-1:-1:-1;;;50113:95:0;;16824:2:1;50113:95:0;;;16806:21:1;16863:2;16843:18;;;16836:30;16902:34;16882:18;;;16875:62;-1:-1:-1;;;16953:18:1;;;16946:32;16995:19;;50113:95:0;16622:398:1;50113:95:0;50274:9;50256:14;50248:5;;:22;;;;:::i;:::-;:35;;50240:75;;;;-1:-1:-1;;;50240:75:0;;11688:2:1;50240:75:0;;;11670:21:1;11727:2;11707:18;;;11700:30;11766;11746:18;;;11739:58;11814:18;;50240:75:0;11486:352:1;50240:75:0;50332:17;50376:3;50365:7;;50353:9;:19;;;;:::i;:::-;50352:27;;;;:::i;:::-;50394:11;;:31;;50332:47;;-1:-1:-1;;;;;;50394:11:0;;:31;;;;;50332:47;;50394:11;:31;:11;:31;50332:47;50394:11;:31;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50440:15:0;;-1:-1:-1;;;;;50440:15:0;:47;50465:21;50477:9;50465;:21;:::i;:::-;50440:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49927:572;49900:599;50516:9;50511:295;50535:14;50531:1;:18;50511:295;;;50571:15;50605:22;:12;46557:14;;46465:114;50605:22;50589:38;;47287:3;50589:38;:::i;:::-;50571:56;;47337:5;50648:22;:12;46557:14;;46465:114;50648:22;:37;50644:151;;;50706:24;:12;:22;:24::i;:::-;50749:30;50759:10;50771:7;50749:9;:30::i;:::-;-1:-1:-1;50551:3:0;;;;:::i;:::-;;;;50511:295;;38038:281;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38141:22:0;::::1;38119:110;;;::::0;-1:-1:-1;;;38119:110:0;;9816:2:1;38119:110:0::1;::::0;::::1;9798:21:1::0;9855:2;9835:18;;;9828:30;9894:34;9874:18;;;9867:62;-1:-1:-1;;;9945:18:1;;;9938:36;9991:19;;38119:110:0::1;9614:402:1::0;38119:110:0::1;38266:6;::::0;38245:38:::1;::::0;-1:-1:-1;;;;;38245:38:0;;::::1;::::0;38266:6:::1;::::0;38245:38:::1;::::0;38266:6:::1;::::0;38245:38:::1;38294:6;:17:::0;;-1:-1:-1;;;;;;38294:17:0::1;-1:-1:-1::0;;;;;38294:17:0;;;::::1;::::0;;;::::1;::::0;;38038:281::o;49156:96::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49227:5:::1;:17:::0;49156:96::o;21716:355::-;21863:4;-1:-1:-1;;;;;;21905:40:0;;-1:-1:-1;;;21905:40:0;;:105;;-1:-1:-1;;;;;;;21962:48:0;;-1:-1:-1;;;21962:48:0;21905:105;:158;;;-1:-1:-1;;;;;;;;;;20326:40:0;;;22027:36;20167:207;32264:174;32339:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32339:29:0;-1:-1:-1;;;;;32339:29:0;;;;;;;;:24;;32393:23;32339:24;32393:14;:23::i;:::-;-1:-1:-1;;;;;32384:46:0;;;;;;;;;;;32264:174;;:::o;28435:452::-;28564:4;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;28586:110;;;;-1:-1:-1;;;28586:110:0;;12045:2:1;28586:110:0;;;12027:21:1;12084:2;12064:18;;;12057:30;12123:34;12103:18;;;12096:62;-1:-1:-1;;;12174:18:1;;;12167:42;12226:19;;28586:110:0;11843:408:1;28586:110:0;28707:13;28723:23;28738:7;28723:14;:23::i;:::-;28707:39;;28776:5;-1:-1:-1;;;;;28765:16:0;:7;-1:-1:-1;;;;;28765:16:0;;:64;;;;28822:7;-1:-1:-1;;;;;28798:31:0;:20;28810:7;28798:11;:20::i;:::-;-1:-1:-1;;;;;28798:31:0;;28765:64;:113;;;-1:-1:-1;;;;;;25416:25:0;;;25387:4;25416:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28846:32;28757:122;28435:452;-1:-1:-1;;;;28435:452:0:o;31531:615::-;31704:4;-1:-1:-1;;;;;31677:31:0;:23;31692:7;31677:14;:23::i;:::-;-1:-1:-1;;;;;31677:31:0;;31655:122;;;;-1:-1:-1;;;31655:122:0;;15190:2:1;31655:122:0;;;15172:21:1;15229:2;15209:18;;;15202:30;15268:34;15248:18;;;15241:62;-1:-1:-1;;;15319:18:1;;;15312:39;15368:19;;31655:122:0;14988:405:1;31655:122:0;-1:-1:-1;;;;;31796:16:0;;31788:65;;;;-1:-1:-1;;;31788:65:0;;10580:2:1;31788:65:0;;;10562:21:1;10619:2;10599:18;;;10592:30;10658:34;10638:18;;;10631:62;-1:-1:-1;;;10709:18:1;;;10702:34;10753:19;;31788:65:0;10378:400:1;31788:65:0;31866:39;31887:4;31893:2;31897:7;31866:20;:39::i;:::-;31970:29;31987:1;31991:7;31970:8;:29::i;:::-;-1:-1:-1;;;;;32012:15:0;;;;;;:9;:15;;;;;:20;;32031:1;;32012:15;:20;;32031:1;;32012:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32043:13:0;;;;;;:9;:13;;;;;:18;;32060:1;;32043:13;:18;;32060:1;;32043:18;:::i;:::-;;;;-1:-1:-1;;32072:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32072:21:0;-1:-1:-1;;;;;32072:21:0;;;;;;;;;32111:27;;32072:16;;32111:27;;;;;;;31531:615;;;:::o;46587:117::-;46684:1;46666:7;:14;;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;;46587:117:0:o;29229:110::-;29305:26;29315:2;29319:7;29305:26;;;;;;;;;;;;:9;:26::i;27476:352::-;27633:28;27643:4;27649:2;27653:7;27633:9;:28::i;:::-;27694:48;27717:4;27723:2;27727:7;27736:5;27694:22;:48::i;:::-;27672:148;;;;-1:-1:-1;;;27672:148:0;;;;;;;:::i;17567:723::-;17623:13;17844:10;17840:53;;-1:-1:-1;;17871:10:0;;;;;;;;;;;;-1:-1:-1;;;17871:10:0;;;;;17567:723::o;17840:53::-;17918:5;17903:12;17959:78;17966:9;;17959:78;;17992:8;;;;:::i;:::-;;-1:-1:-1;18015:10:0;;-1:-1:-1;18023:2:0;18015:10;;:::i;:::-;;;17959:78;;;18047:19;18079:6;18069:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18069:17:0;;18047:39;;18097:154;18104:10;;18097:154;;18131:11;18141:1;18131:11;;:::i;:::-;;-1:-1:-1;18200:10:0;18208:2;18200:5;:10;:::i;:::-;18187:24;;:2;:24;:::i;:::-;18174:39;;18157:6;18164;18157:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18157:56:0;;;;;;;;-1:-1:-1;18228:11:0;18237:2;18228:11;;:::i;:::-;;;18097:154;;41182:589;-1:-1:-1;;;;;41388:18:0;;41384:187;;41423:40;41455:7;42598:10;:17;;42571:24;;;;:15;:24;;;;;:44;;;42626:24;;;;;;;;;;;;42494:164;41423:40;41384:187;;;41493:2;-1:-1:-1;;;;;41485:10:0;:4;-1:-1:-1;;;;;41485:10:0;;41481:90;;41512:47;41545:4;41551:7;41512:32;:47::i;:::-;-1:-1:-1;;;;;41585:16:0;;41581:183;;41618:45;41655:7;41618:36;:45::i;41581:183::-;41691:4;-1:-1:-1;;;;;41685:10:0;:2;-1:-1:-1;;;;;41685:10:0;;41681:83;;41712:40;41740:2;41744:7;41712:27;:40::i;29566:321::-;29696:18;29702:2;29706:7;29696:5;:18::i;:::-;29747:54;29778:1;29782:2;29786:7;29795:5;29747:22;:54::i;:::-;29725:154;;;;-1:-1:-1;;;29725:154:0;;;;;;;:::i;33003:1053::-;33158:4;-1:-1:-1;;;;;33179:13:0;;8674:20;8722:8;33175:874;;33232:175;;-1:-1:-1;;;33232:175:0;;-1:-1:-1;;;;;33232:36:0;;;;;:175;;16975:10;;33326:4;;33353:7;;33383:5;;33232:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33232:175:0;;;;;;;;-1:-1:-1;;33232:175:0;;;;;;;;;;;;:::i;:::-;;;33211:783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33594:13:0;;33590:389;;33637:108;;-1:-1:-1;;;33637:108:0;;;;;;;:::i;33590:389::-;33929:6;33923:13;33914:6;33910:2;33906:15;33899:38;33211:783;-1:-1:-1;;;;;;33471:55:0;-1:-1:-1;;;33471:55:0;;-1:-1:-1;33464:62:0;;33175:874;-1:-1:-1;34033:4:0;33003:1053;;;;;;:::o;43285:1002::-;43565:22;43615:1;43590:22;43607:4;43590:16;:22::i;:::-;:26;;;;:::i;:::-;43627:18;43648:26;;;:17;:26;;;;;;43565:51;;-1:-1:-1;43781:28:0;;;43777:328;;-1:-1:-1;;;;;43848:18:0;;43826:19;43848:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43899:30;;;;;;:44;;;44016:30;;:17;:30;;;;;:43;;;43777:328;-1:-1:-1;44201:26:0;;;;:17;:26;;;;;;;;44194:33;;;-1:-1:-1;;;;;44245:18:0;;;;;:12;:18;;;;;:34;;;;;;;44238:41;43285:1002::o;44582:1079::-;44860:10;:17;44835:22;;44860:21;;44880:1;;44860:21;:::i;:::-;44892:18;44913:24;;;:15;:24;;;;;;45286:10;:26;;44835:46;;-1:-1:-1;44913:24:0;;44835:46;;45286:26;;;;;;:::i;:::-;;;;;;;;;45264:48;;45350:11;45325:10;45336;45325:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45430:28;;;:15;:28;;;;;;;:41;;;45602:24;;;;;45595:31;45637:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44653:1008;;;44582:1079;:::o;42072:221::-;42157:14;42174:20;42191:2;42174:16;:20::i;:::-;-1:-1:-1;;;;;42205:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42250:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42072:221:0:o;30223:382::-;-1:-1:-1;;;;;30303:16:0;;30295:61;;;;-1:-1:-1;;;30295:61:0;;13704:2:1;30295:61:0;;;13686:21:1;;;13723:18;;;13716:30;13782:34;13762:18;;;13755:62;13834:18;;30295:61:0;13502:356:1;30295:61:0;28206:4;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;:30;30367:58;;;;-1:-1:-1;;;30367:58:0;;10223:2:1;30367:58:0;;;10205:21:1;10262:2;10242:18;;;10235:30;10301;10281:18;;;10274:58;10349:18;;30367:58:0;10021:352:1;30367:58:0;30438:45;30467:1;30471:2;30475:7;30438:20;:45::i;:::-;-1:-1:-1;;;;;30496:13:0;;;;;;:9;:13;;;;;:18;;30513:1;;30496:13;:18;;30513:1;;30496:18;:::i;:::-;;;;-1:-1:-1;;30525:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30525:21:0;-1:-1:-1;;;;;30525:21:0;;;;;;;;30564:33;;30525:16;;;30564:33;;30525:16;;30564:33;30223:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:221;811:5;864:3;857:4;849:6;845:17;841:27;831:55;;882:1;879;872:12;831:55;904:79;979:3;970:6;957:20;950:4;942:6;938:17;904:79;:::i;:::-;895:88;768:221;-1:-1:-1;;;768:221:1:o;994:186::-;1053:6;1106:2;1094:9;1085:7;1081:23;1077:32;1074:52;;;1122:1;1119;1112:12;1074:52;1145:29;1164:9;1145:29;:::i;1185:260::-;1253:6;1261;1314:2;1302:9;1293:7;1289:23;1285:32;1282:52;;;1330:1;1327;1320:12;1282:52;1353:29;1372:9;1353:29;:::i;:::-;1343:39;;1401:38;1435:2;1424:9;1420:18;1401:38;:::i;:::-;1391:48;;1185:260;;;;;:::o;1450:328::-;1527:6;1535;1543;1596:2;1584:9;1575:7;1571:23;1567:32;1564:52;;;1612:1;1609;1602:12;1564:52;1635:29;1654:9;1635:29;:::i;:::-;1625:39;;1683:38;1717:2;1706:9;1702:18;1683:38;:::i;:::-;1673:48;;1768:2;1757:9;1753:18;1740:32;1730:42;;1450:328;;;;;:::o;1783:666::-;1878:6;1886;1894;1902;1955:3;1943:9;1934:7;1930:23;1926:33;1923:53;;;1972:1;1969;1962:12;1923:53;1995:29;2014:9;1995:29;:::i;:::-;1985:39;;2043:38;2077:2;2066:9;2062:18;2043:38;:::i;:::-;2033:48;;2128:2;2117:9;2113:18;2100:32;2090:42;;2183:2;2172:9;2168:18;2155:32;2210:18;2202:6;2199:30;2196:50;;;2242:1;2239;2232:12;2196:50;2265:22;;2318:4;2310:13;;2306:27;-1:-1:-1;2296:55:1;;2347:1;2344;2337:12;2296:55;2370:73;2435:7;2430:2;2417:16;2412:2;2408;2404:11;2370:73;:::i;:::-;2360:83;;;1783:666;;;;;;;:::o;2454:254::-;2519:6;2527;2580:2;2568:9;2559:7;2555:23;2551:32;2548:52;;;2596:1;2593;2586:12;2548:52;2619:29;2638:9;2619:29;:::i;:::-;2609:39;;2667:35;2698:2;2687:9;2683:18;2667:35;:::i;2713:254::-;2781:6;2789;2842:2;2830:9;2821:7;2817:23;2813:32;2810:52;;;2858:1;2855;2848:12;2810:52;2881:29;2900:9;2881:29;:::i;:::-;2871:39;2957:2;2942:18;;;;2929:32;;-1:-1:-1;;;2713:254:1:o;2972:1033::-;3062:6;3070;3123:2;3111:9;3102:7;3098:23;3094:32;3091:52;;;3139:1;3136;3129:12;3091:52;3179:9;3166:23;3208:18;3249:2;3241:6;3238:14;3235:34;;;3265:1;3262;3255:12;3235:34;3303:6;3292:9;3288:22;3278:32;;3348:7;3341:4;3337:2;3333:13;3329:27;3319:55;;3370:1;3367;3360:12;3319:55;3406:2;3393:16;3428:4;3451:2;3447;3444:10;3441:36;;;3457:18;;:::i;:::-;3503:2;3500:1;3496:10;3486:20;;3526:28;3550:2;3546;3542:11;3526:28;:::i;:::-;3588:15;;;3619:12;;;;3651:11;;;3681;;;3677:20;;3674:33;-1:-1:-1;3671:53:1;;;3720:1;3717;3710:12;3671:53;3742:1;3733:10;;3752:169;3766:2;3763:1;3760:9;3752:169;;;3823:23;3842:3;3823:23;:::i;:::-;3811:36;;3784:1;3777:9;;;;;3867:12;;;;3899;;3752:169;;;-1:-1:-1;3940:5:1;-1:-1:-1;3964:35:1;;-1:-1:-1;3980:18:1;;;3964:35;:::i;:::-;3954:45;;;;;;2972:1033;;;;;:::o;4010:180::-;4066:6;4119:2;4107:9;4098:7;4094:23;4090:32;4087:52;;;4135:1;4132;4125:12;4087:52;4158:26;4174:9;4158:26;:::i;4195:245::-;4253:6;4306:2;4294:9;4285:7;4281:23;4277:32;4274:52;;;4322:1;4319;4312:12;4274:52;4361:9;4348:23;4380:30;4404:5;4380:30;:::i;4445:249::-;4514:6;4567:2;4555:9;4546:7;4542:23;4538:32;4535:52;;;4583:1;4580;4573:12;4535:52;4615:9;4609:16;4634:30;4658:5;4634:30;:::i;4699:743::-;4806:6;4814;4822;4875:2;4863:9;4854:7;4850:23;4846:32;4843:52;;;4891:1;4888;4881:12;4843:52;4931:9;4918:23;4960:18;5001:2;4993:6;4990:14;4987:34;;;5017:1;5014;5007:12;4987:34;5040:50;5082:7;5073:6;5062:9;5058:22;5040:50;:::i;:::-;5030:60;;5143:2;5132:9;5128:18;5115:32;5099:48;;5172:2;5162:8;5159:16;5156:36;;;5188:1;5185;5178:12;5156:36;5211:52;5255:7;5244:8;5233:9;5229:24;5211:52;:::i;:::-;5201:62;;5316:2;5305:9;5301:18;5288:32;5272:48;;5345:2;5335:8;5332:16;5329:36;;;5361:1;5358;5351:12;5329:36;;5384:52;5428:7;5417:8;5406:9;5402:24;5384:52;:::i;:::-;5374:62;;;4699:743;;;;;:::o;5447:180::-;5506:6;5559:2;5547:9;5538:7;5534:23;5530:32;5527:52;;;5575:1;5572;5565:12;5527:52;-1:-1:-1;5598:23:1;;5447:180;-1:-1:-1;5447:180:1:o;5632:257::-;5673:3;5711:5;5705:12;5738:6;5733:3;5726:19;5754:63;5810:6;5803:4;5798:3;5794:14;5787:4;5780:5;5776:16;5754:63;:::i;:::-;5871:2;5850:15;-1:-1:-1;;5846:29:1;5837:39;;;;5878:4;5833:50;;5632:257;-1:-1:-1;;5632:257:1:o;5894:185::-;5936:3;5974:5;5968:12;5989:52;6034:6;6029:3;6022:4;6015:5;6011:16;5989:52;:::i;:::-;6057:16;;;;;5894:185;-1:-1:-1;;5894:185:1:o;6084:1174::-;6260:3;6289:1;6322:6;6316:13;6352:3;6374:1;6402:9;6398:2;6394:18;6384:28;;6462:2;6451:9;6447:18;6484;6474:61;;6528:4;6520:6;6516:17;6506:27;;6474:61;6554:2;6602;6594:6;6591:14;6571:18;6568:38;6565:165;;;-1:-1:-1;;;6629:33:1;;6685:4;6682:1;6675:15;6715:4;6636:3;6703:17;6565:165;6746:18;6773:104;;;;6891:1;6886:320;;;;6739:467;;6773:104;-1:-1:-1;;6806:24:1;;6794:37;;6851:16;;;;-1:-1:-1;6773:104:1;;6886:320;17973:1;17966:14;;;18010:4;17997:18;;6981:1;6995:165;7009:6;7006:1;7003:13;6995:165;;;7087:14;;7074:11;;;7067:35;7130:16;;;;7024:10;;6995:165;;;6999:3;;7189:6;7184:3;7180:16;7173:23;;6739:467;;;;;;;7222:30;7248:3;7240:6;7222:30;:::i;:::-;7215:37;6084:1174;-1:-1:-1;;;;;6084:1174:1:o;7471:488::-;-1:-1:-1;;;;;7740:15:1;;;7722:34;;7792:15;;7787:2;7772:18;;7765:43;7839:2;7824:18;;7817:34;;;7887:3;7882:2;7867:18;;7860:31;;;7665:4;;7908:45;;7933:19;;7925:6;7908:45;:::i;:::-;7900:53;7471:488;-1:-1:-1;;;;;;7471:488:1:o;8156:219::-;8305:2;8294:9;8287:21;8268:4;8325:44;8365:2;8354:9;8350:18;8342:6;8325:44;:::i;9195:414::-;9397:2;9379:21;;;9436:2;9416:18;;;9409:30;9475:34;9470:2;9455:18;;9448:62;-1:-1:-1;;;9541:2:1;9526:18;;9519:48;9599:3;9584:19;;9195:414::o;14627:356::-;14829:2;14811:21;;;14848:18;;;14841:30;14907:34;14902:2;14887:18;;14880:62;14974:2;14959:18;;14627:356::o;16204:413::-;16406:2;16388:21;;;16445:2;16425:18;;;16418:30;16484:34;16479:2;16464:18;;16457:62;-1:-1:-1;;;16550:2:1;16535:18;;16528:47;16607:3;16592:19;;16204:413::o;17620:275::-;17691:2;17685:9;17756:2;17737:13;;-1:-1:-1;;17733:27:1;17721:40;;17791:18;17776:34;;17812:22;;;17773:62;17770:88;;;17838:18;;:::i;:::-;17874:2;17867:22;17620:275;;-1:-1:-1;17620:275:1:o;18026:128::-;18066:3;18097:1;18093:6;18090:1;18087:13;18084:39;;;18103:18;;:::i;:::-;-1:-1:-1;18139:9:1;;18026:128::o;18159:120::-;18199:1;18225;18215:35;;18230:18;;:::i;:::-;-1:-1:-1;18264:9:1;;18159:120::o;18284:168::-;18324:7;18390:1;18386;18382:6;18378:14;18375:1;18372:21;18367:1;18360:9;18353:17;18349:45;18346:71;;;18397:18;;:::i;:::-;-1:-1:-1;18437:9:1;;18284:168::o;18457:125::-;18497:4;18525:1;18522;18519:8;18516:34;;;18530:18;;:::i;:::-;-1:-1:-1;18567:9:1;;18457:125::o;18587:258::-;18659:1;18669:113;18683:6;18680:1;18677:13;18669:113;;;18759:11;;;18753:18;18740:11;;;18733:39;18705:2;18698:10;18669:113;;;18800:6;18797:1;18794:13;18791:48;;;-1:-1:-1;;18835:1:1;18817:16;;18810:27;18587:258::o;18850:380::-;18929:1;18925:12;;;;18972;;;18993:61;;19047:4;19039:6;19035:17;19025:27;;18993:61;19100:2;19092:6;19089:14;19069:18;19066:38;19063:161;;;19146:10;19141:3;19137:20;19134:1;19127:31;19181:4;19178:1;19171:15;19209:4;19206:1;19199:15;19063:161;;18850:380;;;:::o;19235:135::-;19274:3;-1:-1:-1;;19295:17:1;;19292:43;;;19315:18;;:::i;:::-;-1:-1:-1;19362:1:1;19351:13;;19235:135::o;19375:112::-;19407:1;19433;19423:35;;19438:18;;:::i;:::-;-1:-1:-1;19472:9:1;;19375:112::o;19492:127::-;19553:10;19548:3;19544:20;19541:1;19534:31;19584:4;19581:1;19574:15;19608:4;19605:1;19598:15;19624:127;19685:10;19680:3;19676:20;19673:1;19666:31;19716:4;19713:1;19706:15;19740:4;19737:1;19730:15;19756:127;19817:10;19812:3;19808:20;19805:1;19798:31;19848:4;19845:1;19838:15;19872:4;19869:1;19862:15;19888:127;19949:10;19944:3;19940:20;19937:1;19930:31;19980:4;19977:1;19970:15;20004:4;20001:1;19994:15;20020:127;20081:10;20076:3;20072:20;20069:1;20062:31;20112:4;20109:1;20102:15;20136:4;20133:1;20126:15;20152:131;-1:-1:-1;;;;;;20226:32:1;;20216:43;;20206:71;;20273:1;20270;20263:12;20206:71;20152:131;:::o

Swarm Source

ipfs://bd7399ec235dd3590439e8eb875cf17595d0a51b597bdb3ac6997d56f05f6d8a
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.