ETH Price: $2,426.91 (-8.92%)

Token

Mr Frankenstein NFT (MFN)
 

Overview

Max Total Supply

78 MFN

Holders

39

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
MrFrankensteinNFT

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-17
*/

// 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 MrFrankensteinNFT is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    address payable private _presalePaymentAddress = payable(0x03B8D7aa78BA5B447fff5A56a4fD4105c94c850A);
    address payable private _publicPaymentAddress = payable(0xc7Fe951e0E214C45CeBd82435adf3BFd0811871a);
    address payable private _DevAddress;

    uint256 public MFN_MAX = 10000;
    uint256 public PRESALE_PRICE = 100_000_000_000_000_000; // 0.1 ETH
    uint256 public PUBLIC_PRICE = 300_000_000_000_000_000; // 0.3 ETH
    uint256 public PRESALE_MINT_LIMIT = 1;
    uint256 public PUBLIC_MINT_LIMIT = 3;
    uint256 private DEV_FEE = 0;
    uint256 private REVEAL_DELAY = 0 hours;
    uint256 private PRESALE_HOURS = 24 hours;
    uint256 public PURCHASE_LIMIT = 20;
    
    mapping(address => bool) _mappingWhiteList;
    mapping(uint256 => uint256) _mappingMintTimestamp;
    mapping(address => uint256) _mappingMintCount;

    uint256 private _activeDateTime = 1639173600; // Date and time (GMT): Friday, December 10, 2021 10:00:00 PM
    
    string private _tokenBaseURI1 = "";
    string private _tokenBaseURI2 = "";
    string private _tokenBaseURI3 = "";
    string private _tokenBaseURI4 = "";
    string private _tokenBaseURI5 = "";
    string private _tokenBaseURI6 = "";

    Counters.Counter private _publicMFN;

    constructor() ERC721("Mr Frankenstein NFT", "MFN ") {
        _DevAddress = payable(msg.sender);
    }

    function setPaymentAddress(address presalePaymentAddress, address publicPaymentAddress) external onlyOwner {
        _presalePaymentAddress = payable(presalePaymentAddress);
        _publicPaymentAddress = payable(publicPaymentAddress);
    }

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

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

    function setRevealDelay(uint256 revealDelay) external onlyOwner {
        REVEAL_DELAY = revealDelay;
    }

    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 setMintPrice(uint256 presaleMintPrice, uint256 publicMintPrice) external onlyOwner {
        PRESALE_PRICE = presaleMintPrice;
        PUBLIC_PRICE = publicMintPrice;
    }

    function setMaxLimit(uint256 maxLimit) external onlyOwner {
        MFN_MAX = maxLimit;
    }

    function setPurchaseLimit(uint256 purchaseLimit) external onlyOwner {
        PURCHASE_LIMIT = purchaseLimit;
    }

    function setMintLimit(uint256 presaleLimit, uint256 publicLimit) external onlyOwner {
        PRESALE_MINT_LIMIT = presaleLimit;
        PUBLIC_MINT_LIMIT = publicLimit;
    }

    function setBaseURI(
        string memory URI1,
        string memory URI2,
        string memory URI3,
        string memory URI4,
        string memory URI5,
        string memory URI6
    ) external onlyOwner {
        if (bytes(URI1).length != 0) _tokenBaseURI1 = URI1;
        if (bytes(URI2).length != 0) _tokenBaseURI2 = URI2;
        if (bytes(URI3).length != 0) _tokenBaseURI3 = URI3;
        if (bytes(URI4).length != 0) _tokenBaseURI4 = URI4;
        if (bytes(URI5).length != 0) _tokenBaseURI5 = URI5;
        if (bytes(URI6).length != 0) _tokenBaseURI6 = URI6;
    }

    function airdrop(address to, uint256 numberOfTokens) external onlyOwner {
        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = _publicMFN.current();

            if (_publicMFN.current() < MFN_MAX) {
                _publicMFN.increment();
                _safeMint(to, tokenId);
                _mappingMintTimestamp[tokenId] = block.timestamp;
            }
        }
    }

    function purchase(uint256 numberOfTokens) external payable {
        require(numberOfTokens <= PURCHASE_LIMIT,"Can only mint up to purchase limit");
        require(_publicMFN.current() < MFN_MAX,"Purchase would exceed MFN_MAX");

        if (msg.sender != owner()) {
            if (_mappingWhiteList[msg.sender] == false) {
                require(block.timestamp > _activeDateTime,"Contract is not active");
                require(_mappingMintCount[msg.sender] < PUBLIC_MINT_LIMIT,"Over than PUBLIC_MINT_LIMIT");
                require(PUBLIC_PRICE * numberOfTokens <= msg.value,"ETH amount is not sufficient");

                uint256 feeAmount = (msg.value * DEV_FEE) / 100;
                _DevAddress.transfer(feeAmount);
                _publicPaymentAddress.transfer(msg.value - feeAmount);
            } else {
                require(block.timestamp > _activeDateTime - PRESALE_HOURS,"Contract is not active for presale");
                require(_mappingMintCount[msg.sender] < PRESALE_MINT_LIMIT,"Over than PRESALE_MINT_LIMIT");
                require(PRESALE_PRICE * numberOfTokens <= msg.value,"ETH amount is not sufficient");

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

            _mappingMintCount[msg.sender] = _mappingMintCount[msg.sender] + 1;
        }

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

            if (_publicMFN.current() < MFN_MAX) {
                _publicMFN.increment();
                _safeMint(msg.sender, tokenId);
                _mappingMintTimestamp[tokenId] = block.timestamp;
            }
        }
    }

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

        if (_mappingMintTimestamp[tokenId] + REVEAL_DELAY < block.timestamp) {
            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()));
            } else if (tokenId >= 15000 && tokenId < 20000) {
                return string(abi.encodePacked(_tokenBaseURI4, tokenId.toString()));
            } else if (tokenId >= 20000 && tokenId < 25000) {
                return string(abi.encodePacked(_tokenBaseURI5, tokenId.toString()));
            } else if (tokenId >= 25000 && tokenId < 30000) {
                return string(abi.encodePacked(_tokenBaseURI6, 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":"MFN_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","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"},{"internalType":"string","name":"URI4","type":"string"},{"internalType":"string","name":"URI5","type":"string"},{"internalType":"string","name":"URI6","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":"maxLimit","type":"uint256"}],"name":"setMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"presaleLimit","type":"uint256"},{"internalType":"uint256","name":"publicLimit","type":"uint256"}],"name":"setMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"presaleMintPrice","type":"uint256"},{"internalType":"uint256","name":"publicMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"presalePaymentAddress","type":"address"},{"internalType":"address","name":"publicPaymentAddress","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":"uint256","name":"purchaseLimit","type":"uint256"}],"name":"setPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"revealDelay","type":"uint256"}],"name":"setRevealDelay","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"}]

