ETH Price: $2,625.44 (+1.09%)

Token

Titus Low NFT (TITUS)
 

Overview

Max Total Supply

0 TITUS

Holders

114

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
kickingchicken.eth
Balance
1 TITUS
0x5e74477362037b248f1d423b49c66b3dbb8ac8c2
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:
TitusLowNFT

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: contracts/tituslownft.sol


pragma solidity ^0.8.0;




contract TitusLowNFT is ERC721, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter public tokenSupply;

    string public baseURI;

    bool public mintIsActive = false;

    uint256 public maxSupply = 222;
    uint256 public mintPrice = 69000000000000000; // 0.069 ETH
    uint256 public maxMintPerTransaction = 5;

    string public _baseTokenURI;

    // constructor
    constructor(string memory _initialBaseUri) ERC721("Titus Low NFT", "TITUS") {
        setBaseURI(_initialBaseUri);
    }

    function setBaseURI(string memory newBaseURI) public onlyOwner {
        _baseTokenURI = newBaseURI;
    }

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

    function setMintCost(uint256 _newPrice) external onlyOwner() {
        mintPrice = _newPrice;
    }

    function setMaxMint(uint256 _maxMint) external onlyOwner() {
        maxMintPerTransaction = _maxMint;
    }

    function setMaxSupply(uint256 _maxSupply) external onlyOwner() {
        maxSupply = _maxSupply;
    }

    function flipMintState() external onlyOwner {
        mintIsActive = !mintIsActive;
    }

    function withdraw() external onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    // mint
    function devMint(uint256 numberOfTokens) public onlyOwner {
        uint256 supply = tokenSupply.current() + 1;
        for (uint256 i = 0; i < numberOfTokens; i++) {
            tokenSupply.increment();
            _safeMint(msg.sender, supply + i);
        }
    }

    function mint(uint256 numberOfTokens) external payable  {
        require(mintIsActive, "Mint is not active");
        require(numberOfTokens > 0, "Number of tokens can not be less than or equal to 0.");
        require(numberOfTokens <= maxMintPerTransaction, "Mint amount too large");
        require(mintPrice * numberOfTokens == msg.value, "Sent ETH value is incorrect.");
        require(tokenSupply.current() + numberOfTokens <= maxSupply, "Purchase would exceed max supply.");
        
        uint256 supply = tokenSupply.current() + 1; 
        for (uint256 i = 0; i < numberOfTokens; i++) {
            tokenSupply.increment();
            _safeMint(msg.sender, supply + i);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initialBaseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTransaction","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":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setMintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526009805460ff1916905560de600a5566f5232269808000600b556005600c553480156200003057600080fd5b50604051620021ff380380620021ff833981016040819052620000539162000274565b604080518082018252600d81526c151a5d1d5cc8131bddc8139195609a1b602080830191825283518085019094526005845264544954555360d81b908401528151919291620000a591600091620001b8565b508051620000bb906001906020840190620001b8565b505050620000d8620000d2620000ea60201b60201c565b620000ee565b620000e38162000140565b506200038d565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b031633146200019f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001b490600d906020840190620001b8565b5050565b828054620001c69062000350565b90600052602060002090601f016020900481019282620001ea576000855562000235565b82601f106200020557805160ff191683800117855562000235565b8280016001018555821562000235579182015b828111156200023557825182559160200191906001019062000218565b506200024392915062000247565b5090565b5b8082111562000243576000815560010162000248565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200028857600080fd5b82516001600160401b0380821115620002a057600080fd5b818501915085601f830112620002b557600080fd5b815181811115620002ca57620002ca6200025e565b604051601f8201601f19908116603f01168101908382118183101715620002f557620002f56200025e565b8160405282815288868487010111156200030e57600080fd5b600093505b8284101562000332578484018601518185018701529285019262000313565b82841115620003445760008684830101525b98975050505050505050565b600181811c908216806200036557607f821691505b602082108114156200038757634e487b7160e01b600052602260045260246000fd5b50919050565b611e62806200039d6000396000f3fe6080604052600436106101d85760003560e01c80636c0360eb11610102578063a0712d6811610095578063cfc86f7b11610064578063cfc86f7b14610513578063d5abeb0114610528578063e985e9c51461053e578063f2fde38b1461058757600080fd5b8063a0712d68146104a0578063a22cb465146104b3578063b88d4fde146104d3578063c87b56dd146104f357600080fd5b80637824407f116100d15780637824407f146104365780638545f4ea1461044d5780638da5cb5b1461046d57806395d89b411461048b57600080fd5b80636c0360eb146103cc5780636f8b44b0146103e157806370a0823114610401578063715018a61461042157600080fd5b80633ccfd60b1161017a57806355f804b31161014957806355f804b31461036157806359c74f29146103815780636352211e146103965780636817c76c146103b657600080fd5b80633ccfd60b146102f257806342842e0e14610307578063471a429414610327578063547520fe1461034157600080fd5b8063081812fc116101b6578063081812fc14610258578063095ea7b31461029057806323b872dd146102b2578063375a069a146102d257600080fd5b806301f56997146101dd57806301ffc9a71461020657806306fdde0314610236575b600080fd5b3480156101e957600080fd5b506101f3600c5481565b6040519081526020015b60405180910390f35b34801561021257600080fd5b506102266102213660046118bf565b6105a7565b60405190151581526020016101fd565b34801561024257600080fd5b5061024b6105f9565b6040516101fd9190611934565b34801561026457600080fd5b50610278610273366004611947565b61068b565b6040516001600160a01b0390911681526020016101fd565b34801561029c57600080fd5b506102b06102ab36600461197c565b610725565b005b3480156102be57600080fd5b506102b06102cd3660046119a6565b61083b565b3480156102de57600080fd5b506102b06102ed366004611947565b61086c565b3480156102fe57600080fd5b506102b06108ec565b34801561031357600080fd5b506102b06103223660046119a6565b610949565b34801561033357600080fd5b506009546102269060ff1681565b34801561034d57600080fd5b506102b061035c366004611947565b610964565b34801561036d57600080fd5b506102b061037c366004611a6e565b610993565b34801561038d57600080fd5b506102b06109d0565b3480156103a257600080fd5b506102786103b1366004611947565b610a0e565b3480156103c257600080fd5b506101f3600b5481565b3480156103d857600080fd5b5061024b610a85565b3480156103ed57600080fd5b506102b06103fc366004611947565b610b13565b34801561040d57600080fd5b506101f361041c366004611ab7565b610b42565b34801561042d57600080fd5b506102b0610bc9565b34801561044257600080fd5b506007546101f39081565b34801561045957600080fd5b506102b0610468366004611947565b610bff565b34801561047957600080fd5b506006546001600160a01b0316610278565b34801561049757600080fd5b5061024b610c2e565b6102b06104ae366004611947565b610c3d565b3480156104bf57600080fd5b506102b06104ce366004611ad2565b610e57565b3480156104df57600080fd5b506102b06104ee366004611b0e565b610e62565b3480156104ff57600080fd5b5061024b61050e366004611947565b610e9a565b34801561051f57600080fd5b5061024b610f75565b34801561053457600080fd5b506101f3600a5481565b34801561054a57600080fd5b50610226610559366004611b8a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561059357600080fd5b506102b06105a2366004611ab7565b610f82565b60006001600160e01b031982166380ac58cd60e01b14806105d857506001600160e01b03198216635b5e139f60e01b145b806105f357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461060890611bbd565b80601f016020809104026020016040519081016040528092919081815260200182805461063490611bbd565b80156106815780601f1061065657610100808354040283529160200191610681565b820191906000526020600020905b81548152906001019060200180831161066457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107095760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061073082610a0e565b9050806001600160a01b0316836001600160a01b0316141561079e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610700565b336001600160a01b03821614806107ba57506107ba8133610559565b61082c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610700565b610836838361101d565b505050565b610845338261108b565b6108615760405162461bcd60e51b815260040161070090611bf8565b610836838383611182565b6006546001600160a01b031633146108965760405162461bcd60e51b815260040161070090611c49565b60006108a160075490565b6108ac906001611c94565b905060005b82811015610836576108c7600780546001019055565b6108da336108d58385611c94565b611322565b806108e481611cac565b9150506108b1565b6006546001600160a01b031633146109165760405162461bcd60e51b815260040161070090611c49565b6040514790339082156108fc029083906000818181858888f19350505050158015610945573d6000803e3d6000fd5b5050565b61083683838360405180602001604052806000815250610e62565b6006546001600160a01b0316331461098e5760405162461bcd60e51b815260040161070090611c49565b600c55565b6006546001600160a01b031633146109bd5760405162461bcd60e51b815260040161070090611c49565b805161094590600d906020840190611810565b6006546001600160a01b031633146109fa5760405162461bcd60e51b815260040161070090611c49565b6009805460ff19811660ff90911615179055565b6000818152600260205260408120546001600160a01b0316806105f35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610700565b60088054610a9290611bbd565b80601f0160208091040260200160405190810160405280929190818152602001828054610abe90611bbd565b8015610b0b5780601f10610ae057610100808354040283529160200191610b0b565b820191906000526020600020905b815481529060010190602001808311610aee57829003601f168201915b505050505081565b6006546001600160a01b03163314610b3d5760405162461bcd60e51b815260040161070090611c49565b600a55565b60006001600160a01b038216610bad5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610700565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610bf35760405162461bcd60e51b815260040161070090611c49565b610bfd600061133c565b565b6006546001600160a01b03163314610c295760405162461bcd60e51b815260040161070090611c49565b600b55565b60606001805461060890611bbd565b60095460ff16610c845760405162461bcd60e51b81526020600482015260126024820152714d696e74206973206e6f742061637469766560701b6044820152606401610700565b60008111610cf15760405162461bcd60e51b815260206004820152603460248201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c657373604482015273103a3430b71037b91032b8bab0b6103a3790181760611b6064820152608401610700565b600c54811115610d3b5760405162461bcd60e51b81526020600482015260156024820152744d696e7420616d6f756e7420746f6f206c6172676560581b6044820152606401610700565b3481600b54610d4a9190611cc7565b14610d975760405162461bcd60e51b815260206004820152601c60248201527f53656e74204554482076616c756520697320696e636f72726563742e000000006044820152606401610700565b600a5481610da460075490565b610dae9190611c94565b1115610e065760405162461bcd60e51b815260206004820152602160248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152601760f91b6064820152608401610700565b6000610e1160075490565b610e1c906001611c94565b905060005b8281101561083657610e37600780546001019055565b610e45336108d58385611c94565b80610e4f81611cac565b915050610e21565b61094533838361138e565b610e6c338361108b565b610e885760405162461bcd60e51b815260040161070090611bf8565b610e948484848461145d565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f195760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610700565b6000610f23611490565b90506000815111610f435760405180602001604052806000815250610f6e565b80610f4d8461149f565b604051602001610f5e929190611ce6565b6040516020818303038152906040525b9392505050565b600d8054610a9290611bbd565b6006546001600160a01b03163314610fac5760405162461bcd60e51b815260040161070090611c49565b6001600160a01b0381166110115760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610700565b61101a8161133c565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061105282610a0e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111045760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610700565b600061110f83610a0e565b9050806001600160a01b0316846001600160a01b0316148061114a5750836001600160a01b031661113f8461068b565b6001600160a01b0316145b8061117a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661119582610a0e565b6001600160a01b0316146111fd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610700565b6001600160a01b03821661125f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610700565b61126a60008261101d565b6001600160a01b0383166000908152600360205260408120805460019290611293908490611d15565b90915550506001600160a01b03821660009081526003602052604081208054600192906112c1908490611c94565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61094582826040518060200160405280600081525061159d565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156113f05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610700565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611468848484611182565b611474848484846115d0565b610e945760405162461bcd60e51b815260040161070090611d2c565b6060600d805461060890611bbd565b6060816114c35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114ed57806114d781611cac565b91506114e69050600a83611d94565b91506114c7565b60008167ffffffffffffffff811115611508576115086119e2565b6040519080825280601f01601f191660200182016040528015611532576020820181803683370190505b5090505b841561117a57611547600183611d15565b9150611554600a86611da8565b61155f906030611c94565b60f81b81838151811061157457611574611dbc565b60200101906001600160f81b031916908160001a905350611596600a86611d94565b9450611536565b6115a783836116ce565b6115b460008484846115d0565b6108365760405162461bcd60e51b815260040161070090611d2c565b60006001600160a01b0384163b156116c357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611614903390899088908890600401611dd2565b6020604051808303816000875af192505050801561164f575060408051601f3d908101601f1916820190925261164c91810190611e0f565b60015b6116a9573d80801561167d576040519150601f19603f3d011682016040523d82523d6000602084013e611682565b606091505b5080516116a15760405162461bcd60e51b815260040161070090611d2c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061117a565b506001949350505050565b6001600160a01b0382166117245760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610700565b6000818152600260205260409020546001600160a01b0316156117895760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610700565b6001600160a01b03821660009081526003602052604081208054600192906117b2908490611c94565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461181c90611bbd565b90600052602060002090601f01602090048101928261183e5760008555611884565b82601f1061185757805160ff1916838001178555611884565b82800160010185558215611884579182015b82811115611884578251825591602001919060010190611869565b50611890929150611894565b5090565b5b808211156118905760008155600101611895565b6001600160e01b03198116811461101a57600080fd5b6000602082840312156118d157600080fd5b8135610f6e816118a9565b60005b838110156118f75781810151838201526020016118df565b83811115610e945750506000910152565b600081518084526119208160208601602086016118dc565b601f01601f19169290920160200192915050565b602081526000610f6e6020830184611908565b60006020828403121561195957600080fd5b5035919050565b80356001600160a01b038116811461197757600080fd5b919050565b6000806040838503121561198f57600080fd5b61199883611960565b946020939093013593505050565b6000806000606084860312156119bb57600080fd5b6119c484611960565b92506119d260208501611960565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a1357611a136119e2565b604051601f8501601f19908116603f01168101908282118183101715611a3b57611a3b6119e2565b81604052809350858152868686011115611a5457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a8057600080fd5b813567ffffffffffffffff811115611a9757600080fd5b8201601f81018413611aa857600080fd5b61117a848235602084016119f8565b600060208284031215611ac957600080fd5b610f6e82611960565b60008060408385031215611ae557600080fd5b611aee83611960565b915060208301358015158114611b0357600080fd5b809150509250929050565b60008060008060808587031215611b2457600080fd5b611b2d85611960565b9350611b3b60208601611960565b925060408501359150606085013567ffffffffffffffff811115611b5e57600080fd5b8501601f81018713611b6f57600080fd5b611b7e878235602084016119f8565b91505092959194509250565b60008060408385031215611b9d57600080fd5b611ba683611960565b9150611bb460208401611960565b90509250929050565b600181811c90821680611bd157607f821691505b60208210811415611bf257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611ca757611ca7611c7e565b500190565b6000600019821415611cc057611cc0611c7e565b5060010190565b6000816000190483118215151615611ce157611ce1611c7e565b500290565b60008351611cf88184602088016118dc565b835190830190611d0c8183602088016118dc565b01949350505050565b600082821015611d2757611d27611c7e565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611da357611da3611d7e565b500490565b600082611db757611db7611d7e565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e0590830184611908565b9695505050505050565b600060208284031215611e2157600080fd5b8151610f6e816118a956fea26469706673582212205677365d0062c5f18d9323dab962771c091a2b6da93c98c9c1dab9e6f915377d64736f6c634300080b003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5545654b326d5a443461785a5a416e6a66595534724172754b5866775269754a705961587141543577755a442f00000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636c0360eb11610102578063a0712d6811610095578063cfc86f7b11610064578063cfc86f7b14610513578063d5abeb0114610528578063e985e9c51461053e578063f2fde38b1461058757600080fd5b8063a0712d68146104a0578063a22cb465146104b3578063b88d4fde146104d3578063c87b56dd146104f357600080fd5b80637824407f116100d15780637824407f146104365780638545f4ea1461044d5780638da5cb5b1461046d57806395d89b411461048b57600080fd5b80636c0360eb146103cc5780636f8b44b0146103e157806370a0823114610401578063715018a61461042157600080fd5b80633ccfd60b1161017a57806355f804b31161014957806355f804b31461036157806359c74f29146103815780636352211e146103965780636817c76c146103b657600080fd5b80633ccfd60b146102f257806342842e0e14610307578063471a429414610327578063547520fe1461034157600080fd5b8063081812fc116101b6578063081812fc14610258578063095ea7b31461029057806323b872dd146102b2578063375a069a146102d257600080fd5b806301f56997146101dd57806301ffc9a71461020657806306fdde0314610236575b600080fd5b3480156101e957600080fd5b506101f3600c5481565b6040519081526020015b60405180910390f35b34801561021257600080fd5b506102266102213660046118bf565b6105a7565b60405190151581526020016101fd565b34801561024257600080fd5b5061024b6105f9565b6040516101fd9190611934565b34801561026457600080fd5b50610278610273366004611947565b61068b565b6040516001600160a01b0390911681526020016101fd565b34801561029c57600080fd5b506102b06102ab36600461197c565b610725565b005b3480156102be57600080fd5b506102b06102cd3660046119a6565b61083b565b3480156102de57600080fd5b506102b06102ed366004611947565b61086c565b3480156102fe57600080fd5b506102b06108ec565b34801561031357600080fd5b506102b06103223660046119a6565b610949565b34801561033357600080fd5b506009546102269060ff1681565b34801561034d57600080fd5b506102b061035c366004611947565b610964565b34801561036d57600080fd5b506102b061037c366004611a6e565b610993565b34801561038d57600080fd5b506102b06109d0565b3480156103a257600080fd5b506102786103b1366004611947565b610a0e565b3480156103c257600080fd5b506101f3600b5481565b3480156103d857600080fd5b5061024b610a85565b3480156103ed57600080fd5b506102b06103fc366004611947565b610b13565b34801561040d57600080fd5b506101f361041c366004611ab7565b610b42565b34801561042d57600080fd5b506102b0610bc9565b34801561044257600080fd5b506007546101f39081565b34801561045957600080fd5b506102b0610468366004611947565b610bff565b34801561047957600080fd5b506006546001600160a01b0316610278565b34801561049757600080fd5b5061024b610c2e565b6102b06104ae366004611947565b610c3d565b3480156104bf57600080fd5b506102b06104ce366004611ad2565b610e57565b3480156104df57600080fd5b506102b06104ee366004611b0e565b610e62565b3480156104ff57600080fd5b5061024b61050e366004611947565b610e9a565b34801561051f57600080fd5b5061024b610f75565b34801561053457600080fd5b506101f3600a5481565b34801561054a57600080fd5b50610226610559366004611b8a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561059357600080fd5b506102b06105a2366004611ab7565b610f82565b60006001600160e01b031982166380ac58cd60e01b14806105d857506001600160e01b03198216635b5e139f60e01b145b806105f357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461060890611bbd565b80601f016020809104026020016040519081016040528092919081815260200182805461063490611bbd565b80156106815780601f1061065657610100808354040283529160200191610681565b820191906000526020600020905b81548152906001019060200180831161066457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107095760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061073082610a0e565b9050806001600160a01b0316836001600160a01b0316141561079e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610700565b336001600160a01b03821614806107ba57506107ba8133610559565b61082c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610700565b610836838361101d565b505050565b610845338261108b565b6108615760405162461bcd60e51b815260040161070090611bf8565b610836838383611182565b6006546001600160a01b031633146108965760405162461bcd60e51b815260040161070090611c49565b60006108a160075490565b6108ac906001611c94565b905060005b82811015610836576108c7600780546001019055565b6108da336108d58385611c94565b611322565b806108e481611cac565b9150506108b1565b6006546001600160a01b031633146109165760405162461bcd60e51b815260040161070090611c49565b6040514790339082156108fc029083906000818181858888f19350505050158015610945573d6000803e3d6000fd5b5050565b61083683838360405180602001604052806000815250610e62565b6006546001600160a01b0316331461098e5760405162461bcd60e51b815260040161070090611c49565b600c55565b6006546001600160a01b031633146109bd5760405162461bcd60e51b815260040161070090611c49565b805161094590600d906020840190611810565b6006546001600160a01b031633146109fa5760405162461bcd60e51b815260040161070090611c49565b6009805460ff19811660ff90911615179055565b6000818152600260205260408120546001600160a01b0316806105f35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610700565b60088054610a9290611bbd565b80601f0160208091040260200160405190810160405280929190818152602001828054610abe90611bbd565b8015610b0b5780601f10610ae057610100808354040283529160200191610b0b565b820191906000526020600020905b815481529060010190602001808311610aee57829003601f168201915b505050505081565b6006546001600160a01b03163314610b3d5760405162461bcd60e51b815260040161070090611c49565b600a55565b60006001600160a01b038216610bad5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610700565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610bf35760405162461bcd60e51b815260040161070090611c49565b610bfd600061133c565b565b6006546001600160a01b03163314610c295760405162461bcd60e51b815260040161070090611c49565b600b55565b60606001805461060890611bbd565b60095460ff16610c845760405162461bcd60e51b81526020600482015260126024820152714d696e74206973206e6f742061637469766560701b6044820152606401610700565b60008111610cf15760405162461bcd60e51b815260206004820152603460248201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c657373604482015273103a3430b71037b91032b8bab0b6103a3790181760611b6064820152608401610700565b600c54811115610d3b5760405162461bcd60e51b81526020600482015260156024820152744d696e7420616d6f756e7420746f6f206c6172676560581b6044820152606401610700565b3481600b54610d4a9190611cc7565b14610d975760405162461bcd60e51b815260206004820152601c60248201527f53656e74204554482076616c756520697320696e636f72726563742e000000006044820152606401610700565b600a5481610da460075490565b610dae9190611c94565b1115610e065760405162461bcd60e51b815260206004820152602160248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152601760f91b6064820152608401610700565b6000610e1160075490565b610e1c906001611c94565b905060005b8281101561083657610e37600780546001019055565b610e45336108d58385611c94565b80610e4f81611cac565b915050610e21565b61094533838361138e565b610e6c338361108b565b610e885760405162461bcd60e51b815260040161070090611bf8565b610e948484848461145d565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f195760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610700565b6000610f23611490565b90506000815111610f435760405180602001604052806000815250610f6e565b80610f4d8461149f565b604051602001610f5e929190611ce6565b6040516020818303038152906040525b9392505050565b600d8054610a9290611bbd565b6006546001600160a01b03163314610fac5760405162461bcd60e51b815260040161070090611c49565b6001600160a01b0381166110115760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610700565b61101a8161133c565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061105282610a0e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111045760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610700565b600061110f83610a0e565b9050806001600160a01b0316846001600160a01b0316148061114a5750836001600160a01b031661113f8461068b565b6001600160a01b0316145b8061117a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661119582610a0e565b6001600160a01b0316146111fd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610700565b6001600160a01b03821661125f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610700565b61126a60008261101d565b6001600160a01b0383166000908152600360205260408120805460019290611293908490611d15565b90915550506001600160a01b03821660009081526003602052604081208054600192906112c1908490611c94565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61094582826040518060200160405280600081525061159d565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156113f05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610700565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611468848484611182565b611474848484846115d0565b610e945760405162461bcd60e51b815260040161070090611d2c565b6060600d805461060890611bbd565b6060816114c35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114ed57806114d781611cac565b91506114e69050600a83611d94565b91506114c7565b60008167ffffffffffffffff811115611508576115086119e2565b6040519080825280601f01601f191660200182016040528015611532576020820181803683370190505b5090505b841561117a57611547600183611d15565b9150611554600a86611da8565b61155f906030611c94565b60f81b81838151811061157457611574611dbc565b60200101906001600160f81b031916908160001a905350611596600a86611d94565b9450611536565b6115a783836116ce565b6115b460008484846115d0565b6108365760405162461bcd60e51b815260040161070090611d2c565b60006001600160a01b0384163b156116c357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611614903390899088908890600401611dd2565b6020604051808303816000875af192505050801561164f575060408051601f3d908101601f1916820190925261164c91810190611e0f565b60015b6116a9573d80801561167d576040519150601f19603f3d011682016040523d82523d6000602084013e611682565b606091505b5080516116a15760405162461bcd60e51b815260040161070090611d2c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061117a565b506001949350505050565b6001600160a01b0382166117245760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610700565b6000818152600260205260409020546001600160a01b0316156117895760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610700565b6001600160a01b03821660009081526003602052604081208054600192906117b2908490611c94565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461181c90611bbd565b90600052602060002090601f01602090048101928261183e5760008555611884565b82601f1061185757805160ff1916838001178555611884565b82800160010185558215611884579182015b82811115611884578251825591602001919060010190611869565b50611890929150611894565b5090565b5b808211156118905760008155600101611895565b6001600160e01b03198116811461101a57600080fd5b6000602082840312156118d157600080fd5b8135610f6e816118a9565b60005b838110156118f75781810151838201526020016118df565b83811115610e945750506000910152565b600081518084526119208160208601602086016118dc565b601f01601f19169290920160200192915050565b602081526000610f6e6020830184611908565b60006020828403121561195957600080fd5b5035919050565b80356001600160a01b038116811461197757600080fd5b919050565b6000806040838503121561198f57600080fd5b61199883611960565b946020939093013593505050565b6000806000606084860312156119bb57600080fd5b6119c484611960565b92506119d260208501611960565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a1357611a136119e2565b604051601f8501601f19908116603f01168101908282118183101715611a3b57611a3b6119e2565b81604052809350858152868686011115611a5457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a8057600080fd5b813567ffffffffffffffff811115611a9757600080fd5b8201601f81018413611aa857600080fd5b61117a848235602084016119f8565b600060208284031215611ac957600080fd5b610f6e82611960565b60008060408385031215611ae557600080fd5b611aee83611960565b915060208301358015158114611b0357600080fd5b809150509250929050565b60008060008060808587031215611b2457600080fd5b611b2d85611960565b9350611b3b60208601611960565b925060408501359150606085013567ffffffffffffffff811115611b5e57600080fd5b8501601f81018713611b6f57600080fd5b611b7e878235602084016119f8565b91505092959194509250565b60008060408385031215611b9d57600080fd5b611ba683611960565b9150611bb460208401611960565b90509250929050565b600181811c90821680611bd157607f821691505b60208210811415611bf257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611ca757611ca7611c7e565b500190565b6000600019821415611cc057611cc0611c7e565b5060010190565b6000816000190483118215151615611ce157611ce1611c7e565b500290565b60008351611cf88184602088016118dc565b835190830190611d0c8183602088016118dc565b01949350505050565b600082821015611d2757611d27611c7e565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611da357611da3611d7e565b500490565b600082611db757611db7611d7e565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e0590830184611908565b9695505050505050565b600060208284031215611e2157600080fd5b8151610f6e816118a956fea26469706673582212205677365d0062c5f18d9323dab962771c091a2b6da93c98c9c1dab9e6f915377d64736f6c634300080b0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5545654b326d5a443461785a5a416e6a66595534724172754b5866775269754a705961587141543577755a442f00000000000000000000

-----Decoded View---------------
Arg [0] : _initialBaseUri (string): ipfs://QmUEeK2mZD4axZZAnjfYU4rAruKXfwRiuJpYaXqAT5wuZD/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5545654b326d5a443461785a5a416e6a66595534724172
Arg [3] : 754b5866775269754a705961587141543577755a442f00000000000000000000


Deployed Bytecode Sourcemap

37720:2366:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38025:40;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;38025:40:0;;;;;;;;25207:305;;;;;;;;;;-1:-1:-1;25207:305:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;25207:305:0;582:187:1;26152:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27711:221::-;;;;;;;;;;-1:-1:-1;27711:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;27711:221:0;1710:203:1;27234:411:0;;;;;;;;;;-1:-1:-1;27234:411:0;;;;;:::i;:::-;;:::i;:::-;;28461:339;;;;;;;;;;-1:-1:-1;28461:339:0;;;;;:::i;:::-;;:::i;39091:272::-;;;;;;;;;;-1:-1:-1;39091:272:0;;;;;:::i;:::-;;:::i;38928:142::-;;;;;;;;;;;;;:::i;28871:185::-;;;;;;;;;;-1:-1:-1;28871:185:0;;;;;:::i;:::-;;:::i;37883:32::-;;;;;;;;;;-1:-1:-1;37883:32:0;;;;;;;;38599:110;;;;;;;;;;-1:-1:-1;38599:110:0;;;;;:::i;:::-;;:::i;38260:108::-;;;;;;;;;;-1:-1:-1;38260:108:0;;;;;:::i;:::-;;:::i;38829:91::-;;;;;;;;;;;;;:::i;25846:239::-;;;;;;;;;;-1:-1:-1;25846:239:0;;;;;:::i;:::-;;:::i;37961:44::-;;;;;;;;;;;;;;;;37853:21;;;;;;;;;;;;;:::i;38717:104::-;;;;;;;;;;-1:-1:-1;38717:104:0;;;;;:::i;:::-;;:::i;25576:208::-;;;;;;;;;;-1:-1:-1;25576:208:0;;;;;:::i;:::-;;:::i;6195:103::-;;;;;;;;;;;;;:::i;37809:35::-;;;;;;;;;;-1:-1:-1;37809:35:0;;;;;;38490:101;;;;;;;;;;-1:-1:-1;38490:101:0;;;;;:::i;:::-;;:::i;5544:87::-;;;;;;;;;;-1:-1:-1;5617:6:0;;-1:-1:-1;;;;;5617:6:0;5544:87;;26321:104;;;;;;;;;;;;;:::i;39371:712::-;;;;;;:::i;:::-;;:::i;28004:155::-;;;;;;;;;;-1:-1:-1;28004:155:0;;;;;:::i;:::-;;:::i;29127:328::-;;;;;;;;;;-1:-1:-1;29127:328:0;;;;;:::i;:::-;;:::i;26496:334::-;;;;;;;;;;-1:-1:-1;26496:334:0;;;;;:::i;:::-;;:::i;38074:27::-;;;;;;;;;;;;;:::i;37924:30::-;;;;;;;;;;;;;;;;28230:164;;;;;;;;;;-1:-1:-1;28230:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28351:25:0;;;28327:4;28351:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28230:164;6453:201;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;25207:305::-;25309:4;-1:-1:-1;;;;;;25346:40:0;;-1:-1:-1;;;25346:40:0;;:105;;-1:-1:-1;;;;;;;25403:48:0;;-1:-1:-1;;;25403:48:0;25346:105;:158;;;-1:-1:-1;;;;;;;;;;18085:40:0;;;25468:36;25326:178;25207:305;-1:-1:-1;;25207:305:0:o;26152:100::-;26206:13;26239:5;26232:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26152:100;:::o;27711:221::-;27787:7;31054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31054:16:0;27807:73;;;;-1:-1:-1;;;27807:73:0;;5980:2:1;27807:73:0;;;5962:21:1;6019:2;5999:18;;;5992:30;6058:34;6038:18;;;6031:62;-1:-1:-1;;;6109:18:1;;;6102:42;6161:19;;27807:73:0;;;;;;;;;-1:-1:-1;27900:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27900:24:0;;27711:221::o;27234:411::-;27315:13;27331:23;27346:7;27331:14;:23::i;:::-;27315:39;;27379:5;-1:-1:-1;;;;;27373:11:0;:2;-1:-1:-1;;;;;27373:11:0;;;27365:57;;;;-1:-1:-1;;;27365:57:0;;6393:2:1;27365:57:0;;;6375:21:1;6432:2;6412:18;;;6405:30;6471:34;6451:18;;;6444:62;-1:-1:-1;;;6522:18:1;;;6515:31;6563:19;;27365:57:0;6191:397:1;27365:57:0;4348:10;-1:-1:-1;;;;;27457:21:0;;;;:62;;-1:-1:-1;27482:37:0;27499:5;4348:10;28230:164;:::i;27482:37::-;27435:168;;;;-1:-1:-1;;;27435:168:0;;6795:2:1;27435:168:0;;;6777:21:1;6834:2;6814:18;;;6807:30;6873:34;6853:18;;;6846:62;6944:26;6924:18;;;6917:54;6988:19;;27435:168:0;6593:420:1;27435:168:0;27616:21;27625:2;27629:7;27616:8;:21::i;:::-;27304:341;27234:411;;:::o;28461:339::-;28656:41;4348:10;28689:7;28656:18;:41::i;:::-;28648:103;;;;-1:-1:-1;;;28648:103:0;;;;;;;:::i;:::-;28764:28;28774:4;28780:2;28784:7;28764:9;:28::i;39091:272::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;39160:14:::1;39177:21;:11;964:14:::0;;872:114;39177:21:::1;:25;::::0;39201:1:::1;39177:25;:::i;:::-;39160:42;;39218:9;39213:143;39237:14;39233:1;:18;39213:143;;;39273:23;:11;1083:19:::0;;1101:1;1083:19;;;994:127;39273:23:::1;39311:33;39321:10;39333;39342:1:::0;39333:6;:10:::1;:::i;:::-;39311:9;:33::i;:::-;39253:3:::0;::::1;::::0;::::1;:::i;:::-;;;;39213:143;;38928:142:::0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;39025:37:::1;::::0;38993:21:::1;::::0;39033:10:::1;::::0;39025:37;::::1;;;::::0;38993:21;;38978:12:::1;39025:37:::0;38978:12;39025:37;38993:21;39033:10;39025:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;38967:103;38928:142::o:0;28871:185::-;29009:39;29026:4;29032:2;29036:7;29009:39;;;;;;;;;;;;:16;:39::i;38599:110::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;38669:21:::1;:32:::0;38599:110::o;38260:108::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;38334:26;;::::1;::::0;:13:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;38829:91::-:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;38900:12:::1;::::0;;-1:-1:-1;;38884:28:0;::::1;38900:12;::::0;;::::1;38899:13;38884:28;::::0;;38829:91::o;25846:239::-;25918:7;25954:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25954:16:0;25989:19;25981:73;;;;-1:-1:-1;;;25981:73:0;;8404:2:1;25981:73:0;;;8386:21:1;8443:2;8423:18;;;8416:30;8482:34;8462:18;;;8455:62;-1:-1:-1;;;8533:18:1;;;8526:39;8582:19;;25981:73:0;8202:405:1;37853:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38717:104::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;38791:9:::1;:22:::0;38717:104::o;25576:208::-;25648:7;-1:-1:-1;;;;;25676:19:0;;25668:74;;;;-1:-1:-1;;;25668:74:0;;8814:2:1;25668:74:0;;;8796:21:1;8853:2;8833:18;;;8826:30;8892:34;8872:18;;;8865:62;-1:-1:-1;;;8943:18:1;;;8936:40;8993:19;;25668:74:0;8612:406:1;25668:74:0;-1:-1:-1;;;;;;25760:16:0;;;;;:9;:16;;;;;;;25576:208::o;6195:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;38490:101::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;38562:9:::1;:21:::0;38490:101::o;26321:104::-;26377:13;26410:7;26403:14;;;;;:::i;39371:712::-;39446:12;;;;39438:43;;;;-1:-1:-1;;;39438:43:0;;9225:2:1;39438:43:0;;;9207:21:1;9264:2;9244:18;;;9237:30;-1:-1:-1;;;9283:18:1;;;9276:48;9341:18;;39438:43:0;9023:342:1;39438:43:0;39517:1;39500:14;:18;39492:83;;;;-1:-1:-1;;;39492:83:0;;9572:2:1;39492:83:0;;;9554:21:1;9611:2;9591:18;;;9584:30;9650:34;9630:18;;;9623:62;-1:-1:-1;;;9701:18:1;;;9694:50;9761:19;;39492:83:0;9370:416:1;39492:83:0;39612:21;;39594:14;:39;;39586:73;;;;-1:-1:-1;;;39586:73:0;;9993:2:1;39586:73:0;;;9975:21:1;10032:2;10012:18;;;10005:30;-1:-1:-1;;;10051:18:1;;;10044:51;10112:18;;39586:73:0;9791:345:1;39586:73:0;39708:9;39690:14;39678:9;;:26;;;;:::i;:::-;:39;39670:80;;;;-1:-1:-1;;;39670:80:0;;10516:2:1;39670:80:0;;;10498:21:1;10555:2;10535:18;;;10528:30;10594;10574:18;;;10567:58;10642:18;;39670:80:0;10314:352:1;39670:80:0;39811:9;;39793:14;39769:21;:11;964:14;;872:114;39769:21;:38;;;;:::i;:::-;:51;;39761:97;;;;-1:-1:-1;;;39761:97:0;;10873:2:1;39761:97:0;;;10855:21:1;10912:2;10892:18;;;10885:30;10951:34;10931:18;;;10924:62;-1:-1:-1;;;11002:18:1;;;10995:31;11043:19;;39761:97:0;10671:397:1;39761:97:0;39879:14;39896:21;:11;964:14;;872:114;39896:21;:25;;39920:1;39896:25;:::i;:::-;39879:42;;39938:9;39933:143;39957:14;39953:1;:18;39933:143;;;39993:23;:11;1083:19;;1101:1;1083:19;;;994:127;39993:23;40031:33;40041:10;40053;40062:1;40053:6;:10;:::i;40031:33::-;39973:3;;;;:::i;:::-;;;;39933:143;;28004:155;28099:52;4348:10;28132:8;28142;28099:18;:52::i;29127:328::-;29302:41;4348:10;29335:7;29302:18;:41::i;:::-;29294:103;;;;-1:-1:-1;;;29294:103:0;;;;;;;:::i;:::-;29408:39;29422:4;29428:2;29432:7;29441:5;29408:13;:39::i;:::-;29127:328;;;;:::o;26496:334::-;31030:4;31054:16;;;:7;:16;;;;;;26569:13;;-1:-1:-1;;;;;31054:16:0;26595:76;;;;-1:-1:-1;;;26595:76:0;;11275:2:1;26595:76:0;;;11257:21:1;11314:2;11294:18;;;11287:30;11353:34;11333:18;;;11326:62;-1:-1:-1;;;11404:18:1;;;11397:45;11459:19;;26595:76:0;11073:411:1;26595:76:0;26684:21;26708:10;:8;:10::i;:::-;26684:34;;26760:1;26742:7;26736:21;:25;:86;;;;;;;;;;;;;;;;;26788:7;26797:18;:7;:16;:18::i;:::-;26771:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26736:86;26729:93;26496:334;-1:-1:-1;;;26496:334:0:o;38074:27::-;;;;;;;:::i;6453:201::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;12166:2:1;6534:73:0::1;::::0;::::1;12148:21:1::0;12205:2;12185:18;;;12178:30;12244:34;12224:18;;;12217:62;-1:-1:-1;;;12295:18:1;;;12288:36;12341:19;;6534:73:0::1;11964:402:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;:::-;6453:201:::0;:::o;34947:174::-;35022:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35022:29:0;-1:-1:-1;;;;;35022:29:0;;;;;;;;:24;;35076:23;35022:24;35076:14;:23::i;:::-;-1:-1:-1;;;;;35067:46:0;;;;;;;;;;;34947:174;;:::o;31259:348::-;31352:4;31054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31054:16:0;31369:73;;;;-1:-1:-1;;;31369:73:0;;12573:2:1;31369:73:0;;;12555:21:1;12612:2;12592:18;;;12585:30;12651:34;12631:18;;;12624:62;-1:-1:-1;;;12702:18:1;;;12695:42;12754:19;;31369:73:0;12371:408:1;31369:73:0;31453:13;31469:23;31484:7;31469:14;:23::i;:::-;31453:39;;31522:5;-1:-1:-1;;;;;31511:16:0;:7;-1:-1:-1;;;;;31511:16:0;;:51;;;;31555:7;-1:-1:-1;;;;;31531:31:0;:20;31543:7;31531:11;:20::i;:::-;-1:-1:-1;;;;;31531:31:0;;31511:51;:87;;;-1:-1:-1;;;;;;28351:25:0;;;28327:4;28351:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31566:32;31503:96;31259:348;-1:-1:-1;;;;31259:348:0:o;34251:578::-;34410:4;-1:-1:-1;;;;;34383:31:0;:23;34398:7;34383:14;:23::i;:::-;-1:-1:-1;;;;;34383:31:0;;34375:85;;;;-1:-1:-1;;;34375:85:0;;12986:2:1;34375:85:0;;;12968:21:1;13025:2;13005:18;;;12998:30;13064:34;13044:18;;;13037:62;-1:-1:-1;;;13115:18:1;;;13108:39;13164:19;;34375:85:0;12784:405:1;34375:85:0;-1:-1:-1;;;;;34479:16:0;;34471:65;;;;-1:-1:-1;;;34471:65:0;;13396:2:1;34471:65:0;;;13378:21:1;13435:2;13415:18;;;13408:30;13474:34;13454:18;;;13447:62;-1:-1:-1;;;13525:18:1;;;13518:34;13569:19;;34471:65:0;13194:400:1;34471:65:0;34653:29;34670:1;34674:7;34653:8;:29::i;:::-;-1:-1:-1;;;;;34695:15:0;;;;;;:9;:15;;;;;:20;;34714:1;;34695:15;:20;;34714:1;;34695:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34726:13:0;;;;;;:9;:13;;;;;:18;;34743:1;;34726:13;:18;;34743:1;;34726:18;:::i;:::-;;;;-1:-1:-1;;34755:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34755:21:0;-1:-1:-1;;;;;34755:21:0;;;;;;;;;34794:27;;34755:16;;34794:27;;;;;;;34251:578;;;:::o;31949:110::-;32025:26;32035:2;32039:7;32025:26;;;;;;;;;;;;:9;:26::i;6814:191::-;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;;;;;6924:17:0;;;;;;;6957:40;;6907:6;;;6924:17;6907:6;;6957:40;;6888:16;;6957:40;6877:128;6814:191;:::o;35263:315::-;35418:8;-1:-1:-1;;;;;35409:17:0;:5;-1:-1:-1;;;;;35409:17:0;;;35401:55;;;;-1:-1:-1;;;35401:55:0;;13931:2:1;35401:55:0;;;13913:21:1;13970:2;13950:18;;;13943:30;14009:27;13989:18;;;13982:55;14054:18;;35401:55:0;13729:349:1;35401:55:0;-1:-1:-1;;;;;35467:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35467:46:0;;;;;;;;;;35529:41;;722::1;;;35529::0;;695:18:1;35529:41:0;;;;;;;35263:315;;;:::o;30337:::-;30494:28;30504:4;30510:2;30514:7;30494:9;:28::i;:::-;30541:48;30564:4;30570:2;30574:7;30583:5;30541:22;:48::i;:::-;30533:111;;;;-1:-1:-1;;;30533:111:0;;;;;;;:::i;38376:106::-;38428:13;38461;38454:20;;;;;:::i;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;;2134:10:0;;;;;;;;;;;;-1:-1:-1;;;2134:10:0;;;;;1830:723::o;2103:53::-;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2420:56:0;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;32286:321;32416:18;32422:2;32426:7;32416:5;:18::i;:::-;32467:54;32498:1;32502:2;32506:7;32515:5;32467:22;:54::i;:::-;32445:154;;;;-1:-1:-1;;;32445:154:0;;;;;;;:::i;36143:799::-;36298:4;-1:-1:-1;;;;;36319:13:0;;8155:20;8203:8;36315:620;;36355:72;;-1:-1:-1;;;36355:72:0;;-1:-1:-1;;;;;36355:36:0;;;;;:72;;4348:10;;36406:4;;36412:7;;36421:5;;36355:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36355:72:0;;;;;;;;-1:-1:-1;;36355:72:0;;;;;;;;;;;;:::i;:::-;;;36351:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36597:13:0;;36593:272;;36640:60;;-1:-1:-1;;;36640:60:0;;;;;;;:::i;36593:272::-;36815:6;36809:13;36800:6;36796:2;36792:15;36785:38;36351:529;-1:-1:-1;;;;;;36478:51:0;-1:-1:-1;;;36478:51:0;;-1:-1:-1;36471:58:0;;36315:620;-1:-1:-1;36919:4:0;36143:799;;;;;;:::o;32943:382::-;-1:-1:-1;;;;;33023:16:0;;33015:61;;;;-1:-1:-1;;;33015:61:0;;15958:2:1;33015:61:0;;;15940:21:1;;;15977:18;;;15970:30;16036:34;16016:18;;;16009:62;16088:18;;33015:61:0;15756:356:1;33015:61:0;31030:4;31054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31054:16:0;:30;33087:58;;;;-1:-1:-1;;;33087:58:0;;16319:2:1;33087:58:0;;;16301:21:1;16358:2;16338:18;;;16331:30;16397;16377:18;;;16370:58;16445:18;;33087:58:0;16117:352:1;33087:58:0;-1:-1:-1;;;;;33216:13:0;;;;;;:9;:13;;;;;:18;;33233:1;;33216:13;:18;;33233:1;;33216:18;:::i;:::-;;;;-1:-1:-1;;33245:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33245:21:0;-1:-1:-1;;;;;33245:21:0;;;;;;;;33284:33;;33245:16;;;33284:33;;33245:16;;33284:33;32943:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;7018:413::-;7220:2;7202:21;;;7259:2;7239:18;;;7232:30;7298:34;7293:2;7278:18;;7271:62;-1:-1:-1;;;7364:2:1;7349:18;;7342:47;7421:3;7406:19;;7018:413::o;7436:356::-;7638:2;7620:21;;;7657:18;;;7650:30;7716:34;7711:2;7696:18;;7689:62;7783:2;7768:18;;7436:356::o;7797:127::-;7858:10;7853:3;7849:20;7846:1;7839:31;7889:4;7886:1;7879:15;7913:4;7910:1;7903:15;7929:128;7969:3;8000:1;7996:6;7993:1;7990:13;7987:39;;;8006:18;;:::i;:::-;-1:-1:-1;8042:9:1;;7929:128::o;8062:135::-;8101:3;-1:-1:-1;;8122:17:1;;8119:43;;;8142:18;;:::i;:::-;-1:-1:-1;8189:1:1;8178:13;;8062:135::o;10141:168::-;10181:7;10247:1;10243;10239:6;10235:14;10232:1;10229:21;10224:1;10217:9;10210:17;10206:45;10203:71;;;10254:18;;:::i;:::-;-1:-1:-1;10294:9:1;;10141:168::o;11489:470::-;11668:3;11706:6;11700:13;11722:53;11768:6;11763:3;11756:4;11748:6;11744:17;11722:53;:::i;:::-;11838:13;;11797:16;;;;11860:57;11838:13;11797:16;11894:4;11882:17;;11860:57;:::i;:::-;11933:20;;11489:470;-1:-1:-1;;;;11489:470:1:o;13599:125::-;13639:4;13667:1;13664;13661:8;13658:34;;;13672:18;;:::i;:::-;-1:-1:-1;13709:9:1;;13599:125::o;14083:414::-;14285:2;14267:21;;;14324:2;14304:18;;;14297:30;14363:34;14358:2;14343:18;;14336:62;-1:-1:-1;;;14429:2:1;14414:18;;14407:48;14487:3;14472:19;;14083:414::o;14502:127::-;14563:10;14558:3;14554:20;14551:1;14544:31;14594:4;14591:1;14584:15;14618:4;14615:1;14608:15;14634:120;14674:1;14700;14690:35;;14705:18;;:::i;:::-;-1:-1:-1;14739:9:1;;14634:120::o;14759:112::-;14791:1;14817;14807:35;;14822:18;;:::i;:::-;-1:-1:-1;14856:9:1;;14759:112::o;14876:127::-;14937:10;14932:3;14928:20;14925:1;14918:31;14968:4;14965:1;14958:15;14992:4;14989:1;14982:15;15008:489;-1:-1:-1;;;;;15277:15:1;;;15259:34;;15329:15;;15324:2;15309:18;;15302:43;15376:2;15361:18;;15354:34;;;15424:3;15419:2;15404:18;;15397:31;;;15202:4;;15445:46;;15471:19;;15463:6;15445:46;:::i;:::-;15437:54;15008:489;-1:-1:-1;;;;;;15008:489:1:o;15502:249::-;15571:6;15624:2;15612:9;15603:7;15599:23;15595:32;15592:52;;;15640:1;15637;15630:12;15592:52;15672:9;15666:16;15691:30;15715:5;15691:30;:::i

Swarm Source

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