ETH Price: $3,026.95 (+2.28%)
Gas: 2 Gwei

Token

Doodle Miners (DM)
 

Overview

Max Total Supply

4,444 DM

Holders

682

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 DM
0xd75240d07de8dd19e16255270caa4ff771a65511
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:
NFTArtGenPresale

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// Sources flattened with hardhat v2.8.0 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

// 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/token/ERC721/[email protected]

// 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/[email protected]

// 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/token/ERC721/extensions/[email protected]

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

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

// 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/utils/[email protected]

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

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/utils/[email protected]

// 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/introspection/[email protected]

// 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/[email protected]

// 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/access/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File contracts/NFTArtGen.sol


pragma solidity ^0.8.4;



// 
// Built by https://nft-generator.art
// 
contract NFTArtGen is ERC721, Ownable {
    string internal baseUri;

    uint256 public cost = 0.05 ether;
    uint32 public maxPerMint = 5;
    uint32 public maxPerWallet = 20;
    uint32 public supply = 0;
    uint32 public totalSupply = 0;
    bool public open = false;
    mapping(address => uint256) internal addressMintedMap;

    uint32 private commission = 49; // 4.9%
    address private author = 0x460Fd5059E7301680fA53E63bbBF7272E643e89C;

    constructor(
        string memory _uri,
        string memory _name,
        string memory _symbol,
        uint32 _totalSupply,
        uint256 _cost,
        bool _open
    ) ERC721(_name, _symbol) {
        baseUri = _uri;
        totalSupply = _totalSupply;
        cost = _cost;
        open = _open;
    }

    // ------ Author Only ------

    function setCommission(uint32 _commision) public {
        require(msg.sender == author, "Incorrect Address");
        commission = _commision;
    }

    // ------ Owner Only ------

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

    function setOpen(bool _open) public onlyOwner {
        open = _open;
    }

    function setMaxPerWallet(uint32 _max) public onlyOwner {
        maxPerWallet = _max;
    }

    function setMaxPerMint(uint32 _max) public onlyOwner {
        maxPerMint = _max;
    }

    function airdrop(address[] calldata to) public onlyOwner {
        for (uint32 i = 0; i < to.length; i++) {
            require(1 + supply <= totalSupply, "Limit reached");
            _safeMint(to[i], ++supply, "");
        }
    }

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

    // ------ Mint! ------

    function mint(uint32 count) external payable preMintChecks(count) {
        require(open == true, "Mint not open");
        performMint(count);
    }

    function performMint(uint32 count) internal {
        for (uint32 i = 0; i < count; i++) {
            _safeMint(msg.sender, ++supply, "");
        }
        
        addressMintedMap[msg.sender] += count;

        (bool success, ) = payable(author).call{
            value: (msg.value * commission) / 1000
        }("");
        require(success);
    }

    // ------ Read ------

    // ------ Modifiers ------

    modifier preMintChecks(uint32 count) {
        require(count > 0, "Mint at least one.");
        require(count < maxPerMint + 1, "Max mint reached.");
        require(msg.value >= cost * count, "Not enough fund.");
        require(supply + count < totalSupply + 1, "Mint sold out");
        require(
            addressMintedMap[msg.sender] + count <= maxPerWallet,
            "Max total mint reached"
        );
        _;
    }
}


// File @openzeppelin/contracts/utils/cryptography/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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


// File contracts/utils/Presaleable.sol


pragma solidity ^0.8.4;


