ETH Price: $2,601.88 (-2.44%)
Gas: 1 Gwei

Token

Den Of Dragons (DOD)
 

Overview

Max Total Supply

192 DOD

Holders

98

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 DOD
0x8B77edDCa6A168D90f456BE6b8E00877D4fd6048
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:
DenofDragons

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-02-16
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

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

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/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: @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/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. 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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/merkle final.sol



//  $$$$$$$\                             $$$$$$\   $$$$$$\        $$$$$$$\                                                             
//  $$  __$$\                           $$  __$$\ $$  __$$\       $$  __$$\                                                            
//  $$ |  $$ | $$$$$$\  $$$$$$$\        $$ /  $$ |$$ /  \__|      $$ |  $$ | $$$$$$\  $$$$$$\   $$$$$$\   $$$$$$\  $$$$$$$\   $$$$$$$\ 
//  $$ |  $$ |$$  __$$\ $$  __$$\       $$ |  $$ |$$$$\           $$ |  $$ |$$  __$$\ \____$$\ $$  __$$\ $$  __$$\ $$  __$$\ $$  _____|
//  $$ |  $$ |$$$$$$$$ |$$ |  $$ |      $$ |  $$ |$$  _|          $$ |  $$ |$$ |  \__|$$$$$$$ |$$ /  $$ |$$ /  $$ |$$ |  $$ |\$$$$$$\  
//  $$ |  $$ |$$   ____|$$ |  $$ |      $$ |  $$ |$$ |            $$ |  $$ |$$ |     $$  __$$ |$$ |  $$ |$$ |  $$ |$$ |  $$ | \____$$\ 
//  $$$$$$$  |\$$$$$$$\ $$ |  $$ |       $$$$$$  |$$ |            $$$$$$$  |$$ |     \$$$$$$$ |\$$$$$$$ |\$$$$$$  |$$ |  $$ |$$$$$$$  |
//  \_______/  \_______|\__|  \__|       \______/ \__|            \_______/ \__|      \_______| \____$$ | \______/ \__|  \__|\_______/ 
//                                                                                             $$\   $$ |                              
//                                                                                             \$$$$$$  |                              
//                                                                                              \______/                               

pragma solidity >=0.7.0 <0.9.0;






