ETH Price: $3,467.22 (+2.16%)
Gas: 10 Gwei

Token

Ascend of the Divine Ones (AOTDO)
 

Overview

Max Total Supply

777 AOTDO

Holders

412

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 AOTDO
0x543ecff492b72d041ca1bcb142b749612c9a4dcf
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:
AscendOfTheDivineOnes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-16
*/

// SPDX-License-Identifier: MIT

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (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: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: contracts/erc721a.sol



// Creator: Chiru Labs



pragma solidity ^0.8.4;










error ApprovalCallerNotOwnerNorApproved();

error ApprovalQueryForNonexistentToken();

error ApproveToCaller();

error ApprovalToCurrentOwner();

error BalanceQueryForZeroAddress();

error MintToZeroAddress();

error MintZeroQuantity();

error OwnerQueryForNonexistentToken();

error TransferCallerNotOwnerNorApproved();

error TransferFromIncorrectOwner();

error TransferToNonERC721ReceiverImplementer();

error TransferToZeroAddress();

error URIQueryForNonexistentToken();



/**

 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including

 * the Metadata extension. Built to optimize for lower gas during batch mints.

 *

 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).

 *

 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.

 *

 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).

 */

contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {

    using Address for address;

    using Strings for uint256;



    // Compiler will pack this into a single 256bit word.

    struct TokenOwnership {

        // The address of the owner.

        address addr;

        // Keeps track of the start time of ownership with minimal overhead for tokenomics.

        uint64 startTimestamp;

        // Whether the token has been burned.

        bool burned;

    }



    // Compiler will pack this into a single 256bit word.

    struct AddressData {

        // Realistically, 2**64-1 is more than enough.

        uint64 balance;

        // Keeps track of mint count with minimal overhead for tokenomics.

        uint64 numberMinted;

        // Keeps track of burn count with minimal overhead for tokenomics.

        uint64 numberBurned;

        // For miscellaneous variable(s) pertaining to the address

        // (e.g. number of whitelist mint slots used).

        // If there are multiple variables, please pack them into a uint64.

        uint64 aux;

    }



    // The tokenId of the next token to be minted.

    uint256 internal _currentIndex;



    // The number of tokens burned.

    uint256 internal _burnCounter;



    // Token name

    string private _name;



    // Token symbol

    string private _symbol;



    // Mapping from token ID to ownership details

    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.

    mapping(uint256 => TokenOwnership) internal _ownerships;



    // Mapping owner address to address data

    mapping(address => AddressData) private _addressData;



    // 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;



    constructor(string memory name_, string memory symbol_) {

        _name = name_;

        _symbol = symbol_;

        _currentIndex = _startTokenId();

    }



    /**

     * To change the starting tokenId, please override this function.

     */

    function _startTokenId() internal view virtual returns (uint256) {

        return 1;

    }



    /**

     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.

     */

    function totalSupply() public view returns (uint256) {

        // Counter underflow is impossible as _burnCounter cannot be incremented

        // more than _currentIndex - _startTokenId() times

        unchecked {

            return _currentIndex - _burnCounter - _startTokenId();

        }

    }



    /**

     * Returns the total amount of tokens minted in the contract.

     */

    function _totalMinted() internal view returns (uint256) {

        // Counter underflow is impossible as _currentIndex does not decrement,

        // and it is initialized to _startTokenId()

        unchecked {

            return _currentIndex - _startTokenId();

        }

    }



    /**

     * @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 override returns (uint256) {

        if (owner == address(0)) revert BalanceQueryForZeroAddress();

        return uint256(_addressData[owner].balance);

    }



    /**

     * Returns the number of tokens minted by `owner`.

     */

    function _numberMinted(address owner) internal view returns (uint256) {

        return uint256(_addressData[owner].numberMinted);

    }



    /**

     * Returns the number of tokens burned by or on behalf of `owner`.

     */

    function _numberBurned(address owner) internal view returns (uint256) {

        return uint256(_addressData[owner].numberBurned);

    }



    /**

     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).

     */

    function _getAux(address owner) internal view returns (uint64) {

        return _addressData[owner].aux;

    }



    /**

     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).

     * If there are multiple variables, please pack them into a uint64.

     */

    function _setAux(address owner, uint64 aux) internal {

        _addressData[owner].aux = aux;

    }



    /**

     * Gas spent here starts off proportional to the maximum mint batch size.

     * It gradually moves to O(1) as tokens get transferred around in the collection over time.

     */

    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {

        uint256 curr = tokenId;



        unchecked {

            if (_startTokenId() <= curr && curr < _currentIndex) {

                TokenOwnership memory ownership = _ownerships[curr];

                if (!ownership.burned) {

                    if (ownership.addr != address(0)) {

                        return ownership;

                    }

                    // Invariant:

                    // There will always be an ownership that has an address and is not burned

                    // before an ownership that does not have an address and is not burned.

                    // Hence, curr will not underflow.

                    while (true) {

                        curr--;

                        ownership = _ownerships[curr];

                        if (ownership.addr != address(0)) {

                            return ownership;

                        }

                    }

                }

            }

        }

        revert OwnerQueryForNonexistentToken();

    }



    /**

     * @dev See {IERC721-ownerOf}.

     */

    function ownerOf(uint256 tokenId) public view override returns (address) {

        return _ownershipOf(tokenId).addr;

    }



    /**

     * @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) {

        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();



        string memory baseURI = _baseURI();

        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';

    }



    /**

     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each

     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty

     * by default, can be overriden in child contracts.

     */

    function _baseURI() internal view virtual returns (string memory) {

        return '';

    }



    /**

     * @dev See {IERC721-approve}.

     */

    function approve(address to, uint256 tokenId) public override {

        address owner = ERC721A.ownerOf(tokenId);

        if (to == owner) revert ApprovalToCurrentOwner();



        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {

            revert ApprovalCallerNotOwnerNorApproved();

        }



        _approve(to, tokenId, owner);

    }



    /**

     * @dev See {IERC721-getApproved}.

     */

    function getApproved(uint256 tokenId) public view override returns (address) {

        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();



        return _tokenApprovals[tokenId];

    }



    /**

     * @dev See {IERC721-setApprovalForAll}.

     */

    function setApprovalForAll(address operator, bool approved) public virtual override {

        if (operator == _msgSender()) revert ApproveToCaller();



        _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 {

        _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 {

        _transfer(from, to, tokenId);

        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {

            revert TransferToNonERC721ReceiverImplementer();

        }

    }



    /**

     * @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`),

     */

    function _exists(uint256 tokenId) internal view returns (bool) {

        return _startTokenId() <= tokenId && tokenId < _currentIndex &&

            !_ownerships[tokenId].burned;

    }



    function _safeMint(address to, uint256 quantity) internal {

        _safeMint(to, quantity, '');

    }



    /**

     * @dev Safely mints `quantity` tokens and transfers them to `to`.

     *

     * Requirements:

     *

     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.

     * - `quantity` must be greater than 0.

     *

     * Emits a {Transfer} event.

     */

    function _safeMint(

        address to,

        uint256 quantity,

        bytes memory _data

    ) internal {

        _mint(to, quantity, _data, true);

    }



    /**

     * @dev Mints `quantity` tokens and transfers them to `to`.

     *

     * Requirements:

     *

     * - `to` cannot be the zero address.

     * - `quantity` must be greater than 0.

     *

     * Emits a {Transfer} event.

     */

    function _mint(

        address to,

        uint256 quantity,

        bytes memory _data,

        bool safe

    ) internal {

        uint256 startTokenId = _currentIndex;

        if (to == address(0)) revert MintToZeroAddress();

        if (quantity == 0) revert MintZeroQuantity();



        _beforeTokenTransfers(address(0), to, startTokenId, quantity);



        // Overflows are incredibly unrealistic.

        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1

        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1

        unchecked {

            _addressData[to].balance += uint64(quantity);

            _addressData[to].numberMinted += uint64(quantity);



            _ownerships[startTokenId].addr = to;

            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);



            uint256 updatedIndex = startTokenId;

            uint256 end = updatedIndex + quantity;



            if (safe && to.isContract()) {

                do {

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

                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {

                        revert TransferToNonERC721ReceiverImplementer();

                    }

                } while (updatedIndex != end);

                // Reentrancy protection

                if (_currentIndex != startTokenId) revert();

            } else {

                do {

                    emit Transfer(address(0), to, updatedIndex++);

                } while (updatedIndex != end);

            }

            _currentIndex = updatedIndex;

        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);

    }



    /**

     * @dev Transfers `tokenId` from `from` to `to`.

     *

     * 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

    ) private {

        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);



        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();



        bool isApprovedOrOwner = (_msgSender() == from ||

            isApprovedForAll(from, _msgSender()) ||

            getApproved(tokenId) == _msgSender());



        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();



        _beforeTokenTransfers(from, to, tokenId, 1);



        // Clear approvals from the previous owner

        _approve(address(0), tokenId, from);



        // Underflow of the sender's balance is impossible because we check for

        // ownership above and the recipient's balance can't realistically overflow.

        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.

        unchecked {

            _addressData[from].balance -= 1;

            _addressData[to].balance += 1;



            TokenOwnership storage currSlot = _ownerships[tokenId];

            currSlot.addr = to;

            currSlot.startTimestamp = uint64(block.timestamp);



            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.

            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.

            uint256 nextTokenId = tokenId + 1;

            TokenOwnership storage nextSlot = _ownerships[nextTokenId];

            if (nextSlot.addr == address(0)) {

                // This will suffice for checking _exists(nextTokenId),

                // as a burned slot cannot contain the zero address.

                if (nextTokenId != _currentIndex) {

                    nextSlot.addr = from;

                    nextSlot.startTimestamp = prevOwnership.startTimestamp;

                }

            }

        }



        emit Transfer(from, to, tokenId);

        _afterTokenTransfers(from, to, tokenId, 1);

    }



    /**

     * @dev This is equivalent to _burn(tokenId, false)

     */

    function _burn(uint256 tokenId) internal virtual {

        _burn(tokenId, false);

    }



    /**

     * @dev Destroys `tokenId`.

     * The approval is cleared when the token is burned.

     *

     * Requirements:

     *

     * - `tokenId` must exist.

     *

     * Emits a {Transfer} event.

     */

    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {

        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);



        address from = prevOwnership.addr;



        if (approvalCheck) {

            bool isApprovedOrOwner = (_msgSender() == from ||

                isApprovedForAll(from, _msgSender()) ||

                getApproved(tokenId) == _msgSender());



            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();

        }



        _beforeTokenTransfers(from, address(0), tokenId, 1);



        // Clear approvals from the previous owner

        _approve(address(0), tokenId, from);



        // Underflow of the sender's balance is impossible because we check for

        // ownership above and the recipient's balance can't realistically overflow.

        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.

        unchecked {

            AddressData storage addressData = _addressData[from];

            addressData.balance -= 1;

            addressData.numberBurned += 1;



            // Keep track of who burned the token, and the timestamp of burning.

            TokenOwnership storage currSlot = _ownerships[tokenId];

            currSlot.addr = from;

            currSlot.startTimestamp = uint64(block.timestamp);

            currSlot.burned = true;



            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.

            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.

            uint256 nextTokenId = tokenId + 1;

            TokenOwnership storage nextSlot = _ownerships[nextTokenId];

            if (nextSlot.addr == address(0)) {

                // This will suffice for checking _exists(nextTokenId),

                // as a burned slot cannot contain the zero address.

                if (nextTokenId != _currentIndex) {

                    nextSlot.addr = from;

                    nextSlot.startTimestamp = prevOwnership.startTimestamp;

                }

            }

        }



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

        _afterTokenTransfers(from, address(0), tokenId, 1);



        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.

        unchecked {

            _burnCounter++;

        }

    }



    /**

     * @dev Approve `to` to operate on `tokenId`

     *

     * Emits a {Approval} event.

     */

    function _approve(

        address to,

        uint256 tokenId,

        address owner

    ) private {

        _tokenApprovals[tokenId] = to;

        emit Approval(owner, to, tokenId);

    }



    /**

     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(

        address from,

        address to,

        uint256 tokenId,

        bytes memory _data

    ) private returns (bool) {

        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 TransferToNonERC721ReceiverImplementer();

            } else {

                assembly {

                    revert(add(32, reason), mload(reason))

                }

            }

        }

    }



    /**

     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.

     * And also called before burning one token.

     *

     * startTokenId - the first token id to be transferred

     * quantity - the amount to be transferred

     *

     * 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, `tokenId` will be burned by `from`.

     * - `from` and `to` are never both zero.

     */

    function _beforeTokenTransfers(

        address from,

        address to,

        uint256 startTokenId,

        uint256 quantity

    ) internal virtual {}



    /**

     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes

     * minting.

     * And also called after one token has been burned.

     *

     * startTokenId - the first token id to be transferred

     * quantity - the amount to be transferred

     *

     * Calling conditions:

     *

     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been

     * transferred to `to`.

     * - When `from` is zero, `tokenId` has been minted for `to`.

     * - When `to` is zero, `tokenId` has been burned by `from`.

     * - `from` and `to` are never both zero.

     */

    function _afterTokenTransfers(

        address from,

        address to,

        uint256 startTokenId,

        uint256 quantity

    ) internal virtual {}

}
// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (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;

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

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

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

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

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

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

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

// File: contracts/contract.sol


pragma solidity ^0.8.4;


contract AscendOfTheDivineOnes is Ownable, ERC721A  {

    using Strings for uint256;

    string private _baseTokenURI;

    uint256 public cost = 0.004444 ether;
    uint256 public maxSupply = 6666;
    uint256 public maxMintPerWallet = 10;
    uint256 public totalFreeMintsAllowed=333;
    uint256 public freeNFTsMinted=0;
    bool public paused = true;

    constructor() ERC721A("Ascend of the Divine Ones", "AOTDO") {}

    modifier mintCompliance(uint256 _mintAmount) {
        require(_mintAmount > 0 , "Invalid mint amount!");
        require(totalMinted() + _mintAmount <= maxSupply, "Max supply exceeded!");
        _;
    }

    function freeMint(uint64 _mintAmount) public payable mintCompliance(_mintAmount) {
        require(!paused, "The contract is paused!");
       
        require(numberMinted(msg.sender) + _mintAmount <= maxMintPerWallet, "Mint limit exceeded." );
        require(freeNFTsMinted + _mintAmount <= totalFreeMintsAllowed, "Free Mint limit exceeded." );
        
        _safeMint(msg.sender, _mintAmount);
        freeNFTsMinted+=_mintAmount;
    }

    function mint(uint64 _mintAmount) public payable mintCompliance(_mintAmount) {
        require(!paused, "The contract is paused!");
       
        require(msg.value >= cost * _mintAmount, "Insufficient funds!");
        require(numberMinted(msg.sender) + _mintAmount <= maxMintPerWallet, "Mint limit exceeded." );
        
        _safeMint(msg.sender, _mintAmount);
    }

    function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
        _safeMint(_receiver, _mintAmount);
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
        address currentTokenOwner = ownerOf(currentTokenId);

        if (currentTokenOwner == _owner) {
            ownedTokenIds[ownedTokenIndex] = currentTokenId;
            ownedTokenIndex++;
        }

        currentTokenId++;
        }

        return ownedTokenIds;
    }

    function tokenURI(uint256 _tokenId)

        public
        view
        virtual
        override
        returns (string memory)

    {

        require(
        _exists(_tokenId),
        "ERC721Metadata: URI query for nonexistent token"
        );

        string memory currentBaseURI = _baseURI();

        return bytes(currentBaseURI).length > 0

            ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json"))

            : "";
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function totalMinted() public view returns (uint256) {
        return _totalMinted();
    }

    function exists(uint256 tokenId) public view returns (bool) {
        return _exists(tokenId);
    }

    function burn(uint256 tokenId, bool approvalCheck) public {
        _burn(tokenId, approvalCheck);
    }

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

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function setCost(uint256 _cost) public onlyOwner {
        cost = _cost;
    }

    function setTotalFreeMintsAllowed(uint256 _totalFreeMinstAllowed) public onlyOwner {
        totalFreeMintsAllowed = _totalFreeMinstAllowed;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

    function setMaxMintPerWallet(uint256 _maxMintPerWallet) public onlyOwner {
        maxMintPerWallet = _maxMintPerWallet;
    }

    function withdraw() public onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":[{"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"},{"internalType":"bool","name":"approvalCheck","type":"bool"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_mintAmount","type":"uint64"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeNFTsMinted","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":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_mintAmount","type":"uint64"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintPerWallet","type":"uint256"}],"name":"setMaxMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_totalFreeMinstAllowed","type":"uint256"}],"name":"setTotalFreeMintsAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeMintsAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052660fc9cb6161c000600a908155611a0a600b55600c5561014d600d556000600e55600f805460ff191660011790553480156200003f57600080fd5b506040518060400160405280601981526020017f417363656e64206f662074686520446976696e65204f6e65730000000000000081525060405180604001604052806005815260200164414f54444f60d81b815250620000ae620000a8620000e660201b60201c565b620000ea565b8151620000c39060039060208501906200013a565b508051620000d99060049060208401906200013a565b505060018055506200021d565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200014890620001e0565b90600052602060002090601f0160209004810192826200016c5760008555620001b7565b82601f106200018757805160ff1916838001178555620001b7565b82800160010185558215620001b7579182015b82811115620001b75782518255916020019190600101906200019a565b50620001c5929150620001c9565b5090565b5b80821115620001c55760008155600101620001ca565b600181811c90821680620001f557607f821691505b602082108114156200021757634e487b7160e01b600052602260045260246000fd5b50919050565b6122da806200022d6000396000f3fe6080604052600436106102255760003560e01c8063715018a611610123578063b228d925116100ab578063dc33e6811161006f578063dc33e68114610620578063e985e9c514610640578063efbd73f414610689578063f2fde38b146106a9578063fb9d09c8146106c957600080fd5b8063b228d92514610594578063b88d4fde146105aa578063c87b56dd146105ca578063d5abeb01146105ea578063d60fe4341461060057600080fd5b80639fac68cb116100f25780639fac68cb146105095780639fbd646114610529578063a22cb4651461053f578063a2309ff81461055f578063afdf61341461057457600080fd5b8063715018a6146104ab57806384e4383b146104c05780638da5cb5b146104d657806395d89b41146104f457600080fd5b80633ccfd60b116101b157806355f804b31161017557806355f804b3146104115780635c975abb146104315780636352211e1461044b5780636f8b44b01461046b57806370a082311461048b57600080fd5b80633ccfd60b1461036f57806342842e0e14610384578063438b6300146103a457806344a0d68a146103d15780634f558e79146103f157600080fd5b8063095ea7b3116101f8578063095ea7b3146102ce57806313faede6146102ee57806316c38b3c1461031257806318160ddd1461033257806323b872dd1461034f57600080fd5b806301ffc9a71461022a57806302be8bff1461025f57806306fdde0314610274578063081812fc14610296575b600080fd5b34801561023657600080fd5b5061024a610245366004611e5b565b6106dc565b60405190151581526020015b60405180910390f35b61027261026d366004611f65565b61072e565b005b34801561028057600080fd5b506102896108e6565b604051610256919061207a565b3480156102a257600080fd5b506102b66102b1366004611f06565b610978565b6040516001600160a01b039091168152602001610256565b3480156102da57600080fd5b506102726102e9366004611e16565b6109bc565b3480156102fa57600080fd5b50610304600a5481565b604051908152602001610256565b34801561031e57600080fd5b5061027261032d366004611e40565b610a4a565b34801561033e57600080fd5b506002546001540360001901610304565b34801561035b57600080fd5b5061027261036a366004611cd5565b610a87565b34801561037b57600080fd5b50610272610a92565b34801561039057600080fd5b5061027261039f366004611cd5565b610b1f565b3480156103b057600080fd5b506103c46103bf366004611c87565b610b3a565b6040516102569190612036565b3480156103dd57600080fd5b506102726103ec366004611f06565b610c1a565b3480156103fd57600080fd5b5061024a61040c366004611f06565b610c49565b34801561041d57600080fd5b5061027261042c366004611e95565b610c54565b34801561043d57600080fd5b50600f5461024a9060ff1681565b34801561045757600080fd5b506102b6610466366004611f06565b610c8a565b34801561047757600080fd5b50610272610486366004611f06565b610c9c565b34801561049757600080fd5b506103046104a6366004611c87565b610ccb565b3480156104b757600080fd5b50610272610d19565b3480156104cc57600080fd5b50610304600d5481565b3480156104e257600080fd5b506000546001600160a01b03166102b6565b34801561050057600080fd5b50610289610d4f565b34801561051557600080fd5b50610272610524366004611f42565b610d5e565b34801561053557600080fd5b50610304600e5481565b34801561054b57600080fd5b5061027261055a366004611dec565b610d6c565b34801561056b57600080fd5b50610304610e02565b34801561058057600080fd5b5061027261058f366004611f06565b610e16565b3480156105a057600080fd5b50610304600c5481565b3480156105b657600080fd5b506102726105c5366004611d11565b610e45565b3480156105d657600080fd5b506102896105e5366004611f06565b610e96565b3480156105f657600080fd5b50610304600b5481565b34801561060c57600080fd5b5061027261061b366004611f06565b610f61565b34801561062c57600080fd5b5061030461063b366004611c87565b610f90565b34801561064c57600080fd5b5061024a61065b366004611ca2565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561069557600080fd5b506102726106a4366004611f1f565b610fbe565b3480156106b557600080fd5b506102726106c4366004611c87565b611047565b6102726106d7366004611f65565b6110df565b60006001600160e01b031982166380ac58cd60e01b148061070d57506001600160e01b03198216635b5e139f60e01b145b8061072857506301ffc9a760e01b6001600160e01b03198316145b92915050565b806001600160401b0316600081116107615760405162461bcd60e51b81526004016107589061208d565b60405180910390fd5b600b548161076d610e02565b610777919061211e565b11156107955760405162461bcd60e51b8152600401610758906120f0565b600f5460ff16156107e25760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610758565b600c54826001600160401b03166107f833610f90565b610802919061211e565b11156108475760405162461bcd60e51b815260206004820152601460248201527326b4b73a103634b6b4ba1032bc31b2b2b232b21760611b6044820152606401610758565b600d54826001600160401b0316600e54610861919061211e565b11156108af5760405162461bcd60e51b815260206004820152601960248201527f46726565204d696e74206c696d69742065786365656465642e000000000000006044820152606401610758565b6108c233836001600160401b031661125a565b816001600160401b0316600e60008282546108dd919061211e565b90915550505050565b6060600380546108f5906121ac565b80601f0160208091040260200160405190810160405280929190818152602001828054610921906121ac565b801561096e5780601f106109435761010080835404028352916020019161096e565b820191906000526020600020905b81548152906001019060200180831161095157829003601f168201915b5050505050905090565b600061098382611274565b6109a0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006109c782610c8a565b9050806001600160a01b0316836001600160a01b031614156109fc5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a1c5750610a1a813361065b565b155b15610a3a576040516367d9dca160e11b815260040160405180910390fd5b610a458383836112ad565b505050565b6000546001600160a01b03163314610a745760405162461bcd60e51b8152600401610758906120bb565b600f805460ff1916911515919091179055565b610a45838383611309565b6000546001600160a01b03163314610abc5760405162461bcd60e51b8152600401610758906120bb565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610b09576040519150601f19603f3d011682016040523d82523d6000602084013e610b0e565b606091505b5050905080610b1c57600080fd5b50565b610a4583838360405180602001604052806000815250610e45565b60606000610b4783610ccb565b90506000816001600160401b03811115610b6357610b63612258565b604051908082528060200260200182016040528015610b8c578160200160208202803683370190505b509050600160005b8381108015610ba55750600b548211155b15610c10576000610bb583610c8a565b9050866001600160a01b0316816001600160a01b03161415610bfd5782848381518110610be457610be4612242565b602090810291909101015281610bf9816121e7565b9250505b82610c07816121e7565b93505050610b94565b5090949350505050565b6000546001600160a01b03163314610c445760405162461bcd60e51b8152600401610758906120bb565b600a55565b600061072882611274565b6000546001600160a01b03163314610c7e5760405162461bcd60e51b8152600401610758906120bb565b610a4560098383611bc2565b6000610c95826114e5565b5192915050565b6000546001600160a01b03163314610cc65760405162461bcd60e51b8152600401610758906120bb565b600b55565b60006001600160a01b038216610cf4576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610d435760405162461bcd60e51b8152600401610758906120bb565b610d4d600061160c565b565b6060600480546108f5906121ac565b610d68828261165c565b5050565b6001600160a01b038216331415610d965760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610e116001546000190190565b905090565b6000546001600160a01b03163314610e405760405162461bcd60e51b8152600401610758906120bb565b600c55565b610e50848484611309565b6001600160a01b0383163b15158015610e725750610e7084848484611810565b155b15610e90576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ea182611274565b610f055760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610758565b6000610f0f611908565b90506000815111610f2f5760405180602001604052806000815250610f5a565b80610f3984611917565b604051602001610f4a929190611fba565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314610f8b5760405162461bcd60e51b8152600401610758906120bb565b600d55565b6001600160a01b038116600090815260066020526040812054600160401b90046001600160401b0316610728565b8160008111610fdf5760405162461bcd60e51b81526004016107589061208d565b600b5481610feb610e02565b610ff5919061211e565b11156110135760405162461bcd60e51b8152600401610758906120f0565b6000546001600160a01b0316331461103d5760405162461bcd60e51b8152600401610758906120bb565b610a45828461125a565b6000546001600160a01b031633146110715760405162461bcd60e51b8152600401610758906120bb565b6001600160a01b0381166110d65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610758565b610b1c8161160c565b806001600160401b0316600081116111095760405162461bcd60e51b81526004016107589061208d565b600b5481611115610e02565b61111f919061211e565b111561113d5760405162461bcd60e51b8152600401610758906120f0565b600f5460ff161561118a5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610758565b816001600160401b0316600a546111a1919061214a565b3410156111e65760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610758565b600c54826001600160401b03166111fc33610f90565b611206919061211e565b111561124b5760405162461bcd60e51b815260206004820152601460248201527326b4b73a103634b6b4ba1032bc31b2b2b232b21760611b6044820152606401610758565b610d6833836001600160401b03165b610d68828260405180602001604052806000815250611a14565b600081600111158015611288575060015482105b8015610728575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611314826114e5565b9050836001600160a01b031681600001516001600160a01b03161461134b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806113695750611369853361065b565b8061138457503361137984610978565b6001600160a01b0316145b9050806113a457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166113cb57604051633a954ecd60e21b815260040160405180910390fd5b6113d7600084876112ad565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166114ab5760015482146114ab57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061228583398151915260405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611515575060015481105b156115f357600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906115f15780516001600160a01b031615611588579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156115ec579392505050565b611588565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000611667836114e5565b805190915082156116cd576000336001600160a01b03831614806116905750611690823361065b565b806116ab5750336116a086610978565b6001600160a01b0316145b9050806116cb57604051632ce44b5f60e11b815260040160405180910390fd5b505b6116d9600085836112ad565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b1785559189018084529220805491949091166117d75760015482146117d757805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612285833981519152908390a450506002805460010190555050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611845903390899088908890600401611ff9565b602060405180830381600087803b15801561185f57600080fd5b505af192505050801561188f575060408051601f3d908101601f1916820190925261188c91810190611e78565b60015b6118ea573d8080156118bd576040519150601f19603f3d011682016040523d82523d6000602084013e6118c2565b606091505b5080516118e2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546108f5906121ac565b60608161193b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611965578061194f816121e7565b915061195e9050600a83612136565b915061193f565b6000816001600160401b0381111561197f5761197f612258565b6040519080825280601f01601f1916602001820160405280156119a9576020820181803683370190505b5090505b8415611900576119be600183612169565b91506119cb600a86612202565b6119d690603061211e565b60f81b8183815181106119eb576119eb612242565b60200101906001600160f81b031916908160001a905350611a0d600a86612136565b94506119ad565b610a45838383600180546001600160a01b038516611a4457604051622e076360e81b815260040160405180910390fd5b83611a625760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611b0e57506001600160a01b0387163b15155b15611b85575b60405182906001600160a01b03891690600090600080516020612285833981519152908290a4611b4d6000888480600101955088611810565b611b6a576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611b14578260015414611b8057600080fd5b611bb9565b5b6040516001830192906001600160a01b03891690600090600080516020612285833981519152908290a480821415611b86575b506001556114de565b828054611bce906121ac565b90600052602060002090601f016020900481019282611bf05760008555611c36565b82601f10611c095782800160ff19823516178555611c36565b82800160010185558215611c36579182015b82811115611c36578235825591602001919060010190611c1b565b50611c42929150611c46565b5090565b5b80821115611c425760008155600101611c47565b80356001600160a01b0381168114611c7257600080fd5b919050565b80358015158114611c7257600080fd5b600060208284031215611c9957600080fd5b610f5a82611c5b565b60008060408385031215611cb557600080fd5b611cbe83611c5b565b9150611ccc60208401611c5b565b90509250929050565b600080600060608486031215611cea57600080fd5b611cf384611c5b565b9250611d0160208501611c5b565b9150604084013590509250925092565b60008060008060808587031215611d2757600080fd5b611d3085611c5b565b9350611d3e60208601611c5b565b92506040850135915060608501356001600160401b0380821115611d6157600080fd5b818701915087601f830112611d7557600080fd5b813581811115611d8757611d87612258565b604051601f8201601f19908116603f01168101908382118183101715611daf57611daf612258565b816040528281528a6020848701011115611dc857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611dff57600080fd5b611e0883611c5b565b9150611ccc60208401611c77565b60008060408385031215611e2957600080fd5b611e3283611c5b565b946020939093013593505050565b600060208284031215611e5257600080fd5b610f5a82611c77565b600060208284031215611e6d57600080fd5b8135610f5a8161226e565b600060208284031215611e8a57600080fd5b8151610f5a8161226e565b60008060208385031215611ea857600080fd5b82356001600160401b0380821115611ebf57600080fd5b818501915085601f830112611ed357600080fd5b813581811115611ee257600080fd5b866020828501011115611ef457600080fd5b60209290920196919550909350505050565b600060208284031215611f1857600080fd5b5035919050565b60008060408385031215611f3257600080fd5b82359150611ccc60208401611c5b565b60008060408385031215611f5557600080fd5b82359150611ccc60208401611c77565b600060208284031215611f7757600080fd5b81356001600160401b0381168114610f5a57600080fd5b60008151808452611fa6816020860160208601612180565b601f01601f19169290920160200192915050565b60008351611fcc818460208801612180565b835190830190611fe0818360208801612180565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061202c90830184611f8e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561206e57835183529284019291840191600101612052565b50909695505050505050565b602081526000610f5a6020830184611f8e565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6000821982111561213157612131612216565b500190565b6000826121455761214561222c565b500490565b600081600019048311821515161561216457612164612216565b500290565b60008282101561217b5761217b612216565b500390565b60005b8381101561219b578181015183820152602001612183565b83811115610e905750506000910152565b600181811c908216806121c057607f821691505b602082108114156121e157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121fb576121fb612216565b5060010190565b6000826122115761221161222c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b1c57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220abf8b2ec330241bf79adf5f6f9cfb3da4651f6384c08ebe1b63666134308c02964736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063715018a611610123578063b228d925116100ab578063dc33e6811161006f578063dc33e68114610620578063e985e9c514610640578063efbd73f414610689578063f2fde38b146106a9578063fb9d09c8146106c957600080fd5b8063b228d92514610594578063b88d4fde146105aa578063c87b56dd146105ca578063d5abeb01146105ea578063d60fe4341461060057600080fd5b80639fac68cb116100f25780639fac68cb146105095780639fbd646114610529578063a22cb4651461053f578063a2309ff81461055f578063afdf61341461057457600080fd5b8063715018a6146104ab57806384e4383b146104c05780638da5cb5b146104d657806395d89b41146104f457600080fd5b80633ccfd60b116101b157806355f804b31161017557806355f804b3146104115780635c975abb146104315780636352211e1461044b5780636f8b44b01461046b57806370a082311461048b57600080fd5b80633ccfd60b1461036f57806342842e0e14610384578063438b6300146103a457806344a0d68a146103d15780634f558e79146103f157600080fd5b8063095ea7b3116101f8578063095ea7b3146102ce57806313faede6146102ee57806316c38b3c1461031257806318160ddd1461033257806323b872dd1461034f57600080fd5b806301ffc9a71461022a57806302be8bff1461025f57806306fdde0314610274578063081812fc14610296575b600080fd5b34801561023657600080fd5b5061024a610245366004611e5b565b6106dc565b60405190151581526020015b60405180910390f35b61027261026d366004611f65565b61072e565b005b34801561028057600080fd5b506102896108e6565b604051610256919061207a565b3480156102a257600080fd5b506102b66102b1366004611f06565b610978565b6040516001600160a01b039091168152602001610256565b3480156102da57600080fd5b506102726102e9366004611e16565b6109bc565b3480156102fa57600080fd5b50610304600a5481565b604051908152602001610256565b34801561031e57600080fd5b5061027261032d366004611e40565b610a4a565b34801561033e57600080fd5b506002546001540360001901610304565b34801561035b57600080fd5b5061027261036a366004611cd5565b610a87565b34801561037b57600080fd5b50610272610a92565b34801561039057600080fd5b5061027261039f366004611cd5565b610b1f565b3480156103b057600080fd5b506103c46103bf366004611c87565b610b3a565b6040516102569190612036565b3480156103dd57600080fd5b506102726103ec366004611f06565b610c1a565b3480156103fd57600080fd5b5061024a61040c366004611f06565b610c49565b34801561041d57600080fd5b5061027261042c366004611e95565b610c54565b34801561043d57600080fd5b50600f5461024a9060ff1681565b34801561045757600080fd5b506102b6610466366004611f06565b610c8a565b34801561047757600080fd5b50610272610486366004611f06565b610c9c565b34801561049757600080fd5b506103046104a6366004611c87565b610ccb565b3480156104b757600080fd5b50610272610d19565b3480156104cc57600080fd5b50610304600d5481565b3480156104e257600080fd5b506000546001600160a01b03166102b6565b34801561050057600080fd5b50610289610d4f565b34801561051557600080fd5b50610272610524366004611f42565b610d5e565b34801561053557600080fd5b50610304600e5481565b34801561054b57600080fd5b5061027261055a366004611dec565b610d6c565b34801561056b57600080fd5b50610304610e02565b34801561058057600080fd5b5061027261058f366004611f06565b610e16565b3480156105a057600080fd5b50610304600c5481565b3480156105b657600080fd5b506102726105c5366004611d11565b610e45565b3480156105d657600080fd5b506102896105e5366004611f06565b610e96565b3480156105f657600080fd5b50610304600b5481565b34801561060c57600080fd5b5061027261061b366004611f06565b610f61565b34801561062c57600080fd5b5061030461063b366004611c87565b610f90565b34801561064c57600080fd5b5061024a61065b366004611ca2565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561069557600080fd5b506102726106a4366004611f1f565b610fbe565b3480156106b557600080fd5b506102726106c4366004611c87565b611047565b6102726106d7366004611f65565b6110df565b60006001600160e01b031982166380ac58cd60e01b148061070d57506001600160e01b03198216635b5e139f60e01b145b8061072857506301ffc9a760e01b6001600160e01b03198316145b92915050565b806001600160401b0316600081116107615760405162461bcd60e51b81526004016107589061208d565b60405180910390fd5b600b548161076d610e02565b610777919061211e565b11156107955760405162461bcd60e51b8152600401610758906120f0565b600f5460ff16156107e25760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610758565b600c54826001600160401b03166107f833610f90565b610802919061211e565b11156108475760405162461bcd60e51b815260206004820152601460248201527326b4b73a103634b6b4ba1032bc31b2b2b232b21760611b6044820152606401610758565b600d54826001600160401b0316600e54610861919061211e565b11156108af5760405162461bcd60e51b815260206004820152601960248201527f46726565204d696e74206c696d69742065786365656465642e000000000000006044820152606401610758565b6108c233836001600160401b031661125a565b816001600160401b0316600e60008282546108dd919061211e565b90915550505050565b6060600380546108f5906121ac565b80601f0160208091040260200160405190810160405280929190818152602001828054610921906121ac565b801561096e5780601f106109435761010080835404028352916020019161096e565b820191906000526020600020905b81548152906001019060200180831161095157829003601f168201915b5050505050905090565b600061098382611274565b6109a0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006109c782610c8a565b9050806001600160a01b0316836001600160a01b031614156109fc5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a1c5750610a1a813361065b565b155b15610a3a576040516367d9dca160e11b815260040160405180910390fd5b610a458383836112ad565b505050565b6000546001600160a01b03163314610a745760405162461bcd60e51b8152600401610758906120bb565b600f805460ff1916911515919091179055565b610a45838383611309565b6000546001600160a01b03163314610abc5760405162461bcd60e51b8152600401610758906120bb565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610b09576040519150601f19603f3d011682016040523d82523d6000602084013e610b0e565b606091505b5050905080610b1c57600080fd5b50565b610a4583838360405180602001604052806000815250610e45565b60606000610b4783610ccb565b90506000816001600160401b03811115610b6357610b63612258565b604051908082528060200260200182016040528015610b8c578160200160208202803683370190505b509050600160005b8381108015610ba55750600b548211155b15610c10576000610bb583610c8a565b9050866001600160a01b0316816001600160a01b03161415610bfd5782848381518110610be457610be4612242565b602090810291909101015281610bf9816121e7565b9250505b82610c07816121e7565b93505050610b94565b5090949350505050565b6000546001600160a01b03163314610c445760405162461bcd60e51b8152600401610758906120bb565b600a55565b600061072882611274565b6000546001600160a01b03163314610c7e5760405162461bcd60e51b8152600401610758906120bb565b610a4560098383611bc2565b6000610c95826114e5565b5192915050565b6000546001600160a01b03163314610cc65760405162461bcd60e51b8152600401610758906120bb565b600b55565b60006001600160a01b038216610cf4576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610d435760405162461bcd60e51b8152600401610758906120bb565b610d4d600061160c565b565b6060600480546108f5906121ac565b610d68828261165c565b5050565b6001600160a01b038216331415610d965760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610e116001546000190190565b905090565b6000546001600160a01b03163314610e405760405162461bcd60e51b8152600401610758906120bb565b600c55565b610e50848484611309565b6001600160a01b0383163b15158015610e725750610e7084848484611810565b155b15610e90576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ea182611274565b610f055760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610758565b6000610f0f611908565b90506000815111610f2f5760405180602001604052806000815250610f5a565b80610f3984611917565b604051602001610f4a929190611fba565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314610f8b5760405162461bcd60e51b8152600401610758906120bb565b600d55565b6001600160a01b038116600090815260066020526040812054600160401b90046001600160401b0316610728565b8160008111610fdf5760405162461bcd60e51b81526004016107589061208d565b600b5481610feb610e02565b610ff5919061211e565b11156110135760405162461bcd60e51b8152600401610758906120f0565b6000546001600160a01b0316331461103d5760405162461bcd60e51b8152600401610758906120bb565b610a45828461125a565b6000546001600160a01b031633146110715760405162461bcd60e51b8152600401610758906120bb565b6001600160a01b0381166110d65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610758565b610b1c8161160c565b806001600160401b0316600081116111095760405162461bcd60e51b81526004016107589061208d565b600b5481611115610e02565b61111f919061211e565b111561113d5760405162461bcd60e51b8152600401610758906120f0565b600f5460ff161561118a5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610758565b816001600160401b0316600a546111a1919061214a565b3410156111e65760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610758565b600c54826001600160401b03166111fc33610f90565b611206919061211e565b111561124b5760405162461bcd60e51b815260206004820152601460248201527326b4b73a103634b6b4ba1032bc31b2b2b232b21760611b6044820152606401610758565b610d6833836001600160401b03165b610d68828260405180602001604052806000815250611a14565b600081600111158015611288575060015482105b8015610728575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611314826114e5565b9050836001600160a01b031681600001516001600160a01b03161461134b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806113695750611369853361065b565b8061138457503361137984610978565b6001600160a01b0316145b9050806113a457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166113cb57604051633a954ecd60e21b815260040160405180910390fd5b6113d7600084876112ad565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166114ab5760015482146114ab57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061228583398151915260405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611515575060015481105b156115f357600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906115f15780516001600160a01b031615611588579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156115ec579392505050565b611588565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000611667836114e5565b805190915082156116cd576000336001600160a01b03831614806116905750611690823361065b565b806116ab5750336116a086610978565b6001600160a01b0316145b9050806116cb57604051632ce44b5f60e11b815260040160405180910390fd5b505b6116d9600085836112ad565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b1785559189018084529220805491949091166117d75760015482146117d757805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612285833981519152908390a450506002805460010190555050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611845903390899088908890600401611ff9565b602060405180830381600087803b15801561185f57600080fd5b505af192505050801561188f575060408051601f3d908101601f1916820190925261188c91810190611e78565b60015b6118ea573d8080156118bd576040519150601f19603f3d011682016040523d82523d6000602084013e6118c2565b606091505b5080516118e2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546108f5906121ac565b60608161193b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611965578061194f816121e7565b915061195e9050600a83612136565b915061193f565b6000816001600160401b0381111561197f5761197f612258565b6040519080825280601f01601f1916602001820160405280156119a9576020820181803683370190505b5090505b8415611900576119be600183612169565b91506119cb600a86612202565b6119d690603061211e565b60f81b8183815181106119eb576119eb612242565b60200101906001600160f81b031916908160001a905350611a0d600a86612136565b94506119ad565b610a45838383600180546001600160a01b038516611a4457604051622e076360e81b815260040160405180910390fd5b83611a625760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611b0e57506001600160a01b0387163b15155b15611b85575b60405182906001600160a01b03891690600090600080516020612285833981519152908290a4611b4d6000888480600101955088611810565b611b6a576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611b14578260015414611b8057600080fd5b611bb9565b5b6040516001830192906001600160a01b03891690600090600080516020612285833981519152908290a480821415611b86575b506001556114de565b828054611bce906121ac565b90600052602060002090601f016020900481019282611bf05760008555611c36565b82601f10611c095782800160ff19823516178555611c36565b82800160010185558215611c36579182015b82811115611c36578235825591602001919060010190611c1b565b50611c42929150611c46565b5090565b5b80821115611c425760008155600101611c47565b80356001600160a01b0381168114611c7257600080fd5b919050565b80358015158114611c7257600080fd5b600060208284031215611c9957600080fd5b610f5a82611c5b565b60008060408385031215611cb557600080fd5b611cbe83611c5b565b9150611ccc60208401611c5b565b90509250929050565b600080600060608486031215611cea57600080fd5b611cf384611c5b565b9250611d0160208501611c5b565b9150604084013590509250925092565b60008060008060808587031215611d2757600080fd5b611d3085611c5b565b9350611d3e60208601611c5b565b92506040850135915060608501356001600160401b0380821115611d6157600080fd5b818701915087601f830112611d7557600080fd5b813581811115611d8757611d87612258565b604051601f8201601f19908116603f01168101908382118183101715611daf57611daf612258565b816040528281528a6020848701011115611dc857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611dff57600080fd5b611e0883611c5b565b9150611ccc60208401611c77565b60008060408385031215611e2957600080fd5b611e3283611c5b565b946020939093013593505050565b600060208284031215611e5257600080fd5b610f5a82611c77565b600060208284031215611e6d57600080fd5b8135610f5a8161226e565b600060208284031215611e8a57600080fd5b8151610f5a8161226e565b60008060208385031215611ea857600080fd5b82356001600160401b0380821115611ebf57600080fd5b818501915085601f830112611ed357600080fd5b813581811115611ee257600080fd5b866020828501011115611ef457600080fd5b60209290920196919550909350505050565b600060208284031215611f1857600080fd5b5035919050565b60008060408385031215611f3257600080fd5b82359150611ccc60208401611c5b565b60008060408385031215611f5557600080fd5b82359150611ccc60208401611c77565b600060208284031215611f7757600080fd5b81356001600160401b0381168114610f5a57600080fd5b60008151808452611fa6816020860160208601612180565b601f01601f19169290920160200192915050565b60008351611fcc818460208801612180565b835190830190611fe0818360208801612180565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061202c90830184611f8e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561206e57835183529284019291840191600101612052565b50909695505050505050565b602081526000610f5a6020830184611f8e565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6000821982111561213157612131612216565b500190565b6000826121455761214561222c565b500490565b600081600019048311821515161561216457612164612216565b500290565b60008282101561217b5761217b612216565b500390565b60005b8381101561219b578181015183820152602001612183565b83811115610e905750506000910152565b600181811c908216806121c057607f821691505b602082108114156121e157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121fb576121fb612216565b5060010190565b6000826122115761221161222c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b1c57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220abf8b2ec330241bf79adf5f6f9cfb3da4651f6384c08ebe1b63666134308c02964736f6c63430008070033

Deployed Bytecode Sourcemap

48795:4284:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27447:315;;;;;;;;;;-1:-1:-1;27447:315:0;;;;;:::i;:::-;;:::i;:::-;;;7696:14:1;;7689:22;7671:41;;7659:2;7644:18;27447:315:0;;;;;;;;49457:451;;;;;;:::i;:::-;;:::i;:::-;;30730:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32327:212::-;;;;;;;;;;-1:-1:-1;32327:212:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6357:32:1;;;6339:51;;6327:2;6312:18;32327:212:0;6193:203:1;31862:389:0;;;;;;;;;;-1:-1:-1;31862:389:0;;;;;:::i;:::-;;:::i;48927:36::-;;;;;;;;;;;;;;;;;;;11378:25:1;;;11366:2;11351:18;48927:36:0;11232:177:1;52348:83:0;;;;;;;;;;-1:-1:-1;52348:83:0;;;;;:::i;:::-;;:::i;26652:315::-;;;;;;;;;;-1:-1:-1;26914:12:0;;26497:1;26898:13;:28;-1:-1:-1;;26898:46:0;26652:315;;33244:182;;;;;;;;;;-1:-1:-1;33244:182:0;;;;;:::i;:::-;;:::i;52927:147::-;;;;;;;;;;;;;:::i;33507:197::-;;;;;;;;;;-1:-1:-1;33507:197:0;;;;;:::i;:::-;;:::i;50473:693::-;;;;;;;;;;-1:-1:-1;50473:693:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;52439:80::-;;;;;;;;;;-1:-1:-1;52439:80:0;;;;;:::i;:::-;;:::i;51888:102::-;;;;;;;;;;-1:-1:-1;51888:102:0;;;;;:::i;:::-;;:::i;52234:106::-;;;;;;;;;;-1:-1:-1;52234:106:0;;;;;:::i;:::-;;:::i;49136:25::-;;;;;;;;;;-1:-1:-1;49136:25:0;;;;;;;;30524:129;;;;;;;;;;-1:-1:-1;30524:129:0;;;;;:::i;:::-;;:::i;52683:100::-;;;;;;;;;;-1:-1:-1;52683:100:0;;;;;:::i;:::-;;:::i;27836:212::-;;;;;;;;;;-1:-1:-1;27836:212:0;;;;;:::i;:::-;;:::i;47912:103::-;;;;;;;;;;;;;:::i;49051:40::-;;;;;;;;;;;;;;;;47261:87;;;;;;;;;;-1:-1:-1;47307:7:0;47334:6;-1:-1:-1;;;;;47334:6:0;47261:87;;30913:108;;;;;;;;;;;;;:::i;51998:106::-;;;;;;;;;;-1:-1:-1;51998:106:0;;;;;:::i;:::-;;:::i;49098:31::-;;;;;;;;;;;;;;;;32621:297;;;;;;;;;;-1:-1:-1;32621:297:0;;;;;:::i;:::-;;:::i;51787:93::-;;;;;;;;;;;;;:::i;52791:128::-;;;;;;;;;;-1:-1:-1;52791:128:0;;;;;:::i;:::-;;:::i;49008:36::-;;;;;;;;;;;;;;;;33785:389;;;;;;;;;;-1:-1:-1;33785:389:0;;;;;:::i;:::-;;:::i;51174:484::-;;;;;;;;;;-1:-1:-1;51174:484:0;;;;;:::i;:::-;;:::i;48970:31::-;;;;;;;;;;;;;;;;52527:148;;;;;;;;;;-1:-1:-1;52527:148:0;;;;;:::i;:::-;;:::i;51666:113::-;;;;;;;;;;-1:-1:-1;51666:113:0;;;;;:::i;:::-;;:::i;32999:168::-;;;;;;;;;;-1:-1:-1;32999:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;33122:25:0;;;33096:4;33122:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32999:168;50304:161;;;;;;;;;;-1:-1:-1;50304:161:0;;;;;:::i;:::-;;:::i;48170:201::-;;;;;;;;;;-1:-1:-1;48170:201:0;;;;;:::i;:::-;;:::i;49916:380::-;;;;;;:::i;:::-;;:::i;27447:315::-;27549:4;-1:-1:-1;;;;;;27590:40:0;;-1:-1:-1;;;27590:40:0;;:107;;-1:-1:-1;;;;;;;27649:48:0;;-1:-1:-1;;;27649:48:0;27590:107;:162;;;-1:-1:-1;;;;;;;;;;16322:40:0;;;27716:36;27568:184;27447:315;-1:-1:-1;;27447:315:0:o;49457:451::-;49525:11;-1:-1:-1;;;;;49240:209:0;49318:1;49304:11;:15;49296:49;;;;-1:-1:-1;;;49296:49:0;;;;;;;:::i;:::-;;;;;;;;;49395:9;;49380:11;49364:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;49356:73;;;;-1:-1:-1;;;49356:73:0;;;;;;;:::i;:::-;49558:6:::1;::::0;::::1;;49557:7;49549:43;;;::::0;-1:-1:-1;;;49549:43:0;;9969:2:1;49549:43:0::1;::::0;::::1;9951:21:1::0;10008:2;9988:18;;;9981:30;-1:-1:-1;;;10027:18:1;;;10020:53;10090:18;;49549:43:0::1;9767:347:1::0;49549:43:0::1;49662:16;;49647:11;-1:-1:-1::0;;;;;49620:38:0::1;:24;49633:10;49620:12;:24::i;:::-;:38;;;;:::i;:::-;:58;;49612:92;;;::::0;-1:-1:-1;;;49612:92:0;;8149:2:1;49612:92:0::1;::::0;::::1;8131:21:1::0;8188:2;8168:18;;;8161:30;-1:-1:-1;;;8207:18:1;;;8200:50;8267:18;;49612:92:0::1;7947:344:1::0;49612:92:0::1;49755:21;;49740:11;-1:-1:-1::0;;;;;49723:28:0::1;:14;;:28;;;;:::i;:::-;:53;;49715:92;;;::::0;-1:-1:-1;;;49715:92:0;;9254:2:1;49715:92:0::1;::::0;::::1;9236:21:1::0;9293:2;9273:18;;;9266:30;9332:27;9312:18;;;9305:55;9377:18;;49715:92:0::1;9052:349:1::0;49715:92:0::1;49828:34;49838:10;49850:11;-1:-1:-1::0;;;;;49828:34:0::1;:9;:34::i;:::-;49889:11;-1:-1:-1::0;;;;;49873:27:0::1;:14;;:27;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;49457:451:0:o;30730:104::-;30784:13;30819:5;30812:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30730:104;:::o;32327:212::-;32395:7;32422:16;32430:7;32422;:16::i;:::-;32417:64;;32447:34;;-1:-1:-1;;;32447:34:0;;;;;;;;;;;32417:64;-1:-1:-1;32505:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32505:24:0;;32327:212::o;31862:389::-;31937:13;31953:24;31969:7;31953:15;:24::i;:::-;31937:40;;32000:5;-1:-1:-1;;;;;31994:11:0;:2;-1:-1:-1;;;;;31994:11:0;;31990:48;;;32014:24;;-1:-1:-1;;;32014:24:0;;;;;;;;;;;31990:48;22811:10;-1:-1:-1;;;;;32059:21:0;;;;;;:63;;-1:-1:-1;32085:37:0;32102:5;22811:10;32999:168;:::i;32085:37::-;32084:38;32059:63;32055:142;;;32148:35;;-1:-1:-1;;;32148:35:0;;;;;;;;;;;32055:142;32213:28;32222:2;32226:7;32235:5;32213:8;:28::i;:::-;31924:327;31862:389;;:::o;52348:83::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;52408:6:::1;:15:::0;;-1:-1:-1;;52408:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52348:83::o;33244:182::-;33388:28;33398:4;33404:2;33408:7;33388:9;:28::i;52927:147::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;52976:7:::1;47334:6:::0;;52989:55:::1;::::0;-1:-1:-1;;;;;47334:6:0;;;;53018:21:::1;::::0;52976:7;52989:55;52976:7;52989:55;53018:21;47334:6;52989:55:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52975:69;;;53063:2;53055:11;;;::::0;::::1;;52964:110;52927:147::o:0;33507:197::-;33655:39;33672:4;33678:2;33682:7;33655:39;;;;;;;;;;;;:16;:39::i;50473:693::-;50560:16;50594:23;50620:17;50630:6;50620:9;:17::i;:::-;50594:43;;50648:30;50695:15;-1:-1:-1;;;;;50681:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50681:30:0;-1:-1:-1;50648:63:0;-1:-1:-1;50747:1:0;50722:22;50799:327;50824:15;50806;:33;:64;;;;;50861:9;;50843:14;:27;;50806:64;50799:327;;;50883:25;50911:23;50919:14;50911:7;:23::i;:::-;50883:51;;50972:6;-1:-1:-1;;;;;50951:27:0;:17;-1:-1:-1;;;;;50951:27:0;;50947:139;;;51028:14;50995:13;51009:15;50995:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;51057:17;;;;:::i;:::-;;;;50947:139;51098:16;;;;:::i;:::-;;;;50872:254;50799:327;;;-1:-1:-1;51145:13:0;;50473:693;-1:-1:-1;;;;50473:693:0:o;52439:80::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;52499:4:::1;:12:::0;52439:80::o;51888:102::-;51942:4;51966:16;51974:7;51966;:16::i;52234:106::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;52309:23:::1;:13;52325:7:::0;;52309:23:::1;:::i;30524:129::-:0;30588:7;30617:21;30630:7;30617:12;:21::i;:::-;:26;;30524:129;-1:-1:-1;;30524:129:0:o;52683:100::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;52753:9:::1;:22:::0;52683:100::o;27836:212::-;27900:7;-1:-1:-1;;;;;27926:19:0;;27922:60;;27954:28;;-1:-1:-1;;;27954:28:0;;;;;;;;;;;27922:60;-1:-1:-1;;;;;;28010:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28010:27:0;;27836:212::o;47912:103::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;47977:30:::1;48004:1;47977:18;:30::i;:::-;47912:103::o:0;30913:108::-;30969:13;31004:7;30997:14;;;;;:::i;51998:106::-;52067:29;52073:7;52082:13;52067:5;:29::i;:::-;51998:106;;:::o;32621:297::-;-1:-1:-1;;;;;32722:24:0;;22811:10;32722:24;32718:54;;;32755:17;;-1:-1:-1;;;32755:17:0;;;;;;;;;;;32718:54;22811:10;32789:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32789:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32789:53:0;;;;;;;;;;32860:48;;7671:41:1;;;32789:42:0;;22811:10;32860:48;;7644:18:1;32860:48:0;;;;;;;32621:297;;:::o;51787:93::-;51831:7;51858:14;26497:1;27311:13;-1:-1:-1;;27311:31:0;;27070:295;51858:14;51851:21;;51787:93;:::o;52791:128::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;52875:16:::1;:36:::0;52791:128::o;33785:389::-;33964:28;33974:4;33980:2;33984:7;33964:9;:28::i;:::-;-1:-1:-1;;;;;34009:13:0;;6425:19;:23;;34009:76;;;;;34029:56;34060:4;34066:2;34070:7;34079:5;34029:30;:56::i;:::-;34028:57;34009:76;34005:160;;;34111:40;;-1:-1:-1;;;34111:40:0;;;;;;;;;;;34005:160;33785:389;;;;:::o;51174:484::-;51295:13;51348:17;51356:8;51348:7;:17::i;:::-;51330:106;;;;-1:-1:-1;;;51330:106:0;;10321:2:1;51330:106:0;;;10303:21:1;10360:2;10340:18;;;10333:30;10399:34;10379:18;;;10372:62;-1:-1:-1;;;10450:18:1;;;10443:45;10505:19;;51330:106:0;10119:411:1;51330:106:0;51449:28;51480:10;:8;:10::i;:::-;51449:41;;51541:1;51516:14;51510:28;:32;:140;;;;;;;;;;;;;;;;;51584:14;51600:19;:8;:17;:19::i;:::-;51567:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51510:140;51503:147;51174:484;-1:-1:-1;;;51174:484:0:o;52527:148::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;52621:21:::1;:46:::0;52527:148::o;51666:113::-;-1:-1:-1;;;;;28238:19:0;;51724:7;28238:19;;;:12;:19;;;;;:32;-1:-1:-1;;;28238:32:0;;-1:-1:-1;;;;;28238:32:0;51751:20;28140:141;50304:161;50390:11;49318:1;49304:11;:15;49296:49;;;;-1:-1:-1;;;49296:49:0;;;;;;;:::i;:::-;49395:9;;49380:11;49364:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;49356:73;;;;-1:-1:-1;;;49356:73:0;;;;;;;:::i;:::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23:::1;47473:68;;;;-1:-1:-1::0;;;47473:68:0::1;;;;;;;:::i;:::-;50424:33:::2;50434:9;50445:11;50424:9;:33::i;48170:201::-:0;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48259:22:0;::::1;48251:73;;;::::0;-1:-1:-1;;;48251:73:0;;8498:2:1;48251:73:0::1;::::0;::::1;8480:21:1::0;8537:2;8517:18;;;8510:30;8576:34;8556:18;;;8549:62;-1:-1:-1;;;8627:18:1;;;8620:36;8673:19;;48251:73:0::1;8296:402:1::0;48251:73:0::1;48335:28;48354:8;48335:18;:28::i;49916:380::-:0;49980:11;-1:-1:-1;;;;;49240:209:0;49318:1;49304:11;:15;49296:49;;;;-1:-1:-1;;;49296:49:0;;;;;;;:::i;:::-;49395:9;;49380:11;49364:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;49356:73;;;;-1:-1:-1;;;49356:73:0;;;;;;;:::i;:::-;50013:6:::1;::::0;::::1;;50012:7;50004:43;;;::::0;-1:-1:-1;;;50004:43:0;;9969:2:1;50004:43:0::1;::::0;::::1;9951:21:1::0;10008:2;9988:18;;;9981:30;-1:-1:-1;;;10027:18:1;;;10020:53;10090:18;;50004:43:0::1;9767:347:1::0;50004:43:0::1;50095:11;-1:-1:-1::0;;;;;50088:18:0::1;:4;;:18;;;;:::i;:::-;50075:9;:31;;50067:63;;;::::0;-1:-1:-1;;;50067:63:0;;11086:2:1;50067:63:0::1;::::0;::::1;11068:21:1::0;11125:2;11105:18;;;11098:30;-1:-1:-1;;;11144:18:1;;;11137:49;11203:18;;50067:63:0::1;10884:343:1::0;50067:63:0::1;50191:16;;50176:11;-1:-1:-1::0;;;;;50149:38:0::1;:24;50162:10;50149:12;:24::i;:::-;:38;;;;:::i;:::-;:58;;50141:92;;;::::0;-1:-1:-1;;;50141:92:0;;8149:2:1;50141:92:0::1;::::0;::::1;8131:21:1::0;8188:2;8168:18;;;8161:30;-1:-1:-1;;;8207:18:1;;;8200:50;8267:18;;50141:92:0::1;7947:344:1::0;50141:92:0::1;50254:34;50264:10;50276:11;-1:-1:-1::0;;;;;50254:34:0::1;34652:108:::0;34723:27;34733:2;34737:8;34723:27;;;;;;;;;;;;:9;:27::i;34447:193::-;34504:4;34549:7;26497:1;34530:26;;:53;;;;;34570:13;;34560:7;:23;34530:53;:100;;;;-1:-1:-1;;34603:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;34603:27:0;;;;34602:28;;34447:193::o;43053:210::-;43178:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43178:29:0;-1:-1:-1;;;;;43178:29:0;;;;;;;;;43225:28;;43178:24;;43225:28;;;;;;;43053:210;;;:::o;37742:2226::-;37867:35;37905:21;37918:7;37905:12;:21::i;:::-;37867:59;;37969:4;-1:-1:-1;;;;;37947:26:0;:13;:18;;;-1:-1:-1;;;;;37947:26:0;;37943:67;;37982:28;;-1:-1:-1;;;37982:28:0;;;;;;;;;;;37943:67;38027:22;22811:10;-1:-1:-1;;;;;38053:20:0;;;;:75;;-1:-1:-1;38092:36:0;38109:4;22811:10;32999:168;:::i;38092:36::-;38053:130;;;-1:-1:-1;22811:10:0;38147:20;38159:7;38147:11;:20::i;:::-;-1:-1:-1;;;;;38147:36:0;;38053:130;38027:157;;38206:17;38201:66;;38232:35;;-1:-1:-1;;;38232:35:0;;;;;;;;;;;38201:66;-1:-1:-1;;;;;38284:16:0;;38280:52;;38309:23;;-1:-1:-1;;;38309:23:0;;;;;;;;;;;38280:52;38463:35;38480:1;38484:7;38493:4;38463:8;:35::i;:::-;-1:-1:-1;;;;;38806:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38806:31:0;;;-1:-1:-1;;;;;38806:31:0;;;-1:-1:-1;;38806:31:0;;;;;;;38854:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38854:29:0;;;;;;;;;;;38938:20;;;:11;:20;;;;;;38975:18;;-1:-1:-1;;;;;;39010:49:0;;;;-1:-1:-1;;;39043:15:0;39010:49;;;;;;;;;;39341:11;;39403:24;;;;;39448:13;;38938:20;;39403:24;;39448:13;39444:398;;39664:13;;39649:11;:28;39645:180;;39704:20;;39775:28;;;;-1:-1:-1;;;;;39749:54:0;-1:-1:-1;;;39749:54:0;-1:-1:-1;;;;;;39749:54:0;;;-1:-1:-1;;;;;39704:20:0;;39749:54;;;;39645:180;38779:1076;;;39895:7;39891:2;-1:-1:-1;;;;;39876:27:0;39885:4;-1:-1:-1;;;;;39876:27:0;-1:-1:-1;;;;;;;;;;;39876:27:0;;;;;;;;;39916:42;37854:2114;;37742:2226;;;:::o;29293:1159::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;29406:7:0;;26497:1;29461:23;;:47;;;;;29495:13;;29488:4;:20;29461:47;29457:922;;;29531:31;29565:17;;;:11;:17;;;;;;;;;29531:51;;;;;;;;;-1:-1:-1;;;;;29531:51:0;;;;-1:-1:-1;;;29531:51:0;;-1:-1:-1;;;;;29531:51:0;;;;;;;;-1:-1:-1;;;29531:51:0;;;;;;;;;;;;;;29603:759;;29655:14;;-1:-1:-1;;;;;29655:28:0;;29651:105;;29721:9;29293:1159;-1:-1:-1;;;29293:1159:0:o;29651:105::-;-1:-1:-1;;;30110:6:0;30157:17;;;;:11;:17;;;;;;;;;30145:29;;;;;;;;;-1:-1:-1;;;;;30145:29:0;;;;;-1:-1:-1;;;30145:29:0;;-1:-1:-1;;;;;30145:29:0;;;;;;;;-1:-1:-1;;;30145:29:0;;;;;;;;;;;;;30207:28;30203:113;;30277:9;29293:1159;-1:-1:-1;;;29293:1159:0:o;30203:113::-;30068:273;;;29510:869;29457:922;30411:31;;-1:-1:-1;;;30411:31:0;;;;;;;;;;;48531:191;48605:16;48624:6;;-1:-1:-1;;;;;48641:17:0;;;-1:-1:-1;;;;;;48641:17:0;;;;;;48674:40;;48624:6;;;;;;;48674:40;;48605:16;48674:40;48594:128;48531:191;:::o;40407:2514::-;40489:35;40527:21;40540:7;40527:12;:21::i;:::-;40580:18;;40489:59;;-1:-1:-1;40615:302:0;;;;40651:22;22811:10;-1:-1:-1;;;;;40677:20:0;;;;:79;;-1:-1:-1;40720:36:0;40737:4;22811:10;32999:168;:::i;40720:36::-;40677:138;;;-1:-1:-1;22811:10:0;40779:20;40791:7;40779:11;:20::i;:::-;-1:-1:-1;;;;;40779:36:0;;40677:138;40651:165;;40842:17;40837:66;;40868:35;;-1:-1:-1;;;40868:35:0;;;;;;;;;;;40837:66;40634:283;40615:302;41055:35;41072:1;41076:7;41085:4;41055:8;:35::i;:::-;-1:-1:-1;;;;;41432:18:0;;;41398:31;41432:18;;;:12;:18;;;;;;;;41467:24;;-1:-1:-1;;;;;;;;;;41467:24:0;;;;;;;;;-1:-1:-1;;41467:24:0;;;;41508:29;;;;;41490:1;41508:29;;;;;;;;-1:-1:-1;;41508:29:0;;;;;;;;;;41676:20;;;:11;:20;;;;;;41713;;-1:-1:-1;;;;41783:15:0;41750:49;;;-1:-1:-1;;;41750:49:0;-1:-1:-1;;;;;;41750:49:0;;;;;;;;;;41816:22;-1:-1:-1;;;41816:22:0;;;42116:11;;;42178:24;;;;;42223:13;;41432:18;;42178:24;;42223:13;42219:398;;42439:13;;42424:11;:28;42420:180;;42479:20;;42550:28;;;;-1:-1:-1;;;;;42524:54:0;-1:-1:-1;;;42524:54:0;-1:-1:-1;;;;;;42524:54:0;;;-1:-1:-1;;;;;42479:20:0;;42524:54;;;;42420:180;-1:-1:-1;;42651:35:0;;42678:7;;-1:-1:-1;42674:1:0;;-1:-1:-1;;;;;;42651:35:0;;;-1:-1:-1;;;;;;;;;;;42651:35:0;42674:1;;42651:35;-1:-1:-1;;42884:12:0;:14;;;;;;-1:-1:-1;;40407:2514:0:o;43777:701::-;43973:72;;-1:-1:-1;;;43973:72:0;;43950:4;;-1:-1:-1;;;;;43973:36:0;;;;;:72;;22811:10;;44024:4;;44030:7;;44039:5;;43973:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43973:72:0;;;;;;;;-1:-1:-1;;43973:72:0;;;;;;;;;;;;:::i;:::-;;;43969:500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44213:13:0;;44209:247;;44261:40;;-1:-1:-1;;;44261:40:0;;;;;;;;;;;44209:247;44410:6;44404:13;44395:6;44391:2;44387:15;44380:38;43969:500;-1:-1:-1;;;;;;44094:55:0;-1:-1:-1;;;44094:55:0;;-1:-1:-1;43969:500:0;43777:701;;;;;;:::o;52112:114::-;52172:13;52205;52198:20;;;;;:::i;3138:723::-;3194:13;3415:10;3411:53;;-1:-1:-1;;3442:10:0;;;;;;;;;;;;-1:-1:-1;;;3442:10:0;;;;;3138:723::o;3411:53::-;3489:5;3474:12;3530:78;3537:9;;3530:78;;3563:8;;;;:::i;:::-;;-1:-1:-1;3586:10:0;;-1:-1:-1;3594:2:0;3586:10;;:::i;:::-;;;3530:78;;;3618:19;3650:6;-1:-1:-1;;;;;3640:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3640:17:0;;3618:39;;3668:154;3675:10;;3668:154;;3702:11;3712:1;3702:11;;:::i;:::-;;-1:-1:-1;3771:10:0;3779:2;3771:5;:10;:::i;:::-;3758:24;;:2;:24;:::i;:::-;3745:39;;3728:6;3735;3728:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3728:56:0;;;;;;;;-1:-1:-1;3799:11:0;3808:2;3799:11;;:::i;:::-;;;3668:154;;35147:175;35280:32;35286:2;35290:8;35300:5;35307:4;35779:13;;-1:-1:-1;;;;;35809:16:0;;35805:48;;35834:19;;-1:-1:-1;;;35834:19:0;;;;;;;;;;;35805:48;35870:13;35866:44;;35892:18;;-1:-1:-1;;;35892:18:0;;;;;;;;;;;35866:44;-1:-1:-1;;;;;36277:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36338:49:0;;-1:-1:-1;;;;;36277:44:0;;;;;;;36338:49;;;-1:-1:-1;;;;;36277:44:0;;;;;;36338:49;;;;;;;;;;;;;;;;36408:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36460:66:0;;;;-1:-1:-1;;;36510:15:0;36460:66;;;;;;;;;;36408:25;36613:23;;;36661:4;:23;;;;-1:-1:-1;;;;;;36669:13:0;;6425:19;:23;;36669:15;36657:667;;;36707:324;36740:38;;36765:12;;-1:-1:-1;;;;;36740:38:0;;;36757:1;;-1:-1:-1;;;;;;;;;;;36740:38:0;36757:1;;36740:38;36808:69;36847:1;36851:2;36855:14;;;;;;36871:5;36808:30;:69::i;:::-;36803:178;;36915:40;;-1:-1:-1;;;36915:40:0;;;;;;;;;;;36803:178;37026:3;37010:12;:19;;36707:324;;37116:12;37099:13;;:29;37095:43;;37130:8;;;37095:43;36657:667;;;37183:124;37216:40;;37241:14;;;;;-1:-1:-1;;;;;37216:40:0;;;37233:1;;-1:-1:-1;;;;;;;;;;;37216:40:0;37233:1;;37216:40;37302:3;37286:12;:19;;37183:124;;36657:667;-1:-1:-1;37340:13:0;:28;37394:60;33785:389;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:1138::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:38;1440:2;1429:9;1425:18;1406:38;:::i;:::-;1396:48;;1491:2;1480:9;1476:18;1463:32;1453:42;;1546:2;1535:9;1531:18;1518:32;-1:-1:-1;;;;;1610:2:1;1602:6;1599:14;1596:34;;;1626:1;1623;1616:12;1596:34;1664:6;1653:9;1649:22;1639:32;;1709:7;1702:4;1698:2;1694:13;1690:27;1680:55;;1731:1;1728;1721:12;1680:55;1767:2;1754:16;1789:2;1785;1782:10;1779:36;;;1795:18;;:::i;:::-;1870:2;1864:9;1838:2;1924:13;;-1:-1:-1;;1920:22:1;;;1944:2;1916:31;1912:40;1900:53;;;1968:18;;;1988:22;;;1965:46;1962:72;;;2014:18;;:::i;:::-;2054:10;2050:2;2043:22;2089:2;2081:6;2074:18;2129:7;2124:2;2119;2115;2111:11;2107:20;2104:33;2101:53;;;2150:1;2147;2140:12;2101:53;2206:2;2201;2197;2193:11;2188:2;2180:6;2176:15;2163:46;2251:1;2246:2;2241;2233:6;2229:15;2225:24;2218:35;2272:6;2262:16;;;;;;;1146:1138;;;;;;;:::o;2289:254::-;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;;2502:35;2533:2;2522:9;2518:18;2502:35;:::i;2548:254::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;:::-;2706:39;2792:2;2777:18;;;;2764:32;;-1:-1:-1;;;2548:254:1:o;2807:180::-;2863:6;2916:2;2904:9;2895:7;2891:23;2887:32;2884:52;;;2932:1;2929;2922:12;2884:52;2955:26;2971:9;2955:26;:::i;2992:245::-;3050:6;3103:2;3091:9;3082:7;3078:23;3074:32;3071:52;;;3119:1;3116;3109:12;3071:52;3158:9;3145:23;3177:30;3201:5;3177:30;:::i;3242:249::-;3311:6;3364:2;3352:9;3343:7;3339:23;3335:32;3332:52;;;3380:1;3377;3370:12;3332:52;3412:9;3406:16;3431:30;3455:5;3431:30;:::i;3496:592::-;3567:6;3575;3628:2;3616:9;3607:7;3603:23;3599:32;3596:52;;;3644:1;3641;3634:12;3596:52;3684:9;3671:23;-1:-1:-1;;;;;3754:2:1;3746:6;3743:14;3740:34;;;3770:1;3767;3760:12;3740:34;3808:6;3797:9;3793:22;3783:32;;3853:7;3846:4;3842:2;3838:13;3834:27;3824:55;;3875:1;3872;3865:12;3824:55;3915:2;3902:16;3941:2;3933:6;3930:14;3927:34;;;3957:1;3954;3947:12;3927:34;4002:7;3997:2;3988:6;3984:2;3980:15;3976:24;3973:37;3970:57;;;4023:1;4020;4013:12;3970:57;4054:2;4046:11;;;;;4076:6;;-1:-1:-1;3496:592:1;;-1:-1:-1;;;;3496:592:1:o;4093:180::-;4152:6;4205:2;4193:9;4184:7;4180:23;4176:32;4173:52;;;4221:1;4218;4211:12;4173:52;-1:-1:-1;4244:23:1;;4093:180;-1:-1:-1;4093:180:1:o;4278:254::-;4346:6;4354;4407:2;4395:9;4386:7;4382:23;4378:32;4375:52;;;4423:1;4420;4413:12;4375:52;4459:9;4446:23;4436:33;;4488:38;4522:2;4511:9;4507:18;4488:38;:::i;4537:248::-;4602:6;4610;4663:2;4651:9;4642:7;4638:23;4634:32;4631:52;;;4679:1;4676;4669:12;4631:52;4715:9;4702:23;4692:33;;4744:35;4775:2;4764:9;4760:18;4744:35;:::i;4790:284::-;4848:6;4901:2;4889:9;4880:7;4876:23;4872:32;4869:52;;;4917:1;4914;4907:12;4869:52;4956:9;4943:23;-1:-1:-1;;;;;4999:5:1;4995:30;4988:5;4985:41;4975:69;;5040:1;5037;5030:12;5079:257;5120:3;5158:5;5152:12;5185:6;5180:3;5173:19;5201:63;5257:6;5250:4;5245:3;5241:14;5234:4;5227:5;5223:16;5201:63;:::i;:::-;5318:2;5297:15;-1:-1:-1;;5293:29:1;5284:39;;;;5325:4;5280:50;;5079:257;-1:-1:-1;;5079:257:1:o;5341:637::-;5621:3;5659:6;5653:13;5675:53;5721:6;5716:3;5709:4;5701:6;5697:17;5675:53;:::i;:::-;5791:13;;5750:16;;;;5813:57;5791:13;5750:16;5847:4;5835:17;;5813:57;:::i;:::-;-1:-1:-1;;;5892:20:1;;5921:22;;;5970:1;5959:13;;5341:637;-1:-1:-1;;;;5341:637:1:o;6401:488::-;-1:-1:-1;;;;;6670:15:1;;;6652:34;;6722:15;;6717:2;6702:18;;6695:43;6769:2;6754:18;;6747:34;;;6817:3;6812:2;6797:18;;6790:31;;;6595:4;;6838:45;;6863:19;;6855:6;6838:45;:::i;:::-;6830:53;6401:488;-1:-1:-1;;;;;;6401:488:1:o;6894:632::-;7065:2;7117:21;;;7187:13;;7090:18;;;7209:22;;;7036:4;;7065:2;7288:15;;;;7262:2;7247:18;;;7036:4;7331:169;7345:6;7342:1;7339:13;7331:169;;;7406:13;;7394:26;;7475:15;;;;7440:12;;;;7367:1;7360:9;7331:169;;;-1:-1:-1;7517:3:1;;6894:632;-1:-1:-1;;;;;;6894:632:1:o;7723:219::-;7872:2;7861:9;7854:21;7835:4;7892:44;7932:2;7921:9;7917:18;7909:6;7892:44;:::i;8703:344::-;8905:2;8887:21;;;8944:2;8924:18;;;8917:30;-1:-1:-1;;;8978:2:1;8963:18;;8956:50;9038:2;9023:18;;8703:344::o;9406:356::-;9608:2;9590:21;;;9627:18;;;9620:30;9686:34;9681:2;9666:18;;9659:62;9753:2;9738:18;;9406:356::o;10535:344::-;10737:2;10719:21;;;10776:2;10756:18;;;10749:30;-1:-1:-1;;;10810:2:1;10795:18;;10788:50;10870:2;10855:18;;10535:344::o;11414:128::-;11454:3;11485:1;11481:6;11478:1;11475:13;11472:39;;;11491:18;;:::i;:::-;-1:-1:-1;11527:9:1;;11414:128::o;11547:120::-;11587:1;11613;11603:35;;11618:18;;:::i;:::-;-1:-1:-1;11652:9:1;;11547:120::o;11672:168::-;11712:7;11778:1;11774;11770:6;11766:14;11763:1;11760:21;11755:1;11748:9;11741:17;11737:45;11734:71;;;11785:18;;:::i;:::-;-1:-1:-1;11825:9:1;;11672:168::o;11845:125::-;11885:4;11913:1;11910;11907:8;11904:34;;;11918:18;;:::i;:::-;-1:-1:-1;11955:9:1;;11845:125::o;11975:258::-;12047:1;12057:113;12071:6;12068:1;12065:13;12057:113;;;12147:11;;;12141:18;12128:11;;;12121:39;12093:2;12086:10;12057:113;;;12188:6;12185:1;12182:13;12179:48;;;-1:-1:-1;;12223:1:1;12205:16;;12198:27;11975:258::o;12238:380::-;12317:1;12313:12;;;;12360;;;12381:61;;12435:4;12427:6;12423:17;12413:27;;12381:61;12488:2;12480:6;12477:14;12457:18;12454:38;12451:161;;;12534:10;12529:3;12525:20;12522:1;12515:31;12569:4;12566:1;12559:15;12597:4;12594:1;12587:15;12451:161;;12238:380;;;:::o;12623:135::-;12662:3;-1:-1:-1;;12683:17:1;;12680:43;;;12703:18;;:::i;:::-;-1:-1:-1;12750:1:1;12739:13;;12623:135::o;12763:112::-;12795:1;12821;12811:35;;12826:18;;:::i;:::-;-1:-1:-1;12860:9:1;;12763:112::o;12880:127::-;12941:10;12936:3;12932:20;12929:1;12922:31;12972:4;12969:1;12962:15;12996:4;12993:1;12986:15;13012:127;13073:10;13068:3;13064:20;13061:1;13054:31;13104:4;13101:1;13094:15;13128:4;13125:1;13118:15;13144:127;13205:10;13200:3;13196:20;13193:1;13186:31;13236:4;13233:1;13226:15;13260:4;13257:1;13250:15;13276:127;13337:10;13332:3;13328:20;13325:1;13318:31;13368:4;13365:1;13358:15;13392:4;13389:1;13382:15;13408:131;-1:-1:-1;;;;;;13482:32:1;;13472:43;;13462:71;;13529:1;13526;13519:12

Swarm Source

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