ETH Price: $2,462.49 (-5.93%)

Token

Baby Spookle (Baby Spookle)
 

Overview

Max Total Supply

0 Baby Spookle

Holders

159

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 Baby Spookle
0xb44d3df4fa349906188a49aaf324491b3b808b8c
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:
BabySpookles

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-28
*/

// 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts v4.4.1 (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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (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 overridden 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: BabySpookles.sol


pragma solidity ^0.8.0;





contract BabySpookles is ERC721, Ownable {

    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    string metadataBaseURI = "https://spookles.app/baby/metadatav4/";

    bytes32 public merkleRoot = 0x5bed4c145a11d0c1a16e3264283d0ca1888e5d3b60a042f9b441a578c2ee5ff9;

    uint256 mintPrice = 0.0125 * 10**18;
    uint256 nftLimit = 5555;
    uint256 paidMintLimit = 4655;

    mapping(address => uint256) public freeMintCount;
    mapping(address => uint256) public mintedCount;

    constructor() ERC721("Baby Spookle", "Baby Spookle") {
        freeMintCount[0x5902Df94392eAc50471da8f11660895b45b9ed13] = 96;
        freeMintCount[0xE9b4a11F3447b908F0680B97982D616AF3066EAd] = 24;
        freeMintCount[0x4Db180f14A91d3e01776DB3cA2993676543C2A06] = 15;
        freeMintCount[0x7cEC53B3b799F4226261c3F0F9E42A09dC89DB49] = 15;
        freeMintCount[0x59c7f366f5b6b4B1547ab84287d4acdf6b7534dB] = 12;
        freeMintCount[0xb44d3dF4fa349906188a49aAF324491B3B808B8C] = 12;
        freeMintCount[0x1a028077f25dE0D789c5bA6562Cb3A8fa622C43D] = 9;
        freeMintCount[0x4f744EFE8B1922E00cD2e0301C638C8537De9FbB] = 9;
        freeMintCount[0x83882Eec5dAfF10724bacDcF01D976951bC15864] = 9;
        freeMintCount[0xC93C4593A7D55b08f48b8b416fBf9f631912e2C9] = 9;
        freeMintCount[0x0043F8113Eb1257BC6314fE0434eEC0D9bAc3837] = 6;
        freeMintCount[0x088B950b6CdfEAFFD7850bA4756BF4f9607C7a4f] = 6;
        freeMintCount[0x24a4B0479347af2cF621e184c6197b0ac535712d] = 6;
        freeMintCount[0x479A9767808bf8d51e967FeFa3F5C3677FEcF1C9] = 6;
        freeMintCount[0x5bf7cfD652040266B49138CF53718a80360Fe477] = 6;
        freeMintCount[0x834a06e59AB03465eB92c16B17059391f693b62c] = 6;
        freeMintCount[0x8Ee4CfB37A0b9863364806b2d8a809D03F10BDd2] = 6;
        freeMintCount[0x99b29366C13B0cAE8BF023D5E09aA5deD6B56C2e] = 6;
        freeMintCount[0xB5764cA3a6E95965Ba8Ec3660Eee8D668f7d1969] = 6;
        freeMintCount[0xbbDb3AccFe65Fdd507354F37dd841d01576cFFAc] = 6;
        freeMintCount[0xe1106e4B1533c3511Dc05215D8F7D7f8A8587392] = 6;
        freeMintCount[0xeb2601DE5f283517aD68a75e1fd7df48ed36f632] = 6;
        freeMintCount[0xECbF0a509Ac57b327Eb8D9003C45600c01fCFC30] = 6;
        freeMintCount[0xeF8bf5C8549Bf47B9A62F8AE515de66E690F41EA] = 6;
        freeMintCount[0xf3Bc38756bdd873162d396f6e4CF13cafb3Cc11B] = 6;
        freeMintCount[0xFE178dB27E4312e764BA83928cd041A4217cDF29] = 6;
        freeMintCount[0xb72838Cc39De2e1F59740d868C8179c4d103A095] = 6; // test
    }

    // Base ERC721 Overrides
    function _baseURI() internal view override returns (string memory) {
        return metadataBaseURI;
    }

    function changeFreeMintCount(address inputAddress, uint256 count) external onlyOwner {
        freeMintCount[inputAddress] = count;
    }

    function changeMetadataBaseURI(string memory newURL) external onlyOwner {
        metadataBaseURI = newURL;
    }

    function changePaidLimitValue(uint256 value) external onlyOwner {
        paidMintLimit = value;
    }

    function getMintedNftCount() external view returns (uint256) {
        return _tokenIds.current();
    }

    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        return super.tokenURI(tokenId);
    }


    function setNewMetadataBaseURI(string memory _newMetadataURI) external onlyOwner {
        metadataBaseURI = _newMetadataURI;
    }

    function withdrawEthereumBalance(address payable destinationWallet) payable external onlyOwner {
        require(
            destinationWallet != address(0),
            "Destination wallet cannot be the zero-address"
        );
    
    (bool sent, bytes memory data) = destinationWallet.call{value: address(this).balance}("");
    require(sent, "Failed to send Ether");
    }


    function setNewMerkleRoot(bytes32 newMerkleRoot) external onlyOwner {
        merkleRoot = newMerkleRoot;
    }

    function setNewMintPrice(uint256 newMintPriceInWei) external onlyOwner {
        mintPrice = newMintPriceInWei;
    }

    function checkIfMerkleWhitelisted(bytes32[] calldata _merkleProof) internal view returns (bool) {
      bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
      if(MerkleProof.verify(_merkleProof, merkleRoot, leaf)) return true;
      return false;
    }

    function mintSpookle(uint256 mintCount, bytes32[] calldata _merkleProof) payable external {

        require(
            mintCount <= 10,
            "You cannot mint more than 10 Baby Spookles at once!"
        );

        require(
            _tokenIds.current() <= nftLimit, 
            "All Baby Spookles have been minted"
        );

        require(
            _tokenIds.current() + mintCount <= nftLimit, 
            "You cannot mint more than the available Baby Spookles"
        );


        if(_tokenIds.current() < paidMintLimit)
        {
            require(
                _tokenIds.current() + mintCount <= paidMintLimit, 
                "Minting this amount would overlap into the free-ming range"
            );

            require(
                msg.value >= mintPrice * mintCount, 
                "You haven't sent enough ETH to mint"
            );
        }
        else
        {

            bool whitelistMapping = freeMintCount[msg.sender] > 0;
            bool whitelistMerkle = checkIfMerkleWhitelisted(_merkleProof);

            // If msg.sender is not registered in the freeMintMapping
            if(freeMintCount[msg.sender] == 0)
            {
                require(
                    whitelistMerkle, 
                    "You are not whitelisted to free-mint"
                );

                require(
                    mintedCount[msg.sender] < 3,
                    "You have free-minted the maximum NFTs for this address! (3)"
                );

                require(
                    mintCount <= 3, 
                    "You cannot free-mint more than 3 Spookle!"
                );

            }
            else
            {
                require(
                    whitelistMapping, 
                    "You are not whitelisted to free-mint"
                );

                require(
                    mintedCount[msg.sender] + mintCount <= freeMintCount[msg.sender],
                    "You cannot free-mint more than your limit!"
                );

                require(
                    mintedCount[msg.sender] <= freeMintCount[msg.sender],
                    "You have free-minted the maximum NFTs for this address!"
                );


            }
        }
        
        
        for(uint256 i=1; i<= mintCount; i++)
        {
            _tokenIds.increment();
            _safeMint(msg.sender, _tokenIds.current(), "");
            mintedCount[msg.sender]++;
        }
            
    }
}

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":[{"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":"address","name":"inputAddress","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"changeFreeMintCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURL","type":"string"}],"name":"changeMetadataBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"changePaidLimitValue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintCount","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":"getMintedNftCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintCount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintSpookle","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setNewMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newMetadataURI","type":"string"}],"name":"setNewMetadataBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintPriceInWei","type":"uint256"}],"name":"setNewMintPrice","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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"destinationWallet","type":"address"}],"name":"withdrawEthereumBalance","outputs":[],"stateMutability":"payable","type":"function"}]