contract DenofDragons is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;

  bytes32 public root = 0x62b7022dfe3a9014ea1aa2771a1f9dc6ee683f3a1ce497bc4b06b9d30c06c8ea;
  
  uint256 public cost = 0.07 ether;
  uint256 public maxSupply = 7777;
  uint256 public maxMintAmountPerTx = 20;

  bool public paused = false;
  bool public revealed = false;

  //mapping variables checking if already claimed
    mapping(address => bool) public whitelistClaimed ;
  //bool checking openTo  public
  bool public OpenToPublic = false; 

  uint256 public maxPresaleMintAmount = 5;

  constructor() ERC721("Den Of Dragons", "DOD") {
    setHiddenMetadataUri("ipfs://QmcTLLrdfagp4aLBmRu7Y3Ydkbcw4hino1SPKh5ZD7MZzp/1.json");
  }

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

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

 function changeMerkleROOT(bytes32 _merkleRoot) public onlyOwner {
     root = _merkleRoot;
 }

 /*if OpenToPublic = true, merkleproof=[] and amount = _mintAmount
 *else merkleproof= proof sent to client
 *client can claim one time
 */
  function mint(bytes32[] calldata _merkleProof, uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");

     //Don't allow minting if presale is set and buyer is not in whitelisted map
    if (OpenToPublic) {
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    _mintLoop(msg.sender, _mintAmount);
    }else{ 
        require(_mintAmount <= maxPresaleMintAmount, "Amount exceeded");
        whitelistMint(_merkleProof,msg.sender);
        require(msg.value >= cost * _mintAmount, "Insufficient funds!");
        _mintLoop(msg.sender, _mintAmount);
    }
  }

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

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

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

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

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

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

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

    function setOpenToPublic(bool _open) public onlyOwner {
      OpenToPublic = _open;
  }

  function setMaxPresaleMintAmount(uint256 _max) public onlyOwner {
      maxPresaleMintAmount = _max;
  }


    function whitelistMint(bytes32[] calldata _merkleProof, address _from) internal   {

    require(!whitelistClaimed[_from], "address has already claimed");
    //check if account is in whitelist
    bytes32 leaf=  keccak256(abi.encodePacked(_from));
    require(MerkleProof.verify(_merkleProof ,root ,leaf ),"Not Whitelisted");
    //mark address as having claimed their token 
        whitelistClaimed[_from]= true ;    
    }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

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

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OpenToPublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"changeMerkleROOT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPresaleMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPresaleMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_open","type":"bool"}],"name":"setOpenToPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b9160089162000229565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a9160099162000229565b507f62b7022dfe3a9014ea1aa2771a1f9dc6ee683f3a1ce497bc4b06b9d30c06c8ea600b5566f8b0a10e470000600c55611e61600d556014600e55600f805461ffff191690556011805460ff191690556005601255348015620000ac57600080fd5b50604080518082018252600e81526d44656e204f6620447261676f6e7360901b6020808301918252835180850190945260038452621113d160ea1b908401528151919291620000fe9160009162000229565b5080516200011490600190602084019062000229565b505050620001316200012b6200015b60201b60201c565b6200015f565b620001556040518060600160405280603c815260200162002aa4603c9139620001b1565b6200030c565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620002105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200022590600a90602084019062000229565b5050565b8280546200023790620002cf565b90600052602060002090601f0160209004810192826200025b5760008555620002a6565b82601f106200027657805160ff1916838001178555620002a6565b82800160010185558215620002a6579182015b82811115620002a657825182559160200191906001019062000289565b50620002b4929150620002b8565b5090565b5b80821115620002b45760008155600101620002b9565b600181811c90821680620002e457607f821691505b602082108114156200030657634e487b7160e01b600052602260045260246000fd5b50919050565b612788806200031c6000396000f3fe60806040526004361061025c5760003560e01c806370a0823111610144578063b071401b116100b6578063db4bec441161007a578063db4bec44146106bc578063e0a80853146106ec578063e985e9c51461070c578063ebf0c71714610755578063efbd73f41461076b578063f2fde38b1461078b57600080fd5b8063b071401b14610626578063b88d4fde14610646578063c87b56dd14610666578063d5abeb0114610686578063d76fd2201461069c57600080fd5b80638da5cb5b116101085780638da5cb5b1461058857806394354fd0146105a657806395d89b41146105bc578063a22cb465146105d1578063a43baa3d146105f1578063a45ba8e71461061157600080fd5b806370a0823114610503578063715018a6146105235780637e24532c146105385780637ec4a65914610552578063854807561461057257600080fd5b806342842e0e116101dd57806351830227116101a157806351830227146104605780635503a0e81461047f57806356dca766146104945780635c975abb146104b457806362b99ad4146104ce5780636352211e146104e357600080fd5b806342842e0e146103c0578063438b6300146103e057806344a0d68a1461040d57806345de0d9b1461042d5780634fdd43cb1461044057600080fd5b806316ba10e01161022457806316ba10e01461033657806316c38b3c1461035657806318160ddd1461037657806323b872dd1461038b5780633ccfd60b146103ab57600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f057806313faede614610312575b600080fd5b34801561026d57600080fd5b5061028161027c3660046122ea565b6107ab565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107fd565b60405161028d9190612501565b3480156102c457600080fd5b506102d86102d33660046122d1565b61088f565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b366004612211565b610929565b005b34801561031e57600080fd5b50610328600c5481565b60405190815260200161028d565b34801561034257600080fd5b50610310610351366004612324565b610a3f565b34801561036257600080fd5b506103106103713660046122b6565b610a80565b34801561038257600080fd5b50610328610abd565b34801561039757600080fd5b506103106103a636600461212f565b610acd565b3480156103b757600080fd5b50610310610afe565b3480156103cc57600080fd5b506103106103db36600461212f565b610b9c565b3480156103ec57600080fd5b506104006103fb3660046120e1565b610bb7565b60405161028d91906124bd565b34801561041957600080fd5b506103106104283660046122d1565b610c98565b61031061043b36600461223b565b610cc7565b34801561044c57600080fd5b5061031061045b366004612324565b610eeb565b34801561046c57600080fd5b50600f5461028190610100900460ff1681565b34801561048b57600080fd5b506102ab610f28565b3480156104a057600080fd5b506103106104af3660046122d1565b610fb6565b3480156104c057600080fd5b50600f546102819060ff1681565b3480156104da57600080fd5b506102ab610fe5565b3480156104ef57600080fd5b506102d86104fe3660046122d1565b610ff2565b34801561050f57600080fd5b5061032861051e3660046120e1565b611069565b34801561052f57600080fd5b506103106110f0565b34801561054457600080fd5b506011546102819060ff1681565b34801561055e57600080fd5b5061031061056d366004612324565b611126565b34801561057e57600080fd5b5061032860125481565b34801561059457600080fd5b506006546001600160a01b03166102d8565b3480156105b257600080fd5b50610328600e5481565b3480156105c857600080fd5b506102ab611163565b3480156105dd57600080fd5b506103106105ec3660046121e7565b611172565b3480156105fd57600080fd5b5061031061060c3660046122b6565b61117d565b34801561061d57600080fd5b506102ab6111ba565b34801561063257600080fd5b506103106106413660046122d1565b6111c7565b34801561065257600080fd5b5061031061066136600461216b565b6111f6565b34801561067257600080fd5b506102ab6106813660046122d1565b611228565b34801561069257600080fd5b50610328600d5481565b3480156106a857600080fd5b506103106106b73660046122d1565b6113a7565b3480156106c857600080fd5b506102816106d73660046120e1565b60106020526000908152604090205460ff1681565b3480156106f857600080fd5b506103106107073660046122b6565b6113d6565b34801561071857600080fd5b506102816107273660046120fc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561076157600080fd5b50610328600b5481565b34801561077757600080fd5b5061031061078636600461236d565b61141a565b34801561079757600080fd5b506103106107a63660046120e1565b611500565b60006001600160e01b031982166380ac58cd60e01b14806107dc57506001600160e01b03198216635b5e139f60e01b145b806107f757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461080c9061267a565b80601f01602080910402602001604051908101604052809291908181526020018280546108389061267a565b80156108855780601f1061085a57610100808354040283529160200191610885565b820191906000526020600020905b81548152906001019060200180831161086857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661090d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061093482610ff2565b9050806001600160a01b0316836001600160a01b031614156109a25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610904565b336001600160a01b03821614806109be57506109be8133610727565b610a305760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610904565b610a3a8383611598565b505050565b6006546001600160a01b03163314610a695760405162461bcd60e51b815260040161090490612566565b8051610a7c906009906020840190611fa6565b5050565b6006546001600160a01b03163314610aaa5760405162461bcd60e51b815260040161090490612566565b600f805460ff1916911515919091179055565b6000610ac860075490565b905090565b610ad73382611606565b610af35760405162461bcd60e51b81526004016109049061259b565b610a3a8383836116fd565b6006546001600160a01b03163314610b285760405162461bcd60e51b815260040161090490612566565b6000610b3c6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b86576040519150601f19603f3d011682016040523d82523d6000602084013e610b8b565b606091505b5050905080610b9957600080fd5b50565b610a3a838383604051806020016040528060008152506111f6565b60606000610bc483611069565b905060008167ffffffffffffffff811115610be157610be1612726565b604051908082528060200260200182016040528015610c0a578160200160208202803683370190505b509050600160005b8381108015610c235750600d548211155b15610c8e576000610c3383610ff2565b9050866001600160a01b0316816001600160a01b03161415610c7b5782848381518110610c6257610c62612710565b602090810291909101015281610c77816126b5565b9250505b82610c85816126b5565b93505050610c12565b5090949350505050565b6006546001600160a01b03163314610cc25760405162461bcd60e51b815260040161090490612566565b600c55565b80600081118015610cda5750600e548111155b610d1d5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610904565b600d5481610d2a60075490565b610d3491906125ec565b1115610d795760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610904565b600f5460ff1615610dcc5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610904565b60115460ff1615610e395781600c54610de59190612618565b341015610e2a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610904565b610e343383611899565b610ee5565b601254821115610e7d5760405162461bcd60e51b815260206004820152600f60248201526e105b5bdd5b9d08195e18d959591959608a1b6044820152606401610904565b610e888484336118d6565b81600c54610e969190612618565b341015610edb5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610904565b610ee53383611899565b50505050565b6006546001600160a01b03163314610f155760405162461bcd60e51b815260040161090490612566565b8051610a7c90600a906020840190611fa6565b60098054610f359061267a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f619061267a565b8015610fae5780601f10610f8357610100808354040283529160200191610fae565b820191906000526020600020905b815481529060010190602001808311610f9157829003601f168201915b505050505081565b6006546001600160a01b03163314610fe05760405162461bcd60e51b815260040161090490612566565b600b55565b60088054610f359061267a565b6000818152600260205260408120546001600160a01b0316806107f75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610904565b60006001600160a01b0382166110d45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610904565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461111a5760405162461bcd60e51b815260040161090490612566565b6111246000611a1f565b565b6006546001600160a01b031633146111505760405162461bcd60e51b815260040161090490612566565b8051610a7c906008906020840190611fa6565b60606001805461080c9061267a565b610a7c338383611a71565b6006546001600160a01b031633146111a75760405162461bcd60e51b815260040161090490612566565b6011805460ff1916911515919091179055565b600a8054610f359061267a565b6006546001600160a01b031633146111f15760405162461bcd60e51b815260040161090490612566565b600e55565b6112003383611606565b61121c5760405162461bcd60e51b81526004016109049061259b565b610ee584848484611b40565b6000818152600260205260409020546060906001600160a01b03166112a75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610904565b600f54610100900460ff1661134857600a80546112c39061267a565b80601f01602080910402602001604051908101604052809291908181526020018280546112ef9061267a565b801561133c5780601f106113115761010080835404028352916020019161133c565b820191906000526020600020905b81548152906001019060200180831161131f57829003601f168201915b50505050509050919050565b6000611352611b73565b9050600081511161137257604051806020016040528060008152506113a0565b8061137c84611b82565b6009604051602001611390939291906123bc565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146113d15760405162461bcd60e51b815260040161090490612566565b601255565b6006546001600160a01b031633146114005760405162461bcd60e51b815260040161090490612566565b600f80549115156101000261ff0019909216919091179055565b8160008111801561142d5750600e548111155b6114705760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610904565b600d548161147d60075490565b61148791906125ec565b11156114cc5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610904565b6006546001600160a01b031633146114f65760405162461bcd60e51b815260040161090490612566565b610a3a8284611899565b6006546001600160a01b0316331461152a5760405162461bcd60e51b815260040161090490612566565b6001600160a01b03811661158f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610904565b610b9981611a1f565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115cd82610ff2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661167f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610904565b600061168a83610ff2565b9050806001600160a01b0316846001600160a01b031614806116c55750836001600160a01b03166116ba8461088f565b6001600160a01b0316145b806116f557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661171082610ff2565b6001600160a01b0316146117745760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610904565b6001600160a01b0382166117d65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610904565b6117e1600082611598565b6001600160a01b038316600090815260036020526040812080546001929061180a908490612637565b90915550506001600160a01b03821660009081526003602052604081208054600192906118389084906125ec565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b81811015610a3a576118b2600780546001019055565b6118c4836118bf60075490565b611c80565b806118ce816126b5565b91505061189c565b6001600160a01b03811660009081526010602052604090205460ff161561193f5760405162461bcd60e51b815260206004820152601b60248201527f616464726573732068617320616c726561647920636c61696d656400000000006044820152606401610904565b6040516bffffffffffffffffffffffff19606083901b1660208201526000906034016040516020818303038152906040528051906020012090506119ba84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b549150849050611c9a565b6119f85760405162461bcd60e51b815260206004820152600f60248201526e139bdd0815da1a5d195b1a5cdd1959608a1b6044820152606401610904565b506001600160a01b03166000908152601060205260409020805460ff191660011790555050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611ad35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610904565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b4b8484846116fd565b611b5784848484611cb0565b610ee55760405162461bcd60e51b815260040161090490612514565b60606008805461080c9061267a565b606081611ba65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bd05780611bba816126b5565b9150611bc99050600a83612604565b9150611baa565b60008167ffffffffffffffff811115611beb57611beb612726565b6040519080825280601f01601f191660200182016040528015611c15576020820181803683370190505b5090505b84156116f557611c2a600183612637565b9150611c37600a866126d0565b611c429060306125ec565b60f81b818381518110611c5757611c57612710565b60200101906001600160f81b031916908160001a905350611c79600a86612604565b9450611c19565b610a7c828260405180602001604052806000815250611dbd565b600082611ca78584611df0565b14949350505050565b60006001600160a01b0384163b15611db257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cf4903390899088908890600401612480565b602060405180830381600087803b158015611d0e57600080fd5b505af1925050508015611d3e575060408051601f3d908101601f19168201909252611d3b91810190612307565b60015b611d98573d808015611d6c576040519150601f19603f3d011682016040523d82523d6000602084013e611d71565b606091505b508051611d905760405162461bcd60e51b815260040161090490612514565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116f5565b506001949350505050565b611dc78383611e64565b611dd46000848484611cb0565b610a3a5760405162461bcd60e51b815260040161090490612514565b600081815b8451811015611e5c576000858281518110611e1257611e12612710565b60200260200101519050808311611e385760008381526020829052604090209250611e49565b600081815260208490526040902092505b5080611e54816126b5565b915050611df5565b509392505050565b6001600160a01b038216611eba5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610904565b6000818152600260205260409020546001600160a01b031615611f1f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610904565b6001600160a01b0382166000908152600360205260408120805460019290611f489084906125ec565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fb29061267a565b90600052602060002090601f016020900481019282611fd4576000855561201a565b82601f10611fed57805160ff191683800117855561201a565b8280016001018555821561201a579182015b8281111561201a578251825591602001919060010190611fff565b5061202692915061202a565b5090565b5b80821115612026576000815560010161202b565b600067ffffffffffffffff8084111561205a5761205a612726565b604051601f8501601f19908116603f0116810190828211818310171561208257612082612726565b8160405280935085815286868601111561209b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146120cc57600080fd5b919050565b803580151581146120cc57600080fd5b6000602082840312156120f357600080fd5b6113a0826120b5565b6000806040838503121561210f57600080fd5b612118836120b5565b9150612126602084016120b5565b90509250929050565b60008060006060848603121561214457600080fd5b61214d846120b5565b925061215b602085016120b5565b9150604084013590509250925092565b6000806000806080858703121561218157600080fd5b61218a856120b5565b9350612198602086016120b5565b925060408501359150606085013567ffffffffffffffff8111156121bb57600080fd5b8501601f810187136121cc57600080fd5b6121db8782356020840161203f565b91505092959194509250565b600080604083850312156121fa57600080fd5b612203836120b5565b9150612126602084016120d1565b6000806040838503121561222457600080fd5b61222d836120b5565b946020939093013593505050565b60008060006040848603121561225057600080fd5b833567ffffffffffffffff8082111561226857600080fd5b818601915086601f83011261227c57600080fd5b81358181111561228b57600080fd5b8760208260051b85010111156122a057600080fd5b6020928301989097509590910135949350505050565b6000602082840312156122c857600080fd5b6113a0826120d1565b6000602082840312156122e357600080fd5b5035919050565b6000602082840312156122fc57600080fd5b81356113a08161273c565b60006020828403121561231957600080fd5b81516113a08161273c565b60006020828403121561233657600080fd5b813567ffffffffffffffff81111561234d57600080fd5b8201601f8101841361235e57600080fd5b6116f58482356020840161203f565b6000806040838503121561238057600080fd5b82359150612126602084016120b5565b600081518084526123a881602086016020860161264e565b601f01601f19169290920160200192915050565b6000845160206123cf8285838a0161264e565b8551918401916123e28184848a0161264e565b8554920191600090600181811c90808316806123ff57607f831692505b85831081141561241d57634e487b7160e01b85526022600452602485fd5b80801561243157600181146124425761246f565b60ff1985168852838801955061246f565b60008b81526020902060005b858110156124675781548a82015290840190880161244e565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124b390830184612390565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156124f5578351835292840192918401916001016124d9565b50909695505050505050565b6020815260006113a06020830184612390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156125ff576125ff6126e4565b500190565b600082612613576126136126fa565b500490565b6000816000190483118215151615612632576126326126e4565b500290565b600082821015612649576126496126e4565b500390565b60005b83811015612669578181015183820152602001612651565b83811115610ee55750506000910152565b600181811c9082168061268e57607f821691505b602082108114156126af57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126c9576126c96126e4565b5060010190565b6000826126df576126df6126fa565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b9957600080fdfea2646970667358221220dbe85f16dc48437a719f1f4b42e624b7886d066a476f283e6aab4ca84c977f5464736f6c63430008070033697066733a2f2f516d63544c4c72646661677034614c426d527537593359646b6263773468696e6f3153504b68355a44374d5a7a702f312e6a736f6e

