ETH Price: $3,454.65 (-0.72%)
Gas: 4 Gwei

Token

Cult Of Ether Disciples (COED)
 

Overview

Max Total Supply

6,666 COED

Holders

1,102

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 COED
0x050996E75Ba1a7b5d6C53Aee152d5A2DA376068D
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:
CultOfEther_Disciples

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-08-06
*/

// SPDX-License-Identifier: MIT

// 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/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: @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: contracts/new.sol

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 0;
    }

    /**
     * @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 {}
}
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.
 */
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 Merklee 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)
        }
    }
}
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);
    }
}

        pragma solidity ^0.8.0;
                
        contract CultOfEther_Disciples is ERC721A, Ownable {
        using Strings for uint256;

            // Name & Symbol of Project in Constructor 
            constructor() ERC721A("Cult Of Ether Disciples", "COED") {}

            //max supply is set to 6666
            uint16 public constant maxSupply = 6666;
            // uriPrefix is the BaseUri
            string public uriPrefix = "ipfs://QmRThQPRGsG8zzdcgSC1FDFRkw49S4rNbhVRh66XSxU86i/";
            string public uriSuffix = ".json";
            string public hiddenURL = "ipfs://Qmf5K4fB1Xsms2xhHJdooi13iU832aPdsP92Po79PQCQ6H/0.json" ;
            //cost for Pulic Mint
            uint256 public PublicCost = 0.01 ether;
            //cost for WL Mint
            uint256 public WLCost = 0.01 ether;
            // Max MintAmount per Tx for Public sale
            uint8 public MaxMintPublic = 6;
            // Max MintAmount Per tx WL
            uint8 public MaxMintWL = 6;

            // Pre-sale is active and Public sale is Paused                                                        
            bool public PublicSalePaused = true;
            bool public WLPaused = false;

            //Collection is set revlead 
            bool public reveal =false;
            uint16 counter;
 
  
          //WHitelist Merkle Root
            bytes32 public whitelistMerkleRoot = 0xd29fd90459ed5b2372c34486c044188ba2a264cd96678f6efbdb3b0194b1f06f;


        // Function Whitelist mint, Wlhitelist sale max tokens are 3000
        //Contract will switch to Public Mint once 3000 tokens are minted
          function whitelistMint(uint8 _mintAmount, bytes32[] calldata merkleProof) external payable {
            bytes32  leafnode = getLeafNode(msg.sender);
            require(_verify(leafnode ,   merkleProof ),  "Invalid merkle proof");
            require (_mintAmount <= MaxMintWL, "Exceeds max tx per address");
            require(!WLPaused, "Whitelist minting is not active!");
            require(msg.value == WLCost * _mintAmount, "Insufficient ethers sent!");
            uint16 totalSupply = uint16(totalSupply());
          _safeMint(msg.sender , _mintAmount);
            counter = counter + _mintAmount ;
           // WhiteList-Sale  will be automatically paused after 1000 NFTs are minted in this phase
           //And Public sale will Automatically Start
            if ( counter >= 3000)
             {
             WLPaused = true;
             PublicSalePaused = false;
             counter = 0;
             }
             delete totalSupply;
             delete _mintAmount;
            }
            
        // Function for Public Mint 
            function publicMint(uint16 _mintAmount) external payable  {
                uint16 totalSupply = uint16(totalSupply());
                require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
                require(_mintAmount <= MaxMintPublic, "Exceeds Allowed mint Amount per transaction.");
                require(!PublicSalePaused, "The contract is paused!");
                require(msg.value == PublicCost * _mintAmount, "Insufficient funds!");

                _safeMint(msg.sender , _mintAmount);
                
                delete totalSupply;
                delete _mintAmount;
                }

            // Function Owner Mint
            function OwnerMint(uint16 _mintAmount) external onlyOwner {
                uint16 totalSupply = uint16(totalSupply());
                require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
                _safeMint(msg.sender , _mintAmount);
                delete _mintAmount;
                delete totalSupply;
                }      
  
         // Function can be used to reserve Tokens
            function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
                uint16 totalSupply = uint16(totalSupply());
                require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
                _safeMint(_receiver , _mintAmount);
                delete _mintAmount;
                delete _receiver;
                delete totalSupply;
            }
           
           // Function Airdrop
            function Airdrop(uint16 _mintAmount, address _receiver) external onlyOwner {
                uint16 totalSupply = uint16(totalSupply());
                require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
                _safeMint(_receiver , _mintAmount);
                delete _mintAmount;
                delete _receiver;
                delete totalSupply;
                }

            // Function Burn Tokens
            function burn(uint _tokenID) external onlyOwner {
                _burn(_tokenID);
            }

   
           function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
              require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" );
            if ( reveal == false){
            return hiddenURL;
            }
             string memory currentBaseURI = _baseURI();
             return bytes(currentBaseURI).length > 0
           ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix))
            : "";
           }
 
 
           function setWLPaused() external onlyOwner {
                WLPaused = !WLPaused;
                counter = 0;
            }

            function setPublicSalePaused() external onlyOwner {
                PublicSalePaused= !PublicSalePaused;
                WLPaused = true;
                counter = 0;
            }
            
            function setWLCost(uint256 _cost) external onlyOwner {
                WLCost = _cost;
                delete _cost;
            }

            function setPublicCost(uint256 _cost) external onlyOwner {
                PublicCost = _cost;
                delete _cost;
            }

           function setMaxMintWL(uint8 _limit) external onlyOwner{
                MaxMintWL = _limit;
                delete _limit;
            }

            function setMaxMintPublic(uint8 _limit) external onlyOwner{
                MaxMintPublic = _limit;
                delete _limit;
            }


           function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner {
                whitelistMerkleRoot = _whitelistMerkleRoot;
            }

    
           function getLeafNode(address _leaf) internal pure returns (bytes32 temp)
             {
            return keccak256(abi.encodePacked(_leaf));
           }
           
           function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) {
            return MerkleProof.verify(proof, whitelistMerkleRoot, leaf);
            }

           function setBaseURI(string memory _uriPrefix) external onlyOwner {
             uriPrefix = _uriPrefix;
              }

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

          function setHiddenUri(string memory _uriPrefix) external onlyOwner {
              hiddenURL = _uriPrefix;
             }

          function setRevealed() external onlyOwner{
             reveal = !reveal;
            }

         function withdraw() external onlyOwner {
        uint _balance = address(this).balance;
         payable(msg.sender).transfer(_balance ); 
         }
    }

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":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MaxMintPublic","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxMintWL","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"}],"name":"OwnerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"PublicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PublicSalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WLCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenID","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_uriPrefix","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setMaxMintPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setMaxMintWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPublicCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicSalePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setWLCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWLPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052603660808181529062002a8560a03980516200002991600991602090910190620001c0565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005891600a91620001c0565b506040518060600160405280603c815260200162002a49603c913980516200008991600b91602090910190620001c0565b50662386f26fc10000600c819055600d55600e805464ffffffffff1916620106061790557fd29fd90459ed5b2372c34486c044188ba2a264cd96678f6efbdb3b0194b1f06f600f55348015620000de57600080fd5b50604080518082018252601781527f43756c74204f66204574686572204469736369706c657300000000000000000060208083019182528351808501909452600484526310d3d15160e21b9084015281519192916200014091600291620001c0565b50805162000156906003906020840190620001c0565b5050600080555062000168336200016e565b620002a3565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001ce9062000266565b90600052602060002090601f016020900481019282620001f257600085556200023d565b82601f106200020d57805160ff19168380011785556200023d565b828001600101855582156200023d579182015b828111156200023d57825182559160200191906001019062000220565b506200024b9291506200024f565b5090565b5b808211156200024b576000815560010162000250565b600181811c908216806200027b57607f821691505b602082108114156200029d57634e487b7160e01b600052602260045260246000fd5b50919050565b61279680620002b36000396000f3fe60806040526004361061027d5760003560e01c806370a082311161014f578063b88d4fde116100c1578063e985e9c51161007a578063e985e9c514610732578063eef440af1461077b578063f2fde38b14610790578063f607cc4c146107b0578063f6d1f9cc146107c3578063f798c909146107d957600080fd5b8063b88d4fde1461066a578063bd32fb661461068a578063c87b56dd146106aa578063ca1dfc41146106ca578063d1d19213146106e9578063d5abeb011461070957600080fd5b80638eae128d116101135780638eae128d146105e757806395d89b41146105fd57806399f517c2146103eb578063a22cb46514610612578063a475b5dd14610632578063aa98e0c61461065457600080fd5b806370a0823114610554578063715018a614610574578063762d687e14610589578063811d2437146105a95780638da5cb5b146105c957600080fd5b80633bd64968116101f35780635503a0e8116101ac5780635503a0e8146104b657806355f804b3146104cb57806357893b1f146104eb578063583816691461050c57806362b99ad41461051f5780636352211e1461053457600080fd5b80633bd649681461040b5780633ccfd60b146104205780633dd07f6b146104355780633fbcc8471461044a57806342842e0e1461047657806342966c681461049657600080fd5b8063095ea7b311610245578063095ea7b3146103485780630b2ebab7146103685780631067fcc71461038857806318160ddd146103a857806323b872dd146103cb5780632f6f98e1146103eb57600080fd5b806301ffc9a71461028257806305306f32146102b757806306fdde03146102d7578063081812fc146102f9578063093cfa6314610331575b600080fd5b34801561028e57600080fd5b506102a261029d3660046122b9565b6107f9565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b50600e546102a29062010000900460ff1681565b3480156102e357600080fd5b506102ec61084b565b6040516102ae919061253f565b34801561030557600080fd5b506103196103143660046122a0565b6108dd565b6040516001600160a01b0390911681526020016102ae565b34801561033d57600080fd5b50610346610921565b005b34801561035457600080fd5b50610346610363366004612276565b610982565b34801561037457600080fd5b5061034661038336600461233b565b610a10565b34801561039457600080fd5b506103466103a33660046122f3565b610a8c565b3480156103b457600080fd5b50600154600054035b6040519081526020016102ae565b3480156103d757600080fd5b506103466103e6366004612183565b610ac9565b3480156103f757600080fd5b50610346610406366004612356565b610ad4565b34801561041757600080fd5b50610346610b4c565b34801561042c57600080fd5b50610346610b99565b34801561044157600080fd5b50610346610bf2565b34801561045657600080fd5b50600e546104649060ff1681565b60405160ff90911681526020016102ae565b34801561048257600080fd5b50610346610491366004612183565b610c56565b3480156104a257600080fd5b506103466104b13660046122a0565b610c71565b3480156104c257600080fd5b506102ec610ca7565b3480156104d757600080fd5b506103466104e63660046122f3565b610d35565b3480156104f757600080fd5b50600e546102a2906301000000900460ff1681565b61034661051a36600461238d565b610d72565b34801561052b57600080fd5b506102ec610fcc565b34801561054057600080fd5b5061031961054f3660046122a0565b610fd9565b34801561056057600080fd5b506103bd61056f366004612135565b610feb565b34801561058057600080fd5b50610346611039565b34801561059557600080fd5b506103466105a4366004612372565b61106f565b3480156105b557600080fd5b506103466105c43660046122a0565b6110af565b3480156105d557600080fd5b506008546001600160a01b0316610319565b3480156105f357600080fd5b506103bd600d5481565b34801561060957600080fd5b506102ec6110de565b34801561061e57600080fd5b5061034661062d36600461223a565b6110ed565b34801561063e57600080fd5b50600e546102a290640100000000900460ff1681565b34801561066057600080fd5b506103bd600f5481565b34801561067657600080fd5b506103466106853660046121bf565b611183565b34801561069657600080fd5b506103466106a53660046122a0565b6111d4565b3480156106b657600080fd5b506102ec6106c53660046122a0565b611203565b3480156106d657600080fd5b50600e5461046490610100900460ff1681565b3480156106f557600080fd5b506103466107043660046122a0565b611375565b34801561071557600080fd5b5061071f611a0a81565b60405161ffff90911681526020016102ae565b34801561073e57600080fd5b506102a261074d366004612150565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561078757600080fd5b506102ec6113a4565b34801561079c57600080fd5b506103466107ab366004612135565b6113b1565b6103466107be36600461233b565b611449565b3480156107cf57600080fd5b506103bd600c5481565b3480156107e557600080fd5b506103466107f4366004612372565b6115a6565b60006001600160e01b031982166380ac58cd60e01b148061082a57506001600160e01b03198216635b5e139f60e01b145b8061084557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461085a90612668565b80601f016020809104026020016040519081016040528092919081815260200182805461088690612668565b80156108d35780601f106108a8576101008083540402835291602001916108d3565b820191906000526020600020905b8154815290600101906020018083116108b657829003601f168201915b5050505050905090565b60006108e8826115ec565b610905576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146109545760405162461bcd60e51b815260040161094b9061257f565b60405180910390fd5b600e805466ffff00ff00000019811663010000009182900460ff161590910266ffff00000000001916179055565b600061098d82610fd9565b9050806001600160a01b0316836001600160a01b031614156109c25760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109e257506109e0813361074d565b155b15610a00576040516367d9dca160e11b815260040160405180910390fd5b610a0b838383611617565b505050565b6008546001600160a01b03163314610a3a5760405162461bcd60e51b815260040161094b9061257f565b6000610a496001546000540390565b9050611a0a610a5883836125b4565b61ffff161115610a7a5760405162461bcd60e51b815260040161094b90612552565b610a88338361ffff16611673565b5050565b6008546001600160a01b03163314610ab65760405162461bcd60e51b815260040161094b9061257f565b8051610a8890600b906020840190611fe8565b610a0b83838361168d565b6008546001600160a01b03163314610afe5760405162461bcd60e51b815260040161094b9061257f565b6000610b0d6001546000540390565b9050611a0a610b1c84836125b4565b61ffff161115610b3e5760405162461bcd60e51b815260040161094b90612552565b610a0b828461ffff16611673565b6008546001600160a01b03163314610b765760405162461bcd60e51b815260040161094b9061257f565b600e805464ff000000001981166401000000009182900460ff1615909102179055565b6008546001600160a01b03163314610bc35760405162461bcd60e51b815260040161094b9061257f565b6040514790339082156108fc029083906000818181858888f19350505050158015610a88573d6000803e3d6000fd5b6008546001600160a01b03163314610c1c5760405162461bcd60e51b815260040161094b9061257f565b600e8054630100000063ffff0000198216620100009283900460ff161590920263ff0000001916919091171766ffff000000000019169055565b610a0b83838360405180602001604052806000815250611183565b6008546001600160a01b03163314610c9b5760405162461bcd60e51b815260040161094b9061257f565b610ca481611868565b50565b600a8054610cb490612668565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce090612668565b8015610d2d5780601f10610d0257610100808354040283529160200191610d2d565b820191906000526020600020905b815481529060010190602001808311610d1057829003601f168201915b505050505081565b6008546001600160a01b03163314610d5f5760405162461bcd60e51b815260040161094b9061257f565b8051610a88906009906020840190611fe8565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120610de68184848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061187392505050565b610e295760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b604482015260640161094b565b600e5460ff61010090910481169085161115610e875760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d6178207478207065722061646472657373000000000000604482015260640161094b565b600e546301000000900460ff1615610ee15760405162461bcd60e51b815260206004820181905260248201527f57686974656c697374206d696e74696e67206973206e6f742061637469766521604482015260640161094b565b8360ff16600d54610ef29190612606565b3414610f405760405162461bcd60e51b815260206004820152601960248201527f496e73756666696369656e74206574686572732073656e742100000000000000604482015260640161094b565b6000610f4f6001546000540390565b9050610f5e338660ff16611673565b600e54610f7c9060ff87169065010000000000900461ffff166125b4565b600e805466ffff000000000019166501000000000061ffff93841681029190911791829055610bb8910490911610610fc557600e805466ffff00ffff0000191663010000001790555b5050505050565b60098054610cb490612668565b6000610fe482611882565b5192915050565b60006001600160a01b038216611014576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146110635760405162461bcd60e51b815260040161094b9061257f565b61106d600061199c565b565b6008546001600160a01b031633146110995760405162461bcd60e51b815260040161094b9061257f565b600e805460ff191660ff92909216919091179055565b6008546001600160a01b031633146110d95760405162461bcd60e51b815260040161094b9061257f565b600c55565b60606003805461085a90612668565b6001600160a01b0382163314156111175760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61118e84848461168d565b6001600160a01b0383163b151580156111b057506111ae848484846119ee565b155b156111ce576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146111fe5760405162461bcd60e51b815260040161094b9061257f565b600f55565b606061120e826115ec565b6112725760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161094b565b600e54640100000000900460ff1661131657600b805461129190612668565b80601f01602080910402602001604051908101604052809291908181526020018280546112bd90612668565b801561130a5780601f106112df5761010080835404028352916020019161130a565b820191906000526020600020905b8154815290600101906020018083116112ed57829003601f168201915b50505050509050919050565b6000611320611ae6565b90506000815111611340576040518060200160405280600081525061136e565b8061134a84611af5565b600a60405160200161135e9392919061243e565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461139f5760405162461bcd60e51b815260040161094b9061257f565b600d55565b600b8054610cb490612668565b6008546001600160a01b031633146113db5760405162461bcd60e51b815260040161094b9061257f565b6001600160a01b0381166114405760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094b565b610ca48161199c565b60006114586001546000540390565b9050611a0a61146783836125b4565b61ffff1611156114895760405162461bcd60e51b815260040161094b90612552565b600e5460ff1661ffff831611156114f75760405162461bcd60e51b815260206004820152602c60248201527f4578636565647320416c6c6f776564206d696e7420416d6f756e74207065722060448201526b3a3930b739b0b1ba34b7b71760a11b606482015260840161094b565b600e5462010000900460ff16156115505760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161094b565b8161ffff16600c546115629190612606565b3414610a7a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161094b565b6008546001600160a01b031633146115d05760405162461bcd60e51b815260040161094b9061257f565b600e805460ff9092166101000261ff0019909216919091179055565b6000805482108015610845575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a88828260405180602001604052806000815250611bf2565b600061169882611882565b9050836001600160a01b031681600001516001600160a01b0316146116cf5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806116ed57506116ed853361074d565b806117085750336116fd846108dd565b6001600160a01b0316145b90508061172857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661174f57604051633a954ecd60e21b815260040160405180910390fd5b61175b60008487611617565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661182f57600054821461182f57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061274183398151915260405160405180910390a45050505050565b610ca4816000611bff565b600061136e82600f5485611db2565b60408051606081018252600080825260208201819052918101919091528160005481101561198357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119815780516001600160a01b031615611918579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561197c579392505050565b611918565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a23903390899088908890600401612502565b602060405180830381600087803b158015611a3d57600080fd5b505af1925050508015611a6d575060408051601f3d908101601f19168201909252611a6a918101906122d6565b60015b611ac8573d808015611a9b576040519150601f19603f3d011682016040523d82523d6000602084013e611aa0565b606091505b508051611ac0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461085a90612668565b606081611b195750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b435780611b2d816126a3565b9150611b3c9050600a836125f2565b9150611b1d565b6000816001600160401b03811115611b5d57611b5d612714565b6040519080825280601f01601f191660200182016040528015611b87576020820181803683370190505b5090505b8415611ade57611b9c600183612625565b9150611ba9600a866126be565b611bb49060306125da565b60f81b818381518110611bc957611bc96126fe565b60200101906001600160f81b031916908160001a905350611beb600a866125f2565b9450611b8b565b610a0b8383836001611dc8565b6000611c0a83611882565b80519091508215611c70576000336001600160a01b0383161480611c335750611c33823361074d565b80611c4e575033611c43866108dd565b6001600160a01b0316145b905080611c6e57604051632ce44b5f60e11b815260040160405180910390fd5b505b611c7c60008583611617565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611d7a576000548214611d7a57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612741833981519152908390a4505060018054810190555050565b600082611dbf8584611f74565b14949350505050565b6000546001600160a01b038516611df157604051622e076360e81b815260040160405180910390fd5b83611e0f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611ec057506001600160a01b0387163b15155b15611f37575b60405182906001600160a01b03891690600090600080516020612741833981519152908290a4611eff60008884806001019550886119ee565b611f1c576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611ec6578260005414611f3257600080fd5b611f6b565b5b6040516001830192906001600160a01b03891690600090600080516020612741833981519152908290a480821415611f38575b50600055610fc5565b600081815b8451811015611fe0576000858281518110611f9657611f966126fe565b60200260200101519050808311611fbc5760008381526020829052604090209250611fcd565b600081815260208490526040902092505b5080611fd8816126a3565b915050611f79565b509392505050565b828054611ff490612668565b90600052602060002090601f016020900481019282612016576000855561205c565b82601f1061202f57805160ff191683800117855561205c565b8280016001018555821561205c579182015b8281111561205c578251825591602001919060010190612041565b5061206892915061206c565b5090565b5b80821115612068576000815560010161206d565b60006001600160401b038084111561209b5761209b612714565b604051601f8501601f19908116603f011681019082821181831017156120c3576120c3612714565b816040528093508581528686860111156120dc57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461210d57600080fd5b919050565b803561ffff8116811461210d57600080fd5b803560ff8116811461210d57600080fd5b60006020828403121561214757600080fd5b61136e826120f6565b6000806040838503121561216357600080fd5b61216c836120f6565b915061217a602084016120f6565b90509250929050565b60008060006060848603121561219857600080fd5b6121a1846120f6565b92506121af602085016120f6565b9150604084013590509250925092565b600080600080608085870312156121d557600080fd5b6121de856120f6565b93506121ec602086016120f6565b92506040850135915060608501356001600160401b0381111561220e57600080fd5b8501601f8101871361221f57600080fd5b61222e87823560208401612081565b91505092959194509250565b6000806040838503121561224d57600080fd5b612256836120f6565b91506020830135801515811461226b57600080fd5b809150509250929050565b6000806040838503121561228957600080fd5b612292836120f6565b946020939093013593505050565b6000602082840312156122b257600080fd5b5035919050565b6000602082840312156122cb57600080fd5b813561136e8161272a565b6000602082840312156122e857600080fd5b815161136e8161272a565b60006020828403121561230557600080fd5b81356001600160401b0381111561231b57600080fd5b8201601f8101841361232c57600080fd5b611ade84823560208401612081565b60006020828403121561234d57600080fd5b61136e82612112565b6000806040838503121561236957600080fd5b61216c83612112565b60006020828403121561238457600080fd5b61136e82612124565b6000806000604084860312156123a257600080fd5b6123ab84612124565b925060208401356001600160401b03808211156123c757600080fd5b818601915086601f8301126123db57600080fd5b8135818111156123ea57600080fd5b8760208260051b85010111156123ff57600080fd5b6020830194508093505050509250925092565b6000815180845261242a81602086016020860161263c565b601f01601f19169290920160200192915050565b6000845160206124518285838a0161263c565b8551918401916124648184848a0161263c565b8554920191600090600181811c908083168061248157607f831692505b85831081141561249f57634e487b7160e01b85526022600452602485fd5b8080156124b357600181146124c4576124f1565b60ff198516885283880195506124f1565b60008b81526020902060005b858110156124e95781548a8201529084019088016124d0565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061253590830184612412565b9695505050505050565b60208152600061136e6020830184612412565b60208082526013908201527222bc31b2b232b99036b0bc1039bab838363c9760691b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff8083168185168083038211156125d1576125d16126d2565b01949350505050565b600082198211156125ed576125ed6126d2565b500190565b600082612601576126016126e8565b500490565b6000816000190483118215151615612620576126206126d2565b500290565b600082821015612637576126376126d2565b500390565b60005b8381101561265757818101518382015260200161263f565b838111156111ce5750506000910152565b600181811c9082168061267c57607f821691505b6020821081141561269d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126b7576126b76126d2565b5060010190565b6000826126cd576126cd6126e8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ca457600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220a2580be88300161ab2f1122cae67967b29d4caed312f178968da43e7690c9a1e64736f6c63430008070033697066733a2f2f516d66354b3466423158736d73327868484a646f6f693133695538333261506473503932506f37395051435136482f302e6a736f6e697066733a2f2f516d525468515052477347387a7a646367534331464446526b7734395334724e62685652683636585378553836692f

