ETH Price: $2,286.31 (-3.03%)

Token

Magic doodlefren (yellow) ()
 

Overview

Max Total Supply

33 Magic doodlefren (yellow)

Holders

26

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 Magic doodlefren (yellow)
0x54aced5a7b2f346f7abd2cb8a6e541d1f417d603
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:
Magic_doodlefren_yellow

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts 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 overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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 of token that is not own");
        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);
    }

    /**
     * @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 {}
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: Magic_doodlefren_(yellow).sol



pragma solidity >=0.7.0 <0.9.0;






abstract contract mm {
    //function milksDrankByAddress(address addr) public view virtual returns (uint256[] memory);
    function ownerOf(uint256 tokenId) public view virtual returns (address);
    //function burnMilk(uint256 milkID) external virtual;
    function z_drinkMilk_do_not_use(uint256 milkID) external virtual;
    function balanceOf(address addr) public view virtual returns (uint256);
    function walletOfOwner(address addr) public view virtual returns (uint256[] memory);
}

contract Magic_doodlefren_yellow is ERC721Enumerable, Ownable, ReentrancyGuard {
  using Strings for uint256;
  string public baseURI;
  bool public paused = true;
  string public baseExtension = ".json";
  uint256 public cost = 0.01 ether;  //cost of newNFT
  uint256 public maxSupply = 10000;  //supply of newNFT
  uint256 public maxMintAmount = 20;  ///newNFT
  bool public allowBuyAll = true;
  address public constant mm_addr = 0xff1b8c3d003ba22557196FFfA0e625b493cF670f;
  mm public mm_object = mm(mm_addr);
  mapping(uint256 => bool) public isDrank;
  uint256[] private arr;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
  }
  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }

  // public

  function mintYellowMagicDoodleFrenFromMilk(address _to, uint256 milkID) public payable nonReentrant {
    require(!paused);
    require(msg.value >= cost);
    require(totalSupply() + 1 <= maxSupply);
    require(mm_object.ownerOf(milkID)==msg.sender, "You do not own milk");
    mm_object.z_drinkMilk_do_not_use(milkID);//milkID);
    _safeMint(_to, totalSupply() + 1);
    isDrank[milkID] = true;
  }

  function mintAllYellowMagicDoodleFrenFromMilk(address _to) public payable nonReentrant {
    require(allowBuyAll);
    delete arr;
    require(!paused);
    require(mm_object.balanceOf(msg.sender)!=0);
    uint256[] memory wallet = mm_object.walletOfOwner(msg.sender);
    uint256 i; 
    uint256 supply;
    uint256 price;

    for (i=0; i < wallet.length; i++) {
      supply = totalSupply();
      if(mm_object.ownerOf(wallet[i])!=msg.sender) {
        continue;}
      if(isDrank[wallet[i]]==true) {
        continue;}
      if(supply + 1 > maxSupply) {
        continue;}
      arr.push(wallet[i]);
    }

    price = cost * arr.length;
    require(msg.value >= price);
    supply = totalSupply();
    for(i=0; i<arr.length; i++) {
      mm_object.z_drinkMilk_do_not_use(arr[i]);//milkID);
      _safeMint(_to, supply + 1+i);
      isDrank[arr[i]] = true;
    }
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    uint256 i = 0;
    for (i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

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

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

  function getSupply() public view returns (uint256) {
      return totalSupply();
  }

  //only owner
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

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

  function setAllowBuyAll(bool _state) public onlyOwner {
    allowBuyAll = _state;
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"allowBuyAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isDrank","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintAllYellowMagicDoodleFrenFromMilk","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"milkID","type":"uint256"}],"name":"mintYellowMagicDoodleFrenFromMilk","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mm_addr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mm_object","outputs":[{"internalType":"contract mm","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setAllowBuyAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

600d805460ff1916600117905560c06040526005608081905264173539b7b760d91b60a09081526200003591600e9190620001d6565b50662386f26fc10000600f556127106010556014601155601280546001600160a81b03191674ff1b8c3d003ba22557196fffa0e625b493cf670f011790553480156200008057600080fd5b5060405162002efc38038062002efc833981016040819052620000a39162000333565b825183908390620000bc906000906020850190620001d6565b508051620000d2906001906020840190620001d6565b505050620000ef620000e96200010860201b60201c565b6200010c565b6001600b55620000ff816200015e565b50505062000417565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001bd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001d290600c906020840190620001d6565b5050565b828054620001e490620003c4565b90600052602060002090601f01602090048101928262000208576000855562000253565b82601f106200022357805160ff191683800117855562000253565b8280016001018555821562000253579182015b828111156200025357825182559160200191906001019062000236565b506200026192915062000265565b5090565b5b8082111562000261576000815560010162000266565b600082601f8301126200028e57600080fd5b81516001600160401b0380821115620002ab57620002ab62000401565b604051601f8301601f19908116603f01168101908282118183101715620002d657620002d662000401565b81604052838152602092508683858801011115620002f357600080fd5b600091505b83821015620003175785820183015181830184015290820190620002f8565b83821115620003295760008385830101525b9695505050505050565b6000806000606084860312156200034957600080fd5b83516001600160401b03808211156200036157600080fd5b6200036f878388016200027c565b945060208601519150808211156200038657600080fd5b62000394878388016200027c565b93506040860151915080821115620003ab57600080fd5b50620003ba868287016200027c565b9150509250925092565b600181811c90821680620003d957607f821691505b60208210811415620003fb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612ad580620004276000396000f3fe60806040526004361061023b5760003560e01c80635ce623051161012e578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd14610673578063d5abeb0114610693578063da3ef23f146106a9578063e985e9c5146106c9578063f2fde38b1461071257600080fd5b8063a22cb465146105e3578063a4131f8114610603578063ab9a6c6b14610616578063b88d4fde1461063e578063c66828621461065e57600080fd5b8063715018a6116100f2578063715018a6146105615780637f00c7a6146105765780638da5cb5b1461059657806395d89b41146105b457806399fd8bb2146105c957600080fd5b80635ce62305146104c75780636352211e146104f75780636c0360eb146105175780636c9c2faf1461052c57806370a082311461054157600080fd5b80632f745c59116101bc5780634f6a9ca2116101805780634f6a9ca2146104355780634f6ccce71461045a57806355f804b31461047a5780635c975abb1461049a5780635cac2654146104b457600080fd5b80632f745c59146103a05780633ccfd60b146103c057806342842e0e146103c8578063438b6300146103e857806344a0d68a1461041557600080fd5b806309b935951161020357806309b935951461031157806313faede61461033157806318160ddd14610355578063239c70ae1461036a57806323b872dd1461038057600080fd5b806301ffc9a71461024057806302329a291461027557806306fdde0314610297578063081812fc146102b9578063095ea7b3146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b3660046125cc565b610732565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b506102956102903660046125b1565b61075d565b005b3480156102a357600080fd5b506102ac6107a3565b60405161026c91906127f2565b3480156102c557600080fd5b506102d96102d436600461264f565b610835565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b5061029561030c3660046124d8565b6108ca565b34801561031d57600080fd5b5061029561032c3660046125b1565b6109e0565b34801561033d57600080fd5b50610347600f5481565b60405190815260200161026c565b34801561036157600080fd5b50600854610347565b34801561037657600080fd5b5061034760115481565b34801561038c57600080fd5b5061029561039b3660046123e2565b610a1d565b3480156103ac57600080fd5b506103476103bb3660046124d8565b610a4e565b610295610ae4565b3480156103d457600080fd5b506102956103e33660046123e2565b610b82565b3480156103f457600080fd5b5061040861040336600461236f565b610b9d565b60405161026c91906127ae565b34801561042157600080fd5b5061029561043036600461264f565b610c3f565b34801561044157600080fd5b506012546102d99061010090046001600160a01b031681565b34801561046657600080fd5b5061034761047536600461264f565b610c6e565b34801561048657600080fd5b50610295610495366004612606565b610d01565b3480156104a657600080fd5b50600d546102609060ff1681565b6102956104c236600461236f565b610d42565b3480156104d357600080fd5b506102606104e236600461264f565b60136020526000908152604090205460ff1681565b34801561050357600080fd5b506102d961051236600461264f565b61118f565b34801561052357600080fd5b506102ac611206565b34801561053857600080fd5b50610347611294565b34801561054d57600080fd5b5061034761055c36600461236f565b6112a4565b34801561056d57600080fd5b5061029561132b565b34801561058257600080fd5b5061029561059136600461264f565b611361565b3480156105a257600080fd5b50600a546001600160a01b03166102d9565b3480156105c057600080fd5b506102ac611390565b3480156105d557600080fd5b506012546102609060ff1681565b3480156105ef57600080fd5b506102956105fe3660046124a3565b61139f565b6102956106113660046124d8565b6113aa565b34801561062257600080fd5b506102d973ff1b8c3d003ba22557196fffa0e625b493cf670f81565b34801561064a57600080fd5b50610295610659366004612423565b6115a6565b34801561066a57600080fd5b506102ac6115de565b34801561067f57600080fd5b506102ac61068e36600461264f565b6115eb565b34801561069f57600080fd5b5061034760105481565b3480156106b557600080fd5b506102956106c4366004612606565b6116c9565b3480156106d557600080fd5b506102606106e43660046123a9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561071e57600080fd5b5061029561072d36600461236f565b611706565b60006001600160e01b0319821663780e9d6360e01b148061075757506107578261179e565b92915050565b600a546001600160a01b031633146107905760405162461bcd60e51b815260040161078790612857565b60405180910390fd5b600d805460ff1916911515919091179055565b6060600080546107b29061299c565b80601f01602080910402602001604051908101604052809291908181526020018280546107de9061299c565b801561082b5780601f106108005761010080835404028352916020019161082b565b820191906000526020600020905b81548152906001019060200180831161080e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108ae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610787565b506000908152600460205260409020546001600160a01b031690565b60006108d58261118f565b9050806001600160a01b0316836001600160a01b031614156109435760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610787565b336001600160a01b038216148061095f575061095f81336106e4565b6109d15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610787565b6109db83836117ee565b505050565b600a546001600160a01b03163314610a0a5760405162461bcd60e51b815260040161078790612857565b6012805460ff1916911515919091179055565b610a27338261185c565b610a435760405162461bcd60e51b81526004016107879061288c565b6109db838383611953565b6000610a59836112a4565b8210610abb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610787565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b0e5760405162461bcd60e51b815260040161078790612857565b6000610b22600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b6c576040519150601f19603f3d011682016040523d82523d6000602084013e610b71565b606091505b5050905080610b7f57600080fd5b50565b6109db838383604051806020016040528060008152506115a6565b60606000610baa836112a4565b905060008167ffffffffffffffff811115610bc757610bc7612a5e565b604051908082528060200260200182016040528015610bf0578160200160208202803683370190505b50905060005b82811015610c3757610c088582610a4e565b828281518110610c1a57610c1a612a48565b602090810291909101015280610c2f816129d7565b915050610bf6565b509392505050565b600a546001600160a01b03163314610c695760405162461bcd60e51b815260040161078790612857565b600f55565b6000610c7960085490565b8210610cdc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610787565b60088281548110610cef57610cef612a48565b90600052602060002001549050919050565b600a546001600160a01b03163314610d2b5760405162461bcd60e51b815260040161078790612857565b8051610d3e90600c90602084019061224f565b5050565b6002600b541415610d955760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610787565b6002600b5560125460ff16610da957600080fd5b610db5601460006122d3565b600d5460ff1615610dc557600080fd5b6012546040516370a0823160e01b81523360048201526101009091046001600160a01b0316906370a082319060240160206040518083038186803b158015610e0c57600080fd5b505afa158015610e20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e449190612668565b610e4d57600080fd5b60125460405162438b6360e81b815233600482015260009161010090046001600160a01b03169063438b63009060240160006040518083038186803b158015610e9557600080fd5b505afa158015610ea9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610ed19190810190612504565b9050600080805b835183101561104157600854601254855191935033916101009091046001600160a01b031690636352211e90879087908110610f1657610f16612a48565b60200260200101516040518263ffffffff1660e01b8152600401610f3c91815260200190565b60206040518083038186803b158015610f5457600080fd5b505afa158015610f68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8c919061238c565b6001600160a01b031614610f9f5761102f565b60136000858581518110610fb557610fb5612a48565b60209081029190910181015182528101919091526040016000205460ff16151560011415610fe25761102f565b601054610ff083600161290e565b1115610ffb5761102f565b601484848151811061100f5761100f612a48565b602090810291909101810151825460018101845560009384529190922001555b82611039816129d7565b935050610ed8565b601454600f54611051919061293a565b90508034101561106057600080fd5b6008549150600092505b60145483101561118357601260019054906101000a90046001600160a01b03166001600160a01b0316632f85719a601485815481106110ab576110ab612a48565b90600052602060002001546040518263ffffffff1660e01b81526004016110d491815260200190565b600060405180830381600087803b1580156110ee57600080fd5b505af1158015611102573d6000803e3d6000fd5b505050506111278584846001611118919061290e565b611122919061290e565b611afe565b6001601360006014868154811061114057611140612a48565b9060005260206000200154815260200190815260200160002060006101000a81548160ff021916908315150217905550828061117b906129d7565b93505061106a565b50506001600b55505050565b6000818152600260205260408120546001600160a01b0316806107575760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610787565b600c80546112139061299c565b80601f016020809104026020016040519081016040528092919081815260200182805461123f9061299c565b801561128c5780601f106112615761010080835404028352916020019161128c565b820191906000526020600020905b81548152906001019060200180831161126f57829003601f168201915b505050505081565b600061129f60085490565b905090565b60006001600160a01b03821661130f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610787565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113555760405162461bcd60e51b815260040161078790612857565b61135f6000611b18565b565b600a546001600160a01b0316331461138b5760405162461bcd60e51b815260040161078790612857565b601155565b6060600180546107b29061299c565b610d3e338383611b6a565b6002600b5414156113fd5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610787565b6002600b55600d5460ff161561141257600080fd5b600f5434101561142157600080fd5b60105460085461143290600161290e565b111561143d57600080fd5b6012546040516331a9108f60e11b815260048101839052339161010090046001600160a01b031690636352211e9060240160206040518083038186803b15801561148657600080fd5b505afa15801561149a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114be919061238c565b6001600160a01b03161461150a5760405162461bcd60e51b8152602060048201526013602482015272596f7520646f206e6f74206f776e206d696c6b60681b6044820152606401610787565b6012546040516317c2b8cd60e11b8152600481018390526101009091046001600160a01b031690632f85719a90602401600060405180830381600087803b15801561155457600080fd5b505af1158015611568573d6000803e3d6000fd5b505050506115848261157960085490565b61112290600161290e565b6000908152601360205260409020805460ff19166001908117909155600b5550565b6115b0338361185c565b6115cc5760405162461bcd60e51b81526004016107879061288c565b6115d884848484611c39565b50505050565b600e80546112139061299c565b6000818152600260205260409020546060906001600160a01b031661166a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610787565b6000611674611c6c565b9050600081511161169457604051806020016040528060008152506116c2565b8061169e84611c7b565b600e6040516020016116b2939291906126ad565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116f35760405162461bcd60e51b815260040161078790612857565b8051610d3e90600e90602084019061224f565b600a546001600160a01b031633146117305760405162461bcd60e51b815260040161078790612857565b6001600160a01b0381166117955760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610787565b610b7f81611b18565b60006001600160e01b031982166380ac58cd60e01b14806117cf57506001600160e01b03198216635b5e139f60e01b145b8061075757506301ffc9a760e01b6001600160e01b0319831614610757565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118238261118f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118d55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610787565b60006118e08361118f565b9050806001600160a01b0316846001600160a01b0316148061191b5750836001600160a01b031661191084610835565b6001600160a01b0316145b8061194b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119668261118f565b6001600160a01b0316146119ce5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610787565b6001600160a01b038216611a305760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610787565b611a3b838383611d79565b611a466000826117ee565b6001600160a01b0383166000908152600360205260408120805460019290611a6f908490612959565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a9d90849061290e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d3e828260405180602001604052806000815250611e31565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611bcc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610787565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c44848484611953565b611c5084848484611e64565b6115d85760405162461bcd60e51b815260040161078790612805565b6060600c80546107b29061299c565b606081611c9f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cc95780611cb3816129d7565b9150611cc29050600a83612926565b9150611ca3565b60008167ffffffffffffffff811115611ce457611ce4612a5e565b6040519080825280601f01601f191660200182016040528015611d0e576020820181803683370190505b5090505b841561194b57611d23600183612959565b9150611d30600a866129f2565b611d3b90603061290e565b60f81b818381518110611d5057611d50612a48565b60200101906001600160f81b031916908160001a905350611d72600a86612926565b9450611d12565b6001600160a01b038316611dd457611dcf81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611df7565b816001600160a01b0316836001600160a01b031614611df757611df78382611f71565b6001600160a01b038216611e0e576109db8161200e565b826001600160a01b0316826001600160a01b0316146109db576109db82826120bd565b611e3b8383612101565b611e486000848484611e64565b6109db5760405162461bcd60e51b815260040161078790612805565b60006001600160a01b0384163b15611f6657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ea8903390899088908890600401612771565b602060405180830381600087803b158015611ec257600080fd5b505af1925050508015611ef2575060408051601f3d908101601f19168201909252611eef918101906125e9565b60015b611f4c573d808015611f20576040519150601f19603f3d011682016040523d82523d6000602084013e611f25565b606091505b508051611f445760405162461bcd60e51b815260040161078790612805565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061194b565b506001949350505050565b60006001611f7e846112a4565b611f889190612959565b600083815260076020526040902054909150808214611fdb576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061202090600190612959565b6000838152600960205260408120546008805493945090928490811061204857612048612a48565b90600052602060002001549050806008838154811061206957612069612a48565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806120a1576120a1612a32565b6001900381819060005260206000200160009055905550505050565b60006120c8836112a4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121575760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610787565b6000818152600260205260409020546001600160a01b0316156121bc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610787565b6121c860008383611d79565b6001600160a01b03821660009081526003602052604081208054600192906121f190849061290e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461225b9061299c565b90600052602060002090601f01602090048101928261227d57600085556122c3565b82601f1061229657805160ff19168380011785556122c3565b828001600101855582156122c3579182015b828111156122c35782518255916020019190600101906122a8565b506122cf9291506122ed565b5090565b5080546000825590600052602060002090810190610b7f91905b5b808211156122cf57600081556001016122ee565b600067ffffffffffffffff83111561231c5761231c612a5e565b61232f601f8401601f19166020016128dd565b905082815283838301111561234357600080fd5b828260208301376000602084830101529392505050565b8035801515811461236a57600080fd5b919050565b60006020828403121561238157600080fd5b81356116c281612a74565b60006020828403121561239e57600080fd5b81516116c281612a74565b600080604083850312156123bc57600080fd5b82356123c781612a74565b915060208301356123d781612a74565b809150509250929050565b6000806000606084860312156123f757600080fd5b833561240281612a74565b9250602084013561241281612a74565b929592945050506040919091013590565b6000806000806080858703121561243957600080fd5b843561244481612a74565b9350602085013561245481612a74565b925060408501359150606085013567ffffffffffffffff81111561247757600080fd5b8501601f8101871361248857600080fd5b61249787823560208401612302565b91505092959194509250565b600080604083850312156124b657600080fd5b82356124c181612a74565b91506124cf6020840161235a565b90509250929050565b600080604083850312156124eb57600080fd5b82356124f681612a74565b946020939093013593505050565b6000602080838503121561251757600080fd5b825167ffffffffffffffff8082111561252f57600080fd5b818501915085601f83011261254357600080fd5b81518181111561255557612555612a5e565b8060051b91506125668483016128dd565b8181528481019084860184860187018a101561258157600080fd5b600095505b838610156125a4578051835260019590950194918601918601612586565b5098975050505050505050565b6000602082840312156125c357600080fd5b6116c28261235a565b6000602082840312156125de57600080fd5b81356116c281612a89565b6000602082840312156125fb57600080fd5b81516116c281612a89565b60006020828403121561261857600080fd5b813567ffffffffffffffff81111561262f57600080fd5b8201601f8101841361264057600080fd5b61194b84823560208401612302565b60006020828403121561266157600080fd5b5035919050565b60006020828403121561267a57600080fd5b5051919050565b60008151808452612699816020860160208601612970565b601f01601f19169290920160200192915050565b6000845160206126c08285838a01612970565b8551918401916126d38184848a01612970565b8554920191600090600181811c90808316806126f057607f831692505b85831081141561270e57634e487b7160e01b85526022600452602485fd5b808015612722576001811461273357612760565b60ff19851688528388019550612760565b60008b81526020902060005b858110156127585781548a82015290840190880161273f565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127a490830184612681565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127e6578351835292840192918401916001016127ca565b50909695505050505050565b6020815260006116c26020830184612681565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561290657612906612a5e565b604052919050565b6000821982111561292157612921612a06565b500190565b60008261293557612935612a1c565b500490565b600081600019048311821515161561295457612954612a06565b500290565b60008282101561296b5761296b612a06565b500390565b60005b8381101561298b578181015183820152602001612973565b838111156115d85750506000910152565b600181811c908216806129b057607f821691505b602082108114156129d157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129eb576129eb612a06565b5060010190565b600082612a0157612a01612a1c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610b7f57600080fd5b6001600160e01b031981168114610b7f57600080fdfea26469706673582212204885fcfb88d32aa82f82a0e8aa005a71441e0a55b3a1a9fd31eb7cef4d4af32564736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000194d6167696320646f6f646c656672656e202879656c6c6f77290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d53634d735a697261334639526b7966434e4e317a4b7131396f456a5068664a3755796a5a46795274366444312f00000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80635ce623051161012e578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd14610673578063d5abeb0114610693578063da3ef23f146106a9578063e985e9c5146106c9578063f2fde38b1461071257600080fd5b8063a22cb465146105e3578063a4131f8114610603578063ab9a6c6b14610616578063b88d4fde1461063e578063c66828621461065e57600080fd5b8063715018a6116100f2578063715018a6146105615780637f00c7a6146105765780638da5cb5b1461059657806395d89b41146105b457806399fd8bb2146105c957600080fd5b80635ce62305146104c75780636352211e146104f75780636c0360eb146105175780636c9c2faf1461052c57806370a082311461054157600080fd5b80632f745c59116101bc5780634f6a9ca2116101805780634f6a9ca2146104355780634f6ccce71461045a57806355f804b31461047a5780635c975abb1461049a5780635cac2654146104b457600080fd5b80632f745c59146103a05780633ccfd60b146103c057806342842e0e146103c8578063438b6300146103e857806344a0d68a1461041557600080fd5b806309b935951161020357806309b935951461031157806313faede61461033157806318160ddd14610355578063239c70ae1461036a57806323b872dd1461038057600080fd5b806301ffc9a71461024057806302329a291461027557806306fdde0314610297578063081812fc146102b9578063095ea7b3146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b3660046125cc565b610732565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b506102956102903660046125b1565b61075d565b005b3480156102a357600080fd5b506102ac6107a3565b60405161026c91906127f2565b3480156102c557600080fd5b506102d96102d436600461264f565b610835565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b5061029561030c3660046124d8565b6108ca565b34801561031d57600080fd5b5061029561032c3660046125b1565b6109e0565b34801561033d57600080fd5b50610347600f5481565b60405190815260200161026c565b34801561036157600080fd5b50600854610347565b34801561037657600080fd5b5061034760115481565b34801561038c57600080fd5b5061029561039b3660046123e2565b610a1d565b3480156103ac57600080fd5b506103476103bb3660046124d8565b610a4e565b610295610ae4565b3480156103d457600080fd5b506102956103e33660046123e2565b610b82565b3480156103f457600080fd5b5061040861040336600461236f565b610b9d565b60405161026c91906127ae565b34801561042157600080fd5b5061029561043036600461264f565b610c3f565b34801561044157600080fd5b506012546102d99061010090046001600160a01b031681565b34801561046657600080fd5b5061034761047536600461264f565b610c6e565b34801561048657600080fd5b50610295610495366004612606565b610d01565b3480156104a657600080fd5b50600d546102609060ff1681565b6102956104c236600461236f565b610d42565b3480156104d357600080fd5b506102606104e236600461264f565b60136020526000908152604090205460ff1681565b34801561050357600080fd5b506102d961051236600461264f565b61118f565b34801561052357600080fd5b506102ac611206565b34801561053857600080fd5b50610347611294565b34801561054d57600080fd5b5061034761055c36600461236f565b6112a4565b34801561056d57600080fd5b5061029561132b565b34801561058257600080fd5b5061029561059136600461264f565b611361565b3480156105a257600080fd5b50600a546001600160a01b03166102d9565b3480156105c057600080fd5b506102ac611390565b3480156105d557600080fd5b506012546102609060ff1681565b3480156105ef57600080fd5b506102956105fe3660046124a3565b61139f565b6102956106113660046124d8565b6113aa565b34801561062257600080fd5b506102d973ff1b8c3d003ba22557196fffa0e625b493cf670f81565b34801561064a57600080fd5b50610295610659366004612423565b6115a6565b34801561066a57600080fd5b506102ac6115de565b34801561067f57600080fd5b506102ac61068e36600461264f565b6115eb565b34801561069f57600080fd5b5061034760105481565b3480156106b557600080fd5b506102956106c4366004612606565b6116c9565b3480156106d557600080fd5b506102606106e43660046123a9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561071e57600080fd5b5061029561072d36600461236f565b611706565b60006001600160e01b0319821663780e9d6360e01b148061075757506107578261179e565b92915050565b600a546001600160a01b031633146107905760405162461bcd60e51b815260040161078790612857565b60405180910390fd5b600d805460ff1916911515919091179055565b6060600080546107b29061299c565b80601f01602080910402602001604051908101604052809291908181526020018280546107de9061299c565b801561082b5780601f106108005761010080835404028352916020019161082b565b820191906000526020600020905b81548152906001019060200180831161080e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108ae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610787565b506000908152600460205260409020546001600160a01b031690565b60006108d58261118f565b9050806001600160a01b0316836001600160a01b031614156109435760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610787565b336001600160a01b038216148061095f575061095f81336106e4565b6109d15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610787565b6109db83836117ee565b505050565b600a546001600160a01b03163314610a0a5760405162461bcd60e51b815260040161078790612857565b6012805460ff1916911515919091179055565b610a27338261185c565b610a435760405162461bcd60e51b81526004016107879061288c565b6109db838383611953565b6000610a59836112a4565b8210610abb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610787565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b0e5760405162461bcd60e51b815260040161078790612857565b6000610b22600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b6c576040519150601f19603f3d011682016040523d82523d6000602084013e610b71565b606091505b5050905080610b7f57600080fd5b50565b6109db838383604051806020016040528060008152506115a6565b60606000610baa836112a4565b905060008167ffffffffffffffff811115610bc757610bc7612a5e565b604051908082528060200260200182016040528015610bf0578160200160208202803683370190505b50905060005b82811015610c3757610c088582610a4e565b828281518110610c1a57610c1a612a48565b602090810291909101015280610c2f816129d7565b915050610bf6565b509392505050565b600a546001600160a01b03163314610c695760405162461bcd60e51b815260040161078790612857565b600f55565b6000610c7960085490565b8210610cdc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610787565b60088281548110610cef57610cef612a48565b90600052602060002001549050919050565b600a546001600160a01b03163314610d2b5760405162461bcd60e51b815260040161078790612857565b8051610d3e90600c90602084019061224f565b5050565b6002600b541415610d955760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610787565b6002600b5560125460ff16610da957600080fd5b610db5601460006122d3565b600d5460ff1615610dc557600080fd5b6012546040516370a0823160e01b81523360048201526101009091046001600160a01b0316906370a082319060240160206040518083038186803b158015610e0c57600080fd5b505afa158015610e20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e449190612668565b610e4d57600080fd5b60125460405162438b6360e81b815233600482015260009161010090046001600160a01b03169063438b63009060240160006040518083038186803b158015610e9557600080fd5b505afa158015610ea9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610ed19190810190612504565b9050600080805b835183101561104157600854601254855191935033916101009091046001600160a01b031690636352211e90879087908110610f1657610f16612a48565b60200260200101516040518263ffffffff1660e01b8152600401610f3c91815260200190565b60206040518083038186803b158015610f5457600080fd5b505afa158015610f68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8c919061238c565b6001600160a01b031614610f9f5761102f565b60136000858581518110610fb557610fb5612a48565b60209081029190910181015182528101919091526040016000205460ff16151560011415610fe25761102f565b601054610ff083600161290e565b1115610ffb5761102f565b601484848151811061100f5761100f612a48565b602090810291909101810151825460018101845560009384529190922001555b82611039816129d7565b935050610ed8565b601454600f54611051919061293a565b90508034101561106057600080fd5b6008549150600092505b60145483101561118357601260019054906101000a90046001600160a01b03166001600160a01b0316632f85719a601485815481106110ab576110ab612a48565b90600052602060002001546040518263ffffffff1660e01b81526004016110d491815260200190565b600060405180830381600087803b1580156110ee57600080fd5b505af1158015611102573d6000803e3d6000fd5b505050506111278584846001611118919061290e565b611122919061290e565b611afe565b6001601360006014868154811061114057611140612a48565b9060005260206000200154815260200190815260200160002060006101000a81548160ff021916908315150217905550828061117b906129d7565b93505061106a565b50506001600b55505050565b6000818152600260205260408120546001600160a01b0316806107575760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610787565b600c80546112139061299c565b80601f016020809104026020016040519081016040528092919081815260200182805461123f9061299c565b801561128c5780601f106112615761010080835404028352916020019161128c565b820191906000526020600020905b81548152906001019060200180831161126f57829003601f168201915b505050505081565b600061129f60085490565b905090565b60006001600160a01b03821661130f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610787565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113555760405162461bcd60e51b815260040161078790612857565b61135f6000611b18565b565b600a546001600160a01b0316331461138b5760405162461bcd60e51b815260040161078790612857565b601155565b6060600180546107b29061299c565b610d3e338383611b6a565b6002600b5414156113fd5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610787565b6002600b55600d5460ff161561141257600080fd5b600f5434101561142157600080fd5b60105460085461143290600161290e565b111561143d57600080fd5b6012546040516331a9108f60e11b815260048101839052339161010090046001600160a01b031690636352211e9060240160206040518083038186803b15801561148657600080fd5b505afa15801561149a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114be919061238c565b6001600160a01b03161461150a5760405162461bcd60e51b8152602060048201526013602482015272596f7520646f206e6f74206f776e206d696c6b60681b6044820152606401610787565b6012546040516317c2b8cd60e11b8152600481018390526101009091046001600160a01b031690632f85719a90602401600060405180830381600087803b15801561155457600080fd5b505af1158015611568573d6000803e3d6000fd5b505050506115848261157960085490565b61112290600161290e565b6000908152601360205260409020805460ff19166001908117909155600b5550565b6115b0338361185c565b6115cc5760405162461bcd60e51b81526004016107879061288c565b6115d884848484611c39565b50505050565b600e80546112139061299c565b6000818152600260205260409020546060906001600160a01b031661166a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610787565b6000611674611c6c565b9050600081511161169457604051806020016040528060008152506116c2565b8061169e84611c7b565b600e6040516020016116b2939291906126ad565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116f35760405162461bcd60e51b815260040161078790612857565b8051610d3e90600e90602084019061224f565b600a546001600160a01b031633146117305760405162461bcd60e51b815260040161078790612857565b6001600160a01b0381166117955760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610787565b610b7f81611b18565b60006001600160e01b031982166380ac58cd60e01b14806117cf57506001600160e01b03198216635b5e139f60e01b145b8061075757506301ffc9a760e01b6001600160e01b0319831614610757565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118238261118f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118d55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610787565b60006118e08361118f565b9050806001600160a01b0316846001600160a01b0316148061191b5750836001600160a01b031661191084610835565b6001600160a01b0316145b8061194b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119668261118f565b6001600160a01b0316146119ce5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610787565b6001600160a01b038216611a305760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610787565b611a3b838383611d79565b611a466000826117ee565b6001600160a01b0383166000908152600360205260408120805460019290611a6f908490612959565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a9d90849061290e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d3e828260405180602001604052806000815250611e31565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611bcc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610787565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c44848484611953565b611c5084848484611e64565b6115d85760405162461bcd60e51b815260040161078790612805565b6060600c80546107b29061299c565b606081611c9f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cc95780611cb3816129d7565b9150611cc29050600a83612926565b9150611ca3565b60008167ffffffffffffffff811115611ce457611ce4612a5e565b6040519080825280601f01601f191660200182016040528015611d0e576020820181803683370190505b5090505b841561194b57611d23600183612959565b9150611d30600a866129f2565b611d3b90603061290e565b60f81b818381518110611d5057611d50612a48565b60200101906001600160f81b031916908160001a905350611d72600a86612926565b9450611d12565b6001600160a01b038316611dd457611dcf81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611df7565b816001600160a01b0316836001600160a01b031614611df757611df78382611f71565b6001600160a01b038216611e0e576109db8161200e565b826001600160a01b0316826001600160a01b0316146109db576109db82826120bd565b611e3b8383612101565b611e486000848484611e64565b6109db5760405162461bcd60e51b815260040161078790612805565b60006001600160a01b0384163b15611f6657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ea8903390899088908890600401612771565b602060405180830381600087803b158015611ec257600080fd5b505af1925050508015611ef2575060408051601f3d908101601f19168201909252611eef918101906125e9565b60015b611f4c573d808015611f20576040519150601f19603f3d011682016040523d82523d6000602084013e611f25565b606091505b508051611f445760405162461bcd60e51b815260040161078790612805565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061194b565b506001949350505050565b60006001611f7e846112a4565b611f889190612959565b600083815260076020526040902054909150808214611fdb576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061202090600190612959565b6000838152600960205260408120546008805493945090928490811061204857612048612a48565b90600052602060002001549050806008838154811061206957612069612a48565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806120a1576120a1612a32565b6001900381819060005260206000200160009055905550505050565b60006120c8836112a4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121575760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610787565b6000818152600260205260409020546001600160a01b0316156121bc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610787565b6121c860008383611d79565b6001600160a01b03821660009081526003602052604081208054600192906121f190849061290e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461225b9061299c565b90600052602060002090601f01602090048101928261227d57600085556122c3565b82601f1061229657805160ff19168380011785556122c3565b828001600101855582156122c3579182015b828111156122c35782518255916020019190600101906122a8565b506122cf9291506122ed565b5090565b5080546000825590600052602060002090810190610b7f91905b5b808211156122cf57600081556001016122ee565b600067ffffffffffffffff83111561231c5761231c612a5e565b61232f601f8401601f19166020016128dd565b905082815283838301111561234357600080fd5b828260208301376000602084830101529392505050565b8035801515811461236a57600080fd5b919050565b60006020828403121561238157600080fd5b81356116c281612a74565b60006020828403121561239e57600080fd5b81516116c281612a74565b600080604083850312156123bc57600080fd5b82356123c781612a74565b915060208301356123d781612a74565b809150509250929050565b6000806000606084860312156123f757600080fd5b833561240281612a74565b9250602084013561241281612a74565b929592945050506040919091013590565b6000806000806080858703121561243957600080fd5b843561244481612a74565b9350602085013561245481612a74565b925060408501359150606085013567ffffffffffffffff81111561247757600080fd5b8501601f8101871361248857600080fd5b61249787823560208401612302565b91505092959194509250565b600080604083850312156124b657600080fd5b82356124c181612a74565b91506124cf6020840161235a565b90509250929050565b600080604083850312156124eb57600080fd5b82356124f681612a74565b946020939093013593505050565b6000602080838503121561251757600080fd5b825167ffffffffffffffff8082111561252f57600080fd5b818501915085601f83011261254357600080fd5b81518181111561255557612555612a5e565b8060051b91506125668483016128dd565b8181528481019084860184860187018a101561258157600080fd5b600095505b838610156125a4578051835260019590950194918601918601612586565b5098975050505050505050565b6000602082840312156125c357600080fd5b6116c28261235a565b6000602082840312156125de57600080fd5b81356116c281612a89565b6000602082840312156125fb57600080fd5b81516116c281612a89565b60006020828403121561261857600080fd5b813567ffffffffffffffff81111561262f57600080fd5b8201601f8101841361264057600080fd5b61194b84823560208401612302565b60006020828403121561266157600080fd5b5035919050565b60006020828403121561267a57600080fd5b5051919050565b60008151808452612699816020860160208601612970565b601f01601f19169290920160200192915050565b6000845160206126c08285838a01612970565b8551918401916126d38184848a01612970565b8554920191600090600181811c90808316806126f057607f831692505b85831081141561270e57634e487b7160e01b85526022600452602485fd5b808015612722576001811461273357612760565b60ff19851688528388019550612760565b60008b81526020902060005b858110156127585781548a82015290840190880161273f565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127a490830184612681565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127e6578351835292840192918401916001016127ca565b50909695505050505050565b6020815260006116c26020830184612681565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561290657612906612a5e565b604052919050565b6000821982111561292157612921612a06565b500190565b60008261293557612935612a1c565b500490565b600081600019048311821515161561295457612954612a06565b500290565b60008282101561296b5761296b612a06565b500390565b60005b8381101561298b578181015183820152602001612973565b838111156115d85750506000910152565b600181811c908216806129b057607f821691505b602082108114156129d157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129eb576129eb612a06565b5060010190565b600082612a0157612a01612a1c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610b7f57600080fd5b6001600160e01b031981168114610b7f57600080fdfea26469706673582212204885fcfb88d32aa82f82a0e8aa005a71441e0a55b3a1a9fd31eb7cef4d4af32564736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000194d6167696320646f6f646c656672656e202879656c6c6f77290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d53634d735a697261334639526b7966434e4e317a4b7131396f456a5068664a3755796a5a46795274366444312f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Magic doodlefren (yellow)
Arg [1] : _symbol (string):
Arg [2] : _initBaseURI (string): ipfs://QmScMsZira3F9RkyfCNN1zKq19oEjPhfJ7UyjZFyRt6dD1/

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [4] : 4d6167696320646f6f646c656672656e202879656c6c6f772900000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [7] : 697066733a2f2f516d53634d735a697261334639526b7966434e4e317a4b7131
Arg [8] : 396f456a5068664a3755796a5a46795274366444312f00000000000000000000


Deployed Bytecode Sourcemap

47766:3901:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41025:224;;;;;;;;;;-1:-1:-1;41025:224:0;;;;;:::i;:::-;;:::i;:::-;;;9368:14:1;;9361:22;9343:41;;9331:2;9316:18;41025:224:0;;;;;;;;51335:73;;;;;;;;;;-1:-1:-1;51335:73:0;;;;;:::i;:::-;;:::i;:::-;;28519:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30078:221::-;;;;;;;;;;-1:-1:-1;30078:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8029:32:1;;;8011:51;;7999:2;7984:18;30078:221:0;7865:203:1;29601:411:0;;;;;;;;;;-1:-1:-1;29601:411:0;;;;;:::i;:::-;;:::i;51414:87::-;;;;;;;;;;-1:-1:-1;51414:87:0;;;;;:::i;:::-;;:::i;47978:32::-;;;;;;;;;;;;;;;;;;;17899:25:1;;;17887:2;17872:18;47978:32:0;17753:177:1;41665:113:0;;;;;;;;;;-1:-1:-1;41753:10:0;:17;41665:113;;48090:33;;;;;;;;;;;;;;;;30828:339;;;;;;;;;;-1:-1:-1;30828:339:0;;;;;:::i;:::-;;:::i;41333:256::-;;;;;;;;;;-1:-1:-1;41333:256:0;;;;;:::i;:::-;;:::i;51507:157::-;;;:::i;31238:185::-;;;;;;;;;;-1:-1:-1;31238:185:0;;;;;:::i;:::-;;:::i;49992:360::-;;;;;;;;;;-1:-1:-1;49992:360:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50895:80::-;;;;;;;;;;-1:-1:-1;50895:80:0;;;;;:::i;:::-;;:::i;48255:33::-;;;;;;;;;;-1:-1:-1;48255:33:0;;;;;;;-1:-1:-1;;;;;48255:33:0;;;41855:233;;;;;;;;;;-1:-1:-1;41855:233:0;;;;;:::i;:::-;;:::i;51103:98::-;;;;;;;;;;-1:-1:-1;51103:98:0;;;;;:::i;:::-;;:::i;47906:25::-;;;;;;;;;;-1:-1:-1;47906:25:0;;;;;;;;49087:899;;;;;;:::i;:::-;;:::i;48293:39::-;;;;;;;;;;-1:-1:-1;48293:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;28213:239;;;;;;;;;;-1:-1:-1;28213:239:0;;;;;:::i;:::-;;:::i;47880:21::-;;;;;;;;;;;;;:::i;50787:86::-;;;;;;;;;;;;;:::i;27943:208::-;;;;;;;;;;-1:-1:-1;27943:208:0;;;;;:::i;:::-;;:::i;7489:103::-;;;;;;;;;;;;;:::i;50981:116::-;;;;;;;;;;-1:-1:-1;50981:116:0;;;;;:::i;:::-;;:::i;6838:87::-;;;;;;;;;;-1:-1:-1;6911:6:0;;-1:-1:-1;;;;;6911:6:0;6838:87;;28688:104;;;;;;;;;;;;;:::i;48139:30::-;;;;;;;;;;-1:-1:-1;48139:30:0;;;;;;;;30371:155;;;;;;;;;;-1:-1:-1;30371:155:0;;;;;:::i;:::-;;:::i;48671:410::-;;;;;;:::i;:::-;;:::i;48174:76::-;;;;;;;;;;;;48208:42;48174:76;;31494:328;;;;;;;;;;-1:-1:-1;31494:328:0;;;;;:::i;:::-;;:::i;47936:37::-;;;;;;;;;;;;;:::i;50358:423::-;;;;;;;;;;-1:-1:-1;50358:423:0;;;;;:::i;:::-;;:::i;48033:32::-;;;;;;;;;;;;;;;;51207:122;;;;;;;;;;-1:-1:-1;51207:122:0;;;;;:::i;:::-;;:::i;30597:164::-;;;;;;;;;;-1:-1:-1;30597:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30718:25:0;;;30694:4;30718:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30597:164;7747:201;;;;;;;;;;-1:-1:-1;7747:201:0;;;;;:::i;:::-;;:::i;41025:224::-;41127:4;-1:-1:-1;;;;;;41151:50:0;;-1:-1:-1;;;41151:50:0;;:90;;;41205:36;41229:11;41205:23;:36::i;:::-;41144:97;41025:224;-1:-1:-1;;41025:224:0:o;51335:73::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;;;;;;;;;51387:6:::1;:15:::0;;-1:-1:-1;;51387:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51335:73::o;28519:100::-;28573:13;28606:5;28599:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28519:100;:::o;30078:221::-;30154:7;33421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33421:16:0;30174:73;;;;-1:-1:-1;;;30174:73:0;;14414:2:1;30174:73:0;;;14396:21:1;14453:2;14433:18;;;14426:30;14492:34;14472:18;;;14465:62;-1:-1:-1;;;14543:18:1;;;14536:42;14595:19;;30174:73:0;14212:408:1;30174:73:0;-1:-1:-1;30267:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30267:24:0;;30078:221::o;29601:411::-;29682:13;29698:23;29713:7;29698:14;:23::i;:::-;29682:39;;29746:5;-1:-1:-1;;;;;29740:11:0;:2;-1:-1:-1;;;;;29740:11:0;;;29732:57;;;;-1:-1:-1;;;29732:57:0;;16014:2:1;29732:57:0;;;15996:21:1;16053:2;16033:18;;;16026:30;16092:34;16072:18;;;16065:62;-1:-1:-1;;;16143:18:1;;;16136:31;16184:19;;29732:57:0;15812:397:1;29732:57:0;5642:10;-1:-1:-1;;;;;29824:21:0;;;;:62;;-1:-1:-1;29849:37:0;29866:5;5642:10;30597:164;:::i;29849:37::-;29802:168;;;;-1:-1:-1;;;29802:168:0;;12807:2:1;29802:168:0;;;12789:21:1;12846:2;12826:18;;;12819:30;12885:34;12865:18;;;12858:62;12956:26;12936:18;;;12929:54;13000:19;;29802:168:0;12605:420:1;29802:168:0;29983:21;29992:2;29996:7;29983:8;:21::i;:::-;29671:341;29601:411;;:::o;51414:87::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;51475:11:::1;:20:::0;;-1:-1:-1;;51475:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51414:87::o;30828:339::-;31023:41;5642:10;31056:7;31023:18;:41::i;:::-;31015:103;;;;-1:-1:-1;;;31015:103:0;;;;;;;:::i;:::-;31131:28;31141:4;31147:2;31151:7;31131:9;:28::i;41333:256::-;41430:7;41466:23;41483:5;41466:16;:23::i;:::-;41458:5;:31;41450:87;;;;-1:-1:-1;;;41450:87:0;;10040:2:1;41450:87:0;;;10022:21:1;10079:2;10059:18;;;10052:30;10118:34;10098:18;;;10091:62;-1:-1:-1;;;10169:18:1;;;10162:41;10220:19;;41450:87:0;9838:407:1;41450:87:0;-1:-1:-1;;;;;;41555:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41333:256::o;51507:157::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;51566:7:::1;51587;6911:6:::0;;-1:-1:-1;;;;;6911:6:0;;6838:87;51587:7:::1;-1:-1:-1::0;;;;;51579:21:0::1;51608;51579:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51565:69;;;51649:2;51641:11;;;::::0;::::1;;51552:112;51507:157::o:0;31238:185::-;31376:39;31393:4;31399:2;31403:7;31376:39;;;;;;;;;;;;:16;:39::i;49992:360::-;50067:16;50095:23;50121:17;50131:6;50121:9;:17::i;:::-;50095:43;;50145:25;50187:15;50173:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50173:30:0;;50145:58;;50210:9;50230:95;50242:15;50238:1;:19;50230:95;;;50287:30;50307:6;50315:1;50287:19;:30::i;:::-;50273:8;50282:1;50273:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;50259:3;;;;:::i;:::-;;;;50230:95;;;-1:-1:-1;50338:8:0;49992:360;-1:-1:-1;;;49992:360:0:o;50895:80::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;50954:4:::1;:15:::0;50895:80::o;41855:233::-;41930:7;41966:30;41753:10;:17;;41665:113;41966:30;41958:5;:38;41950:95;;;;-1:-1:-1;;;41950:95:0;;16834:2:1;41950:95:0;;;16816:21:1;16873:2;16853:18;;;16846:30;16912:34;16892:18;;;16885:62;-1:-1:-1;;;16963:18:1;;;16956:42;17015:19;;41950:95:0;16632:408:1;41950:95:0;42063:10;42074:5;42063:17;;;;;;;;:::i;:::-;;;;;;;;;42056:24;;41855:233;;;:::o;51103:98::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;51174:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51103:98:::0;:::o;49087:899::-;1812:1;2410:7;;:19;;2402:63;;;;-1:-1:-1;;;2402:63:0;;17247:2:1;2402:63:0;;;17229:21:1;17286:2;17266:18;;;17259:30;17325:33;17305:18;;;17298:61;17376:18;;2402:63:0;17045:355:1;2402:63:0;1812:1;2543:7;:18;49189:11:::1;::::0;::::1;;49181:20;;;::::0;::::1;;49208:10;49215:3;;49208:10;:::i;:::-;49234:6;::::0;::::1;;49233:7;49225:16;;;::::0;::::1;;49256:9;::::0;:31:::1;::::0;-1:-1:-1;;;49256:31:0;;49276:10:::1;49256:31;::::0;::::1;8011:51:1::0;49256:9:0::1;::::0;;::::1;-1:-1:-1::0;;;;;49256:9:0::1;::::0;:19:::1;::::0;7984:18:1;;49256:31:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49248:43;;;::::0;::::1;;49324:9;::::0;:35:::1;::::0;-1:-1:-1;;;49324:35:0;;49348:10:::1;49324:35;::::0;::::1;8011:51:1::0;49298:23:0::1;::::0;49324:9:::1;::::0;::::1;-1:-1:-1::0;;;;;49324:9:0::1;::::0;:23:::1;::::0;7984:18:1;;49324:35:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;49324:35:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;49298:61:::0;-1:-1:-1;49366:9:0::1;::::0;;49426:289:::1;49440:6;:13;49436:1;:17;49426:289;;;41753:10:::0;:17;49503:9:::1;::::0;49521;;49469:22;;-1:-1:-1;49533:10:0::1;::::0;49503:9:::1;::::0;;::::1;-1:-1:-1::0;;;;;49503:9:0::1;::::0;:17:::1;::::0;49521:6;;49528:1;;49521:9;::::1;;;;;:::i;:::-;;;;;;;49503:28;;;;;;;;;;;;;17899:25:1::0;;17887:2;17872:18;;17753:177;49503:28:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49503:40:0::1;;49500:66;;49556:8;;49500:66;49577:7;:18;49585:6;49592:1;49585:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;49577:18;;;::::1;::::0;;;;;;-1:-1:-1;49577:18:0;;::::1;;:24;;:18:::0;:24:::1;49574:50;;;49614:8;;49574:50;49648:9;::::0;49635:10:::1;:6:::0;49644:1:::1;49635:10;:::i;:::-;:22;49632:48;;;49670:8;;49632:48;49688:3;49697:6;49704:1;49697:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;49688:19;;::::1;::::0;::::1;::::0;;-1:-1:-1;49688:19:0;;;;;;;::::1;::::0;49426:289:::1;49455:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49426:289;;;49738:3;:10:::0;49731:4:::1;::::0;:17:::1;::::0;49738:10;49731:17:::1;:::i;:::-;49723:25;;49776:5;49763:9;:18;;49755:27;;;::::0;::::1;;41753:10:::0;:17;49789:22:::1;;49824:1;49822:3;;49818:163;49829:3;:10:::0;49827:12;::::1;49818:163;;;49855:9;;;;;;;;;-1:-1:-1::0;;;;;49855:9:0::1;-1:-1:-1::0;;;;;49855:32:0::1;;49888:3;49892:1;49888:6;;;;;;;;:::i;:::-;;;;;;;;;49855:40;;;;;;;;;;;;;17899:25:1::0;;17887:2;17872:18;;17753:177;49855:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;49914:28;49924:3;49940:1;49929:6;49938:1;49929:10;;;;:::i;:::-;:12;;;;:::i;:::-;49914:9;:28::i;:::-;49969:4;49951:7;:15;49959:3;49963:1;49959:6;;;;;;;;:::i;:::-;;;;;;;;;49951:15;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;49841:3;;;;;:::i;:::-;;;;49818:163;;;-1:-1:-1::0;;1768:1:0;2722:7;:22;-1:-1:-1;;;49087:899:0:o;28213:239::-;28285:7;28321:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28321:16:0;28356:19;28348:73;;;;-1:-1:-1;;;28348:73:0;;13643:2:1;28348:73:0;;;13625:21:1;13682:2;13662:18;;;13655:30;13721:34;13701:18;;;13694:62;-1:-1:-1;;;13772:18:1;;;13765:39;13821:19;;28348:73:0;13441:405:1;47880:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50787:86::-;50829:7;50854:13;41753:10;:17;;41665:113;50854:13;50847:20;;50787:86;:::o;27943:208::-;28015:7;-1:-1:-1;;;;;28043:19:0;;28035:74;;;;-1:-1:-1;;;28035:74:0;;13232:2:1;28035:74:0;;;13214:21:1;13271:2;13251:18;;;13244:30;13310:34;13290:18;;;13283:62;-1:-1:-1;;;13361:18:1;;;13354:40;13411:19;;28035:74:0;13030:406:1;28035:74:0;-1:-1:-1;;;;;;28127:16:0;;;;;:9;:16;;;;;;;27943:208::o;7489:103::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;7554:30:::1;7581:1;7554:18;:30::i;:::-;7489:103::o:0;50981:116::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;51058:13:::1;:33:::0;50981:116::o;28688:104::-;28744:13;28777:7;28770:14;;;;;:::i;30371:155::-;30466:52;5642:10;30499:8;30509;30466:18;:52::i;48671:410::-;1812:1;2410:7;;:19;;2402:63;;;;-1:-1:-1;;;2402:63:0;;17247:2:1;2402:63:0;;;17229:21:1;17286:2;17266:18;;;17259:30;17325:33;17305:18;;;17298:61;17376:18;;2402:63:0;17045:355:1;2402:63:0;1812:1;2543:7;:18;48787:6:::1;::::0;::::1;;48786:7;48778:16;;;::::0;::::1;;48822:4;;48809:9;:17;;48801:26;;;::::0;::::1;;48863:9;::::0;41753:10;:17;48842::::1;::::0;48858:1:::1;48842:17;:::i;:::-;:30;;48834:39;;;::::0;::::1;;48888:9;::::0;:25:::1;::::0;-1:-1:-1;;;48888:25:0;;::::1;::::0;::::1;17899::1::0;;;48915:10:0::1;::::0;48888:9:::1;::::0;::::1;-1:-1:-1::0;;;;;48888:9:0::1;::::0;:17:::1;::::0;17872:18:1;;48888:25:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48888:37:0::1;;48880:69;;;::::0;-1:-1:-1;;;48880:69:0;;17607:2:1;48880:69:0::1;::::0;::::1;17589:21:1::0;17646:2;17626:18;;;17619:30;-1:-1:-1;;;17665:18:1;;;17658:49;17724:18;;48880:69:0::1;17405:343:1::0;48880:69:0::1;48956:9;::::0;:40:::1;::::0;-1:-1:-1;;;48956:40:0;;::::1;::::0;::::1;17899:25:1::0;;;48956:9:0::1;::::0;;::::1;-1:-1:-1::0;;;;;48956:9:0::1;::::0;:32:::1;::::0;17872:18:1;;48956:40:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;49013:33;49023:3;49028:13;41753:10:::0;:17;;41665:113;49028:13:::1;:17;::::0;49044:1:::1;49028:17;:::i;49013:33::-;49053:15;::::0;;;:7:::1;:15;::::0;;;;:22;;-1:-1:-1;;49053:22:0::1;49071:4;49053:22:::0;;::::1;::::0;;;2722:7;:22;-1:-1:-1;48671:410:0:o;31494:328::-;31669:41;5642:10;31702:7;31669:18;:41::i;:::-;31661:103;;;;-1:-1:-1;;;31661:103:0;;;;;;;:::i;:::-;31775:39;31789:4;31795:2;31799:7;31808:5;31775:13;:39::i;:::-;31494:328;;;;:::o;47936:37::-;;;;;;;:::i;50358:423::-;33397:4;33421:16;;;:7;:16;;;;;;50456:13;;-1:-1:-1;;;;;33421:16:0;50481:97;;;;-1:-1:-1;;;50481:97:0;;15598:2:1;50481:97:0;;;15580:21:1;15637:2;15617:18;;;15610:30;15676:34;15656:18;;;15649:62;-1:-1:-1;;;15727:18:1;;;15720:45;15782:19;;50481:97:0;15396:411:1;50481:97:0;50587:28;50618:10;:8;:10::i;:::-;50587:41;;50673:1;50648:14;50642:28;:32;:133;;;;;;;;;;;;;;;;;50710:14;50726:18;:7;:16;:18::i;:::-;50746:13;50693:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50642:133;50635:140;50358:423;-1:-1:-1;;;50358:423:0:o;51207:122::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;51290:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;7747:201::-:0;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7836:22:0;::::1;7828:73;;;::::0;-1:-1:-1;;;7828:73:0;;10871:2:1;7828:73:0::1;::::0;::::1;10853:21:1::0;10910:2;10890:18;;;10883:30;10949:34;10929:18;;;10922:62;-1:-1:-1;;;11000:18:1;;;10993:36;11046:19;;7828:73:0::1;10669:402:1::0;7828:73:0::1;7912:28;7931:8;7912:18;:28::i;27574:305::-:0;27676:4;-1:-1:-1;;;;;;27713:40:0;;-1:-1:-1;;;27713:40:0;;:105;;-1:-1:-1;;;;;;;27770:48:0;;-1:-1:-1;;;27770:48:0;27713:105;:158;;;-1:-1:-1;;;;;;;;;;19379:40:0;;;27835:36;19270:157;37314:174;37389:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37389:29:0;-1:-1:-1;;;;;37389:29:0;;;;;;;;:24;;37443:23;37389:24;37443:14;:23::i;:::-;-1:-1:-1;;;;;37434:46:0;;;;;;;;;;;37314:174;;:::o;33626:348::-;33719:4;33421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33421:16:0;33736:73;;;;-1:-1:-1;;;33736:73:0;;12394:2:1;33736:73:0;;;12376:21:1;12433:2;12413:18;;;12406:30;12472:34;12452:18;;;12445:62;-1:-1:-1;;;12523:18:1;;;12516:42;12575:19;;33736:73:0;12192:408:1;33736:73:0;33820:13;33836:23;33851:7;33836:14;:23::i;:::-;33820:39;;33889:5;-1:-1:-1;;;;;33878:16:0;:7;-1:-1:-1;;;;;33878:16:0;;:51;;;;33922:7;-1:-1:-1;;;;;33898:31:0;:20;33910:7;33898:11;:20::i;:::-;-1:-1:-1;;;;;33898:31:0;;33878:51;:87;;;-1:-1:-1;;;;;;30718:25:0;;;30694:4;30718:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33933:32;33870:96;33626:348;-1:-1:-1;;;;33626:348:0:o;36618:578::-;36777:4;-1:-1:-1;;;;;36750:31:0;:23;36765:7;36750:14;:23::i;:::-;-1:-1:-1;;;;;36750:31:0;;36742:85;;;;-1:-1:-1;;;36742:85:0;;15188:2:1;36742:85:0;;;15170:21:1;15227:2;15207:18;;;15200:30;15266:34;15246:18;;;15239:62;-1:-1:-1;;;15317:18:1;;;15310:39;15366:19;;36742:85:0;14986:405:1;36742:85:0;-1:-1:-1;;;;;36846:16:0;;36838:65;;;;-1:-1:-1;;;36838:65:0;;11635:2:1;36838:65:0;;;11617:21:1;11674:2;11654:18;;;11647:30;11713:34;11693:18;;;11686:62;-1:-1:-1;;;11764:18:1;;;11757:34;11808:19;;36838:65:0;11433:400:1;36838:65:0;36916:39;36937:4;36943:2;36947:7;36916:20;:39::i;:::-;37020:29;37037:1;37041:7;37020:8;:29::i;:::-;-1:-1:-1;;;;;37062:15:0;;;;;;:9;:15;;;;;:20;;37081:1;;37062:15;:20;;37081:1;;37062:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37093:13:0;;;;;;:9;:13;;;;;:18;;37110:1;;37093:13;:18;;37110:1;;37093:18;:::i;:::-;;;;-1:-1:-1;;37122:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37122:21:0;-1:-1:-1;;;;;37122:21:0;;;;;;;;;37161:27;;37122:16;;37161:27;;;;;;;36618:578;;;:::o;34316:110::-;34392:26;34402:2;34406:7;34392:26;;;;;;;;;;;;:9;:26::i;8108:191::-;8201:6;;;-1:-1:-1;;;;;8218:17:0;;;-1:-1:-1;;;;;;8218:17:0;;;;;;;8251:40;;8201:6;;;8218:17;8201:6;;8251:40;;8182:16;;8251:40;8171:128;8108:191;:::o;37630:315::-;37785:8;-1:-1:-1;;;;;37776:17:0;:5;-1:-1:-1;;;;;37776:17:0;;;37768:55;;;;-1:-1:-1;;;37768:55:0;;12040:2:1;37768:55:0;;;12022:21:1;12079:2;12059:18;;;12052:30;12118:27;12098:18;;;12091:55;12163:18;;37768:55:0;11838:349:1;37768:55:0;-1:-1:-1;;;;;37834:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37834:46:0;;;;;;;;;;37896:41;;9343::1;;;37896::0;;9316:18:1;37896:41:0;;;;;;;37630:315;;;:::o;32704:::-;32861:28;32871:4;32877:2;32881:7;32861:9;:28::i;:::-;32908:48;32931:4;32937:2;32941:7;32950:5;32908:22;:48::i;:::-;32900:111;;;;-1:-1:-1;;;32900:111:0;;;;;;;:::i;48548:102::-;48608:13;48637:7;48630:14;;;;;:::i;3124:723::-;3180:13;3401:10;3397:53;;-1:-1:-1;;3428:10:0;;;;;;;;;;;;-1:-1:-1;;;3428:10:0;;;;;3124:723::o;3397:53::-;3475:5;3460:12;3516:78;3523:9;;3516:78;;3549:8;;;;:::i;:::-;;-1:-1:-1;3572:10:0;;-1:-1:-1;3580:2:0;3572:10;;:::i;:::-;;;3516:78;;;3604:19;3636:6;3626:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3626:17:0;;3604:39;;3654:154;3661:10;;3654:154;;3688:11;3698:1;3688:11;;:::i;:::-;;-1:-1:-1;3757:10:0;3765:2;3757:5;:10;:::i;:::-;3744:24;;:2;:24;:::i;:::-;3731:39;;3714:6;3721;3714:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3714:56:0;;;;;;;;-1:-1:-1;3785:11:0;3794:2;3785:11;;:::i;:::-;;;3654:154;;42701:589;-1:-1:-1;;;;;42907:18:0;;42903:187;;42942:40;42974:7;44117:10;:17;;44090:24;;;;:15;:24;;;;;:44;;;44145:24;;;;;;;;;;;;44013:164;42942:40;42903:187;;;43012:2;-1:-1:-1;;;;;43004:10:0;:4;-1:-1:-1;;;;;43004:10:0;;43000:90;;43031:47;43064:4;43070:7;43031:32;:47::i;:::-;-1:-1:-1;;;;;43104:16:0;;43100:183;;43137:45;43174:7;43137:36;:45::i;43100:183::-;43210:4;-1:-1:-1;;;;;43204:10:0;:2;-1:-1:-1;;;;;43204:10:0;;43200:83;;43231:40;43259:2;43263:7;43231:27;:40::i;34653:321::-;34783:18;34789:2;34793:7;34783:5;:18::i;:::-;34834:54;34865:1;34869:2;34873:7;34882:5;34834:22;:54::i;:::-;34812:154;;;;-1:-1:-1;;;34812:154:0;;;;;;;:::i;38510:799::-;38665:4;-1:-1:-1;;;;;38686:13:0;;9449:20;9497:8;38682:620;;38722:72;;-1:-1:-1;;;38722:72:0;;-1:-1:-1;;;;;38722:36:0;;;;;:72;;5642:10;;38773:4;;38779:7;;38788:5;;38722:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38722:72:0;;;;;;;;-1:-1:-1;;38722:72:0;;;;;;;;;;;;:::i;:::-;;;38718:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38964:13:0;;38960:272;;39007:60;;-1:-1:-1;;;39007:60:0;;;;;;;:::i;38960:272::-;39182:6;39176:13;39167:6;39163:2;39159:15;39152:38;38718:529;-1:-1:-1;;;;;;38845:51:0;-1:-1:-1;;;38845:51:0;;-1:-1:-1;38838:58:0;;38682:620;-1:-1:-1;39286:4:0;38510:799;;;;;;:::o;44804:988::-;45070:22;45120:1;45095:22;45112:4;45095:16;:22::i;:::-;:26;;;;:::i;:::-;45132:18;45153:26;;;:17;:26;;;;;;45070:51;;-1:-1:-1;45286:28:0;;;45282:328;;-1:-1:-1;;;;;45353:18:0;;45331:19;45353:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45404:30;;;;;;:44;;;45521:30;;:17;:30;;;;;:43;;;45282:328;-1:-1:-1;45706:26:0;;;;:17;:26;;;;;;;;45699:33;;;-1:-1:-1;;;;;45750:18:0;;;;;:12;:18;;;;;:34;;;;;;;45743:41;44804:988::o;46087:1079::-;46365:10;:17;46340:22;;46365:21;;46385:1;;46365:21;:::i;:::-;46397:18;46418:24;;;:15;:24;;;;;;46791:10;:26;;46340:46;;-1:-1:-1;46418:24:0;;46340:46;;46791:26;;;;;;:::i;:::-;;;;;;;;;46769:48;;46855:11;46830:10;46841;46830:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46935:28;;;:15;:28;;;;;;;:41;;;47107:24;;;;;47100:31;47142:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;46158:1008;;;46087:1079;:::o;43591:221::-;43676:14;43693:20;43710:2;43693:16;:20::i;:::-;-1:-1:-1;;;;;43724:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43769:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43591:221:0:o;35310:382::-;-1:-1:-1;;;;;35390:16:0;;35382:61;;;;-1:-1:-1;;;35382:61:0;;14053:2:1;35382:61:0;;;14035:21:1;;;14072:18;;;14065:30;14131:34;14111:18;;;14104:62;14183:18;;35382:61:0;13851:356:1;35382:61:0;33397:4;33421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33421:16:0;:30;35454:58;;;;-1:-1:-1;;;35454:58:0;;11278:2:1;35454:58:0;;;11260:21:1;11317:2;11297:18;;;11290:30;11356;11336:18;;;11329:58;11404:18;;35454:58:0;11076:352:1;35454:58:0;35525:45;35554:1;35558:2;35562:7;35525:20;:45::i;:::-;-1:-1:-1;;;;;35583:13:0;;;;;;:9;:13;;;;;:18;;35600:1;;35583:13;:18;;35600:1;;35583:18;:::i;:::-;;;;-1:-1:-1;;35612:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35612:21:0;-1:-1:-1;;;;;35612:21:0;;;;;;;;35651:33;;35612:16;;;35651:33;;35612:16;;35651:33;35310:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:160::-;490:20;;546:13;;539:21;529:32;;519:60;;575:1;572;565:12;519:60;425:160;;;:::o;590:247::-;649:6;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;842:251::-;912:6;965:2;953:9;944:7;940:23;936:32;933:52;;;981:1;978;971:12;933:52;1013:9;1007:16;1032:31;1057:5;1032:31;:::i;1098:388::-;1166:6;1174;1227:2;1215:9;1206:7;1202:23;1198:32;1195:52;;;1243:1;1240;1233:12;1195:52;1282:9;1269:23;1301:31;1326:5;1301:31;:::i;:::-;1351:5;-1:-1:-1;1408:2:1;1393:18;;1380:32;1421:33;1380:32;1421:33;:::i;:::-;1473:7;1463:17;;;1098:388;;;;;:::o;1491:456::-;1568:6;1576;1584;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;1692:9;1679:23;1711:31;1736:5;1711:31;:::i;:::-;1761:5;-1:-1:-1;1818:2:1;1803:18;;1790:32;1831:33;1790:32;1831:33;:::i;:::-;1491:456;;1883:7;;-1:-1:-1;;;1937:2:1;1922:18;;;;1909:32;;1491:456::o;1952:794::-;2047:6;2055;2063;2071;2124:3;2112:9;2103:7;2099:23;2095:33;2092:53;;;2141:1;2138;2131:12;2092:53;2180:9;2167:23;2199:31;2224:5;2199:31;:::i;:::-;2249:5;-1:-1:-1;2306:2:1;2291:18;;2278:32;2319:33;2278:32;2319:33;:::i;:::-;2371:7;-1:-1:-1;2425:2:1;2410:18;;2397:32;;-1:-1:-1;2480:2:1;2465:18;;2452:32;2507:18;2496:30;;2493:50;;;2539:1;2536;2529:12;2493:50;2562:22;;2615:4;2607:13;;2603:27;-1:-1:-1;2593:55:1;;2644:1;2641;2634:12;2593:55;2667:73;2732:7;2727:2;2714:16;2709:2;2705;2701:11;2667:73;:::i;:::-;2657:83;;;1952:794;;;;;;;:::o;2751:315::-;2816:6;2824;2877:2;2865:9;2856:7;2852:23;2848:32;2845:52;;;2893:1;2890;2883:12;2845:52;2932:9;2919:23;2951:31;2976:5;2951:31;:::i;:::-;3001:5;-1:-1:-1;3025:35:1;3056:2;3041:18;;3025:35;:::i;:::-;3015:45;;2751:315;;;;;:::o;3071:::-;3139:6;3147;3200:2;3188:9;3179:7;3175:23;3171:32;3168:52;;;3216:1;3213;3206:12;3168:52;3255:9;3242:23;3274:31;3299:5;3274:31;:::i;:::-;3324:5;3376:2;3361:18;;;;3348:32;;-1:-1:-1;;;3071:315:1:o;3391:947::-;3486:6;3517:2;3560;3548:9;3539:7;3535:23;3531:32;3528:52;;;3576:1;3573;3566:12;3528:52;3609:9;3603:16;3638:18;3679:2;3671:6;3668:14;3665:34;;;3695:1;3692;3685:12;3665:34;3733:6;3722:9;3718:22;3708:32;;3778:7;3771:4;3767:2;3763:13;3759:27;3749:55;;3800:1;3797;3790:12;3749:55;3829:2;3823:9;3851:2;3847;3844:10;3841:36;;;3857:18;;:::i;:::-;3903:2;3900:1;3896:10;3886:20;;3926:28;3950:2;3946;3942:11;3926:28;:::i;:::-;3988:15;;;4019:12;;;;4051:11;;;4081;;;4077:20;;4074:33;-1:-1:-1;4071:53:1;;;4120:1;4117;4110:12;4071:53;4142:1;4133:10;;4152:156;4166:2;4163:1;4160:9;4152:156;;;4223:10;;4211:23;;4184:1;4177:9;;;;;4254:12;;;;4286;;4152:156;;;-1:-1:-1;4327:5:1;3391:947;-1:-1:-1;;;;;;;;3391:947:1:o;4343:180::-;4399:6;4452:2;4440:9;4431:7;4427:23;4423:32;4420:52;;;4468:1;4465;4458:12;4420:52;4491:26;4507:9;4491:26;:::i;4528:245::-;4586:6;4639:2;4627:9;4618:7;4614:23;4610:32;4607:52;;;4655:1;4652;4645:12;4607:52;4694:9;4681:23;4713:30;4737:5;4713:30;:::i;4778:249::-;4847:6;4900:2;4888:9;4879:7;4875:23;4871:32;4868:52;;;4916:1;4913;4906:12;4868:52;4948:9;4942:16;4967:30;4991:5;4967:30;:::i;5032:450::-;5101:6;5154:2;5142:9;5133:7;5129:23;5125:32;5122:52;;;5170:1;5167;5160:12;5122:52;5210:9;5197:23;5243:18;5235:6;5232:30;5229:50;;;5275:1;5272;5265:12;5229:50;5298:22;;5351:4;5343:13;;5339:27;-1:-1:-1;5329:55:1;;5380:1;5377;5370:12;5329:55;5403:73;5468:7;5463:2;5450:16;5445:2;5441;5437:11;5403:73;:::i;5487:180::-;5546:6;5599:2;5587:9;5578:7;5574:23;5570:32;5567:52;;;5615:1;5612;5605:12;5567:52;-1:-1:-1;5638:23:1;;5487:180;-1:-1:-1;5487:180:1:o;5672:184::-;5742:6;5795:2;5783:9;5774:7;5770:23;5766:32;5763:52;;;5811:1;5808;5801:12;5763:52;-1:-1:-1;5834:16:1;;5672:184;-1:-1:-1;5672:184:1:o;5861:257::-;5902:3;5940:5;5934:12;5967:6;5962:3;5955:19;5983:63;6039:6;6032:4;6027:3;6023:14;6016:4;6009:5;6005:16;5983:63;:::i;:::-;6100:2;6079:15;-1:-1:-1;;6075:29:1;6066:39;;;;6107:4;6062:50;;5861:257;-1:-1:-1;;5861:257:1:o;6123:1527::-;6347:3;6385:6;6379:13;6411:4;6424:51;6468:6;6463:3;6458:2;6450:6;6446:15;6424:51;:::i;:::-;6538:13;;6497:16;;;;6560:55;6538:13;6497:16;6582:15;;;6560:55;:::i;:::-;6704:13;;6637:20;;;6677:1;;6764;6786:18;;;;6839;;;;6866:93;;6944:4;6934:8;6930:19;6918:31;;6866:93;7007:2;6997:8;6994:16;6974:18;6971:40;6968:167;;;-1:-1:-1;;;7034:33:1;;7090:4;7087:1;7080:15;7120:4;7041:3;7108:17;6968:167;7151:18;7178:110;;;;7302:1;7297:328;;;;7144:481;;7178:110;-1:-1:-1;;7213:24:1;;7199:39;;7258:20;;;;-1:-1:-1;7178:110:1;;7297:328;18288:1;18281:14;;;18325:4;18312:18;;7392:1;7406:169;7420:8;7417:1;7414:15;7406:169;;;7502:14;;7487:13;;;7480:37;7545:16;;;;7437:10;;7406:169;;;7410:3;;7606:8;7599:5;7595:20;7588:27;;7144:481;-1:-1:-1;7641:3:1;;6123:1527;-1:-1:-1;;;;;;;;;;;6123:1527:1:o;8073:488::-;-1:-1:-1;;;;;8342:15:1;;;8324:34;;8394:15;;8389:2;8374:18;;8367:43;8441:2;8426:18;;8419:34;;;8489:3;8484:2;8469:18;;8462:31;;;8267:4;;8510:45;;8535:19;;8527:6;8510:45;:::i;:::-;8502:53;8073:488;-1:-1:-1;;;;;;8073:488:1:o;8566:632::-;8737:2;8789:21;;;8859:13;;8762:18;;;8881:22;;;8708:4;;8737:2;8960:15;;;;8934:2;8919:18;;;8708:4;9003:169;9017:6;9014:1;9011:13;9003:169;;;9078:13;;9066:26;;9147:15;;;;9112:12;;;;9039:1;9032:9;9003:169;;;-1:-1:-1;9189:3:1;;8566:632;-1:-1:-1;;;;;;8566:632:1:o;9614:219::-;9763:2;9752:9;9745:21;9726:4;9783:44;9823:2;9812:9;9808:18;9800:6;9783:44;:::i;10250:414::-;10452:2;10434:21;;;10491:2;10471:18;;;10464:30;10530:34;10525:2;10510:18;;10503:62;-1:-1:-1;;;10596:2:1;10581:18;;10574:48;10654:3;10639:19;;10250:414::o;14625:356::-;14827:2;14809:21;;;14846:18;;;14839:30;14905:34;14900:2;14885:18;;14878:62;14972:2;14957:18;;14625:356::o;16214:413::-;16416:2;16398:21;;;16455:2;16435:18;;;16428:30;16494:34;16489:2;16474:18;;16467:62;-1:-1:-1;;;16560:2:1;16545:18;;16538:47;16617:3;16602:19;;16214:413::o;17935:275::-;18006:2;18000:9;18071:2;18052:13;;-1:-1:-1;;18048:27:1;18036:40;;18106:18;18091:34;;18127:22;;;18088:62;18085:88;;;18153:18;;:::i;:::-;18189:2;18182:22;17935:275;;-1:-1:-1;17935:275:1:o;18341:128::-;18381:3;18412:1;18408:6;18405:1;18402:13;18399:39;;;18418:18;;:::i;:::-;-1:-1:-1;18454:9:1;;18341:128::o;18474:120::-;18514:1;18540;18530:35;;18545:18;;:::i;:::-;-1:-1:-1;18579:9:1;;18474:120::o;18599:168::-;18639:7;18705:1;18701;18697:6;18693:14;18690:1;18687:21;18682:1;18675:9;18668:17;18664:45;18661:71;;;18712:18;;:::i;:::-;-1:-1:-1;18752:9:1;;18599:168::o;18772:125::-;18812:4;18840:1;18837;18834:8;18831:34;;;18845:18;;:::i;:::-;-1:-1:-1;18882:9:1;;18772:125::o;18902:258::-;18974:1;18984:113;18998:6;18995:1;18992:13;18984:113;;;19074:11;;;19068:18;19055:11;;;19048:39;19020:2;19013:10;18984:113;;;19115:6;19112:1;19109:13;19106:48;;;-1:-1:-1;;19150:1:1;19132:16;;19125:27;18902:258::o;19165:380::-;19244:1;19240:12;;;;19287;;;19308:61;;19362:4;19354:6;19350:17;19340:27;;19308:61;19415:2;19407:6;19404:14;19384:18;19381:38;19378:161;;;19461:10;19456:3;19452:20;19449:1;19442:31;19496:4;19493:1;19486:15;19524:4;19521:1;19514:15;19378:161;;19165:380;;;:::o;19550:135::-;19589:3;-1:-1:-1;;19610:17:1;;19607:43;;;19630:18;;:::i;:::-;-1:-1:-1;19677:1:1;19666:13;;19550:135::o;19690:112::-;19722:1;19748;19738:35;;19753:18;;:::i;:::-;-1:-1:-1;19787:9:1;;19690:112::o;19807:127::-;19868:10;19863:3;19859:20;19856:1;19849:31;19899:4;19896:1;19889:15;19923:4;19920:1;19913:15;19939:127;20000:10;19995:3;19991:20;19988:1;19981:31;20031:4;20028:1;20021:15;20055:4;20052:1;20045:15;20071:127;20132:10;20127:3;20123:20;20120:1;20113:31;20163:4;20160:1;20153:15;20187:4;20184:1;20177:15;20203:127;20264:10;20259:3;20255:20;20252:1;20245:31;20295:4;20292:1;20285:15;20319:4;20316:1;20309:15;20335:127;20396:10;20391:3;20387:20;20384:1;20377:31;20427:4;20424:1;20417:15;20451:4;20448:1;20441:15;20467:131;-1:-1:-1;;;;;20542:31:1;;20532:42;;20522:70;;20588:1;20585;20578:12;20603:131;-1:-1:-1;;;;;;20677:32:1;;20667:43;;20657:71;;20724:1;20721;20714:12

Swarm Source

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