Deployed Bytecode

0x60806040526004361061025c5760003560e01c806370a0823111610144578063b071401b116100b6578063db4bec441161007a578063db4bec44146106bc578063e0a80853146106ec578063e985e9c51461070c578063ebf0c71714610755578063efbd73f41461076b578063f2fde38b1461078b57600080fd5b8063b071401b14610626578063b88d4fde14610646578063c87b56dd14610666578063d5abeb0114610686578063d76fd2201461069c57600080fd5b80638da5cb5b116101085780638da5cb5b1461058857806394354fd0146105a657806395d89b41146105bc578063a22cb465146105d1578063a43baa3d146105f1578063a45ba8e71461061157600080fd5b806370a0823114610503578063715018a6146105235780637e24532c146105385780637ec4a65914610552578063854807561461057257600080fd5b806342842e0e116101dd57806351830227116101a157806351830227146104605780635503a0e81461047f57806356dca766146104945780635c975abb146104b457806362b99ad4146104ce5780636352211e146104e357600080fd5b806342842e0e146103c0578063438b6300146103e057806344a0d68a1461040d57806345de0d9b1461042d5780634fdd43cb1461044057600080fd5b806316ba10e01161022457806316ba10e01461033657806316c38b3c1461035657806318160ddd1461037657806323b872dd1461038b5780633ccfd60b146103ab57600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f057806313faede614610312575b600080fd5b34801561026d57600080fd5b5061028161027c3660046122ea565b6107ab565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107fd565b60405161028d9190612501565b3480156102c457600080fd5b506102d86102d33660046122d1565b61088f565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b366004612211565b610929565b005b34801561031e57600080fd5b50610328600c5481565b60405190815260200161028d565b34801561034257600080fd5b50610310610351366004612324565b610a3f565b34801561036257600080fd5b506103106103713660046122b6565b610a80565b34801561038257600080fd5b50610328610abd565b34801561039757600080fd5b506103106103a636600461212f565b610acd565b3480156103b757600080fd5b50610310610afe565b3480156103cc57600080fd5b506103106103db36600461212f565b610b9c565b3480156103ec57600080fd5b506104006103fb3660046120e1565b610bb7565b60405161028d91906124bd565b34801561041957600080fd5b506103106104283660046122d1565b610c98565b61031061043b36600461223b565b610cc7565b34801561044c57600080fd5b5061031061045b366004612324565b610eeb565b34801561046c57600080fd5b50600f5461028190610100900460ff1681565b34801561048b57600080fd5b506102ab610f28565b3480156104a057600080fd5b506103106104af3660046122d1565b610fb6565b3480156104c057600080fd5b50600f546102819060ff1681565b3480156104da57600080fd5b506102ab610fe5565b3480156104ef57600080fd5b506102d86104fe3660046122d1565b610ff2565b34801561050f57600080fd5b5061032861051e3660046120e1565b611069565b34801561052f57600080fd5b506103106110f0565b34801561054457600080fd5b506011546102819060ff1681565b34801561055e57600080fd5b5061031061056d366004612324565b611126565b34801561057e57600080fd5b5061032860125481565b34801561059457600080fd5b506006546001600160a01b03166102d8565b3480156105b257600080fd5b50610328600e5481565b3480156105c857600080fd5b506102ab611163565b3480156105dd57600080fd5b506103106105ec3660046121e7565b611172565b3480156105fd57600080fd5b5061031061060c3660046122b6565b61117d565b34801561061d57600080fd5b506102ab6111ba565b34801561063257600080fd5b506103106106413660046122d1565b6111c7565b34801561065257600080fd5b5061031061066136600461216b565b6111f6565b34801561067257600080fd5b506102ab6106813660046122d1565b611228565b34801561069257600080fd5b50610328600d5481565b3480156106a857600080fd5b506103106106b73660046122d1565b6113a7565b3480156106c857600080fd5b506102816106d73660046120e1565b60106020526000908152604090205460ff1681565b3480156106f857600080fd5b506103106107073660046122b6565b6113d6565b34801561071857600080fd5b506102816107273660046120fc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561076157600080fd5b50610328600b5481565b34801561077757600080fd5b5061031061078636600461236d565b61141a565b34801561079757600080fd5b506103106107a63660046120e1565b611500565b60006001600160e01b031982166380ac58cd60e01b14806107dc57506001600160e01b03198216635b5e139f60e01b145b806107f757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461080c9061267a565b80601f01602080910402602001604051908101604052809291908181526020018280546108389061267a565b80156108855780601f1061085a57610100808354040283529160200191610885565b820191906000526020600020905b81548152906001019060200180831161086857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661090d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061093482610ff2565b9050806001600160a01b0316836001600160a01b031614156109a25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610904565b336001600160a01b03821614806109be57506109be8133610727565b610a305760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610904565b610a3a8383611598565b505050565b6006546001600160a01b03163314610a695760405162461bcd60e51b815260040161090490612566565b8051610a7c906009906020840190611fa6565b5050565b6006546001600160a01b03163314610aaa5760405162461bcd60e51b815260040161090490612566565b600f805460ff1916911515919091179055565b6000610ac860075490565b905090565b610ad73382611606565b610af35760405162461bcd60e51b81526004016109049061259b565b610a3a8383836116fd565b6006546001600160a01b03163314610b285760405162461bcd60e51b815260040161090490612566565b6000610b3c6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b86576040519150601f19603f3d011682016040523d82523d6000602084013e610b8b565b606091505b5050905080610b9957600080fd5b50565b610a3a838383604051806020016040528060008152506111f6565b60606000610bc483611069565b905060008167ffffffffffffffff811115610be157610be1612726565b604051908082528060200260200182016040528015610c0a578160200160208202803683370190505b509050600160005b8381108015610c235750600d548211155b15610c8e576000610c3383610ff2565b9050866001600160a01b0316816001600160a01b03161415610c7b5782848381518110610c6257610c62612710565b602090810291909101015281610c77816126b5565b9250505b82610c85816126b5565b93505050610c12565b5090949350505050565b6006546001600160a01b03163314610cc25760405162461bcd60e51b815260040161090490612566565b600c55565b80600081118015610cda5750600e548111155b610d1d5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610904565b600d5481610d2a60075490565b610d3491906125ec565b1115610d795760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610904565b600f5460ff1615610dcc5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610904565b60115460ff1615610e395781600c54610de59190612618565b341015610e2a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610904565b610e343383611899565b610ee5565b601254821115610e7d5760405162461bcd60e51b815260206004820152600f60248201526e105b5bdd5b9d08195e18d959591959608a1b6044820152606401610904565b610e888484336118d6565b81600c54610e969190612618565b341015610edb5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610904565b610ee53383611899565b50505050565b6006546001600160a01b03163314610f155760405162461bcd60e51b815260040161090490612566565b8051610a7c90600a906020840190611fa6565b60098054610f359061267a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f619061267a565b8015610fae5780601f10610f8357610100808354040283529160200191610fae565b820191906000526020600020905b815481529060010190602001808311610f9157829003601f168201915b505050505081565b6006546001600160a01b03163314610fe05760405162461bcd60e51b815260040161090490612566565b600b55565b60088054610f359061267a565b6000818152600260205260408120546001600160a01b0316806107f75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610904565b60006001600160a01b0382166110d45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610904565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461111a5760405162461bcd60e51b815260040161090490612566565b6111246000611a1f565b565b6006546001600160a01b031633146111505760405162461bcd60e51b815260040161090490612566565b8051610a7c906008906020840190611fa6565b60606001805461080c9061267a565b610a7c338383611a71565b6006546001600160a01b031633146111a75760405162461bcd60e51b815260040161090490612566565b6011805460ff1916911515919091179055565b600a8054610f359061267a565b6006546001600160a01b031633146111f15760405162461bcd60e51b815260040161090490612566565b600e55565b6112003383611606565b61121c5760405162461bcd60e51b81526004016109049061259b565b610ee584848484611b40565b6000818152600260205260409020546060906001600160a01b03166112a75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610904565b600f54610100900460ff1661134857600a80546112c39061267a565b80601f01602080910402602001604051908101604052809291908181526020018280546112ef9061267a565b801561133c5780601f106113115761010080835404028352916020019161133c565b820191906000526020600020905b81548152906001019060200180831161131f57829003601f168201915b50505050509050919050565b6000611352611b73565b9050600081511161137257604051806020016040528060008152506113a0565b8061137c84611b82565b6009604051602001611390939291906123bc565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146113d15760405162461bcd60e51b815260040161090490612566565b601255565b6006546001600160a01b031633146114005760405162461bcd60e51b815260040161090490612566565b600f80549115156101000261ff0019909216919091179055565b8160008111801561142d5750600e548111155b6114705760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610904565b600d548161147d60075490565b61148791906125ec565b11156114cc5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610904565b6006546001600160a01b031633146114f65760405162461bcd60e51b815260040161090490612566565b610a3a8284611899565b6006546001600160a01b0316331461152a5760405162461bcd60e51b815260040161090490612566565b6001600160a01b03811661158f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610904565b610b9981611a1f565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115cd82610ff2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661167f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610904565b600061168a83610ff2565b9050806001600160a01b0316846001600160a01b031614806116c55750836001600160a01b03166116ba8461088f565b6001600160a01b0316145b806116f557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661171082610ff2565b6001600160a01b0316146117745760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610904565b6001600160a01b0382166117d65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610904565b6117e1600082611598565b6001600160a01b038316600090815260036020526040812080546001929061180a908490612637565b90915550506001600160a01b03821660009081526003602052604081208054600192906118389084906125ec565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b81811015610a3a576118b2600780546001019055565b6118c4836118bf60075490565b611c80565b806118ce816126b5565b91505061189c565b6001600160a01b03811660009081526010602052604090205460ff161561193f5760405162461bcd60e51b815260206004820152601b60248201527f616464726573732068617320616c726561647920636c61696d656400000000006044820152606401610904565b6040516bffffffffffffffffffffffff19606083901b1660208201526000906034016040516020818303038152906040528051906020012090506119ba84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b549150849050611c9a565b6119f85760405162461bcd60e51b815260206004820152600f60248201526e139bdd0815da1a5d195b1a5cdd1959608a1b6044820152606401610904565b506001600160a01b03166000908152601060205260409020805460ff191660011790555050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611ad35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610904565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b4b8484846116fd565b611b5784848484611cb0565b610ee55760405162461bcd60e51b815260040161090490612514565b60606008805461080c9061267a565b606081611ba65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bd05780611bba816126b5565b9150611bc99050600a83612604565b9150611baa565b60008167ffffffffffffffff811115611beb57611beb612726565b6040519080825280601f01601f191660200182016040528015611c15576020820181803683370190505b5090505b84156116f557611c2a600183612637565b9150611c37600a866126d0565b611c429060306125ec565b60f81b818381518110611c5757611c57612710565b60200101906001600160f81b031916908160001a905350611c79600a86612604565b9450611c19565b610a7c828260405180602001604052806000815250611dbd565b600082611ca78584611df0565b14949350505050565b60006001600160a01b0384163b15611db257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cf4903390899088908890600401612480565b602060405180830381600087803b158015611d0e57600080fd5b505af1925050508015611d3e575060408051601f3d908101601f19168201909252611d3b91810190612307565b60015b611d98573d808015611d6c576040519150601f19603f3d011682016040523d82523d6000602084013e611d71565b606091505b508051611d905760405162461bcd60e51b815260040161090490612514565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116f5565b506001949350505050565b611dc78383611e64565b611dd46000848484611cb0565b610a3a5760405162461bcd60e51b815260040161090490612514565b600081815b8451811015611e5c576000858281518110611e1257611e12612710565b60200260200101519050808311611e385760008381526020829052604090209250611e49565b600081815260208490526040902092505b5080611e54816126b5565b915050611df5565b509392505050565b6001600160a01b038216611eba5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610904565b6000818152600260205260409020546001600160a01b031615611f1f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610904565b6001600160a01b0382166000908152600360205260408120805460019290611f489084906125ec565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fb29061267a565b90600052602060002090601f016020900481019282611fd4576000855561201a565b82601f10611fed57805160ff191683800117855561201a565b8280016001018555821561201a579182015b8281111561201a578251825591602001919060010190611fff565b5061202692915061202a565b5090565b5b80821115612026576000815560010161202b565b600067ffffffffffffffff8084111561205a5761205a612726565b604051601f8501601f19908116603f0116810190828211818310171561208257612082612726565b8160405280935085815286868601111561209b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146120cc57600080fd5b919050565b803580151581146120cc57600080fd5b6000602082840312156120f357600080fd5b6113a0826120b5565b6000806040838503121561210f57600080fd5b612118836120b5565b9150612126602084016120b5565b90509250929050565b60008060006060848603121561214457600080fd5b61214d846120b5565b925061215b602085016120b5565b9150604084013590509250925092565b6000806000806080858703121561218157600080fd5b61218a856120b5565b9350612198602086016120b5565b925060408501359150606085013567ffffffffffffffff8111156121bb57600080fd5b8501601f810187136121cc57600080fd5b6121db8782356020840161203f565b91505092959194509250565b600080604083850312156121fa57600080fd5b612203836120b5565b9150612126602084016120d1565b6000806040838503121561222457600080fd5b61222d836120b5565b946020939093013593505050565b60008060006040848603121561225057600080fd5b833567ffffffffffffffff8082111561226857600080fd5b818601915086601f83011261227c57600080fd5b81358181111561228b57600080fd5b8760208260051b85010111156122a057600080fd5b6020928301989097509590910135949350505050565b6000602082840312156122c857600080fd5b6113a0826120d1565b6000602082840312156122e357600080fd5b5035919050565b6000602082840312156122fc57600080fd5b81356113a08161273c565b60006020828403121561231957600080fd5b81516113a08161273c565b60006020828403121561233657600080fd5b813567ffffffffffffffff81111561234d57600080fd5b8201601f8101841361235e57600080fd5b6116f58482356020840161203f565b6000806040838503121561238057600080fd5b82359150612126602084016120b5565b600081518084526123a881602086016020860161264e565b601f01601f19169290920160200192915050565b6000845160206123cf8285838a0161264e565b8551918401916123e28184848a0161264e565b8554920191600090600181811c90808316806123ff57607f831692505b85831081141561241d57634e487b7160e01b85526022600452602485fd5b80801561243157600181146124425761246f565b60ff1985168852838801955061246f565b60008b81526020902060005b858110156124675781548a82015290840190880161244e565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124b390830184612390565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156124f5578351835292840192918401916001016124d9565b50909695505050505050565b6020815260006113a06020830184612390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156125ff576125ff6126e4565b500190565b600082612613576126136126fa565b500490565b6000816000190483118215151615612632576126326126e4565b500290565b600082821015612649576126496126e4565b500390565b60005b83811015612669578181015183820152602001612651565b83811115610ee55750506000910152565b600181811c9082168061268e57607f821691505b602082108114156126af57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126c9576126c96126e4565b5060010190565b6000826126df576126df6126fa565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b9957600080fdfea2646970667358221220dbe85f16dc48437a719f1f4b42e624b7886d066a476f283e6aab4ca84c977f5464736f6c63430008070033