Deployed Bytecode

0x60806040526004361061027d5760003560e01c806370a082311161014f578063b88d4fde116100c1578063e985e9c51161007a578063e985e9c514610732578063eef440af1461077b578063f2fde38b14610790578063f607cc4c146107b0578063f6d1f9cc146107c3578063f798c909146107d957600080fd5b8063b88d4fde1461066a578063bd32fb661461068a578063c87b56dd146106aa578063ca1dfc41146106ca578063d1d19213146106e9578063d5abeb011461070957600080fd5b80638eae128d116101135780638eae128d146105e757806395d89b41146105fd57806399f517c2146103eb578063a22cb46514610612578063a475b5dd14610632578063aa98e0c61461065457600080fd5b806370a0823114610554578063715018a614610574578063762d687e14610589578063811d2437146105a95780638da5cb5b146105c957600080fd5b80633bd64968116101f35780635503a0e8116101ac5780635503a0e8146104b657806355f804b3146104cb57806357893b1f146104eb578063583816691461050c57806362b99ad41461051f5780636352211e1461053457600080fd5b80633bd649681461040b5780633ccfd60b146104205780633dd07f6b146104355780633fbcc8471461044a57806342842e0e1461047657806342966c681461049657600080fd5b8063095ea7b311610245578063095ea7b3146103485780630b2ebab7146103685780631067fcc71461038857806318160ddd146103a857806323b872dd146103cb5780632f6f98e1146103eb57600080fd5b806301ffc9a71461028257806305306f32146102b757806306fdde03146102d7578063081812fc146102f9578063093cfa6314610331575b600080fd5b34801561028e57600080fd5b506102a261029d3660046122b9565b6107f9565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b50600e546102a29062010000900460ff1681565b3480156102e357600080fd5b506102ec61084b565b6040516102ae919061253f565b34801561030557600080fd5b506103196103143660046122a0565b6108dd565b6040516001600160a01b0390911681526020016102ae565b34801561033d57600080fd5b50610346610921565b005b34801561035457600080fd5b50610346610363366004612276565b610982565b34801561037457600080fd5b5061034661038336600461233b565b610a10565b34801561039457600080fd5b506103466103a33660046122f3565b610a8c565b3480156103b457600080fd5b50600154600054035b6040519081526020016102ae565b3480156103d757600080fd5b506103466103e6366004612183565b610ac9565b3480156103f757600080fd5b50610346610406366004612356565b610ad4565b34801561041757600080fd5b50610346610b4c565b34801561042c57600080fd5b50610346610b99565b34801561044157600080fd5b50610346610bf2565b34801561045657600080fd5b50600e546104649060ff1681565b60405160ff90911681526020016102ae565b34801561048257600080fd5b50610346610491366004612183565b610c56565b3480156104a257600080fd5b506103466104b13660046122a0565b610c71565b3480156104c257600080fd5b506102ec610ca7565b3480156104d757600080fd5b506103466104e63660046122f3565b610d35565b3480156104f757600080fd5b50600e546102a2906301000000900460ff1681565b61034661051a36600461238d565b610d72565b34801561052b57600080fd5b506102ec610fcc565b34801561054057600080fd5b5061031961054f3660046122a0565b610fd9565b34801561056057600080fd5b506103bd61056f366004612135565b610feb565b34801561058057600080fd5b50610346611039565b34801561059557600080fd5b506103466105a4366004612372565b61106f565b3480156105b557600080fd5b506103466105c43660046122a0565b6110af565b3480156105d557600080fd5b506008546001600160a01b0316610319565b3480156105f357600080fd5b506103bd600d5481565b34801561060957600080fd5b506102ec6110de565b34801561061e57600080fd5b5061034661062d36600461223a565b6110ed565b34801561063e57600080fd5b50600e546102a290640100000000900460ff1681565b34801561066057600080fd5b506103bd600f5481565b34801561067657600080fd5b506103466106853660046121bf565b611183565b34801561069657600080fd5b506103466106a53660046122a0565b6111d4565b3480156106b657600080fd5b506102ec6106c53660046122a0565b611203565b3480156106d657600080fd5b50600e5461046490610100900460ff1681565b3480156106f557600080fd5b506103466107043660046122a0565b611375565b34801561071557600080fd5b5061071f611a0a81565b60405161ffff90911681526020016102ae565b34801561073e57600080fd5b506102a261074d366004612150565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561078757600080fd5b506102ec6113a4565b34801561079c57600080fd5b506103466107ab366004612135565b6113b1565b6103466107be36600461233b565b611449565b3480156107cf57600080fd5b506103bd600c5481565b3480156107e557600080fd5b506103466107f4366004612372565b6115a6565b60006001600160e01b031982166380ac58cd60e01b148061082a57506001600160e01b03198216635b5e139f60e01b145b8061084557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461085a90612668565b80601f016020809104026020016040519081016040528092919081815260200182805461088690612668565b80156108d35780601f106108a8576101008083540402835291602001916108d3565b820191906000526020600020905b8154815290600101906020018083116108b657829003601f168201915b5050505050905090565b60006108e8826115ec565b610905576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146109545760405162461bcd60e51b815260040161094b9061257f565b60405180910390fd5b600e805466ffff00ff00000019811663010000009182900460ff161590910266ffff00000000001916179055565b600061098d82610fd9565b9050806001600160a01b0316836001600160a01b031614156109c25760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109e257506109e0813361074d565b155b15610a00576040516367d9dca160e11b815260040160405180910390fd5b610a0b838383611617565b505050565b6008546001600160a01b03163314610a3a5760405162461bcd60e51b815260040161094b9061257f565b6000610a496001546000540390565b9050611a0a610a5883836125b4565b61ffff161115610a7a5760405162461bcd60e51b815260040161094b90612552565b610a88338361ffff16611673565b5050565b6008546001600160a01b03163314610ab65760405162461bcd60e51b815260040161094b9061257f565b8051610a8890600b906020840190611fe8565b610a0b83838361168d565b6008546001600160a01b03163314610afe5760405162461bcd60e51b815260040161094b9061257f565b6000610b0d6001546000540390565b9050611a0a610b1c84836125b4565b61ffff161115610b3e5760405162461bcd60e51b815260040161094b90612552565b610a0b828461ffff16611673565b6008546001600160a01b03163314610b765760405162461bcd60e51b815260040161094b9061257f565b600e805464ff000000001981166401000000009182900460ff1615909102179055565b6008546001600160a01b03163314610bc35760405162461bcd60e51b815260040161094b9061257f565b6040514790339082156108fc029083906000818181858888f19350505050158015610a88573d6000803e3d6000fd5b6008546001600160a01b03163314610c1c5760405162461bcd60e51b815260040161094b9061257f565b600e8054630100000063ffff0000198216620100009283900460ff161590920263ff0000001916919091171766ffff000000000019169055565b610a0b83838360405180602001604052806000815250611183565b6008546001600160a01b03163314610c9b5760405162461bcd60e51b815260040161094b9061257f565b610ca481611868565b50565b600a8054610cb490612668565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce090612668565b8015610d2d5780601f10610d0257610100808354040283529160200191610d2d565b820191906000526020600020905b815481529060010190602001808311610d1057829003601f168201915b505050505081565b6008546001600160a01b03163314610d5f5760405162461bcd60e51b815260040161094b9061257f565b8051610a88906009906020840190611fe8565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120610de68184848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061187392505050565b610e295760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b604482015260640161094b565b600e5460ff61010090910481169085161115610e875760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d6178207478207065722061646472657373000000000000604482015260640161094b565b600e546301000000900460ff1615610ee15760405162461bcd60e51b815260206004820181905260248201527f57686974656c697374206d696e74696e67206973206e6f742061637469766521604482015260640161094b565b8360ff16600d54610ef29190612606565b3414610f405760405162461bcd60e51b815260206004820152601960248201527f496e73756666696369656e74206574686572732073656e742100000000000000604482015260640161094b565b6000610f4f6001546000540390565b9050610f5e338660ff16611673565b600e54610f7c9060ff87169065010000000000900461ffff166125b4565b600e805466ffff000000000019166501000000000061ffff93841681029190911791829055610bb8910490911610610fc557600e805466ffff00ffff0000191663010000001790555b5050505050565b60098054610cb490612668565b6000610fe482611882565b5192915050565b60006001600160a01b038216611014576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146110635760405162461bcd60e51b815260040161094b9061257f565b61106d600061199c565b565b6008546001600160a01b031633146110995760405162461bcd60e51b815260040161094b9061257f565b600e805460ff191660ff92909216919091179055565b6008546001600160a01b031633146110d95760405162461bcd60e51b815260040161094b9061257f565b600c55565b60606003805461085a90612668565b6001600160a01b0382163314156111175760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61118e84848461168d565b6001600160a01b0383163b151580156111b057506111ae848484846119ee565b155b156111ce576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146111fe5760405162461bcd60e51b815260040161094b9061257f565b600f55565b606061120e826115ec565b6112725760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161094b565b600e54640100000000900460ff1661131657600b805461129190612668565b80601f01602080910402602001604051908101604052809291908181526020018280546112bd90612668565b801561130a5780601f106112df5761010080835404028352916020019161130a565b820191906000526020600020905b8154815290600101906020018083116112ed57829003601f168201915b50505050509050919050565b6000611320611ae6565b90506000815111611340576040518060200160405280600081525061136e565b8061134a84611af5565b600a60405160200161135e9392919061243e565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461139f5760405162461bcd60e51b815260040161094b9061257f565b600d55565b600b8054610cb490612668565b6008546001600160a01b031633146113db5760405162461bcd60e51b815260040161094b9061257f565b6001600160a01b0381166114405760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094b565b610ca48161199c565b60006114586001546000540390565b9050611a0a61146783836125b4565b61ffff1611156114895760405162461bcd60e51b815260040161094b90612552565b600e5460ff1661ffff831611156114f75760405162461bcd60e51b815260206004820152602c60248201527f4578636565647320416c6c6f776564206d696e7420416d6f756e74207065722060448201526b3a3930b739b0b1ba34b7b71760a11b606482015260840161094b565b600e5462010000900460ff16156115505760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161094b565b8161ffff16600c546115629190612606565b3414610a7a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161094b565b6008546001600160a01b031633146115d05760405162461bcd60e51b815260040161094b9061257f565b600e805460ff9092166101000261ff0019909216919091179055565b6000805482108015610845575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a88828260405180602001604052806000815250611bf2565b600061169882611882565b9050836001600160a01b031681600001516001600160a01b0316146116cf5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806116ed57506116ed853361074d565b806117085750336116fd846108dd565b6001600160a01b0316145b90508061172857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661174f57604051633a954ecd60e21b815260040160405180910390fd5b61175b60008487611617565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661182f57600054821461182f57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061274183398151915260405160405180910390a45050505050565b610ca4816000611bff565b600061136e82600f5485611db2565b60408051606081018252600080825260208201819052918101919091528160005481101561198357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119815780516001600160a01b031615611918579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561197c579392505050565b611918565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a23903390899088908890600401612502565b602060405180830381600087803b158015611a3d57600080fd5b505af1925050508015611a6d575060408051601f3d908101601f19168201909252611a6a918101906122d6565b60015b611ac8573d808015611a9b576040519150601f19603f3d011682016040523d82523d6000602084013e611aa0565b606091505b508051611ac0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461085a90612668565b606081611b195750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b435780611b2d816126a3565b9150611b3c9050600a836125f2565b9150611b1d565b6000816001600160401b03811115611b5d57611b5d612714565b6040519080825280601f01601f191660200182016040528015611b87576020820181803683370190505b5090505b8415611ade57611b9c600183612625565b9150611ba9600a866126be565b611bb49060306125da565b60f81b818381518110611bc957611bc96126fe565b60200101906001600160f81b031916908160001a905350611beb600a866125f2565b9450611b8b565b610a0b8383836001611dc8565b6000611c0a83611882565b80519091508215611c70576000336001600160a01b0383161480611c335750611c33823361074d565b80611c4e575033611c43866108dd565b6001600160a01b0316145b905080611c6e57604051632ce44b5f60e11b815260040160405180910390fd5b505b611c7c60008583611617565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611d7a576000548214611d7a57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612741833981519152908390a4505060018054810190555050565b600082611dbf8584611f74565b14949350505050565b6000546001600160a01b038516611df157604051622e076360e81b815260040160405180910390fd5b83611e0f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611ec057506001600160a01b0387163b15155b15611f37575b60405182906001600160a01b03891690600090600080516020612741833981519152908290a4611eff60008884806001019550886119ee565b611f1c576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611ec6578260005414611f3257600080fd5b611f6b565b5b6040516001830192906001600160a01b03891690600090600080516020612741833981519152908290a480821415611f38575b50600055610fc5565b600081815b8451811015611fe0576000858281518110611f9657611f966126fe565b60200260200101519050808311611fbc5760008381526020829052604090209250611fcd565b600081815260208490526040902092505b5080611fd8816126a3565b915050611f79565b509392505050565b828054611ff490612668565b90600052602060002090601f016020900481019282612016576000855561205c565b82601f1061202f57805160ff191683800117855561205c565b8280016001018555821561205c579182015b8281111561205c578251825591602001919060010190612041565b5061206892915061206c565b5090565b5b80821115612068576000815560010161206d565b60006001600160401b038084111561209b5761209b612714565b604051601f8501601f19908116603f011681019082821181831017156120c3576120c3612714565b816040528093508581528686860111156120dc57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461210d57600080fd5b919050565b803561ffff8116811461210d57600080fd5b803560ff8116811461210d57600080fd5b60006020828403121561214757600080fd5b61136e826120f6565b6000806040838503121561216357600080fd5b61216c836120f6565b915061217a602084016120f6565b90509250929050565b60008060006060848603121561219857600080fd5b6121a1846120f6565b92506121af602085016120f6565b9150604084013590509250925092565b600080600080608085870312156121d557600080fd5b6121de856120f6565b93506121ec602086016120f6565b92506040850135915060608501356001600160401b0381111561220e57600080fd5b8501601f8101871361221f57600080fd5b61222e87823560208401612081565b91505092959194509250565b6000806040838503121561224d57600080fd5b612256836120f6565b91506020830135801515811461226b57600080fd5b809150509250929050565b6000806040838503121561228957600080fd5b612292836120f6565b946020939093013593505050565b6000602082840312156122b257600080fd5b5035919050565b6000602082840312156122cb57600080fd5b813561136e8161272a565b6000602082840312156122e857600080fd5b815161136e8161272a565b60006020828403121561230557600080fd5b81356001600160401b0381111561231b57600080fd5b8201601f8101841361232c57600080fd5b611ade84823560208401612081565b60006020828403121561234d57600080fd5b61136e82612112565b6000806040838503121561236957600080fd5b61216c83612112565b60006020828403121561238457600080fd5b61136e82612124565b6000806000604084860312156123a257600080fd5b6123ab84612124565b925060208401356001600160401b03808211156123c757600080fd5b818601915086601f8301126123db57600080fd5b8135818111156123ea57600080fd5b8760208260051b85010111156123ff57600080fd5b6020830194508093505050509250925092565b6000815180845261242a81602086016020860161263c565b601f01601f19169290920160200192915050565b6000845160206124518285838a0161263c565b8551918401916124648184848a0161263c565b8554920191600090600181811c908083168061248157607f831692505b85831081141561249f57634e487b7160e01b85526022600452602485fd5b8080156124b357600181146124c4576124f1565b60ff198516885283880195506124f1565b60008b81526020902060005b858110156124e95781548a8201529084019088016124d0565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061253590830184612412565b9695505050505050565b60208152600061136e6020830184612412565b60208082526013908201527222bc31b2b232b99036b0bc1039bab838363c9760691b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff8083168185168083038211156125d1576125d16126d2565b01949350505050565b600082198211156125ed576125ed6126d2565b500190565b600082612601576126016126e8565b500490565b6000816000190483118215151615612620576126206126d2565b500290565b600082821015612637576126376126d2565b500390565b60005b8381101561265757818101518382015260200161263f565b838111156111ce5750506000910152565b600181811c9082168061267c57607f821691505b6020821081141561269d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126b7576126b76126d2565b5060010190565b6000826126cd576126cd6126e8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ca457600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220a2580be88300161ab2f1122cae67967b29d4caed312f178968da43e7690c9a1e64736f6c63430008070033