60e06040526025608081815290620028e160a0398051620000299160089160209091019062000532565b507f5bed4c145a11d0c1a16e3264283d0ca1888e5d3b60a042f9b441a578c2ee5ff9600955662c68af0bb14000600a556115b3600b5561122f600c553480156200007257600080fd5b50604080518082018252600c8082526b426162792053706f6f6b6c6560a01b602080840182815285518087019096529285528401528151919291620000ba9160009162000532565b508051620000d090600190602084019062000532565b505050620000ed620000e7620004dc60201b60201c565b620004e0565b600d60205260607f289ffeef48670c34a03db9643dc3d6ee8ec6aaa26879408b37f0bd708dfbc63f5560187f18dae1d444341f84e6845179062f05246d7e3a4ad39f14b3f9efb1dc922932a555600f7f0c2f83e667b58d015780d17e10c607c0241f20aec92dff6de6bf7354d09c860c8190557f3a0af67b3e87c65fd2d6fcd650074042a060fc54195b114f5718a977da8c0e0755600c7ffcec811371d845539c82bd36d5d1ffce81dfa8573b035baa75393a19a89b5c268190557f175dba2d0ba72029723e638010d541d9361ab9c78b5833c4e7483bcc542142a95560097f65b592e64ead403152e2b55406d4d215e87c1d7ce955edb0f2503e03906d2d0e8190557f54749e484f84d14e202ea31439da33bb4f08bd9619d0e45ac9672f5a665bf6cd8190557f422cec79c816c344cc3f5e87333fee6be4c14c60a9b34c3492e6bf22e7166d5e8190557f1bbc8e0e3bfdaacc8d693ed920c9301f08c66576d87010835b63d4f9040019f25560067f878add48cd21e245734d1c2b8e04fecb74d687b98216d7fc73f4186d3597ff198190557fb17995b4452f49a34b6249c7768cd50711e7425c939d0042d763d2c8463a91228190557f76f1c3ae43007ab7f29e7fc1ffa30a4ba36056ce5122bf016a1b2a010180ddcd8190557f56c6595432beabe460ac9a95e0aebed0db3a51b3426892c23b264a0bd93a52998190557f6d26a0008f28ea99ce17d291990bef07fb3db1c3c070eedf454b044c863b16538190557f16917a752a03447c177902f3eda82eb816369cef8f32fc80fc341cf848e6577c8190557fdabe5922233bc3cf082ba2c2891bb2f83171c31c5bf1f0093b69ab91ec354d1e8190557f71c54681f9fe85740aae6e1a4ed3ba85c8a94036bae5efd18df1dc1690532fa88190557fd0eee37c33ed1ae528c38789572a3d4e8eabd538635879b2a31c25c3cd6b75b18190557f9364f27100087c51c0201301379b32f1640f8ee4d053eeb6a43eb57384648cd18190557f8e733308421e9e3f514256f3a319f45786b9f43f3a9eee7e8db7bc83b6ef25f28190557f3d7d085e1903f220a528d16a3da65524e45199f4db135c9a92782ded0223c5b28190557f5bde72879d6152092bc3dfb7b028cf16b05c4a6489148442d190e24a6ac2b03a8190557ffc27a1e4df04e94a1e1eba2fcb6120d4b2353e38159ca6d028d4ce86e870eba08190557f3abc8c66e3066b98aaa7a2d59b664f9992fa93b2d13906280f29bd931e6c4c298190557f4a2840193ad855b78d9124b6d886d4501c921d0f81a8ca076732124a6ab7f31d81905573b72838cc39de2e1f59740d868c8179c4d103a0956000527f3eef4ed996b8a9ebc45735d4b9e890649a51adc314b1fa0cfa37a58d014a84c65562000615565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200054090620005d8565b90600052602060002090601f016020900481019282620005645760008555620005af565b82601f106200057f57805160ff1916838001178555620005af565b82800160010185558215620005af579182015b82811115620005af57825182559160200191906001019062000592565b50620005bd929150620005c1565b5090565b5b80821115620005bd5760008155600101620005c2565b600181811c90821680620005ed57607f821691505b602082108114156200060f57634e487b7160e01b600052602260045260246000fd5b50919050565b6122bc80620006256000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063bb24de031161008a578063e985e9c511610064578063e985e9c5146104ae578063e9f740bf146104ce578063f2fde38b146104e1578063fddcb5ea1461050157600080fd5b8063bb24de031461045b578063bfa0e6de1461046e578063c87b56dd1461048e57600080fd5b80638da5cb5b116100c65780638da5cb5b146103e857806395d89b4114610406578063a22cb4651461041b578063b88d4fde1461043b57600080fd5b806370a082311461039e578063715018a6146103be5780637b94dd02146103d357600080fd5b80632eb4a7ab116101595780634c12ba33116101335780634c12ba331461028d5780635ecf8a8014610331578063611236a41461035e5780636352211e1461037e57600080fd5b80632eb4a7ab146102cd5780633e0727df146102f157806342842e0e1461031157600080fd5b8063095ea7b311610195578063095ea7b31461024b578063148567c61461026d5780631f7af5691461028d57806323b872dd146102ad57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611c53565b61052e565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610580565b6040516101e89190611cc8565b34801561021f57600080fd5b5061023361022e366004611cdb565b610612565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611d09565b6106ac565b005b34801561027957600080fd5b5061026b610288366004611d09565b6107c2565b34801561029957600080fd5b5061026b6102a8366004611dc1565b610808565b3480156102b957600080fd5b5061026b6102c8366004611e0a565b610849565b3480156102d957600080fd5b506102e360095481565b6040519081526020016101e8565b3480156102fd57600080fd5b5061026b61030c366004611cdb565b61087a565b34801561031d57600080fd5b5061026b61032c366004611e0a565b6108a9565b34801561033d57600080fd5b506102e361034c366004611e4b565b600d6020526000908152604090205481565b34801561036a57600080fd5b5061026b610379366004611cdb565b6108c4565b34801561038a57600080fd5b50610233610399366004611cdb565b6108f3565b3480156103aa57600080fd5b506102e36103b9366004611e4b565b61096a565b3480156103ca57600080fd5b5061026b6109f1565b3480156103df57600080fd5b506102e3610a27565b3480156103f457600080fd5b506006546001600160a01b0316610233565b34801561041257600080fd5b50610206610a37565b34801561042757600080fd5b5061026b610436366004611e68565b610a46565b34801561044757600080fd5b5061026b610456366004611ea6565b610a51565b61026b610469366004611f26565b610a89565b34801561047a57600080fd5b5061026b610489366004611cdb565b610fc0565b34801561049a57600080fd5b506102066104a9366004611cdb565b610fef565b3480156104ba57600080fd5b506101dc6104c9366004611fa5565b610ffa565b61026b6104dc366004611e4b565b611028565b3480156104ed57600080fd5b5061026b6104fc366004611e4b565b61115a565b34801561050d57600080fd5b506102e361051c366004611e4b565b600e6020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b148061055f57506001600160e01b03198216635b5e139f60e01b145b8061057a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461058f90611fd3565b80601f01602080910402602001604051908101604052809291908181526020018280546105bb90611fd3565b80156106085780601f106105dd57610100808354040283529160200191610608565b820191906000526020600020905b8154815290600101906020018083116105eb57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106905760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106b7826108f3565b9050806001600160a01b0316836001600160a01b031614156107255760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610687565b336001600160a01b038216148061074157506107418133610ffa565b6107b35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610687565b6107bd83836111f5565b505050565b6006546001600160a01b031633146107ec5760405162461bcd60e51b81526004016106879061200e565b6001600160a01b039091166000908152600d6020526040902055565b6006546001600160a01b031633146108325760405162461bcd60e51b81526004016106879061200e565b8051610845906008906020840190611ba4565b5050565b6108533382611263565b61086f5760405162461bcd60e51b815260040161068790612043565b6107bd83838361133a565b6006546001600160a01b031633146108a45760405162461bcd60e51b81526004016106879061200e565b600c55565b6107bd83838360405180602001604052806000815250610a51565b6006546001600160a01b031633146108ee5760405162461bcd60e51b81526004016106879061200e565b600955565b6000818152600260205260408120546001600160a01b03168061057a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610687565b60006001600160a01b0382166109d55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610687565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610a1b5760405162461bcd60e51b81526004016106879061200e565b610a2560006114d6565b565b6000610a3260075490565b905090565b60606001805461058f90611fd3565b610845338383611528565b610a5b3383611263565b610a775760405162461bcd60e51b815260040161068790612043565b610a83848484846115f7565b50505050565b600a831115610af65760405162461bcd60e51b815260206004820152603360248201527f596f752063616e6e6f74206d696e74206d6f7265207468616e20313020426162604482015272792053706f6f6b6c6573206174206f6e63652160681b6064820152608401610687565b600b546007541115610b555760405162461bcd60e51b815260206004820152602260248201527f416c6c20426162792053706f6f6b6c65732068617665206265656e206d696e74604482015261195960f21b6064820152608401610687565b600b5483610b6260075490565b610b6c91906120aa565b1115610bd85760405162461bcd60e51b815260206004820152603560248201527f596f752063616e6e6f74206d696e74206d6f7265207468616e2074686520617660448201527461696c61626c6520426162792053706f6f6b6c657360581b6064820152608401610687565b600c546007541015610cdd57600c5483610bf160075490565b610bfb91906120aa565b1115610c6f5760405162461bcd60e51b815260206004820152603a60248201527f4d696e74696e67207468697320616d6f756e7420776f756c64206f7665726c6160448201527f7020696e746f2074686520667265652d6d696e672072616e67650000000000006064820152608401610687565b82600a54610c7d91906120c2565b341015610cd85760405162461bcd60e51b815260206004820152602360248201527f596f7520686176656e27742073656e7420656e6f7567682045544820746f206d6044820152621a5b9d60ea1b6064820152608401610687565b610f53565b336000908152600d6020526040812054151590610cfa848461162a565b336000908152600d6020526040902054909150610e1b5780610d2e5760405162461bcd60e51b8152600401610687906120e1565b336000908152600e6020526040902054600311610db35760405162461bcd60e51b815260206004820152603b60248201527f596f75206861766520667265652d6d696e74656420746865206d6178696d756d60448201527f204e46547320666f7220746869732061646472657373212028332900000000006064820152608401610687565b6003851115610e165760405162461bcd60e51b815260206004820152602960248201527f596f752063616e6e6f7420667265652d6d696e74206d6f7265207468616e20336044820152682053706f6f6b6c652160b81b6064820152608401610687565b610f50565b81610e385760405162461bcd60e51b8152600401610687906120e1565b336000908152600d6020908152604080832054600e90925290912054610e5f9087906120aa565b1115610ec05760405162461bcd60e51b815260206004820152602a60248201527f596f752063616e6e6f7420667265652d6d696e74206d6f7265207468616e20796044820152696f7572206c696d69742160b01b6064820152608401610687565b336000908152600d6020908152604080832054600e909252909120541115610f505760405162461bcd60e51b815260206004820152603760248201527f596f75206861766520667265652d6d696e74656420746865206d6178696d756d60448201527f204e46547320666f7220746869732061646472657373210000000000000000006064820152608401610687565b50505b60015b838111610a8357610f6b600780546001019055565b610f8d33610f7860075490565b604051806020016040528060008152506116bf565b336000908152600e60205260408120805491610fa883612125565b91905055508080610fb890612125565b915050610f56565b6006546001600160a01b03163314610fea5760405162461bcd60e51b81526004016106879061200e565b600a55565b606061057a826116f2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6006546001600160a01b031633146110525760405162461bcd60e51b81526004016106879061200e565b6001600160a01b0381166110be5760405162461bcd60e51b815260206004820152602d60248201527f44657374696e6174696f6e2077616c6c65742063616e6e6f742062652074686560448201526c207a65726f2d6164647265737360981b6064820152608401610687565b600080826001600160a01b03164760405160006040518083038185875af1925050503d806000811461110c576040519150601f19603f3d011682016040523d82523d6000602084013e611111565b606091505b5091509150816107bd5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610687565b6006546001600160a01b031633146111845760405162461bcd60e51b81526004016106879061200e565b6001600160a01b0381166111e95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610687565b6111f2816114d6565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061122a826108f3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112dc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610687565b60006112e7836108f3565b9050806001600160a01b0316846001600160a01b031614806113225750836001600160a01b031661131784610612565b6001600160a01b0316145b8061133257506113328185610ffa565b949350505050565b826001600160a01b031661134d826108f3565b6001600160a01b0316146113b15760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610687565b6001600160a01b0382166114135760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610687565b61141e6000826111f5565b6001600160a01b0383166000908152600360205260408120805460019290611447908490612140565b90915550506001600160a01b03821660009081526003602052604081208054600192906114759084906120aa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561158a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610687565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61160284848461133a565b61160e848484846117cd565b610a835760405162461bcd60e51b815260040161068790612157565b6040516bffffffffffffffffffffffff193360601b16602082015260009081906034016040516020818303038152906040528051906020012090506116a68484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060095491508490506118cb565b156116b557600191505061057a565b5060009392505050565b6116c983836118e1565b6116d660008484846117cd565b6107bd5760405162461bcd60e51b815260040161068790612157565b6000818152600260205260409020546060906001600160a01b03166117715760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610687565b600061177b611a23565b9050600081511161179b57604051806020016040528060008152506117c6565b806117a584611a32565b6040516020016117b69291906121a9565b6040516020818303038152906040525b9392505050565b60006001600160a01b0384163b156118c057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118119033908990889088906004016121d8565b6020604051808303816000875af192505050801561184c575060408051601f3d908101601f1916820190925261184991810190612215565b60015b6118a6573d80801561187a576040519150601f19603f3d011682016040523d82523d6000602084013e61187f565b606091505b50805161189e5760405162461bcd60e51b815260040161068790612157565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611332565b506001949350505050565b6000826118d88584611b30565b14949350505050565b6001600160a01b0382166119375760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610687565b6000818152600260205260409020546001600160a01b03161561199c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610687565b6001600160a01b03821660009081526003602052604081208054600192906119c59084906120aa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60606008805461058f90611fd3565b606081611a565750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a805780611a6a81612125565b9150611a799050600a83612248565b9150611a5a565b60008167ffffffffffffffff811115611a9b57611a9b611d35565b6040519080825280601f01601f191660200182016040528015611ac5576020820181803683370190505b5090505b841561133257611ada600183612140565b9150611ae7600a8661225c565b611af29060306120aa565b60f81b818381518110611b0757611b07612270565b60200101906001600160f81b031916908160001a905350611b29600a86612248565b9450611ac9565b600081815b8451811015611b9c576000858281518110611b5257611b52612270565b60200260200101519050808311611b785760008381526020829052604090209250611b89565b600081815260208490526040902092505b5080611b9481612125565b915050611b35565b509392505050565b828054611bb090611fd3565b90600052602060002090601f016020900481019282611bd25760008555611c18565b82601f10611beb57805160ff1916838001178555611c18565b82800160010185558215611c18579182015b82811115611c18578251825591602001919060010190611bfd565b50611c24929150611c28565b5090565b5b80821115611c245760008155600101611c29565b6001600160e01b0319811681146111f257600080fd5b600060208284031215611c6557600080fd5b81356117c681611c3d565b60005b83811015611c8b578181015183820152602001611c73565b83811115610a835750506000910152565b60008151808452611cb4816020860160208601611c70565b601f01601f19169290920160200192915050565b6020815260006117c66020830184611c9c565b600060208284031215611ced57600080fd5b5035919050565b6001600160a01b03811681146111f257600080fd5b60008060408385031215611d1c57600080fd5b8235611d2781611cf4565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d6657611d66611d35565b604051601f8501601f19908116603f01168101908282118183101715611d8e57611d8e611d35565b81604052809350858152868686011115611da757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611dd357600080fd5b813567ffffffffffffffff811115611dea57600080fd5b8201601f81018413611dfb57600080fd5b61133284823560208401611d4b565b600080600060608486031215611e1f57600080fd5b8335611e2a81611cf4565b92506020840135611e3a81611cf4565b929592945050506040919091013590565b600060208284031215611e5d57600080fd5b81356117c681611cf4565b60008060408385031215611e7b57600080fd5b8235611e8681611cf4565b915060208301358015158114611e9b57600080fd5b809150509250929050565b60008060008060808587031215611ebc57600080fd5b8435611ec781611cf4565b93506020850135611ed781611cf4565b925060408501359150606085013567ffffffffffffffff811115611efa57600080fd5b8501601f81018713611f0b57600080fd5b611f1a87823560208401611d4b565b91505092959194509250565b600080600060408486031215611f3b57600080fd5b83359250602084013567ffffffffffffffff80821115611f5a57600080fd5b818601915086601f830112611f6e57600080fd5b813581811115611f7d57600080fd5b8760208260051b8501011115611f9257600080fd5b6020830194508093505050509250925092565b60008060408385031215611fb857600080fd5b8235611fc381611cf4565b91506020830135611e9b81611cf4565b600181811c90821680611fe757607f821691505b6020821081141561200857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156120bd576120bd612094565b500190565b60008160001904831182151516156120dc576120dc612094565b500290565b60208082526024908201527f596f7520617265206e6f742077686974656c697374656420746f20667265652d6040820152631b5a5b9d60e21b606082015260800190565b600060001982141561213957612139612094565b5060010190565b60008282101561215257612152612094565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600083516121bb818460208801611c70565b8351908301906121cf818360208801611c70565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061220b90830184611c9c565b9695505050505050565b60006020828403121561222757600080fd5b81516117c681611c3d565b634e487b7160e01b600052601260045260246000fd5b60008261225757612257612232565b500490565b60008261226b5761226b612232565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212202f9bb5e2aefca91101ae0d7095c1312e4966e6439bb5d6ff908875aad4e98cf964736f6c634300080b003368747470733a2f2f73706f6f6b6c65732e6170702f626162792f6d6574616461746176342f

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063bb24de031161008a578063e985e9c511610064578063e985e9c5146104ae578063e9f740bf146104ce578063f2fde38b146104e1578063fddcb5ea1461050157600080fd5b8063bb24de031461045b578063bfa0e6de1461046e578063c87b56dd1461048e57600080fd5b80638da5cb5b116100c65780638da5cb5b146103e857806395d89b4114610406578063a22cb4651461041b578063b88d4fde1461043b57600080fd5b806370a082311461039e578063715018a6146103be5780637b94dd02146103d357600080fd5b80632eb4a7ab116101595780634c12ba33116101335780634c12ba331461028d5780635ecf8a8014610331578063611236a41461035e5780636352211e1461037e57600080fd5b80632eb4a7ab146102cd5780633e0727df146102f157806342842e0e1461031157600080fd5b8063095ea7b311610195578063095ea7b31461024b578063148567c61461026d5780631f7af5691461028d57806323b872dd146102ad57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611c53565b61052e565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610580565b6040516101e89190611cc8565b34801561021f57600080fd5b5061023361022e366004611cdb565b610612565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611d09565b6106ac565b005b34801561027957600080fd5b5061026b610288366004611d09565b6107c2565b34801561029957600080fd5b5061026b6102a8366004611dc1565b610808565b3480156102b957600080fd5b5061026b6102c8366004611e0a565b610849565b3480156102d957600080fd5b506102e360095481565b6040519081526020016101e8565b3480156102fd57600080fd5b5061026b61030c366004611cdb565b61087a565b34801561031d57600080fd5b5061026b61032c366004611e0a565b6108a9565b34801561033d57600080fd5b506102e361034c366004611e4b565b600d6020526000908152604090205481565b34801561036a57600080fd5b5061026b610379366004611cdb565b6108c4565b34801561038a57600080fd5b50610233610399366004611cdb565b6108f3565b3480156103aa57600080fd5b506102e36103b9366004611e4b565b61096a565b3480156103ca57600080fd5b5061026b6109f1565b3480156103df57600080fd5b506102e3610a27565b3480156103f457600080fd5b506006546001600160a01b0316610233565b34801561041257600080fd5b50610206610a37565b34801561042757600080fd5b5061026b610436366004611e68565b610a46565b34801561044757600080fd5b5061026b610456366004611ea6565b610a51565b61026b610469366004611f26565b610a89565b34801561047a57600080fd5b5061026b610489366004611cdb565b610fc0565b34801561049a57600080fd5b506102066104a9366004611cdb565b610fef565b3480156104ba57600080fd5b506101dc6104c9366004611fa5565b610ffa565b61026b6104dc366004611e4b565b611028565b3480156104ed57600080fd5b5061026b6104fc366004611e4b565b61115a565b34801561050d57600080fd5b506102e361051c366004611e4b565b600e6020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b148061055f57506001600160e01b03198216635b5e139f60e01b145b8061057a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461058f90611fd3565b80601f01602080910402602001604051908101604052809291908181526020018280546105bb90611fd3565b80156106085780601f106105dd57610100808354040283529160200191610608565b820191906000526020600020905b8154815290600101906020018083116105eb57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106905760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106b7826108f3565b9050806001600160a01b0316836001600160a01b031614156107255760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610687565b336001600160a01b038216148061074157506107418133610ffa565b6107b35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610687565b6107bd83836111f5565b505050565b6006546001600160a01b031633146107ec5760405162461bcd60e51b81526004016106879061200e565b6001600160a01b039091166000908152600d6020526040902055565b6006546001600160a01b031633146108325760405162461bcd60e51b81526004016106879061200e565b8051610845906008906020840190611ba4565b5050565b6108533382611263565b61086f5760405162461bcd60e51b815260040161068790612043565b6107bd83838361133a565b6006546001600160a01b031633146108a45760405162461bcd60e51b81526004016106879061200e565b600c55565b6107bd83838360405180602001604052806000815250610a51565b6006546001600160a01b031633146108ee5760405162461bcd60e51b81526004016106879061200e565b600955565b6000818152600260205260408120546001600160a01b03168061057a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610687565b60006001600160a01b0382166109d55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610687565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610a1b5760405162461bcd60e51b81526004016106879061200e565b610a2560006114d6565b565b6000610a3260075490565b905090565b60606001805461058f90611fd3565b610845338383611528565b610a5b3383611263565b610a775760405162461bcd60e51b815260040161068790612043565b610a83848484846115f7565b50505050565b600a831115610af65760405162461bcd60e51b815260206004820152603360248201527f596f752063616e6e6f74206d696e74206d6f7265207468616e20313020426162604482015272792053706f6f6b6c6573206174206f6e63652160681b6064820152608401610687565b600b546007541115610b555760405162461bcd60e51b815260206004820152602260248201527f416c6c20426162792053706f6f6b6c65732068617665206265656e206d696e74604482015261195960f21b6064820152608401610687565b600b5483610b6260075490565b610b6c91906120aa565b1115610bd85760405162461bcd60e51b815260206004820152603560248201527f596f752063616e6e6f74206d696e74206d6f7265207468616e2074686520617660448201527461696c61626c6520426162792053706f6f6b6c657360581b6064820152608401610687565b600c546007541015610cdd57600c5483610bf160075490565b610bfb91906120aa565b1115610c6f5760405162461bcd60e51b815260206004820152603a60248201527f4d696e74696e67207468697320616d6f756e7420776f756c64206f7665726c6160448201527f7020696e746f2074686520667265652d6d696e672072616e67650000000000006064820152608401610687565b82600a54610c7d91906120c2565b341015610cd85760405162461bcd60e51b815260206004820152602360248201527f596f7520686176656e27742073656e7420656e6f7567682045544820746f206d6044820152621a5b9d60ea1b6064820152608401610687565b610f53565b336000908152600d6020526040812054151590610cfa848461162a565b336000908152600d6020526040902054909150610e1b5780610d2e5760405162461bcd60e51b8152600401610687906120e1565b336000908152600e6020526040902054600311610db35760405162461bcd60e51b815260206004820152603b60248201527f596f75206861766520667265652d6d696e74656420746865206d6178696d756d60448201527f204e46547320666f7220746869732061646472657373212028332900000000006064820152608401610687565b6003851115610e165760405162461bcd60e51b815260206004820152602960248201527f596f752063616e6e6f7420667265652d6d696e74206d6f7265207468616e20336044820152682053706f6f6b6c652160b81b6064820152608401610687565b610f50565b81610e385760405162461bcd60e51b8152600401610687906120e1565b336000908152600d6020908152604080832054600e90925290912054610e5f9087906120aa565b1115610ec05760405162461bcd60e51b815260206004820152602a60248201527f596f752063616e6e6f7420667265652d6d696e74206d6f7265207468616e20796044820152696f7572206c696d69742160b01b6064820152608401610687565b336000908152600d6020908152604080832054600e909252909120541115610f505760405162461bcd60e51b815260206004820152603760248201527f596f75206861766520667265652d6d696e74656420746865206d6178696d756d60448201527f204e46547320666f7220746869732061646472657373210000000000000000006064820152608401610687565b50505b60015b838111610a8357610f6b600780546001019055565b610f8d33610f7860075490565b604051806020016040528060008152506116bf565b336000908152600e60205260408120805491610fa883612125565b91905055508080610fb890612125565b915050610f56565b6006546001600160a01b03163314610fea5760405162461bcd60e51b81526004016106879061200e565b600a55565b606061057a826116f2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6006546001600160a01b031633146110525760405162461bcd60e51b81526004016106879061200e565b6001600160a01b0381166110be5760405162461bcd60e51b815260206004820152602d60248201527f44657374696e6174696f6e2077616c6c65742063616e6e6f742062652074686560448201526c207a65726f2d6164647265737360981b6064820152608401610687565b600080826001600160a01b03164760405160006040518083038185875af1925050503d806000811461110c576040519150601f19603f3d011682016040523d82523d6000602084013e611111565b606091505b5091509150816107bd5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610687565b6006546001600160a01b031633146111845760405162461bcd60e51b81526004016106879061200e565b6001600160a01b0381166111e95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610687565b6111f2816114d6565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061122a826108f3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112dc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610687565b60006112e7836108f3565b9050806001600160a01b0316846001600160a01b031614806113225750836001600160a01b031661131784610612565b6001600160a01b0316145b8061133257506113328185610ffa565b949350505050565b826001600160a01b031661134d826108f3565b6001600160a01b0316146113b15760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610687565b6001600160a01b0382166114135760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610687565b61141e6000826111f5565b6001600160a01b0383166000908152600360205260408120805460019290611447908490612140565b90915550506001600160a01b03821660009081526003602052604081208054600192906114759084906120aa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561158a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610687565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61160284848461133a565b61160e848484846117cd565b610a835760405162461bcd60e51b815260040161068790612157565b6040516bffffffffffffffffffffffff193360601b16602082015260009081906034016040516020818303038152906040528051906020012090506116a68484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060095491508490506118cb565b156116b557600191505061057a565b5060009392505050565b6116c983836118e1565b6116d660008484846117cd565b6107bd5760405162461bcd60e51b815260040161068790612157565b6000818152600260205260409020546060906001600160a01b03166117715760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610687565b600061177b611a23565b9050600081511161179b57604051806020016040528060008152506117c6565b806117a584611a32565b6040516020016117b69291906121a9565b6040516020818303038152906040525b9392505050565b60006001600160a01b0384163b156118c057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118119033908990889088906004016121d8565b6020604051808303816000875af192505050801561184c575060408051601f3d908101601f1916820190925261184991810190612215565b60015b6118a6573d80801561187a576040519150601f19603f3d011682016040523d82523d6000602084013e61187f565b606091505b50805161189e5760405162461bcd60e51b815260040161068790612157565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611332565b506001949350505050565b6000826118d88584611b30565b14949350505050565b6001600160a01b0382166119375760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610687565b6000818152600260205260409020546001600160a01b03161561199c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610687565b6001600160a01b03821660009081526003602052604081208054600192906119c59084906120aa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60606008805461058f90611fd3565b606081611a565750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a805780611a6a81612125565b9150611a799050600a83612248565b9150611a5a565b60008167ffffffffffffffff811115611a9b57611a9b611d35565b6040519080825280601f01601f191660200182016040528015611ac5576020820181803683370190505b5090505b841561133257611ada600183612140565b9150611ae7600a8661225c565b611af29060306120aa565b60f81b818381518110611b0757611b07612270565b60200101906001600160f81b031916908160001a905350611b29600a86612248565b9450611ac9565b600081815b8451811015611b9c576000858281518110611b5257611b52612270565b60200260200101519050808311611b785760008381526020829052604090209250611b89565b600081815260208490526040902092505b5080611b9481612125565b915050611b35565b509392505050565b828054611bb090611fd3565b90600052602060002090601f016020900481019282611bd25760008555611c18565b82601f10611beb57805160ff1916838001178555611c18565b82800160010185558215611c18579182015b82811115611c18578251825591602001919060010190611bfd565b50611c24929150611c28565b5090565b5b80821115611c245760008155600101611c29565b6001600160e01b0319811681146111f257600080fd5b600060208284031215611c6557600080fd5b81356117c681611c3d565b60005b83811015611c8b578181015183820152602001611c73565b83811115610a835750506000910152565b60008151808452611cb4816020860160208601611c70565b601f01601f19169290920160200192915050565b6020815260006117c66020830184611c9c565b600060208284031215611ced57600080fd5b5035919050565b6001600160a01b03811681146111f257600080fd5b60008060408385031215611d1c57600080fd5b8235611d2781611cf4565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d6657611d66611d35565b604051601f8501601f19908116603f01168101908282118183101715611d8e57611d8e611d35565b81604052809350858152868686011115611da757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611dd357600080fd5b813567ffffffffffffffff811115611dea57600080fd5b8201601f81018413611dfb57600080fd5b61133284823560208401611d4b565b600080600060608486031215611e1f57600080fd5b8335611e2a81611cf4565b92506020840135611e3a81611cf4565b929592945050506040919091013590565b600060208284031215611e5d57600080fd5b81356117c681611cf4565b60008060408385031215611e7b57600080fd5b8235611e8681611cf4565b915060208301358015158114611e9b57600080fd5b809150509250929050565b60008060008060808587031215611ebc57600080fd5b8435611ec781611cf4565b93506020850135611ed781611cf4565b925060408501359150606085013567ffffffffffffffff811115611efa57600080fd5b8501601f81018713611f0b57600080fd5b611f1a87823560208401611d4b565b91505092959194509250565b600080600060408486031215611f3b57600080fd5b83359250602084013567ffffffffffffffff80821115611f5a57600080fd5b818601915086601f830112611f6e57600080fd5b813581811115611f7d57600080fd5b8760208260051b8501011115611f9257600080fd5b6020830194508093505050509250925092565b60008060408385031215611fb857600080fd5b8235611fc381611cf4565b91506020830135611e9b81611cf4565b600181811c90821680611fe757607f821691505b6020821081141561200857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156120bd576120bd612094565b500190565b60008160001904831182151516156120dc576120dc612094565b500290565b60208082526024908201527f596f7520617265206e6f742077686974656c697374656420746f20667265652d6040820152631b5a5b9d60e21b606082015260800190565b600060001982141561213957612139612094565b5060010190565b60008282101561215257612152612094565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600083516121bb818460208801611c70565b8351908301906121cf818360208801611c70565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061220b90830184611c9c565b9695505050505050565b60006020828403121561222757600080fd5b81516117c681611c3d565b634e487b7160e01b600052601260045260246000fd5b60008261225757612257612232565b500490565b60008261226b5761226b612232565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212202f9bb5e2aefca91101ae0d7095c1312e4966e6439bb5d6ff908875aad4e98cf964736f6c634300080b0033