Deployed Bytecode Sourcemap

42707:5311:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27996:305;;;;;;;;;;-1:-1:-1;27996:305:0;;;;;:::i;:::-;;:::i;:::-;;;9179:14:1;;9172:22;9154:41;;9142:2;9127:18;27996:305:0;;;;;;;;28941:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30500:221::-;;;;;;;;;;-1:-1:-1;30500:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7840:32:1;;;7822:51;;7810:2;7795:18;30500:221:0;7676:203:1;30023:411:0;;;;;;;;;;-1:-1:-1;30023:411:0;;;;;:::i;:::-;;:::i;:::-;;43069:32;;;;;;;;;;;;;;;;;;;9352:25:1;;;9340:2;9325:18;43069:32:0;9206:177:1;47369:100:0;;;;;;;;;;-1:-1:-1;47369:100:0;;;;;:::i;:::-;;:::i;47475:77::-;;;;;;;;;;-1:-1:-1;47475:77:0;;;;;:::i;:::-;;:::i;43869:89::-;;;;;;;;;;;;;:::i;31250:339::-;;;;;;;;;;-1:-1:-1;31250:339:0;;;;;:::i;:::-;;:::i;47558:137::-;;;;;;;;;;;;;:::i;31660:185::-;;;;;;;;;;-1:-1:-1;31660:185:0;;;;;:::i;:::-;;:::i;45028:635::-;;;;;;;;;;-1:-1:-1;45028:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46256:74::-;;;;;;;;;;-1:-1:-1;46256:74:0;;;;;:::i;:::-;;:::i;44208:649::-;;;;;;:::i;:::-;;:::i;46472:132::-;;;;;;;;;;-1:-1:-1;46472:132:0;;;;;:::i;:::-;;:::i;43218:28::-;;;;;;;;;;-1:-1:-1;43218:28:0;;;;;;;;;;;42896:33;;;;;;;;;;;;;:::i;43963:95::-;;;;;;;;;;-1:-1:-1;43963:95:0;;;;;:::i;:::-;;:::i;43187:26::-;;;;;;;;;;-1:-1:-1;43187:26:0;;;;;;;;42863:28;;;;;;;;;;;;;:::i;28635:239::-;;;;;;;;;;-1:-1:-1;28635:239:0;;;;;:::i;:::-;;:::i;28365:208::-;;;;;;;;;;-1:-1:-1;28365:208:0;;;;;:::i;:::-;;:::i;8617:103::-;;;;;;;;;;;;;:::i;43394:32::-;;;;;;;;;;-1:-1:-1;43394:32:0;;;;;;;;46610:100;;;;;;;;;;-1:-1:-1;46610:100:0;;;;;:::i;:::-;;:::i;43434:39::-;;;;;;;;;;;;;;;;7966:87;;;;;;;;;;-1:-1:-1;8039:6:0;;-1:-1:-1;;;;;8039:6:0;7966:87;;43142:38;;;;;;;;;;;;;;;;29110:104;;;;;;;;;;;;;:::i;30793:155::-;;;;;;;;;;-1:-1:-1;30793:155:0;;;;;:::i;:::-;;:::i;46718:89::-;;;;;;;;;;-1:-1:-1;46718:89:0;;;;;:::i;:::-;;:::i;42934:31::-;;;;;;;;;;;;;:::i;46336:130::-;;;;;;;;;;-1:-1:-1;46336:130:0;;;;;:::i;:::-;;:::i;31916:328::-;;;;;;;;;;-1:-1:-1;31916:328:0;;;;;:::i;:::-;;:::i;45669:494::-;;;;;;;;;;-1:-1:-1;45669:494:0;;;;;:::i;:::-;;:::i;43106:31::-;;;;;;;;;;;;;;;;46813:106;;;;;;;;;;-1:-1:-1;46813:106:0;;;;;:::i;:::-;;:::i;43306:48::-;;;;;;;;;;-1:-1:-1;43306:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;46169:81;;;;;;;;;;-1:-1:-1;46169:81:0;;;;;:::i;:::-;;:::i;31019:164::-;;;;;;;;;;-1:-1:-1;31019:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31140:25:0;;;31116:4;31140:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31019:164;42972:88;;;;;;;;;;;;;;;;44867:155;;;;;;;;;;-1:-1:-1;44867:155:0;;;;;:::i;:::-;;:::i;8875:201::-;;;;;;;;;;-1:-1:-1;8875:201:0;;;;;:::i;:::-;;:::i;27996:305::-;28098:4;-1:-1:-1;;;;;;28135:40:0;;-1:-1:-1;;;28135:40:0;;:105;;-1:-1:-1;;;;;;;28192:48:0;;-1:-1:-1;;;28192:48:0;28135:105;:158;;;-1:-1:-1;;;;;;;;;;20859:40:0;;;28257:36;28115:178;27996:305;-1:-1:-1;;27996:305:0:o;28941:100::-;28995:13;29028:5;29021:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28941:100;:::o;30500:221::-;30576:7;33843:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33843:16:0;30596:73;;;;-1:-1:-1;;;30596:73:0;;14531:2:1;30596:73:0;;;14513:21:1;14570:2;14550:18;;;14543:30;14609:34;14589:18;;;14582:62;-1:-1:-1;;;14660:18:1;;;14653:42;14712:19;;30596:73:0;;;;;;;;;-1:-1:-1;30689:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30689:24:0;;30500:221::o;30023:411::-;30104:13;30120:23;30135:7;30120:14;:23::i;:::-;30104:39;;30168:5;-1:-1:-1;;;;;30162:11:0;:2;-1:-1:-1;;;;;30162:11:0;;;30154:57;;;;-1:-1:-1;;;30154:57:0;;16773:2:1;30154:57:0;;;16755:21:1;16812:2;16792:18;;;16785:30;16851:34;16831:18;;;16824:62;-1:-1:-1;;;16902:18:1;;;16895:31;16943:19;;30154:57:0;16571:397:1;30154:57:0;6770:10;-1:-1:-1;;;;;30246:21:0;;;;:62;;-1:-1:-1;30271:37:0;30288:5;6770:10;31019:164;:::i;30271:37::-;30224:168;;;;-1:-1:-1;;;30224:168:0;;12924:2:1;30224:168:0;;;12906:21:1;12963:2;12943:18;;;12936:30;13002:34;12982:18;;;12975:62;13073:26;13053:18;;;13046:54;13117:19;;30224:168:0;12722:420:1;30224:168:0;30405:21;30414:2;30418:7;30405:8;:21::i;:::-;30093:341;30023:411;;:::o;47369:100::-;8039:6;;-1:-1:-1;;;;;8039:6:0;6770:10;8186:23;8178:68;;;;-1:-1:-1;;;8178:68:0;;;;;;;:::i;:::-;47441:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47369:100:::0;:::o;47475:77::-;8039:6;;-1:-1:-1;;;;;8039:6:0;6770:10;8186:23;8178:68;;;;-1:-1:-1;;;8178:68:0;;;;;;;:::i;:::-;47531:6:::1;:15:::0;;-1:-1:-1;;47531:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47475:77::o;43869:89::-;43913:7;43936:16;:6;3386:14;;3294:114;43936:16;43929:23;;43869:89;:::o;31250:339::-;31445:41;6770:10;31478:7;31445:18;:41::i;:::-;31437:103;;;;-1:-1:-1;;;31437:103:0;;;;;;;:::i;:::-;31553:28;31563:4;31569:2;31573:7;31553:9;:28::i;47558:137::-;8039:6;;-1:-1:-1;;;;;8039:6:0;6770:10;8186:23;8178:68;;;;-1:-1:-1;;;8178:68:0;;;;;;;:::i;:::-;47603:7:::1;47624;8039:6:::0;;-1:-1:-1;;;;;8039:6:0;;7966:87;47624:7:::1;-1:-1:-1::0;;;;;47616:21:0::1;47645;47616:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47602:69;;;47686:2;47678:11;;;::::0;::::1;;47595:100;47558:137::o:0;31660:185::-;31798:39;31815:4;31821:2;31825:7;31798:39;;;;;;;;;;;;:16;:39::i;45028:635::-;45103:16;45131:23;45157:17;45167:6;45157:9;:17::i;:::-;45131:43;;45181:30;45228:15;45214:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45214:30:0;-1:-1:-1;45181:63:0;-1:-1:-1;45276:1:0;45251:22;45320:309;45345:15;45327;:33;:64;;;;;45382:9;;45364:14;:27;;45327:64;45320:309;;;45402:25;45430:23;45438:14;45430:7;:23::i;:::-;45402:51;;45489:6;-1:-1:-1;;;;;45468:27:0;:17;-1:-1:-1;;;;;45468:27:0;;45464:131;;;45541:14;45508:13;45522:15;45508:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;45568:17;;;;:::i;:::-;;;;45464:131;45605:16;;;;:::i;:::-;;;;45393:236;45320:309;;;-1:-1:-1;45644:13:0;;45028:635;-1:-1:-1;;;;45028:635:0:o;46256:74::-;8039:6;;-1:-1:-1;;;;;8039:6:0;6770:10;8186:23;8178:68;;;;-1:-1:-1;;;8178:68:0;;;;;;;:::i;:::-;46312:4:::1;:12:::0;46256:74::o;44208:649::-;44306:11;43703:1;43689:11;:15;:52;;;;;43723:18;;43708:11;:33;;43689:52;43681:85;;;;-1:-1:-1;;;43681:85:0;;11403:2:1;43681:85:0;;;11385:21:1;11442:2;11422:18;;;11415:30;-1:-1:-1;;;11461:18:1;;;11454:50;11521:18;;43681:85:0;11201:344:1;43681:85:0;43815:9;;43800:11;43781:16;:6;3386:14;;3294:114;43781:16;:30;;;;:::i;:::-;:43;;43773:76;;;;-1:-1:-1;;;43773:76:0;;17175:2:1;43773:76:0;;;17157:21:1;17214:2;17194:18;;;17187:30;-1:-1:-1;;;17233:18:1;;;17226:50;17293:18;;43773:76:0;16973:344:1;43773:76:0;44335:6:::1;::::0;::::1;;44334:7;44326:43;;;::::0;-1:-1:-1;;;44326:43:0;;15305:2:1;44326:43:0::1;::::0;::::1;15287:21:1::0;15344:2;15324:18;;;15317:30;15383:25;15363:18;;;15356:53;15426:18;;44326:43:0::1;15103:347:1::0;44326:43:0::1;44464:12;::::0;::::1;;44460:392;;;44513:11;44506:4;;:18;;;;:::i;:::-;44493:9;:31;;44485:63;;;::::0;-1:-1:-1;;;44485:63:0;;18286:2:1;44485:63:0::1;::::0;::::1;18268:21:1::0;18325:2;18305:18;;;18298:30;-1:-1:-1;;;18344:18:1;;;18337:49;18403:18;;44485:63:0::1;18084:343:1::0;44485:63:0::1;44555:34;44565:10;44577:11;44555:9;:34::i;:::-;44460:392;;;44636:20;;44621:11;:35;;44613:63;;;::::0;-1:-1:-1;;;44613:63:0;;16429:2:1;44613:63:0::1;::::0;::::1;16411:21:1::0;16468:2;16448:18;;;16441:30;-1:-1:-1;;;16487:18:1;;;16480:45;16542:18;;44613:63:0::1;16227:339:1::0;44613:63:0::1;44687:38;44701:12;;44714:10;44687:13;:38::i;:::-;44764:11;44757:4;;:18;;;;:::i;:::-;44744:9;:31;;44736:63;;;::::0;-1:-1:-1;;;44736:63:0;;18286:2:1;44736:63:0::1;::::0;::::1;18268:21:1::0;18325:2;18305:18;;;18298:30;-1:-1:-1;;;18344:18:1;;;18337:49;18403:18;;44736:63:0::1;18084:343:1::0;44736:63:0::1;44810:34;44820:10;44832:11;44810:9;:34::i;:::-;44208:649:::0;;;;:::o;46472:132::-;8039:6;;-1:-1:-1;;;;;8039:6:0;6770:10;8186:23;8178:68;;;;-1:-1:-1;;;8178:68:0;;;;;;;:::i;:::-;46560:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;42896:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43963:95::-;8039:6;;-1:-1:-1;;;;;8039:6:0;6770:10;8186:23;8178:68;;;;-1:-1:-1;;;8178:68:0;;;;;;;:::i;:::-;44035:4:::1;:18:::0;43963:95::o;42863:28::-;;;;;;;:::i;28635:239::-;28707:7;28743:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28743:16:0;28778:19;28770:73;;;;-1:-1:-1;;;28770:73:0;;13760:2:1;28770:73:0;;;13742:21:1;13799:2;13779:18;;;13772:30;13838:34;13818:18;;;13811:62;-1:-1:-1;;;13889:18:1;;;13882:39;13938:19;;28770:73:0;13558:405:1;28365:208:0;28437:7;-1:-1:-1;;;;;28465:19:0;;28457:74;;;;-1:-1:-1;;;28457:74:0;;13349:2:1;28457:74:0;;;13331:21:1;13388:2;13368:18;;;13361:30;13427:34;13407:18;;;13400:62;-1:-1:-1;;;13478:18:1;;;13471:40;13528:19;;28457:74:0;13147:406:1;28457:74:0;-1:-1:-1;;;;;;28549:16:0;;;;;:9;:16;;;;;;;28365:208::o;8617:103::-;8039:6;;-1:-1:-1;;;;;8039:6:0;6770:10;8186:23;8178:68;;;;-1:-1:-1;;;8178:68:0;;;;;;;:::i;:::-;8682:30:::1;8709:1;8682:18;:30::i;:::-;8617:103::o:0;46610:100::-;8039:6;;-1:-1:-1;;;;;8039:6:0;6770:10;8186:23;8178:68;;;;-1:-1:-1;;;8178:68:0;;;;;;;:::i;:::-;46682:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;29110:104::-:0;29166:13;29199:7;29192:14;;;;;:::i;30793:155::-;30888:52;6770:10;30921:8;30931;30888:18;:52::i;46718:89::-;8039:6;;-1:-1:-1;;;;;8039:6:0;6770:10;8186:23;8178:68;;;;-1:-1:-1;;;8178:68:0;;;;;;;:::i;:::-;46781:12:::1;:20:::0;;-1:-1:-1;;46781:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46718:89::o;42934:31::-;;;;;;;:::i;46336:130::-;8039:6;;-1:-1:-1;;;;;8039:6:0;6770:10;8186:23;8178:68;;;;-1:-1:-1;;;8178:68:0;;;;;;;:::i;:::-;46420:18:::1;:40:::0;46336:130::o;31916:328::-;32091:41;6770:10;32124:7;32091:18;:41::i;:::-;32083:103;;;;-1:-1:-1;;;32083:103:0;;;;;;;:::i;:::-;32197:39;32211:4;32217:2;32221:7;32230:5;32197:13;:39::i;45669:494::-;33819:4;33843:16;;;:7;:16;;;;;;45768:13;;-1:-1:-1;;;;;33843:16:0;45793:98;;;;-1:-1:-1;;;45793:98:0;;15657:2:1;45793:98:0;;;15639:21:1;15696:2;15676:18;;;15669:30;15735:34;15715:18;;;15708:62;-1:-1:-1;;;15786:18:1;;;15779:45;15841:19;;45793:98:0;15455:411:1;45793:98:0;45904:8;;;;;;;45900:64;;45939:17;45932:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45669:494;;;:::o;45900:64::-;45972:28;46003:10;:8;:10::i;:::-;45972:41;;46058:1;46033:14;46027:28;:32;:130;;;;;;;;;;;;;;;;;46095:14;46111:19;:8;:17;:19::i;:::-;46132:9;46078:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46027:130;46020:137;45669:494;-1:-1:-1;;;45669:494:0:o;46813:106::-;8039:6;;-1:-1:-1;;;;;8039:6:0;6770:10;8186:23;8178:68;;;;-1:-1:-1;;;8178:68:0;;;;;;;:::i;:::-;46886:20:::1;:27:::0;46813:106::o;46169:81::-;8039:6;;-1:-1:-1;;;;;8039:6:0;6770:10;8186:23;8178:68;;;;-1:-1:-1;;;8178:68:0;;;;;;;:::i;:::-;46227:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;46227:17:0;;::::1;::::0;;;::::1;::::0;;46169:81::o;44867:155::-;44953:11;43703:1;43689:11;:15;:52;;;;;43723:18;;43708:11;:33;;43689:52;43681:85;;;;-1:-1:-1;;;43681:85:0;;11403:2:1;43681:85:0;;;11385:21:1;11442:2;11422:18;;;11415:30;-1:-1:-1;;;11461:18:1;;;11454:50;11521:18;;43681:85:0;11201:344:1;43681:85:0;43815:9;;43800:11;43781:16;:6;3386:14;;3294:114;43781:16;:30;;;;:::i;:::-;:43;;43773:76;;;;-1:-1:-1;;;43773:76:0;;17175:2:1;43773:76:0;;;17157:21:1;17214:2;17194:18;;;17187:30;-1:-1:-1;;;17233:18:1;;;17226:50;17293:18;;43773:76:0;16973:344:1;43773:76:0;8039:6;;-1:-1:-1;;;;;8039:6:0;6770:10;8186:23:::1;8178:68;;;;-1:-1:-1::0;;;8178:68:0::1;;;;;;;:::i;:::-;44983:33:::2;44993:9;45004:11;44983:9;:33::i;8875:201::-:0;8039:6;;-1:-1:-1;;;;;8039:6:0;6770:10;8186:23;8178:68;;;;-1:-1:-1;;;8178:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8964:22:0;::::1;8956:73;;;::::0;-1:-1:-1;;;8956:73:0;;10233:2:1;8956:73:0::1;::::0;::::1;10215:21:1::0;10272:2;10252:18;;;10245:30;10311:34;10291:18;;;10284:62;-1:-1:-1;;;10362:18:1;;;10355:36;10408:19;;8956:73:0::1;10031:402:1::0;8956:73:0::1;9040:28;9059:8;9040:18;:28::i;37900:174::-:0;37975:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37975:29:0;-1:-1:-1;;;;;37975:29:0;;;;;;;;:24;;38029:23;37975:24;38029:14;:23::i;:::-;-1:-1:-1;;;;;38020:46:0;;;;;;;;;;;37900:174;;:::o;34048:348::-;34141:4;33843:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33843:16:0;34158:73;;;;-1:-1:-1;;;34158:73:0;;12511:2:1;34158:73:0;;;12493:21:1;12550:2;12530:18;;;12523:30;12589:34;12569:18;;;12562:62;-1:-1:-1;;;12640:18:1;;;12633:42;12692:19;;34158:73:0;12309:408:1;34158:73:0;34242:13;34258:23;34273:7;34258:14;:23::i;:::-;34242:39;;34311:5;-1:-1:-1;;;;;34300:16:0;:7;-1:-1:-1;;;;;34300:16:0;;:51;;;;34344:7;-1:-1:-1;;;;;34320:31:0;:20;34332:7;34320:11;:20::i;:::-;-1:-1:-1;;;;;34320:31:0;;34300:51;:87;;;-1:-1:-1;;;;;;31140:25:0;;;31116:4;31140:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;34355:32;34292:96;34048:348;-1:-1:-1;;;;34048:348:0:o;37157:625::-;37316:4;-1:-1:-1;;;;;37289:31:0;:23;37304:7;37289:14;:23::i;:::-;-1:-1:-1;;;;;37289:31:0;;37281:81;;;;-1:-1:-1;;;37281:81:0;;10640:2:1;37281:81:0;;;10622:21:1;10679:2;10659:18;;;10652:30;10718:34;10698:18;;;10691:62;-1:-1:-1;;;10769:18:1;;;10762:35;10814:19;;37281:81:0;10438:401:1;37281:81:0;-1:-1:-1;;;;;37381:16:0;;37373:65;;;;-1:-1:-1;;;37373:65:0;;11752:2:1;37373:65:0;;;11734:21:1;11791:2;11771:18;;;11764:30;11830:34;11810:18;;;11803:62;-1:-1:-1;;;11881:18:1;;;11874:34;11925:19;;37373:65:0;11550:400:1;37373:65:0;37555:29;37572:1;37576:7;37555:8;:29::i;:::-;-1:-1:-1;;;;;37597:15:0;;;;;;:9;:15;;;;;:20;;37616:1;;37597:15;:20;;37616:1;;37597:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37628:13:0;;;;;;:9;:13;;;;;:18;;37645:1;;37628:13;:18;;37645:1;;37628:18;:::i;:::-;;;;-1:-1:-1;;37657:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37657:21:0;-1:-1:-1;;;;;37657:21:0;;;;;;;;;37696:27;;37657:16;;37696:27;;;;;;;30093:341;30023:411;;:::o;47701:204::-;47781:9;47776:124;47800:11;47796:1;:15;47776:124;;;47827:18;:6;3505:19;;3523:1;3505:19;;;3416:127;47827:18;47854:38;47864:9;47875:16;:6;3386:14;;3294:114;47875:16;47854:9;:38::i;:::-;47813:3;;;;:::i;:::-;;;;47776:124;;46929:434;-1:-1:-1;;;;;47029:23:0;;;;;;:16;:23;;;;;;;;47028:24;47020:64;;;;-1:-1:-1;;;47020:64:0;;16073:2:1;47020:64:0;;;16055:21:1;16112:2;16092:18;;;16085:30;16151:29;16131:18;;;16124:57;16198:18;;47020:64:0;15871:351:1;47020:64:0;47156:23;;-1:-1:-1;;5849:2:1;5845:15;;;5841:53;47156:23:0;;;5829:66:1;47131:12:0;;5911::1;;47156:23:0;;;;;;;;;;;;47146:34;;;;;;47131:49;;47195:45;47214:12;;47195:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47228:4:0;;;-1:-1:-1;47234:4:0;;-1:-1:-1;47195:18:0;:45::i;:::-;47187:72;;;;-1:-1:-1;;;47187:72:0;;17942:2:1;47187:72:0;;;17924:21:1;17981:2;17961:18;;;17954:30;-1:-1:-1;;;18000:18:1;;;17993:45;18055:18;;47187:72:0;17740:339:1;47187:72:0;-1:-1:-1;;;;;;47321:23:0;;;;;:16;:23;;;;;:29;;-1:-1:-1;;47321:29:0;47346:4;47321:29;;;-1:-1:-1;;46929:434:0:o;9236:191::-;9329:6;;;-1:-1:-1;;;;;9346:17:0;;;-1:-1:-1;;;;;;9346:17:0;;;;;;;9379:40;;9329:6;;;9346:17;9329:6;;9379:40;;9310:16;;9379:40;9299:128;9236:191;:::o;38216:315::-;38371:8;-1:-1:-1;;;;;38362:17:0;:5;-1:-1:-1;;;;;38362:17:0;;;38354:55;;;;-1:-1:-1;;;38354:55:0;;12157:2:1;38354:55:0;;;12139:21:1;12196:2;12176:18;;;12169:30;12235:27;12215:18;;;12208:55;12280:18;;38354:55:0;11955:349:1;38354:55:0;-1:-1:-1;;;;;38420:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;38420:46:0;;;;;;;;;;38482:41;;9154::1;;;38482::0;;9127:18:1;38482:41:0;;;;;;;38216:315;;;:::o;33126:::-;33283:28;33293:4;33299:2;33303:7;33283:9;:28::i;:::-;33330:48;33353:4;33359:2;33363:7;33372:5;33330:22;:48::i;:::-;33322:111;;;;-1:-1:-1;;;33322:111:0;;;;;;;:::i;47911:104::-;47971:13;48000:9;47993:16;;;;;:::i;4252:723::-;4308:13;4529:10;4525:53;;-1:-1:-1;;4556:10:0;;;;;;;;;;;;-1:-1:-1;;;4556:10:0;;;;;4252:723::o;4525:53::-;4603:5;4588:12;4644:78;4651:9;;4644:78;;4677:8;;;;:::i;:::-;;-1:-1:-1;4700:10:0;;-1:-1:-1;4708:2:0;4700:10;;:::i;:::-;;;4644:78;;;4732:19;4764:6;4754:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4754:17:0;;4732:39;;4782:154;4789:10;;4782:154;;4816:11;4826:1;4816:11;;:::i;:::-;;-1:-1:-1;4885:10:0;4893:2;4885:5;:10;:::i;:::-;4872:24;;:2;:24;:::i;:::-;4859:39;;4842:6;4849;4842:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4842:56:0;;;;;;;;-1:-1:-1;4913:11:0;4922:2;4913:11;;:::i;:::-;;;4782:154;;34738:110;34814:26;34824:2;34828:7;34814:26;;;;;;;;;;;;:9;:26::i;956:190::-;1081:4;1134;1105:25;1118:5;1125:4;1105:12;:25::i;:::-;:33;;956:190;-1:-1:-1;;;;956:190:0:o;39096:799::-;39251:4;-1:-1:-1;;;;;39272:13:0;;10962:19;:23;39268:620;;39308:72;;-1:-1:-1;;;39308:72:0;;-1:-1:-1;;;;;39308:36:0;;;;;:72;;6770:10;;39359:4;;39365:7;;39374:5;;39308:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39308:72:0;;;;;;;;-1:-1:-1;;39308:72:0;;;;;;;;;;;;:::i;:::-;;;39304:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39550:13:0;;39546:272;;39593:60;;-1:-1:-1;;;39593:60:0;;;;;;;:::i;39546:272::-;39768:6;39762:13;39753:6;39749:2;39745:15;39738:38;39304:529;-1:-1:-1;;;;;;39431:51:0;-1:-1:-1;;;39431:51:0;;-1:-1:-1;39424:58:0;;39268:620;-1:-1:-1;39872:4:0;39096:799;;;;;;:::o;35075:321::-;35205:18;35211:2;35215:7;35205:5;:18::i;:::-;35256:54;35287:1;35291:2;35295:7;35304:5;35256:22;:54::i;:::-;35234:154;;;;-1:-1:-1;;;35234:154:0;;;;;;;:::i;1508:675::-;1591:7;1634:4;1591:7;1649:497;1673:5;:12;1669:1;:16;1649:497;;;1707:20;1730:5;1736:1;1730:8;;;;;;;;:::i;:::-;;;;;;;1707:31;;1773:12;1757;:28;1753:382;;2259:13;2309:15;;;2345:4;2338:15;;;2392:4;2376:21;;1885:57;;1753:382;;;2259:13;2309:15;;;2345:4;2338:15;;;2392:4;2376:21;;2062:57;;1753:382;-1:-1:-1;1687:3:0;;;;:::i;:::-;;;;1649:497;;;-1:-1:-1;2163:12:0;1508:675;-1:-1:-1;;;1508:675:0:o;35732:439::-;-1:-1:-1;;;;;35812:16:0;;35804:61;;;;-1:-1:-1;;;35804:61:0;;14170:2:1;35804:61:0;;;14152:21:1;;;14189:18;;;14182:30;14248:34;14228:18;;;14221:62;14300:18;;35804:61:0;13968:356:1;35804:61:0;33819:4;33843:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33843:16:0;:30;35876:58;;;;-1:-1:-1;;;35876:58:0;;11046:2:1;35876:58:0;;;11028:21:1;11085:2;11065:18;;;11058:30;11124;11104:18;;;11097:58;11172:18;;35876:58:0;10844:352:1;35876:58:0;-1:-1:-1;;;;;36005:13:0;;;;;;:9;:13;;;;;:18;;36022:1;;36005:13;:18;;36022:1;;36005:18;:::i;:::-;;;;-1:-1:-1;;36034:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36034:21:0;-1:-1:-1;;;;;36034:21:0;;;;;;;;36073:33;;36034:16;;;36073:33;;36034:16;;36073:33;47441:22:::1;47369:100:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:689::-;3066:6;3074;3082;3135:2;3123:9;3114:7;3110:23;3106:32;3103:52;;;3151:1;3148;3141:12;3103:52;3191:9;3178:23;3220:18;3261:2;3253:6;3250:14;3247:34;;;3277:1;3274;3267:12;3247:34;3315:6;3304:9;3300:22;3290:32;;3360:7;3353:4;3349:2;3345:13;3341:27;3331:55;;3382:1;3379;3372:12;3331:55;3422:2;3409:16;3448:2;3440:6;3437:14;3434:34;;;3464:1;3461;3454:12;3434:34;3519:7;3512:4;3502:6;3499:1;3495:14;3491:2;3487:23;3483:34;3480:47;3477:67;;;3540:1;3537;3530:12;3477:67;3571:4;3563:13;;;;3595:6;;-1:-1:-1;3633:20:1;;;;3620:34;;2971:689;-1:-1:-1;;;;2971:689:1:o;3665:180::-;3721:6;3774:2;3762:9;3753:7;3749:23;3745:32;3742:52;;;3790:1;3787;3780:12;3742:52;3813:26;3829:9;3813:26;:::i;3850:180::-;3909:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:52;;;3978:1;3975;3968:12;3930:52;-1:-1:-1;4001:23:1;;3850:180;-1:-1:-1;3850:180:1:o;4035:245::-;4093:6;4146:2;4134:9;4125:7;4121:23;4117:32;4114:52;;;4162:1;4159;4152:12;4114:52;4201:9;4188:23;4220:30;4244:5;4220:30;:::i;4285:249::-;4354:6;4407:2;4395:9;4386:7;4382:23;4378:32;4375:52;;;4423:1;4420;4413:12;4375:52;4455:9;4449:16;4474:30;4498:5;4474:30;:::i;4539:450::-;4608:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:52;;;4677:1;4674;4667:12;4629:52;4717:9;4704:23;4750:18;4742:6;4739:30;4736:50;;;4782:1;4779;4772:12;4736:50;4805:22;;4858:4;4850:13;;4846:27;-1:-1:-1;4836:55:1;;4887:1;4884;4877:12;4836:55;4910:73;4975:7;4970:2;4957:16;4952:2;4948;4944:11;4910:73;:::i;5179:254::-;5247:6;5255;5308:2;5296:9;5287:7;5283:23;5279:32;5276:52;;;5324:1;5321;5314:12;5276:52;5360:9;5347:23;5337:33;;5389:38;5423:2;5412:9;5408:18;5389:38;:::i;5438:257::-;5479:3;5517:5;5511:12;5544:6;5539:3;5532:19;5560:63;5616:6;5609:4;5604:3;5600:14;5593:4;5586:5;5582:16;5560:63;:::i;:::-;5677:2;5656:15;-1:-1:-1;;5652:29:1;5643:39;;;;5684:4;5639:50;;5438:257;-1:-1:-1;;5438:257:1:o;5934:1527::-;6158:3;6196:6;6190:13;6222:4;6235:51;6279:6;6274:3;6269:2;6261:6;6257:15;6235:51;:::i;:::-;6349:13;;6308:16;;;;6371:55;6349:13;6308:16;6393:15;;;6371:55;:::i;:::-;6515:13;;6448:20;;;6488:1;;6575;6597:18;;;;6650;;;;6677:93;;6755:4;6745:8;6741:19;6729:31;;6677:93;6818:2;6808:8;6805:16;6785:18;6782:40;6779:167;;;-1:-1:-1;;;6845:33:1;;6901:4;6898:1;6891:15;6931:4;6852:3;6919:17;6779:167;6962:18;6989:110;;;;7113:1;7108:328;;;;6955:481;;6989:110;-1:-1:-1;;7024:24:1;;7010:39;;7069:20;;;;-1:-1:-1;6989:110:1;;7108:328;18687:1;18680:14;;;18724:4;18711:18;;7203:1;7217:169;7231:8;7228:1;7225:15;7217:169;;;7313:14;;7298:13;;;7291:37;7356:16;;;;7248:10;;7217:169;;;7221:3;;7417:8;7410:5;7406:20;7399:27;;6955:481;-1:-1:-1;7452:3:1;;5934:1527;-1:-1:-1;;;;;;;;;;;5934:1527:1:o;7884:488::-;-1:-1:-1;;;;;8153:15:1;;;8135:34;;8205:15;;8200:2;8185:18;;8178:43;8252:2;8237:18;;8230:34;;;8300:3;8295:2;8280:18;;8273:31;;;8078:4;;8321:45;;8346:19;;8338:6;8321:45;:::i;:::-;8313:53;7884:488;-1:-1:-1;;;;;;7884:488:1:o;8377:632::-;8548:2;8600:21;;;8670:13;;8573:18;;;8692:22;;;8519:4;;8548:2;8771:15;;;;8745:2;8730:18;;;8519:4;8814:169;8828:6;8825:1;8822:13;8814:169;;;8889:13;;8877:26;;8958:15;;;;8923:12;;;;8850:1;8843:9;8814:169;;;-1:-1:-1;9000:3:1;;8377:632;-1:-1:-1;;;;;;8377:632:1:o;9388:219::-;9537:2;9526:9;9519:21;9500:4;9557:44;9597:2;9586:9;9582:18;9574:6;9557:44;:::i;9612:414::-;9814:2;9796:21;;;9853:2;9833:18;;;9826:30;9892:34;9887:2;9872:18;;9865:62;-1:-1:-1;;;9958:2:1;9943:18;;9936:48;10016:3;10001:19;;9612:414::o;14742:356::-;14944:2;14926:21;;;14963:18;;;14956:30;15022:34;15017:2;15002:18;;14995:62;15089:2;15074:18;;14742:356::o;17322:413::-;17524:2;17506:21;;;17563:2;17543:18;;;17536:30;17602:34;17597:2;17582:18;;17575:62;-1:-1:-1;;;17668:2:1;17653:18;;17646:47;17725:3;17710:19;;17322:413::o;18740:128::-;18780:3;18811:1;18807:6;18804:1;18801:13;18798:39;;;18817:18;;:::i;:::-;-1:-1:-1;18853:9:1;;18740:128::o;18873:120::-;18913:1;18939;18929:35;;18944:18;;:::i;:::-;-1:-1:-1;18978:9:1;;18873:120::o;18998:168::-;19038:7;19104:1;19100;19096:6;19092:14;19089:1;19086:21;19081:1;19074:9;19067:17;19063:45;19060:71;;;19111:18;;:::i;:::-;-1:-1:-1;19151:9:1;;18998:168::o;19171:125::-;19211:4;19239:1;19236;19233:8;19230:34;;;19244:18;;:::i;:::-;-1:-1:-1;19281:9:1;;19171:125::o;19301:258::-;19373:1;19383:113;19397:6;19394:1;19391:13;19383:113;;;19473:11;;;19467:18;19454:11;;;19447:39;19419:2;19412:10;19383:113;;;19514:6;19511:1;19508:13;19505:48;;;-1:-1:-1;;19549:1:1;19531:16;;19524:27;19301:258::o;19564:380::-;19643:1;19639:12;;;;19686;;;19707:61;;19761:4;19753:6;19749:17;19739:27;;19707:61;19814:2;19806:6;19803:14;19783:18;19780:38;19777:161;;;19860:10;19855:3;19851:20;19848:1;19841:31;19895:4;19892:1;19885:15;19923:4;19920:1;19913:15;19777:161;;19564:380;;;:::o;19949:135::-;19988:3;-1:-1:-1;;20009:17:1;;20006:43;;;20029:18;;:::i;:::-;-1:-1:-1;20076:1:1;20065:13;;19949:135::o;20089:112::-;20121:1;20147;20137:35;;20152:18;;:::i;:::-;-1:-1:-1;20186:9:1;;20089:112::o;20206:127::-;20267:10;20262:3;20258:20;20255:1;20248:31;20298:4;20295:1;20288:15;20322:4;20319:1;20312:15;20338:127;20399:10;20394:3;20390:20;20387:1;20380:31;20430:4;20427:1;20420:15;20454:4;20451:1;20444:15;20470:127;20531:10;20526:3;20522:20;20519:1;20512:31;20562:4;20559:1;20552:15;20586:4;20583:1;20576:15;20602:127;20663:10;20658:3;20654:20;20651:1;20644:31;20694:4;20691:1;20684:15;20718:4;20715:1;20708:15;20734:131;-1:-1:-1;;;;;;20808:32:1;;20798:43;;20788:71;;20855:1;20852;20845:12

Swarm Source

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