ETH Price: $2,533.09 (+0.98%)

Token

 

Overview

Max Total Supply

888

Holders

294

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x731e1b30f86679d3a453d199b836766d69409e10
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:
DinoDoodles

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU LGPLv3 license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

    /**
     * @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, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: DinoDoodles.sol


pragma solidity ^0.8.0;



/**
 * @dev contract module which defines DinoDoodles NFT Collection
 * and all the interactions it uses
 */
contract DinoDoodles is ERC1155, Ownable {
    //@dev Attributes for NFT configuration
    uint256 internal tokenId;
    uint256 public cost = 0.1 ether;
    uint256 public maxSupply = 888;
    uint256 public totalSupply = 0;
    uint256 public maxMintAmount = 10;
    uint256 private _currentTokenID = 0;
    mapping(address => uint256) public freeMint;
    bool public paused;

    // @dev inner attributes of the contract

    /**
     * @dev Create an instance of DinoDoodles contract
     */
    constructor(
        string memory _baseURI
    ) ERC1155(_baseURI) {
        tokenId = 0;
    }
    /**
     * @dev Mint edition to a wallet
     * @param _to wallet receiving the edition(s).
     * @param _mintAmount number of editions to mint.
     */
    function mint(address _to, uint256 _mintAmount) public payable {
        require(!paused, "Minting is Paused.");
        require(_mintAmount <= maxMintAmount, "Only 10 DinoDoodles are Allowed Per Transaction");
        require(
            tokenId + _mintAmount <= maxSupply,
            "Dinoverse is at Max Capacity"
        );
        
        if(freeMint[_to] < _mintAmount)
            require(
                msg.value >= cost * _mintAmount,
                "Uh Oh Not Enough ETH Paid"
            );
        else
            freeMint[_to] -= _mintAmount;
        
        for (uint256 i = 0; i < _mintAmount; i++) {
            tokenId++;
            _mint(_to, tokenId, 1, "");
            totalSupply++;
        }
    }
    
    function withdraw() public payable onlyOwner{
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

    /**
     * @dev change cost of NFT
     * @param _newCost new cost of each edition
     */
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    /**
     * @dev restrict max mintable amount of edition at a time
     * @param _newmaxMintAmount new max mintable amount
     */
    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    /**
     * @dev restrict max mintable amount of edition at a time
     * @param _nexMaxSupply new max supply
     */
    function setmaxSupply(uint256 _nexMaxSupply) public onlyOwner {
        maxSupply = _nexMaxSupply;
    }
    
    /**
     * @dev set uri
     * @param _newURI new URI
     */
    function setURI(string memory _newURI) public onlyOwner {
        _setURI(_newURI);
    }

    /**
     * @dev Disable minting process
     */
    function pause() public onlyOwner {
        paused = !paused;
    }

    /**
     * @dev Add user to white list
     * @param _user Users wallet to whitelist
     */
    function freeMintUserBatch(
        address[] memory _user,
        uint256[] memory _amount
    ) public onlyOwner {
        require(_user.length == _amount.length);
        for (uint256 i = 0; i < _user.length; i++)
            freeMint[_user[i]] = _amount[i];
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","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":"address","name":"","type":"address"}],"name":"freeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_user","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"freeMintUserBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nexMaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405267016345785d8a00006005556103786006556000600755600a60085560006009553480156200003257600080fd5b50604051620021eb380380620021eb83398101604081905262000055916200018a565b80620000618162000079565b506200006d3362000092565b506000600455620002b9565b80516200008e906002906020840190620000e4565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000f29062000266565b90600052602060002090601f01602090048101928262000116576000855562000161565b82601f106200013157805160ff191683800117855562000161565b8280016001018555821562000161579182015b828111156200016157825182559160200191906001019062000144565b506200016f92915062000173565b5090565b5b808211156200016f576000815560010162000174565b600060208083850312156200019e57600080fd5b82516001600160401b0380821115620001b657600080fd5b818501915085601f830112620001cb57600080fd5b815181811115620001e057620001e0620002a3565b604051601f8201601f19908116603f011681019083821181831017156200020b576200020b620002a3565b8160405282815288868487010111156200022457600080fd5b600093505b8284101562000248578484018601518185018701529285019262000229565b828411156200025a5760008684830101525b98975050505050505050565b600181811c908216806200027b57607f821691505b602082108114156200029d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611f2280620002c96000396000f3fe6080604052600436106101655760003560e01c80634e1273f4116100d1578063a22cb4651161008a578063e985e9c511610064578063e985e9c5146103e8578063f242432a14610431578063f2fde38b14610451578063fa07ce1d1461047157600080fd5b8063a22cb46514610392578063d04be076146103b2578063d5abeb01146103d257600080fd5b80634e1273f4146102d95780635c975abb14610306578063715018a6146103205780637f00c7a6146103355780638456cb59146103555780638da5cb5b1461036a57600080fd5b8063228025e811610123578063228025e814610248578063239c70ae146102685780632eb2c2d61461027e5780633ccfd60b1461029e57806340c10f19146102a657806344a0d68a146102b957600080fd5b8062fdd58e1461016a57806301ffc9a71461019d57806302fe5305146101cd5780630e89341c146101ef57806313faede61461021c57806318160ddd14610232575b600080fd5b34801561017657600080fd5b5061018a6101853660046118cf565b61049e565b6040519081526020015b60405180910390f35b3480156101a957600080fd5b506101bd6101b83660046119ca565b610535565b6040519015158152602001610194565b3480156101d957600080fd5b506101ed6101e8366004611a04565b610587565b005b3480156101fb57600080fd5b5061020f61020a366004611a55565b6105bd565b6040516101949190611bda565b34801561022857600080fd5b5061018a60055481565b34801561023e57600080fd5b5061018a60075481565b34801561025457600080fd5b506101ed610263366004611a55565b610651565b34801561027457600080fd5b5061018a60085481565b34801561028a57600080fd5b506101ed610299366004611784565b610680565b6101ed610717565b6101ed6102b43660046118cf565b6107b2565b3480156102c557600080fd5b506101ed6102d4366004611a55565b6109de565b3480156102e557600080fd5b506102f96102f43660046118f9565b610a0d565b6040516101949190611b99565b34801561031257600080fd5b50600b546101bd9060ff1681565b34801561032c57600080fd5b506101ed610b37565b34801561034157600080fd5b506101ed610350366004611a55565b610b6d565b34801561036157600080fd5b506101ed610b9c565b34801561037657600080fd5b506003546040516001600160a01b039091168152602001610194565b34801561039e57600080fd5b506101ed6103ad366004611893565b610bda565b3480156103be57600080fd5b506101ed6103cd3660046118f9565b610be9565b3480156103de57600080fd5b5061018a60065481565b3480156103f457600080fd5b506101bd610403366004611751565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561043d57600080fd5b506101ed61044c36600461182e565b610c9c565b34801561045d57600080fd5b506101ed61046c366004611736565b610d23565b34801561047d57600080fd5b5061018a61048c366004611736565b600a6020526000908152604090205481565b60006001600160a01b03831661050f5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061056657506001600160e01b031982166303a24d0760e21b145b8061058157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b031633146105b15760405162461bcd60e51b815260040161050690611cc4565b6105ba81610dbb565b50565b6060600280546105cc90611d6b565b80601f01602080910402602001604051908101604052809291908181526020018280546105f890611d6b565b80156106455780601f1061061a57610100808354040283529160200191610645565b820191906000526020600020905b81548152906001019060200180831161062857829003601f168201915b50505050509050919050565b6003546001600160a01b0316331461067b5760405162461bcd60e51b815260040161050690611cc4565b600655565b6001600160a01b03851633148061069c575061069c8533610403565b6107035760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610506565b6107108585858585610dce565b5050505050565b6003546001600160a01b031633146107415760405162461bcd60e51b815260040161050690611cc4565b60006107556003546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461079f576040519150601f19603f3d011682016040523d82523d6000602084013e6107a4565b606091505b50509050806105ba57600080fd5b600b5460ff16156107fa5760405162461bcd60e51b815260206004820152601260248201527126b4b73a34b7339034b9902830bab9b2b21760711b6044820152606401610506565b6008548111156108645760405162461bcd60e51b815260206004820152602f60248201527f4f6e6c792031302044696e6f446f6f646c65732061726520416c6c6f7765642060448201526e2832b9102a3930b739b0b1ba34b7b760891b6064820152608401610506565b600654816004546108759190611d1d565b11156108c35760405162461bcd60e51b815260206004820152601c60248201527f44696e6f7665727365206973206174204d6178204361706163697479000000006044820152606401610506565b6001600160a01b0382166000908152600a602052604090205481111561094557806005546108f19190611d35565b3410156109405760405162461bcd60e51b815260206004820152601960248201527f5568204f68204e6f7420456e6f756768204554482050616964000000000000006044820152606401610506565b610973565b6001600160a01b0382166000908152600a60205260408120805483929061096d908490611d54565b90915550505b60005b818110156109d9576004805490600061098e83611dd3565b91905055506109b183600454600160405180602001604052806000815250610fab565b600780549060006109c183611dd3565b919050555080806109d190611dd3565b915050610976565b505050565b6003546001600160a01b03163314610a085760405162461bcd60e51b815260040161050690611cc4565b600555565b60608151835114610a725760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610506565b6000835167ffffffffffffffff811115610a8e57610a8e611e1a565b604051908082528060200260200182016040528015610ab7578160200160208202803683370190505b50905060005b8451811015610b2f57610b02858281518110610adb57610adb611e04565b6020026020010151858381518110610af557610af5611e04565b602002602001015161049e565b828281518110610b1457610b14611e04565b6020908102919091010152610b2881611dd3565b9050610abd565b509392505050565b6003546001600160a01b03163314610b615760405162461bcd60e51b815260040161050690611cc4565b610b6b60006110b5565b565b6003546001600160a01b03163314610b975760405162461bcd60e51b815260040161050690611cc4565b600855565b6003546001600160a01b03163314610bc65760405162461bcd60e51b815260040161050690611cc4565b600b805460ff19811660ff90911615179055565b610be5338383611107565b5050565b6003546001600160a01b03163314610c135760405162461bcd60e51b815260040161050690611cc4565b8051825114610c2157600080fd5b60005b82518110156109d957818181518110610c3f57610c3f611e04565b6020026020010151600a6000858481518110610c5d57610c5d611e04565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610c9490611dd3565b915050610c24565b6001600160a01b038516331480610cb85750610cb88533610403565b610d165760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610506565b61071085858585856111e8565b6003546001600160a01b03163314610d4d5760405162461bcd60e51b815260040161050690611cc4565b6001600160a01b038116610db25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610506565b6105ba816110b5565b8051610be5906002906020840190611585565b8151835114610e305760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610506565b6001600160a01b038416610e565760405162461bcd60e51b815260040161050690611c35565b3360005b8451811015610f3d576000858281518110610e7757610e77611e04565b602002602001015190506000858381518110610e9557610e95611e04565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610ee55760405162461bcd60e51b815260040161050690611c7a565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610f22908490611d1d565b9250508190555050505080610f3690611dd3565b9050610e5a565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610f8d929190611bac565b60405180910390a4610fa3818787878787611305565b505050505050565b6001600160a01b03841661100b5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610506565b336110258160008761101c88611470565b61071088611470565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611055908490611d1d565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610710816000878787876114bb565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561117b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610506565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b03841661120e5760405162461bcd60e51b815260040161050690611c35565b3361121e81878761101c88611470565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561125f5760405162461bcd60e51b815260040161050690611c7a565b6000858152602081815260408083206001600160a01b038b811685529252808320878503905590881682528120805486929061129c908490611d1d565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46112fc8288888888886114bb565b50505050505050565b6001600160a01b0384163b15610fa35760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906113499089908990889088908890600401611af6565b602060405180830381600087803b15801561136357600080fd5b505af1925050508015611393575060408051601f3d908101601f19168201909252611390918101906119e7565b60015b6114405761139f611e30565b806308c379a014156113d957506113b4611e4c565b806113bf57506113db565b8060405162461bcd60e51b81526004016105069190611bda565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610506565b6001600160e01b0319811663bc197c8160e01b146112fc5760405162461bcd60e51b815260040161050690611bed565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106114aa576114aa611e04565b602090810291909101015292915050565b6001600160a01b0384163b15610fa35760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906114ff9089908990889088908890600401611b54565b602060405180830381600087803b15801561151957600080fd5b505af1925050508015611549575060408051601f3d908101601f19168201909252611546918101906119e7565b60015b6115555761139f611e30565b6001600160e01b0319811663f23a6e6160e01b146112fc5760405162461bcd60e51b815260040161050690611bed565b82805461159190611d6b565b90600052602060002090601f0160209004810192826115b357600085556115f9565b82601f106115cc57805160ff19168380011785556115f9565b828001600101855582156115f9579182015b828111156115f95782518255916020019190600101906115de565b50611605929150611609565b5090565b5b80821115611605576000815560010161160a565b600067ffffffffffffffff83111561163857611638611e1a565b60405161164f601f8501601f191660200182611da6565b80915083815284848401111561166457600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461169357600080fd5b919050565b600082601f8301126116a957600080fd5b813560206116b682611cf9565b6040516116c38282611da6565b8381528281019150858301600585901b870184018810156116e357600080fd5b60005b85811015611702578135845292840192908401906001016116e6565b5090979650505050505050565b600082601f83011261172057600080fd5b61172f8383356020850161161e565b9392505050565b60006020828403121561174857600080fd5b61172f8261167c565b6000806040838503121561176457600080fd5b61176d8361167c565b915061177b6020840161167c565b90509250929050565b600080600080600060a0868803121561179c57600080fd5b6117a58661167c565b94506117b36020870161167c565b9350604086013567ffffffffffffffff808211156117d057600080fd5b6117dc89838a01611698565b945060608801359150808211156117f257600080fd5b6117fe89838a01611698565b9350608088013591508082111561181457600080fd5b506118218882890161170f565b9150509295509295909350565b600080600080600060a0868803121561184657600080fd5b61184f8661167c565b945061185d6020870161167c565b93506040860135925060608601359150608086013567ffffffffffffffff81111561188757600080fd5b6118218882890161170f565b600080604083850312156118a657600080fd5b6118af8361167c565b9150602083013580151581146118c457600080fd5b809150509250929050565b600080604083850312156118e257600080fd5b6118eb8361167c565b946020939093013593505050565b6000806040838503121561190c57600080fd5b823567ffffffffffffffff8082111561192457600080fd5b818501915085601f83011261193857600080fd5b8135602061194582611cf9565b6040516119528282611da6565b8381528281019150858301600585901b870184018b101561197257600080fd5b600096505b8487101561199c576119888161167c565b835260019690960195918301918301611977565b50965050860135925050808211156119b357600080fd5b506119c085828601611698565b9150509250929050565b6000602082840312156119dc57600080fd5b813561172f81611ed6565b6000602082840312156119f957600080fd5b815161172f81611ed6565b600060208284031215611a1657600080fd5b813567ffffffffffffffff811115611a2d57600080fd5b8201601f81018413611a3e57600080fd5b611a4d8482356020840161161e565b949350505050565b600060208284031215611a6757600080fd5b5035919050565b600081518084526020808501945080840160005b83811015611a9e57815187529582019590820190600101611a82565b509495945050505050565b6000815180845260005b81811015611acf57602081850181015186830182015201611ab3565b81811115611ae1576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a060408201819052600090611b2290830186611a6e565b8281036060840152611b348186611a6e565b90508281036080840152611b488185611aa9565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611b8e90830184611aa9565b979650505050505050565b60208152600061172f6020830184611a6e565b604081526000611bbf6040830185611a6e565b8281036020840152611bd18185611a6e565b95945050505050565b60208152600061172f6020830184611aa9565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff821115611d1357611d13611e1a565b5060051b60200190565b60008219821115611d3057611d30611dee565b500190565b6000816000190483118215151615611d4f57611d4f611dee565b500290565b600082821015611d6657611d66611dee565b500390565b600181811c90821680611d7f57607f821691505b60208210811415611da057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611dcc57611dcc611e1a565b6040525050565b6000600019821415611de757611de7611dee565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611e495760046000803e5060005160e01c5b90565b600060443d1015611e5a5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611e8a57505050505090565b8285019150815181811115611ea25750505050505090565b843d8701016020828501011115611ebc5750505050505090565b611ecb60208286010187611da6565b509095945050505050565b6001600160e01b0319811681146105ba57600080fdfea2646970667358221220a40f22e7bb50f6d4887a9934f9934dc2c4a4c6bb63da6a299c66938ff1445ac864736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101655760003560e01c80634e1273f4116100d1578063a22cb4651161008a578063e985e9c511610064578063e985e9c5146103e8578063f242432a14610431578063f2fde38b14610451578063fa07ce1d1461047157600080fd5b8063a22cb46514610392578063d04be076146103b2578063d5abeb01146103d257600080fd5b80634e1273f4146102d95780635c975abb14610306578063715018a6146103205780637f00c7a6146103355780638456cb59146103555780638da5cb5b1461036a57600080fd5b8063228025e811610123578063228025e814610248578063239c70ae146102685780632eb2c2d61461027e5780633ccfd60b1461029e57806340c10f19146102a657806344a0d68a146102b957600080fd5b8062fdd58e1461016a57806301ffc9a71461019d57806302fe5305146101cd5780630e89341c146101ef57806313faede61461021c57806318160ddd14610232575b600080fd5b34801561017657600080fd5b5061018a6101853660046118cf565b61049e565b6040519081526020015b60405180910390f35b3480156101a957600080fd5b506101bd6101b83660046119ca565b610535565b6040519015158152602001610194565b3480156101d957600080fd5b506101ed6101e8366004611a04565b610587565b005b3480156101fb57600080fd5b5061020f61020a366004611a55565b6105bd565b6040516101949190611bda565b34801561022857600080fd5b5061018a60055481565b34801561023e57600080fd5b5061018a60075481565b34801561025457600080fd5b506101ed610263366004611a55565b610651565b34801561027457600080fd5b5061018a60085481565b34801561028a57600080fd5b506101ed610299366004611784565b610680565b6101ed610717565b6101ed6102b43660046118cf565b6107b2565b3480156102c557600080fd5b506101ed6102d4366004611a55565b6109de565b3480156102e557600080fd5b506102f96102f43660046118f9565b610a0d565b6040516101949190611b99565b34801561031257600080fd5b50600b546101bd9060ff1681565b34801561032c57600080fd5b506101ed610b37565b34801561034157600080fd5b506101ed610350366004611a55565b610b6d565b34801561036157600080fd5b506101ed610b9c565b34801561037657600080fd5b506003546040516001600160a01b039091168152602001610194565b34801561039e57600080fd5b506101ed6103ad366004611893565b610bda565b3480156103be57600080fd5b506101ed6103cd3660046118f9565b610be9565b3480156103de57600080fd5b5061018a60065481565b3480156103f457600080fd5b506101bd610403366004611751565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561043d57600080fd5b506101ed61044c36600461182e565b610c9c565b34801561045d57600080fd5b506101ed61046c366004611736565b610d23565b34801561047d57600080fd5b5061018a61048c366004611736565b600a6020526000908152604090205481565b60006001600160a01b03831661050f5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061056657506001600160e01b031982166303a24d0760e21b145b8061058157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b031633146105b15760405162461bcd60e51b815260040161050690611cc4565b6105ba81610dbb565b50565b6060600280546105cc90611d6b565b80601f01602080910402602001604051908101604052809291908181526020018280546105f890611d6b565b80156106455780601f1061061a57610100808354040283529160200191610645565b820191906000526020600020905b81548152906001019060200180831161062857829003601f168201915b50505050509050919050565b6003546001600160a01b0316331461067b5760405162461bcd60e51b815260040161050690611cc4565b600655565b6001600160a01b03851633148061069c575061069c8533610403565b6107035760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610506565b6107108585858585610dce565b5050505050565b6003546001600160a01b031633146107415760405162461bcd60e51b815260040161050690611cc4565b60006107556003546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461079f576040519150601f19603f3d011682016040523d82523d6000602084013e6107a4565b606091505b50509050806105ba57600080fd5b600b5460ff16156107fa5760405162461bcd60e51b815260206004820152601260248201527126b4b73a34b7339034b9902830bab9b2b21760711b6044820152606401610506565b6008548111156108645760405162461bcd60e51b815260206004820152602f60248201527f4f6e6c792031302044696e6f446f6f646c65732061726520416c6c6f7765642060448201526e2832b9102a3930b739b0b1ba34b7b760891b6064820152608401610506565b600654816004546108759190611d1d565b11156108c35760405162461bcd60e51b815260206004820152601c60248201527f44696e6f7665727365206973206174204d6178204361706163697479000000006044820152606401610506565b6001600160a01b0382166000908152600a602052604090205481111561094557806005546108f19190611d35565b3410156109405760405162461bcd60e51b815260206004820152601960248201527f5568204f68204e6f7420456e6f756768204554482050616964000000000000006044820152606401610506565b610973565b6001600160a01b0382166000908152600a60205260408120805483929061096d908490611d54565b90915550505b60005b818110156109d9576004805490600061098e83611dd3565b91905055506109b183600454600160405180602001604052806000815250610fab565b600780549060006109c183611dd3565b919050555080806109d190611dd3565b915050610976565b505050565b6003546001600160a01b03163314610a085760405162461bcd60e51b815260040161050690611cc4565b600555565b60608151835114610a725760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610506565b6000835167ffffffffffffffff811115610a8e57610a8e611e1a565b604051908082528060200260200182016040528015610ab7578160200160208202803683370190505b50905060005b8451811015610b2f57610b02858281518110610adb57610adb611e04565b6020026020010151858381518110610af557610af5611e04565b602002602001015161049e565b828281518110610b1457610b14611e04565b6020908102919091010152610b2881611dd3565b9050610abd565b509392505050565b6003546001600160a01b03163314610b615760405162461bcd60e51b815260040161050690611cc4565b610b6b60006110b5565b565b6003546001600160a01b03163314610b975760405162461bcd60e51b815260040161050690611cc4565b600855565b6003546001600160a01b03163314610bc65760405162461bcd60e51b815260040161050690611cc4565b600b805460ff19811660ff90911615179055565b610be5338383611107565b5050565b6003546001600160a01b03163314610c135760405162461bcd60e51b815260040161050690611cc4565b8051825114610c2157600080fd5b60005b82518110156109d957818181518110610c3f57610c3f611e04565b6020026020010151600a6000858481518110610c5d57610c5d611e04565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610c9490611dd3565b915050610c24565b6001600160a01b038516331480610cb85750610cb88533610403565b610d165760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610506565b61071085858585856111e8565b6003546001600160a01b03163314610d4d5760405162461bcd60e51b815260040161050690611cc4565b6001600160a01b038116610db25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610506565b6105ba816110b5565b8051610be5906002906020840190611585565b8151835114610e305760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610506565b6001600160a01b038416610e565760405162461bcd60e51b815260040161050690611c35565b3360005b8451811015610f3d576000858281518110610e7757610e77611e04565b602002602001015190506000858381518110610e9557610e95611e04565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610ee55760405162461bcd60e51b815260040161050690611c7a565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610f22908490611d1d565b9250508190555050505080610f3690611dd3565b9050610e5a565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610f8d929190611bac565b60405180910390a4610fa3818787878787611305565b505050505050565b6001600160a01b03841661100b5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610506565b336110258160008761101c88611470565b61071088611470565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611055908490611d1d565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610710816000878787876114bb565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561117b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610506565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b03841661120e5760405162461bcd60e51b815260040161050690611c35565b3361121e81878761101c88611470565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561125f5760405162461bcd60e51b815260040161050690611c7a565b6000858152602081815260408083206001600160a01b038b811685529252808320878503905590881682528120805486929061129c908490611d1d565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46112fc8288888888886114bb565b50505050505050565b6001600160a01b0384163b15610fa35760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906113499089908990889088908890600401611af6565b602060405180830381600087803b15801561136357600080fd5b505af1925050508015611393575060408051601f3d908101601f19168201909252611390918101906119e7565b60015b6114405761139f611e30565b806308c379a014156113d957506113b4611e4c565b806113bf57506113db565b8060405162461bcd60e51b81526004016105069190611bda565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610506565b6001600160e01b0319811663bc197c8160e01b146112fc5760405162461bcd60e51b815260040161050690611bed565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106114aa576114aa611e04565b602090810291909101015292915050565b6001600160a01b0384163b15610fa35760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906114ff9089908990889088908890600401611b54565b602060405180830381600087803b15801561151957600080fd5b505af1925050508015611549575060408051601f3d908101601f19168201909252611546918101906119e7565b60015b6115555761139f611e30565b6001600160e01b0319811663f23a6e6160e01b146112fc5760405162461bcd60e51b815260040161050690611bed565b82805461159190611d6b565b90600052602060002090601f0160209004810192826115b357600085556115f9565b82601f106115cc57805160ff19168380011785556115f9565b828001600101855582156115f9579182015b828111156115f95782518255916020019190600101906115de565b50611605929150611609565b5090565b5b80821115611605576000815560010161160a565b600067ffffffffffffffff83111561163857611638611e1a565b60405161164f601f8501601f191660200182611da6565b80915083815284848401111561166457600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461169357600080fd5b919050565b600082601f8301126116a957600080fd5b813560206116b682611cf9565b6040516116c38282611da6565b8381528281019150858301600585901b870184018810156116e357600080fd5b60005b85811015611702578135845292840192908401906001016116e6565b5090979650505050505050565b600082601f83011261172057600080fd5b61172f8383356020850161161e565b9392505050565b60006020828403121561174857600080fd5b61172f8261167c565b6000806040838503121561176457600080fd5b61176d8361167c565b915061177b6020840161167c565b90509250929050565b600080600080600060a0868803121561179c57600080fd5b6117a58661167c565b94506117b36020870161167c565b9350604086013567ffffffffffffffff808211156117d057600080fd5b6117dc89838a01611698565b945060608801359150808211156117f257600080fd5b6117fe89838a01611698565b9350608088013591508082111561181457600080fd5b506118218882890161170f565b9150509295509295909350565b600080600080600060a0868803121561184657600080fd5b61184f8661167c565b945061185d6020870161167c565b93506040860135925060608601359150608086013567ffffffffffffffff81111561188757600080fd5b6118218882890161170f565b600080604083850312156118a657600080fd5b6118af8361167c565b9150602083013580151581146118c457600080fd5b809150509250929050565b600080604083850312156118e257600080fd5b6118eb8361167c565b946020939093013593505050565b6000806040838503121561190c57600080fd5b823567ffffffffffffffff8082111561192457600080fd5b818501915085601f83011261193857600080fd5b8135602061194582611cf9565b6040516119528282611da6565b8381528281019150858301600585901b870184018b101561197257600080fd5b600096505b8487101561199c576119888161167c565b835260019690960195918301918301611977565b50965050860135925050808211156119b357600080fd5b506119c085828601611698565b9150509250929050565b6000602082840312156119dc57600080fd5b813561172f81611ed6565b6000602082840312156119f957600080fd5b815161172f81611ed6565b600060208284031215611a1657600080fd5b813567ffffffffffffffff811115611a2d57600080fd5b8201601f81018413611a3e57600080fd5b611a4d8482356020840161161e565b949350505050565b600060208284031215611a6757600080fd5b5035919050565b600081518084526020808501945080840160005b83811015611a9e57815187529582019590820190600101611a82565b509495945050505050565b6000815180845260005b81811015611acf57602081850181015186830182015201611ab3565b81811115611ae1576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a060408201819052600090611b2290830186611a6e565b8281036060840152611b348186611a6e565b90508281036080840152611b488185611aa9565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611b8e90830184611aa9565b979650505050505050565b60208152600061172f6020830184611a6e565b604081526000611bbf6040830185611a6e565b8281036020840152611bd18185611a6e565b95945050505050565b60208152600061172f6020830184611aa9565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff821115611d1357611d13611e1a565b5060051b60200190565b60008219821115611d3057611d30611dee565b500190565b6000816000190483118215151615611d4f57611d4f611dee565b500290565b600082821015611d6657611d66611dee565b500390565b600181811c90821680611d7f57607f821691505b60208210811415611da057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611dcc57611dcc611e1a565b6040525050565b6000600019821415611de757611de7611dee565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611e495760046000803e5060005160e01c5b90565b600060443d1015611e5a5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611e8a57505050505090565b8285019150815181811115611ea25750505050505090565b843d8701016020828501011115611ebc5750505050505090565b611ecb60208286010187611da6565b509095945050505050565b6001600160e01b0319811681146105ba57600080fdfea2646970667358221220a40f22e7bb50f6d4887a9934f9934dc2c4a4c6bb63da6a299c66938ff1445ac864736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

36655:3094:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20448:231;;;;;;;;;;-1:-1:-1;20448:231:0;;;;;:::i;:::-;;:::i;:::-;;;17413:25:1;;;17401:2;17386:18;20448:231:0;;;;;;;;19471:310;;;;;;;;;;-1:-1:-1;19471:310:0;;;;;:::i;:::-;;:::i;:::-;;;10255:14:1;;10248:22;10230:41;;10218:2;10203:18;19471:310:0;10090:187:1;39139:91:0;;;;;;;;;;-1:-1:-1;39139:91:0;;;;;:::i;:::-;;:::i;:::-;;20192:105;;;;;;;;;;-1:-1:-1;20192:105:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;36779:31::-;;;;;;;;;;;;;;;;36854:30;;;;;;;;;;;;;;;;38951:106;;;;;;;;;;-1:-1:-1;38951:106:0;;;;;:::i;:::-;;:::i;36891:33::-;;;;;;;;;;;;;;;;22387:442;;;;;;;;;;-1:-1:-1;22387:442:0;;;;;:::i;:::-;;:::i;38203:154::-;;;:::i;37441:750::-;;;;;;:::i;:::-;;:::i;38464:86::-;;;;;;;;;;-1:-1:-1;38464:86:0;;;;;:::i;:::-;;:::i;20845:524::-;;;;;;;;;;-1:-1:-1;20845:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;37023:18::-;;;;;;;;;;-1:-1:-1;37023:18:0;;;;;;;;35664:103;;;;;;;;;;;;;:::i;38696:122::-;;;;;;;;;;-1:-1:-1;38696:122:0;;;;;:::i;:::-;;:::i;39293:69::-;;;;;;;;;;;;;:::i;35013:87::-;;;;;;;;;;-1:-1:-1;35086:6:0;;35013:87;;-1:-1:-1;;;;;35086:6:0;;;7896:51:1;;7884:2;7869:18;35013:87:0;7750:203:1;21442:155:0;;;;;;;;;;-1:-1:-1;21442:155:0;;;;;:::i;:::-;;:::i;39471:275::-;;;;;;;;;;-1:-1:-1;39471:275:0;;;;;:::i;:::-;;:::i;36817:30::-;;;;;;;;;;;;;;;;21669:168;;;;;;;;;;-1:-1:-1;21669:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;21792:27:0;;;21768:4;21792:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;21669:168;21909:401;;;;;;;;;;-1:-1:-1;21909:401:0;;;;;:::i;:::-;;:::i;35922:201::-;;;;;;;;;;-1:-1:-1;35922:201:0;;;;;:::i;:::-;;:::i;36973:43::-;;;;;;;;;;-1:-1:-1;36973:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;20448:231;20534:7;-1:-1:-1;;;;;20562:21:0;;20554:77;;;;-1:-1:-1;;;20554:77:0;;11538:2:1;20554:77:0;;;11520:21:1;11577:2;11557:18;;;11550:30;11616:34;11596:18;;;11589:62;-1:-1:-1;;;11667:18:1;;;11660:41;11718:19;;20554:77:0;;;;;;;;;-1:-1:-1;20649:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;20649:22:0;;;;;;;;;;;;20448:231::o;19471:310::-;19573:4;-1:-1:-1;;;;;;19610:41:0;;-1:-1:-1;;;19610:41:0;;:110;;-1:-1:-1;;;;;;;19668:52:0;;-1:-1:-1;;;19668:52:0;19610:110;:163;;;-1:-1:-1;;;;;;;;;;10042:40:0;;;19737:36;19590:183;19471:310;-1:-1:-1;;19471:310:0:o;39139:91::-;35086:6;;-1:-1:-1;;;;;35086:6:0;18260:10;35233:23;35225:68;;;;-1:-1:-1;;;35225:68:0;;;;;;;:::i;:::-;39206:16:::1;39214:7;39206;:16::i;:::-;39139:91:::0;:::o;20192:105::-;20252:13;20285:4;20278:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20192:105;;;:::o;38951:106::-;35086:6;;-1:-1:-1;;;;;35086:6:0;18260:10;35233:23;35225:68;;;;-1:-1:-1;;;35225:68:0;;;;;;;:::i;:::-;39024:9:::1;:25:::0;38951:106::o;22387:442::-;-1:-1:-1;;;;;22620:20:0;;18260:10;22620:20;;:60;;-1:-1:-1;22644:36:0;22661:4;18260:10;21669:168;:::i;22644:36::-;22598:160;;;;-1:-1:-1;;;22598:160:0;;13527:2:1;22598:160:0;;;13509:21:1;13566:2;13546:18;;;13539:30;13605:34;13585:18;;;13578:62;-1:-1:-1;;;13656:18:1;;;13649:48;13714:19;;22598:160:0;13325:414:1;22598:160:0;22769:52;22792:4;22798:2;22802:3;22807:7;22816:4;22769:22;:52::i;:::-;22387:442;;;;;:::o;38203:154::-;35086:6;;-1:-1:-1;;;;;35086:6:0;18260:10;35233:23;35225:68;;;;-1:-1:-1;;;35225:68:0;;;;;;;:::i;:::-;38259:7:::1;38280;35086:6:::0;;-1:-1:-1;;;;;35086:6:0;;35013:87;38280:7:::1;-1:-1:-1::0;;;;;38272:21:0::1;38301;38272:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38258:69;;;38346:2;38338:11;;;::::0;::::1;37441:750:::0;37524:6;;;;37523:7;37515:38;;;;-1:-1:-1;;;37515:38:0;;15134:2:1;37515:38:0;;;15116:21:1;15173:2;15153:18;;;15146:30;-1:-1:-1;;;15192:18:1;;;15185:48;15250:18;;37515:38:0;14932:342:1;37515:38:0;37587:13;;37572:11;:28;;37564:88;;;;-1:-1:-1;;;37564:88:0;;13946:2:1;37564:88:0;;;13928:21:1;13985:2;13965:18;;;13958:30;14024:34;14004:18;;;13997:62;-1:-1:-1;;;14075:18:1;;;14068:45;14130:19;;37564:88:0;13744:411:1;37564:88:0;37710:9;;37695:11;37685:7;;:21;;;;:::i;:::-;:34;;37663:112;;;;-1:-1:-1;;;37663:112:0;;15481:2:1;37663:112:0;;;15463:21:1;15520:2;15500:18;;;15493:30;15559;15539:18;;;15532:58;15607:18;;37663:112:0;15279:352:1;37663:112:0;-1:-1:-1;;;;;37799:13:0;;;;;;:8;:13;;;;;;:27;-1:-1:-1;37796:220:0;;;37887:11;37880:4;;:18;;;;:::i;:::-;37867:9;:31;;37841:118;;;;-1:-1:-1;;;37841:118:0;;11950:2:1;37841:118:0;;;11932:21:1;11989:2;11969:18;;;11962:30;12028:27;12008:18;;;12001:55;12073:18;;37841:118:0;11748:349:1;37841:118:0;37796:220;;;-1:-1:-1;;;;;37988:13:0;;;;;;:8;:13;;;;;:28;;38005:11;;37988:13;:28;;38005:11;;37988:28;:::i;:::-;;;;-1:-1:-1;;37796:220:0;38042:9;38037:147;38061:11;38057:1;:15;38037:147;;;38094:7;:9;;;:7;:9;;;:::i;:::-;;;;;;38118:26;38124:3;38129:7;;38138:1;38118:26;;;;;;;;;;;;:5;:26::i;:::-;38159:11;:13;;;:11;:13;;;:::i;:::-;;;;;;38074:3;;;;;:::i;:::-;;;;38037:147;;;;37441:750;;:::o;38464:86::-;35086:6;;-1:-1:-1;;;;;35086:6:0;18260:10;35233:23;35225:68;;;;-1:-1:-1;;;35225:68:0;;;;;;;:::i;:::-;38527:4:::1;:15:::0;38464:86::o;20845:524::-;21001:16;21062:3;:10;21043:8;:15;:29;21035:83;;;;-1:-1:-1;;;21035:83:0;;16248:2:1;21035:83:0;;;16230:21:1;16287:2;16267:18;;;16260:30;16326:34;16306:18;;;16299:62;-1:-1:-1;;;16377:18:1;;;16370:39;16426:19;;21035:83:0;16046:405:1;21035:83:0;21131:30;21178:8;:15;21164:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21164:30:0;;21131:63;;21212:9;21207:122;21231:8;:15;21227:1;:19;21207:122;;;21287:30;21297:8;21306:1;21297:11;;;;;;;;:::i;:::-;;;;;;;21310:3;21314:1;21310:6;;;;;;;;:::i;:::-;;;;;;;21287:9;:30::i;:::-;21268:13;21282:1;21268:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;21248:3;;;:::i;:::-;;;21207:122;;;-1:-1:-1;21348:13:0;20845:524;-1:-1:-1;;;20845:524:0:o;35664:103::-;35086:6;;-1:-1:-1;;;;;35086:6:0;18260:10;35233:23;35225:68;;;;-1:-1:-1;;;35225:68:0;;;;;;;:::i;:::-;35729:30:::1;35756:1;35729:18;:30::i;:::-;35664:103::o:0;38696:122::-;35086:6;;-1:-1:-1;;;;;35086:6:0;18260:10;35233:23;35225:68;;;;-1:-1:-1;;;35225:68:0;;;;;;;:::i;:::-;38777:13:::1;:33:::0;38696:122::o;39293:69::-;35086:6;;-1:-1:-1;;;;;35086:6:0;18260:10;35233:23;35225:68;;;;-1:-1:-1;;;35225:68:0;;;;;;;:::i;:::-;39348:6:::1;::::0;;-1:-1:-1;;39338:16:0;::::1;39348:6;::::0;;::::1;39347:7;39338:16;::::0;;39293:69::o;21442:155::-;21537:52;18260:10;21570:8;21580;21537:18;:52::i;:::-;21442:155;;:::o;39471:275::-;35086:6;;-1:-1:-1;;;;;35086:6:0;18260:10;35233:23;35225:68;;;;-1:-1:-1;;;35225:68:0;;;;;;;:::i;:::-;39625:7:::1;:14;39609:5;:12;:30;39601:39;;;::::0;::::1;;39656:9;39651:87;39675:5;:12;39671:1;:16;39651:87;;;39728:7;39736:1;39728:10;;;;;;;;:::i;:::-;;;;;;;39707:8;:18;39716:5;39722:1;39716:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;39707:18:0::1;-1:-1:-1::0;;;;;39707:18:0::1;;;;;;;;;;;;:31;;;;39689:3;;;;;:::i;:::-;;;;39651:87;;21909:401:::0;-1:-1:-1;;;;;22117:20:0;;18260:10;22117:20;;:60;;-1:-1:-1;22141:36:0;22158:4;18260:10;21669:168;:::i;22141:36::-;22095:151;;;;-1:-1:-1;;;22095:151:0;;12711:2:1;22095:151:0;;;12693:21:1;12750:2;12730:18;;;12723:30;12789:34;12769:18;;;12762:62;-1:-1:-1;;;12840:18:1;;;12833:39;12889:19;;22095:151:0;12509:405:1;22095:151:0;22257:45;22275:4;22281:2;22285;22289:6;22297:4;22257:17;:45::i;35922:201::-;35086:6;;-1:-1:-1;;;;;35086:6:0;18260:10;35233:23;35225:68;;;;-1:-1:-1;;;35225:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36011:22:0;::::1;36003:73;;;::::0;-1:-1:-1;;;36003:73:0;;12304:2:1;36003:73:0::1;::::0;::::1;12286:21:1::0;12343:2;12323:18;;;12316:30;12382:34;12362:18;;;12355:62;-1:-1:-1;;;12433:18:1;;;12426:36;12479:19;;36003:73:0::1;12102:402:1::0;36003:73:0::1;36087:28;36106:8;36087:18;:28::i;26389:88::-:0;26456:13;;;;:4;;:13;;;;;:::i;24471:1074::-;24698:7;:14;24684:3;:10;:28;24676:81;;;;-1:-1:-1;;;24676:81:0;;16658:2:1;24676:81:0;;;16640:21:1;16697:2;16677:18;;;16670:30;16736:34;16716:18;;;16709:62;-1:-1:-1;;;16787:18:1;;;16780:38;16835:19;;24676:81:0;16456:404:1;24676:81:0;-1:-1:-1;;;;;24776:16:0;;24768:66;;;;-1:-1:-1;;;24768:66:0;;;;;;;:::i;:::-;18260:10;24847:16;24964:421;24988:3;:10;24984:1;:14;24964:421;;;25020:10;25033:3;25037:1;25033:6;;;;;;;;:::i;:::-;;;;;;;25020:19;;25054:14;25071:7;25079:1;25071:10;;;;;;;;:::i;:::-;;;;;;;;;;;;25098:19;25120:13;;;;;;;;;;-1:-1:-1;;;;;25120:19:0;;;;;;;;;;;;25071:10;;-1:-1:-1;25162:21:0;;;;25154:76;;;;-1:-1:-1;;;25154:76:0;;;;;;;:::i;:::-;25274:9;:13;;;;;;;;;;;-1:-1:-1;;;;;25274:19:0;;;;;;;;;;25296:20;;;25274:42;;25346:17;;;;;;;:27;;25296:20;;25274:9;25346:27;;25296:20;;25346:27;:::i;:::-;;;;;;;;25005:380;;;25000:3;;;;:::i;:::-;;;24964:421;;;;25432:2;-1:-1:-1;;;;;25402:47:0;25426:4;-1:-1:-1;;;;;25402:47:0;25416:8;-1:-1:-1;;;;;25402:47:0;;25436:3;25441:7;25402:47;;;;;;;:::i;:::-;;;;;;;;25462:75;25498:8;25508:4;25514:2;25518:3;25523:7;25532:4;25462:35;:75::i;:::-;24665:880;24471:1074;;;;;:::o;26863:569::-;-1:-1:-1;;;;;27016:16:0;;27008:62;;;;-1:-1:-1;;;27008:62:0;;17067:2:1;27008:62:0;;;17049:21:1;17106:2;17086:18;;;17079:30;17145:34;17125:18;;;17118:62;-1:-1:-1;;;17196:18:1;;;17189:31;17237:19;;27008:62:0;16865:397:1;27008:62:0;18260:10;27127:102;18260:10;27083:16;27170:2;27174:21;27192:2;27174:17;:21::i;:::-;27197:25;27215:6;27197:17;:25::i;27127:102::-;27242:9;:13;;;;;;;;;;;-1:-1:-1;;;;;27242:17:0;;;;;;;;;:27;;27263:6;;27242:9;:27;;27263:6;;27242:27;:::i;:::-;;;;-1:-1:-1;;27285:52:0;;;17623:25:1;;;17679:2;17664:18;;17657:34;;;-1:-1:-1;;;;;27285:52:0;;;;27318:1;;27285:52;;;;;;17596:18:1;27285:52:0;;;;;;;27350:74;27381:8;27399:1;27403:2;27407;27411:6;27419:4;27350:30;:74::i;36283:191::-;36376:6;;;-1:-1:-1;;;;;36393:17:0;;;-1:-1:-1;;;;;;36393:17:0;;;;;;;36426:40;;36376:6;;;36393:17;36376:6;;36426:40;;36357:16;;36426:40;36346:128;36283:191;:::o;30657:331::-;30812:8;-1:-1:-1;;;;;30803:17:0;:5;-1:-1:-1;;;;;30803:17:0;;;30795:71;;;;-1:-1:-1;;;30795:71:0;;15838:2:1;30795:71:0;;;15820:21:1;15877:2;15857:18;;;15850:30;15916:34;15896:18;;;15889:62;-1:-1:-1;;;15967:18:1;;;15960:39;16016:19;;30795:71:0;15636:405:1;30795:71:0;-1:-1:-1;;;;;30877:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;30877:46:0;;;;;;;;;;30939:41;;10230::1;;;30939::0;;10203:18:1;30939:41:0;;;;;;;30657:331;;;:::o;23293:820::-;-1:-1:-1;;;;;23481:16:0;;23473:66;;;;-1:-1:-1;;;23473:66:0;;;;;;;:::i;:::-;18260:10;23596:96;18260:10;23627:4;23633:2;23637:21;23655:2;23637:17;:21::i;23596:96::-;23705:19;23727:13;;;;;;;;;;;-1:-1:-1;;;;;23727:19:0;;;;;;;;;;23765:21;;;;23757:76;;;;-1:-1:-1;;;23757:76:0;;;;;;;:::i;:::-;23869:9;:13;;;;;;;;;;;-1:-1:-1;;;;;23869:19:0;;;;;;;;;;23891:20;;;23869:42;;23933:17;;;;;;;:27;;23891:20;;23869:9;23933:27;;23891:20;;23933:27;:::i;:::-;;;;-1:-1:-1;;23978:46:0;;;17623:25:1;;;17679:2;17664:18;;17657:34;;;-1:-1:-1;;;;;23978:46:0;;;;;;;;;;;;;;17596:18:1;23978:46:0;;;;;;;24037:68;24068:8;24078:4;24084:2;24088;24092:6;24100:4;24037:30;:68::i;:::-;23462:651;;23293:820;;;;;:::o;32925:813::-;-1:-1:-1;;;;;33165:13:0;;1143:20;1191:8;33161:570;;33201:79;;-1:-1:-1;;;33201:79:0;;-1:-1:-1;;;;;33201:43:0;;;;;:79;;33245:8;;33255:4;;33261:3;;33266:7;;33275:4;;33201:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33201:79:0;;;;;;;;-1:-1:-1;;33201:79:0;;;;;;;;;;;;:::i;:::-;;;33197:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;33593:6;33586:14;;-1:-1:-1;;;33586:14:0;;;;;;;;:::i;33197:523::-;;;33642:62;;-1:-1:-1;;;33642:62:0;;10708:2:1;33642:62:0;;;10690:21:1;10747:2;10727:18;;;10720:30;10786:34;10766:18;;;10759:62;-1:-1:-1;;;10837:18:1;;;10830:50;10897:19;;33642:62:0;10506:416:1;33197:523:0;-1:-1:-1;;;;;;33362:60:0;;-1:-1:-1;;;33362:60:0;33358:159;;33447:50;;-1:-1:-1;;;33447:50:0;;;;;;;:::i;33746:198::-;33866:16;;;33880:1;33866:16;;;;;;;;;33812;;33841:22;;33866:16;;;;;;;;;;;;-1:-1:-1;33866:16:0;33841:41;;33904:7;33893:5;33899:1;33893:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;33931:5;33746:198;-1:-1:-1;;33746:198:0:o;32173:744::-;-1:-1:-1;;;;;32388:13:0;;1143:20;1191:8;32384:526;;32424:72;;-1:-1:-1;;;32424:72:0;;-1:-1:-1;;;;;32424:38:0;;;;;:72;;32463:8;;32473:4;;32479:2;;32483:6;;32491:4;;32424:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32424:72:0;;;;;;;;-1:-1:-1;;32424:72:0;;;;;;;;;;;;:::i;:::-;;;32420:479;;;;:::i;:::-;-1:-1:-1;;;;;;32546:55:0;;-1:-1:-1;;;32546:55:0;32542:154;;32626:50;;-1:-1:-1;;;32626:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:45;;;369:1;366;359:12;328:45;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;14:468;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:1;;594:42;;584:70;;650:1;647;640:12;584:70;487:173;;;:::o;665:735::-;719:5;772:3;765:4;757:6;753:17;749:27;739:55;;790:1;787;780:12;739:55;826:6;813:20;852:4;875:43;915:2;875:43;:::i;:::-;947:2;941:9;959:31;987:2;979:6;959:31;:::i;:::-;1025:18;;;1059:15;;;;-1:-1:-1;1094:15:1;;;1144:1;1140:10;;;1128:23;;1124:32;;1121:41;-1:-1:-1;1118:61:1;;;1175:1;1172;1165:12;1118:61;1197:1;1207:163;1221:2;1218:1;1215:9;1207:163;;;1278:17;;1266:30;;1316:12;;;;1348;;;;1239:1;1232:9;1207:163;;;-1:-1:-1;1388:6:1;;665:735;-1:-1:-1;;;;;;;665:735:1:o;1405:220::-;1447:5;1500:3;1493:4;1485:6;1481:17;1477:27;1467:55;;1518:1;1515;1508:12;1467:55;1540:79;1615:3;1606:6;1593:20;1586:4;1578:6;1574:17;1540:79;:::i;:::-;1531:88;1405:220;-1:-1:-1;;;1405:220:1:o;1630:186::-;1689:6;1742:2;1730:9;1721:7;1717:23;1713:32;1710:52;;;1758:1;1755;1748:12;1710:52;1781:29;1800:9;1781:29;:::i;1821:260::-;1889:6;1897;1950:2;1938:9;1929:7;1925:23;1921:32;1918:52;;;1966:1;1963;1956:12;1918:52;1989:29;2008:9;1989:29;:::i;:::-;1979:39;;2037:38;2071:2;2060:9;2056:18;2037:38;:::i;:::-;2027:48;;1821:260;;;;;:::o;2086:943::-;2240:6;2248;2256;2264;2272;2325:3;2313:9;2304:7;2300:23;2296:33;2293:53;;;2342:1;2339;2332:12;2293:53;2365:29;2384:9;2365:29;:::i;:::-;2355:39;;2413:38;2447:2;2436:9;2432:18;2413:38;:::i;:::-;2403:48;;2502:2;2491:9;2487:18;2474:32;2525:18;2566:2;2558:6;2555:14;2552:34;;;2582:1;2579;2572:12;2552:34;2605:61;2658:7;2649:6;2638:9;2634:22;2605:61;:::i;:::-;2595:71;;2719:2;2708:9;2704:18;2691:32;2675:48;;2748:2;2738:8;2735:16;2732:36;;;2764:1;2761;2754:12;2732:36;2787:63;2842:7;2831:8;2820:9;2816:24;2787:63;:::i;:::-;2777:73;;2903:3;2892:9;2888:19;2875:33;2859:49;;2933:2;2923:8;2920:16;2917:36;;;2949:1;2946;2939:12;2917:36;;2972:51;3015:7;3004:8;2993:9;2989:24;2972:51;:::i;:::-;2962:61;;;2086:943;;;;;;;;:::o;3034:606::-;3138:6;3146;3154;3162;3170;3223:3;3211:9;3202:7;3198:23;3194:33;3191:53;;;3240:1;3237;3230:12;3191:53;3263:29;3282:9;3263:29;:::i;:::-;3253:39;;3311:38;3345:2;3334:9;3330:18;3311:38;:::i;:::-;3301:48;;3396:2;3385:9;3381:18;3368:32;3358:42;;3447:2;3436:9;3432:18;3419:32;3409:42;;3502:3;3491:9;3487:19;3474:33;3530:18;3522:6;3519:30;3516:50;;;3562:1;3559;3552:12;3516:50;3585:49;3626:7;3617:6;3606:9;3602:22;3585:49;:::i;3645:347::-;3710:6;3718;3771:2;3759:9;3750:7;3746:23;3742:32;3739:52;;;3787:1;3784;3777:12;3739:52;3810:29;3829:9;3810:29;:::i;:::-;3800:39;;3889:2;3878:9;3874:18;3861:32;3936:5;3929:13;3922:21;3915:5;3912:32;3902:60;;3958:1;3955;3948:12;3902:60;3981:5;3971:15;;;3645:347;;;;;:::o;3997:254::-;4065:6;4073;4126:2;4114:9;4105:7;4101:23;4097:32;4094:52;;;4142:1;4139;4132:12;4094:52;4165:29;4184:9;4165:29;:::i;:::-;4155:39;4241:2;4226:18;;;;4213:32;;-1:-1:-1;;;3997:254:1:o;4256:1219::-;4374:6;4382;4435:2;4423:9;4414:7;4410:23;4406:32;4403:52;;;4451:1;4448;4441:12;4403:52;4491:9;4478:23;4520:18;4561:2;4553:6;4550:14;4547:34;;;4577:1;4574;4567:12;4547:34;4615:6;4604:9;4600:22;4590:32;;4660:7;4653:4;4649:2;4645:13;4641:27;4631:55;;4682:1;4679;4672:12;4631:55;4718:2;4705:16;4740:4;4763:43;4803:2;4763:43;:::i;:::-;4835:2;4829:9;4847:31;4875:2;4867:6;4847:31;:::i;:::-;4913:18;;;4947:15;;;;-1:-1:-1;4982:11:1;;;5024:1;5020:10;;;5012:19;;5008:28;;5005:41;-1:-1:-1;5002:61:1;;;5059:1;5056;5049:12;5002:61;5081:1;5072:10;;5091:169;5105:2;5102:1;5099:9;5091:169;;;5162:23;5181:3;5162:23;:::i;:::-;5150:36;;5123:1;5116:9;;;;;5206:12;;;;5238;;5091:169;;;-1:-1:-1;5279:6:1;-1:-1:-1;;5323:18:1;;5310:32;;-1:-1:-1;;5354:16:1;;;5351:36;;;5383:1;5380;5373:12;5351:36;;5406:63;5461:7;5450:8;5439:9;5435:24;5406:63;:::i;:::-;5396:73;;;4256:1219;;;;;:::o;5480:245::-;5538:6;5591:2;5579:9;5570:7;5566:23;5562:32;5559:52;;;5607:1;5604;5597:12;5559:52;5646:9;5633:23;5665:30;5689:5;5665:30;:::i;5730:249::-;5799:6;5852:2;5840:9;5831:7;5827:23;5823:32;5820:52;;;5868:1;5865;5858:12;5820:52;5900:9;5894:16;5919:30;5943:5;5919:30;:::i;5984:450::-;6053:6;6106:2;6094:9;6085:7;6081:23;6077:32;6074:52;;;6122:1;6119;6112:12;6074:52;6162:9;6149:23;6195:18;6187:6;6184:30;6181:50;;;6227:1;6224;6217:12;6181:50;6250:22;;6303:4;6295:13;;6291:27;-1:-1:-1;6281:55:1;;6332:1;6329;6322:12;6281:55;6355:73;6420:7;6415:2;6402:16;6397:2;6393;6389:11;6355:73;:::i;:::-;6345:83;5984:450;-1:-1:-1;;;;5984:450:1:o;6439:180::-;6498:6;6551:2;6539:9;6530:7;6526:23;6522:32;6519:52;;;6567:1;6564;6557:12;6519:52;-1:-1:-1;6590:23:1;;6439:180;-1:-1:-1;6439:180:1:o;6624:435::-;6677:3;6715:5;6709:12;6742:6;6737:3;6730:19;6768:4;6797:2;6792:3;6788:12;6781:19;;6834:2;6827:5;6823:14;6855:1;6865:169;6879:6;6876:1;6873:13;6865:169;;;6940:13;;6928:26;;6974:12;;;;7009:15;;;;6901:1;6894:9;6865:169;;;-1:-1:-1;7050:3:1;;6624:435;-1:-1:-1;;;;;6624:435:1:o;7064:471::-;7105:3;7143:5;7137:12;7170:6;7165:3;7158:19;7195:1;7205:162;7219:6;7216:1;7213:13;7205:162;;;7281:4;7337:13;;;7333:22;;7327:29;7309:11;;;7305:20;;7298:59;7234:12;7205:162;;;7385:6;7382:1;7379:13;7376:87;;;7451:1;7444:4;7435:6;7430:3;7426:16;7422:27;7415:38;7376:87;-1:-1:-1;7517:2:1;7496:15;-1:-1:-1;;7492:29:1;7483:39;;;;7524:4;7479:50;;7064:471;-1:-1:-1;;7064:471:1:o;7958:826::-;-1:-1:-1;;;;;8355:15:1;;;8337:34;;8407:15;;8402:2;8387:18;;8380:43;8317:3;8454:2;8439:18;;8432:31;;;8280:4;;8486:57;;8523:19;;8515:6;8486:57;:::i;:::-;8591:9;8583:6;8579:22;8574:2;8563:9;8559:18;8552:50;8625:44;8662:6;8654;8625:44;:::i;:::-;8611:58;;8718:9;8710:6;8706:22;8700:3;8689:9;8685:19;8678:51;8746:32;8771:6;8763;8746:32;:::i;:::-;8738:40;7958:826;-1:-1:-1;;;;;;;;7958:826:1:o;8789:560::-;-1:-1:-1;;;;;9086:15:1;;;9068:34;;9138:15;;9133:2;9118:18;;9111:43;9185:2;9170:18;;9163:34;;;9228:2;9213:18;;9206:34;;;9048:3;9271;9256:19;;9249:32;;;9011:4;;9298:45;;9323:19;;9315:6;9298:45;:::i;:::-;9290:53;8789:560;-1:-1:-1;;;;;;;8789:560:1:o;9354:261::-;9533:2;9522:9;9515:21;9496:4;9553:56;9605:2;9594:9;9590:18;9582:6;9553:56;:::i;9620:465::-;9877:2;9866:9;9859:21;9840:4;9903:56;9955:2;9944:9;9940:18;9932:6;9903:56;:::i;:::-;10007:9;9999:6;9995:22;9990:2;9979:9;9975:18;9968:50;10035:44;10072:6;10064;10035:44;:::i;:::-;10027:52;9620:465;-1:-1:-1;;;;;9620:465:1:o;10282:219::-;10431:2;10420:9;10413:21;10394:4;10451:44;10491:2;10480:9;10476:18;10468:6;10451:44;:::i;10927:404::-;11129:2;11111:21;;;11168:2;11148:18;;;11141:30;11207:34;11202:2;11187:18;;11180:62;-1:-1:-1;;;11273:2:1;11258:18;;11251:38;11321:3;11306:19;;10927:404::o;12919:401::-;13121:2;13103:21;;;13160:2;13140:18;;;13133:30;13199:34;13194:2;13179:18;;13172:62;-1:-1:-1;;;13265:2:1;13250:18;;13243:35;13310:3;13295:19;;12919:401::o;14160:406::-;14362:2;14344:21;;;14401:2;14381:18;;;14374:30;14440:34;14435:2;14420:18;;14413:62;-1:-1:-1;;;14506:2:1;14491:18;;14484:40;14556:3;14541:19;;14160:406::o;14571:356::-;14773:2;14755:21;;;14792:18;;;14785:30;14851:34;14846:2;14831:18;;14824:62;14918:2;14903:18;;14571:356::o;17702:183::-;17762:4;17795:18;17787:6;17784:30;17781:56;;;17817:18;;:::i;:::-;-1:-1:-1;17862:1:1;17858:14;17874:4;17854:25;;17702:183::o;17890:128::-;17930:3;17961:1;17957:6;17954:1;17951:13;17948:39;;;17967:18;;:::i;:::-;-1:-1:-1;18003:9:1;;17890:128::o;18023:168::-;18063:7;18129:1;18125;18121:6;18117:14;18114:1;18111:21;18106:1;18099:9;18092:17;18088:45;18085:71;;;18136:18;;:::i;:::-;-1:-1:-1;18176:9:1;;18023:168::o;18196:125::-;18236:4;18264:1;18261;18258:8;18255:34;;;18269:18;;:::i;:::-;-1:-1:-1;18306:9:1;;18196:125::o;18326:380::-;18405:1;18401:12;;;;18448;;;18469:61;;18523:4;18515:6;18511:17;18501:27;;18469:61;18576:2;18568:6;18565:14;18545:18;18542:38;18539:161;;;18622:10;18617:3;18613:20;18610:1;18603:31;18657:4;18654:1;18647:15;18685:4;18682:1;18675:15;18539:161;;18326:380;;;:::o;18711:249::-;18821:2;18802:13;;-1:-1:-1;;18798:27:1;18786:40;;18856:18;18841:34;;18877:22;;;18838:62;18835:88;;;18903:18;;:::i;:::-;18939:2;18932:22;-1:-1:-1;;18711:249:1:o;18965:135::-;19004:3;-1:-1:-1;;19025:17:1;;19022:43;;;19045:18;;:::i;:::-;-1:-1:-1;19092:1:1;19081:13;;18965:135::o;19105:127::-;19166:10;19161:3;19157:20;19154:1;19147:31;19197:4;19194:1;19187:15;19221:4;19218:1;19211:15;19237:127;19298:10;19293:3;19289:20;19286:1;19279:31;19329:4;19326:1;19319:15;19353:4;19350:1;19343:15;19369:127;19430:10;19425:3;19421:20;19418:1;19411:31;19461:4;19458:1;19451:15;19485:4;19482:1;19475:15;19501:179;19536:3;19578:1;19560:16;19557:23;19554:120;;;19624:1;19621;19618;19603:23;-1:-1:-1;19661:1:1;19655:8;19650:3;19646:18;19554:120;19501:179;:::o;19685:671::-;19724:3;19766:4;19748:16;19745:26;19742:39;;;19685:671;:::o;19742:39::-;19808:2;19802:9;-1:-1:-1;;19873:16:1;19869:25;;19866:1;19802:9;19845:50;19924:4;19918:11;19948:16;19983:18;20054:2;20047:4;20039:6;20035:17;20032:25;20027:2;20019:6;20016:14;20013:45;20010:58;;;20061:5;;;;;19685:671;:::o;20010:58::-;20098:6;20092:4;20088:17;20077:28;;20134:3;20128:10;20161:2;20153:6;20150:14;20147:27;;;20167:5;;;;;;19685:671;:::o;20147:27::-;20251:2;20232:16;20226:4;20222:27;20218:36;20211:4;20202:6;20197:3;20193:16;20189:27;20186:69;20183:82;;;20258:5;;;;;;19685:671;:::o;20183:82::-;20274:57;20325:4;20316:6;20308;20304:19;20300:30;20294:4;20274:57;:::i;:::-;-1:-1:-1;20347:3:1;;19685:671;-1:-1:-1;;;;;19685:671:1:o;20361:131::-;-1:-1:-1;;;;;;20435:32:1;;20425:43;;20415:71;;20482:1;20479;20472:12

Swarm Source

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