Deployed Bytecode Sourcemap

46342:7571:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24421:305;;;;;;;;;;-1:-1:-1;24421:305:0;;;;;:::i;:::-;;:::i;:::-;;;8776:14:1;;8769:22;8751:41;;8739:2;8724:18;24421:305:0;;;;;;;;47432:35;;;;;;;;;;-1:-1:-1;47432:35:0;;;;;;;;;;;27534:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29037:204::-;;;;;;;;;;-1:-1:-1;29037:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8074:32:1;;;8056:51;;8044:2;8029:18;29037:204:0;7910:203:1;51719:127:0;;;;;;;;;;;;;:::i;:::-;;28600:371;;;;;;;;;;-1:-1:-1;28600:371:0;;;;;:::i;:::-;;:::i;49729:356::-;;;;;;;;;;-1:-1:-1;49729:356:0;;;;;:::i;:::-;;:::i;53515:123::-;;;;;;;;;;-1:-1:-1;53515:123:0;;;;;:::i;:::-;;:::i;23670:303::-;;;;;;;;;;-1:-1:-1;23924:12:0;;23714:7;23908:13;:28;23670:303;;;8949:25:1;;;8937:2;8922:18;23670:303:0;8803:177:1;29902:170:0;;;;;;;;;;-1:-1:-1;29902:170:0;;;;;:::i;:::-;;:::i;50161:403::-;;;;;;;;;;-1:-1:-1;50161:403:0;;;;;:::i;:::-;;:::i;53652:89::-;;;;;;;;;;;;;:::i;53754:152::-;;;;;;;;;;;;;:::i;51862:184::-;;;;;;;;;;;;;:::i;47186:30::-;;;;;;;;;;-1:-1:-1;47186:30:0;;;;;;;;;;;13820:4:1;13808:17;;;13790:36;;13778:2;13763:18;47186:30:0;13648:184:1;30143:185:0;;;;;;;;;;-1:-1:-1;30143:185:0;;;;;:::i;:::-;;:::i;51083:98::-;;;;;;;;;;-1:-1:-1;51083:98:0;;;;;:::i;:::-;;:::i;46811:33::-;;;;;;;;;;;;;:::i;53250:121::-;;;;;;;;;;-1:-1:-1;53250:121:0;;;;;:::i;:::-;;:::i;47482:28::-;;;;;;;;;;-1:-1:-1;47482:28:0;;;;;;;;;;;47948:1023;;;;;;:::i;:::-;;:::i;46714:82::-;;;;;;;;;;;;;:::i;27342:125::-;;;;;;;;;;-1:-1:-1;27342:125:0;;;;;:::i;:::-;;:::i;24790:206::-;;;;;;;;;;-1:-1:-1;24790:206:0;;;;;:::i;:::-;;:::i;45466:103::-;;;;;;;;;;;;;:::i;52534:147::-;;;;;;;;;;-1:-1:-1;52534:147:0;;;;;:::i;:::-;;:::i;52223:141::-;;;;;;;;;;-1:-1:-1;52223:141:0;;;;;:::i;:::-;;:::i;44815:87::-;;;;;;;;;;-1:-1:-1;44888:6:0;;-1:-1:-1;;;;;44888:6:0;44815:87;;47083:34;;;;;;;;;;;;;;;;27703:104;;;;;;;;;;;;;:::i;29313:287::-;;;;;;;;;;-1:-1:-1;29313:287:0;;;;;:::i;:::-;;:::i;47569:25::-;;;;;;;;;;-1:-1:-1;47569:25:0;;;;;;;;;;;47680:103;;;;;;;;;;;;;;;;30399:369;;;;;;;;;;-1:-1:-1;30399:369:0;;;;;:::i;:::-;;:::i;52698:158::-;;;;;;;;;;-1:-1:-1;52698:158:0;;;;;:::i;:::-;;:::i;51201:499::-;;;;;;;;;;-1:-1:-1;51201:499:0;;;;;:::i;:::-;;:::i;47272:26::-;;;;;;;;;;-1:-1:-1;47272:26:0;;;;;;;;;;;52074:133;;;;;;;;;;-1:-1:-1;52074:133:0;;;;;:::i;:::-;;:::i;46619:39::-;;;;;;;;;;;;46654:4;46619:39;;;;;13447:6:1;13435:19;;;13417:38;;13405:2;13390:18;46619:39:0;13273:188:1;29671:164:0;;;;;;;;;;-1:-1:-1;29671:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29792:25:0;;;29768:4;29792:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29671:164;46859:88;;;;;;;;;;;;;:::i;45724:201::-;;;;;;;;;;-1:-1:-1;45724:201:0;;;;;:::i;:::-;;:::i;49037:640::-;;;;;;:::i;:::-;;:::i;46998:38::-;;;;;;;;;;;;;;;;52379:139;;;;;;;;;;-1:-1:-1;52379:139:0;;;;;:::i;:::-;;:::i;24421:305::-;24523:4;-1:-1:-1;;;;;;24560:40:0;;-1:-1:-1;;;24560:40:0;;:105;;-1:-1:-1;;;;;;;24617:48:0;;-1:-1:-1;;;24617:48:0;24560:105;:158;;;-1:-1:-1;;;;;;;;;;14475:40:0;;;24682:36;24540:178;24421:305;-1:-1:-1;;24421:305:0:o;27534:100::-;27588:13;27621:5;27614:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27534:100;:::o;29037:204::-;29105:7;29130:16;29138:7;29130;:16::i;:::-;29125:64;;29155:34;;-1:-1:-1;;;29155:34:0;;;;;;;;;;;29125:64;-1:-1:-1;29209:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29209:24:0;;29037:204::o;51719:127::-;44888:6;;-1:-1:-1;;;;;44888:6:0;2916:10;45035:23;45027:68;;;;-1:-1:-1;;;45027:68:0;;;;;;;:::i;:::-;;;;;;;;;51792:8:::1;::::0;;-1:-1:-1;;51819:11:0;;51792:8;;;;::::1;;;51791:9;51780:20:::0;;::::1;-1:-1:-1::0;;51819:11:0;;;;51719:127::o;28600:371::-;28673:13;28689:24;28705:7;28689:15;:24::i;:::-;28673:40;;28734:5;-1:-1:-1;;;;;28728:11:0;:2;-1:-1:-1;;;;;28728:11:0;;28724:48;;;28748:24;;-1:-1:-1;;;28748:24:0;;;;;;;;;;;28724:48;2916:10;-1:-1:-1;;;;;28789:21:0;;;;;;:63;;-1:-1:-1;28815:37:0;28832:5;2916:10;29671:164;:::i;28815:37::-;28814:38;28789:63;28785:138;;;28876:35;;-1:-1:-1;;;28876:35:0;;;;;;;;;;;28785:138;28935:28;28944:2;28948:7;28957:5;28935:8;:28::i;:::-;28662:309;28600:371;;:::o;49729:356::-;44888:6;;-1:-1:-1;;;;;44888:6:0;2916:10;45035:23;45027:68;;;;-1:-1:-1;;;45027:68:0;;;;;;;:::i;:::-;49806:18:::1;49834:13;23924:12:::0;;23714:7;23908:13;:28;;23670:303;49834:13:::1;49806:42:::0;-1:-1:-1;46654:4:0::1;49875:25;49889:11:::0;49806:42;49875:25:::1;:::i;:::-;:38;;;;49867:70;;;;-1:-1:-1::0;;;49867:70:0::1;;;;;;;:::i;:::-;49956:35;49966:10;49979:11;49956:35;;:9;:35::i;:::-;-1:-1:-1::0;;49729:356:0:o;53515:123::-;44888:6;;-1:-1:-1;;;;;44888:6:0;2916:10;45035:23;45027:68;;;;-1:-1:-1;;;45027:68:0;;;;;;;:::i;:::-;53599:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;29902:170::-:0;30036:28;30046:4;30052:2;30056:7;30036:9;:28::i;50161:403::-;44888:6;;-1:-1:-1;;;;;44888:6:0;2916:10;45035:23;45027:68;;;;-1:-1:-1;;;45027:68:0;;;;;;;:::i;:::-;50255:18:::1;50283:13;23924:12:::0;;23714:7;23908:13;:28;;23670:303;50283:13:::1;50255:42:::0;-1:-1:-1;46654:4:0::1;50324:25;50338:11:::0;50255:42;50324:25:::1;:::i;:::-;:38;;;;50316:70;;;;-1:-1:-1::0;;;50316:70:0::1;;;;;;;:::i;:::-;50405:34;50415:9;50427:11;50405:34;;:9;:34::i;53652:89::-:0;44888:6;;-1:-1:-1;;;;;44888:6:0;2916:10;45035:23;45027:68;;;;-1:-1:-1;;;45027:68:0;;;;;;;:::i;:::-;53719:6:::1;::::0;;-1:-1:-1;;53709:16:0;::::1;53719:6:::0;;;;::::1;;;53718:7;53709:16:::0;;::::1;;::::0;;53652:89::o;53754:152::-;44888:6;;-1:-1:-1;;;;;44888:6:0;2916:10;45035:23;45027:68;;;;-1:-1:-1;;;45027:68:0;;;;;;;:::i;:::-;53853:39:::1;::::0;53820:21:::1;::::0;53861:10:::1;::::0;53853:39;::::1;;;::::0;53820:21;;53804:13:::1;53853:39:::0;53804:13;53853:39;53820:21;53861:10;53853:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;51862:184:::0;44888:6;;-1:-1:-1;;;;;44888:6:0;2916:10;45035:23;45027:68;;;;-1:-1:-1;;;45027:68:0;;;;;;;:::i;:::-;51950:16:::1;::::0;;51985:15;-1:-1:-1;;51985:15:0;;51950:16;;;;::::1;;;51949:17;51931:35:::0;;::::1;-1:-1:-1::0;;51985:15:0;;;;;::::1;-1:-1:-1::0;;52019:11:0::1;::::0;;51862:184::o;30143:185::-;30281:39;30298:4;30304:2;30308:7;30281:39;;;;;;;;;;;;:16;:39::i;51083:98::-;44888:6;;-1:-1:-1;;;;;44888:6:0;2916:10;45035:23;45027:68;;;;-1:-1:-1;;;45027:68:0;;;;;;;:::i;:::-;51150:15:::1;51156:8;51150:5;:15::i;:::-;51083:98:::0;:::o;46811:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53250:121::-;44888:6;;-1:-1:-1;;;;;44888:6:0;2916:10;45035:23;45027:68;;;;-1:-1:-1;;;45027:68:0;;;;;;;:::i;:::-;53331:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;47948:1023::-:0;52996:23;;;48086:10;6293:2:1;6289:15;-1:-1:-1;;6285:53:1;52996:23:0;;;;6273:66:1;;;;52996:23:0;;;;;;;;;6355:12:1;;;;52996:23:0;;;52986:34;;;;;48120;48128:8;48141:11;;48120:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48120:7:0;;-1:-1:-1;;;48120:34:0:i;:::-;48112:68;;;;-1:-1:-1;;;48112:68:0;;12010:2:1;48112:68:0;;;11992:21:1;12049:2;12029:18;;;12022:30;-1:-1:-1;;;12068:18:1;;;12061:50;12128:18;;48112:68:0;11808:344:1;48112:68:0;48219:9;;;;;;;;;48204:24;;;;;48195:64;;;;-1:-1:-1;;;48195:64:0;;10579:2:1;48195:64:0;;;10561:21:1;10618:2;10598:18;;;10591:30;10657:28;10637:18;;;10630:56;10703:18;;48195:64:0;10377:350:1;48195:64:0;48283:8;;;;;;;48282:9;48274:54;;;;-1:-1:-1;;;48274:54:0;;10934:2:1;48274:54:0;;;10916:21:1;;;10953:18;;;10946:30;11012:34;10992:18;;;10985:62;11064:18;;48274:54:0;10732:356:1;48274:54:0;48373:11;48364:20;;:6;;:20;;;;:::i;:::-;48351:9;:33;48343:71;;;;-1:-1:-1;;;48343:71:0;;11295:2:1;48343:71:0;;;11277:21:1;11334:2;11314:18;;;11307:30;11373:27;11353:18;;;11346:55;11418:18;;48343:71:0;11093:349:1;48343:71:0;48429:18;48457:13;23924:12;;23714:7;23908:13;:28;;23670:303;48457:13;48429:42;;48484:35;48494:10;48507:11;48484:35;;:9;:35::i;:::-;48544:7;;:21;;;;;;:7;;;;;:21;:::i;:::-;48534:7;:31;;-1:-1:-1;;48534:31:0;;;;;;;;;;;;;;;;48753:4;48742:7;;;;;:15;48737:151;;48789:8;:15;;-1:-1:-1;;48860:11:0;48789:15;48860:11;;;48737:151;-1:-1:-1;;;;;47948:1023:0:o;46714:82::-;;;;;;;:::i;27342:125::-;27406:7;27433:21;27446:7;27433:12;:21::i;:::-;:26;;27342:125;-1:-1:-1;;27342:125:0:o;24790:206::-;24854:7;-1:-1:-1;;;;;24878:19:0;;24874:60;;24906:28;;-1:-1:-1;;;24906:28:0;;;;;;;;;;;24874:60;-1:-1:-1;;;;;;24960:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24960:27:0;;24790:206::o;45466:103::-;44888:6;;-1:-1:-1;;;;;44888:6:0;2916:10;45035:23;45027:68;;;;-1:-1:-1;;;45027:68:0;;;;;;;:::i;:::-;45531:30:::1;45558:1;45531:18;:30::i;:::-;45466:103::o:0;52534:147::-;44888:6;;-1:-1:-1;;;;;44888:6:0;2916:10;45035:23;45027:68;;;;-1:-1:-1;;;45027:68:0;;;;;;;:::i;:::-;52611:13:::1;:22:::0;;-1:-1:-1;;52611:22:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;52534:147::o;52223:141::-;44888:6;;-1:-1:-1;;;;;44888:6:0;2916:10;45035:23;45027:68;;;;-1:-1:-1;;;45027:68:0;;;;;;;:::i;:::-;52299:10:::1;:18:::0;52223:141::o;27703:104::-;27759:13;27792:7;27785:14;;;;;:::i;29313:287::-;-1:-1:-1;;;;;29412:24:0;;2916:10;29412:24;29408:54;;;29445:17;;-1:-1:-1;;;29445:17:0;;;;;;;;;;;29408:54;2916:10;29475:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29475:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29475:53:0;;;;;;;;;;29544:48;;8751:41:1;;;29475:42:0;;2916:10;29544:48;;8724:18:1;29544:48:0;;;;;;;29313:287;;:::o;30399:369::-;30566:28;30576:4;30582:2;30586:7;30566:9;:28::i;:::-;-1:-1:-1;;;;;30609:13:0;;4578:19;:23;;30609:76;;;;;30629:56;30660:4;30666:2;30670:7;30679:5;30629:30;:56::i;:::-;30628:57;30609:76;30605:156;;;30709:40;;-1:-1:-1;;;30709:40:0;;;;;;;;;;;30605:156;30399:369;;;;:::o;52698:158::-;44888:6;;-1:-1:-1;;;;;44888:6:0;2916:10;45035:23;45027:68;;;;-1:-1:-1;;;45027:68:0;;;;;;;:::i;:::-;52798:19:::1;:42:::0;52698:158::o;51201:499::-;51275:13;51316:17;51324:8;51316:7;:17::i;:::-;51307:79;;;;-1:-1:-1;;;51307:79:0;;12711:2:1;51307:79:0;;;12693:21:1;12750:2;12730:18;;;12723:30;12789:34;12769:18;;;12762:62;-1:-1:-1;;;12840:18:1;;;12833:45;12895:19;;51307:79:0;12509:411:1;51307:79:0;51406:6;;;;;;;51401:68;;51444:9;51437:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51201:499;;;:::o;51401:68::-;51484:28;51515:10;:8;:10::i;:::-;51484:41;;51579:1;51554:14;51548:28;:32;:137;;;;;;;;;;;;;;;;;51619:14;51635:19;:8;:17;:19::i;:::-;51656:9;51602:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51548:137;51541:144;51201:499;-1:-1:-1;;;51201:499:0:o;52074:133::-;44888:6;;-1:-1:-1;;;;;44888:6:0;2916:10;45035:23;45027:68;;;;-1:-1:-1;;;45027:68:0;;;;;;;:::i;:::-;52146:6:::1;:14:::0;52074:133::o;46859:88::-;;;;;;;:::i;45724:201::-;44888:6;;-1:-1:-1;;;;;44888:6:0;2916:10;45035:23;45027:68;;;;-1:-1:-1;;;45027:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45813:22:0;::::1;45805:73;;;::::0;-1:-1:-1;;;45805:73:0;;10172:2:1;45805:73:0::1;::::0;::::1;10154:21:1::0;10211:2;10191:18;;;10184:30;10250:34;10230:18;;;10223:62;-1:-1:-1;;;10301:18:1;;;10294:36;10347:19;;45805:73:0::1;9970:402:1::0;45805:73:0::1;45889:28;45908:8;45889:18;:28::i;49037:640::-:0;49114:18;49142:13;23924:12;;23714:7;23908:13;:28;;23670:303;49142:13;49114:42;-1:-1:-1;46654:4:0;49183:25;49197:11;49114:42;49183:25;:::i;:::-;:38;;;;49175:70;;;;-1:-1:-1;;;49175:70:0;;;;;;;:::i;:::-;49287:13;;;;49272:28;;;;;49264:85;;;;-1:-1:-1;;;49264:85:0;;9759:2:1;49264:85:0;;;9741:21:1;9798:2;9778:18;;;9771:30;9837:34;9817:18;;;9810:62;-1:-1:-1;;;9888:18:1;;;9881:42;9940:19;;49264:85:0;9557:408:1;49264:85:0;49377:16;;;;;;;49376:17;49368:53;;;;-1:-1:-1;;;49368:53:0;;12359:2:1;49368:53:0;;;12341:21:1;12398:2;12378:18;;;12371:30;12437:25;12417:18;;;12410:53;12480:18;;49368:53:0;12157:347:1;49368:53:0;49474:11;49461:24;;:10;;:24;;;;:::i;:::-;49448:9;:37;49440:69;;;;-1:-1:-1;;;49440:69:0;;13127:2:1;49440:69:0;;;13109:21:1;13166:2;13146:18;;;13139:30;-1:-1:-1;;;13185:18:1;;;13178:49;13244:18;;49440:69:0;12925:343:1;52379:139:0;44888:6;;-1:-1:-1;;;;;44888:6:0;2916:10;45035:23;45027:68;;;;-1:-1:-1;;;45027:68:0;;;;;;;:::i;:::-;52452:9:::1;:18:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;52452:18:0;;::::1;::::0;;;::::1;::::0;;52379:139::o;31023:187::-;31080:4;31144:13;;31134:7;:23;31104:98;;;;-1:-1:-1;;31175:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31175:27:0;;;;31174:28;;31023:187::o;39193:196::-;39308:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39308:29:0;-1:-1:-1;;;;;39308:29:0;;;;;;;;;39353:28;;39308:24;;39353:28;;;;;;;39193:196;;;:::o;31218:104::-;31287:27;31297:2;31301:8;31287:27;;;;;;;;;;;;:9;:27::i;34136:2130::-;34251:35;34289:21;34302:7;34289:12;:21::i;:::-;34251:59;;34349:4;-1:-1:-1;;;;;34327:26:0;:13;:18;;;-1:-1:-1;;;;;34327:26:0;;34323:67;;34362:28;;-1:-1:-1;;;34362:28:0;;;;;;;;;;;34323:67;34403:22;2916:10;-1:-1:-1;;;;;34429:20:0;;;;:73;;-1:-1:-1;34466:36:0;34483:4;2916:10;29671:164;:::i;34466:36::-;34429:126;;;-1:-1:-1;2916:10:0;34519:20;34531:7;34519:11;:20::i;:::-;-1:-1:-1;;;;;34519:36:0;;34429:126;34403:153;;34574:17;34569:66;;34600:35;;-1:-1:-1;;;34600:35:0;;;;;;;;;;;34569:66;-1:-1:-1;;;;;34650:16:0;;34646:52;;34675:23;;-1:-1:-1;;;34675:23:0;;;;;;;;;;;34646:52;34819:35;34836:1;34840:7;34849:4;34819:8;:35::i;:::-;-1:-1:-1;;;;;35150:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35150:31:0;;;-1:-1:-1;;;;;35150:31:0;;;-1:-1:-1;;35150:31:0;;;;;;;35196:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35196:29:0;;;;;;;;;;;35276:20;;;:11;:20;;;;;;35311:18;;-1:-1:-1;;;;;;35344:49:0;;;;-1:-1:-1;;;35377:15:0;35344:49;;;;;;;;;;35667:11;;35727:24;;;;;35770:13;;35276:20;;35727:24;;35770:13;35766:384;;35980:13;;35965:11;:28;35961:174;;36018:20;;36087:28;;;;-1:-1:-1;;;;;36061:54:0;-1:-1:-1;;;36061:54:0;-1:-1:-1;;;;;;36061:54:0;;;-1:-1:-1;;;;;36018:20:0;;36061:54;;;;35961:174;35125:1036;;;36197:7;36193:2;-1:-1:-1;;;;;36178:27:0;36187:4;-1:-1:-1;;;;;36178:27:0;-1:-1:-1;;;;;;;;;;;36178:27:0;;;;;;;;;34240:2026;;34136:2130;;;:::o;36349:89::-;36409:21;36415:7;36424:5;36409;:21::i;53061:174::-;53139:4;53167:52;53186:5;53193:19;;53214:4;53167:18;:52::i;26171:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26282:7:0;26365:13;;26358:4;:20;26327:886;;;26399:31;26433:17;;;:11;:17;;;;;;;;;26399:51;;;;;;;;;-1:-1:-1;;;;;26399:51:0;;;;-1:-1:-1;;;26399:51:0;;-1:-1:-1;;;;;26399:51:0;;;;;;;;-1:-1:-1;;;26399:51:0;;;;;;;;;;;;;;26469:729;;26519:14;;-1:-1:-1;;;;;26519:28:0;;26515:101;;26583:9;26171:1109;-1:-1:-1;;;26171:1109:0:o;26515:101::-;-1:-1:-1;;;26958:6:0;27003:17;;;;:11;:17;;;;;;;;;26991:29;;;;;;;;;-1:-1:-1;;;;;26991:29:0;;;;;-1:-1:-1;;;26991:29:0;;-1:-1:-1;;;;;26991:29:0;;;;;;;;-1:-1:-1;;;26991:29:0;;;;;;;;;;;;;27051:28;27047:109;;27119:9;26171:1109;-1:-1:-1;;;26171:1109:0:o;27047:109::-;26918:261;;;26380:833;26327:886;27241:31;;-1:-1:-1;;;27241:31:0;;;;;;;;;;;46085:191;46178:6;;;-1:-1:-1;;;;;46195:17:0;;;-1:-1:-1;;;;;;46195:17:0;;;;;;;46228:40;;46178:6;;;46195:17;46178:6;;46228:40;;46159:16;;46228:40;46148:128;46085:191;:::o;39881:667::-;40065:72;;-1:-1:-1;;;40065:72:0;;40044:4;;-1:-1:-1;;;;;40065:36:0;;;;;:72;;2916:10;;40116:4;;40122:7;;40131:5;;40065:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40065:72:0;;;;;;;;-1:-1:-1;;40065:72:0;;;;;;;;;;;;:::i;:::-;;;40061:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40299:13:0;;40295:235;;40345:40;;-1:-1:-1;;;40345:40:0;;;;;;;;;;;40295:235;40488:6;40482:13;40473:6;40469:2;40465:15;40458:38;40061:480;-1:-1:-1;;;;;;40184:55:0;-1:-1:-1;;;40184:55:0;;-1:-1:-1;40061:480:0;39881:667;;;;;;:::o;53386:115::-;53439:13;53476:9;53469:16;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;-1:-1:-1;;;;;900:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;31685:163;31808:32;31814:2;31818:8;31828:5;31835:4;31808:5;:32::i;36667:2408::-;36747:35;36785:21;36798:7;36785:12;:21::i;:::-;36834:18;;36747:59;;-1:-1:-1;36865:290:0;;;;36899:22;2916:10;-1:-1:-1;;;;;36925:20:0;;;;:77;;-1:-1:-1;36966:36:0;36983:4;2916:10;29671:164;:::i;36966:36::-;36925:134;;;-1:-1:-1;2916:10:0;37023:20;37035:7;37023:11;:20::i;:::-;-1:-1:-1;;;;;37023:36:0;;36925:134;36899:161;;37082:17;37077:66;;37108:35;;-1:-1:-1;;;37108:35:0;;;;;;;;;;;37077:66;36884:271;36865:290;37283:35;37300:1;37304:7;37313:4;37283:8;:35::i;:::-;-1:-1:-1;;;;;37648:18:0;;;37614:31;37648:18;;;:12;:18;;;;;;;;37681:24;;-1:-1:-1;;;;;;;;;;37681:24:0;;;;;;;;;-1:-1:-1;;37681:24:0;;;;37720:29;;;;;37704:1;37720:29;;;;;;;;-1:-1:-1;;37720:29:0;;;;;;;;;;37882:20;;;:11;:20;;;;;;37917;;-1:-1:-1;;;;37985:15:0;37952:49;;;-1:-1:-1;;;37952:49:0;-1:-1:-1;;;;;;37952:49:0;;;;;;;;;;38016:22;-1:-1:-1;;;38016:22:0;;;38308:11;;;38368:24;;;;;38411:13;;37648:18;;38368:24;;38411:13;38407:384;;38621:13;;38606:11;:28;38602:174;;38659:20;;38728:28;;;;-1:-1:-1;;;;;38702:54:0;-1:-1:-1;;;38702:54:0;-1:-1:-1;;;;;;38702:54:0;;;-1:-1:-1;;;;;38659:20:0;;38702:54;;;;38602:174;-1:-1:-1;;38819:35:0;;38846:7;;-1:-1:-1;38842:1:0;;-1:-1:-1;;;;;;38819:35:0;;;-1:-1:-1;;;;;;;;;;;38819:35:0;38842:1;;38819:35;-1:-1:-1;;39042:12:0;:14;;;;;;-1:-1:-1;;36667:2408:0:o;42939:190::-;43064:4;43117;43088:25;43101:5;43108:4;43088:12;:25::i;:::-;:33;;42939:190;-1:-1:-1;;;;42939:190:0:o;32107:1775::-;32246:20;32269:13;-1:-1:-1;;;;;32297:16:0;;32293:48;;32322:19;;-1:-1:-1;;;32322:19:0;;;;;;;;;;;32293:48;32356:13;32352:44;;32378:18;;-1:-1:-1;;;32378:18:0;;;;;;;;;;;32352:44;-1:-1:-1;;;;;32747:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32806:49:0;;-1:-1:-1;;;;;32747:44:0;;;;;;;32806:49;;;;-1:-1:-1;;32747:44:0;;;;;;32806:49;;;;;;;;;;;;;;;;32872:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32922:66:0;;;;-1:-1:-1;;;32972:15:0;32922:66;;;;;;;;;;32872:25;33069:23;;;33113:4;:23;;;;-1:-1:-1;;;;;;33121:13:0;;4578:19;:23;;33121:15;33109:641;;;33157:314;33188:38;;33213:12;;-1:-1:-1;;;;;33188:38:0;;;33205:1;;-1:-1:-1;;;;;;;;;;;33188:38:0;33205:1;;33188:38;33254:69;33293:1;33297:2;33301:14;;;;;;33317:5;33254:30;:69::i;:::-;33249:174;;33359:40;;-1:-1:-1;;;33359:40:0;;;;;;;;;;;33249:174;33466:3;33450:12;:19;;33157:314;;33552:12;33535:13;;:29;33531:43;;33566:8;;;33531:43;33109:641;;;33615:120;33646:40;;33671:14;;;;;-1:-1:-1;;;;;33646:40:0;;;33663:1;;-1:-1:-1;;;;;;;;;;;33646:40:0;33663:1;;33646:40;33730:3;33714:12;:19;;33615:120;;33109:641;-1:-1:-1;33764:13:0;:28;33814:60;30399:369;43491:675;43574:7;43617:4;43574:7;43632:497;43656:5;:12;43652:1;:16;43632:497;;;43690:20;43713:5;43719:1;43713:8;;;;;;;;:::i;:::-;;;;;;;43690:31;;43756:12;43740;:28;43736:382;;44242:13;44292:15;;;44328:4;44321:15;;;44375:4;44359:21;;43868:57;;43736:382;;;44242:13;44292:15;;;44328:4;44321:15;;;44375:4;44359:21;;44045:57;;43736:382;-1:-1:-1;43670:3:0;;;;:::i;:::-;;;;43632:497;;;-1:-1:-1;44146:12:0;43491:675;-1:-1:-1;;;43491:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:159::-;895:20;;955:6;944:18;;934:29;;924:57;;977:1;974;967:12;992:156;1058:20;;1118:4;1107:16;;1097:27;;1087:55;;1138:1;1135;1128:12;1153:186;1212:6;1265:2;1253:9;1244:7;1240:23;1236:32;1233:52;;;1281:1;1278;1271:12;1233:52;1304:29;1323:9;1304:29;:::i;1344:260::-;1412:6;1420;1473:2;1461:9;1452:7;1448:23;1444:32;1441:52;;;1489:1;1486;1479:12;1441:52;1512:29;1531:9;1512:29;:::i;:::-;1502:39;;1560:38;1594:2;1583:9;1579:18;1560:38;:::i;:::-;1550:48;;1344:260;;;;;:::o;1609:328::-;1686:6;1694;1702;1755:2;1743:9;1734:7;1730:23;1726:32;1723:52;;;1771:1;1768;1761:12;1723:52;1794:29;1813:9;1794:29;:::i;:::-;1784:39;;1842:38;1876:2;1865:9;1861:18;1842:38;:::i;:::-;1832:48;;1927:2;1916:9;1912:18;1899:32;1889:42;;1609:328;;;;;:::o;1942:666::-;2037:6;2045;2053;2061;2114:3;2102:9;2093:7;2089:23;2085:33;2082:53;;;2131:1;2128;2121:12;2082:53;2154:29;2173:9;2154:29;:::i;:::-;2144:39;;2202:38;2236:2;2225:9;2221:18;2202:38;:::i;:::-;2192:48;;2287:2;2276:9;2272:18;2259:32;2249:42;;2342:2;2331:9;2327:18;2314:32;-1:-1:-1;;;;;2361:6:1;2358:30;2355:50;;;2401:1;2398;2391:12;2355:50;2424:22;;2477:4;2469:13;;2465:27;-1:-1:-1;2455:55:1;;2506:1;2503;2496:12;2455:55;2529:73;2594:7;2589:2;2576:16;2571:2;2567;2563:11;2529:73;:::i;:::-;2519:83;;;1942:666;;;;;;;:::o;2613:347::-;2678:6;2686;2739:2;2727:9;2718:7;2714:23;2710:32;2707:52;;;2755:1;2752;2745:12;2707:52;2778:29;2797:9;2778:29;:::i;:::-;2768:39;;2857:2;2846:9;2842:18;2829:32;2904:5;2897:13;2890:21;2883:5;2880:32;2870:60;;2926:1;2923;2916:12;2870:60;2949:5;2939:15;;;2613:347;;;;;:::o;2965:254::-;3033:6;3041;3094:2;3082:9;3073:7;3069:23;3065:32;3062:52;;;3110:1;3107;3100:12;3062:52;3133:29;3152:9;3133:29;:::i;:::-;3123:39;3209:2;3194:18;;;;3181:32;;-1:-1:-1;;;2965:254:1:o;3224:180::-;3283:6;3336:2;3324:9;3315:7;3311:23;3307:32;3304:52;;;3352:1;3349;3342:12;3304:52;-1:-1:-1;3375:23:1;;3224:180;-1:-1:-1;3224:180:1:o;3409:245::-;3467:6;3520:2;3508:9;3499:7;3495:23;3491:32;3488:52;;;3536:1;3533;3526:12;3488:52;3575:9;3562:23;3594:30;3618:5;3594:30;:::i;3659:249::-;3728:6;3781:2;3769:9;3760:7;3756:23;3752:32;3749:52;;;3797:1;3794;3787:12;3749:52;3829:9;3823:16;3848:30;3872:5;3848:30;:::i;3913:450::-;3982:6;4035:2;4023:9;4014:7;4010:23;4006:32;4003:52;;;4051:1;4048;4041:12;4003:52;4091:9;4078:23;-1:-1:-1;;;;;4116:6:1;4113:30;4110:50;;;4156:1;4153;4146:12;4110:50;4179:22;;4232:4;4224:13;;4220:27;-1:-1:-1;4210:55:1;;4261:1;4258;4251:12;4210:55;4284:73;4349:7;4344:2;4331:16;4326:2;4322;4318:11;4284:73;:::i;4368:184::-;4426:6;4479:2;4467:9;4458:7;4454:23;4450:32;4447:52;;;4495:1;4492;4485:12;4447:52;4518:28;4536:9;4518:28;:::i;4557:258::-;4624:6;4632;4685:2;4673:9;4664:7;4660:23;4656:32;4653:52;;;4701:1;4698;4691:12;4653:52;4724:28;4742:9;4724:28;:::i;5005:182::-;5062:6;5115:2;5103:9;5094:7;5090:23;5086:32;5083:52;;;5131:1;5128;5121:12;5083:52;5154:27;5171:9;5154:27;:::i;5192:685::-;5285:6;5293;5301;5354:2;5342:9;5333:7;5329:23;5325:32;5322:52;;;5370:1;5367;5360:12;5322:52;5393:27;5410:9;5393:27;:::i;:::-;5383:37;;5471:2;5460:9;5456:18;5443:32;-1:-1:-1;;;;;5535:2:1;5527:6;5524:14;5521:34;;;5551:1;5548;5541:12;5521:34;5589:6;5578:9;5574:22;5564:32;;5634:7;5627:4;5623:2;5619:13;5615:27;5605:55;;5656:1;5653;5646:12;5605:55;5696:2;5683:16;5722:2;5714:6;5711:14;5708:34;;;5738:1;5735;5728:12;5708:34;5791:7;5786:2;5776:6;5773:1;5769:14;5765:2;5761:23;5757:32;5754:45;5751:65;;;5812:1;5809;5802:12;5751:65;5843:2;5839;5835:11;5825:21;;5865:6;5855:16;;;;;5192:685;;;;;:::o;5882:257::-;5923:3;5961:5;5955:12;5988:6;5983:3;5976:19;6004:63;6060:6;6053:4;6048:3;6044:14;6037:4;6030:5;6026:16;6004:63;:::i;:::-;6121:2;6100:15;-1:-1:-1;;6096:29:1;6087:39;;;;6128:4;6083:50;;5882:257;-1:-1:-1;;5882:257:1:o;6378:1527::-;6602:3;6640:6;6634:13;6666:4;6679:51;6723:6;6718:3;6713:2;6705:6;6701:15;6679:51;:::i;:::-;6793:13;;6752:16;;;;6815:55;6793:13;6752:16;6837:15;;;6815:55;:::i;:::-;6959:13;;6892:20;;;6932:1;;7019;7041:18;;;;7094;;;;7121:93;;7199:4;7189:8;7185:19;7173:31;;7121:93;7262:2;7252:8;7249:16;7229:18;7226:40;7223:167;;;-1:-1:-1;;;7289:33:1;;7345:4;7342:1;7335:15;7375:4;7296:3;7363:17;7223:167;7406:18;7433:110;;;;7557:1;7552:328;;;;7399:481;;7433:110;-1:-1:-1;;7468:24:1;;7454:39;;7513:20;;;;-1:-1:-1;7433:110:1;;7552:328;13910:1;13903:14;;;13947:4;13934:18;;7647:1;7661:169;7675:8;7672:1;7669:15;7661:169;;;7757:14;;7742:13;;;7735:37;7800:16;;;;7692:10;;7661:169;;;7665:3;;7861:8;7854:5;7850:20;7843:27;;7399:481;-1:-1:-1;7896:3:1;;6378:1527;-1:-1:-1;;;;;;;;;;;6378:1527:1:o;8118:488::-;-1:-1:-1;;;;;8387:15:1;;;8369:34;;8439:15;;8434:2;8419:18;;8412:43;8486:2;8471:18;;8464:34;;;8534:3;8529:2;8514:18;;8507:31;;;8312:4;;8555:45;;8580:19;;8572:6;8555:45;:::i;:::-;8547:53;8118:488;-1:-1:-1;;;;;;8118:488:1:o;8985:219::-;9134:2;9123:9;9116:21;9097:4;9154:44;9194:2;9183:9;9179:18;9171:6;9154:44;:::i;9209:343::-;9411:2;9393:21;;;9450:2;9430:18;;;9423:30;-1:-1:-1;;;9484:2:1;9469:18;;9462:49;9543:2;9528:18;;9209:343::o;11447:356::-;11649:2;11631:21;;;11668:18;;;11661:30;11727:34;11722:2;11707:18;;11700:62;11794:2;11779:18;;11447:356::o;13963:224::-;14002:3;14030:6;14063:2;14060:1;14056:10;14093:2;14090:1;14086:10;14124:3;14120:2;14116:12;14111:3;14108:21;14105:47;;;14132:18;;:::i;:::-;14168:13;;13963:224;-1:-1:-1;;;;13963:224:1:o;14192:128::-;14232:3;14263:1;14259:6;14256:1;14253:13;14250:39;;;14269:18;;:::i;:::-;-1:-1:-1;14305:9:1;;14192:128::o;14325:120::-;14365:1;14391;14381:35;;14396:18;;:::i;:::-;-1:-1:-1;14430:9:1;;14325:120::o;14450:168::-;14490:7;14556:1;14552;14548:6;14544:14;14541:1;14538:21;14533:1;14526:9;14519:17;14515:45;14512:71;;;14563:18;;:::i;:::-;-1:-1:-1;14603:9:1;;14450:168::o;14623:125::-;14663:4;14691:1;14688;14685:8;14682:34;;;14696:18;;:::i;:::-;-1:-1:-1;14733:9:1;;14623:125::o;14753:258::-;14825:1;14835:113;14849:6;14846:1;14843:13;14835:113;;;14925:11;;;14919:18;14906:11;;;14899:39;14871:2;14864:10;14835:113;;;14966:6;14963:1;14960:13;14957:48;;;-1:-1:-1;;15001:1:1;14983:16;;14976:27;14753:258::o;15016:380::-;15095:1;15091:12;;;;15138;;;15159:61;;15213:4;15205:6;15201:17;15191:27;;15159:61;15266:2;15258:6;15255:14;15235:18;15232:38;15229:161;;;15312:10;15307:3;15303:20;15300:1;15293:31;15347:4;15344:1;15337:15;15375:4;15372:1;15365:15;15229:161;;15016:380;;;:::o;15401:135::-;15440:3;-1:-1:-1;;15461:17:1;;15458:43;;;15481:18;;:::i;:::-;-1:-1:-1;15528:1:1;15517:13;;15401:135::o;15541:112::-;15573:1;15599;15589:35;;15604:18;;:::i;:::-;-1:-1:-1;15638:9:1;;15541:112::o;15658:127::-;15719:10;15714:3;15710:20;15707:1;15700:31;15750:4;15747:1;15740:15;15774:4;15771:1;15764:15;15790:127;15851:10;15846:3;15842:20;15839:1;15832:31;15882:4;15879:1;15872:15;15906:4;15903:1;15896:15;15922:127;15983:10;15978:3;15974:20;15971:1;15964:31;16014:4;16011:1;16004:15;16038:4;16035:1;16028:15;16054:127;16115:10;16110:3;16106:20;16103:1;16096:31;16146:4;16143:1;16136:15;16170:4;16167:1;16160:15;16186:131;-1:-1:-1;;;;;;16260:32:1;;16250:43;;16240:71;;16307:1;16304;16297:12

Swarm Source

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