Deployed Bytecode Sourcemap

41682:6981:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28501:305;;;;;;;;;;-1:-1:-1;28501:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;28501:305:0;;;;;;;;29446:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31006:221::-;;;;;;;;;;-1:-1:-1;31006:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;31006:221:0;1528:203:1;30529:411:0;;;;;;;;;;-1:-1:-1;30529:411:0;;;;;:::i;:::-;;:::i;:::-;;44385:139;;;;;;;;;;-1:-1:-1;44385:139:0;;;;;:::i;:::-;;:::i;45028:133::-;;;;;;;;;;-1:-1:-1;45028:133:0;;;;;:::i;:::-;;:::i;31756:339::-;;;;;;;;;;-1:-1:-1;31756:339:0;;;;;:::i;:::-;;:::i;41890:94::-;;;;;;;;;;;;;;;;;;;4024:25:1;;;4012:2;3997:18;41890:94:0;3878:177:1;44655:104:0;;;;;;;;;;-1:-1:-1;44655:104:0;;;;;:::i;:::-;;:::i;32166:185::-;;;;;;;;;;-1:-1:-1;32166:185:0;;;;;:::i;:::-;;:::i;42102:48::-;;;;;;;;;;-1:-1:-1;42102:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;45565:113;;;;;;;;;;-1:-1:-1;45565:113:0;;;;;:::i;:::-;;:::i;29140:239::-;;;;;;;;;;-1:-1:-1;29140:239:0;;;;;:::i;:::-;;:::i;28870:208::-;;;;;;;;;;-1:-1:-1;28870:208:0;;;;;:::i;:::-;;:::i;8781:103::-;;;;;;;;;;;;;:::i;44767:106::-;;;;;;;;;;;;;:::i;8130:87::-;;;;;;;;;;-1:-1:-1;8203:6:0;;-1:-1:-1;;;;;8203:6:0;8130:87;;29615:104;;;;;;;;;;;;;:::i;31299:155::-;;;;;;;;;;-1:-1:-1;31299:155:0;;;;;:::i;:::-;;:::i;32422:328::-;;;;;;;;;;-1:-1:-1;32422:328:0;;;;;:::i;:::-;;:::i;46084:2576::-;;;;;;:::i;:::-;;:::i;45686:119::-;;;;;;;;;;-1:-1:-1;45686:119:0;;;;;:::i;:::-;;:::i;44881:137::-;;;;;;;;;;-1:-1:-1;44881:137:0;;;;;:::i;:::-;;:::i;31525:164::-;;;;;;;;;;-1:-1:-1;31525:164:0;;;;;:::i;:::-;;:::i;45169:386::-;;;;;;:::i;:::-;;:::i;9039:201::-;;;;;;;;;;-1:-1:-1;9039:201:0;;;;;:::i;:::-;;:::i;42157:46::-;;;;;;;;;;-1:-1:-1;42157:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;28501:305;28603:4;-1:-1:-1;;;;;;28640:40:0;;-1:-1:-1;;;28640:40:0;;:105;;-1:-1:-1;;;;;;;28697:48:0;;-1:-1:-1;;;28697:48:0;28640:105;:158;;;-1:-1:-1;;;;;;;;;;21220:40:0;;;28762:36;28620:178;28501:305;-1:-1:-1;;28501:305:0:o;29446:100::-;29500:13;29533:5;29526:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29446:100;:::o;31006:221::-;31082:7;34349:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34349:16:0;31102:73;;;;-1:-1:-1;;;31102:73:0;;7828:2:1;31102:73:0;;;7810:21:1;7867:2;7847:18;;;7840:30;7906:34;7886:18;;;7879:62;-1:-1:-1;;;7957:18:1;;;7950:42;8009:19;;31102:73:0;;;;;;;;;-1:-1:-1;31195:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31195:24:0;;31006:221::o;30529:411::-;30610:13;30626:23;30641:7;30626:14;:23::i;:::-;30610:39;;30674:5;-1:-1:-1;;;;;30668:11:0;:2;-1:-1:-1;;;;;30668:11:0;;;30660:57;;;;-1:-1:-1;;;30660:57:0;;8241:2:1;30660:57:0;;;8223:21:1;8280:2;8260:18;;;8253:30;8319:34;8299:18;;;8292:62;-1:-1:-1;;;8370:18:1;;;8363:31;8411:19;;30660:57:0;8039:397:1;30660:57:0;6881:10;-1:-1:-1;;;;;30752:21:0;;;;:62;;-1:-1:-1;30777:37:0;30794:5;6881:10;31525:164;:::i;30777:37::-;30730:168;;;;-1:-1:-1;;;30730:168:0;;8643:2:1;30730:168:0;;;8625:21:1;8682:2;8662:18;;;8655:30;8721:34;8701:18;;;8694:62;8792:26;8772:18;;;8765:54;8836:19;;30730:168:0;8441:420:1;30730:168:0;30911:21;30920:2;30924:7;30911:8;:21::i;:::-;30599:341;30529:411;;:::o;44385:139::-;8203:6;;-1:-1:-1;;;;;8203:6:0;6881:10;8350:23;8342:68;;;;-1:-1:-1;;;8342:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44481:27:0;;::::1;;::::0;;;:13:::1;:27;::::0;;;;:35;44385:139::o;45028:133::-;8203:6;;-1:-1:-1;;;;;8203:6:0;6881:10;8350:23;8342:68;;;;-1:-1:-1;;;8342:68:0;;;;;;;:::i;:::-;45120:33;;::::1;::::0;:15:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45028:133:::0;:::o;31756:339::-;31951:41;6881:10;31984:7;31951:18;:41::i;:::-;31943:103;;;;-1:-1:-1;;;31943:103:0;;;;;;;:::i;:::-;32059:28;32069:4;32075:2;32079:7;32059:9;:28::i;44655:104::-;8203:6;;-1:-1:-1;;;;;8203:6:0;6881:10;8350:23;8342:68;;;;-1:-1:-1;;;8342:68:0;;;;;;;:::i;:::-;44730:13:::1;:21:::0;44655:104::o;32166:185::-;32304:39;32321:4;32327:2;32331:7;32304:39;;;;;;;;;;;;:16;:39::i;45565:113::-;8203:6;;-1:-1:-1;;;;;8203:6:0;6881:10;8350:23;8342:68;;;;-1:-1:-1;;;8342:68:0;;;;;;;:::i;:::-;45644:10:::1;:26:::0;45565:113::o;29140:239::-;29212:7;29248:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29248:16:0;29283:19;29275:73;;;;-1:-1:-1;;;29275:73:0;;9847:2:1;29275:73:0;;;9829:21:1;9886:2;9866:18;;;9859:30;9925:34;9905:18;;;9898:62;-1:-1:-1;;;9976:18:1;;;9969:39;10025:19;;29275:73:0;9645:405:1;28870:208:0;28942:7;-1:-1:-1;;;;;28970:19:0;;28962:74;;;;-1:-1:-1;;;28962:74:0;;10257:2:1;28962:74:0;;;10239:21:1;10296:2;10276:18;;;10269:30;10335:34;10315:18;;;10308:62;-1:-1:-1;;;10386:18:1;;;10379:40;10436:19;;28962:74:0;10055:406:1;28962:74:0;-1:-1:-1;;;;;;29054:16:0;;;;;:9;:16;;;;;;;28870:208::o;8781:103::-;8203:6;;-1:-1:-1;;;;;8203:6:0;6881:10;8350:23;8342:68;;;;-1:-1:-1;;;8342:68:0;;;;;;;:::i;:::-;8846:30:::1;8873:1;8846:18;:30::i;:::-;8781:103::o:0;44767:106::-;44819:7;44846:19;:9;964:14;;872:114;44846:19;44839:26;;44767:106;:::o;29615:104::-;29671:13;29704:7;29697:14;;;;;:::i;31299:155::-;31394:52;6881:10;31427:8;31437;31394:18;:52::i;32422:328::-;32597:41;6881:10;32630:7;32597:18;:41::i;:::-;32589:103;;;;-1:-1:-1;;;32589:103:0;;;;;;;:::i;:::-;32703:39;32717:4;32723:2;32727:7;32736:5;32703:13;:39::i;:::-;32422:328;;;;:::o;46084:2576::-;46222:2;46209:9;:15;;46187:116;;;;-1:-1:-1;;;46187:116:0;;10668:2:1;46187:116:0;;;10650:21:1;10707:2;10687:18;;;10680:30;10746:34;10726:18;;;10719:62;-1:-1:-1;;;10797:18:1;;;10790:49;10856:19;;46187:116:0;10466:415:1;46187:116:0;46361:8;;46338:9;964:14;46338:31;;46316:116;;;;-1:-1:-1;;;46316:116:0;;11088:2:1;46316:116:0;;;11070:21:1;11127:2;11107:18;;;11100:30;11166:34;11146:18;;;11139:62;-1:-1:-1;;;11217:18:1;;;11210:32;11259:19;;46316:116:0;10886:398:1;46316:116:0;46502:8;;46489:9;46467:19;:9;964:14;;872:114;46467:19;:31;;;;:::i;:::-;:43;;46445:147;;;;-1:-1:-1;;;46445:147:0;;11756:2:1;46445:147:0;;;11738:21:1;11795:2;11775:18;;;11768:30;11834:34;11814:18;;;11807:62;-1:-1:-1;;;11885:18:1;;;11878:51;11946:19;;46445:147:0;11554:417:1;46445:147:0;46632:13;;46610:9;964:14;46610:35;46607:1807;;;46732:13;;46719:9;46697:19;:9;964:14;;872:114;46697:19;:31;;;;:::i;:::-;:48;;46671:169;;;;-1:-1:-1;;;46671:169:0;;12178:2:1;46671:169:0;;;12160:21:1;12217:2;12197:18;;;12190:30;12256:34;12236:18;;;12229:62;12327:28;12307:18;;;12300:56;12373:19;;46671:169:0;11976:422:1;46671:169:0;46908:9;46896;;:21;;;;:::i;:::-;46883:9;:34;;46857:132;;;;-1:-1:-1;;;46857:132:0;;12778:2:1;46857:132:0;;;12760:21:1;12817:2;12797:18;;;12790:30;12856:34;12836:18;;;12829:62;-1:-1:-1;;;12907:18:1;;;12900:33;12950:19;;46857:132:0;12576:399:1;46857:132:0;46607:1807;;;47080:10;47042:21;47066:25;;;:13;:25;;;;;;:29;;;47133:38;47158:12;;47133:24;:38::i;:::-;47276:10;47262:25;;;;:13;:25;;;;;;47110:61;;-1:-1:-1;47259:1144:0;;47356:15;47326:126;;;;-1:-1:-1;;;47326:126:0;;;;;;;:::i;:::-;47515:10;47503:23;;;;:11;:23;;;;;;47529:1;-1:-1:-1;47473:160:0;;;;-1:-1:-1;;;47473:160:0;;13587:2:1;47473:160:0;;;13569:21:1;13626:2;13606:18;;;13599:30;13665:34;13645:18;;;13638:62;13736:29;13716:18;;;13709:57;13783:19;;47473:160:0;13385:423:1;47473:160:0;47697:1;47684:9;:14;;47654:130;;;;-1:-1:-1;;;47654:130:0;;14015:2:1;47654:130:0;;;13997:21:1;14054:2;14034:18;;;14027:30;14093:34;14073:18;;;14066:62;-1:-1:-1;;;14144:18:1;;;14137:39;14193:19;;47654:130:0;13813:405:1;47654:130:0;47259:1144;;;47883:16;47853:127;;;;-1:-1:-1;;;47853:127:0;;;;;;;:::i;:::-;48084:10;48070:25;;;;:13;:25;;;;;;;;;48031:11;:23;;;;;;;:35;;48057:9;;48031:35;:::i;:::-;:64;;48001:180;;;;-1:-1:-1;;;48001:180:0;;14425:2:1;48001:180:0;;;14407:21:1;14464:2;14444:18;;;14437:30;14503:34;14483:18;;;14476:62;-1:-1:-1;;;14554:18:1;;;14547:40;14604:19;;48001:180:0;14223:406:1;48001:180:0;48273:10;48259:25;;;;:13;:25;;;;;;;;;48232:11;:23;;;;;;;:52;;48202:181;;;;-1:-1:-1;;;48202:181:0;;14836:2:1;48202:181:0;;;14818:21:1;14875:2;14855:18;;;14848:30;14914:34;14894:18;;;14887:62;14985:25;14965:18;;;14958:53;15028:19;;48202:181:0;14634:419:1;48202:181:0;47025:1389;;46607:1807;48458:1;48444:195;48465:9;48461:1;:13;48444:195;;48505:21;:9;1083:19;;1101:1;1083:19;;;994:127;48505:21;48541:46;48551:10;48563:19;:9;964:14;;872:114;48563:19;48541:46;;;;;;;;;;;;:9;:46::i;:::-;48614:10;48602:23;;;;:11;:23;;;;;:25;;;;;;:::i;:::-;;;;;;48476:3;;;;;:::i;:::-;;;;48444:195;;45686:119;8203:6;;-1:-1:-1;;;;;8203:6:0;6881:10;8350:23;8342:68;;;;-1:-1:-1;;;8342:68:0;;;;;;;:::i;:::-;45768:9:::1;:29:::0;45686:119::o;44881:137::-;44954:13;44987:23;45002:7;44987:14;:23::i;31525:164::-;-1:-1:-1;;;;;31646:25:0;;;31622:4;31646:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31525:164::o;45169:386::-;8203:6;;-1:-1:-1;;;;;8203:6:0;6881:10;8350:23;8342:68;;;;-1:-1:-1;;;8342:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45297:31:0;::::1;45275:126;;;::::0;-1:-1:-1;;;45275:126:0;;15400:2:1;45275:126:0::1;::::0;::::1;15382:21:1::0;15439:2;15419:18;;;15412:30;15478:34;15458:18;;;15451:62;-1:-1:-1;;;15529:18:1;;;15522:43;15582:19;;45275:126:0::1;15198:409:1::0;45275:126:0::1;45415:9;45426:17:::0;45447::::1;-1:-1:-1::0;;;;;45447:22:0::1;45477:21;45447:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45414:89;;;;45518:4;45510:37;;;::::0;-1:-1:-1;;;45510:37:0;;16024:2:1;45510:37:0::1;::::0;::::1;16006:21:1::0;16063:2;16043:18;;;16036:30;-1:-1:-1;;;16082:18:1;;;16075:50;16142:18;;45510:37:0::1;15822:344:1::0;9039:201:0;8203:6;;-1:-1:-1;;;;;8203:6:0;6881:10;8350:23;8342:68;;;;-1:-1:-1;;;8342:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9128:22:0;::::1;9120:73;;;::::0;-1:-1:-1;;;9120:73:0;;16373:2:1;9120:73:0::1;::::0;::::1;16355:21:1::0;16412:2;16392:18;;;16385:30;16451:34;16431:18;;;16424:62;-1:-1:-1;;;16502:18:1;;;16495:36;16548:19;;9120:73:0::1;16171:402:1::0;9120:73:0::1;9204:28;9223:8;9204:18;:28::i;:::-;9039:201:::0;:::o;38406:174::-;38481:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38481:29:0;-1:-1:-1;;;;;38481:29:0;;;;;;;;:24;;38535:23;38481:24;38535:14;:23::i;:::-;-1:-1:-1;;;;;38526:46:0;;;;;;;;;;;38406:174;;:::o;34554:348::-;34647:4;34349:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34349:16:0;34664:73;;;;-1:-1:-1;;;34664:73:0;;16780:2:1;34664:73:0;;;16762:21:1;16819:2;16799:18;;;16792:30;16858:34;16838:18;;;16831:62;-1:-1:-1;;;16909:18:1;;;16902:42;16961:19;;34664:73:0;16578:408:1;34664:73:0;34748:13;34764:23;34779:7;34764:14;:23::i;:::-;34748:39;;34817:5;-1:-1:-1;;;;;34806:16:0;:7;-1:-1:-1;;;;;34806:16:0;;:51;;;;34850:7;-1:-1:-1;;;;;34826:31:0;:20;34838:7;34826:11;:20::i;:::-;-1:-1:-1;;;;;34826:31:0;;34806:51;:87;;;;34861:32;34878:5;34885:7;34861:16;:32::i;:::-;34798:96;34554:348;-1:-1:-1;;;;34554:348:0:o;37663:625::-;37822:4;-1:-1:-1;;;;;37795:31:0;:23;37810:7;37795:14;:23::i;:::-;-1:-1:-1;;;;;37795:31:0;;37787:81;;;;-1:-1:-1;;;37787:81:0;;17193:2:1;37787:81:0;;;17175:21:1;17232:2;17212:18;;;17205:30;17271:34;17251:18;;;17244:62;-1:-1:-1;;;17322:18:1;;;17315:35;17367:19;;37787:81:0;16991:401:1;37787:81:0;-1:-1:-1;;;;;37887:16:0;;37879:65;;;;-1:-1:-1;;;37879:65:0;;17599:2:1;37879:65:0;;;17581:21:1;17638:2;17618:18;;;17611:30;17677:34;17657:18;;;17650:62;-1:-1:-1;;;17728:18:1;;;17721:34;17772:19;;37879:65:0;17397:400:1;37879:65:0;38061:29;38078:1;38082:7;38061:8;:29::i;:::-;-1:-1:-1;;;;;38103:15:0;;;;;;:9;:15;;;;;:20;;38122:1;;38103:15;:20;;38122:1;;38103:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38134:13:0;;;;;;:9;:13;;;;;:18;;38151:1;;38134:13;:18;;38151:1;;38134:18;:::i;:::-;;;;-1:-1:-1;;38163:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38163:21:0;-1:-1:-1;;;;;38163:21:0;;;;;;;;;38202:27;;38163:16;;38202:27;;;;;;;30599:341;30529:411;;:::o;9400:191::-;9493:6;;;-1:-1:-1;;;;;9510:17:0;;;-1:-1:-1;;;;;;9510:17:0;;;;;;;9543:40;;9493:6;;;9510:17;9493:6;;9543:40;;9474:16;;9543:40;9463:128;9400:191;:::o;38722:315::-;38877:8;-1:-1:-1;;;;;38868:17:0;:5;-1:-1:-1;;;;;38868:17:0;;;38860:55;;;;-1:-1:-1;;;38860:55:0;;18134:2:1;38860:55:0;;;18116:21:1;18173:2;18153:18;;;18146:30;18212:27;18192:18;;;18185:55;18257:18;;38860:55:0;17932:349:1;38860:55:0;-1:-1:-1;;;;;38926:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;38926:46:0;;;;;;;;;;38988:41;;540::1;;;38988::0;;513:18:1;38988:41:0;;;;;;;38722:315;;;:::o;33632:::-;33789:28;33799:4;33805:2;33809:7;33789:9;:28::i;:::-;33836:48;33859:4;33865:2;33869:7;33878:5;33836:22;:48::i;:::-;33828:111;;;;-1:-1:-1;;;33828:111:0;;;;;;;:::i;45813:263::-;45943:28;;-1:-1:-1;;45960:10:0;18854:2:1;18850:15;18846:53;45943:28:0;;;18834:66:1;45903:4:0;;;;18916:12:1;;45943:28:0;;;;;;;;;;;;45933:39;;;;;;45918:54;;45984:50;46003:12;;45984:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46017:10:0;;;-1:-1:-1;46029:4:0;;-1:-1:-1;45984:18:0;:50::i;:::-;45981:66;;;46043:4;46036:11;;;;;45981:66;-1:-1:-1;46063:5:0;;45813:263;-1:-1:-1;;;45813:263:0:o;35581:321::-;35711:18;35717:2;35721:7;35711:5;:18::i;:::-;35762:54;35793:1;35797:2;35801:7;35810:5;35762:22;:54::i;:::-;35740:154;;;;-1:-1:-1;;;35740:154:0;;;;;;;:::i;29790:334::-;34325:4;34349:16;;;:7;:16;;;;;;29863:13;;-1:-1:-1;;;;;34349:16:0;29889:76;;;;-1:-1:-1;;;29889:76:0;;19141:2:1;29889:76:0;;;19123:21:1;19180:2;19160:18;;;19153:30;19219:34;19199:18;;;19192:62;-1:-1:-1;;;19270:18:1;;;19263:45;19325:19;;29889:76:0;18939:411:1;29889:76:0;29978:21;30002:10;:8;:10::i;:::-;29978:34;;30054:1;30036:7;30030:21;:25;:86;;;;;;;;;;;;;;;;;30082:7;30091:18;:7;:16;:18::i;:::-;30065:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30030:86;30023:93;29790:334;-1:-1:-1;;;29790:334:0:o;39602:799::-;39757:4;-1:-1:-1;;;;;39778:13:0;;11164:19;:23;39774:620;;39814:72;;-1:-1:-1;;;39814:72:0;;-1:-1:-1;;;;;39814:36:0;;;;;:72;;6881:10;;39865:4;;39871:7;;39880:5;;39814:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39814:72:0;;;;;;;;-1:-1:-1;;39814:72:0;;;;;;;;;;;;:::i;:::-;;;39810:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40056:13:0;;40052:272;;40099:60;;-1:-1:-1;;;40099:60:0;;;;;;;:::i;40052:272::-;40274:6;40268:13;40259:6;40255:2;40251:15;40244:38;39810:529;-1:-1:-1;;;;;;39937:51:0;-1:-1:-1;;;39937:51:0;;-1:-1:-1;39930:58:0;;39774:620;-1:-1:-1;40378:4:0;39602:799;;;;;;:::o;2426:190::-;2551:4;2604;2575:25;2588:5;2595:4;2575:12;:25::i;:::-;:33;;2426:190;-1:-1:-1;;;;2426:190:0:o;36238:439::-;-1:-1:-1;;;;;36318:16:0;;36310:61;;;;-1:-1:-1;;;36310:61:0;;20780:2:1;36310:61:0;;;20762:21:1;;;20799:18;;;20792:30;20858:34;20838:18;;;20831:62;20910:18;;36310:61:0;20578:356:1;36310:61:0;34325:4;34349:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34349:16:0;:30;36382:58;;;;-1:-1:-1;;;36382:58:0;;21141:2:1;36382:58:0;;;21123:21:1;21180:2;21160:18;;;21153:30;21219;21199:18;;;21192:58;21267:18;;36382:58:0;20939:352:1;36382:58:0;-1:-1:-1;;;;;36511:13:0;;;;;;:9;:13;;;;;:18;;36528:1;;36511:13;:18;;36528:1;;36511:18;:::i;:::-;;;;-1:-1:-1;;36540:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36540:21:0;-1:-1:-1;;;;;36540:21:0;;;;;;;;36579:33;;36540:16;;;36579:33;;36540:16;;36579:33;45120::::1;45028:133:::0;:::o;44269:108::-;44321:13;44354:15;44347:22;;;;;:::i;4310:723::-;4366:13;4587:10;4583:53;;-1:-1:-1;;4614:10:0;;;;;;;;;;;;-1:-1:-1;;;4614:10:0;;;;;4310:723::o;4583:53::-;4661:5;4646:12;4702:78;4709:9;;4702:78;;4735:8;;;;:::i;:::-;;-1:-1:-1;4758:10:0;;-1:-1:-1;4766:2:0;4758:10;;:::i;:::-;;;4702:78;;;4790:19;4822:6;4812:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4812:17:0;;4790:39;;4840:154;4847:10;;4840:154;;4874:11;4884:1;4874:11;;:::i;:::-;;-1:-1:-1;4943:10:0;4951:2;4943:5;:10;:::i;:::-;4930:24;;:2;:24;:::i;:::-;4917:39;;4900:6;4907;4900:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4900:56:0;;;;;;;;-1:-1:-1;4971:11:0;4980:2;4971:11;;:::i;:::-;;;4840:154;;2978:675;3061:7;3104:4;3061:7;3119:497;3143:5;:12;3139:1;:16;3119:497;;;3177:20;3200:5;3206:1;3200:8;;;;;;;;:::i;:::-;;;;;;;3177:31;;3243:12;3227;:28;3223:382;;3729:13;3779:15;;;3815:4;3808:15;;;3862:4;3846:21;;3355:57;;3223:382;;;3729:13;3779:15;;;3815:4;3808:15;;;3862:4;3846:21;;3532:57;;3223:382;-1:-1:-1;3157:3:0;;;;:::i;:::-;;;;3119:497;;;-1:-1:-1;3633:12:0;2978:675;-1:-1:-1;;;2978:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:131::-;-1:-1:-1;;;;;1811:31:1;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:1:o;2192:127::-;2253:10;2248:3;2244:20;2241:1;2234:31;2284:4;2281:1;2274:15;2308:4;2305:1;2298:15;2324:632;2389:5;2419:18;2460:2;2452:6;2449:14;2446:40;;;2466:18;;:::i;:::-;2541:2;2535:9;2509:2;2595:15;;-1:-1:-1;;2591:24:1;;;2617:2;2587:33;2583:42;2571:55;;;2641:18;;;2661:22;;;2638:46;2635:72;;;2687:18;;:::i;:::-;2727:10;2723:2;2716:22;2756:6;2747:15;;2786:6;2778;2771:22;2826:3;2817:6;2812:3;2808:16;2805:25;2802:45;;;2843:1;2840;2833:12;2802:45;2893:6;2888:3;2881:4;2873:6;2869:17;2856:44;2948:1;2941:4;2932:6;2924;2920:19;2916:30;2909:41;;;;2324:632;;;;;:::o;2961:451::-;3030:6;3083:2;3071:9;3062:7;3058:23;3054:32;3051:52;;;3099:1;3096;3089:12;3051:52;3139:9;3126:23;3172:18;3164:6;3161:30;3158:50;;;3204:1;3201;3194:12;3158:50;3227:22;;3280:4;3272:13;;3268:27;-1:-1:-1;3258:55:1;;3309:1;3306;3299:12;3258:55;3332:74;3398:7;3393:2;3380:16;3375:2;3371;3367:11;3332:74;:::i;3417:456::-;3494:6;3502;3510;3563:2;3551:9;3542:7;3538:23;3534:32;3531:52;;;3579:1;3576;3569:12;3531:52;3618:9;3605:23;3637:31;3662:5;3637:31;:::i;:::-;3687:5;-1:-1:-1;3744:2:1;3729:18;;3716:32;3757:33;3716:32;3757:33;:::i;:::-;3417:456;;3809:7;;-1:-1:-1;;;3863:2:1;3848:18;;;;3835:32;;3417:456::o;4060:247::-;4119:6;4172:2;4160:9;4151:7;4147:23;4143:32;4140:52;;;4188:1;4185;4178:12;4140:52;4227:9;4214:23;4246:31;4271:5;4246:31;:::i;4679:416::-;4744:6;4752;4805:2;4793:9;4784:7;4780:23;4776:32;4773:52;;;4821:1;4818;4811:12;4773:52;4860:9;4847:23;4879:31;4904:5;4879:31;:::i;:::-;4929:5;-1:-1:-1;4986:2:1;4971:18;;4958:32;5028:15;;5021:23;5009:36;;4999:64;;5059:1;5056;5049:12;4999:64;5082:7;5072:17;;;4679:416;;;;;:::o;5100:795::-;5195:6;5203;5211;5219;5272:3;5260:9;5251:7;5247:23;5243:33;5240:53;;;5289:1;5286;5279:12;5240:53;5328:9;5315:23;5347:31;5372:5;5347:31;:::i;:::-;5397:5;-1:-1:-1;5454:2:1;5439:18;;5426:32;5467:33;5426:32;5467:33;:::i;:::-;5519:7;-1:-1:-1;5573:2:1;5558:18;;5545:32;;-1:-1:-1;5628:2:1;5613:18;;5600:32;5655:18;5644:30;;5641:50;;;5687:1;5684;5677:12;5641:50;5710:22;;5763:4;5755:13;;5751:27;-1:-1:-1;5741:55:1;;5792:1;5789;5782:12;5741:55;5815:74;5881:7;5876:2;5863:16;5858:2;5854;5850:11;5815:74;:::i;:::-;5805:84;;;5100:795;;;;;;;:::o;5900:683::-;5995:6;6003;6011;6064:2;6052:9;6043:7;6039:23;6035:32;6032:52;;;6080:1;6077;6070:12;6032:52;6116:9;6103:23;6093:33;;6177:2;6166:9;6162:18;6149:32;6200:18;6241:2;6233:6;6230:14;6227:34;;;6257:1;6254;6247:12;6227:34;6295:6;6284:9;6280:22;6270:32;;6340:7;6333:4;6329:2;6325:13;6321:27;6311:55;;6362:1;6359;6352:12;6311:55;6402:2;6389:16;6428:2;6420:6;6417:14;6414:34;;;6444:1;6441;6434:12;6414:34;6497:7;6492:2;6482:6;6479:1;6475:14;6471:2;6467:23;6463:32;6460:45;6457:65;;;6518:1;6515;6508:12;6457:65;6549:2;6545;6541:11;6531:21;;6571:6;6561:16;;;;;5900:683;;;;;:::o;6588:388::-;6656:6;6664;6717:2;6705:9;6696:7;6692:23;6688:32;6685:52;;;6733:1;6730;6723:12;6685:52;6772:9;6759:23;6791:31;6816:5;6791:31;:::i;:::-;6841:5;-1:-1:-1;6898:2:1;6883:18;;6870:32;6911:33;6870:32;6911:33;:::i;7241:380::-;7320:1;7316:12;;;;7363;;;7384:61;;7438:4;7430:6;7426:17;7416:27;;7384:61;7491:2;7483:6;7480:14;7460:18;7457:38;7454:161;;;7537:10;7532:3;7528:20;7525:1;7518:31;7572:4;7569:1;7562:15;7600:4;7597:1;7590:15;7454:161;;7241:380;;;:::o;8866:356::-;9068:2;9050:21;;;9087:18;;;9080:30;9146:34;9141:2;9126:18;;9119:62;9213:2;9198:18;;8866:356::o;9227:413::-;9429:2;9411:21;;;9468:2;9448:18;;;9441:30;9507:34;9502:2;9487:18;;9480:62;-1:-1:-1;;;9573:2:1;9558:18;;9551:47;9630:3;9615:19;;9227:413::o;11289:127::-;11350:10;11345:3;11341:20;11338:1;11331:31;11381:4;11378:1;11371:15;11405:4;11402:1;11395:15;11421:128;11461:3;11492:1;11488:6;11485:1;11482:13;11479:39;;;11498:18;;:::i;:::-;-1:-1:-1;11534:9:1;;11421:128::o;12403:168::-;12443:7;12509:1;12505;12501:6;12497:14;12494:1;12491:21;12486:1;12479:9;12472:17;12468:45;12465:71;;;12516:18;;:::i;:::-;-1:-1:-1;12556:9:1;;12403:168::o;12980:400::-;13182:2;13164:21;;;13221:2;13201:18;;;13194:30;13260:34;13255:2;13240:18;;13233:62;-1:-1:-1;;;13326:2:1;13311:18;;13304:34;13370:3;13355:19;;12980:400::o;15058:135::-;15097:3;-1:-1:-1;;15118:17:1;;15115:43;;;15138:18;;:::i;:::-;-1:-1:-1;15185:1:1;15174:13;;15058:135::o;17802:125::-;17842:4;17870:1;17867;17864:8;17861:34;;;17875:18;;:::i;:::-;-1:-1:-1;17912:9:1;;17802:125::o;18286:414::-;18488:2;18470:21;;;18527:2;18507:18;;;18500:30;18566:34;18561:2;18546:18;;18539:62;-1:-1:-1;;;18632:2:1;18617:18;;18610:48;18690:3;18675:19;;18286:414::o;19355:470::-;19534:3;19572:6;19566:13;19588:53;19634:6;19629:3;19622:4;19614:6;19610:17;19588:53;:::i;:::-;19704:13;;19663:16;;;;19726:57;19704:13;19663:16;19760:4;19748:17;;19726:57;:::i;:::-;19799:20;;19355:470;-1:-1:-1;;;;19355:470:1:o;19830:489::-;-1:-1:-1;;;;;20099:15:1;;;20081:34;;20151:15;;20146:2;20131:18;;20124:43;20198:2;20183:18;;20176:34;;;20246:3;20241:2;20226:18;;20219:31;;;20024:4;;20267:46;;20293:19;;20285:6;20267:46;:::i;:::-;20259:54;19830:489;-1:-1:-1;;;;;;19830:489:1:o;20324:249::-;20393:6;20446:2;20434:9;20425:7;20421:23;20417:32;20414:52;;;20462:1;20459;20452:12;20414:52;20494:9;20488:16;20513:30;20537:5;20513:30;:::i;21296:127::-;21357:10;21352:3;21348:20;21345:1;21338:31;21388:4;21385:1;21378:15;21412:4;21409:1;21402:15;21428:120;21468:1;21494;21484:35;;21499:18;;:::i;:::-;-1:-1:-1;21533:9:1;;21428:120::o;21553:112::-;21585:1;21611;21601:35;;21616:18;;:::i;:::-;-1:-1:-1;21650:9:1;;21553:112::o;21670:127::-;21731:10;21726:3;21722:20;21719:1;21712:31;21762:4;21759:1;21752:15;21786:4;21783:1;21776:15

Swarm Source

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