abstract contract Presaleable is NFTArtGen {
    bool public presaleOpen = false;
    bytes32 private merkleRoot;

    function setPresaleOpen(bool _open) public onlyOwner {
        presaleOpen = _open;
    }

    function setPreSaleAddresses(bytes32 root) public onlyOwner {
        merkleRoot = root;
    }

    function presaleMint(uint32 count, bytes32[] calldata proof)
        external
        payable
        preMintChecks(count)
    {
        require(presaleOpen, "Presale not open");
        require(merkleRoot != "", "Presale not ready");
        require(
            MerkleProof.verify(
                proof,
                merkleRoot,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "Not a presale member"
        );

        performMint(count);
    }
}


// File contracts/extensions/Presale.sol


pragma solidity ^0.8.4;



contract NFTArtGenPresale is NFTArtGen, Presaleable {
    constructor(
        string memory _uri,
        string memory _name,
        string memory _symbol,
        uint32 _totalSupply,
        uint256 _cost,
        bool _open
    ) NFTArtGen(_uri, _name, _symbol, _totalSupply, _cost, _open) {}

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_tokenId <= supply, "Not minted yet");

        return
            string(
                abi.encodePacked(baseUri, Strings.toString(_tokenId), ".json")
            );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint32","name":"_totalSupply","type":"uint32"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"bool","name":"_open","type":"bool"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerMint","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"count","type":"uint32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"open","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint32","name":"count","type":"uint32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleOpen","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":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_commision","type":"uint32"}],"name":"setCommission","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_max","type":"uint32"}],"name":"setMaxPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_max","type":"uint32"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_open","type":"bool"}],"name":"setOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setPreSaleAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_open","type":"bool"}],"name":"setPresaleOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405266b1a2bc2ec50000600855600980546001600160881b031916641400000005179055600b80546001600160c81b03191677460fd5059e7301680fa53e63bbbf7272e643e89c000000311790553480156200005d57600080fd5b5060405162002a9a38038062002a9a833981016040819052620000809162000309565b85858585858584848160009080519060200190620000a09291906200019a565b508051620000b69060019060208401906200019a565b505050620000d3620000cd6200014460201b60201c565b62000148565b8551620000e89060079060208901906200019a565b5060098054600893909355901515600160801b0260ff60801b1963ffffffff9094166c01000000000000000000000000029390931664ffffffffff60601b19909216919091179190911790555062000421975050505050505050565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a890620003ce565b90600052602060002090601f016020900481019282620001cc576000855562000217565b82601f10620001e757805160ff191683800117855562000217565b8280016001018555821562000217579182015b8281111562000217578251825591602001919060010190620001fa565b506200022592915062000229565b5090565b5b808211156200022557600081556001016200022a565b805180151581146200025157600080fd5b919050565b600082601f83011262000267578081fd5b81516001600160401b03808211156200028457620002846200040b565b604051601f8301601f19908116603f01168101908282118183101715620002af57620002af6200040b565b81604052838152602092508683858801011115620002cb578485fd5b8491505b83821015620002ee5785820183015181830184015290820190620002cf565b83821115620002ff57848385830101525b9695505050505050565b60008060008060008060c0878903121562000322578182fd5b86516001600160401b038082111562000339578384fd5b620003478a838b0162000256565b975060208901519150808211156200035d578384fd5b6200036b8a838b0162000256565b9650604089015191508082111562000381578384fd5b506200039089828a0162000256565b945050606087015163ffffffff81168114620003aa578283fd5b60808801519093509150620003c260a0880162000240565b90509295509295509295565b600181811c90821680620003e357607f821691505b602082108114156200040557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61266980620004316000396000f3fe6080604052600436106101f95760003560e01c80636fdca5e01161010d578063a71bbebe116100a0578063e985e9c51161006f578063e985e9c5146105a9578063f2fde38b146105f2578063f5b9662114610612578063f8048d8f14610632578063fcfff16f1461065257600080fd5b8063a71bbebe14610535578063b88d4fde14610548578063bee6348a14610568578063c87b56dd1461058957600080fd5b80638da5cb5b116100dc5780638da5cb5b146104c257806395d89b41146104e05780639e5666cd146104f5578063a22cb4651461051557600080fd5b80636fdca5e01461044d57806370a082311461046d578063715018a61461048d578063729ad39e146104a257600080fd5b806318160ddd1161019057806342842e0e1161015f57806342842e0e146103ab57806344a0d68a146103cb578063453c2310146103eb578063507e094f146104105780636352211e1461042d57600080fd5b806318160ddd1461033f57806323b872dd146103635780633006b543146103835780633ccfd60b146103a357600080fd5b8063081812fc116101cc578063081812fc146102a3578063092501a0146102db578063095ea7b3146102fb57806313faede61461031b57600080fd5b806301ffc9a7146101fe5780630364d22a14610233578063047fc9aa1461024857806306fdde0314610281575b600080fd5b34801561020a57600080fd5b5061021e6102193660046121ca565b610673565b60405190151581526020015b60405180910390f35b61024661024136600461221c565b6106c5565b005b34801561025457600080fd5b5060095461026c90600160401b900463ffffffff1681565b60405163ffffffff909116815260200161022a565b34801561028d57600080fd5b50610296610a1a565b60405161022a91906123ac565b3480156102af57600080fd5b506102c36102be3660046121b2565b610aac565b6040516001600160a01b03909116815260200161022a565b3480156102e757600080fd5b506102466102f6366004612202565b610b41565b34801561030757600080fd5b5061024661031636600461212f565b610bb3565b34801561032757600080fd5b5061033160085481565b60405190815260200161022a565b34801561034b57600080fd5b5060095461026c90600160601b900463ffffffff1681565b34801561036f57600080fd5b5061024661037e366004611ff6565b610cc9565b34801561038f57600080fd5b5061024661039e366004612202565b610cfa565b610246610d4c565b3480156103b757600080fd5b506102466103c6366004611ff6565b610dce565b3480156103d757600080fd5b506102466103e63660046121b2565b610de9565b3480156103f757600080fd5b5060095461026c90640100000000900463ffffffff1681565b34801561041c57600080fd5b5060095461026c9063ffffffff1681565b34801561043957600080fd5b506102c36104483660046121b2565b610e18565b34801561045957600080fd5b50610246610468366004612198565b610e8f565b34801561047957600080fd5b50610331610488366004611fa3565b610ed7565b34801561049957600080fd5b50610246610f5e565b3480156104ae57600080fd5b506102466104bd366004612158565b610f94565b3480156104ce57600080fd5b506006546001600160a01b03166102c3565b3480156104ec57600080fd5b506102966110de565b34801561050157600080fd5b506102466105103660046121b2565b6110ed565b34801561052157600080fd5b50610246610530366004612106565b61111c565b610246610543366004612202565b61112b565b34801561055457600080fd5b50610246610563366004612031565b61137c565b34801561057457600080fd5b50600b5461021e90600160c01b900460ff1681565b34801561059557600080fd5b506102966105a43660046121b2565b6113ae565b3480156105b557600080fd5b5061021e6105c4366004611fc4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105fe57600080fd5b5061024661060d366004611fa3565b611433565b34801561061e57600080fd5b5061024661062d366004612198565b6114cb565b34801561063e57600080fd5b5061024661064d366004612202565b611513565b34801561065e57600080fd5b5060095461021e90600160801b900460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806106a457506001600160e01b03198216635b5e139f60e01b145b806106bf57506301ffc9a760e01b6001600160e01b03198316145b92915050565b8260008163ffffffff16116107165760405162461bcd60e51b815260206004820152601260248201527126b4b73a1030ba103632b0b9ba1037b7329760711b60448201526064015b60405180910390fd5b60095461072a9063ffffffff1660016124af565b63ffffffff168163ffffffff16106107785760405162461bcd60e51b815260206004820152601160248201527026b0bc1036b4b73a103932b0b1b432b21760791b604482015260640161070d565b8063ffffffff1660085461078c91906124eb565b3410156107ce5760405162461bcd60e51b815260206004820152601060248201526f2737ba1032b737bab3b410333ab7321760811b604482015260640161070d565b6009546107e990600160601b900463ffffffff1660016124af565b60095463ffffffff91821691610809918491600160401b909104166124af565b63ffffffff161061084c5760405162461bcd60e51b815260206004820152600d60248201526c135a5b9d081cdbdb19081bdd5d609a1b604482015260640161070d565b600954336000908152600a602052604090205463ffffffff64010000000090920482169161087d9190841690612497565b11156108c45760405162461bcd60e51b815260206004820152601660248201527513585e081d1bdd185b081b5a5b9d081c995858da195960521b604482015260640161070d565b600b54600160c01b900460ff166109105760405162461bcd60e51b815260206004820152601060248201526f283932b9b0b632903737ba1037b832b760811b604482015260640161070d565b600c546109535760405162461bcd60e51b815260206004820152601160248201527050726573616c65206e6f7420726561647960781b604482015260640161070d565b6109c883838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611559565b610a0b5760405162461bcd60e51b81526020600482015260146024820152732737ba103090383932b9b0b6329036b2b6b132b960611b604482015260640161070d565b610a148461156f565b50505050565b606060008054610a299061254d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a559061254d565b8015610aa25780601f10610a7757610100808354040283529160200191610aa2565b820191906000526020600020905b815481529060010190602001808311610a8557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161070d565b506000908152600460205260409020546001600160a01b031690565b600b5464010000000090046001600160a01b03163314610b975760405162461bcd60e51b8152602060048201526011602482015270496e636f7272656374204164647265737360781b604482015260640161070d565b600b805463ffffffff191663ffffffff92909216919091179055565b6000610bbe82610e18565b9050806001600160a01b0316836001600160a01b03161415610c2c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161070d565b336001600160a01b0382161480610c485750610c4881336105c4565b610cba5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161070d565b610cc4838361166a565b505050565b610cd333826116d8565b610cef5760405162461bcd60e51b815260040161070d90612446565b610cc48383836117cf565b6006546001600160a01b03163314610d245760405162461bcd60e51b815260040161070d90612411565b6009805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b6006546001600160a01b03163314610d765760405162461bcd60e51b815260040161070d90612411565b604051600090339047908381818185875af1925050503d8060008114610db8576040519150601f19603f3d011682016040523d82523d6000602084013e610dbd565b606091505b5050905080610dcb57600080fd5b50565b610cc48383836040518060200160405280600081525061137c565b6006546001600160a01b03163314610e135760405162461bcd60e51b815260040161070d90612411565b600855565b6000818152600260205260408120546001600160a01b0316806106bf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161070d565b6006546001600160a01b03163314610eb95760405162461bcd60e51b815260040161070d90612411565b60098054911515600160801b0260ff60801b19909216919091179055565b60006001600160a01b038216610f425760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161070d565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610f885760405162461bcd60e51b815260040161070d90612411565b610f92600061196f565b565b6006546001600160a01b03163314610fbe5760405162461bcd60e51b815260040161070d90612411565b60005b63ffffffff8116821115610cc45760095463ffffffff600160601b8204811691610ff591600160401b9091041660016124af565b63ffffffff1611156110395760405162461bcd60e51b815260206004820152600d60248201526c131a5b5a5d081c995858da1959609a1b604482015260640161070d565b6110cc83838363ffffffff1681811061106257634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110779190611fa3565b6009805460089061109490600160401b900463ffffffff166125a3565b91906101000a81548163ffffffff021916908363ffffffff160217905563ffffffff16604051806020016040528060008152506119c1565b806110d6816125a3565b915050610fc1565b606060018054610a299061254d565b6006546001600160a01b031633146111175760405162461bcd60e51b815260040161070d90612411565b600c55565b6111273383836119f4565b5050565b8060008163ffffffff16116111775760405162461bcd60e51b815260206004820152601260248201527126b4b73a1030ba103632b0b9ba1037b7329760711b604482015260640161070d565b60095461118b9063ffffffff1660016124af565b63ffffffff168163ffffffff16106111d95760405162461bcd60e51b815260206004820152601160248201527026b0bc1036b4b73a103932b0b1b432b21760791b604482015260640161070d565b8063ffffffff166008546111ed91906124eb565b34101561122f5760405162461bcd60e51b815260206004820152601060248201526f2737ba1032b737bab3b410333ab7321760811b604482015260640161070d565b60095461124a90600160601b900463ffffffff1660016124af565b60095463ffffffff9182169161126a918491600160401b909104166124af565b63ffffffff16106112ad5760405162461bcd60e51b815260206004820152600d60248201526c135a5b9d081cdbdb19081bdd5d609a1b604482015260640161070d565b600954336000908152600a602052604090205463ffffffff6401000000009092048216916112de9190841690612497565b11156113255760405162461bcd60e51b815260206004820152601660248201527513585e081d1bdd185b081b5a5b9d081c995858da195960521b604482015260640161070d565b600954600160801b900460ff1615156001146113735760405162461bcd60e51b815260206004820152600d60248201526c26b4b73a103737ba1037b832b760991b604482015260640161070d565b6111278261156f565b61138633836116d8565b6113a25760405162461bcd60e51b815260040161070d90612446565b610a1484848484611ac3565b600954606090600160401b900463ffffffff168211156114015760405162461bcd60e51b815260206004820152600e60248201526d139bdd081b5a5b9d1959081e595d60921b604482015260640161070d565b600761140c83611af6565b60405160200161141d9291906122b5565b6040516020818303038152906040529050919050565b6006546001600160a01b0316331461145d5760405162461bcd60e51b815260040161070d90612411565b6001600160a01b0381166114c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161070d565b610dcb8161196f565b6006546001600160a01b031633146114f55760405162461bcd60e51b815260040161070d90612411565b600b8054911515600160c01b0260ff60c01b19909216919091179055565b6006546001600160a01b0316331461153d5760405162461bcd60e51b815260040161070d90612411565b6009805463ffffffff191663ffffffff92909216919091179055565b6000826115668584611c10565b14949350505050565b60005b8163ffffffff168163ffffffff1610156115ba576115a8336009600881819054906101000a900463ffffffff16611094906125a3565b806115b2816125a3565b915050611572565b50336000908152600a60205260408120805463ffffffff841692906115e0908490612497565b9091555050600b546000906001600160a01b03640100000000820416906103e8906116119063ffffffff16346124eb565b61161b91906124d7565b604051600081818185875af1925050503d8060008114611657576040519150601f19603f3d011682016040523d82523d6000602084013e61165c565b606091505b505090508061112757600080fd5b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061169f82610e18565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117515760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161070d565b600061175c83610e18565b9050806001600160a01b0316846001600160a01b031614806117975750836001600160a01b031661178c84610aac565b6001600160a01b0316145b806117c757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117e282610e18565b6001600160a01b03161461184a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161070d565b6001600160a01b0382166118ac5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161070d565b6118b760008261166a565b6001600160a01b03831660009081526003602052604081208054600192906118e090849061250a565b90915550506001600160a01b038216600090815260036020526040812080546001929061190e908490612497565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6119cb8383611cca565b6119d86000848484611e0c565b610cc45760405162461bcd60e51b815260040161070d906123bf565b816001600160a01b0316836001600160a01b03161415611a565760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161070d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ace8484846117cf565b611ada84848484611e0c565b610a145760405162461bcd60e51b815260040161070d906123bf565b606081611b1a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b445780611b2e81612588565b9150611b3d9050600a836124d7565b9150611b1e565b60008167ffffffffffffffff811115611b6d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b97576020820181803683370190505b5090505b84156117c757611bac60018361250a565b9150611bb9600a866125c7565b611bc4906030612497565b60f81b818381518110611be757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611c09600a866124d7565b9450611b9b565b600081815b8451811015611cc2576000858281518110611c4057634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611c82576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611caf565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611cba81612588565b915050611c15565b509392505050565b6001600160a01b038216611d205760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161070d565b6000818152600260205260409020546001600160a01b031615611d855760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161070d565b6001600160a01b0382166000908152600360205260408120805460019290611dae908490612497565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611f0e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e5090339089908890889060040161236f565b602060405180830381600087803b158015611e6a57600080fd5b505af1925050508015611e9a575060408051601f3d908101601f19168201909252611e97918101906121e6565b60015b611ef4573d808015611ec8576040519150601f19603f3d011682016040523d82523d6000602084013e611ecd565b606091505b508051611eec5760405162461bcd60e51b815260040161070d906123bf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117c7565b506001949350505050565b80356001600160a01b0381168114611f3057600080fd5b919050565b60008083601f840112611f46578081fd5b50813567ffffffffffffffff811115611f5d578182fd5b6020830191508360208260051b8501011115611f7857600080fd5b9250929050565b80358015158114611f3057600080fd5b803563ffffffff81168114611f3057600080fd5b600060208284031215611fb4578081fd5b611fbd82611f19565b9392505050565b60008060408385031215611fd6578081fd5b611fdf83611f19565b9150611fed60208401611f19565b90509250929050565b60008060006060848603121561200a578081fd5b61201384611f19565b925061202160208501611f19565b9150604084013590509250925092565b60008060008060808587031215612046578081fd5b61204f85611f19565b935061205d60208601611f19565b925060408501359150606085013567ffffffffffffffff80821115612080578283fd5b818701915087601f830112612093578283fd5b8135818111156120a5576120a5612607565b604051601f8201601f19908116603f011681019083821181831017156120cd576120cd612607565b816040528281528a60208487010111156120e5578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215612118578182fd5b61212183611f19565b9150611fed60208401611f7f565b60008060408385031215612141578182fd5b61214a83611f19565b946020939093013593505050565b6000806020838503121561216a578182fd5b823567ffffffffffffffff811115612180578283fd5b61218c85828601611f35565b90969095509350505050565b6000602082840312156121a9578081fd5b611fbd82611f7f565b6000602082840312156121c3578081fd5b5035919050565b6000602082840312156121db578081fd5b8135611fbd8161261d565b6000602082840312156121f7578081fd5b8151611fbd8161261d565b600060208284031215612213578081fd5b611fbd82611f8f565b600080600060408486031215612230578283fd5b61223984611f8f565b9250602084013567ffffffffffffffff811115612254578283fd5b61226086828701611f35565b9497909650939450505050565b60008151808452612285816020860160208601612521565b601f01601f19169290920160200192915050565b600081516122ab818560208601612521565b9290920192915050565b600080845482600182811c9150808316806122d157607f831692505b60208084108214156122f157634e487b7160e01b87526022600452602487fd5b818015612305576001811461231657612342565b60ff19861689528489019650612342565b60008b815260209020885b8681101561233a5781548b820152908501908301612321565b505084890196505b5050505050506123666123558286612299565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123a29083018461226d565b9695505050505050565b602081526000611fbd602083018461226d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156124aa576124aa6125db565b500190565b600063ffffffff8083168185168083038211156124ce576124ce6125db565b01949350505050565b6000826124e6576124e66125f1565b500490565b6000816000190483118215151615612505576125056125db565b500290565b60008282101561251c5761251c6125db565b500390565b60005b8381101561253c578181015183820152602001612524565b83811115610a145750506000910152565b600181811c9082168061256157607f821691505b6020821081141561258257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561259c5761259c6125db565b5060010190565b600063ffffffff808316818114156125bd576125bd6125db565b6001019392505050565b6000826125d6576125d66125f1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610dcb57600080fdfea26469706673582212200a0741fd2d805b3b7c070f588503497c2384895ff23e76b71f461741a8ac14b164736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000115c000000000000000000000000000000000000000000000000006a94d74f43000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696734667267666479676e746577356d6b3732376170686e6b636d766437716171746d377a3278707234377a737a737866717762712f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d446f6f646c65204d696e657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002444d000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636fdca5e01161010d578063a71bbebe116100a0578063e985e9c51161006f578063e985e9c5146105a9578063f2fde38b146105f2578063f5b9662114610612578063f8048d8f14610632578063fcfff16f1461065257600080fd5b8063a71bbebe14610535578063b88d4fde14610548578063bee6348a14610568578063c87b56dd1461058957600080fd5b80638da5cb5b116100dc5780638da5cb5b146104c257806395d89b41146104e05780639e5666cd146104f5578063a22cb4651461051557600080fd5b80636fdca5e01461044d57806370a082311461046d578063715018a61461048d578063729ad39e146104a257600080fd5b806318160ddd1161019057806342842e0e1161015f57806342842e0e146103ab57806344a0d68a146103cb578063453c2310146103eb578063507e094f146104105780636352211e1461042d57600080fd5b806318160ddd1461033f57806323b872dd146103635780633006b543146103835780633ccfd60b146103a357600080fd5b8063081812fc116101cc578063081812fc146102a3578063092501a0146102db578063095ea7b3146102fb57806313faede61461031b57600080fd5b806301ffc9a7146101fe5780630364d22a14610233578063047fc9aa1461024857806306fdde0314610281575b600080fd5b34801561020a57600080fd5b5061021e6102193660046121ca565b610673565b60405190151581526020015b60405180910390f35b61024661024136600461221c565b6106c5565b005b34801561025457600080fd5b5060095461026c90600160401b900463ffffffff1681565b60405163ffffffff909116815260200161022a565b34801561028d57600080fd5b50610296610a1a565b60405161022a91906123ac565b3480156102af57600080fd5b506102c36102be3660046121b2565b610aac565b6040516001600160a01b03909116815260200161022a565b3480156102e757600080fd5b506102466102f6366004612202565b610b41565b34801561030757600080fd5b5061024661031636600461212f565b610bb3565b34801561032757600080fd5b5061033160085481565b60405190815260200161022a565b34801561034b57600080fd5b5060095461026c90600160601b900463ffffffff1681565b34801561036f57600080fd5b5061024661037e366004611ff6565b610cc9565b34801561038f57600080fd5b5061024661039e366004612202565b610cfa565b610246610d4c565b3480156103b757600080fd5b506102466103c6366004611ff6565b610dce565b3480156103d757600080fd5b506102466103e63660046121b2565b610de9565b3480156103f757600080fd5b5060095461026c90640100000000900463ffffffff1681565b34801561041c57600080fd5b5060095461026c9063ffffffff1681565b34801561043957600080fd5b506102c36104483660046121b2565b610e18565b34801561045957600080fd5b50610246610468366004612198565b610e8f565b34801561047957600080fd5b50610331610488366004611fa3565b610ed7565b34801561049957600080fd5b50610246610f5e565b3480156104ae57600080fd5b506102466104bd366004612158565b610f94565b3480156104ce57600080fd5b506006546001600160a01b03166102c3565b3480156104ec57600080fd5b506102966110de565b34801561050157600080fd5b506102466105103660046121b2565b6110ed565b34801561052157600080fd5b50610246610530366004612106565b61111c565b610246610543366004612202565b61112b565b34801561055457600080fd5b50610246610563366004612031565b61137c565b34801561057457600080fd5b50600b5461021e90600160c01b900460ff1681565b34801561059557600080fd5b506102966105a43660046121b2565b6113ae565b3480156105b557600080fd5b5061021e6105c4366004611fc4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105fe57600080fd5b5061024661060d366004611fa3565b611433565b34801561061e57600080fd5b5061024661062d366004612198565b6114cb565b34801561063e57600080fd5b5061024661064d366004612202565b611513565b34801561065e57600080fd5b5060095461021e90600160801b900460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806106a457506001600160e01b03198216635b5e139f60e01b145b806106bf57506301ffc9a760e01b6001600160e01b03198316145b92915050565b8260008163ffffffff16116107165760405162461bcd60e51b815260206004820152601260248201527126b4b73a1030ba103632b0b9ba1037b7329760711b60448201526064015b60405180910390fd5b60095461072a9063ffffffff1660016124af565b63ffffffff168163ffffffff16106107785760405162461bcd60e51b815260206004820152601160248201527026b0bc1036b4b73a103932b0b1b432b21760791b604482015260640161070d565b8063ffffffff1660085461078c91906124eb565b3410156107ce5760405162461bcd60e51b815260206004820152601060248201526f2737ba1032b737bab3b410333ab7321760811b604482015260640161070d565b6009546107e990600160601b900463ffffffff1660016124af565b60095463ffffffff91821691610809918491600160401b909104166124af565b63ffffffff161061084c5760405162461bcd60e51b815260206004820152600d60248201526c135a5b9d081cdbdb19081bdd5d609a1b604482015260640161070d565b600954336000908152600a602052604090205463ffffffff64010000000090920482169161087d9190841690612497565b11156108c45760405162461bcd60e51b815260206004820152601660248201527513585e081d1bdd185b081b5a5b9d081c995858da195960521b604482015260640161070d565b600b54600160c01b900460ff166109105760405162461bcd60e51b815260206004820152601060248201526f283932b9b0b632903737ba1037b832b760811b604482015260640161070d565b600c546109535760405162461bcd60e51b815260206004820152601160248201527050726573616c65206e6f7420726561647960781b604482015260640161070d565b6109c883838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611559565b610a0b5760405162461bcd60e51b81526020600482015260146024820152732737ba103090383932b9b0b6329036b2b6b132b960611b604482015260640161070d565b610a148461156f565b50505050565b606060008054610a299061254d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a559061254d565b8015610aa25780601f10610a7757610100808354040283529160200191610aa2565b820191906000526020600020905b815481529060010190602001808311610a8557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161070d565b506000908152600460205260409020546001600160a01b031690565b600b5464010000000090046001600160a01b03163314610b975760405162461bcd60e51b8152602060048201526011602482015270496e636f7272656374204164647265737360781b604482015260640161070d565b600b805463ffffffff191663ffffffff92909216919091179055565b6000610bbe82610e18565b9050806001600160a01b0316836001600160a01b03161415610c2c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161070d565b336001600160a01b0382161480610c485750610c4881336105c4565b610cba5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161070d565b610cc4838361166a565b505050565b610cd333826116d8565b610cef5760405162461bcd60e51b815260040161070d90612446565b610cc48383836117cf565b6006546001600160a01b03163314610d245760405162461bcd60e51b815260040161070d90612411565b6009805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b6006546001600160a01b03163314610d765760405162461bcd60e51b815260040161070d90612411565b604051600090339047908381818185875af1925050503d8060008114610db8576040519150601f19603f3d011682016040523d82523d6000602084013e610dbd565b606091505b5050905080610dcb57600080fd5b50565b610cc48383836040518060200160405280600081525061137c565b6006546001600160a01b03163314610e135760405162461bcd60e51b815260040161070d90612411565b600855565b6000818152600260205260408120546001600160a01b0316806106bf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161070d565b6006546001600160a01b03163314610eb95760405162461bcd60e51b815260040161070d90612411565b60098054911515600160801b0260ff60801b19909216919091179055565b60006001600160a01b038216610f425760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161070d565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610f885760405162461bcd60e51b815260040161070d90612411565b610f92600061196f565b565b6006546001600160a01b03163314610fbe5760405162461bcd60e51b815260040161070d90612411565b60005b63ffffffff8116821115610cc45760095463ffffffff600160601b8204811691610ff591600160401b9091041660016124af565b63ffffffff1611156110395760405162461bcd60e51b815260206004820152600d60248201526c131a5b5a5d081c995858da1959609a1b604482015260640161070d565b6110cc83838363ffffffff1681811061106257634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110779190611fa3565b6009805460089061109490600160401b900463ffffffff166125a3565b91906101000a81548163ffffffff021916908363ffffffff160217905563ffffffff16604051806020016040528060008152506119c1565b806110d6816125a3565b915050610fc1565b606060018054610a299061254d565b6006546001600160a01b031633146111175760405162461bcd60e51b815260040161070d90612411565b600c55565b6111273383836119f4565b5050565b8060008163ffffffff16116111775760405162461bcd60e51b815260206004820152601260248201527126b4b73a1030ba103632b0b9ba1037b7329760711b604482015260640161070d565b60095461118b9063ffffffff1660016124af565b63ffffffff168163ffffffff16106111d95760405162461bcd60e51b815260206004820152601160248201527026b0bc1036b4b73a103932b0b1b432b21760791b604482015260640161070d565b8063ffffffff166008546111ed91906124eb565b34101561122f5760405162461bcd60e51b815260206004820152601060248201526f2737ba1032b737bab3b410333ab7321760811b604482015260640161070d565b60095461124a90600160601b900463ffffffff1660016124af565b60095463ffffffff9182169161126a918491600160401b909104166124af565b63ffffffff16106112ad5760405162461bcd60e51b815260206004820152600d60248201526c135a5b9d081cdbdb19081bdd5d609a1b604482015260640161070d565b600954336000908152600a602052604090205463ffffffff6401000000009092048216916112de9190841690612497565b11156113255760405162461bcd60e51b815260206004820152601660248201527513585e081d1bdd185b081b5a5b9d081c995858da195960521b604482015260640161070d565b600954600160801b900460ff1615156001146113735760405162461bcd60e51b815260206004820152600d60248201526c26b4b73a103737ba1037b832b760991b604482015260640161070d565b6111278261156f565b61138633836116d8565b6113a25760405162461bcd60e51b815260040161070d90612446565b610a1484848484611ac3565b600954606090600160401b900463ffffffff168211156114015760405162461bcd60e51b815260206004820152600e60248201526d139bdd081b5a5b9d1959081e595d60921b604482015260640161070d565b600761140c83611af6565b60405160200161141d9291906122b5565b6040516020818303038152906040529050919050565b6006546001600160a01b0316331461145d5760405162461bcd60e51b815260040161070d90612411565b6001600160a01b0381166114c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161070d565b610dcb8161196f565b6006546001600160a01b031633146114f55760405162461bcd60e51b815260040161070d90612411565b600b8054911515600160c01b0260ff60c01b19909216919091179055565b6006546001600160a01b0316331461153d5760405162461bcd60e51b815260040161070d90612411565b6009805463ffffffff191663ffffffff92909216919091179055565b6000826115668584611c10565b14949350505050565b60005b8163ffffffff168163ffffffff1610156115ba576115a8336009600881819054906101000a900463ffffffff16611094906125a3565b806115b2816125a3565b915050611572565b50336000908152600a60205260408120805463ffffffff841692906115e0908490612497565b9091555050600b546000906001600160a01b03640100000000820416906103e8906116119063ffffffff16346124eb565b61161b91906124d7565b604051600081818185875af1925050503d8060008114611657576040519150601f19603f3d011682016040523d82523d6000602084013e61165c565b606091505b505090508061112757600080fd5b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061169f82610e18565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117515760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161070d565b600061175c83610e18565b9050806001600160a01b0316846001600160a01b031614806117975750836001600160a01b031661178c84610aac565b6001600160a01b0316145b806117c757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117e282610e18565b6001600160a01b03161461184a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161070d565b6001600160a01b0382166118ac5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161070d565b6118b760008261166a565b6001600160a01b03831660009081526003602052604081208054600192906118e090849061250a565b90915550506001600160a01b038216600090815260036020526040812080546001929061190e908490612497565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6119cb8383611cca565b6119d86000848484611e0c565b610cc45760405162461bcd60e51b815260040161070d906123bf565b816001600160a01b0316836001600160a01b03161415611a565760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161070d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ace8484846117cf565b611ada84848484611e0c565b610a145760405162461bcd60e51b815260040161070d906123bf565b606081611b1a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b445780611b2e81612588565b9150611b3d9050600a836124d7565b9150611b1e565b60008167ffffffffffffffff811115611b6d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b97576020820181803683370190505b5090505b84156117c757611bac60018361250a565b9150611bb9600a866125c7565b611bc4906030612497565b60f81b818381518110611be757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611c09600a866124d7565b9450611b9b565b600081815b8451811015611cc2576000858281518110611c4057634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611c82576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611caf565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611cba81612588565b915050611c15565b509392505050565b6001600160a01b038216611d205760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161070d565b6000818152600260205260409020546001600160a01b031615611d855760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161070d565b6001600160a01b0382166000908152600360205260408120805460019290611dae908490612497565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611f0e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e5090339089908890889060040161236f565b602060405180830381600087803b158015611e6a57600080fd5b505af1925050508015611e9a575060408051601f3d908101601f19168201909252611e97918101906121e6565b60015b611ef4573d808015611ec8576040519150601f19603f3d011682016040523d82523d6000602084013e611ecd565b606091505b508051611eec5760405162461bcd60e51b815260040161070d906123bf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117c7565b506001949350505050565b80356001600160a01b0381168114611f3057600080fd5b919050565b60008083601f840112611f46578081fd5b50813567ffffffffffffffff811115611f5d578182fd5b6020830191508360208260051b8501011115611f7857600080fd5b9250929050565b80358015158114611f3057600080fd5b803563ffffffff81168114611f3057600080fd5b600060208284031215611fb4578081fd5b611fbd82611f19565b9392505050565b60008060408385031215611fd6578081fd5b611fdf83611f19565b9150611fed60208401611f19565b90509250929050565b60008060006060848603121561200a578081fd5b61201384611f19565b925061202160208501611f19565b9150604084013590509250925092565b60008060008060808587031215612046578081fd5b61204f85611f19565b935061205d60208601611f19565b925060408501359150606085013567ffffffffffffffff80821115612080578283fd5b818701915087601f830112612093578283fd5b8135818111156120a5576120a5612607565b604051601f8201601f19908116603f011681019083821181831017156120cd576120cd612607565b816040528281528a60208487010111156120e5578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215612118578182fd5b61212183611f19565b9150611fed60208401611f7f565b60008060408385031215612141578182fd5b61214a83611f19565b946020939093013593505050565b6000806020838503121561216a578182fd5b823567ffffffffffffffff811115612180578283fd5b61218c85828601611f35565b90969095509350505050565b6000602082840312156121a9578081fd5b611fbd82611f7f565b6000602082840312156121c3578081fd5b5035919050565b6000602082840312156121db578081fd5b8135611fbd8161261d565b6000602082840312156121f7578081fd5b8151611fbd8161261d565b600060208284031215612213578081fd5b611fbd82611f8f565b600080600060408486031215612230578283fd5b61223984611f8f565b9250602084013567ffffffffffffffff811115612254578283fd5b61226086828701611f35565b9497909650939450505050565b60008151808452612285816020860160208601612521565b601f01601f19169290920160200192915050565b600081516122ab818560208601612521565b9290920192915050565b600080845482600182811c9150808316806122d157607f831692505b60208084108214156122f157634e487b7160e01b87526022600452602487fd5b818015612305576001811461231657612342565b60ff19861689528489019650612342565b60008b815260209020885b8681101561233a5781548b820152908501908301612321565b505084890196505b5050505050506123666123558286612299565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123a29083018461226d565b9695505050505050565b602081526000611fbd602083018461226d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156124aa576124aa6125db565b500190565b600063ffffffff8083168185168083038211156124ce576124ce6125db565b01949350505050565b6000826124e6576124e66125f1565b500490565b6000816000190483118215151615612505576125056125db565b500290565b60008282101561251c5761251c6125db565b500390565b60005b8381101561253c578181015183820152602001612524565b83811115610a145750506000910152565b600181811c9082168061256157607f821691505b6020821081141561258257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561259c5761259c6125db565b5060010190565b600063ffffffff808316818114156125bd576125bd6125db565b6001019392505050565b6000826125d6576125d66125f1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610dcb57600080fdfea26469706673582212200a0741fd2d805b3b7c070f588503497c2384895ff23e76b71f461741a8ac14b164736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000115c000000000000000000000000000000000000000000000000006a94d74f43000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696734667267666479676e746577356d6b3732376170686e6b636d766437716171746d377a3278707234377a737a737866717762712f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d446f6f646c65204d696e657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002444d000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): ipfs://bafybeig4frgfdygntew5mk727aphnkcmvd7qaqtm7z2xpr47zszsxfqwbq/