600c80546001600160a01b03199081167303b8d7aa78ba5b447fff5a56a4fd4105c94c850a17909155600d805490911673c7fe951e0e214c45cebd82435adf3bfd0811871a179055612710600f5567016345785d8a0000601055670429d069189e000060115560016012556003601355600060148181556015829055620151806016556017556361b3cde0601b5560a060408190526080829052620000a891601c91906200025e565b50604080516020810191829052600090819052620000c991601d916200025e565b50604080516020810191829052600090819052620000ea91601e916200025e565b506040805160208101918290526000908190526200010b91601f916200025e565b50604080516020808201928390526000918290526200012c9290916200025e565b506040805160208101918290526000908190526200014d916021916200025e565b503480156200015b57600080fd5b50604080518082018252601381527f4d72204672616e6b656e737465696e204e465400000000000000000000000000602080830191825283518085019094526004845263026a327160e51b908401528151919291620001bd916000916200025e565b508051620001d39060019060208401906200025e565b5050506000620001e86200025a60201b60201c565b600a80546001600160a01b0383166001600160a01b03199182168117909255600b805490911682179055604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600e80546001600160a01b0319163317905562000341565b3390565b8280546200026c9062000304565b90600052602060002090601f016020900481019282620002905760008555620002db565b82601f10620002ab57805160ff1916838001178555620002db565b82800160010185558215620002db579182015b82811115620002db578251825591602001919060010190620002be565b50620002e9929150620002ed565b5090565b5b80821115620002e95760008155600101620002ee565b600181811c908216806200031957607f821691505b602082108114156200033b57634e487b7160e01b600052602260045260246000fd5b50919050565b612c6080620003516000396000f3fe6080604052600436106102305760003560e01c8063715018a61161012e578063bceae77b116100ab578063e62207701161006f578063e622077014610650578063e985e9c514610670578063efef39a1146106b9578063f2fde38b146106cc578063f5ebec80146106ec57600080fd5b8063bceae77b146105c4578063bf8bcee4146105da578063c87b56dd146105fa578063d75e61101461061a578063e43f696e1461063057600080fd5b8063a68c25d8116100f2578063a68c25d81461052e578063ae8e58201461054e578063b44302a31461056e578063b6305b241461058e578063b88d4fde146105a457600080fd5b8063715018a6146104a65780638ba4cc3c146104bb5780638da5cb5b146104db57806395d89b41146104f9578063a22cb4651461050e57600080fd5b80633ccfd60b116101bc57806362dc6e211161018057806362dc6e21146104105780636352211e146104265780636edc4388146104465780636fad40d51461046657806370a082311461048657600080fd5b80633ccfd60b146103855780634080a9b81461039a57806342842e0e146103ba5780634f6ccce7146103da578063611f3f10146103fa57600080fd5b8063095ea7b311610203578063095ea7b3146102e657806318160ddd146103065780631c75b6b21461032557806323b872dd146103455780632f745c591461036557600080fd5b806301ffc9a7146102355780630442bfa81461026a57806306fdde031461028c578063081812fc146102ae575b600080fd5b34801561024157600080fd5b5061025561025036600461244e565b610702565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061028a610285366004612472565b61072d565b005b34801561029857600080fd5b506102a1610780565b60405161026191906124ec565b3480156102ba57600080fd5b506102ce6102c93660046124ff565b610812565b6040516001600160a01b039091168152602001610261565b3480156102f257600080fd5b5061028a610301366004612534565b6108a7565b34801561031257600080fd5b506008545b604051908152602001610261565b34801561033157600080fd5b5061028a6103403660046124ff565b6109bd565b34801561035157600080fd5b5061028a61036036600461255e565b610a01565b34801561037157600080fd5b50610317610380366004612534565b610a32565b34801561039157600080fd5b5061028a610ac8565b3480156103a657600080fd5b5061028a6103b536600461259a565b610b3a565b3480156103c657600080fd5b5061028a6103d536600461255e565b610ba7565b3480156103e657600080fd5b506103176103f53660046124ff565b610bc2565b34801561040657600080fd5b5061031760115481565b34801561041c57600080fd5b5061031760105481565b34801561043257600080fd5b506102ce6104413660046124ff565b610c55565b34801561045257600080fd5b5061028a6104613660046124ff565b610ccc565b34801561047257600080fd5b5061028a610481366004612472565b610d10565b34801561049257600080fd5b506103176104a13660046125cd565b610d5a565b3480156104b257600080fd5b5061028a610de1565b3480156104c757600080fd5b5061028a6104d6366004612534565b610e6a565b3480156104e757600080fd5b50600a546001600160a01b03166102ce565b34801561050557600080fd5b506102a1610f0c565b34801561051a57600080fd5b5061028a6105293660046125f8565b610f1b565b34801561053a57600080fd5b5061028a6105493660046124ff565b610fe0565b34801561055a57600080fd5b5061028a6105693660046126e1565b611024565b34801561057a57600080fd5b5061028a6105893660046124ff565b611112565b34801561059a57600080fd5b50610317600f5481565b3480156105b057600080fd5b5061028a6105bf3660046127d6565b611156565b3480156105d057600080fd5b5061031760135481565b3480156105e657600080fd5b5061028a6105f53660046124ff565b61118e565b34801561060657600080fd5b506102a16106153660046124ff565b6111d2565b34801561062657600080fd5b5061031760175481565b34801561063c57600080fd5b5061028a61064b366004612852565b611352565b34801561065c57600080fd5b5061028a61066b3660046124ff565b6113f8565b34801561067c57600080fd5b5061025561068b36600461259a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61028a6106c73660046124ff565b61143c565b3480156106d857600080fd5b5061028a6106e73660046125cd565b61190d565b3480156106f857600080fd5b5061031760125481565b60006001600160e01b0319821663780e9d6360e01b1480610727575061072782611a0d565b92915050565b600a546001600160a01b03163314806107505750600b546001600160a01b031633145b6107755760405162461bcd60e51b815260040161076c90612911565b60405180910390fd5b601091909155601155565b60606000805461078f90612946565b80601f01602080910402602001604051908101604052809291908181526020018280546107bb90612946565b80156108085780601f106107dd57610100808354040283529160200191610808565b820191906000526020600020905b8154815290600101906020018083116107eb57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661088b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076c565b506000908152600460205260409020546001600160a01b031690565b60006108b282610c55565b9050806001600160a01b0316836001600160a01b031614156109205760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161076c565b336001600160a01b038216148061093c575061093c813361068b565b6109ae5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161076c565b6109b88383611a5d565b505050565b600a546001600160a01b03163314806109e05750600b546001600160a01b031633145b6109fc5760405162461bcd60e51b815260040161076c90612911565b601455565b610a0b3382611acb565b610a275760405162461bcd60e51b815260040161076c90612981565b6109b8838383611bc2565b6000610a3d83610d5a565b8210610a9f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161076c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331480610aeb5750600b546001600160a01b031633145b610b075760405162461bcd60e51b815260040161076c90612911565b6040514790339082156108fc029083906000818181858888f19350505050158015610b36573d6000803e3d6000fd5b5050565b600a546001600160a01b0316331480610b5d5750600b546001600160a01b031633145b610b795760405162461bcd60e51b815260040161076c90612911565b600c80546001600160a01b039384166001600160a01b031991821617909155600d8054929093169116179055565b6109b883838360405180602001604052806000815250611156565b6000610bcd60085490565b8210610c305760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161076c565b60088281548110610c4357610c436129d2565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806107275760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161076c565b600a546001600160a01b0316331480610cef5750600b546001600160a01b031633145b610d0b5760405162461bcd60e51b815260040161076c90612911565b601755565b600a546001600160a01b0316331480610d335750600b546001600160a01b031633145b610d4f5760405162461bcd60e51b815260040161076c90612911565b601291909155601355565b60006001600160a01b038216610dc55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161076c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610e045750600b546001600160a01b031633145b610e205760405162461bcd60e51b815260040161076c90612911565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610e8d5750600b546001600160a01b031633145b610ea95760405162461bcd60e51b815260040161076c90612911565b60005b818110156109b8576000610ebf60225490565b9050600f54610ecd60225490565b1015610ef957610edd6022611d6d565b610ee78482611d8a565b60008181526019602052604090204290555b5080610f04816129fe565b915050610eac565b60606001805461078f90612946565b6001600160a01b038216331415610f745760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161076c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314806110035750600b546001600160a01b031633145b61101f5760405162461bcd60e51b815260040161076c90612911565b601555565b600a546001600160a01b03163314806110475750600b546001600160a01b031633145b6110635760405162461bcd60e51b815260040161076c90612911565b85511561107f57855161107d90601c90602089019061239c565b505b84511561109b57845161109990601d90602088019061239c565b505b8351156110b75783516110b590601e90602087019061239c565b505b8251156110d35782516110d190601f90602086019061239c565b505b8151156110ee5781516110ec906020908185019061239c565b505b80511561110a57805161110890602190602084019061239c565b505b505050505050565b600a546001600160a01b03163314806111355750600b546001600160a01b031633145b6111515760405162461bcd60e51b815260040161076c90612911565b601655565b6111603383611acb565b61117c5760405162461bcd60e51b815260040161076c90612981565b61118884848484611da4565b50505050565b600a546001600160a01b03163314806111b15750600b546001600160a01b031633145b6111cd5760405162461bcd60e51b815260040161076c90612911565b600f55565b6000818152600260205260409020546060906001600160a01b03166112305760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604482015260640161076c565b601554600083815260196020526040902054429161124d91612a19565b101561133e5761138882101561128f57601c61126883611dd7565b604051602001611279929190612a4d565b6040516020818303038152906040529050919050565b61138882101580156112a2575061271082105b156112b257601d61126883611dd7565b61271082101580156112c55750613a9882105b156112d557601e61126883611dd7565b613a9882101580156112e85750614e2082105b156112f857601f61126883611dd7565b614e20821015801561130b57506161a882105b1561131b57602061126883611dd7565b6161a8821015801561132e575061753082105b1561133e57602161126883611dd7565b505060408051602081019091526000815290565b600a546001600160a01b03163314806113755750600b546001600160a01b031633145b6113915760405162461bcd60e51b815260040161076c90612911565b60005b82518110156109b85781601860008584815181106113b4576113b46129d2565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806113f0816129fe565b915050611394565b600a546001600160a01b031633148061141b5750600b546001600160a01b031633145b6114375760405162461bcd60e51b815260040161076c90612911565b601b55565b6017548111156114995760405162461bcd60e51b815260206004820152602260248201527f43616e206f6e6c79206d696e7420757020746f207075726368617365206c696d6044820152611a5d60f21b606482015260840161076c565b600f54602254106114ec5760405162461bcd60e51b815260206004820152601d60248201527f507572636861736520776f756c6420657863656564204d464e5f4d4158000000604482015260640161076c565b600a546001600160a01b031633146118aa573360009081526018602052604090205460ff166116bc57601b54421161155f5760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b604482015260640161076c565b601354336000908152601a6020526040902054106115bf5760405162461bcd60e51b815260206004820152601b60248201527f4f766572207468616e205055424c49435f4d494e545f4c494d49540000000000604482015260640161076c565b34816011546115ce9190612af4565b111561161c5760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604482015260640161076c565b600060646014543461162e9190612af4565b6116389190612b29565b600e546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611673573d6000803e3d6000fd5b50600d546001600160a01b03166108fc61168d8334612b3d565b6040518115909202916000818181858888f193505050501580156116b5573d6000803e3d6000fd5b505061187e565b601654601b546116cc9190612b3d565b42116117255760405162461bcd60e51b815260206004820152602260248201527f436f6e7472616374206973206e6f742061637469766520666f722070726573616044820152616c6560f01b606482015260840161076c565b601254336000908152601a6020526040902054106117855760405162461bcd60e51b815260206004820152601c60248201527f4f766572207468616e2050524553414c455f4d494e545f4c494d495400000000604482015260640161076c565b34816010546117949190612af4565b11156117e25760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604482015260640161076c565b60006064601454346117f49190612af4565b6117fe9190612b29565b600e546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611839573d6000803e3d6000fd5b50600c546001600160a01b03166108fc6118538334612b3d565b6040518115909202916000818181858888f1935050505015801561187b573d6000803e3d6000fd5b50505b336000908152601a6020526040902054611899906001612a19565b336000908152601a60205260409020555b60005b81811015610b365760006118c060225490565b9050600f546118ce60225490565b10156118fa576118de6022611d6d565b6118e83382611d8a565b60008181526019602052604090204290555b5080611905816129fe565b9150506118ad565b600a546001600160a01b03163314806119305750600b546001600160a01b031633145b61194c5760405162461bcd60e51b815260040161076c90612911565b6001600160a01b0381166119b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076c565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b1480611a3e57506001600160e01b03198216635b5e139f60e01b145b8061072757506301ffc9a760e01b6001600160e01b0319831614610727565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a9282610c55565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b445760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076c565b6000611b4f83610c55565b9050806001600160a01b0316846001600160a01b03161480611b8a5750836001600160a01b0316611b7f84610812565b6001600160a01b0316145b80611bba57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611bd582610c55565b6001600160a01b031614611c3d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161076c565b6001600160a01b038216611c9f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161076c565b611caa838383611ed5565b611cb5600082611a5d565b6001600160a01b0383166000908152600360205260408120805460019290611cde908490612b3d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d0c908490612a19565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001816000016000828254611d829190612a19565b909155505050565b610b36828260405180602001604052806000815250611f8d565b611daf848484611bc2565b611dbb84848484611fc0565b6111885760405162461bcd60e51b815260040161076c90612b54565b606081611dfb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e255780611e0f816129fe565b9150611e1e9050600a83612b29565b9150611dff565b60008167ffffffffffffffff811115611e4057611e40612622565b6040519080825280601f01601f191660200182016040528015611e6a576020820181803683370190505b5090505b8415611bba57611e7f600183612b3d565b9150611e8c600a86612ba6565b611e97906030612a19565b60f81b818381518110611eac57611eac6129d2565b60200101906001600160f81b031916908160001a905350611ece600a86612b29565b9450611e6e565b6001600160a01b038316611f3057611f2b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f53565b816001600160a01b0316836001600160a01b031614611f5357611f5383826120be565b6001600160a01b038216611f6a576109b88161215b565b826001600160a01b0316826001600160a01b0316146109b8576109b8828261220a565b611f97838361224e565b611fa46000848484611fc0565b6109b85760405162461bcd60e51b815260040161076c90612b54565b60006001600160a01b0384163b156120b357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612004903390899088908890600401612bba565b6020604051808303816000875af192505050801561203f575060408051601f3d908101601f1916820190925261203c91810190612bf7565b60015b612099573d80801561206d576040519150601f19603f3d011682016040523d82523d6000602084013e612072565b606091505b5080516120915760405162461bcd60e51b815260040161076c90612b54565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bba565b506001949350505050565b600060016120cb84610d5a565b6120d59190612b3d565b600083815260076020526040902054909150808214612128576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061216d90600190612b3d565b60008381526009602052604081205460088054939450909284908110612195576121956129d2565b9060005260206000200154905080600883815481106121b6576121b66129d2565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121ee576121ee612c14565b6001900381819060005260206000200160009055905550505050565b600061221583610d5a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166122a45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161076c565b6000818152600260205260409020546001600160a01b0316156123095760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161076c565b61231560008383611ed5565b6001600160a01b038216600090815260036020526040812080546001929061233e908490612a19565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546123a890612946565b90600052602060002090601f0160209004810192826123ca5760008555612410565b82601f106123e357805160ff1916838001178555612410565b82800160010185558215612410579182015b828111156124105782518255916020019190600101906123f5565b5061241c929150612420565b5090565b5b8082111561241c5760008155600101612421565b6001600160e01b03198116811461244b57600080fd5b50565b60006020828403121561246057600080fd5b813561246b81612435565b9392505050565b6000806040838503121561248557600080fd5b50508035926020909101359150565b60005b838110156124af578181015183820152602001612497565b838111156111885750506000910152565b600081518084526124d8816020860160208601612494565b601f01601f19169290920160200192915050565b60208152600061246b60208301846124c0565b60006020828403121561251157600080fd5b5035919050565b80356001600160a01b038116811461252f57600080fd5b919050565b6000806040838503121561254757600080fd5b61255083612518565b946020939093013593505050565b60008060006060848603121561257357600080fd5b61257c84612518565b925061258a60208501612518565b9150604084013590509250925092565b600080604083850312156125ad57600080fd5b6125b683612518565b91506125c460208401612518565b90509250929050565b6000602082840312156125df57600080fd5b61246b82612518565b8035801515811461252f57600080fd5b6000806040838503121561260b57600080fd5b61261483612518565b91506125c4602084016125e8565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561266157612661612622565b604052919050565b600067ffffffffffffffff83111561268357612683612622565b612696601f8401601f1916602001612638565b90508281528383830111156126aa57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126126d257600080fd5b61246b83833560208501612669565b60008060008060008060c087890312156126fa57600080fd5b863567ffffffffffffffff8082111561271257600080fd5b61271e8a838b016126c1565b9750602089013591508082111561273457600080fd5b6127408a838b016126c1565b9650604089013591508082111561275657600080fd5b6127628a838b016126c1565b9550606089013591508082111561277857600080fd5b6127848a838b016126c1565b9450608089013591508082111561279a57600080fd5b6127a68a838b016126c1565b935060a08901359150808211156127bc57600080fd5b506127c989828a016126c1565b9150509295509295509295565b600080600080608085870312156127ec57600080fd5b6127f585612518565b935061280360208601612518565b925060408501359150606085013567ffffffffffffffff81111561282657600080fd5b8501601f8101871361283757600080fd5b61284687823560208401612669565b91505092959194509250565b6000806040838503121561286557600080fd5b823567ffffffffffffffff8082111561287d57600080fd5b818501915085601f83011261289157600080fd5b81356020828211156128a5576128a5612622565b8160051b92506128b6818401612638565b82815292840181019281810190898511156128d057600080fd5b948201945b848610156128f5576128e686612518565b825294820194908201906128d5565b965061290490508782016125e8565b9450505050509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061295a57607f821691505b6020821081141561297b57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612a1257612a126129e8565b5060010190565b60008219821115612a2c57612a2c6129e8565b500190565b60008151612a43818560208601612494565b9290920192915050565b600080845481600182811c915080831680612a6957607f831692505b6020808410821415612a8957634e487b7160e01b86526022600452602486fd5b818015612a9d5760018114612aae57612adb565b60ff19861689528489019650612adb565b60008b81526020902060005b86811015612ad35781548b820152908501908301612aba565b505084890196505b505050505050612aeb8185612a31565b95945050505050565b6000816000190483118215151615612b0e57612b0e6129e8565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612b3857612b38612b13565b500490565b600082821015612b4f57612b4f6129e8565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612bb557612bb5612b13565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612bed908301846124c0565b9695505050505050565b600060208284031215612c0957600080fd5b815161246b81612435565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220a07ff13c910e154290ab48e72109ecd909485c27508f2af276d07063f564e1f864736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063715018a61161012e578063bceae77b116100ab578063e62207701161006f578063e622077014610650578063e985e9c514610670578063efef39a1146106b9578063f2fde38b146106cc578063f5ebec80146106ec57600080fd5b8063bceae77b146105c4578063bf8bcee4146105da578063c87b56dd146105fa578063d75e61101461061a578063e43f696e1461063057600080fd5b8063a68c25d8116100f2578063a68c25d81461052e578063ae8e58201461054e578063b44302a31461056e578063b6305b241461058e578063b88d4fde146105a457600080fd5b8063715018a6146104a65780638ba4cc3c146104bb5780638da5cb5b146104db57806395d89b41146104f9578063a22cb4651461050e57600080fd5b80633ccfd60b116101bc57806362dc6e211161018057806362dc6e21146104105780636352211e146104265780636edc4388146104465780636fad40d51461046657806370a082311461048657600080fd5b80633ccfd60b146103855780634080a9b81461039a57806342842e0e146103ba5780634f6ccce7146103da578063611f3f10146103fa57600080fd5b8063095ea7b311610203578063095ea7b3146102e657806318160ddd146103065780631c75b6b21461032557806323b872dd146103455780632f745c591461036557600080fd5b806301ffc9a7146102355780630442bfa81461026a57806306fdde031461028c578063081812fc146102ae575b600080fd5b34801561024157600080fd5b5061025561025036600461244e565b610702565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061028a610285366004612472565b61072d565b005b34801561029857600080fd5b506102a1610780565b60405161026191906124ec565b3480156102ba57600080fd5b506102ce6102c93660046124ff565b610812565b6040516001600160a01b039091168152602001610261565b3480156102f257600080fd5b5061028a610301366004612534565b6108a7565b34801561031257600080fd5b506008545b604051908152602001610261565b34801561033157600080fd5b5061028a6103403660046124ff565b6109bd565b34801561035157600080fd5b5061028a61036036600461255e565b610a01565b34801561037157600080fd5b50610317610380366004612534565b610a32565b34801561039157600080fd5b5061028a610ac8565b3480156103a657600080fd5b5061028a6103b536600461259a565b610b3a565b3480156103c657600080fd5b5061028a6103d536600461255e565b610ba7565b3480156103e657600080fd5b506103176103f53660046124ff565b610bc2565b34801561040657600080fd5b5061031760115481565b34801561041c57600080fd5b5061031760105481565b34801561043257600080fd5b506102ce6104413660046124ff565b610c55565b34801561045257600080fd5b5061028a6104613660046124ff565b610ccc565b34801561047257600080fd5b5061028a610481366004612472565b610d10565b34801561049257600080fd5b506103176104a13660046125cd565b610d5a565b3480156104b257600080fd5b5061028a610de1565b3480156104c757600080fd5b5061028a6104d6366004612534565b610e6a565b3480156104e757600080fd5b50600a546001600160a01b03166102ce565b34801561050557600080fd5b506102a1610f0c565b34801561051a57600080fd5b5061028a6105293660046125f8565b610f1b565b34801561053a57600080fd5b5061028a6105493660046124ff565b610fe0565b34801561055a57600080fd5b5061028a6105693660046126e1565b611024565b34801561057a57600080fd5b5061028a6105893660046124ff565b611112565b34801561059a57600080fd5b50610317600f5481565b3480156105b057600080fd5b5061028a6105bf3660046127d6565b611156565b3480156105d057600080fd5b5061031760135481565b3480156105e657600080fd5b5061028a6105f53660046124ff565b61118e565b34801561060657600080fd5b506102a16106153660046124ff565b6111d2565b34801561062657600080fd5b5061031760175481565b34801561063c57600080fd5b5061028a61064b366004612852565b611352565b34801561065c57600080fd5b5061028a61066b3660046124ff565b6113f8565b34801561067c57600080fd5b5061025561068b36600461259a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61028a6106c73660046124ff565b61143c565b3480156106d857600080fd5b5061028a6106e73660046125cd565b61190d565b3480156106f857600080fd5b5061031760125481565b60006001600160e01b0319821663780e9d6360e01b1480610727575061072782611a0d565b92915050565b600a546001600160a01b03163314806107505750600b546001600160a01b031633145b6107755760405162461bcd60e51b815260040161076c90612911565b60405180910390fd5b601091909155601155565b60606000805461078f90612946565b80601f01602080910402602001604051908101604052809291908181526020018280546107bb90612946565b80156108085780601f106107dd57610100808354040283529160200191610808565b820191906000526020600020905b8154815290600101906020018083116107eb57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661088b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076c565b506000908152600460205260409020546001600160a01b031690565b60006108b282610c55565b9050806001600160a01b0316836001600160a01b031614156109205760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161076c565b336001600160a01b038216148061093c575061093c813361068b565b6109ae5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161076c565b6109b88383611a5d565b505050565b600a546001600160a01b03163314806109e05750600b546001600160a01b031633145b6109fc5760405162461bcd60e51b815260040161076c90612911565b601455565b610a0b3382611acb565b610a275760405162461bcd60e51b815260040161076c90612981565b6109b8838383611bc2565b6000610a3d83610d5a565b8210610a9f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161076c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331480610aeb5750600b546001600160a01b031633145b610b075760405162461bcd60e51b815260040161076c90612911565b6040514790339082156108fc029083906000818181858888f19350505050158015610b36573d6000803e3d6000fd5b5050565b600a546001600160a01b0316331480610b5d5750600b546001600160a01b031633145b610b795760405162461bcd60e51b815260040161076c90612911565b600c80546001600160a01b039384166001600160a01b031991821617909155600d8054929093169116179055565b6109b883838360405180602001604052806000815250611156565b6000610bcd60085490565b8210610c305760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161076c565b60088281548110610c4357610c436129d2565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806107275760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161076c565b600a546001600160a01b0316331480610cef5750600b546001600160a01b031633145b610d0b5760405162461bcd60e51b815260040161076c90612911565b601755565b600a546001600160a01b0316331480610d335750600b546001600160a01b031633145b610d4f5760405162461bcd60e51b815260040161076c90612911565b601291909155601355565b60006001600160a01b038216610dc55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161076c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610e045750600b546001600160a01b031633145b610e205760405162461bcd60e51b815260040161076c90612911565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610e8d5750600b546001600160a01b031633145b610ea95760405162461bcd60e51b815260040161076c90612911565b60005b818110156109b8576000610ebf60225490565b9050600f54610ecd60225490565b1015610ef957610edd6022611d6d565b610ee78482611d8a565b60008181526019602052604090204290555b5080610f04816129fe565b915050610eac565b60606001805461078f90612946565b6001600160a01b038216331415610f745760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161076c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314806110035750600b546001600160a01b031633145b61101f5760405162461bcd60e51b815260040161076c90612911565b601555565b600a546001600160a01b03163314806110475750600b546001600160a01b031633145b6110635760405162461bcd60e51b815260040161076c90612911565b85511561107f57855161107d90601c90602089019061239c565b505b84511561109b57845161109990601d90602088019061239c565b505b8351156110b75783516110b590601e90602087019061239c565b505b8251156110d35782516110d190601f90602086019061239c565b505b8151156110ee5781516110ec906020908185019061239c565b505b80511561110a57805161110890602190602084019061239c565b505b505050505050565b600a546001600160a01b03163314806111355750600b546001600160a01b031633145b6111515760405162461bcd60e51b815260040161076c90612911565b601655565b6111603383611acb565b61117c5760405162461bcd60e51b815260040161076c90612981565b61118884848484611da4565b50505050565b600a546001600160a01b03163314806111b15750600b546001600160a01b031633145b6111cd5760405162461bcd60e51b815260040161076c90612911565b600f55565b6000818152600260205260409020546060906001600160a01b03166112305760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604482015260640161076c565b601554600083815260196020526040902054429161124d91612a19565b101561133e5761138882101561128f57601c61126883611dd7565b604051602001611279929190612a4d565b6040516020818303038152906040529050919050565b61138882101580156112a2575061271082105b156112b257601d61126883611dd7565b61271082101580156112c55750613a9882105b156112d557601e61126883611dd7565b613a9882101580156112e85750614e2082105b156112f857601f61126883611dd7565b614e20821015801561130b57506161a882105b1561131b57602061126883611dd7565b6161a8821015801561132e575061753082105b1561133e57602161126883611dd7565b505060408051602081019091526000815290565b600a546001600160a01b03163314806113755750600b546001600160a01b031633145b6113915760405162461bcd60e51b815260040161076c90612911565b60005b82518110156109b85781601860008584815181106113b4576113b46129d2565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806113f0816129fe565b915050611394565b600a546001600160a01b031633148061141b5750600b546001600160a01b031633145b6114375760405162461bcd60e51b815260040161076c90612911565b601b55565b6017548111156114995760405162461bcd60e51b815260206004820152602260248201527f43616e206f6e6c79206d696e7420757020746f207075726368617365206c696d6044820152611a5d60f21b606482015260840161076c565b600f54602254106114ec5760405162461bcd60e51b815260206004820152601d60248201527f507572636861736520776f756c6420657863656564204d464e5f4d4158000000604482015260640161076c565b600a546001600160a01b031633146118aa573360009081526018602052604090205460ff166116bc57601b54421161155f5760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b604482015260640161076c565b601354336000908152601a6020526040902054106115bf5760405162461bcd60e51b815260206004820152601b60248201527f4f766572207468616e205055424c49435f4d494e545f4c494d49540000000000604482015260640161076c565b34816011546115ce9190612af4565b111561161c5760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604482015260640161076c565b600060646014543461162e9190612af4565b6116389190612b29565b600e546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611673573d6000803e3d6000fd5b50600d546001600160a01b03166108fc61168d8334612b3d565b6040518115909202916000818181858888f193505050501580156116b5573d6000803e3d6000fd5b505061187e565b601654601b546116cc9190612b3d565b42116117255760405162461bcd60e51b815260206004820152602260248201527f436f6e7472616374206973206e6f742061637469766520666f722070726573616044820152616c6560f01b606482015260840161076c565b601254336000908152601a6020526040902054106117855760405162461bcd60e51b815260206004820152601c60248201527f4f766572207468616e2050524553414c455f4d494e545f4c494d495400000000604482015260640161076c565b34816010546117949190612af4565b11156117e25760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604482015260640161076c565b60006064601454346117f49190612af4565b6117fe9190612b29565b600e546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611839573d6000803e3d6000fd5b50600c546001600160a01b03166108fc6118538334612b3d565b6040518115909202916000818181858888f1935050505015801561187b573d6000803e3d6000fd5b50505b336000908152601a6020526040902054611899906001612a19565b336000908152601a60205260409020555b60005b81811015610b365760006118c060225490565b9050600f546118ce60225490565b10156118fa576118de6022611d6d565b6118e83382611d8a565b60008181526019602052604090204290555b5080611905816129fe565b9150506118ad565b600a546001600160a01b03163314806119305750600b546001600160a01b031633145b61194c5760405162461bcd60e51b815260040161076c90612911565b6001600160a01b0381166119b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076c565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b1480611a3e57506001600160e01b03198216635b5e139f60e01b145b8061072757506301ffc9a760e01b6001600160e01b0319831614610727565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a9282610c55565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b445760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076c565b6000611b4f83610c55565b9050806001600160a01b0316846001600160a01b03161480611b8a5750836001600160a01b0316611b7f84610812565b6001600160a01b0316145b80611bba57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611bd582610c55565b6001600160a01b031614611c3d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161076c565b6001600160a01b038216611c9f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161076c565b611caa838383611ed5565b611cb5600082611a5d565b6001600160a01b0383166000908152600360205260408120805460019290611cde908490612b3d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d0c908490612a19565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001816000016000828254611d829190612a19565b909155505050565b610b36828260405180602001604052806000815250611f8d565b611daf848484611bc2565b611dbb84848484611fc0565b6111885760405162461bcd60e51b815260040161076c90612b54565b606081611dfb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e255780611e0f816129fe565b9150611e1e9050600a83612b29565b9150611dff565b60008167ffffffffffffffff811115611e4057611e40612622565b6040519080825280601f01601f191660200182016040528015611e6a576020820181803683370190505b5090505b8415611bba57611e7f600183612b3d565b9150611e8c600a86612ba6565b611e97906030612a19565b60f81b818381518110611eac57611eac6129d2565b60200101906001600160f81b031916908160001a905350611ece600a86612b29565b9450611e6e565b6001600160a01b038316611f3057611f2b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f53565b816001600160a01b0316836001600160a01b031614611f5357611f5383826120be565b6001600160a01b038216611f6a576109b88161215b565b826001600160a01b0316826001600160a01b0316146109b8576109b8828261220a565b611f97838361224e565b611fa46000848484611fc0565b6109b85760405162461bcd60e51b815260040161076c90612b54565b60006001600160a01b0384163b156120b357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612004903390899088908890600401612bba565b6020604051808303816000875af192505050801561203f575060408051601f3d908101601f1916820190925261203c91810190612bf7565b60015b612099573d80801561206d576040519150601f19603f3d011682016040523d82523d6000602084013e612072565b606091505b5080516120915760405162461bcd60e51b815260040161076c90612b54565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bba565b506001949350505050565b600060016120cb84610d5a565b6120d59190612b3d565b600083815260076020526040902054909150808214612128576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061216d90600190612b3d565b60008381526009602052604081205460088054939450909284908110612195576121956129d2565b9060005260206000200154905080600883815481106121b6576121b66129d2565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121ee576121ee612c14565b6001900381819060005260206000200160009055905550505050565b600061221583610d5a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166122a45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161076c565b6000818152600260205260409020546001600160a01b0316156123095760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161076c565b61231560008383611ed5565b6001600160a01b038216600090815260036020526040812080546001929061233e908490612a19565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546123a890612946565b90600052602060002090601f0160209004810192826123ca5760008555612410565b82601f106123e357805160ff1916838001178555612410565b82800160010185558215612410579182015b828111156124105782518255916020019190600101906123f5565b5061241c929150612420565b5090565b5b8082111561241c5760008155600101612421565b6001600160e01b03198116811461244b57600080fd5b50565b60006020828403121561246057600080fd5b813561246b81612435565b9392505050565b6000806040838503121561248557600080fd5b50508035926020909101359150565b60005b838110156124af578181015183820152602001612497565b838111156111885750506000910152565b600081518084526124d8816020860160208601612494565b601f01601f19169290920160200192915050565b60208152600061246b60208301846124c0565b60006020828403121561251157600080fd5b5035919050565b80356001600160a01b038116811461252f57600080fd5b919050565b6000806040838503121561254757600080fd5b61255083612518565b946020939093013593505050565b60008060006060848603121561257357600080fd5b61257c84612518565b925061258a60208501612518565b9150604084013590509250925092565b600080604083850312156125ad57600080fd5b6125b683612518565b91506125c460208401612518565b90509250929050565b6000602082840312156125df57600080fd5b61246b82612518565b8035801515811461252f57600080fd5b6000806040838503121561260b57600080fd5b61261483612518565b91506125c4602084016125e8565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561266157612661612622565b604052919050565b600067ffffffffffffffff83111561268357612683612622565b612696601f8401601f1916602001612638565b90508281528383830111156126aa57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126126d257600080fd5b61246b83833560208501612669565b60008060008060008060c087890312156126fa57600080fd5b863567ffffffffffffffff8082111561271257600080fd5b61271e8a838b016126c1565b9750602089013591508082111561273457600080fd5b6127408a838b016126c1565b9650604089013591508082111561275657600080fd5b6127628a838b016126c1565b9550606089013591508082111561277857600080fd5b6127848a838b016126c1565b9450608089013591508082111561279a57600080fd5b6127a68a838b016126c1565b935060a08901359150808211156127bc57600080fd5b506127c989828a016126c1565b9150509295509295509295565b600080600080608085870312156127ec57600080fd5b6127f585612518565b935061280360208601612518565b925060408501359150606085013567ffffffffffffffff81111561282657600080fd5b8501601f8101871361283757600080fd5b61284687823560208401612669565b91505092959194509250565b6000806040838503121561286557600080fd5b823567ffffffffffffffff8082111561287d57600080fd5b818501915085601f83011261289157600080fd5b81356020828211156128a5576128a5612622565b8160051b92506128b6818401612638565b82815292840181019281810190898511156128d057600080fd5b948201945b848610156128f5576128e686612518565b825294820194908201906128d5565b965061290490508782016125e8565b9450505050509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061295a57607f821691505b6020821081141561297b57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612a1257612a126129e8565b5060010190565b60008219821115612a2c57612a2c6129e8565b500190565b60008151612a43818560208601612494565b9290920192915050565b600080845481600182811c915080831680612a6957607f831692505b6020808410821415612a8957634e487b7160e01b86526022600452602486fd5b818015612a9d5760018114612aae57612adb565b60ff19861689528489019650612adb565b60008b81526020902060005b86811015612ad35781548b820152908501908301612aba565b505084890196505b505050505050612aeb8185612a31565b95945050505050565b6000816000190483118215151615612b0e57612b0e6129e8565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612b3857612b38612b13565b500490565b600082821015612b4f57612b4f6129e8565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612bb557612bb5612b13565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612bed908301846124c0565b9695505050505050565b600060208284031215612c0957600080fd5b815161246b81612435565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220a07ff13c910e154290ab48e72109ecd909485c27508f2af276d07063f564e1f864736f6c634300080a0033

