ETH Price: $3,411.83 (-0.79%)
Gas: 21 Gwei

Token

Commanders by Project Dark Eye (DEYECOMMANDER)
 

Overview

Max Total Supply

863 DEYECOMMANDER

Holders

237

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DEYECOMMANDER
0xdc48249b84101f2808640a764363977352f64d67
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:
Commanders

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721DEYE.sol


// Author: Mas C. (Project Dark Eye)

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.
 *
 * This implementation is forked from ERC721A (https://github.com/chiru-labs/ERC721A).
 *
 * 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 ERC721DEYE 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;
        // 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;
        // If the address is allowed in presale one.
        bool presaleOneAllowed;
        // If the address is allowed in presale two.
        bool presaleTwoAllowed;
    }

    // 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();
        }
    }

    function totalMinted() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _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 if the address is allowed to mint at each stage.
     */
    function _getMintAllowance(address owner) internal view returns (bool, bool) {
        return (_addressData[owner].presaleOneAllowed, _addressData[owner].presaleTwoAllowed);
    }

    /**
     * Sets if the address is allowed to mint at each stage.
     */
    function _setMintAllowance(address owner, bool presaleOneAllowed, bool presaleTwoAllowed) internal {
        _addressData[owner].presaleOneAllowed = presaleOneAllowed;
        _addressData[owner].presaleTwoAllowed = presaleTwoAllowed;
    }

    /**
     * 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 = ERC721DEYE.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;

            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;

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

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

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

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

// File: contracts/Commanders.sol


// Author: Mas C. (Project Dark Eye)

pragma solidity ^0.8.0;





contract Commanders is Ownable, ERC721DEYE, ReentrancyGuard {
    enum ContractStatus {
        Paused,
        Presale,
        Public
    }
    ContractStatus public contractStatus = ContractStatus.Paused;

    string  public baseURI;
    bytes32 public allowanceMerkleRoot;
    uint256 public presalePrice = 0.088 ether;
    uint256 public presalePriceHolder = 0.058 ether;
    uint256 public totalMintSupply = 6666;
    uint256 public publicMintTransactionLimit = 5;

    uint256 public startingTime = 1657090800;
    uint256 public startingPrice = 2 ether;
    uint256 public discountRate = 0.05 ether;
    uint256 public discountTime = 3600;
    uint256 public endingPrice = 0.088 ether;

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

    constructor(string memory contractBaseURI, bytes32 merkleRoot)
    ERC721DEYE ("Commanders by Project Dark Eye", "DEYECOMMANDER") {
        baseURI = contractBaseURI;
        allowanceMerkleRoot = merkleRoot;
    }

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

    function _startTokenId() internal view virtual override(ERC721DEYE) returns (uint256) {
        return 1;
    }

    function mintPublic(uint64 quantity) public payable callerIsUser {
        require(contractStatus == ContractStatus.Public, "Public minting not available"); 
        require(msg.value >= getPrice() * quantity, "Not enough ETH sent");
        require(_totalMinted() + quantity <= totalMintSupply, "Not enough supply");
        require(quantity <= publicMintTransactionLimit, "Exceeds allowed transaction limit");

        _safeMint(msg.sender, quantity);
    }

    function mintPresale(uint64 quantity, uint256 allowance, bytes32[] calldata proof) public payable callerIsUser {
        require(contractStatus == ContractStatus.Presale, "Presale #1 not available");
        require(verifyAllowance(msg.sender, allowance, proof), "Failed allowance verification");
        require(_numberMinted(msg.sender) + quantity <= allowance, "Request higher than allowance");
        require(msg.value >= presalePriceHolder * quantity, "Not enough ETH sent");

        _safeMint(msg.sender, quantity);
    }

    function verifyAllowance(address account, uint256 allowance, bytes32[] calldata proof) public view returns (bool) {
        return MerkleProof.verify(proof, allowanceMerkleRoot, generateAllowanceMerkleLeaf(account, allowance));
    }

    function generateAllowanceMerkleLeaf(address account, uint256 allowance) public pure returns (bytes32) {
        return keccak256(abi.encodePacked(account, allowance));
    }
    
    function getPrice() public view returns (uint256) {
        if (block.timestamp < startingTime) {
            return startingPrice;
        }
        uint256 numDiscounts = (block.timestamp - startingTime) / discountTime;
        uint256 discountPrice = startingPrice - numDiscounts * discountRate;
        return discountPrice >= endingPrice ? discountPrice : endingPrice;
    }

    function getMintedQuantity(address account) public view returns (uint256) {
        return _numberMinted(account);
    }

    function getTokenOwned(address account, uint256 number) public view returns (uint256) {
        uint256 count = 0;
        for (uint i = 0; i < totalMinted(); i++) {
            if (ownerOf(i+1) == account) {
                count += 1;
                if (number == count) {
                    return i+1;
                }
            }
        }
        return 0;
    }

    // Owner Only

    function setContractStatus(ContractStatus status) public onlyOwner {
        contractStatus = status;
    }

    function setTotalMintSupply(uint256 supply) public onlyOwner {
        totalMintSupply = supply;
    }

    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }
    
    function setAllowanceMerkleRoot(bytes32 merkleRoot) public onlyOwner {
        require(merkleRoot != allowanceMerkleRoot,"merkleRoot is the same as previous value");
        allowanceMerkleRoot = merkleRoot;
    }

    function setPublicAuction(uint256 startTime, uint256 startPrice, uint256 dcRate, uint256 dcTime, uint256 endPrice) public onlyOwner {
        startingTime = startTime;
        startingPrice = startPrice;
        discountRate = dcRate;
        discountTime = dcTime;
        endingPrice = endPrice;
    }

    function teamMint(address[] memory addresses, uint64[] memory quantities) external onlyOwner {
        require(addresses.length == quantities.length, "addresses does not match quatities length");
        uint64 totalQuantity = 0;
        for (uint i = 0; i < quantities.length; i++) {
            totalQuantity += quantities[i];
        }
        require(_totalMinted() + totalQuantity <= totalMintSupply, "Not enough supply");
        for (uint i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], quantities[i]);
        }
    }

    function burnTokens(uint256[] memory tokenIds) external onlyOwner {
        for (uint i = 0; i < tokenIds.length; i++) {
            _burn(tokenIds[i]);
        }
    }

    function withdraw() public onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transaction Unsuccessful");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"contractBaseURI","type":"string"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"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"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":[],"name":"allowanceMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"burnTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractStatus","outputs":[{"internalType":"enum Commanders.ContractStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"discountRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"discountTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endingPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"}],"name":"generateAllowanceMerkleLeaf","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getMintedQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"number","type":"uint256"}],"name":"getTokenOwned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint64","name":"quantity","type":"uint64"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint64","name":"quantity","type":"uint64"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","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":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePriceHolder","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintTransactionLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setAllowanceMerkleRoot","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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum Commanders.ContractStatus","name":"status","type":"uint8"}],"name":"setContractStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"startPrice","type":"uint256"},{"internalType":"uint256","name":"dcRate","type":"uint256"},{"internalType":"uint256","name":"dcTime","type":"uint256"},{"internalType":"uint256","name":"endPrice","type":"uint256"}],"name":"setPublicAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setTotalMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint64[]","name":"quantities","type":"uint64[]"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"verifyAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a805460ff19169055670138a388a43c0000600d81905566ce0eb154f90000600e55611a0a600f5560056010556362c532f0601155671bc16d674ec8000060125566b1a2bc2ec50000601355610e106014556015553480156200006757600080fd5b5060405162002dc738038062002dc78339810160408190526200008a9162000250565b6040518060400160405280601e81526020017f436f6d6d616e646572732062792050726f6a656374204461726b2045796500008152506040518060400160405280600d81526020016c2222aca2a1a7a6a6a0a72222a960991b81525062000100620000fa6200015660201b60201c565b6200015a565b815162000115906003906020850190620001aa565b5080516200012b906004906020840190620001aa565b506001808155600955505081516200014b90600b906020850190620001aa565b50600c555062000388565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001b89062000335565b90600052602060002090601f016020900481019282620001dc576000855562000227565b82601f10620001f757805160ff191683800117855562000227565b8280016001018555821562000227579182015b82811115620002275782518255916020019190600101906200020a565b506200023592915062000239565b5090565b5b808211156200023557600081556001016200023a565b600080604083850312156200026457600080fd5b82516001600160401b03808211156200027c57600080fd5b818501915085601f8301126200029157600080fd5b815181811115620002a657620002a662000372565b604051601f8201601f19908116603f01168101908382118183101715620002d157620002d162000372565b81604052828152602093508884848701011115620002ee57600080fd5b600091505b82821015620003125784820184015181830185015290830190620002f3565b82821115620003245760008484830101525b969092015195979596505050505050565b600181811c908216806200034a57607f821691505b602082108114156200036c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612a2f80620003986000396000f3fe6080604052600436106102715760003560e01c8063715018a61161014f578063b88d4fde116100c1578063e3518cd31161007a578063e3518cd3146106f2578063e6c0e6d514610712578063e985e9c514610728578063ea1b2a9c14610771578063f2fde38b14610791578063f9fc5eb7146107b157600080fd5b8063b88d4fde1461063f578063c6ee20d21461065f578063c87b56dd14610686578063d60ee4bf146106a6578063d6fbf202146106bc578063da73ff15146106d257600080fd5b80639493e331116101135780639493e3311461059c57806395d89b41146105bc57806398d5fdca146105d1578063a22cb465146105e6578063a2309ff814610606578063b0f37f411461061f57600080fd5b8063715018a61461051d57806385e0832c14610532578063881d603e146105485780638da5cb5b1461056857806390b0e0781461058657600080fd5b806339518b5e116101e857806355f804b3116101ac57806355f804b3146104725780635a67a20d146104925780636352211e146104a857806367a53173146104c85780636c0360eb146104e857806370a08231146104fd57600080fd5b806339518b5e146103f15780633ccfd60b1461040757806342842e0e1461041c5780634b0462fb1461043c5780634e00c8a11461045257600080fd5b80630d1d7ae51161023a5780630d1d7ae51461034b57806311f706ec1461035e57806318160ddd1461037e57806320f037251461039b57806323b872dd146103b1578063280e53f6146103d157600080fd5b80620e7fa81461027657806301ffc9a71461029f57806306fdde03146102cf578063081812fc146102f1578063095ea7b314610329575b600080fd5b34801561028257600080fd5b5061028c600d5481565b6040519081526020015b60405180910390f35b3480156102ab57600080fd5b506102bf6102ba3660046125c8565b6107c4565b6040519015158152602001610296565b3480156102db57600080fd5b506102e4610816565b60405161029691906127a0565b3480156102fd57600080fd5b5061031161030c3660046125af565b6108a8565b6040516001600160a01b039091168152602001610296565b34801561033557600080fd5b506103496103443660046123cf565b6108ec565b005b6103496103593660046126a6565b61097a565b34801561036a57600080fd5b50610349610379366004612602565b610b76565b34801561038a57600080fd5b50600254600154036000190161028c565b3480156103a757600080fd5b5061028c600c5481565b3480156103bd57600080fd5b506103496103cc3660046122dc565b610bc7565b3480156103dd57600080fd5b506103496103ec3660046125af565b610bd2565b3480156103fd57600080fd5b5061028c60115481565b34801561041357600080fd5b50610349610c01565b34801561042857600080fd5b506103496104373660046122dc565b610d23565b34801561044857600080fd5b5061028c600e5481565b34801561045e57600080fd5b5061028c61046d36600461228e565b610d3e565b34801561047e57600080fd5b5061034961048d366004612623565b610d6c565b34801561049e57600080fd5b5061028c60155481565b3480156104b457600080fd5b506103116104c33660046125af565b610dad565b3480156104d457600080fd5b506103496104e3366004612518565b610dbf565b3480156104f457600080fd5b506102e4610e29565b34801561050957600080fd5b5061028c61051836600461228e565b610eb7565b34801561052957600080fd5b50610349610f05565b34801561053e57600080fd5b5061028c600f5481565b34801561055457600080fd5b506103496105633660046125af565b610f3b565b34801561057457600080fd5b506000546001600160a01b0316610311565b34801561059257600080fd5b5061028c60145481565b3480156105a857600080fd5b506103496105b7366004612452565b610fcd565b3480156105c857600080fd5b506102e4611170565b3480156105dd57600080fd5b5061028c61117f565b3480156105f257600080fd5b50610349610601366004612393565b6111eb565b34801561061257600080fd5b506001546000190161028c565b34801561062b57600080fd5b506102bf61063a3660046123f9565b611281565b34801561064b57600080fd5b5061034961065a366004612318565b6112d8565b34801561066b57600080fd5b50600a546106799060ff1681565b6040516102969190612778565b34801561069257600080fd5b506102e46106a13660046125af565b611323565b3480156106b257600080fd5b5061028c60105481565b3480156106c857600080fd5b5061028c60125481565b3480156106de57600080fd5b5061028c6106ed3660046123cf565b6113a8565b3480156106fe57600080fd5b5061034961070d36600461266b565b6113ef565b34801561071e57600080fd5b5061028c60135481565b34801561073457600080fd5b506102bf6107433660046122a9565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561077d57600080fd5b5061028c61078c3660046123cf565b611430565b34801561079d57600080fd5b506103496107ac36600461228e565b6114b0565b6103496107bf3660046126c1565b611548565b60006001600160e01b031982166380ac58cd60e01b14806107f557506001600160e01b03198216635b5e139f60e01b145b8061081057506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610825906128eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610851906128eb565b801561089e5780601f106108735761010080835404028352916020019161089e565b820191906000526020600020905b81548152906001019060200180831161088157829003601f168201915b5050505050905090565b60006108b382611741565b6108d0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006108f782610dad565b9050806001600160a01b0316836001600160a01b0316141561092c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061094c575061094a8133610743565b155b1561096a576040516367d9dca160e11b815260040160405180910390fd5b61097583838361177a565b505050565b3233146109ce5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b6002600a5460ff1660028111156109e7576109e7612981565b14610a345760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206e6f7420617661696c61626c650000000060448201526064016109c5565b806001600160401b0316610a4661117f565b610a509190612889565b341015610a955760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b60448201526064016109c5565b600f54816001600160401b0316610aaf6001546000190190565b610ab9919061283b565b1115610afb5760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820737570706c7960781b60448201526064016109c5565b601054816001600160401b03161115610b605760405162461bcd60e51b815260206004820152602160248201527f4578636565647320616c6c6f776564207472616e73616374696f6e206c696d696044820152601d60fa1b60648201526084016109c5565b610b7333826001600160401b03166117d6565b50565b6000546001600160a01b03163314610ba05760405162461bcd60e51b81526004016109c5906127b3565b600a805482919060ff19166001836002811115610bbf57610bbf612981565b021790555050565b6109758383836117f0565b6000546001600160a01b03163314610bfc5760405162461bcd60e51b81526004016109c5906127b3565b600f55565b6000546001600160a01b03163314610c2b5760405162461bcd60e51b81526004016109c5906127b3565b60026009541415610c7e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109c5565b6002600955604051600090339047908381818185875af1925050503d8060008114610cc5576040519150601f19603f3d011682016040523d82523d6000602084013e610cca565b606091505b5050905080610d1b5760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20556e7375636365737366756c000000000000000060448201526064016109c5565b506001600955565b610975838383604051806020016040528060008152506112d8565b6001600160a01b038116600090815260066020526040812054600160401b90046001600160401b0316610810565b6000546001600160a01b03163314610d965760405162461bcd60e51b81526004016109c5906127b3565b8051610da990600b9060208401906120a7565b5050565b6000610db8826119aa565b5192915050565b6000546001600160a01b03163314610de95760405162461bcd60e51b81526004016109c5906127b3565b60005b8151811015610da957610e17828281518110610e0a57610e0a612997565b6020026020010151611a97565b80610e2181612926565b915050610dec565b600b8054610e36906128eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610e62906128eb565b8015610eaf5780601f10610e8457610100808354040283529160200191610eaf565b820191906000526020600020905b815481529060010190602001808311610e9257829003601f168201915b505050505081565b60006001600160a01b038216610ee0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610f2f5760405162461bcd60e51b81526004016109c5906127b3565b610f396000611aa2565b565b6000546001600160a01b03163314610f655760405162461bcd60e51b81526004016109c5906127b3565b600c54811415610fc85760405162461bcd60e51b815260206004820152602860248201527f6d65726b6c65526f6f74206973207468652073616d652061732070726576696f60448201526775732076616c756560c01b60648201526084016109c5565b600c55565b6000546001600160a01b03163314610ff75760405162461bcd60e51b81526004016109c5906127b3565b805182511461105a5760405162461bcd60e51b815260206004820152602960248201527f61646472657373657320646f6573206e6f74206d6174636820717561746974696044820152680cae640d8cadccee8d60bb1b60648201526084016109c5565b6000805b82518110156110a05782818151811061107957611079612997565b60200260200101518261108c9190612853565b91508061109881612926565b91505061105e565b50600f54816001600160401b03166110bb6001546000190190565b6110c5919061283b565b11156111075760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820737570706c7960781b60448201526064016109c5565b60005b835181101561116a5761115884828151811061112857611128612997565b602002602001015184838151811061114257611142612997565b60200260200101516001600160401b03166117d6565b8061116281612926565b91505061110a565b50505050565b606060048054610825906128eb565b6000601154421015611192575060125490565b6000601454601154426111a591906128a8565b6111af9190612875565b90506000601354826111c19190612889565b6012546111ce91906128a8565b90506015548110156111e2576015546111e4565b805b9250505090565b6001600160a01b0382163314156112155760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006112cd83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c5491506112c8905088886113a8565b611af2565b90505b949350505050565b6112e38484846117f0565b6001600160a01b0383163b15158015611305575061130384848484611b08565b155b1561116a576040516368d2bf6b60e11b815260040160405180910390fd5b606061132e82611741565b61134b57604051630a14c4b560e41b815260040160405180910390fd5b6000611355611bfc565b905080516000141561137657604051806020016040528060008152506113a1565b8061138084611c0b565b60405160200161139192919061270c565b6040516020818303038152906040525b9392505050565b6040516bffffffffffffffffffffffff19606084901b1660208201526034810182905260009060540160405160208183030381529060405280519060200120905092915050565b6000546001600160a01b031633146114195760405162461bcd60e51b81526004016109c5906127b3565b601194909455601292909255601355601455601555565b600080805b600154600019018110156114a5576001600160a01b03851661145b6104c383600161283b565b6001600160a01b031614156114935761147560018361283b565b9150818414156114935761148a81600161283b565b92505050610810565b8061149d81612926565b915050611435565b506000949350505050565b6000546001600160a01b031633146114da5760405162461bcd60e51b81526004016109c5906127b3565b6001600160a01b03811661153f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c5565b610b7381611aa2565b3233146115975760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016109c5565b6001600a5460ff1660028111156115b0576115b0612981565b146115fd5760405162461bcd60e51b815260206004820152601860248201527f50726573616c65202331206e6f7420617661696c61626c65000000000000000060448201526064016109c5565b61160933848484611281565b6116555760405162461bcd60e51b815260206004820152601d60248201527f4661696c656420616c6c6f77616e636520766572696669636174696f6e00000060448201526064016109c5565b336000908152600660205260409020548390611684906001600160401b0387811691600160401b90041661283b565b11156116d25760405162461bcd60e51b815260206004820152601d60248201527f5265717565737420686967686572207468616e20616c6c6f77616e636500000060448201526064016109c5565b836001600160401b0316600e546116e99190612889565b34101561172e5760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b60448201526064016109c5565b61116a33856001600160401b03166117d6565b600081600111158015611755575060015482105b8015610810575050600090815260056020526040902054600160a01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610da9828260405180602001604052806000815250611d08565b60006117fb826119aa565b9050836001600160a01b031681600001516001600160a01b0316146118325760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061185057506118508533610743565b8061186b575033611860846108a8565b6001600160a01b0316145b90508061188b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166118b257604051633a954ecd60e21b815260040160405180910390fd5b6118be6000848761177a565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600590935281842080546001600160a01b03191690911781559187018084529220805491939091166119705760015482146119705780546001600160a01b0319166001600160a01b0389161781555b50505082846001600160a01b0316866001600160a01b03166000805160206129da83398151915260405160405180910390a45b5050505050565b604080518082019091526000808252602082015281806001111580156119d1575060015481105b15611a7e576000818152600560209081526040918290208251808401909352546001600160a01b0381168352600160a01b900460ff161515908201819052611a7c5780516001600160a01b031615611a2a579392505050565b50600019016000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910460ff1615159183019190915215611a77579392505050565b611a2a565b505b604051636f96cda160e11b815260040160405180910390fd5b610b73816000611d15565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600082611aff8584611e9e565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b3d90339089908890889060040161273b565b602060405180830381600087803b158015611b5757600080fd5b505af1925050508015611b87575060408051601f3d908101601f19168201909252611b84918101906125e5565b60015b611be2573d808015611bb5576040519150601f19603f3d011682016040523d82523d6000602084013e611bba565b606091505b508051611bda576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112d0565b6060600b8054610825906128eb565b606081611c2f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c595780611c4381612926565b9150611c529050600a83612875565b9150611c33565b6000816001600160401b03811115611c7357611c736129ad565b6040519080825280601f01601f191660200182016040528015611c9d576020820181803683370190505b5090505b84156112d057611cb26001836128a8565b9150611cbf600a86612941565b611cca90603061283b565b60f81b818381518110611cdf57611cdf612997565b60200101906001600160f81b031916908160001a905350611d01600a86612875565b9450611ca1565b6109758383836001611f12565b6000611d20836119aa565b80519091508215611d86576000336001600160a01b0383161480611d495750611d498233610743565b80611d64575033611d59866108a8565b6001600160a01b0316145b905080611d8457604051632ce44b5f60e11b815260040160405180910390fd5b505b611d926000858361177a565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff19841681178390048216600190810190921690920277ffffffffffffffff0000000000000000ffffffffffffffff199093169091179190911782558a8552600590935281842080546001600160a81b031916909517600160a01b178555918901808452922080549194909116611e65576001548214611e655780546001600160a01b0319166001600160a01b0386161781555b5050604051869250600091506001600160a01b038416906000805160206129da833981519152908390a450506002805460010190555050565b600081815b8451811015611f0a576000858281518110611ec057611ec0612997565b60200260200101519050808311611ee65760008381526020829052604090209250611ef7565b600081815260208490526040902092505b5080611f0281612926565b915050611ea3565b509392505050565b6001546001600160a01b038516611f3b57604051622e076360e81b815260040160405180910390fd5b83611f595760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526006602090815260408083208054600160401b6001600160401b038083168c01811667ffffffffffffffff198416811783900482168d019091169091026fffffffffffffffffffffffffffffffff19909216171790558483526005909152902080546001600160a01b031916909117905580808501838015611ff357506001600160a01b0387163b15155b1561206a575b60405182906001600160a01b038916906000906000805160206129da833981519152908290a46120326000888480600101955088611b08565b61204f576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611ff957826001541461206557600080fd5b61209e565b5b6040516001830192906001600160a01b038916906000906000805160206129da833981519152908290a48082141561206b575b506001556119a3565b8280546120b3906128eb565b90600052602060002090601f0160209004810192826120d5576000855561211b565b82601f106120ee57805160ff191683800117855561211b565b8280016001018555821561211b579182015b8281111561211b578251825591602001919060010190612100565b5061212792915061212b565b5090565b5b80821115612127576000815560010161212c565b60006001600160401b03831115612159576121596129ad565b61216c601f8401601f19166020016127e8565b905082815283838301111561218057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146121ae57600080fd5b919050565b60008083601f8401126121c557600080fd5b5081356001600160401b038111156121dc57600080fd5b6020830191508360208260051b85010111156121f757600080fd5b9250929050565b600082601f83011261220f57600080fd5b8135602061222461221f83612818565b6127e8565b80838252828201915082860187848660051b890101111561224457600080fd5b60005b8581101561226a5761225882612277565b84529284019290840190600101612247565b5090979650505050505050565b80356001600160401b03811681146121ae57600080fd5b6000602082840312156122a057600080fd5b6113a182612197565b600080604083850312156122bc57600080fd5b6122c583612197565b91506122d360208401612197565b90509250929050565b6000806000606084860312156122f157600080fd5b6122fa84612197565b925061230860208501612197565b9150604084013590509250925092565b6000806000806080858703121561232e57600080fd5b61233785612197565b935061234560208601612197565b92506040850135915060608501356001600160401b0381111561236757600080fd5b8501601f8101871361237857600080fd5b61238787823560208401612140565b91505092959194509250565b600080604083850312156123a657600080fd5b6123af83612197565b9150602083013580151581146123c457600080fd5b809150509250929050565b600080604083850312156123e257600080fd5b6123eb83612197565b946020939093013593505050565b6000806000806060858703121561240f57600080fd5b61241885612197565b93506020850135925060408501356001600160401b0381111561243a57600080fd5b612446878288016121b3565b95989497509550505050565b6000806040838503121561246557600080fd5b82356001600160401b038082111561247c57600080fd5b818501915085601f83011261249057600080fd5b813560206124a061221f83612818565b8083825282820191508286018a848660051b89010111156124c057600080fd5b600096505b848710156124ea576124d681612197565b8352600196909601959183019183016124c5565b509650508601359250508082111561250157600080fd5b5061250e858286016121fe565b9150509250929050565b6000602080838503121561252b57600080fd5b82356001600160401b0381111561254157600080fd5b8301601f8101851361255257600080fd5b803561256061221f82612818565b80828252848201915084840188868560051b870101111561258057600080fd5b600094505b838510156125a3578035835260019490940193918501918501612585565b50979650505050505050565b6000602082840312156125c157600080fd5b5035919050565b6000602082840312156125da57600080fd5b81356113a1816129c3565b6000602082840312156125f757600080fd5b81516113a1816129c3565b60006020828403121561261457600080fd5b8135600381106113a157600080fd5b60006020828403121561263557600080fd5b81356001600160401b0381111561264b57600080fd5b8201601f8101841361265c57600080fd5b6112d084823560208401612140565b600080600080600060a0868803121561268357600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b6000602082840312156126b857600080fd5b6113a182612277565b600080600080606085870312156126d757600080fd5b61241885612277565b600081518084526126f88160208601602086016128bf565b601f01601f19169290920160200192915050565b6000835161271e8184602088016128bf565b8351908301906127328183602088016128bf565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061276e908301846126e0565b9695505050505050565b602081016003831061279a57634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006113a160208301846126e0565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715612810576128106129ad565b604052919050565b60006001600160401b03821115612831576128316129ad565b5060051b60200190565b6000821982111561284e5761284e612955565b500190565b60006001600160401b0380831681851680830382111561273257612732612955565b6000826128845761288461296b565b500490565b60008160001904831182151516156128a3576128a3612955565b500290565b6000828210156128ba576128ba612955565b500390565b60005b838110156128da5781810151838201526020016128c2565b8381111561116a5750506000910152565b600181811c908216806128ff57607f821691505b6020821081141561292057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561293a5761293a612955565b5060010190565b6000826129505761295061296b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b7357600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212203bd08f85dff07b1b110052b22b203fc1a525b05682e0cae31fff8496f97e091e64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040ba72bc32bdb47f0b67f3c977be56ae71f3008ffc665f90f881d3c3377dfccbb00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5167467671776578637a467a355a354877614770345838595553726f564367754c457148526e314232427a662f00000000000000000000

Deployed Bytecode

0x6080604052600436106102715760003560e01c8063715018a61161014f578063b88d4fde116100c1578063e3518cd31161007a578063e3518cd3146106f2578063e6c0e6d514610712578063e985e9c514610728578063ea1b2a9c14610771578063f2fde38b14610791578063f9fc5eb7146107b157600080fd5b8063b88d4fde1461063f578063c6ee20d21461065f578063c87b56dd14610686578063d60ee4bf146106a6578063d6fbf202146106bc578063da73ff15146106d257600080fd5b80639493e331116101135780639493e3311461059c57806395d89b41146105bc57806398d5fdca146105d1578063a22cb465146105e6578063a2309ff814610606578063b0f37f411461061f57600080fd5b8063715018a61461051d57806385e0832c14610532578063881d603e146105485780638da5cb5b1461056857806390b0e0781461058657600080fd5b806339518b5e116101e857806355f804b3116101ac57806355f804b3146104725780635a67a20d146104925780636352211e146104a857806367a53173146104c85780636c0360eb146104e857806370a08231146104fd57600080fd5b806339518b5e146103f15780633ccfd60b1461040757806342842e0e1461041c5780634b0462fb1461043c5780634e00c8a11461045257600080fd5b80630d1d7ae51161023a5780630d1d7ae51461034b57806311f706ec1461035e57806318160ddd1461037e57806320f037251461039b57806323b872dd146103b1578063280e53f6146103d157600080fd5b80620e7fa81461027657806301ffc9a71461029f57806306fdde03146102cf578063081812fc146102f1578063095ea7b314610329575b600080fd5b34801561028257600080fd5b5061028c600d5481565b6040519081526020015b60405180910390f35b3480156102ab57600080fd5b506102bf6102ba3660046125c8565b6107c4565b6040519015158152602001610296565b3480156102db57600080fd5b506102e4610816565b60405161029691906127a0565b3480156102fd57600080fd5b5061031161030c3660046125af565b6108a8565b6040516001600160a01b039091168152602001610296565b34801561033557600080fd5b506103496103443660046123cf565b6108ec565b005b6103496103593660046126a6565b61097a565b34801561036a57600080fd5b50610349610379366004612602565b610b76565b34801561038a57600080fd5b50600254600154036000190161028c565b3480156103a757600080fd5b5061028c600c5481565b3480156103bd57600080fd5b506103496103cc3660046122dc565b610bc7565b3480156103dd57600080fd5b506103496103ec3660046125af565b610bd2565b3480156103fd57600080fd5b5061028c60115481565b34801561041357600080fd5b50610349610c01565b34801561042857600080fd5b506103496104373660046122dc565b610d23565b34801561044857600080fd5b5061028c600e5481565b34801561045e57600080fd5b5061028c61046d36600461228e565b610d3e565b34801561047e57600080fd5b5061034961048d366004612623565b610d6c565b34801561049e57600080fd5b5061028c60155481565b3480156104b457600080fd5b506103116104c33660046125af565b610dad565b3480156104d457600080fd5b506103496104e3366004612518565b610dbf565b3480156104f457600080fd5b506102e4610e29565b34801561050957600080fd5b5061028c61051836600461228e565b610eb7565b34801561052957600080fd5b50610349610f05565b34801561053e57600080fd5b5061028c600f5481565b34801561055457600080fd5b506103496105633660046125af565b610f3b565b34801561057457600080fd5b506000546001600160a01b0316610311565b34801561059257600080fd5b5061028c60145481565b3480156105a857600080fd5b506103496105b7366004612452565b610fcd565b3480156105c857600080fd5b506102e4611170565b3480156105dd57600080fd5b5061028c61117f565b3480156105f257600080fd5b50610349610601366004612393565b6111eb565b34801561061257600080fd5b506001546000190161028c565b34801561062b57600080fd5b506102bf61063a3660046123f9565b611281565b34801561064b57600080fd5b5061034961065a366004612318565b6112d8565b34801561066b57600080fd5b50600a546106799060ff1681565b6040516102969190612778565b34801561069257600080fd5b506102e46106a13660046125af565b611323565b3480156106b257600080fd5b5061028c60105481565b3480156106c857600080fd5b5061028c60125481565b3480156106de57600080fd5b5061028c6106ed3660046123cf565b6113a8565b3480156106fe57600080fd5b5061034961070d36600461266b565b6113ef565b34801561071e57600080fd5b5061028c60135481565b34801561073457600080fd5b506102bf6107433660046122a9565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561077d57600080fd5b5061028c61078c3660046123cf565b611430565b34801561079d57600080fd5b506103496107ac36600461228e565b6114b0565b6103496107bf3660046126c1565b611548565b60006001600160e01b031982166380ac58cd60e01b14806107f557506001600160e01b03198216635b5e139f60e01b145b8061081057506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610825906128eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610851906128eb565b801561089e5780601f106108735761010080835404028352916020019161089e565b820191906000526020600020905b81548152906001019060200180831161088157829003601f168201915b5050505050905090565b60006108b382611741565b6108d0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006108f782610dad565b9050806001600160a01b0316836001600160a01b0316141561092c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061094c575061094a8133610743565b155b1561096a576040516367d9dca160e11b815260040160405180910390fd5b61097583838361177a565b505050565b3233146109ce5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b6002600a5460ff1660028111156109e7576109e7612981565b14610a345760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206e6f7420617661696c61626c650000000060448201526064016109c5565b806001600160401b0316610a4661117f565b610a509190612889565b341015610a955760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b60448201526064016109c5565b600f54816001600160401b0316610aaf6001546000190190565b610ab9919061283b565b1115610afb5760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820737570706c7960781b60448201526064016109c5565b601054816001600160401b03161115610b605760405162461bcd60e51b815260206004820152602160248201527f4578636565647320616c6c6f776564207472616e73616374696f6e206c696d696044820152601d60fa1b60648201526084016109c5565b610b7333826001600160401b03166117d6565b50565b6000546001600160a01b03163314610ba05760405162461bcd60e51b81526004016109c5906127b3565b600a805482919060ff19166001836002811115610bbf57610bbf612981565b021790555050565b6109758383836117f0565b6000546001600160a01b03163314610bfc5760405162461bcd60e51b81526004016109c5906127b3565b600f55565b6000546001600160a01b03163314610c2b5760405162461bcd60e51b81526004016109c5906127b3565b60026009541415610c7e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109c5565b6002600955604051600090339047908381818185875af1925050503d8060008114610cc5576040519150601f19603f3d011682016040523d82523d6000602084013e610cca565b606091505b5050905080610d1b5760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20556e7375636365737366756c000000000000000060448201526064016109c5565b506001600955565b610975838383604051806020016040528060008152506112d8565b6001600160a01b038116600090815260066020526040812054600160401b90046001600160401b0316610810565b6000546001600160a01b03163314610d965760405162461bcd60e51b81526004016109c5906127b3565b8051610da990600b9060208401906120a7565b5050565b6000610db8826119aa565b5192915050565b6000546001600160a01b03163314610de95760405162461bcd60e51b81526004016109c5906127b3565b60005b8151811015610da957610e17828281518110610e0a57610e0a612997565b6020026020010151611a97565b80610e2181612926565b915050610dec565b600b8054610e36906128eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610e62906128eb565b8015610eaf5780601f10610e8457610100808354040283529160200191610eaf565b820191906000526020600020905b815481529060010190602001808311610e9257829003601f168201915b505050505081565b60006001600160a01b038216610ee0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610f2f5760405162461bcd60e51b81526004016109c5906127b3565b610f396000611aa2565b565b6000546001600160a01b03163314610f655760405162461bcd60e51b81526004016109c5906127b3565b600c54811415610fc85760405162461bcd60e51b815260206004820152602860248201527f6d65726b6c65526f6f74206973207468652073616d652061732070726576696f60448201526775732076616c756560c01b60648201526084016109c5565b600c55565b6000546001600160a01b03163314610ff75760405162461bcd60e51b81526004016109c5906127b3565b805182511461105a5760405162461bcd60e51b815260206004820152602960248201527f61646472657373657320646f6573206e6f74206d6174636820717561746974696044820152680cae640d8cadccee8d60bb1b60648201526084016109c5565b6000805b82518110156110a05782818151811061107957611079612997565b60200260200101518261108c9190612853565b91508061109881612926565b91505061105e565b50600f54816001600160401b03166110bb6001546000190190565b6110c5919061283b565b11156111075760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820737570706c7960781b60448201526064016109c5565b60005b835181101561116a5761115884828151811061112857611128612997565b602002602001015184838151811061114257611142612997565b60200260200101516001600160401b03166117d6565b8061116281612926565b91505061110a565b50505050565b606060048054610825906128eb565b6000601154421015611192575060125490565b6000601454601154426111a591906128a8565b6111af9190612875565b90506000601354826111c19190612889565b6012546111ce91906128a8565b90506015548110156111e2576015546111e4565b805b9250505090565b6001600160a01b0382163314156112155760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006112cd83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c5491506112c8905088886113a8565b611af2565b90505b949350505050565b6112e38484846117f0565b6001600160a01b0383163b15158015611305575061130384848484611b08565b155b1561116a576040516368d2bf6b60e11b815260040160405180910390fd5b606061132e82611741565b61134b57604051630a14c4b560e41b815260040160405180910390fd5b6000611355611bfc565b905080516000141561137657604051806020016040528060008152506113a1565b8061138084611c0b565b60405160200161139192919061270c565b6040516020818303038152906040525b9392505050565b6040516bffffffffffffffffffffffff19606084901b1660208201526034810182905260009060540160405160208183030381529060405280519060200120905092915050565b6000546001600160a01b031633146114195760405162461bcd60e51b81526004016109c5906127b3565b601194909455601292909255601355601455601555565b600080805b600154600019018110156114a5576001600160a01b03851661145b6104c383600161283b565b6001600160a01b031614156114935761147560018361283b565b9150818414156114935761148a81600161283b565b92505050610810565b8061149d81612926565b915050611435565b506000949350505050565b6000546001600160a01b031633146114da5760405162461bcd60e51b81526004016109c5906127b3565b6001600160a01b03811661153f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c5565b610b7381611aa2565b3233146115975760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016109c5565b6001600a5460ff1660028111156115b0576115b0612981565b146115fd5760405162461bcd60e51b815260206004820152601860248201527f50726573616c65202331206e6f7420617661696c61626c65000000000000000060448201526064016109c5565b61160933848484611281565b6116555760405162461bcd60e51b815260206004820152601d60248201527f4661696c656420616c6c6f77616e636520766572696669636174696f6e00000060448201526064016109c5565b336000908152600660205260409020548390611684906001600160401b0387811691600160401b90041661283b565b11156116d25760405162461bcd60e51b815260206004820152601d60248201527f5265717565737420686967686572207468616e20616c6c6f77616e636500000060448201526064016109c5565b836001600160401b0316600e546116e99190612889565b34101561172e5760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b60448201526064016109c5565b61116a33856001600160401b03166117d6565b600081600111158015611755575060015482105b8015610810575050600090815260056020526040902054600160a01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610da9828260405180602001604052806000815250611d08565b60006117fb826119aa565b9050836001600160a01b031681600001516001600160a01b0316146118325760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061185057506118508533610743565b8061186b575033611860846108a8565b6001600160a01b0316145b90508061188b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166118b257604051633a954ecd60e21b815260040160405180910390fd5b6118be6000848761177a565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600590935281842080546001600160a01b03191690911781559187018084529220805491939091166119705760015482146119705780546001600160a01b0319166001600160a01b0389161781555b50505082846001600160a01b0316866001600160a01b03166000805160206129da83398151915260405160405180910390a45b5050505050565b604080518082019091526000808252602082015281806001111580156119d1575060015481105b15611a7e576000818152600560209081526040918290208251808401909352546001600160a01b0381168352600160a01b900460ff161515908201819052611a7c5780516001600160a01b031615611a2a579392505050565b50600019016000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910460ff1615159183019190915215611a77579392505050565b611a2a565b505b604051636f96cda160e11b815260040160405180910390fd5b610b73816000611d15565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600082611aff8584611e9e565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b3d90339089908890889060040161273b565b602060405180830381600087803b158015611b5757600080fd5b505af1925050508015611b87575060408051601f3d908101601f19168201909252611b84918101906125e5565b60015b611be2573d808015611bb5576040519150601f19603f3d011682016040523d82523d6000602084013e611bba565b606091505b508051611bda576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112d0565b6060600b8054610825906128eb565b606081611c2f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c595780611c4381612926565b9150611c529050600a83612875565b9150611c33565b6000816001600160401b03811115611c7357611c736129ad565b6040519080825280601f01601f191660200182016040528015611c9d576020820181803683370190505b5090505b84156112d057611cb26001836128a8565b9150611cbf600a86612941565b611cca90603061283b565b60f81b818381518110611cdf57611cdf612997565b60200101906001600160f81b031916908160001a905350611d01600a86612875565b9450611ca1565b6109758383836001611f12565b6000611d20836119aa565b80519091508215611d86576000336001600160a01b0383161480611d495750611d498233610743565b80611d64575033611d59866108a8565b6001600160a01b0316145b905080611d8457604051632ce44b5f60e11b815260040160405180910390fd5b505b611d926000858361177a565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff19841681178390048216600190810190921690920277ffffffffffffffff0000000000000000ffffffffffffffff199093169091179190911782558a8552600590935281842080546001600160a81b031916909517600160a01b178555918901808452922080549194909116611e65576001548214611e655780546001600160a01b0319166001600160a01b0386161781555b5050604051869250600091506001600160a01b038416906000805160206129da833981519152908390a450506002805460010190555050565b600081815b8451811015611f0a576000858281518110611ec057611ec0612997565b60200260200101519050808311611ee65760008381526020829052604090209250611ef7565b600081815260208490526040902092505b5080611f0281612926565b915050611ea3565b509392505050565b6001546001600160a01b038516611f3b57604051622e076360e81b815260040160405180910390fd5b83611f595760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526006602090815260408083208054600160401b6001600160401b038083168c01811667ffffffffffffffff198416811783900482168d019091169091026fffffffffffffffffffffffffffffffff19909216171790558483526005909152902080546001600160a01b031916909117905580808501838015611ff357506001600160a01b0387163b15155b1561206a575b60405182906001600160a01b038916906000906000805160206129da833981519152908290a46120326000888480600101955088611b08565b61204f576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611ff957826001541461206557600080fd5b61209e565b5b6040516001830192906001600160a01b038916906000906000805160206129da833981519152908290a48082141561206b575b506001556119a3565b8280546120b3906128eb565b90600052602060002090601f0160209004810192826120d5576000855561211b565b82601f106120ee57805160ff191683800117855561211b565b8280016001018555821561211b579182015b8281111561211b578251825591602001919060010190612100565b5061212792915061212b565b5090565b5b80821115612127576000815560010161212c565b60006001600160401b03831115612159576121596129ad565b61216c601f8401601f19166020016127e8565b905082815283838301111561218057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146121ae57600080fd5b919050565b60008083601f8401126121c557600080fd5b5081356001600160401b038111156121dc57600080fd5b6020830191508360208260051b85010111156121f757600080fd5b9250929050565b600082601f83011261220f57600080fd5b8135602061222461221f83612818565b6127e8565b80838252828201915082860187848660051b890101111561224457600080fd5b60005b8581101561226a5761225882612277565b84529284019290840190600101612247565b5090979650505050505050565b80356001600160401b03811681146121ae57600080fd5b6000602082840312156122a057600080fd5b6113a182612197565b600080604083850312156122bc57600080fd5b6122c583612197565b91506122d360208401612197565b90509250929050565b6000806000606084860312156122f157600080fd5b6122fa84612197565b925061230860208501612197565b9150604084013590509250925092565b6000806000806080858703121561232e57600080fd5b61233785612197565b935061234560208601612197565b92506040850135915060608501356001600160401b0381111561236757600080fd5b8501601f8101871361237857600080fd5b61238787823560208401612140565b91505092959194509250565b600080604083850312156123a657600080fd5b6123af83612197565b9150602083013580151581146123c457600080fd5b809150509250929050565b600080604083850312156123e257600080fd5b6123eb83612197565b946020939093013593505050565b6000806000806060858703121561240f57600080fd5b61241885612197565b93506020850135925060408501356001600160401b0381111561243a57600080fd5b612446878288016121b3565b95989497509550505050565b6000806040838503121561246557600080fd5b82356001600160401b038082111561247c57600080fd5b818501915085601f83011261249057600080fd5b813560206124a061221f83612818565b8083825282820191508286018a848660051b89010111156124c057600080fd5b600096505b848710156124ea576124d681612197565b8352600196909601959183019183016124c5565b509650508601359250508082111561250157600080fd5b5061250e858286016121fe565b9150509250929050565b6000602080838503121561252b57600080fd5b82356001600160401b0381111561254157600080fd5b8301601f8101851361255257600080fd5b803561256061221f82612818565b80828252848201915084840188868560051b870101111561258057600080fd5b600094505b838510156125a3578035835260019490940193918501918501612585565b50979650505050505050565b6000602082840312156125c157600080fd5b5035919050565b6000602082840312156125da57600080fd5b81356113a1816129c3565b6000602082840312156125f757600080fd5b81516113a1816129c3565b60006020828403121561261457600080fd5b8135600381106113a157600080fd5b60006020828403121561263557600080fd5b81356001600160401b0381111561264b57600080fd5b8201601f8101841361265c57600080fd5b6112d084823560208401612140565b600080600080600060a0868803121561268357600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b6000602082840312156126b857600080fd5b6113a182612277565b600080600080606085870312156126d757600080fd5b61241885612277565b600081518084526126f88160208601602086016128bf565b601f01601f19169290920160200192915050565b6000835161271e8184602088016128bf565b8351908301906127328183602088016128bf565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061276e908301846126e0565b9695505050505050565b602081016003831061279a57634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006113a160208301846126e0565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715612810576128106129ad565b604052919050565b60006001600160401b03821115612831576128316129ad565b5060051b60200190565b6000821982111561284e5761284e612955565b500190565b60006001600160401b0380831681851680830382111561273257612732612955565b6000826128845761288461296b565b500490565b60008160001904831182151516156128a3576128a3612955565b500290565b6000828210156128ba576128ba612955565b500390565b60005b838110156128da5781810151838201526020016128c2565b8381111561116a5750506000910152565b600181811c908216806128ff57607f821691505b6020821081141561292057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561293a5761293a612955565b5060010190565b6000826129505761295061296b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b7357600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212203bd08f85dff07b1b110052b22b203fc1a525b05682e0cae31fff8496f97e091e64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000040ba72bc32bdb47f0b67f3c977be56ae71f3008ffc665f90f881d3c3377dfccbb00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5167467671776578637a467a355a354877614770345838595553726f564367754c457148526e314232427a662f00000000000000000000

-----Decoded View---------------
Arg [0] : contractBaseURI (string): ipfs://QmQgFvqwexczFz5Z5HwaGp4X8YUSroVCguLEqHRn1B2Bzf/
Arg [1] : merkleRoot (bytes32): 0xba72bc32bdb47f0b67f3c977be56ae71f3008ffc665f90f881d3c3377dfccbb0

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : ba72bc32bdb47f0b67f3c977be56ae71f3008ffc665f90f881d3c3377dfccbb0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d5167467671776578637a467a355a354877614770345838
Arg [4] : 595553726f564367754c457148526e314232427a662f00000000000000000000


Deployed Bytecode Sourcemap

50237:5514:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50528:41;;;;;;;;;;;;;;;;;;;11679:25:1;;;11667:2;11652:18;50528:41:0;;;;;;;;30113:305;;;;;;;;;;-1:-1:-1;30113:305:0;;;;;:::i;:::-;;:::i;:::-;;;11506:14:1;;11499:22;11481:41;;11469:2;11454:18;30113:305:0;11341:187:1;33310:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34816:204::-;;;;;;;;;;-1:-1:-1;34816:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;10804:32:1;;;10786:51;;10774:2;10759:18;34816:204:0;10640:203:1;34376:374:0;;;;;;;;;;-1:-1:-1;34376:374:0;;;;;:::i;:::-;;:::i;:::-;;51553:466;;;;;;:::i;:::-;;:::i;53939:109::-;;;;;;;;;;-1:-1:-1;53939:109:0;;;;;:::i;:::-;;:::i;29066:303::-;;;;;;;;;;-1:-1:-1;29320:12:0;;51536:1;29304:13;:28;-1:-1:-1;;29304:46:0;29066:303;;50487:34;;;;;;;;;;;;;;;;35681:170;;;;;;;;;;-1:-1:-1;35681:170:0;;;;;:::i;:::-;;:::i;54056:104::-;;;;;;;;;;-1:-1:-1;54056:104:0;;;;;:::i;:::-;;:::i;50728:40::-;;;;;;;;;;;;;;;;55556:192;;;;;;;;;;;;;:::i;35922:185::-;;;;;;;;;;-1:-1:-1;35922:185:0;;;;;:::i;:::-;;:::i;50576:47::-;;;;;;;;;;;;;;;;53396:122;;;;;;;;;;-1:-1:-1;53396:122:0;;;;;:::i;:::-;;:::i;54168:88::-;;;;;;;;;;-1:-1:-1;54168:88:0;;;;;:::i;:::-;;:::i;50908:40::-;;;;;;;;;;;;;;;;33118:125;;;;;;;;;;-1:-1:-1;33118:125:0;;;;;:::i;:::-;;:::i;55376:172::-;;;;;;;;;;-1:-1:-1;55376:172:0;;;;;:::i;:::-;;:::i;50458:22::-;;;;;;;;;;;;;:::i;30482:206::-;;;;;;;;;;-1:-1:-1;30482:206:0;;;;;:::i;:::-;;:::i;49306:103::-;;;;;;;;;;;;;:::i;50630:37::-;;;;;;;;;;;;;;;;54268:216;;;;;;;;;;-1:-1:-1;54268:216:0;;;;;:::i;:::-;;:::i;48655:87::-;;;;;;;;;;-1:-1:-1;48701:7:0;48728:6;-1:-1:-1;;;;;48728:6:0;48655:87;;50867:34;;;;;;;;;;;;;;;;54809:559;;;;;;;;;;-1:-1:-1;54809:559:0;;;;;:::i;:::-;;:::i;33479:104::-;;;;;;;;;;;;;:::i;53002:386::-;;;;;;;;;;;;;:::i;35092:287::-;;;;;;;;;;-1:-1:-1;35092:287:0;;;;;:::i;:::-;;:::i;29377:288::-;;;;;;;;;;-1:-1:-1;51536:1:0;29615:13;-1:-1:-1;;29615:31:0;29377:288;;52571:235;;;;;;;;;;-1:-1:-1;52571:235:0;;;;;:::i;:::-;;:::i;36178:369::-;;;;;;;;;;-1:-1:-1;36178:369:0;;;;;:::i;:::-;;:::i;50389:60::-;;;;;;;;;;-1:-1:-1;50389:60:0;;;;;;;;;;;;;;;:::i;33654:318::-;;;;;;;;;;-1:-1:-1;33654:318:0;;;;;:::i;:::-;;:::i;50674:45::-;;;;;;;;;;;;;;;;50775:38;;;;;;;;;;;;;;;;52814:176;;;;;;;;;;-1:-1:-1;52814:176:0;;;;;:::i;:::-;;:::i;54492:309::-;;;;;;;;;;-1:-1:-1;54492:309:0;;;;;:::i;:::-;;:::i;50820:40::-;;;;;;;;;;;;;;;;35450:164;;;;;;;;;;-1:-1:-1;35450:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35571:25:0;;;35547:4;35571:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35450:164;53526:384;;;;;;;;;;-1:-1:-1;53526:384:0;;;;;:::i;:::-;;:::i;49564:201::-;;;;;;;;;;-1:-1:-1;49564:201:0;;;;;:::i;:::-;;:::i;52027:536::-;;;;;;:::i;:::-;;:::i;30113:305::-;30215:4;-1:-1:-1;;;;;;30252:40:0;;-1:-1:-1;;;30252:40:0;;:105;;-1:-1:-1;;;;;;;30309:48:0;;-1:-1:-1;;;30309:48:0;30252:105;:158;;;-1:-1:-1;;;;;;;;;;13549:40:0;;;30374:36;30232:178;30113:305;-1:-1:-1;;30113:305:0:o;33310:100::-;33364:13;33397:5;33390:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33310:100;:::o;34816:204::-;34884:7;34909:16;34917:7;34909;:16::i;:::-;34904:64;;34934:34;;-1:-1:-1;;;34934:34:0;;;;;;;;;;;34904:64;-1:-1:-1;34988:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34988:24:0;;34816:204::o;34376:374::-;34449:13;34465:27;34484:7;34465:18;:27::i;:::-;34449:43;;34513:5;-1:-1:-1;;;;;34507:11:0;:2;-1:-1:-1;;;;;34507:11:0;;34503:48;;;34527:24;;-1:-1:-1;;;34527:24:0;;;;;;;;;;;34503:48;25482:10;-1:-1:-1;;;;;34568:21:0;;;;;;:63;;-1:-1:-1;34594:37:0;34611:5;25482:10;35450:164;:::i;34594:37::-;34593:38;34568:63;34564:138;;;34655:35;;-1:-1:-1;;;34655:35:0;;;;;;;;;;;34564:138;34714:28;34723:2;34727:7;34736:5;34714:8;:28::i;:::-;34438:312;34376:374;;:::o;51553:466::-;51000:9;51013:10;51000:23;50992:66;;;;-1:-1:-1;;;50992:66:0;;14725:2:1;50992:66:0;;;14707:21:1;14764:2;14744:18;;;14737:30;14803:32;14783:18;;;14776:60;14853:18;;50992:66:0;;;;;;;;;51655:21:::1;51637:14;::::0;::::1;;:39;::::0;::::1;;;;;;:::i;:::-;;51629:80;;;::::0;-1:-1:-1;;;51629:80:0;;15493:2:1;51629:80:0::1;::::0;::::1;15475:21:1::0;15532:2;15512:18;;;15505:30;15571;15551:18;;;15544:58;15619:18;;51629:80:0::1;15291:352:1::0;51629:80:0::1;51755:8;-1:-1:-1::0;;;;;51742:21:0::1;:10;:8;:10::i;:::-;:21;;;;:::i;:::-;51729:9;:34;;51721:66;;;::::0;-1:-1:-1;;;51721:66:0;;16211:2:1;51721:66:0::1;::::0;::::1;16193:21:1::0;16250:2;16230:18;;;16223:30;-1:-1:-1;;;16269:18:1;;;16262:49;16328:18;;51721:66:0::1;16009:343:1::0;51721:66:0::1;51835:15;;51823:8;-1:-1:-1::0;;;;;51806:25:0::1;:14;51536:1:::0;29615:13;-1:-1:-1;;29615:31:0;;29377:288;51806:14:::1;:25;;;;:::i;:::-;:44;;51798:74;;;::::0;-1:-1:-1;;;51798:74:0;;12493:2:1;51798:74:0::1;::::0;::::1;12475:21:1::0;12532:2;12512:18;;;12505:30;-1:-1:-1;;;12551:18:1;;;12544:47;12608:18;;51798:74:0::1;12291:341:1::0;51798:74:0::1;51903:26;;51891:8;-1:-1:-1::0;;;;;51891:38:0::1;;;51883:84;;;::::0;-1:-1:-1;;;51883:84:0;;17272:2:1;51883:84:0::1;::::0;::::1;17254:21:1::0;17311:2;17291:18;;;17284:30;17350:34;17330:18;;;17323:62;-1:-1:-1;;;17401:18:1;;;17394:31;17442:19;;51883:84:0::1;17070:397:1::0;51883:84:0::1;51980:31;51990:10;52002:8;-1:-1:-1::0;;;;;51980:31:0::1;:9;:31::i;:::-;51553:466:::0;:::o;53939:109::-;48701:7;48728:6;-1:-1:-1;;;;;48728:6:0;25482:10;48875:23;48867:68;;;;-1:-1:-1;;;48867:68:0;;;;;;;:::i;:::-;54017:14:::1;:23:::0;;54034:6;;54017:14;-1:-1:-1;;54017:23:0::1;::::0;54034:6;54017:23:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;53939:109:::0;:::o;35681:170::-;35815:28;35825:4;35831:2;35835:7;35815:9;:28::i;54056:104::-;48701:7;48728:6;-1:-1:-1;;;;;48728:6:0;25482:10;48875:23;48867:68;;;;-1:-1:-1;;;48867:68:0;;;;;;;:::i;:::-;54128:15:::1;:24:::0;54056:104::o;55556:192::-;48701:7;48728:6;-1:-1:-1;;;;;48728:6:0;25482:10;48875:23;48867:68;;;;-1:-1:-1;;;48867:68:0;;;;;;;:::i;:::-;23776:1:::1;24374:7;;:19;;24366:63;;;::::0;-1:-1:-1;;;24366:63:0;;16912:2:1;24366:63:0::1;::::0;::::1;16894:21:1::0;16951:2;16931:18;;;16924:30;16990:33;16970:18;;;16963:61;17041:18;;24366:63:0::1;16710:355:1::0;24366:63:0::1;23776:1;24507:7;:18:::0;55636:49:::2;::::0;55618:12:::2;::::0;55636:10:::2;::::0;55659:21:::2;::::0;55618:12;55636:49;55618:12;55636:49;55659:21;55636:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55617:68;;;55704:7;55696:44;;;::::0;-1:-1:-1;;;55696:44:0;;14372:2:1;55696:44:0::2;::::0;::::2;14354:21:1::0;14411:2;14391:18;;;14384:30;14450:26;14430:18;;;14423:54;14494:18;;55696:44:0::2;14170:348:1::0;55696:44:0::2;-1:-1:-1::0;23732:1:0::1;24686:7;:22:::0;55556:192::o;35922:185::-;36060:39;36077:4;36083:2;36087:7;36060:39;;;;;;;;;;;;:16;:39::i;53396:122::-;-1:-1:-1;;;;;30866:19:0;;53461:7;30866:19;;;:12;:19;;;;;:32;-1:-1:-1;;;30866:32:0;;-1:-1:-1;;;;;30866:32:0;53488:22;30770:137;54168:88;48701:7;48728:6;-1:-1:-1;;;;;48728:6:0;25482:10;48875:23;48867:68;;;;-1:-1:-1;;;48867:68:0;;;;;;;:::i;:::-;54235:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;54168:88:::0;:::o;33118:125::-;33182:7;33209:21;33222:7;33209:12;:21::i;:::-;:26;;33118:125;-1:-1:-1;;33118:125:0:o;55376:172::-;48701:7;48728:6;-1:-1:-1;;;;;48728:6:0;25482:10;48875:23;48867:68;;;;-1:-1:-1;;;48867:68:0;;;;;;;:::i;:::-;55458:6:::1;55453:88;55474:8;:15;55470:1;:19;55453:88;;;55511:18;55517:8;55526:1;55517:11;;;;;;;;:::i;:::-;;;;;;;55511:5;:18::i;:::-;55491:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55453:88;;50458:22:::0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30482:206::-;30546:7;-1:-1:-1;;;;;30570:19:0;;30566:60;;30598:28;;-1:-1:-1;;;30598:28:0;;;;;;;;;;;30566:60;-1:-1:-1;;;;;;30652:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30652:27:0;;30482:206::o;49306:103::-;48701:7;48728:6;-1:-1:-1;;;;;48728:6:0;25482:10;48875:23;48867:68;;;;-1:-1:-1;;;48867:68:0;;;;;;;:::i;:::-;49371:30:::1;49398:1;49371:18;:30::i;:::-;49306:103::o:0;54268:216::-;48701:7;48728:6;-1:-1:-1;;;;;48728:6:0;25482:10;48875:23;48867:68;;;;-1:-1:-1;;;48867:68:0;;;;;;;:::i;:::-;54370:19:::1;;54356:10;:33;;54348:85;;;::::0;-1:-1:-1;;;54348:85:0;;15084:2:1;54348:85:0::1;::::0;::::1;15066:21:1::0;15123:2;15103:18;;;15096:30;15162:34;15142:18;;;15135:62;-1:-1:-1;;;15213:18:1;;;15206:38;15261:19;;54348:85:0::1;14882:404:1::0;54348:85:0::1;54444:19;:32:::0;54268:216::o;54809:559::-;48701:7;48728:6;-1:-1:-1;;;;;48728:6:0;25482:10;48875:23;48867:68;;;;-1:-1:-1;;;48867:68:0;;;;;;;:::i;:::-;54941:10:::1;:17;54921:9;:16;:37;54913:91;;;::::0;-1:-1:-1;;;54913:91:0;;13197:2:1;54913:91:0::1;::::0;::::1;13179:21:1::0;13236:2;13216:18;;;13209:30;13275:34;13255:18;;;13248:62;-1:-1:-1;;;13326:18:1;;;13319:39;13375:19;;54913:91:0::1;12995:405:1::0;54913:91:0::1;55015:20;55055:6:::0;55050:102:::1;55071:10;:17;55067:1;:21;55050:102;;;55127:10;55138:1;55127:13;;;;;;;;:::i;:::-;;;;;;;55110:30;;;;;:::i;:::-;::::0;-1:-1:-1;55090:3:0;::::1;::::0;::::1;:::i;:::-;;;;55050:102;;;;55204:15;;55187:13;-1:-1:-1::0;;;;;55170:30:0::1;:14;51536:1:::0;29615:13;-1:-1:-1;;29615:31:0;;29377:288;55170:14:::1;:30;;;;:::i;:::-;:49;;55162:79;;;::::0;-1:-1:-1;;;55162:79:0;;12493:2:1;55162:79:0::1;::::0;::::1;12475:21:1::0;12532:2;12512:18;;;12505:30;-1:-1:-1;;;12551:18:1;;;12544:47;12608:18;;55162:79:0::1;12291:341:1::0;55162:79:0::1;55257:6;55252:109;55273:9;:16;55269:1;:20;55252:109;;;55311:38;55321:9;55331:1;55321:12;;;;;;;;:::i;:::-;;;;;;;55335:10;55346:1;55335:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;55311:38:0::1;:9;:38::i;:::-;55291:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55252:109;;;;54902:466;54809:559:::0;;:::o;33479:104::-;33535:13;33568:7;33561:14;;;;;:::i;53002:386::-;53043:7;53085:12;;53067:15;:30;53063:83;;;-1:-1:-1;53121:13:0;;;53002:386::o;53063:83::-;53156:20;53214:12;;53198;;53180:15;:30;;;;:::i;:::-;53179:47;;;;:::i;:::-;53156:70;;53237:21;53292:12;;53277;:27;;;;:::i;:::-;53261:13;;:43;;;;:::i;:::-;53237:67;;53339:11;;53322:13;:28;;:58;;53369:11;;53322:58;;;53353:13;53322:58;53315:65;;;;53002:386;:::o;35092:287::-;-1:-1:-1;;;;;35191:24:0;;25482:10;35191:24;35187:54;;;35224:17;;-1:-1:-1;;;35224:17:0;;;;;;;;;;;35187:54;25482:10;35254:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35254:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35254:53:0;;;;;;;;;;35323:48;;11481:41:1;;;35254:42:0;;25482:10;35323:48;;11454:18:1;35323:48:0;;;;;;;35092:287;;:::o;52571:235::-;52679:4;52703:95;52722:5;;52703:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52729:19:0;;;-1:-1:-1;52750:47:0;;-1:-1:-1;52778:7:0;52787:9;52750:27;:47::i;:::-;52703:18;:95::i;:::-;52696:102;;52571:235;;;;;;;:::o;36178:369::-;36345:28;36355:4;36361:2;36365:7;36345:9;:28::i;:::-;-1:-1:-1;;;;;36388:13:0;;3652:19;:23;;36388:76;;;;;36408:56;36439:4;36445:2;36449:7;36458:5;36408:30;:56::i;:::-;36407:57;36388:76;36384:156;;;36488:40;;-1:-1:-1;;;36488:40:0;;;;;;;;;;;33654:318;33727:13;33758:16;33766:7;33758;:16::i;:::-;33753:59;;33783:29;;-1:-1:-1;;;33783:29:0;;;;;;;;;;;33753:59;33825:21;33849:10;:8;:10::i;:::-;33825:34;;33883:7;33877:21;33902:1;33877:26;;:87;;;;;;;;;;;;;;;;;33930:7;33939:18;:7;:16;:18::i;:::-;33913:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33877:87;33870:94;33654:318;-1:-1:-1;;;33654:318:0:o;52814:176::-;52945:36;;-1:-1:-1;;9833:2:1;9829:15;;;9825:53;52945:36:0;;;9813:66:1;9895:12;;;9888:28;;;52908:7:0;;9932:12:1;;52945:36:0;;;;;;;;;;;;52935:47;;;;;;52928:54;;52814:176;;;;:::o;54492:309::-;48701:7;48728:6;-1:-1:-1;;;;;48728:6:0;25482:10;48875:23;48867:68;;;;-1:-1:-1;;;48867:68:0;;;;;;;:::i;:::-;54635:12:::1;:24:::0;;;;54670:13:::1;:26:::0;;;;54707:12:::1;:21:::0;54739:12:::1;:21:::0;54771:11:::1;:22:::0;54492:309::o;53526:384::-;53603:7;;;53651:233;51536:1;29615:13;-1:-1:-1;;29615:31:0;53668:1;:17;53651:233;;;-1:-1:-1;;;;;53711:23:0;;:12;53719:3;:1;53721;53719:3;:::i;53711:12::-;-1:-1:-1;;;;;53711:23:0;;53707:166;;;53755:10;53764:1;53755:10;;:::i;:::-;;;53798:5;53788:6;:15;53784:74;;;53835:3;:1;53837;53835:3;:::i;:::-;53828:10;;;;;;53784:74;53687:3;;;;:::i;:::-;;;;53651:233;;;-1:-1:-1;53901:1:0;;53526:384;-1:-1:-1;;;;53526:384:0:o;49564:201::-;48701:7;48728:6;-1:-1:-1;;;;;48728:6:0;25482:10;48875:23;48867:68;;;;-1:-1:-1;;;48867:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49653:22:0;::::1;49645:73;;;::::0;-1:-1:-1;;;49645:73:0;;13607:2:1;49645:73:0::1;::::0;::::1;13589:21:1::0;13646:2;13626:18;;;13619:30;13685:34;13665:18;;;13658:62;-1:-1:-1;;;13736:18:1;;;13729:36;13782:19;;49645:73:0::1;13405:402:1::0;49645:73:0::1;49729:28;49748:8;49729:18;:28::i;52027:536::-:0;51000:9;51013:10;51000:23;50992:66;;;;-1:-1:-1;;;50992:66:0;;14725:2:1;50992:66:0;;;14707:21:1;14764:2;14744:18;;;14737:30;14803:32;14783:18;;;14776:60;14853:18;;50992:66:0;14523:354:1;50992:66:0;52175:22:::1;52157:14;::::0;::::1;;:40;::::0;::::1;;;;;;:::i;:::-;;52149:77;;;::::0;-1:-1:-1;;;52149:77:0;;16559:2:1;52149:77:0::1;::::0;::::1;16541:21:1::0;16598:2;16578:18;;;16571:30;16637:26;16617:18;;;16610:54;16681:18;;52149:77:0::1;16357:348:1::0;52149:77:0::1;52245:45;52261:10;52273:9;52284:5;;52245:15;:45::i;:::-;52237:87;;;::::0;-1:-1:-1;;;52237:87:0;;12839:2:1;52237:87:0::1;::::0;::::1;12821:21:1::0;12878:2;12858:18;;;12851:30;12917:31;12897:18;;;12890:59;12966:18;;52237:87:0::1;12637:353:1::0;52237:87:0::1;52357:10;30831:7:::0;30866:19;;;:12;:19;;;;;:32;52383:9;;52343:36:::1;::::0;-1:-1:-1;;;;;52343:36:0;;::::1;::::0;-1:-1:-1;;;30866:32:0;;;52343:36:::1;:::i;:::-;:49;;52335:91;;;::::0;-1:-1:-1;;;52335:91:0;;14014:2:1;52335:91:0::1;::::0;::::1;13996:21:1::0;14053:2;14033:18;;;14026:30;14092:31;14072:18;;;14065:59;14141:18;;52335:91:0::1;13812:353:1::0;52335:91:0::1;52479:8;-1:-1:-1::0;;;;;52458:29:0::1;:18;;:29;;;;:::i;:::-;52445:9;:42;;52437:74;;;::::0;-1:-1:-1;;;52437:74:0;;16211:2:1;52437:74:0::1;::::0;::::1;16193:21:1::0;16250:2;16230:18;;;16223:30;-1:-1:-1;;;16269:18:1;;;16262:49;16328:18;;52437:74:0::1;16009:343:1::0;52437:74:0::1;52524:31;52534:10;52546:8;-1:-1:-1::0;;;;;52524:31:0::1;:9;:31::i;36802:187::-:0;36859:4;36902:7;51536:1;36883:26;;:53;;;;;36923:13;;36913:7;:23;36883:53;:98;;;;-1:-1:-1;;36954:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36954:27:0;;;;36953:28;;36802:187::o;44609:196::-;44724:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44724:29:0;-1:-1:-1;;;;;44724:29:0;;;;;;;;;44769:28;;44724:24;;44769:28;;;;;;;44609:196;;;:::o;36997:104::-;37066:27;37076:2;37080:8;37066:27;;;;;;;;;;;;:9;:27::i;39834:1989::-;39949:35;39987:21;40000:7;39987:12;:21::i;:::-;39949:59;;40047:4;-1:-1:-1;;;;;40025:26:0;:13;:18;;;-1:-1:-1;;;;;40025:26:0;;40021:67;;40060:28;;-1:-1:-1;;;40060:28:0;;;;;;;;;;;40021:67;40101:22;25482:10;-1:-1:-1;;;;;40127:20:0;;;;:73;;-1:-1:-1;40164:36:0;40181:4;25482:10;35450:164;:::i;40164:36::-;40127:126;;;-1:-1:-1;25482:10:0;40217:20;40229:7;40217:11;:20::i;:::-;-1:-1:-1;;;;;40217:36:0;;40127:126;40101:153;;40272:17;40267:66;;40298:35;;-1:-1:-1;;;40298:35:0;;;;;;;;;;;40267:66;-1:-1:-1;;;;;40348:16:0;;40344:52;;40373:23;;-1:-1:-1;;;40373:23:0;;;;;;;;;;;40344:52;40517:35;40534:1;40538:7;40547:4;40517:8;:35::i;:::-;-1:-1:-1;;;;;40848:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40848:31:0;;;-1:-1:-1;;;;;40848:31:0;;;-1:-1:-1;;40848:31:0;;;;;;;40894:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40894:29:0;;;;;;;;;;;;;40974:20;;;:11;:20;;;;;;41009:18;;-1:-1:-1;;;;;;41009:18:0;;;;;;41301:11;;;41361:24;;;;;41404:13;;40974:20;;41361:24;;41404:13;41400:307;;41614:13;;41599:11;:28;41595:97;;41652:20;;-1:-1:-1;;;;;;41652:20:0;-1:-1:-1;;;;;41652:20:0;;;;;41595:97;40823:895;;;41754:7;41750:2;-1:-1:-1;;;;;41735:27:0;41744:4;-1:-1:-1;;;;;41735:27:0;-1:-1:-1;;;;;;;;;;;41735:27:0;;;;;;;;;41773:42;39938:1885;;39834:1989;;;:::o;31947:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;32058:7:0;;51536:1;32107:23;;:47;;;;;32141:13;;32134:4;:20;32107:47;32103:886;;;32175:31;32209:17;;;:11;:17;;;;;;;;;32175:51;;;;;;;;;-1:-1:-1;;;;;32175:51:0;;;;-1:-1:-1;;;32175:51:0;;;;;;;;;;;;32245:729;;32295:14;;-1:-1:-1;;;;;32295:28:0;;32291:101;;32359:9;31947:1109;-1:-1:-1;;;31947:1109:0:o;32291:101::-;-1:-1:-1;;;32734:6:0;32779:17;;;;:11;:17;;;;;;;;;32767:29;;;;;;;;;-1:-1:-1;;;;;32767:29:0;;;;;-1:-1:-1;;;32767:29:0;;;;;;;;;;;;;;32827:28;32823:109;;32895:9;31947:1109;-1:-1:-1;;;31947:1109:0:o;32823:109::-;32694:261;;;32156:833;32103:886;33017:31;;-1:-1:-1;;;33017:31:0;;;;;;;;;;;41906:89;41966:21;41972:7;41981:5;41966;:21::i;49925:191::-;49999:16;50018:6;;-1:-1:-1;;;;;50035:17:0;;;-1:-1:-1;;;;;;50035:17:0;;;;;;50068:40;;50018:6;;;;;;;50068:40;;49999:16;50068:40;49988:128;49925:191;:::o;20499:190::-;20624:4;20677;20648:25;20661:5;20668:4;20648:12;:25::i;:::-;:33;;20499:190;-1:-1:-1;;;;20499:190:0:o;45297:667::-;45481:72;;-1:-1:-1;;;45481:72:0;;45460:4;;-1:-1:-1;;;;;45481:36:0;;;;;:72;;25482:10;;45532:4;;45538:7;;45547:5;;45481:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45481:72:0;;;;;;;;-1:-1:-1;;45481:72:0;;;;;;;;;;;;:::i;:::-;;;45477:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45715:13:0;;45711:235;;45761:40;;-1:-1:-1;;;45761:40:0;;;;;;;;;;;45711:235;45904:6;45898:13;45889:6;45885:2;45881:15;45874:38;45477:480;-1:-1:-1;;;;;;45600:55:0;-1:-1:-1;;;45600:55:0;;-1:-1:-1;45593:62:0;;51312:112;51376:13;51409:7;51402:14;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;-1:-1:-1;;;;;867:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;37464:163;37587:32;37593:2;37597:8;37607:5;37614:4;37587:5;:32::i;42224:2267::-;42304:35;42342:21;42355:7;42342:12;:21::i;:::-;42391:18;;42304:59;;-1:-1:-1;42422:290:0;;;;42456:22;25482:10;-1:-1:-1;;;;;42482:20:0;;;;:77;;-1:-1:-1;42523:36:0;42540:4;25482:10;35450:164;:::i;42523:36::-;42482:134;;;-1:-1:-1;25482:10:0;42580:20;42592:7;42580:11;:20::i;:::-;-1:-1:-1;;;;;42580:36:0;;42482:134;42456:161;;42639:17;42634:66;;42665:35;;-1:-1:-1;;;42665:35:0;;;;;;;;;;;42634:66;42441:271;42422:290;42840:35;42857:1;42861:7;42870:4;42840:8;:35::i;:::-;-1:-1:-1;;;;;43205:18:0;;;43171:31;43205:18;;;:12;:18;;;;;;;;43238:24;;-1:-1:-1;;;;;;;;;;43238:24:0;;;;;;;;;-1:-1:-1;;43238:24:0;;;;43277:29;;;;;43261:1;43277:29;;;;;;;;;-1:-1:-1;;43277:29:0;;;;;;;;;;;;43439:20;;;:11;:20;;;;;;43474;;-1:-1:-1;;;;;;43509:22:0;;;;-1:-1:-1;;;43509:22:0;;;43801:11;;;43861:24;;;;;43904:13;;43205:18;;43861:24;;43904:13;43900:307;;44114:13;;44099:11;:28;44095:97;;44152:20;;-1:-1:-1;;;;;;44152:20:0;-1:-1:-1;;;;;44152:20:0;;;;;44095:97;-1:-1:-1;;44235:35:0;;44262:7;;-1:-1:-1;44258:1:0;;-1:-1:-1;;;;;;44235:35:0;;;-1:-1:-1;;;;;;;;;;;44235:35:0;44258:1;;44235:35;-1:-1:-1;;44458:12:0;:14;;;;;;-1:-1:-1;;42224:2267:0:o;21050:675::-;21133:7;21176:4;21133:7;21191:497;21215:5;:12;21211:1;:16;21191:497;;;21249:20;21272:5;21278:1;21272:8;;;;;;;;:::i;:::-;;;;;;;21249:31;;21315:12;21299;:28;21295:382;;21801:13;21851:15;;;21887:4;21880:15;;;21934:4;21918:21;;21427:57;;21295:382;;;21801:13;21851:15;;;21887:4;21880:15;;;21934:4;21918:21;;21604:57;;21295:382;-1:-1:-1;21229:3:0;;;;:::i;:::-;;;;21191:497;;;-1:-1:-1;21705:12:0;21050:675;-1:-1:-1;;;21050:675:0:o;37886:1694::-;38048:13;;-1:-1:-1;;;;;38076:16:0;;38072:48;;38101:19;;-1:-1:-1;;;38101:19:0;;;;;;;;;;;38072:48;38135:13;38131:44;;38157:18;;-1:-1:-1;;;38157:18:0;;;;;;;;;;;38131:44;-1:-1:-1;;;;;38526:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;;;38526:44:0;;;;;;;-1:-1:-1;;38526:44:0;;;;38585:49;;;;;;;;;;;;;-1:-1:-1;;38585:49:0;;;;;;;38651:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;38651:35:0;;;;;;38663:12;38767:23;;;38811:4;:23;;;;-1:-1:-1;;;;;;38819:13:0;;3652:19;:23;;38819:15;38807:641;;;38855:314;38886:38;;38911:12;;-1:-1:-1;;;;;38886:38:0;;;38903:1;;-1:-1:-1;;;;;;;;;;;38886:38:0;38903:1;;38886:38;38952:69;38991:1;38995:2;38999:14;;;;;;39015:5;38952:30;:69::i;:::-;38947:174;;39057:40;;-1:-1:-1;;;39057:40:0;;;;;;;;;;;38947:174;39164:3;39148:12;:19;;38855:314;;39250:12;39233:13;;:29;39229:43;;39264:8;;;39229:43;38807:641;;;39313:120;39344:40;;39369:14;;;;;-1:-1:-1;;;;;39344:40:0;;;39361:1;;-1:-1:-1;;;;;;;;;;;39344:40:0;39361:1;;39344:40;39428:3;39412:12;:19;;39313:120;;38807:641;-1:-1:-1;39462:13:0;:28;39512:60;54809:559;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:367::-;666:8;676:6;730:3;723:4;715:6;711:17;707:27;697:55;;748:1;745;738:12;697:55;-1:-1:-1;771:20:1;;-1:-1:-1;;;;;803:30:1;;800:50;;;846:1;843;836:12;800:50;883:4;875:6;871:17;859:29;;943:3;936:4;926:6;923:1;919:14;911:6;907:27;903:38;900:47;897:67;;;960:1;957;950:12;897:67;603:367;;;;;:::o;975:677::-;1028:5;1081:3;1074:4;1066:6;1062:17;1058:27;1048:55;;1099:1;1096;1089:12;1048:55;1135:6;1122:20;1161:4;1185:60;1201:43;1241:2;1201:43;:::i;:::-;1185:60;:::i;:::-;1267:3;1291:2;1286:3;1279:15;1319:2;1314:3;1310:12;1303:19;;1354:2;1346:6;1342:15;1406:3;1401:2;1395;1392:1;1388:10;1380:6;1376:23;1372:32;1369:41;1366:61;;;1423:1;1420;1413:12;1366:61;1445:1;1455:168;1469:2;1466:1;1463:9;1455:168;;;1526:22;1544:3;1526:22;:::i;:::-;1514:35;;1569:12;;;;1601;;;;1487:1;1480:9;1455:168;;;-1:-1:-1;1641:5:1;;975:677;-1:-1:-1;;;;;;;975:677:1:o;1657:171::-;1724:20;;-1:-1:-1;;;;;1773:30:1;;1763:41;;1753:69;;1818:1;1815;1808:12;1833:186;1892:6;1945:2;1933:9;1924:7;1920:23;1916:32;1913:52;;;1961:1;1958;1951:12;1913:52;1984:29;2003:9;1984:29;:::i;2024:260::-;2092:6;2100;2153:2;2141:9;2132:7;2128:23;2124:32;2121:52;;;2169:1;2166;2159:12;2121:52;2192:29;2211:9;2192:29;:::i;:::-;2182:39;;2240:38;2274:2;2263:9;2259:18;2240:38;:::i;:::-;2230:48;;2024:260;;;;;:::o;2289:328::-;2366:6;2374;2382;2435:2;2423:9;2414:7;2410:23;2406:32;2403:52;;;2451:1;2448;2441:12;2403:52;2474:29;2493:9;2474:29;:::i;:::-;2464:39;;2522:38;2556:2;2545:9;2541:18;2522:38;:::i;:::-;2512:48;;2607:2;2596:9;2592:18;2579:32;2569:42;;2289:328;;;;;:::o;2622:666::-;2717:6;2725;2733;2741;2794:3;2782:9;2773:7;2769:23;2765:33;2762:53;;;2811:1;2808;2801:12;2762:53;2834:29;2853:9;2834:29;:::i;:::-;2824:39;;2882:38;2916:2;2905:9;2901:18;2882:38;:::i;:::-;2872:48;;2967:2;2956:9;2952:18;2939:32;2929:42;;3022:2;3011:9;3007:18;2994:32;-1:-1:-1;;;;;3041:6:1;3038:30;3035:50;;;3081:1;3078;3071:12;3035:50;3104:22;;3157:4;3149:13;;3145:27;-1:-1:-1;3135:55:1;;3186:1;3183;3176:12;3135:55;3209:73;3274:7;3269:2;3256:16;3251:2;3247;3243:11;3209:73;:::i;:::-;3199:83;;;2622:666;;;;;;;:::o;3293:347::-;3358:6;3366;3419:2;3407:9;3398:7;3394:23;3390:32;3387:52;;;3435:1;3432;3425:12;3387:52;3458:29;3477:9;3458:29;:::i;:::-;3448:39;;3537:2;3526:9;3522:18;3509:32;3584:5;3577:13;3570:21;3563:5;3560:32;3550:60;;3606:1;3603;3596:12;3550:60;3629:5;3619:15;;;3293:347;;;;;:::o;3645:254::-;3713:6;3721;3774:2;3762:9;3753:7;3749:23;3745:32;3742:52;;;3790:1;3787;3780:12;3742:52;3813:29;3832:9;3813:29;:::i;:::-;3803:39;3889:2;3874:18;;;;3861:32;;-1:-1:-1;;;3645:254:1:o;3904:579::-;4008:6;4016;4024;4032;4085:2;4073:9;4064:7;4060:23;4056:32;4053:52;;;4101:1;4098;4091:12;4053:52;4124:29;4143:9;4124:29;:::i;:::-;4114:39;;4200:2;4189:9;4185:18;4172:32;4162:42;;4255:2;4244:9;4240:18;4227:32;-1:-1:-1;;;;;4274:6:1;4271:30;4268:50;;;4314:1;4311;4304:12;4268:50;4353:70;4415:7;4406:6;4395:9;4391:22;4353:70;:::i;:::-;3904:579;;;;-1:-1:-1;4442:8:1;-1:-1:-1;;;;3904:579:1:o;4488:1155::-;4605:6;4613;4666:2;4654:9;4645:7;4641:23;4637:32;4634:52;;;4682:1;4679;4672:12;4634:52;4722:9;4709:23;-1:-1:-1;;;;;4792:2:1;4784:6;4781:14;4778:34;;;4808:1;4805;4798:12;4778:34;4846:6;4835:9;4831:22;4821:32;;4891:7;4884:4;4880:2;4876:13;4872:27;4862:55;;4913:1;4910;4903:12;4862:55;4949:2;4936:16;4971:4;4995:60;5011:43;5051:2;5011:43;:::i;4995:60::-;5077:3;5101:2;5096:3;5089:15;5129:2;5124:3;5120:12;5113:19;;5160:2;5156;5152:11;5208:7;5203:2;5197;5194:1;5190:10;5186:2;5182:19;5178:28;5175:41;5172:61;;;5229:1;5226;5219:12;5172:61;5251:1;5242:10;;5261:169;5275:2;5272:1;5269:9;5261:169;;;5332:23;5351:3;5332:23;:::i;:::-;5320:36;;5293:1;5286:9;;;;;5376:12;;;;5408;;5261:169;;;-1:-1:-1;5449:5:1;-1:-1:-1;;5492:18:1;;5479:32;;-1:-1:-1;;5523:16:1;;;5520:36;;;5552:1;5549;5542:12;5520:36;;5575:62;5629:7;5618:8;5607:9;5603:24;5575:62;:::i;:::-;5565:72;;;4488:1155;;;;;:::o;5648:902::-;5732:6;5763:2;5806;5794:9;5785:7;5781:23;5777:32;5774:52;;;5822:1;5819;5812:12;5774:52;5862:9;5849:23;-1:-1:-1;;;;;5887:6:1;5884:30;5881:50;;;5927:1;5924;5917:12;5881:50;5950:22;;6003:4;5995:13;;5991:27;-1:-1:-1;5981:55:1;;6032:1;6029;6022:12;5981:55;6068:2;6055:16;6091:60;6107:43;6147:2;6107:43;:::i;6091:60::-;6173:3;6197:2;6192:3;6185:15;6225:2;6220:3;6216:12;6209:19;;6256:2;6252;6248:11;6304:7;6299:2;6293;6290:1;6286:10;6282:2;6278:19;6274:28;6271:41;6268:61;;;6325:1;6322;6315:12;6268:61;6347:1;6338:10;;6357:163;6371:2;6368:1;6365:9;6357:163;;;6428:17;;6416:30;;6389:1;6382:9;;;;;6466:12;;;;6498;;6357:163;;;-1:-1:-1;6539:5:1;5648:902;-1:-1:-1;;;;;;;5648:902:1:o;6555:180::-;6614:6;6667:2;6655:9;6646:7;6642:23;6638:32;6635:52;;;6683:1;6680;6673:12;6635:52;-1:-1:-1;6706:23:1;;6555:180;-1:-1:-1;6555:180:1:o;6740:245::-;6798:6;6851:2;6839:9;6830:7;6826:23;6822:32;6819:52;;;6867:1;6864;6857:12;6819:52;6906:9;6893:23;6925:30;6949:5;6925:30;:::i;6990:249::-;7059:6;7112:2;7100:9;7091:7;7087:23;7083:32;7080:52;;;7128:1;7125;7118:12;7080:52;7160:9;7154:16;7179:30;7203:5;7179:30;:::i;7244:275::-;7322:6;7375:2;7363:9;7354:7;7350:23;7346:32;7343:52;;;7391:1;7388;7381:12;7343:52;7430:9;7417:23;7469:1;7462:5;7459:12;7449:40;;7485:1;7482;7475:12;7524:450;7593:6;7646:2;7634:9;7625:7;7621:23;7617:32;7614:52;;;7662:1;7659;7652:12;7614:52;7702:9;7689:23;-1:-1:-1;;;;;7727:6:1;7724:30;7721:50;;;7767:1;7764;7757:12;7721:50;7790:22;;7843:4;7835:13;;7831:27;-1:-1:-1;7821:55:1;;7872:1;7869;7862:12;7821:55;7895:73;7960:7;7955:2;7942:16;7937:2;7933;7929:11;7895:73;:::i;8164:454::-;8259:6;8267;8275;8283;8291;8344:3;8332:9;8323:7;8319:23;8315:33;8312:53;;;8361:1;8358;8351:12;8312:53;-1:-1:-1;;8384:23:1;;;8454:2;8439:18;;8426:32;;-1:-1:-1;8505:2:1;8490:18;;8477:32;;8556:2;8541:18;;8528:32;;-1:-1:-1;8607:3:1;8592:19;8579:33;;-1:-1:-1;8164:454:1;-1:-1:-1;8164:454:1:o;8623:184::-;8681:6;8734:2;8722:9;8713:7;8709:23;8705:32;8702:52;;;8750:1;8747;8740:12;8702:52;8773:28;8791:9;8773:28;:::i;8812:577::-;8915:6;8923;8931;8939;8992:2;8980:9;8971:7;8967:23;8963:32;8960:52;;;9008:1;9005;8998:12;8960:52;9031:28;9049:9;9031:28;:::i;9394:257::-;9435:3;9473:5;9467:12;9500:6;9495:3;9488:19;9516:63;9572:6;9565:4;9560:3;9556:14;9549:4;9542:5;9538:16;9516:63;:::i;:::-;9633:2;9612:15;-1:-1:-1;;9608:29:1;9599:39;;;;9640:4;9595:50;;9394:257;-1:-1:-1;;9394:257:1:o;9955:470::-;10134:3;10172:6;10166:13;10188:53;10234:6;10229:3;10222:4;10214:6;10210:17;10188:53;:::i;:::-;10304:13;;10263:16;;;;10326:57;10304:13;10263:16;10360:4;10348:17;;10326:57;:::i;:::-;10399:20;;9955:470;-1:-1:-1;;;;9955:470:1:o;10848:488::-;-1:-1:-1;;;;;11117:15:1;;;11099:34;;11169:15;;11164:2;11149:18;;11142:43;11216:2;11201:18;;11194:34;;;11264:3;11259:2;11244:18;;11237:31;;;11042:4;;11285:45;;11310:19;;11302:6;11285:45;:::i;:::-;11277:53;10848:488;-1:-1:-1;;;;;;10848:488:1:o;11715:347::-;11866:2;11851:18;;11899:1;11888:13;;11878:144;;11944:10;11939:3;11935:20;11932:1;11925:31;11979:4;11976:1;11969:15;12007:4;12004:1;11997:15;11878:144;12031:25;;;11715:347;:::o;12067:219::-;12216:2;12205:9;12198:21;12179:4;12236:44;12276:2;12265:9;12261:18;12253:6;12236:44;:::i;15648:356::-;15850:2;15832:21;;;15869:18;;;15862:30;15928:34;15923:2;15908:18;;15901:62;15995:2;15980:18;;15648:356::o;17654:275::-;17725:2;17719:9;17790:2;17771:13;;-1:-1:-1;;17767:27:1;17755:40;;-1:-1:-1;;;;;17810:34:1;;17846:22;;;17807:62;17804:88;;;17872:18;;:::i;:::-;17908:2;17901:22;17654:275;;-1:-1:-1;17654:275:1:o;17934:183::-;17994:4;-1:-1:-1;;;;;18019:6:1;18016:30;18013:56;;;18049:18;;:::i;:::-;-1:-1:-1;18094:1:1;18090:14;18106:4;18086:25;;17934:183::o;18122:128::-;18162:3;18193:1;18189:6;18186:1;18183:13;18180:39;;;18199:18;;:::i;:::-;-1:-1:-1;18235:9:1;;18122:128::o;18255:236::-;18294:3;-1:-1:-1;;;;;18367:2:1;18364:1;18360:10;18397:2;18394:1;18390:10;18428:3;18424:2;18420:12;18415:3;18412:21;18409:47;;;18436:18;;:::i;18496:120::-;18536:1;18562;18552:35;;18567:18;;:::i;:::-;-1:-1:-1;18601:9:1;;18496:120::o;18621:168::-;18661:7;18727:1;18723;18719:6;18715:14;18712:1;18709:21;18704:1;18697:9;18690:17;18686:45;18683:71;;;18734:18;;:::i;:::-;-1:-1:-1;18774:9:1;;18621:168::o;18794:125::-;18834:4;18862:1;18859;18856:8;18853:34;;;18867:18;;:::i;:::-;-1:-1:-1;18904:9:1;;18794:125::o;18924:258::-;18996:1;19006:113;19020:6;19017:1;19014:13;19006:113;;;19096:11;;;19090:18;19077:11;;;19070:39;19042:2;19035:10;19006:113;;;19137:6;19134:1;19131:13;19128:48;;;-1:-1:-1;;19172:1:1;19154:16;;19147:27;18924:258::o;19187:380::-;19266:1;19262:12;;;;19309;;;19330:61;;19384:4;19376:6;19372:17;19362:27;;19330:61;19437:2;19429:6;19426:14;19406:18;19403:38;19400:161;;;19483:10;19478:3;19474:20;19471:1;19464:31;19518:4;19515:1;19508:15;19546:4;19543:1;19536:15;19400:161;;19187:380;;;:::o;19572:135::-;19611:3;-1:-1:-1;;19632:17:1;;19629:43;;;19652:18;;:::i;:::-;-1:-1:-1;19699:1:1;19688:13;;19572:135::o;19712:112::-;19744:1;19770;19760:35;;19775:18;;:::i;:::-;-1:-1:-1;19809:9:1;;19712:112::o;19829:127::-;19890:10;19885:3;19881:20;19878:1;19871:31;19921:4;19918:1;19911:15;19945:4;19942:1;19935:15;19961:127;20022:10;20017:3;20013:20;20010:1;20003:31;20053:4;20050:1;20043:15;20077:4;20074:1;20067:15;20093:127;20154:10;20149:3;20145:20;20142:1;20135:31;20185:4;20182:1;20175:15;20209:4;20206:1;20199:15;20225:127;20286:10;20281:3;20277:20;20274:1;20267:31;20317:4;20314:1;20307:15;20341:4;20338:1;20331:15;20357:127;20418:10;20413:3;20409:20;20406:1;20399:31;20449:4;20446:1;20439:15;20473:4;20470:1;20463:15;20489:131;-1:-1:-1;;;;;;20563:32:1;;20553:43;;20543:71;;20610:1;20607;20600:12

Swarm Source

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