Arg [1] : _name (string): Doodle Miners
Arg [2] : _symbol (string): DM
Arg [3] : _totalSupply (uint32): 4444
Arg [4] : _cost (uint256): 30000000000000000
Arg [5] : _open (bool): False

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [3] : 000000000000000000000000000000000000000000000000000000000000115c
Arg [4] : 000000000000000000000000000000000000000000000000006a94d74f430000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [7] : 697066733a2f2f626166796265696734667267666479676e746577356d6b3732
Arg [8] : 376170686e6b636d766437716171746d377a3278707234377a737a7378667177
Arg [9] : 62712f0000000000000000000000000000000000000000000000000000000000
Arg [10] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [11] : 446f6f646c65204d696e65727300000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [13] : 444d000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

42499:655:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21320:305;;;;;;;;;;-1:-1:-1;21320:305:0;;;;;:::i;:::-;;:::i;:::-;;;9212:14:1;;9205:22;9187:41;;9175:2;9160:18;21320:305:0;;;;;;;;41910:503;;;;;;:::i;:::-;;:::i;:::-;;36602:24;;;;;;;;;;-1:-1:-1;36602:24:0;;;;-1:-1:-1;;;36602:24:0;;;;;;;;;19929:10:1;19917:23;;;19899:42;;19887:2;19872:18;36602:24:0;19854:93:1;22265:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23824:221::-;;;;;;;;;;-1:-1:-1;23824:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8510:32:1;;;8492:51;;8480:2;8465:18;23824:221:0;8447:102:1;37251:152:0;;;;;;;;;;-1:-1:-1;37251:152:0;;;;;:::i;:::-;;:::i;23347:411::-;;;;;;;;;;-1:-1:-1;23347:411:0;;;;;:::i;:::-;;:::i;36490:32::-;;;;;;;;;;;;;;;;;;;19719:25:1;;;19707:2;19692:18;36490:32:0;19674:76:1;36633:29:0;;;;;;;;;;-1:-1:-1;36633:29:0;;;;-1:-1:-1;;;36633:29:0;;;;;;24574:339;;;;;;;;;;-1:-1:-1;24574:339:0;;;;;:::i;:::-;;:::i;37619:93::-;;;;;;;;;;-1:-1:-1;37619:93:0;;;;;:::i;:::-;;:::i;38062:192::-;;;:::i;24984:185::-;;;;;;;;;;-1:-1:-1;24984:185:0;;;;;:::i;:::-;;:::i;37446:80::-;;;;;;;;;;-1:-1:-1;37446:80:0;;;;;:::i;:::-;;:::i;36564:31::-;;;;;;;;;;-1:-1:-1;36564:31:0;;;;;;;;;;;36529:28;;;;;;;;;;-1:-1:-1;36529:28:0;;;;;;;;21959:239;;;;;;;;;;-1:-1:-1;21959:239:0;;;;;:::i;:::-;;:::i;37534:77::-;;;;;;;;;;-1:-1:-1;37534:77:0;;;;;:::i;:::-;;:::i;21689:208::-;;;;;;;;;;-1:-1:-1;21689:208:0;;;;;:::i;:::-;;:::i;35477:103::-;;;;;;;;;;;;;:::i;37817:237::-;;;;;;;;;;-1:-1:-1;37817:237:0;;;;;:::i;:::-;;:::i;34826:87::-;;;;;;;;;;-1:-1:-1;34899:6:0;;-1:-1:-1;;;;;34899:6:0;34826:87;;22434:104;;;;;;;;;;;;;:::i;41806:96::-;;;;;;;;;;-1:-1:-1;41806:96:0;;;;;:::i;:::-;;:::i;24117:155::-;;;;;;;;;;-1:-1:-1;24117:155:0;;;;;:::i;:::-;;:::i;38292:152::-;;;;;;:::i;:::-;;:::i;25240:328::-;;;;;;;;;;-1:-1:-1;25240:328:0;;;;;:::i;:::-;;:::i;41634:31::-;;;;;;;;;;-1:-1:-1;41634:31:0;;;;-1:-1:-1;;;41634:31:0;;;;;;42813:338;;;;;;;;;;-1:-1:-1;42813:338:0;;;;;:::i;:::-;;:::i;24343:164::-;;;;;;;;;;-1:-1:-1;24343:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24464:25:0;;;24440:4;24464:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24343:164;35735:201;;;;;;;;;;-1:-1:-1;35735:201:0;;;;;:::i;:::-;;:::i;41707:91::-;;;;;;;;;;-1:-1:-1;41707:91:0;;;;;:::i;:::-;;:::i;37720:89::-;;;;;;;;;;-1:-1:-1;37720:89:0;;;;;:::i;:::-;;:::i;36669:24::-;;;;;;;;;;-1:-1:-1;36669:24:0;;;;-1:-1:-1;;;36669:24:0;;;;;;21320:305;21422:4;-1:-1:-1;;;;;;21459:40:0;;-1:-1:-1;;;21459:40:0;;:105;;-1:-1:-1;;;;;;;21516:48:0;;-1:-1:-1;;;21516:48:0;21459:105;:158;;;-1:-1:-1;;;;;;;;;;19869:40:0;;;21581:36;21439:178;21320:305;-1:-1:-1;;21320:305:0:o;41910:503::-;42029:5;38951:1;38943:5;:9;;;38935:40;;;;-1:-1:-1;;;38935:40:0;;19428:2:1;38935:40:0;;;19410:21:1;19467:2;19447:18;;;19440:30;-1:-1:-1;;;19486:18:1;;;19479:48;19544:18;;38935:40:0;;;;;;;;;39002:10;;:14;;:10;;;:14;:::i;:::-;38994:22;;:5;:22;;;38986:52;;;;-1:-1:-1;;;38986:52:0;;19082:2:1;38986:52:0;;;19064:21:1;19121:2;19101:18;;;19094:30;-1:-1:-1;;;19140:18:1;;;19133:47;19197:18;;38986:52:0;19054:167:1;38986:52:0;39077:5;39070:12;;:4;;:12;;;;:::i;:::-;39057:9;:25;;39049:54;;;;-1:-1:-1;;;39049:54:0;;18737:2:1;39049:54:0;;;18719:21:1;18776:2;18756:18;;;18749:30;-1:-1:-1;;;18795:18:1;;;18788:46;18851:18;;39049:54:0;18709:166:1;39049:54:0;39139:11;;:15;;-1:-1:-1;;;39139:11:0;;;;39153:1;39139:15;:::i;:::-;39122:6;;:32;;;;;:14;;39131:5;;-1:-1:-1;;;39122:6:0;;;;:14;:::i;:::-;:32;;;39114:58;;;;-1:-1:-1;;;39114:58:0;;16542:2:1;39114:58:0;;;16524:21:1;16581:2;16561:18;;;16554:30;-1:-1:-1;;;16600:18:1;;;16593:43;16653:18;;39114:58:0;16514:163:1;39114:58:0;39245:12;;39222:10;39205:28;;;;:16;:28;;;;;;39245:12;;;;;;;;39205:36;;;;;;;:::i;:::-;:52;;39183:124;;;;-1:-1:-1;;;39183:124:0;;11886:2:1;39183:124:0;;;11868:21:1;11925:2;11905:18;;;11898:30;-1:-1:-1;;;11944:18:1;;;11937:52;12006:18;;39183:124:0;11858:172:1;39183:124:0;42060:11:::1;::::0;-1:-1:-1;;;42060:11:0;::::1;;;42052:40;;;::::0;-1:-1:-1;;;42052:40:0;;17628:2:1;42052:40:0::1;::::0;::::1;17610:21:1::0;17667:2;17647:18;;;17640:30;-1:-1:-1;;;17686:18:1;;;17679:46;17742:18;;42052:40:0::1;17600:166:1::0;42052:40:0::1;42111:10;::::0;42103:46:::1;;;::::0;-1:-1:-1;;;42103:46:0;;9665:2:1;42103:46:0::1;::::0;::::1;9647:21:1::0;9704:2;9684:18;;;9677:30;-1:-1:-1;;;9723:18:1;;;9716:47;9780:18;;42103:46:0::1;9637:167:1::0;42103:46:0::1;42182:144;42219:5;;42182:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;42243:10:0::1;::::0;42282:28:::1;::::0;-1:-1:-1;;42299:10:0::1;6489:2:1::0;6485:15;6481:53;42282:28:0::1;::::0;::::1;6469:66:1::0;42243:10:0;;-1:-1:-1;6551:12:1;;;-1:-1:-1;42282:28:0::1;;;;;;;;;;;;42272:39;;;;;;42182:18;:144::i;:::-;42160:214;;;::::0;-1:-1:-1;;;42160:214:0;;11537:2:1;42160:214:0::1;::::0;::::1;11519:21:1::0;11576:2;11556:18;;;11549:30;-1:-1:-1;;;11595:18:1;;;11588:50;11655:18;;42160:214:0::1;11509:170:1::0;42160:214:0::1;42387:18;42399:5;42387:11;:18::i;:::-;41910:503:::0;;;;:::o;22265:100::-;22319:13;22352:5;22345:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22265:100;:::o;23824:221::-;23900:7;27167:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27167:16:0;23920:73;;;;-1:-1:-1;;;23920:73:0;;15358:2:1;23920:73:0;;;15340:21:1;15397:2;15377:18;;;15370:30;15436:34;15416:18;;;15409:62;-1:-1:-1;;;15487:18:1;;;15480:42;15539:19;;23920:73:0;15330:234:1;23920:73:0;-1:-1:-1;24013:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24013:24:0;;23824:221::o;37251:152::-;37333:6;;;;;-1:-1:-1;;;;;37333:6:0;37319:10;:20;37311:50;;;;-1:-1:-1;;;37311:50:0;;18391:2:1;37311:50:0;;;18373:21:1;18430:2;18410:18;;;18403:30;-1:-1:-1;;;18449:18:1;;;18442:47;18506:18;;37311:50:0;18363:167:1;37311:50:0;37372:10;:23;;-1:-1:-1;;37372:23:0;;;;;;;;;;;;37251:152::o;23347:411::-;23428:13;23444:23;23459:7;23444:14;:23::i;:::-;23428:39;;23492:5;-1:-1:-1;;;;;23486:11:0;:2;-1:-1:-1;;;;;23486:11:0;;;23478:57;;;;-1:-1:-1;;;23478:57:0;;16884:2:1;23478:57:0;;;16866:21:1;16923:2;16903:18;;;16896:30;16962:34;16942:18;;;16935:62;-1:-1:-1;;;17013:18:1;;;17006:31;17054:19;;23478:57:0;16856:223:1;23478:57:0;16627:10;-1:-1:-1;;;;;23570:21:0;;;;:62;;-1:-1:-1;23595:37:0;23612:5;16627:10;24343:164;:::i;23595:37::-;23548:168;;;;-1:-1:-1;;;23548:168:0;;13751:2:1;23548:168:0;;;13733:21:1;13790:2;13770:18;;;13763:30;13829:34;13809:18;;;13802:62;13900:26;13880:18;;;13873:54;13944:19;;23548:168:0;13723:246:1;23548:168:0;23729:21;23738:2;23742:7;23729:8;:21::i;:::-;23347:411;;;:::o;24574:339::-;24769:41;16627:10;24802:7;24769:18;:41::i;:::-;24761:103;;;;-1:-1:-1;;;24761:103:0;;;;;;;:::i;:::-;24877:28;24887:4;24893:2;24897:7;24877:9;:28::i;37619:93::-;34899:6;;-1:-1:-1;;;;;34899:6:0;16627:10;35046:23;35038:68;;;;-1:-1:-1;;;35038:68:0;;;;;;;:::i;:::-;37685:12:::1;:19:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;37685:19:0;;::::1;::::0;;;::::1;::::0;;37619:93::o;38062:192::-;34899:6;;-1:-1:-1;;;;;34899:6:0;16627:10;35046:23;35038:68;;;;-1:-1:-1;;;35038:68:0;;;;;;;:::i;:::-;38137:82:::1;::::0;38119:12:::1;::::0;38145:10:::1;::::0;38183:21:::1;::::0;38119:12;38137:82;38119:12;38137:82;38183:21;38145:10;38137:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38118:101;;;38238:7;38230:16;;;::::0;::::1;;35117:1;38062:192::o:0;24984:185::-;25122:39;25139:4;25145:2;25149:7;25122:39;;;;;;;;;;;;:16;:39::i;37446:80::-;34899:6;;-1:-1:-1;;;;;34899:6:0;16627:10;35046:23;35038:68;;;;-1:-1:-1;;;35038:68:0;;;;;;;:::i;:::-;37506:4:::1;:12:::0;37446:80::o;21959:239::-;22031:7;22067:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22067:16:0;22102:19;22094:73;;;;-1:-1:-1;;;22094:73:0;;14587:2:1;22094:73:0;;;14569:21:1;14626:2;14606:18;;;14599:30;14665:34;14645:18;;;14638:62;-1:-1:-1;;;14716:18:1;;;14709:39;14765:19;;22094:73:0;14559:231:1;37534:77:0;34899:6;;-1:-1:-1;;;;;34899:6:0;16627:10;35046:23;35038:68;;;;-1:-1:-1;;;35038:68:0;;;;;;;:::i;:::-;37591:4:::1;:12:::0;;;::::1;;-1:-1:-1::0;;;37591:12:0::1;-1:-1:-1::0;;;;37591:12:0;;::::1;::::0;;;::::1;::::0;;37534:77::o;21689:208::-;21761:7;-1:-1:-1;;;;;21789:19:0;;21781:74;;;;-1:-1:-1;;;21781:74:0;;14176:2:1;21781:74:0;;;14158:21:1;14215:2;14195:18;;;14188:30;14254:34;14234:18;;;14227:62;-1:-1:-1;;;14305:18:1;;;14298:40;14355:19;;21781:74:0;14148:232:1;21781:74:0;-1:-1:-1;;;;;;21873:16:0;;;;;:9;:16;;;;;;;21689:208::o;35477:103::-;34899:6;;-1:-1:-1;;;;;34899:6:0;16627:10;35046:23;35038:68;;;;-1:-1:-1;;;35038:68:0;;;;;;;:::i;:::-;35542:30:::1;35569:1;35542:18;:30::i;:::-;35477:103::o:0;37817:237::-;34899:6;;-1:-1:-1;;;;;34899:6:0;16627:10;35046:23;35038:68;;;;-1:-1:-1;;;35038:68:0;;;;;;;:::i;:::-;37890:8:::1;37885:162;37904:13;::::0;::::1;::::0;-1:-1:-1;37885:162:0::1;;;37961:11;::::0;::::1;-1:-1:-1::0;;;37961:11:0;::::1;::::0;::::1;::::0;37947:10:::1;::::0;-1:-1:-1;;;37951:6:0;;::::1;;37947:1;:10;:::i;:::-;:25;;;;37939:51;;;::::0;-1:-1:-1;;;37939:51:0;;12996:2:1;37939:51:0::1;::::0;::::1;12978:21:1::0;13035:2;13015:18;;;13008:30;-1:-1:-1;;;13054:18:1;;;13047:43;13107:18;;37939:51:0::1;12968:163:1::0;37939:51:0::1;38005:30;38015:2;;38018:1;38015:5;;;;;;;-1:-1:-1::0;;;38015:5:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38024:6;38022:8:::0;;38024:6:::1;::::0;38022:8:::1;::::0;-1:-1:-1;;;38022:8:0;::::1;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;38005:30;;;;;;;;;;;;;::::0;:9:::1;:30::i;:::-;37919:3:::0;::::1;::::0;::::1;:::i;:::-;;;;37885:162;;22434:104:::0;22490:13;22523:7;22516:14;;;;;:::i;41806:96::-;34899:6;;-1:-1:-1;;;;;34899:6:0;16627:10;35046:23;35038:68;;;;-1:-1:-1;;;35038:68:0;;;;;;;:::i;:::-;41877:10:::1;:17:::0;41806:96::o;24117:155::-;24212:52;16627:10;24245:8;24255;24212:18;:52::i;:::-;24117:155;;:::o;38292:152::-;38351:5;38951:1;38943:5;:9;;;38935:40;;;;-1:-1:-1;;;38935:40:0;;19428:2:1;38935:40:0;;;19410:21:1;19467:2;19447:18;;;19440:30;-1:-1:-1;;;19486:18:1;;;19479:48;19544:18;;38935:40:0;19400:168:1;38935:40:0;39002:10;;:14;;:10;;;:14;:::i;:::-;38994:22;;:5;:22;;;38986:52;;;;-1:-1:-1;;;38986:52:0;;19082:2:1;38986:52:0;;;19064:21:1;19121:2;19101:18;;;19094:30;-1:-1:-1;;;19140:18:1;;;19133:47;19197:18;;38986:52:0;19054:167:1;38986:52:0;39077:5;39070:12;;:4;;:12;;;;:::i;:::-;39057:9;:25;;39049:54;;;;-1:-1:-1;;;39049:54:0;;18737:2:1;39049:54:0;;;18719:21:1;18776:2;18756:18;;;18749:30;-1:-1:-1;;;18795:18:1;;;18788:46;18851:18;;39049:54:0;18709:166:1;39049:54:0;39139:11;;:15;;-1:-1:-1;;;39139:11:0;;;;39153:1;39139:15;:::i;:::-;39122:6;;:32;;;;;:14;;39131:5;;-1:-1:-1;;;39122:6:0;;;;:14;:::i;:::-;:32;;;39114:58;;;;-1:-1:-1;;;39114:58:0;;16542:2:1;39114:58:0;;;16524:21:1;16581:2;16561:18;;;16554:30;-1:-1:-1;;;16600:18:1;;;16593:43;16653:18;;39114:58:0;16514:163:1;39114:58:0;39245:12;;39222:10;39205:28;;;;:16;:28;;;;;;39245:12;;;;;;;;39205:36;;;;;;;:::i;:::-;:52;;39183:124;;;;-1:-1:-1;;;39183:124:0;;11886:2:1;39183:124:0;;;11868:21:1;11925:2;11905:18;;;11898:30;-1:-1:-1;;;11944:18:1;;;11937:52;12006:18;;39183:124:0;11858:172:1;39183:124:0;38377:4:::1;::::0;-1:-1:-1;;;38377:4:0;::::1;;;:12;;38385:4;38377:12;38369:38;;;::::0;-1:-1:-1;;;38369:38:0;;17286:2:1;38369:38:0::1;::::0;::::1;17268:21:1::0;17325:2;17305:18;;;17298:30;-1:-1:-1;;;17344:18:1;;;17337:43;17397:18;;38369:38:0::1;17258:163:1::0;38369:38:0::1;38418:18;38430:5;38418:11;:18::i;25240:328::-:0;25415:41;16627:10;25448:7;25415:18;:41::i;:::-;25407:103;;;;-1:-1:-1;;;25407:103:0;;;;;;;:::i;:::-;25521:39;25535:4;25541:2;25545:7;25554:5;25521:13;:39::i;42813:338::-;42983:6;;42932:13;;-1:-1:-1;;;42983:6:0;;;;42971:18;;;42963:45;;;;-1:-1:-1;;;42963:45:0;;10430:2:1;42963:45:0;;;10412:21:1;10469:2;10449:18;;;10442:30;-1:-1:-1;;;10488:18:1;;;10481:44;10542:18;;42963:45:0;10402:164:1;42963:45:0;43083:7;43092:26;43109:8;43092:16;:26::i;:::-;43066:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43021:122;;42813:338;;;:::o;35735:201::-;34899:6;;-1:-1:-1;;;;;34899:6:0;16627:10;35046:23;35038:68;;;;-1:-1:-1;;;35038:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35824:22:0;::::1;35816:73;;;::::0;-1:-1:-1;;;35816:73:0;;10773:2:1;35816:73:0::1;::::0;::::1;10755:21:1::0;10812:2;10792:18;;;10785:30;10851:34;10831:18;;;10824:62;-1:-1:-1;;;10902:18:1;;;10895:36;10948:19;;35816:73:0::1;10745:228:1::0;35816:73:0::1;35900:28;35919:8;35900:18;:28::i;41707:91::-:0;34899:6;;-1:-1:-1;;;;;34899:6:0;16627:10;35046:23;35038:68;;;;-1:-1:-1;;;35038:68:0;;;;;;;:::i;:::-;41771:11:::1;:19:::0;;;::::1;;-1:-1:-1::0;;;41771:19:0::1;-1:-1:-1::0;;;;41771:19:0;;::::1;::::0;;;::::1;::::0;;41707:91::o;37720:89::-;34899:6;;-1:-1:-1;;;;;34899:6:0;16627:10;35046:23;35038:68;;;;-1:-1:-1;;;35038:68:0;;;;;;;:::i;:::-;37784:10:::1;:17:::0;;-1:-1:-1;;37784:17:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;37720:89::o;40248:190::-;40373:4;40426;40397:25;40410:5;40417:4;40397:12;:25::i;:::-;:33;;40248:190;-1:-1:-1;;;;40248:190:0:o;38452:364::-;38512:8;38507:97;38530:5;38526:9;;:1;:9;;;38507:97;;;38557:35;38567:10;38581:6;;38579:8;;;;;;;;;;;;;;:::i;38557:35::-;38537:3;;;;:::i;:::-;;;;38507:97;;;-1:-1:-1;38641:10:0;38624:28;;;;:16;:28;;;;;:37;;;;;;:28;:37;;;;;:::i;:::-;;;;-1:-1:-1;;38701:6:0;;38675:12;;-1:-1:-1;;;;;38701:6:0;;;;;38762:4;;38736:22;;38748:10;;38736:9;:22;:::i;:::-;38735:31;;;;:::i;:::-;38693:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38674:107;;;38800:7;38792:16;;;;;31060:174;31135:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31135:29:0;-1:-1:-1;;;;;31135:29:0;;;;;;;;:24;;31189:23;31135:24;31189:14;:23::i;:::-;-1:-1:-1;;;;;31180:46:0;;;;;;;;;;;31060:174;;:::o;27372:348::-;27465:4;27167:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27167:16:0;27482:73;;;;-1:-1:-1;;;27482:73:0;;13338:2:1;27482:73:0;;;13320:21:1;13377:2;13357:18;;;13350:30;13416:34;13396:18;;;13389:62;-1:-1:-1;;;13467:18:1;;;13460:42;13519:19;;27482:73:0;13310:234:1;27482:73:0;27566:13;27582:23;27597:7;27582:14;:23::i;:::-;27566:39;;27635:5;-1:-1:-1;;;;;27624:16:0;:7;-1:-1:-1;;;;;27624:16:0;;:51;;;;27668:7;-1:-1:-1;;;;;27644:31:0;:20;27656:7;27644:11;:20::i;:::-;-1:-1:-1;;;;;27644:31:0;;27624:51;:87;;;-1:-1:-1;;;;;;24464:25:0;;;24440:4;24464:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27679:32;27616:96;27372:348;-1:-1:-1;;;;27372:348:0:o;30364:578::-;30523:4;-1:-1:-1;;;;;30496:31:0;:23;30511:7;30496:14;:23::i;:::-;-1:-1:-1;;;;;30496:31:0;;30488:85;;;;-1:-1:-1;;;30488:85:0;;16132:2:1;30488:85:0;;;16114:21:1;16171:2;16151:18;;;16144:30;16210:34;16190:18;;;16183:62;-1:-1:-1;;;16261:18:1;;;16254:39;16310:19;;30488:85:0;16104:231:1;30488:85:0;-1:-1:-1;;;;;30592:16:0;;30584:65;;;;-1:-1:-1;;;30584:65:0;;12237:2:1;30584:65:0;;;12219:21:1;12276:2;12256:18;;;12249:30;12315:34;12295:18;;;12288:62;-1:-1:-1;;;12366:18:1;;;12359:34;12410:19;;30584:65:0;12209:226:1;30584:65:0;30766:29;30783:1;30787:7;30766:8;:29::i;:::-;-1:-1:-1;;;;;30808:15:0;;;;;;:9;:15;;;;;:20;;30827:1;;30808:15;:20;;30827:1;;30808:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30839:13:0;;;;;;:9;:13;;;;;:18;;30856:1;;30839:13;:18;;30856:1;;30839:18;:::i;:::-;;;;-1:-1:-1;;30868:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30868:21:0;-1:-1:-1;;;;;30868:21:0;;;;;;;;;30907:27;;30868:16;;30907:27;;;;;;;30364:578;;;:::o;36096:191::-;36189:6;;;-1:-1:-1;;;;;36206:17:0;;;-1:-1:-1;;;;;;36206:17:0;;;;;;;36239:40;;36189:6;;;36206:17;36189:6;;36239:40;;36170:16;;36239:40;36096:191;;:::o;28399:321::-;28529:18;28535:2;28539:7;28529:5;:18::i;:::-;28580:54;28611:1;28615:2;28619:7;28628:5;28580:22;:54::i;:::-;28558:154;;;;-1:-1:-1;;;28558:154:0;;;;;;;:::i;31376:315::-;31531:8;-1:-1:-1;;;;;31522:17:0;:5;-1:-1:-1;;;;;31522:17:0;;;31514:55;;;;-1:-1:-1;;;31514:55:0;;12642:2:1;31514:55:0;;;12624:21:1;12681:2;12661:18;;;12654:30;12720:27;12700:18;;;12693:55;12765:18;;31514:55:0;12614:175:1;31514:55:0;-1:-1:-1;;;;;31580:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31580:46:0;;;;;;;;;;31642:41;;9187::1;;;31642::0;;9160:18:1;31642:41:0;;;;;;;31376:315;;;:::o;26450:::-;26607:28;26617:4;26623:2;26627:7;26607:9;:28::i;:::-;26654:48;26677:4;26683:2;26687:7;26696:5;26654:22;:48::i;:::-;26646:111;;;;-1:-1:-1;;;26646:111:0;;;;;;;:::i;17132:723::-;17188:13;17409:10;17405:53;;-1:-1:-1;;17436:10:0;;;;;;;;;;;;-1:-1:-1;;;17436:10:0;;;;;17132:723::o;17405:53::-;17483:5;17468:12;17524:78;17531:9;;17524:78;;17557:8;;;;:::i;:::-;;-1:-1:-1;17580:10:0;;-1:-1:-1;17588:2:0;17580:10;;:::i;:::-;;;17524:78;;;17612:19;17644:6;17634:17;;;;;;-1:-1:-1;;;17634:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17634:17:0;;17612:39;;17662:154;17669:10;;17662:154;;17696:11;17706:1;17696:11;;:::i;:::-;;-1:-1:-1;17765:10:0;17773:2;17765:5;:10;:::i;:::-;17752:24;;:2;:24;:::i;:::-;17739:39;;17722:6;17729;17722:14;;;;;;-1:-1:-1;;;17722:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17722:56:0;;;;;;;;-1:-1:-1;17793:11:0;17802:2;17793:11;;:::i;:::-;;;17662:154;;40800:701;40883:7;40926:4;40883:7;40941:523;40965:5;:12;40961:1;:16;40941:523;;;40999:20;41022:5;41028:1;41022:8;;;;;;-1:-1:-1;;;41022:8:0;;;;;;;;;;;;;;;40999:31;;41065:12;41049;:28;41045:408;;41202:44;;;;;;6731:19:1;;;6766:12;;;6759:28;;;6803:12;;41202:44:0;;;;;;;;;;;;41192:55;;;;;;41177:70;;41045:408;;;41392:44;;;;;;6731:19:1;;;6766:12;;;6759:28;;;6803:12;;41392:44:0;;;;;;;;;;;;41382:55;;;;;;41367:70;;41045:408;-1:-1:-1;40979:3:0;;;;:::i;:::-;;;;40941:523;;;-1:-1:-1;41481:12:0;40800:701;-1:-1:-1;;;40800:701:0:o;29056:382::-;-1:-1:-1;;;;;29136:16:0;;29128:61;;;;-1:-1:-1;;;29128:61:0;;14997:2:1;29128:61:0;;;14979:21:1;;;15016:18;;;15009:30;15075:34;15055:18;;;15048:62;15127:18;;29128:61:0;14969:182:1;29128:61:0;27143:4;27167:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27167:16:0;:30;29200:58;;;;-1:-1:-1;;;29200:58:0;;11180:2:1;29200:58:0;;;11162:21:1;11219:2;11199:18;;;11192:30;11258;11238:18;;;11231:58;11306:18;;29200:58:0;11152:178:1;29200:58:0;-1:-1:-1;;;;;29329:13:0;;;;;;:9;:13;;;;;:18;;29346:1;;29329:13;:18;;29346:1;;29329:18;:::i;:::-;;;;-1:-1:-1;;29358:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29358:21:0;-1:-1:-1;;;;;29358:21:0;;;;;;;;29397:33;;29358:16;;;29397:33;;29358:16;;29397:33;29056:382;;:::o;32256:799::-;32411:4;-1:-1:-1;;;;;32432:13:0;;8854:20;8902:8;32428:620;;32468:72;;-1:-1:-1;;;32468:72:0;;-1:-1:-1;;;;;32468:36:0;;;;;:72;;16627:10;;32519:4;;32525:7;;32534:5;;32468:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32468:72:0;;;;;;;;-1:-1:-1;;32468:72:0;;;;;;;;;;;;:::i;:::-;;;32464:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32710:13:0;;32706:272;;32753:60;;-1:-1:-1;;;32753:60:0;;;;;;;:::i;32706:272::-;32928:6;32922:13;32913:6;32909:2;32905:15;32898:38;32464:529;-1:-1:-1;;;;;;32591:51:0;-1:-1:-1;;;32591:51:0;;-1:-1:-1;32584:58:0;;32428:620;-1:-1:-1;33032:4:0;32256:799;;;;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:391::-;255:8;265:6;319:3;312:4;304:6;300:17;296:27;286:2;;342:6;334;327:22;286:2;-1:-1:-1;370:20:1;;413:18;402:30;;399:2;;;452:8;442;435:26;399:2;496:4;488:6;484:17;472:29;;556:3;549:4;539:6;536:1;532:14;524:6;520:27;516:38;513:47;510:2;;;573:1;570;563:12;510:2;276:307;;;;;:::o;588:160::-;653:20;;709:13;;702:21;692:32;;682:2;;738:1;735;728:12;753:163;820:20;;880:10;869:22;;859:33;;849:2;;906:1;903;896:12;921:196;980:6;1033:2;1021:9;1012:7;1008:23;1004:32;1001:2;;;1054:6;1046;1039:22;1001:2;1082:29;1101:9;1082:29;:::i;:::-;1072:39;991:126;-1:-1:-1;;;991:126:1:o;1122:270::-;1190:6;1198;1251:2;1239:9;1230:7;1226:23;1222:32;1219:2;;;1272:6;1264;1257:22;1219:2;1300:29;1319:9;1300:29;:::i;:::-;1290:39;;1348:38;1382:2;1371:9;1367:18;1348:38;:::i;:::-;1338:48;;1209:183;;;;;:::o;1397:338::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:2;;;1564:6;1556;1549:22;1511:2;1592:29;1611:9;1592:29;:::i;:::-;1582:39;;1640:38;1674:2;1663:9;1659:18;1640:38;:::i;:::-;1630:48;;1725:2;1714:9;1710:18;1697:32;1687:42;;1501:234;;;;;:::o;1740:1183::-;1835:6;1843;1851;1859;1912:3;1900:9;1891:7;1887:23;1883:33;1880:2;;;1934:6;1926;1919:22;1880:2;1962:29;1981:9;1962:29;:::i;:::-;1952:39;;2010:38;2044:2;2033:9;2029:18;2010:38;:::i;:::-;2000:48;;2095:2;2084:9;2080:18;2067:32;2057:42;;2150:2;2139:9;2135:18;2122:32;2173:18;2214:2;2206:6;2203:14;2200:2;;;2235:6;2227;2220:22;2200:2;2278:6;2267:9;2263:22;2253:32;;2323:7;2316:4;2312:2;2308:13;2304:27;2294:2;;2350:6;2342;2335:22;2294:2;2391;2378:16;2413:2;2409;2406:10;2403:2;;;2419:18;;:::i;:::-;2494:2;2488:9;2462:2;2548:13;;-1:-1:-1;;2544:22:1;;;2568:2;2540:31;2536:40;2524:53;;;2592:18;;;2612:22;;;2589:46;2586:2;;;2638:18;;:::i;:::-;2678:10;2674:2;2667:22;2713:2;2705:6;2698:18;2753:7;2748:2;2743;2739;2735:11;2731:20;2728:33;2725:2;;;2779:6;2771;2764:22;2725:2;2840;2835;2831;2827:11;2822:2;2814:6;2810:15;2797:46;2863:15;;;2880:2;2859:24;2852:40;;;;1870:1053;;;;-1:-1:-1;1870:1053:1;;-1:-1:-1;;;;1870:1053:1:o;2928:264::-;2993:6;3001;3054:2;3042:9;3033:7;3029:23;3025:32;3022:2;;;3075:6;3067;3060:22;3022:2;3103:29;3122:9;3103:29;:::i;:::-;3093:39;;3151:35;3182:2;3171:9;3167:18;3151:35;:::i;3197:264::-;3265:6;3273;3326:2;3314:9;3305:7;3301:23;3297:32;3294:2;;;3347:6;3339;3332:22;3294:2;3375:29;3394:9;3375:29;:::i;:::-;3365:39;3451:2;3436:18;;;;3423:32;;-1:-1:-1;;;3284:177:1:o;3466:457::-;3552:6;3560;3613:2;3601:9;3592:7;3588:23;3584:32;3581:2;;;3634:6;3626;3619:22;3581:2;3679:9;3666:23;3712:18;3704:6;3701:30;3698:2;;;3749:6;3741;3734:22;3698:2;3793:70;3855:7;3846:6;3835:9;3831:22;3793:70;:::i;:::-;3882:8;;3767:96;;-1:-1:-1;3571:352:1;-1:-1:-1;;;;3571:352:1:o;3928:190::-;3984:6;4037:2;4025:9;4016:7;4012:23;4008:32;4005:2;;;4058:6;4050;4043:22;4005:2;4086:26;4102:9;4086:26;:::i;4123:190::-;4182:6;4235:2;4223:9;4214:7;4210:23;4206:32;4203:2;;;4256:6;4248;4241:22;4203:2;-1:-1:-1;4284:23:1;;4193:120;-1:-1:-1;4193:120:1:o;4318:255::-;4376:6;4429:2;4417:9;4408:7;4404:23;4400:32;4397:2;;;4450:6;4442;4435:22;4397:2;4494:9;4481:23;4513:30;4537:5;4513:30;:::i;4578:259::-;4647:6;4700:2;4688:9;4679:7;4675:23;4671:32;4668:2;;;4721:6;4713;4706:22;4668:2;4758:9;4752:16;4777:30;4801:5;4777:30;:::i;5037:194::-;5095:6;5148:2;5136:9;5127:7;5123:23;5119:32;5116:2;;;5169:6;5161;5154:22;5116:2;5197:28;5215:9;5197:28;:::i;5236:529::-;5330:6;5338;5346;5399:2;5387:9;5378:7;5374:23;5370:32;5367:2;;;5420:6;5412;5405:22;5367:2;5448:28;5466:9;5448:28;:::i;:::-;5438:38;;5527:2;5516:9;5512:18;5499:32;5554:18;5546:6;5543:30;5540:2;;;5591:6;5583;5576:22;5540:2;5635:70;5697:7;5688:6;5677:9;5673:22;5635:70;:::i;:::-;5357:408;;5724:8;;-1:-1:-1;5609:96:1;;-1:-1:-1;;;;5357:408:1:o;5770:257::-;5811:3;5849:5;5843:12;5876:6;5871:3;5864:19;5892:63;5948:6;5941:4;5936:3;5932:14;5925:4;5918:5;5914:16;5892:63;:::i;:::-;6009:2;5988:15;-1:-1:-1;;5984:29:1;5975:39;;;;6016:4;5971:50;;5819:208;-1:-1:-1;;5819:208:1:o;6032:185::-;6074:3;6112:5;6106:12;6127:52;6172:6;6167:3;6160:4;6153:5;6149:16;6127:52;:::i;:::-;6195:16;;;;;6082:135;-1:-1:-1;;6082:135:1:o;6826:1305::-;7103:3;7132;7167:6;7161:13;7197:3;7219:1;7247:9;7243:2;7239:18;7229:28;;7307:2;7296:9;7292:18;7329;7319:2;;7373:4;7365:6;7361:17;7351:27;;7319:2;7399;7447;7439:6;7436:14;7416:18;7413:38;7410:2;;;-1:-1:-1;;;7474:33:1;;7530:4;7527:1;7520:15;7560:4;7481:3;7548:17;7410:2;7591:18;7618:104;;;;7736:1;7731:322;;;;7584:469;;7618:104;-1:-1:-1;;7651:24:1;;7639:37;;7696:16;;;;-1:-1:-1;7618:104:1;;7731:322;19999:4;20018:17;;;20068:4;20052:21;;7826:3;7842:165;7856:6;7853:1;7850:13;7842:165;;;7934:14;;7921:11;;;7914:35;7977:16;;;;7871:10;;7842:165;;;7846:3;;8036:6;8031:3;8027:16;8020:23;;7584:469;;;;;;;8069:56;8094:30;8120:3;8112:6;8094:30;:::i;:::-;-1:-1:-1;;;6282:20:1;;6327:1;6318:11;;6272:63;8069:56;8062:63;7111:1020;-1:-1:-1;;;;;7111:1020:1:o;8554:488::-;-1:-1:-1;;;;;8823:15:1;;;8805:34;;8875:15;;8870:2;8855:18;;8848:43;8922:2;8907:18;;8900:34;;;8970:3;8965:2;8950:18;;8943:31;;;8748:4;;8991:45;;9016:19;;9008:6;8991:45;:::i;:::-;8983:53;8757:285;-1:-1:-1;;;;;;8757:285:1:o;9239:219::-;9388:2;9377:9;9370:21;9351:4;9408:44;9448:2;9437:9;9433:18;9425:6;9408:44;:::i;9809:414::-;10011:2;9993:21;;;10050:2;10030:18;;;10023:30;10089:34;10084:2;10069:18;;10062:62;-1:-1:-1;;;10155:2:1;10140:18;;10133:48;10213:3;10198:19;;9983:240::o;15569:356::-;15771:2;15753:21;;;15790:18;;;15783:30;15849:34;15844:2;15829:18;;15822:62;15916:2;15901:18;;15743:182::o;17771:413::-;17973:2;17955:21;;;18012:2;17992:18;;;17985:30;18051:34;18046:2;18031:18;;18024:62;-1:-1:-1;;;18117:2:1;18102:18;;18095:47;18174:3;18159:19;;17945:239::o;20084:128::-;20124:3;20155:1;20151:6;20148:1;20145:13;20142:2;;;20161:18;;:::i;:::-;-1:-1:-1;20197:9:1;;20132:80::o;20217:228::-;20256:3;20284:10;20321:2;20318:1;20314:10;20351:2;20348:1;20344:10;20382:3;20378:2;20374:12;20369:3;20366:21;20363:2;;;20390:18;;:::i;:::-;20426:13;;20264:181;-1:-1:-1;;;;20264:181:1:o;20450:120::-;20490:1;20516;20506:2;;20521:18;;:::i;:::-;-1:-1:-1;20555:9:1;;20496:74::o;20575:168::-;20615:7;20681:1;20677;20673:6;20669:14;20666:1;20663:21;20658:1;20651:9;20644:17;20640:45;20637:2;;;20688:18;;:::i;:::-;-1:-1:-1;20728:9:1;;20627:116::o;20748:125::-;20788:4;20816:1;20813;20810:8;20807:2;;;20821:18;;:::i;:::-;-1:-1:-1;20858:9:1;;20797:76::o;20878:258::-;20950:1;20960:113;20974:6;20971:1;20968:13;20960:113;;;21050:11;;;21044:18;21031:11;;;21024:39;20996:2;20989:10;20960:113;;;21091:6;21088:1;21085:13;21082:2;;;-1:-1:-1;;21126:1:1;21108:16;;21101:27;20931:205::o;21141:380::-;21220:1;21216:12;;;;21263;;;21284:2;;21338:4;21330:6;21326:17;21316:27;;21284:2;21391;21383:6;21380:14;21360:18;21357:38;21354:2;;;21437:10;21432:3;21428:20;21425:1;21418:31;21472:4;21469:1;21462:15;21500:4;21497:1;21490:15;21354:2;;21196:325;;;:::o;21526:135::-;21565:3;-1:-1:-1;;21586:17:1;;21583:2;;;21606:18;;:::i;:::-;-1:-1:-1;21653:1:1;21642:13;;21573:88::o;21666:201::-;21704:3;21732:10;21777:2;21770:5;21766:14;21804:2;21795:7;21792:15;21789:2;;;21810:18;;:::i;:::-;21859:1;21846:15;;21712:155;-1:-1:-1;;;21712:155:1:o;21872:112::-;21904:1;21930;21920:2;;21935:18;;:::i;:::-;-1:-1:-1;21969:9:1;;21910:74::o;21989:127::-;22050:10;22045:3;22041:20;22038:1;22031:31;22081:4;22078:1;22071:15;22105:4;22102:1;22095:15;22121:127;22182:10;22177:3;22173:20;22170:1;22163:31;22213:4;22210:1;22203:15;22237:4;22234:1;22227:15;22253:127;22314:10;22309:3;22305:20;22302:1;22295:31;22345:4;22342:1;22335:15;22369:4;22366:1;22359:15;22385:131;-1:-1:-1;;;;;;22459:32:1;;22449:43;;22439:2;;22506:1;22503;22496:12

Swarm Source

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