Deployed Bytecode Sourcemap

46971:7266:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39256:300;;;;;;;;;;-1:-1:-1;39256:300:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;39256:300:0;;;;;;;;49452:184;;;;;;;;;;-1:-1:-1;49452:184:0;;;;;:::i;:::-;;:::i;:::-;;22885:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24467:308::-;;;;;;;;;;-1:-1:-1;24467:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1967:32:1;;;1949:51;;1937:2;1922:18;24467:308:0;1803:203:1;23990:411:0;;;;;;;;;;-1:-1:-1;23990:411:0;;;;;:::i;:::-;;:::i;40059:113::-;;;;;;;;;;-1:-1:-1;40147:10:0;:17;40059:113;;;2594:25:1;;;2582:2;2567:18;40059:113:0;2448:177:1;48871:89:0;;;;;;;;;;-1:-1:-1;48871:89:0;;;;;:::i;:::-;;:::i;25526:376::-;;;;;;;;;;-1:-1:-1;25526:376:0;;;;;:::i;:::-;;:::i;39640:343::-;;;;;;;;;;-1:-1:-1;39640:343:0;;;;;:::i;:::-;;:::i;54087:147::-;;;;;;;;;;;;;:::i;48489:245::-;;;;;;;;;;-1:-1:-1;48489:245:0;;;;;:::i;:::-;;:::i;25973:185::-;;;;;;;;;;-1:-1:-1;25973:185:0;;;;;:::i;:::-;;:::i;40249:320::-;;;;;;;;;;-1:-1:-1;40249:320:0;;;;;:::i;:::-;;:::i;47476:53::-;;;;;;;;;;;;;;;;47404:54;;;;;;;;;;;;;;;;22492:326;;;;;;;;;;-1:-1:-1;22492:326:0;;;;;:::i;:::-;;:::i;49747:117::-;;;;;;;;;;-1:-1:-1;49747:117:0;;;;;:::i;:::-;;:::i;49872:178::-;;;;;;;;;;-1:-1:-1;49872:178:0;;;;;:::i;:::-;;:::i;22135:295::-;;;;;;;;;;-1:-1:-1;22135:295:0;;;;;:::i;:::-;;:::i;37735:148::-;;;;;;;;;;;;;:::i;50660:417::-;;;;;;;;;;-1:-1:-1;50660:417:0;;;;;:::i;:::-;;:::i;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;48968:109::-;;;;;;;;;;-1:-1:-1;48968:109:0;;;;;:::i;:::-;;:::i;50058:594::-;;;;;;;;;;-1:-1:-1;50058:594:0;;;;;:::i;:::-;;:::i;49085:114::-;;;;;;;;;;-1:-1:-1;49085:114:0;;;;;:::i;:::-;;:::i;47367:30::-;;;;;;;;;;;;;;;;26229:365;;;;;;;;;;-1:-1:-1;26229:365:0;;;;;:::i;:::-;;:::i;47591:36::-;;;;;;;;;;;;;;;;49644:95;;;;;;;;;;-1:-1:-1;49644:95:0;;;;;:::i;:::-;;:::i;52907:1172::-;;;;;;;;;;-1:-1:-1;52907:1172:0;;;;;:::i;:::-;;:::i;47760:34::-;;;;;;;;;;;;;;;;49207:237;;;;;;;;;;-1:-1:-1;49207:237:0;;;;;:::i;:::-;;:::i;48742:121::-;;;;;;;;;;-1:-1:-1;48742: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;51085:1814;;;;;;:::i;:::-;;:::i;38038:281::-;;;;;;;;;;-1:-1:-1;38038:281:0;;;;;:::i;:::-;;:::i;47547:37::-;;;;;;;;;;;;;;;;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;49452:184::-;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;:::-;;;;;;;;;49555:13:::1;:32:::0;;;;49598:12:::1;:30:::0;49452:184::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;;8892:2:1;24613:110:0;;;8874:21:1;8931:2;8911:18;;;8904:30;8970:34;8950:18;;;8943:62;-1:-1:-1;;;9021:18:1;;;9014:42;9073:19;;24613:110:0;8690:408:1;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;;9305:2:1;24121:57:0;;;9287:21:1;9344:2;9324:18;;;9317:30;9383:34;9363:18;;;9356:62;-1:-1:-1;;;9434:18:1;;;9427:31;9475:19;;24121:57:0;9103: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;;9707:2:1;24191:168:0;;;9689:21:1;9746:2;9726:18;;;9719:30;9785:34;9765:18;;;9758:62;9856:26;9836:18;;;9829:54;9900:19;;24191:168:0;9505:420:1;24191:168:0;24372:21;24381:2;24385:7;24372:8;:21::i;:::-;24060:341;23990:411;;:::o;48871: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;:::-;48936:7:::1;:16:::0;48871: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;;10550:2:1;39807:124:0;;;10532:21:1;10589:2;10569:18;;;10562:30;10628:34;10608:18;;;10601:62;-1:-1:-1;;;10679:18:1;;;10672:41;10730:19;;39807:124:0;10348:407:1;39807:124:0;-1:-1:-1;;;;;;39949:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39640:343::o;54087: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;:::-;54189:37:::1;::::0;54155:21:::1;::::0;54197:10:::1;::::0;54189:37;::::1;;;::::0;54155:21;;54137:15:::1;54189:37:::0;54137:15;54189:37;54155:21;54197:10;54189:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;54126:108;54087:147::o:0;48489:245::-;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;:::-;48607:22:::1;:55:::0;;-1:-1:-1;;;;;48607:55:0;;::::1;-1:-1:-1::0;;;;;;48607:55:0;;::::1;;::::0;;;48673:21:::1;:53:::0;;;;;::::1;::::0;::::1;;::::0;;48489:245::o;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;;10962:2:1;40394:132:0;;;10944:21:1;11001:2;10981:18;;;10974:30;11040:34;11020:18;;;11013:62;-1:-1:-1;;;11091:18:1;;;11084:42;11143:19;;40394:132:0;10760:408:1;40394:132:0;40544:10;40555:5;40544:17;;;;;;;;:::i;:::-;;;;;;;;;40537:24;;40249:320;;;:::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;;11507:2:1;22677:110:0;;;11489:21:1;11546:2;11526:18;;;11519:30;11585:34;11565:18;;;11558:62;-1:-1:-1;;;11636:18:1;;;11629:39;11685:19;;22677:110:0;11305:405:1;49747:117: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;:::-;49826:14:::1;:30:::0;49747:117::o;49872:178::-;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;:::-;49967:18:::1;:33:::0;;;;50011:17:::1;:31:::0;49872:178::o;22135:295::-;22252:7;-1:-1:-1;;;;;22299:19:0;;22277:111;;;;-1:-1:-1;;;22277:111:0;;11917:2:1;22277:111:0;;;11899:21:1;11956:2;11936:18;;;11929:30;11995:34;11975:18;;;11968:62;-1:-1:-1;;;12046:18:1;;;12039:40;12096:19;;22277:111:0;11715: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;50660:417::-;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;:::-;50748:9:::1;50743:327;50767:14;50763:1;:18;50743:327;;;50803:15;50821:20;:10;46557:14:::0;;46465:114;50821:20:::1;50803:38;;50885:7;;50862:20;:10;46557:14:::0;;46465:114;50862:20:::1;:30;50858:201;;;50913:22;:10;:20;:22::i;:::-;50954;50964:2;50968:7;50954:9;:22::i;:::-;50995:30;::::0;;;:21:::1;:30;::::0;;;;51028:15:::1;50995:48:::0;;50858:201:::1;-1:-1:-1::0;50783:3:0;::::1;::::0;::::1;:::i;:::-;;;;50743:327;;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;;12600:2:1;24974:62:0;;;12582:21:1;12639:2;12619:18;;;12612:30;12678:27;12658:18;;;12651:55;12723:18;;24974:62:0;12398: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;;540:41:1;;;25049:42:0;;16975:10;25118:48;;513:18:1;25118:48:0;;;;;;;24847:327;;:::o;48968:109::-;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;:::-;49043:12:::1;:26:::0;48968:109::o;50058:594::-;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;:::-;50293:18;;:23;50289:50:::1;;50318:21:::0;;::::1;::::0;:14:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50289:50;50354:18:::0;;:23;50350:50:::1;;50379:21:::0;;::::1;::::0;:14:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50350:50;50415:18:::0;;:23;50411:50:::1;;50440:21:::0;;::::1;::::0;:14:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50411:50;50476:18:::0;;:23;50472:50:::1;;50501:21:::0;;::::1;::::0;:14:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50472:50;50537:18:::0;;:23;50533:50:::1;;50562:21:::0;;::::1;::::0;:14:::1;::::0;:21;;::::1;::::0;::::1;:::i;:::-;;50533:50;50598:18:::0;;:23;50594:50:::1;;50623:21:::0;;::::1;::::0;:14:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50594:50;50058:594:::0;;;;;;:::o;49085: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;:::-;49163:13:::1;:28:::0;49085: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;:::-;26229:365;;;;:::o;49644:95::-;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;:::-;49713:7:::1;:18:::0;49644:95::o;52907:1172::-;28206:4;28230:16;;;:7;:16;;;;;;52980:13;;-1:-1:-1;;;;;28230:16:0;53011:49;;;;-1:-1:-1;;;53011:49:0;;12954:2:1;53011:49:0;;;12936:21:1;12993:2;12973:18;;;12966:30;-1:-1:-1;;;13012:18:1;;;13005:50;13072:18;;53011:49:0;12752:344:1;53011:49:0;53110:12;;53077:30;;;;:21;:30;;;;;;53125:15;;53077:45;;;:::i;:::-;:63;53073:977;;;53187:4;53177:7;:14;53157:882;;;53243:14;53259:18;:7;:16;:18::i;:::-;53226:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53212:67;;52907:1172;;;:::o;53157:882::-;53316:4;53305:7;:15;;:34;;;;;53334:5;53324:7;:15;53305:34;53301:738;;;53391:14;53407:18;:7;:16;:18::i;53301:738::-;53464:5;53453:7;:16;;:35;;;;;53483:5;53473:7;:15;53453:35;53449:590;;;53540:14;53556:18;:7;:16;:18::i;53449:590::-;53613:5;53602:7;:16;;:35;;;;;53632:5;53622:7;:15;53602:35;53598:441;;;53689:14;53705:18;:7;:16;:18::i;53598:441::-;53762:5;53751:7;:16;;:35;;;;;53781:5;53771:7;:15;53751:35;53747:292;;;53838:14;53854:18;:7;:16;:18::i;53747:292::-;53911:5;53900:7;:16;;:35;;;;;53930:5;53920:7;:15;53900:35;53896:143;;;53987:14;54003:18;:7;:16;:18::i;53896:143::-;-1:-1:-1;;54062:9:0;;;;;;;;;-1:-1:-1;54062:9:0;;;52907:1172::o;49207: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;:::-;49313:9:::1;49308:129;49332:16;:23;49328:1;:27;49308:129;;;49418:7;49377:17;:38;49395:16;49412:1;49395:19;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;49377:38:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;49377:38:0;:48;;-1:-1:-1;;49377:48:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49357:3;::::1;::::0;::::1;:::i;:::-;;;;49308:129;;48742: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;:::-;48823:15:::1;:32:::0;48742:121::o;51085:1814::-;51181:14;;51163;:32;;51155:78;;;;-1:-1:-1;;;51155:78:0;;14931:2:1;51155:78:0;;;14913:21:1;14970:2;14950:18;;;14943:30;15009:34;14989:18;;;14982:62;-1:-1:-1;;;15060:18:1;;;15053:32;15102:19;;51155:78:0;14729:398:1;51155:78:0;51275:7;;51252:10;46557:14;51252:30;51244:71;;;;-1:-1:-1;;;51244:71:0;;15334:2:1;51244:71:0;;;15316:21:1;15373:2;15353:18;;;15346:30;15412:31;15392:18;;;15385:59;15461:18;;51244:71:0;15132:353:1;51244:71:0;37092:6;;-1:-1:-1;;;;;37092:6:0;51332:10;:21;51328:1217;;51392:10;51374:29;;;;:17;:29;;;;;;;;51370:1082;;51459:15;;51441;:33;51433:67;;;;-1:-1:-1;;;51433:67:0;;15692:2:1;51433:67:0;;;15674:21:1;15731:2;15711:18;;;15704:30;-1:-1:-1;;;15750:18:1;;;15743:52;15812:18;;51433:67:0;15490:346:1;51433:67:0;51559:17;;51545:10;51527:29;;;;:17;:29;;;;;;:49;51519:88;;;;-1:-1:-1;;;51519:88:0;;16043:2:1;51519:88:0;;;16025:21:1;16082:2;16062:18;;;16055:30;16121:29;16101:18;;;16094:57;16168:18;;51519:88:0;15841:351:1;51519:88:0;51667:9;51649:14;51634:12;;:29;;;;:::i;:::-;:42;;51626:82;;;;-1:-1:-1;;;51626:82:0;;16572:2:1;51626:82:0;;;16554:21:1;16611:2;16591:18;;;16584:30;16650;16630:18;;;16623:58;16698:18;;51626:82:0;16370:352:1;51626:82:0;51729:17;51773:3;51762:7;;51750:9;:19;;;;:::i;:::-;51749:27;;;;:::i;:::-;51795:11;;:31;;51729:47;;-1:-1:-1;;;;;;51795:11:0;;:31;;;;;51729:47;;51795:11;:31;:11;:31;51729:47;51795:11;:31;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51845:21:0;;-1:-1:-1;;;;;51845:21:0;:53;51876:21;51888:9;51876;:21;:::i;:::-;51845:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51414:500;51370:1082;;;51983:13;;51965:15;;:31;;;;:::i;:::-;51947:15;:49;51939:95;;;;-1:-1:-1;;;51939:95:0;;17316:2:1;51939:95:0;;;17298:21:1;17355:2;17335:18;;;17328:30;17394:34;17374:18;;;17367:62;-1:-1:-1;;;17445:18:1;;;17438:32;17487:19;;51939:95:0;17114:398:1;51939:95:0;52093:18;;52079:10;52061:29;;;;:17;:29;;;;;;:50;52053:90;;;;-1:-1:-1;;;52053:90:0;;17719:2:1;52053:90:0;;;17701:21:1;17758:2;17738:18;;;17731:30;17797;17777:18;;;17770:58;17845:18;;52053:90:0;17517:352:1;52053:90:0;52204:9;52186:14;52170:13;;:30;;;;:::i;:::-;:43;;52162:83;;;;-1:-1:-1;;;52162:83:0;;16572:2:1;52162:83:0;;;16554:21:1;16611:2;16591:18;;;16584:30;16650;16630:18;;;16623:58;16698:18;;52162:83:0;16370:352:1;52162:83:0;52266:17;52310:3;52299:7;;52287:9;:19;;;;:::i;:::-;52286:27;;;;:::i;:::-;52332:11;;:31;;52266:47;;-1:-1:-1;;;;;;52332:11:0;;:31;;;;;52266:47;;52332:11;:31;:11;:31;52266:47;52332:11;:31;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52382:22:0;;-1:-1:-1;;;;;52382:22:0;:54;52414:21;52426:9;52414;:21;:::i;:::-;52382:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51920:532;51370:1082;52518:10;52500:29;;;;:17;:29;;;;;;:33;;52532:1;52500:33;:::i;:::-;52486:10;52468:29;;;;:17;:29;;;;;:65;51328:1217;52562:9;52557:335;52581:14;52577:1;:18;52557:335;;;52617:15;52635:20;:10;46557:14;;46465:114;52635:20;52617:38;;52699:7;;52676:20;:10;46557:14;;46465:114;52676:20;:30;52672:209;;;52727:22;:10;:20;:22::i;:::-;52768:30;52778:10;52790:7;52768:9;:30::i;:::-;52817;;;;:21;:30;;;;;52850:15;52817:48;;52672:209;-1:-1:-1;52597:3:0;;;;:::i;:::-;;;;52557:335;;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;;18076:2:1;38119:110:0::1;::::0;::::1;18058:21:1::0;18115:2;18095:18;;;18088:30;18154:34;18134:18;;;18127:62;-1:-1:-1;;;18205:18:1;;;18198:36;18251:19;;38119:110:0::1;17874: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;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;;18483:2:1;28586:110:0;;;18465:21:1;18522:2;18502:18;;;18495:30;18561:34;18541:18;;;18534:62;-1:-1:-1;;;18612:18:1;;;18605:42;18664:19;;28586:110:0;18281: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;;18896:2:1;31655:122:0;;;18878:21:1;18935:2;18915:18;;;18908:30;18974:34;18954:18;;;18947:62;-1:-1:-1;;;19025:18:1;;;19018:39;19074:19;;31655:122:0;18694:405:1;31655:122:0;-1:-1:-1;;;;;31796:16:0;;31788:65;;;;-1:-1:-1;;;31788:65:0;;19306:2:1;31788:65:0;;;19288:21:1;19345:2;19325:18;;;19318:30;19384:34;19364:18;;;19357:62;-1:-1:-1;;;19435:18:1;;;19428:34;19479:19;;31788:65:0;19104: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;;21138:2:1;30295:61:0;;;21120:21:1;;;21157:18;;;21150:30;21216:34;21196:18;;;21189:62;21268:18;;30295:61:0;20936: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;;21499:2:1;30367:58:0;;;21481:21:1;21538:2;21518:18;;;21511:30;21577;21557:18;;;21550:58;21625:18;;30367:58:0;21297: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:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;68:71;14:131;:::o;150:245::-;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:248::-;660:6;668;721:2;709:9;700:7;696:23;692:32;689:52;;;737:1;734;727:12;689:52;-1:-1:-1;;760:23:1;;;830:2;815:18;;;802:32;;-1:-1:-1;592:248:1:o;845:258::-;917:1;927:113;941:6;938:1;935:13;927:113;;;1017:11;;;1011:18;998:11;;;991:39;963:2;956:10;927:113;;;1058:6;1055:1;1052:13;1049:48;;;-1:-1:-1;;1093:1:1;1075:16;;1068:27;845:258::o;1108:269::-;1161:3;1199:5;1193:12;1226:6;1221:3;1214:19;1242:63;1298:6;1291:4;1286:3;1282:14;1275:4;1268:5;1264:16;1242:63;:::i;:::-;1359:2;1338:15;-1:-1:-1;;1334:29:1;1325:39;;;;1366:4;1321:50;;1108:269;-1:-1:-1;;1108:269:1:o;1382:231::-;1531:2;1520:9;1513:21;1494:4;1551:56;1603:2;1592:9;1588:18;1580:6;1551:56;:::i;1618:180::-;1677:6;1730:2;1718:9;1709:7;1705:23;1701:32;1698:52;;;1746:1;1743;1736:12;1698:52;-1:-1:-1;1769:23:1;;1618:180;-1:-1:-1;1618:180:1:o;2011:173::-;2079:20;;-1:-1:-1;;;;;2128:31:1;;2118:42;;2108:70;;2174:1;2171;2164:12;2108:70;2011:173;;;:::o;2189:254::-;2257:6;2265;2318:2;2306:9;2297:7;2293:23;2289:32;2286:52;;;2334:1;2331;2324:12;2286:52;2357:29;2376:9;2357:29;:::i;:::-;2347:39;2433:2;2418:18;;;;2405:32;;-1:-1:-1;;;2189:254:1:o;2630:328::-;2707:6;2715;2723;2776:2;2764:9;2755:7;2751:23;2747:32;2744:52;;;2792:1;2789;2782:12;2744:52;2815:29;2834:9;2815:29;:::i;:::-;2805:39;;2863:38;2897:2;2886:9;2882:18;2863:38;:::i;:::-;2853:48;;2948:2;2937:9;2933:18;2920:32;2910:42;;2630:328;;;;;:::o;2963:260::-;3031:6;3039;3092:2;3080:9;3071:7;3067:23;3063:32;3060:52;;;3108:1;3105;3098:12;3060:52;3131:29;3150:9;3131:29;:::i;:::-;3121:39;;3179:38;3213:2;3202:9;3198:18;3179:38;:::i;:::-;3169:48;;2963:260;;;;;:::o;3228:186::-;3287:6;3340:2;3328:9;3319:7;3315:23;3311:32;3308:52;;;3356:1;3353;3346:12;3308:52;3379:29;3398:9;3379:29;:::i;3419:160::-;3484:20;;3540:13;;3533:21;3523:32;;3513:60;;3569:1;3566;3559:12;3584:254;3649:6;3657;3710:2;3698:9;3689:7;3685:23;3681:32;3678:52;;;3726:1;3723;3716:12;3678:52;3749:29;3768:9;3749:29;:::i;:::-;3739:39;;3797:35;3828:2;3817:9;3813:18;3797:35;:::i;3843:127::-;3904:10;3899:3;3895:20;3892:1;3885:31;3935:4;3932:1;3925:15;3959:4;3956:1;3949:15;3975:275;4046:2;4040:9;4111:2;4092:13;;-1:-1:-1;;4088:27:1;4076:40;;4146:18;4131:34;;4167:22;;;4128:62;4125:88;;;4193:18;;:::i;:::-;4229:2;4222:22;3975:275;;-1:-1:-1;3975:275:1:o;4255:407::-;4320:5;4354:18;4346:6;4343:30;4340:56;;;4376:18;;:::i;:::-;4414:57;4459:2;4438:15;;-1:-1:-1;;4434:29:1;4465:4;4430:40;4414:57;:::i;:::-;4405:66;;4494:6;4487:5;4480:21;4534:3;4525:6;4520:3;4516:16;4513:25;4510:45;;;4551:1;4548;4541:12;4510:45;4600:6;4595:3;4588:4;4581:5;4577:16;4564:43;4654:1;4647:4;4638:6;4631:5;4627:18;4623:29;4616:40;4255:407;;;;;:::o;4667:222::-;4710:5;4763:3;4756:4;4748:6;4744:17;4740:27;4730:55;;4781:1;4778;4771:12;4730:55;4803:80;4879:3;4870:6;4857:20;4850:4;4842:6;4838:17;4803:80;:::i;4894:1346::-;5058:6;5066;5074;5082;5090;5098;5151:3;5139:9;5130:7;5126:23;5122:33;5119:53;;;5168:1;5165;5158:12;5119:53;5208:9;5195:23;5237:18;5278:2;5270:6;5267:14;5264:34;;;5294:1;5291;5284:12;5264:34;5317:50;5359:7;5350:6;5339:9;5335:22;5317:50;:::i;:::-;5307:60;;5420:2;5409:9;5405:18;5392:32;5376:48;;5449:2;5439:8;5436:16;5433:36;;;5465:1;5462;5455:12;5433:36;5488:52;5532:7;5521:8;5510:9;5506:24;5488:52;:::i;:::-;5478:62;;5593:2;5582:9;5578:18;5565:32;5549:48;;5622:2;5612:8;5609:16;5606:36;;;5638:1;5635;5628:12;5606:36;5661:52;5705:7;5694:8;5683:9;5679:24;5661:52;:::i;:::-;5651:62;;5766:2;5755:9;5751:18;5738:32;5722:48;;5795:2;5785:8;5782:16;5779:36;;;5811:1;5808;5801:12;5779:36;5834:52;5878:7;5867:8;5856:9;5852:24;5834:52;:::i;:::-;5824:62;;5939:3;5928:9;5924:19;5911:33;5895:49;;5969:2;5959:8;5956:16;5953:36;;;5985:1;5982;5975:12;5953:36;6008:52;6052:7;6041:8;6030:9;6026:24;6008:52;:::i;:::-;5998:62;;6113:3;6102:9;6098:19;6085:33;6069:49;;6143:2;6133:8;6130:16;6127:36;;;6159:1;6156;6149:12;6127:36;;6182:52;6226:7;6215:8;6204:9;6200:24;6182:52;:::i;:::-;6172:62;;;4894:1346;;;;;;;;:::o;6245:667::-;6340:6;6348;6356;6364;6417:3;6405:9;6396:7;6392:23;6388:33;6385:53;;;6434:1;6431;6424:12;6385:53;6457:29;6476:9;6457:29;:::i;:::-;6447:39;;6505:38;6539:2;6528:9;6524:18;6505:38;:::i;:::-;6495:48;;6590:2;6579:9;6575:18;6562:32;6552:42;;6645:2;6634:9;6630:18;6617:32;6672:18;6664:6;6661:30;6658:50;;;6704:1;6701;6694:12;6658:50;6727:22;;6780:4;6772:13;;6768:27;-1:-1:-1;6758:55:1;;6809:1;6806;6799:12;6758:55;6832:74;6898:7;6893:2;6880:16;6875:2;6871;6867:11;6832:74;:::i;:::-;6822:84;;;6245:667;;;;;;;:::o;6917:1022::-;7007:6;7015;7068:2;7056:9;7047:7;7043:23;7039:32;7036:52;;;7084:1;7081;7074:12;7036:52;7124:9;7111:23;7153:18;7194:2;7186:6;7183:14;7180:34;;;7210:1;7207;7200:12;7180:34;7248:6;7237:9;7233:22;7223:32;;7293:7;7286:4;7282:2;7278:13;7274:27;7264:55;;7315:1;7312;7305:12;7264:55;7351:2;7338:16;7373:4;7396:2;7392;7389:10;7386:36;;;7402:18;;:::i;:::-;7448:2;7445:1;7441:10;7431:20;;7471:28;7495:2;7491;7487:11;7471:28;:::i;:::-;7533:15;;;7603:11;;;7599:20;;;7564:12;;;;7631:19;;;7628:39;;;7663:1;7660;7653:12;7628:39;7687:11;;;;7707:148;7723:6;7718:3;7715:15;7707:148;;;7789:23;7808:3;7789:23;:::i;:::-;7777:36;;7740:12;;;;7833;;;;7707:148;;;7874:5;-1:-1:-1;7898:35:1;;-1:-1:-1;7914:18:1;;;7898:35;:::i;:::-;7888:45;;;;;;6917:1022;;;;;:::o;7944:356::-;8146:2;8128:21;;;8165:18;;;8158:30;8224:34;8219:2;8204:18;;8197:62;8291:2;8276:18;;7944:356::o;8305:380::-;8384:1;8380:12;;;;8427;;;8448:61;;8502:4;8494:6;8490:17;8480:27;;8448:61;8555:2;8547:6;8544:14;8524:18;8521:38;8518:161;;;8601:10;8596:3;8592:20;8589:1;8582:31;8636:4;8633:1;8626:15;8664:4;8661:1;8654:15;8518:161;;8305:380;;;:::o;9930:413::-;10132:2;10114:21;;;10171:2;10151:18;;;10144:30;10210:34;10205:2;10190:18;;10183:62;-1:-1:-1;;;10276:2:1;10261:18;;10254:47;10333:3;10318:19;;9930:413::o;11173:127::-;11234:10;11229:3;11225:20;11222:1;11215:31;11265:4;11262:1;11255:15;11289:4;11286:1;11279:15;12126:127;12187:10;12182:3;12178:20;12175:1;12168:31;12218:4;12215:1;12208:15;12242:4;12239:1;12232:15;12258:135;12297:3;-1:-1:-1;;12318:17:1;;12315:43;;;12338:18;;:::i;:::-;-1:-1:-1;12385:1:1;12374:13;;12258:135::o;13101:128::-;13141:3;13172:1;13168:6;13165:1;13162:13;13159:39;;;13178:18;;:::i;:::-;-1:-1:-1;13214:9:1;;13101:128::o;13360:185::-;13402:3;13440:5;13434:12;13455:52;13500:6;13495:3;13488:4;13481:5;13477:16;13455:52;:::i;:::-;13523:16;;;;;13360:185;-1:-1:-1;;13360:185:1:o;13550:1174::-;13726:3;13755:1;13788:6;13782:13;13818:3;13840:1;13868:9;13864:2;13860:18;13850:28;;13928:2;13917:9;13913:18;13950;13940:61;;13994:4;13986:6;13982:17;13972:27;;13940:61;14020:2;14068;14060:6;14057:14;14037:18;14034:38;14031:165;;;-1:-1:-1;;;14095:33:1;;14151:4;14148:1;14141:15;14181:4;14102:3;14169:17;14031:165;14212:18;14239:104;;;;14357:1;14352:320;;;;14205:467;;14239:104;-1:-1:-1;;14272:24:1;;14260:37;;14317:16;;;;-1:-1:-1;14239:104:1;;14352:320;13307:1;13300:14;;;13344:4;13331:18;;14447:1;14461:165;14475:6;14472:1;14469:13;14461:165;;;14553:14;;14540:11;;;14533:35;14596:16;;;;14490:10;;14461:165;;;14465:3;;14655:6;14650:3;14646:16;14639:23;;14205:467;;;;;;;14688:30;14714:3;14706:6;14688:30;:::i;:::-;14681:37;13550:1174;-1:-1:-1;;;;;13550:1174:1:o;16197:168::-;16237:7;16303:1;16299;16295:6;16291:14;16288:1;16285:21;16280:1;16273:9;16266:17;16262:45;16259:71;;;16310:18;;:::i;:::-;-1:-1:-1;16350:9:1;;16197:168::o;16727:127::-;16788:10;16783:3;16779:20;16776:1;16769:31;16819:4;16816:1;16809:15;16843:4;16840:1;16833:15;16859:120;16899:1;16925;16915:35;;16930:18;;:::i;:::-;-1:-1:-1;16964:9:1;;16859:120::o;16984:125::-;17024:4;17052:1;17049;17046:8;17043:34;;;17057:18;;:::i;:::-;-1:-1:-1;17094:9:1;;16984:125::o;19509:414::-;19711:2;19693:21;;;19750:2;19730:18;;;19723:30;19789:34;19784:2;19769:18;;19762:62;-1:-1:-1;;;19855:2:1;19840:18;;19833:48;19913:3;19898:19;;19509:414::o;19928:112::-;19960:1;19986;19976:35;;19991:18;;:::i;:::-;-1:-1:-1;20025:9:1;;19928:112::o;20045:500::-;-1:-1:-1;;;;;20314:15:1;;;20296:34;;20366:15;;20361:2;20346:18;;20339:43;20413:2;20398:18;;20391:34;;;20461:3;20456:2;20441:18;;20434:31;;;20239:4;;20482:57;;20519:19;;20511:6;20482:57;:::i;:::-;20474:65;20045:500;-1:-1:-1;;;;;;20045:500:1:o;20550:249::-;20619:6;20672:2;20660:9;20651:7;20647:23;20643:32;20640:52;;;20688:1;20685;20678:12;20640:52;20720:9;20714:16;20739:30;20763:5;20739:30;:::i;20804:127::-;20865:10;20860:3;20856:20;20853:1;20846:31;20896:4;20893:1;20886:15;20920:4;20917:1;20910:15

Swarm Source

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