Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
3,456 0xDoodles
Holders
248
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
8 0xDoodlesLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OxDoodles
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-08 */ // SPDX-License-Identifier: MIT // 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 (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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 override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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 { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: Ownable.sol pragma solidity >=0.7.0 <0.9.0; contract OxDoodles is ERC721A, Ownable { using Strings for uint256; string baseURI; string notRevURI; string public baseExtension = ".json"; uint256 public cost = 0.01 ether; uint256 public maxSupply = 10000; uint256 public maxMintAmount = 10; uint256 public freeAmount = 1000; bool public paused = false; bool public revealed = false; mapping(address => uint256) nftPerWallet; constructor( string memory _initBaseURI, string memory _initNotRevURI ) ERC721A("0xDoodles", "0xDoodles") { setBaseURI(_initBaseURI); notRevURI = _initNotRevURI; } modifier checks(uint256 _mintAmount) { require(!paused); require(_mintAmount > 0); require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!"); require(nftPerWallet[msg.sender] < 20, "You can't posses more than 20"); if(totalSupply() >= freeAmount){ if(msg.sender != owner()) require(msg.value >= cost * _mintAmount, "Insufficient funds!"); nftPerWallet[msg.sender]++; } else require(totalSupply() + _mintAmount <= freeAmount, "Free NFTs amount exceeded"); require(_mintAmount <= maxMintAmount, "Max mint amount exceeded"); _; } function mint(uint256 _mintAmount) public payable checks(_mintAmount) { _safeMint(msg.sender, _mintAmount); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(!revealed){ return notRevURI; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function reveal() public onlyOwner { revealed = true; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause() public onlyOwner { paused = !paused; } function withdraw() public payable onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600b9190620001df565b50662386f26fc10000600c55612710600d55600a600e556103e8600f556010805461ffff191690553480156200005d57600080fd5b50604051620023893803806200238983398101604081905262000080916200033c565b6040805180820182526009808252683078446f6f646c657360b81b602080840182815285518087019096529285528401528151919291620000c491600291620001df565b508051620000da906003906020840190620001df565b50506000805550620000ec3362000115565b620000f78262000167565b80516200010c90600a906020840190620001df565b505050620003f9565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001db906009906020840190620001df565b5050565b828054620001ed90620003a6565b90600052602060002090601f0160209004810192826200021157600085556200025c565b82601f106200022c57805160ff19168380011785556200025c565b828001600101855582156200025c579182015b828111156200025c5782518255916020019190600101906200023f565b506200026a9291506200026e565b5090565b5b808211156200026a57600081556001016200026f565b600082601f8301126200029757600080fd5b81516001600160401b0380821115620002b457620002b4620003e3565b604051601f8301601f19908116603f01168101908282118183101715620002df57620002df620003e3565b81604052838152602092508683858801011115620002fc57600080fd5b600091505b8382101562000320578582018301518183018401529082019062000301565b83821115620003325760008385830101525b9695505050505050565b600080604083850312156200035057600080fd5b82516001600160401b03808211156200036857600080fd5b620003768683870162000285565b935060208501519150808211156200038d57600080fd5b506200039c8582860162000285565b9150509250929050565b600181811c90821680620003bb57607f821691505b60208210811415620003dd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611f8080620004096000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063a475b5dd11610095578063d5abeb0111610064578063d5abeb011461051d578063da3ef23f14610533578063e985e9c514610553578063f2fde38b1461059c57600080fd5b8063a475b5dd146104b3578063b88d4fde146104c8578063c6682862146104e8578063c87b56dd146104fd57600080fd5b80638da5cb5b116100d15780638da5cb5b1461044d57806395d89b411461046b578063a0712d6814610480578063a22cb4651461049357600080fd5b806370a08231146103e3578063715018a6146104035780637f00c7a6146104185780638456cb591461043857600080fd5b806323b872dd1161017a5780635183022711610149578063518302271461036a57806355f804b3146103895780635c975abb146103a95780636352211e146103c357600080fd5b806323b872dd146103025780633ccfd60b1461032257806342842e0e1461032a57806344a0d68a1461034a57600080fd5b8063095ea7b3116101b6578063095ea7b31461029b57806313faede6146102bd57806318160ddd146102d3578063239c70ae146102ec57600080fd5b806301ffc9a7146101e85780630451a9f11461021d57806306fdde0314610241578063081812fc14610263575b600080fd5b3480156101f457600080fd5b50610208610203366004611be9565b6105bc565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610233600f5481565b604051908152602001610214565b34801561024d57600080fd5b5061025661060e565b6040516102149190611db1565b34801561026f57600080fd5b5061028361027e366004611c6c565b6106a0565b6040516001600160a01b039091168152602001610214565b3480156102a757600080fd5b506102bb6102b6366004611bbf565b6106e4565b005b3480156102c957600080fd5b50610233600c5481565b3480156102df57600080fd5b5060015460005403610233565b3480156102f857600080fd5b50610233600e5481565b34801561030e57600080fd5b506102bb61031d366004611acb565b610772565b6102bb61077d565b34801561033657600080fd5b506102bb610345366004611acb565b61083e565b34801561035657600080fd5b506102bb610365366004611c6c565b610859565b34801561037657600080fd5b5060105461020890610100900460ff1681565b34801561039557600080fd5b506102bb6103a4366004611c23565b6108a6565b3480156103b557600080fd5b506010546102089060ff1681565b3480156103cf57600080fd5b506102836103de366004611c6c565b610905565b3480156103ef57600080fd5b506102336103fe366004611a7d565b610917565b34801561040f57600080fd5b506102bb610966565b34801561042457600080fd5b506102bb610433366004611c6c565b6109ba565b34801561044457600080fd5b506102bb610a07565b34801561045957600080fd5b506008546001600160a01b0316610283565b34801561047757600080fd5b50610256610a63565b6102bb61048e366004611c6c565b610a72565b34801561049f57600080fd5b506102bb6104ae366004611b83565b610cc1565b3480156104bf57600080fd5b506102bb610d57565b3480156104d457600080fd5b506102bb6104e3366004611b07565b610db0565b3480156104f457600080fd5b50610256610e01565b34801561050957600080fd5b50610256610518366004611c6c565b610e8f565b34801561052957600080fd5b50610233600d5481565b34801561053f57600080fd5b506102bb61054e366004611c23565b61100c565b34801561055f57600080fd5b5061020861056e366004611a98565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105a857600080fd5b506102bb6105b7366004611a7d565b611067565b60006001600160e01b031982166380ac58cd60e01b14806105ed57506001600160e01b03198216635b5e139f60e01b145b8061060857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461061d90611e52565b80601f016020809104026020016040519081016040528092919081815260200182805461064990611e52565b80156106965780601f1061066b57610100808354040283529160200191610696565b820191906000526020600020905b81548152906001019060200180831161067957829003601f168201915b5050505050905090565b60006106ab8261111d565b6106c8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106ef82610905565b9050806001600160a01b0316836001600160a01b031614156107245760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107445750610742813361056e565b155b15610762576040516367d9dca160e11b815260040160405180910390fd5b61076d838383611148565b505050565b61076d8383836111b1565b6008546001600160a01b031633146107ca5760405162461bcd60e51b81526020600482018190526024820152600080516020611f2b83398151915260448201526064015b60405180910390fd5b60006107de6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610828576040519150601f19603f3d011682016040523d82523d6000602084013e61082d565b606091505b505090508061083b57600080fd5b50565b61076d83838360405180602001604052806000815250610db0565b6008546001600160a01b031633146108a15760405162461bcd60e51b81526020600482018190526024820152600080516020611f2b83398151915260448201526064016107c1565b600c55565b6008546001600160a01b031633146108ee5760405162461bcd60e51b81526020600482018190526024820152600080516020611f2b83398151915260448201526064016107c1565b8051610901906009906020840190611952565b5050565b6000610910826113c7565b5192915050565b60006001600160a01b038216610940576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109ae5760405162461bcd60e51b81526020600482018190526024820152600080516020611f2b83398151915260448201526064016107c1565b6109b860006114e3565b565b6008546001600160a01b03163314610a025760405162461bcd60e51b81526020600482018190526024820152600080516020611f2b83398151915260448201526064016107c1565b600e55565b6008546001600160a01b03163314610a4f5760405162461bcd60e51b81526020600482018190526024820152600080516020611f2b83398151915260448201526064016107c1565b6010805460ff19811660ff90911615179055565b60606003805461061d90611e52565b601054819060ff1615610a8457600080fd5b60008111610a9157600080fd5b600d5481610aa26001546000540390565b610aac9190611dc4565b1115610afa5760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c792065786365656465642100000000000000000000000060448201526064016107c1565b33600090815260116020526040902054601411610b595760405162461bcd60e51b815260206004820152601d60248201527f596f752063616e277420706f73736573206d6f7265207468616e20323000000060448201526064016107c1565b600f546001546000540310610bfc576008546001600160a01b03163314610bd75780600c54610b889190611df0565b341015610bd75760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e6473210000000000000000000000000060448201526064016107c1565b336000908152601160205260408120805491610bf283611e8d565b9190505550610c65565b600f5481610c0d6001546000540390565b610c179190611dc4565b1115610c655760405162461bcd60e51b815260206004820152601960248201527f46726565204e46547320616d6f756e742065786365656465640000000000000060448201526064016107c1565b600e54811115610cb75760405162461bcd60e51b815260206004820152601860248201527f4d6178206d696e7420616d6f756e74206578636565646564000000000000000060448201526064016107c1565b6109013383611542565b6001600160a01b038216331415610ceb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610d9f5760405162461bcd60e51b81526020600482018190526024820152600080516020611f2b83398151915260448201526064016107c1565b6010805461ff001916610100179055565b610dbb8484846111b1565b6001600160a01b0383163b15158015610ddd5750610ddb8484848461155c565b155b15610dfb576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600b8054610e0e90611e52565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3a90611e52565b8015610e875780601f10610e5c57610100808354040283529160200191610e87565b820191906000526020600020905b815481529060010190602001808311610e6a57829003601f168201915b505050505081565b6060610e9a8261111d565b610f0c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016107c1565b601054610100900460ff16610fad57600a8054610f2890611e52565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5490611e52565b8015610fa15780601f10610f7657610100808354040283529160200191610fa1565b820191906000526020600020905b815481529060010190602001808311610f8457829003601f168201915b50505050509050919050565b6000610fb7611654565b90506000815111610fd75760405180602001604052806000815250611005565b80610fe184611663565b600b604051602001610ff593929190611cb1565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146110545760405162461bcd60e51b81526020600482018190526024820152600080516020611f2b83398151915260448201526064016107c1565b805161090190600b906020840190611952565b6008546001600160a01b031633146110af5760405162461bcd60e51b81526020600482018190526024820152600080516020611f2b83398151915260448201526064016107c1565b6001600160a01b0381166111145760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c1565b61083b816114e3565b6000805482108015610608575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111bc826113c7565b80519091506000906001600160a01b0316336001600160a01b031614806111ea575081516111ea903361056e565b806112055750336111fa846106a0565b6001600160a01b0316145b90508061122557604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461125a5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661128157604051633a954ecd60e21b815260040160405180910390fd5b6112916000848460000151611148565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661137d5760005481101561137d578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156114ca57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114c85780516001600160a01b03161561145e579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156114c3579392505050565b61145e565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610901828260405180602001604052806000815250611779565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611591903390899088908890600401611d75565b602060405180830381600087803b1580156115ab57600080fd5b505af19250505080156115db575060408051601f3d908101601f191682019092526115d891810190611c06565b60015b611636573d808015611609576040519150601f19603f3d011682016040523d82523d6000602084013e61160e565b606091505b50805161162e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461061d90611e52565b6060816116875750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116b1578061169b81611e8d565b91506116aa9050600a83611ddc565b915061168b565b60008167ffffffffffffffff8111156116cc576116cc611efe565b6040519080825280601f01601f1916602001820160405280156116f6576020820181803683370190505b5090505b841561164c5761170b600183611e0f565b9150611718600a86611ea8565b611723906030611dc4565b60f81b81838151811061173857611738611ee8565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611772600a86611ddc565b94506116fa565b61076d83838360016000546001600160a01b0385166117aa57604051622e076360e81b815260040160405180910390fd5b836117c85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561187a57506001600160a01b0387163b15155b15611903575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118cb600088848060010195508861155c565b6118e8576040516368d2bf6b60e11b815260040160405180910390fd5b808214156118805782600054146118fe57600080fd5b611949565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611904575b506000556113c0565b82805461195e90611e52565b90600052602060002090601f01602090048101928261198057600085556119c6565b82601f1061199957805160ff19168380011785556119c6565b828001600101855582156119c6579182015b828111156119c65782518255916020019190600101906119ab565b506119d29291506119d6565b5090565b5b808211156119d257600081556001016119d7565b600067ffffffffffffffff80841115611a0657611a06611efe565b604051601f8501601f19908116603f01168101908282118183101715611a2e57611a2e611efe565b81604052809350858152868686011115611a4757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a7857600080fd5b919050565b600060208284031215611a8f57600080fd5b61100582611a61565b60008060408385031215611aab57600080fd5b611ab483611a61565b9150611ac260208401611a61565b90509250929050565b600080600060608486031215611ae057600080fd5b611ae984611a61565b9250611af760208501611a61565b9150604084013590509250925092565b60008060008060808587031215611b1d57600080fd5b611b2685611a61565b9350611b3460208601611a61565b925060408501359150606085013567ffffffffffffffff811115611b5757600080fd5b8501601f81018713611b6857600080fd5b611b77878235602084016119eb565b91505092959194509250565b60008060408385031215611b9657600080fd5b611b9f83611a61565b915060208301358015158114611bb457600080fd5b809150509250929050565b60008060408385031215611bd257600080fd5b611bdb83611a61565b946020939093013593505050565b600060208284031215611bfb57600080fd5b813561100581611f14565b600060208284031215611c1857600080fd5b815161100581611f14565b600060208284031215611c3557600080fd5b813567ffffffffffffffff811115611c4c57600080fd5b8201601f81018413611c5d57600080fd5b61164c848235602084016119eb565b600060208284031215611c7e57600080fd5b5035919050565b60008151808452611c9d816020860160208601611e26565b601f01601f19169290920160200192915050565b600084516020611cc48285838a01611e26565b855191840191611cd78184848a01611e26565b8554920191600090600181811c9080831680611cf457607f831692505b858310811415611d1257634e487b7160e01b85526022600452602485fd5b808015611d265760018114611d3757611d64565b60ff19851688528388019550611d64565b60008b81526020902060005b85811015611d5c5781548a820152908401908801611d43565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611da76080830184611c85565b9695505050505050565b6020815260006110056020830184611c85565b60008219821115611dd757611dd7611ebc565b500190565b600082611deb57611deb611ed2565b500490565b6000816000190483118215151615611e0a57611e0a611ebc565b500290565b600082821015611e2157611e21611ebc565b500390565b60005b83811015611e41578181015183820152602001611e29565b83811115610dfb5750506000910152565b600181811c90821680611e6657607f821691505b60208210811415611e8757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ea157611ea1611ebc565b5060010190565b600082611eb757611eb7611ed2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461083b57600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220c152eebce9332b90405f9dee92bef2c7aac09d553856f50d394fca1aa379d6f464736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d63586d374b6b77784a7471774465723372436e79727670424437734e4b72774d70374b503747436f6a3972612f000000000000000000000000000000000000000000000000000000000000000000000000000000000044697066733a2f2f516d597642645041706f626433704548547364724247354a69456d5a775143366f563348396f75724378786e7a4d2f3078646f6f646c65732e6a736f6e00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101e35760003560e01c806370a0823111610102578063a475b5dd11610095578063d5abeb0111610064578063d5abeb011461051d578063da3ef23f14610533578063e985e9c514610553578063f2fde38b1461059c57600080fd5b8063a475b5dd146104b3578063b88d4fde146104c8578063c6682862146104e8578063c87b56dd146104fd57600080fd5b80638da5cb5b116100d15780638da5cb5b1461044d57806395d89b411461046b578063a0712d6814610480578063a22cb4651461049357600080fd5b806370a08231146103e3578063715018a6146104035780637f00c7a6146104185780638456cb591461043857600080fd5b806323b872dd1161017a5780635183022711610149578063518302271461036a57806355f804b3146103895780635c975abb146103a95780636352211e146103c357600080fd5b806323b872dd146103025780633ccfd60b1461032257806342842e0e1461032a57806344a0d68a1461034a57600080fd5b8063095ea7b3116101b6578063095ea7b31461029b57806313faede6146102bd57806318160ddd146102d3578063239c70ae146102ec57600080fd5b806301ffc9a7146101e85780630451a9f11461021d57806306fdde0314610241578063081812fc14610263575b600080fd5b3480156101f457600080fd5b50610208610203366004611be9565b6105bc565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610233600f5481565b604051908152602001610214565b34801561024d57600080fd5b5061025661060e565b6040516102149190611db1565b34801561026f57600080fd5b5061028361027e366004611c6c565b6106a0565b6040516001600160a01b039091168152602001610214565b3480156102a757600080fd5b506102bb6102b6366004611bbf565b6106e4565b005b3480156102c957600080fd5b50610233600c5481565b3480156102df57600080fd5b5060015460005403610233565b3480156102f857600080fd5b50610233600e5481565b34801561030e57600080fd5b506102bb61031d366004611acb565b610772565b6102bb61077d565b34801561033657600080fd5b506102bb610345366004611acb565b61083e565b34801561035657600080fd5b506102bb610365366004611c6c565b610859565b34801561037657600080fd5b5060105461020890610100900460ff1681565b34801561039557600080fd5b506102bb6103a4366004611c23565b6108a6565b3480156103b557600080fd5b506010546102089060ff1681565b3480156103cf57600080fd5b506102836103de366004611c6c565b610905565b3480156103ef57600080fd5b506102336103fe366004611a7d565b610917565b34801561040f57600080fd5b506102bb610966565b34801561042457600080fd5b506102bb610433366004611c6c565b6109ba565b34801561044457600080fd5b506102bb610a07565b34801561045957600080fd5b506008546001600160a01b0316610283565b34801561047757600080fd5b50610256610a63565b6102bb61048e366004611c6c565b610a72565b34801561049f57600080fd5b506102bb6104ae366004611b83565b610cc1565b3480156104bf57600080fd5b506102bb610d57565b3480156104d457600080fd5b506102bb6104e3366004611b07565b610db0565b3480156104f457600080fd5b50610256610e01565b34801561050957600080fd5b50610256610518366004611c6c565b610e8f565b34801561052957600080fd5b50610233600d5481565b34801561053f57600080fd5b506102bb61054e366004611c23565b61100c565b34801561055f57600080fd5b5061020861056e366004611a98565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105a857600080fd5b506102bb6105b7366004611a7d565b611067565b60006001600160e01b031982166380ac58cd60e01b14806105ed57506001600160e01b03198216635b5e139f60e01b145b8061060857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461061d90611e52565b80601f016020809104026020016040519081016040528092919081815260200182805461064990611e52565b80156106965780601f1061066b57610100808354040283529160200191610696565b820191906000526020600020905b81548152906001019060200180831161067957829003601f168201915b5050505050905090565b60006106ab8261111d565b6106c8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106ef82610905565b9050806001600160a01b0316836001600160a01b031614156107245760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107445750610742813361056e565b155b15610762576040516367d9dca160e11b815260040160405180910390fd5b61076d838383611148565b505050565b61076d8383836111b1565b6008546001600160a01b031633146107ca5760405162461bcd60e51b81526020600482018190526024820152600080516020611f2b83398151915260448201526064015b60405180910390fd5b60006107de6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610828576040519150601f19603f3d011682016040523d82523d6000602084013e61082d565b606091505b505090508061083b57600080fd5b50565b61076d83838360405180602001604052806000815250610db0565b6008546001600160a01b031633146108a15760405162461bcd60e51b81526020600482018190526024820152600080516020611f2b83398151915260448201526064016107c1565b600c55565b6008546001600160a01b031633146108ee5760405162461bcd60e51b81526020600482018190526024820152600080516020611f2b83398151915260448201526064016107c1565b8051610901906009906020840190611952565b5050565b6000610910826113c7565b5192915050565b60006001600160a01b038216610940576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109ae5760405162461bcd60e51b81526020600482018190526024820152600080516020611f2b83398151915260448201526064016107c1565b6109b860006114e3565b565b6008546001600160a01b03163314610a025760405162461bcd60e51b81526020600482018190526024820152600080516020611f2b83398151915260448201526064016107c1565b600e55565b6008546001600160a01b03163314610a4f5760405162461bcd60e51b81526020600482018190526024820152600080516020611f2b83398151915260448201526064016107c1565b6010805460ff19811660ff90911615179055565b60606003805461061d90611e52565b601054819060ff1615610a8457600080fd5b60008111610a9157600080fd5b600d5481610aa26001546000540390565b610aac9190611dc4565b1115610afa5760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c792065786365656465642100000000000000000000000060448201526064016107c1565b33600090815260116020526040902054601411610b595760405162461bcd60e51b815260206004820152601d60248201527f596f752063616e277420706f73736573206d6f7265207468616e20323000000060448201526064016107c1565b600f546001546000540310610bfc576008546001600160a01b03163314610bd75780600c54610b889190611df0565b341015610bd75760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e6473210000000000000000000000000060448201526064016107c1565b336000908152601160205260408120805491610bf283611e8d565b9190505550610c65565b600f5481610c0d6001546000540390565b610c179190611dc4565b1115610c655760405162461bcd60e51b815260206004820152601960248201527f46726565204e46547320616d6f756e742065786365656465640000000000000060448201526064016107c1565b600e54811115610cb75760405162461bcd60e51b815260206004820152601860248201527f4d6178206d696e7420616d6f756e74206578636565646564000000000000000060448201526064016107c1565b6109013383611542565b6001600160a01b038216331415610ceb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610d9f5760405162461bcd60e51b81526020600482018190526024820152600080516020611f2b83398151915260448201526064016107c1565b6010805461ff001916610100179055565b610dbb8484846111b1565b6001600160a01b0383163b15158015610ddd5750610ddb8484848461155c565b155b15610dfb576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600b8054610e0e90611e52565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3a90611e52565b8015610e875780601f10610e5c57610100808354040283529160200191610e87565b820191906000526020600020905b815481529060010190602001808311610e6a57829003601f168201915b505050505081565b6060610e9a8261111d565b610f0c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016107c1565b601054610100900460ff16610fad57600a8054610f2890611e52565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5490611e52565b8015610fa15780601f10610f7657610100808354040283529160200191610fa1565b820191906000526020600020905b815481529060010190602001808311610f8457829003601f168201915b50505050509050919050565b6000610fb7611654565b90506000815111610fd75760405180602001604052806000815250611005565b80610fe184611663565b600b604051602001610ff593929190611cb1565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146110545760405162461bcd60e51b81526020600482018190526024820152600080516020611f2b83398151915260448201526064016107c1565b805161090190600b906020840190611952565b6008546001600160a01b031633146110af5760405162461bcd60e51b81526020600482018190526024820152600080516020611f2b83398151915260448201526064016107c1565b6001600160a01b0381166111145760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c1565b61083b816114e3565b6000805482108015610608575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111bc826113c7565b80519091506000906001600160a01b0316336001600160a01b031614806111ea575081516111ea903361056e565b806112055750336111fa846106a0565b6001600160a01b0316145b90508061122557604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461125a5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661128157604051633a954ecd60e21b815260040160405180910390fd5b6112916000848460000151611148565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661137d5760005481101561137d578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156114ca57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114c85780516001600160a01b03161561145e579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156114c3579392505050565b61145e565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610901828260405180602001604052806000815250611779565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611591903390899088908890600401611d75565b602060405180830381600087803b1580156115ab57600080fd5b505af19250505080156115db575060408051601f3d908101601f191682019092526115d891810190611c06565b60015b611636573d808015611609576040519150601f19603f3d011682016040523d82523d6000602084013e61160e565b606091505b50805161162e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461061d90611e52565b6060816116875750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116b1578061169b81611e8d565b91506116aa9050600a83611ddc565b915061168b565b60008167ffffffffffffffff8111156116cc576116cc611efe565b6040519080825280601f01601f1916602001820160405280156116f6576020820181803683370190505b5090505b841561164c5761170b600183611e0f565b9150611718600a86611ea8565b611723906030611dc4565b60f81b81838151811061173857611738611ee8565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611772600a86611ddc565b94506116fa565b61076d83838360016000546001600160a01b0385166117aa57604051622e076360e81b815260040160405180910390fd5b836117c85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561187a57506001600160a01b0387163b15155b15611903575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118cb600088848060010195508861155c565b6118e8576040516368d2bf6b60e11b815260040160405180910390fd5b808214156118805782600054146118fe57600080fd5b611949565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611904575b506000556113c0565b82805461195e90611e52565b90600052602060002090601f01602090048101928261198057600085556119c6565b82601f1061199957805160ff19168380011785556119c6565b828001600101855582156119c6579182015b828111156119c65782518255916020019190600101906119ab565b506119d29291506119d6565b5090565b5b808211156119d257600081556001016119d7565b600067ffffffffffffffff80841115611a0657611a06611efe565b604051601f8501601f19908116603f01168101908282118183101715611a2e57611a2e611efe565b81604052809350858152868686011115611a4757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a7857600080fd5b919050565b600060208284031215611a8f57600080fd5b61100582611a61565b60008060408385031215611aab57600080fd5b611ab483611a61565b9150611ac260208401611a61565b90509250929050565b600080600060608486031215611ae057600080fd5b611ae984611a61565b9250611af760208501611a61565b9150604084013590509250925092565b60008060008060808587031215611b1d57600080fd5b611b2685611a61565b9350611b3460208601611a61565b925060408501359150606085013567ffffffffffffffff811115611b5757600080fd5b8501601f81018713611b6857600080fd5b611b77878235602084016119eb565b91505092959194509250565b60008060408385031215611b9657600080fd5b611b9f83611a61565b915060208301358015158114611bb457600080fd5b809150509250929050565b60008060408385031215611bd257600080fd5b611bdb83611a61565b946020939093013593505050565b600060208284031215611bfb57600080fd5b813561100581611f14565b600060208284031215611c1857600080fd5b815161100581611f14565b600060208284031215611c3557600080fd5b813567ffffffffffffffff811115611c4c57600080fd5b8201601f81018413611c5d57600080fd5b61164c848235602084016119eb565b600060208284031215611c7e57600080fd5b5035919050565b60008151808452611c9d816020860160208601611e26565b601f01601f19169290920160200192915050565b600084516020611cc48285838a01611e26565b855191840191611cd78184848a01611e26565b8554920191600090600181811c9080831680611cf457607f831692505b858310811415611d1257634e487b7160e01b85526022600452602485fd5b808015611d265760018114611d3757611d64565b60ff19851688528388019550611d64565b60008b81526020902060005b85811015611d5c5781548a820152908401908801611d43565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611da76080830184611c85565b9695505050505050565b6020815260006110056020830184611c85565b60008219821115611dd757611dd7611ebc565b500190565b600082611deb57611deb611ed2565b500490565b6000816000190483118215151615611e0a57611e0a611ebc565b500290565b600082821015611e2157611e21611ebc565b500390565b60005b83811015611e41578181015183820152602001611e29565b83811115610dfb5750506000910152565b600181811c90821680611e6657607f821691505b60208210811415611e8757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ea157611ea1611ebc565b5060010190565b600082611eb757611eb7611ed2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461083b57600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220c152eebce9332b90405f9dee92bef2c7aac09d553856f50d394fca1aa379d6f464736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d63586d374b6b77784a7471774465723372436e79727670424437734e4b72774d70374b503747436f6a3972612f000000000000000000000000000000000000000000000000000000000000000000000000000000000044697066733a2f2f516d597642645041706f626433704548547364724247354a69456d5a775143366f563348396f75724378786e7a4d2f3078646f6f646c65732e6a736f6e00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmcXm7KkwxJtqwDer3rCnyrvpBD7sNKrwMp7KP7GCoj9ra/
Arg [1] : _initNotRevURI (string): ipfs://QmYvBdPApobd3pEHTsdrBG5JiEmZwQC6oV3H9ourCxxnzM/0xdoodles.json
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d63586d374b6b77784a7471774465723372436e79727670
Arg [4] : 424437734e4b72774d70374b503747436f6a3972612f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [6] : 697066733a2f2f516d597642645041706f626433704548547364724247354a69
Arg [7] : 456d5a775143366f563348396f75724378786e7a4d2f3078646f6f646c65732e
Arg [8] : 6a736f6e00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
45875:2674:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28345:305;;;;;;;;;;-1:-1:-1;28345:305:0;;;;;:::i;:::-;;:::i;:::-;;;6982:14:1;;6975:22;6957:41;;6945:2;6930:18;28345:305:0;;;;;;;;46145:32;;;;;;;;;;;;;;;;;;;10325:25:1;;;10313:2;10298:18;46145:32:0;10179:177:1;31730:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33233:204::-;;;;;;;;;;-1:-1:-1;33233:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6234:55:1;;;6216:74;;6204:2;6189:18;33233:204:0;6070:226:1;32796:371:0;;;;;;;;;;-1:-1:-1;32796:371:0;;;;;:::i;:::-;;:::i;:::-;;46033:32;;;;;;;;;;;;;;;;27594:303;;;;;;;;;;-1:-1:-1;27848:12:0;;27638:7;27832:13;:28;27594:303;;46107:33;;;;;;;;;;;;;;;;34090:170;;;;;;;;;;-1:-1:-1;34090:170:0;;;;;:::i;:::-;;:::i;48401:145::-;;;:::i;34331:185::-;;;;;;;;;;-1:-1:-1;34331:185:0;;;;;:::i;:::-;;:::i;47822:80::-;;;;;;;;;;-1:-1:-1;47822:80:0;;;;;:::i;:::-;;:::i;46215:28::-;;;;;;;;;;-1:-1:-1;46215:28:0;;;;;;;;;;;48099:98;;;;;;;;;;-1:-1:-1;48099:98:0;;;;;:::i;:::-;;:::i;46184:26::-;;;;;;;;;;-1:-1:-1;46184:26:0;;;;;;;;31539:124;;;;;;;;;;-1:-1:-1;31539:124:0;;;;;:::i;:::-;;:::i;28714:206::-;;;;;;;;;;-1:-1:-1;28714:206:0;;;;;:::i;:::-;;:::i;4763:103::-;;;;;;;;;;;;;:::i;47977:116::-;;;;;;;;;;-1:-1:-1;47977:116:0;;;;;:::i;:::-;;:::i;48331:63::-;;;;;;;;;;;;;:::i;4112:87::-;;;;;;;;;;-1:-1:-1;4185:6:0;;-1:-1:-1;;;;;4185:6:0;4112:87;;31899:104;;;;;;;;;;;;;:::i;47106:119::-;;;;;;:::i;:::-;;:::i;33509:279::-;;;;;;;;;;-1:-1:-1;33509:279:0;;;;;:::i;:::-;;:::i;47908:63::-;;;;;;;;;;;;;:::i;34587:369::-;;;;;;;;;;-1:-1:-1;34587:369:0;;;;;:::i;:::-;;:::i;45991:37::-;;;;;;;;;;;;;:::i;47339:477::-;;;;;;;;;;-1:-1:-1;47339:477:0;;;;;:::i;:::-;;:::i;46070:32::-;;;;;;;;;;;;;;;;48203:122;;;;;;;;;;-1:-1:-1;48203:122:0;;;;;:::i;:::-;;:::i;33859:164::-;;;;;;;;;;-1:-1:-1;33859:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33980:25:0;;;33956:4;33980:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33859:164;5021:201;;;;;;;;;;-1:-1:-1;5021:201:0;;;;;:::i;:::-;;:::i;28345:305::-;28447:4;-1:-1:-1;;;;;;28484:40:0;;-1:-1:-1;;;28484:40:0;;:105;;-1:-1:-1;;;;;;;28541:48:0;;-1:-1:-1;;;28541:48:0;28484:105;:158;;;-1:-1:-1;;;;;;;;;;17005:40:0;;;28606:36;28464:178;28345:305;-1:-1:-1;;28345:305:0:o;31730:100::-;31784:13;31817:5;31810:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31730:100;:::o;33233:204::-;33301:7;33326:16;33334:7;33326;:16::i;:::-;33321:64;;33351:34;;-1:-1:-1;;;33351:34:0;;;;;;;;;;;33321:64;-1:-1:-1;33405:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33405:24:0;;33233:204::o;32796:371::-;32869:13;32885:24;32901:7;32885:15;:24::i;:::-;32869:40;;32930:5;-1:-1:-1;;;;;32924:11:0;:2;-1:-1:-1;;;;;32924:11:0;;32920:48;;;32944:24;;-1:-1:-1;;;32944:24:0;;;;;;;;;;;32920:48;2916:10;-1:-1:-1;;;;;32985:21:0;;;;;;:63;;-1:-1:-1;33011:37:0;33028:5;2916:10;33859:164;:::i;33011:37::-;33010:38;32985:63;32981:138;;;33072:35;;-1:-1:-1;;;33072:35:0;;;;;;;;;;;32981:138;33131:28;33140:2;33144:7;33153:5;33131:8;:28::i;:::-;32858:309;32796:371;;:::o;34090:170::-;34224:28;34234:4;34240:2;34244:7;34224:9;:28::i;48401:145::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;8907:2:1;4324:68:0;;;8889:21:1;;;8926:18;;;8919:30;-1:-1:-1;;;;;;;;;;;8965:18:1;;;8958:62;9037:18;;4324:68:0;;;;;;;;;48454:7:::1;48475;4185:6:::0;;-1:-1:-1;;;;;4185:6:0;;4112:87;48475:7:::1;-1:-1:-1::0;;;;;48467:21:0::1;48496;48467:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48453:69;;;48537:2;48529:11;;;::::0;::::1;;48446:100;48401:145::o:0;34331:185::-;34469:39;34486:4;34492:2;34496:7;34469:39;;;;;;;;;;;;:16;:39::i;47822:80::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;8907:2:1;4324:68:0;;;8889:21:1;;;8926:18;;;8919:30;-1:-1:-1;;;;;;;;;;;8965:18:1;;;8958:62;9037:18;;4324:68:0;8705:356:1;4324:68:0;47881:4:::1;:15:::0;47822:80::o;48099:98::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;8907:2:1;4324:68:0;;;8889:21:1;;;8926:18;;;8919:30;-1:-1:-1;;;;;;;;;;;8965:18:1;;;8958:62;9037:18;;4324:68:0;8705:356:1;4324:68:0;48170:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48099:98:::0;:::o;31539:124::-;31603:7;31630:20;31642:7;31630:11;:20::i;:::-;:25;;31539:124;-1:-1:-1;;31539:124:0:o;28714:206::-;28778:7;-1:-1:-1;;;;;28802:19:0;;28798:60;;28830:28;;-1:-1:-1;;;28830:28:0;;;;;;;;;;;28798:60;-1:-1:-1;;;;;;28884:19:0;;;;;:12;:19;;;;;:27;;;;28714:206::o;4763:103::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;8907:2:1;4324:68:0;;;8889:21:1;;;8926:18;;;8919:30;-1:-1:-1;;;;;;;;;;;8965:18:1;;;8958:62;9037:18;;4324:68:0;8705:356:1;4324:68:0;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;47977:116::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;8907:2:1;4324:68:0;;;8889:21:1;;;8926:18;;;8919:30;-1:-1:-1;;;;;;;;;;;8965:18:1;;;8958:62;9037:18;;4324:68:0;8705:356:1;4324:68:0;48054:13:::1;:33:::0;47977:116::o;48331:63::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;8907:2:1;4324:68:0;;;8889:21:1;;;8926:18;;;8919:30;-1:-1:-1;;;;;;;;;;;8965:18:1;;;8958:62;9037:18;;4324:68:0;8705:356:1;4324:68:0;48382:6:::1;::::0;;-1:-1:-1;;48372:16:0;::::1;48382:6;::::0;;::::1;48381:7;48372:16;::::0;;48331:63::o;31899:104::-;31955:13;31988:7;31981:14;;;;;:::i;47106:119::-;46543:6;;47163:11;;46543:6;;46542:7;46534:16;;;;;;46579:1;46565:11;:15;46557:24;;;;;;46627:9;;46612:11;46596:13;27848:12;;27638:7;27832:13;:28;;27594:303;46596:13;:27;;;;:::i;:::-;:40;;46588:73;;;;-1:-1:-1;;;46588:73:0;;9684:2:1;46588:73:0;;;9666:21:1;9723:2;9703:18;;;9696:30;9762:22;9742:18;;;9735:50;9802:18;;46588:73:0;9482:344:1;46588:73:0;46689:10;46676:24;;;;:12;:24;;;;;;46703:2;-1:-1:-1;46668:71:0;;;;-1:-1:-1;;;46668:71:0;;7435:2:1;46668:71:0;;;7417:21:1;7474:2;7454:18;;;7447:30;7513:31;7493:18;;;7486:59;7562:18;;46668:71:0;7233:353:1;46668:71:0;46768:10;;27848:12;;27638:7;27832:13;:28;46751:27;46748:266;;4185:6;;-1:-1:-1;;;;;4185:6:0;46793:10;:21;46790:89;;46844:11;46837:4;;:18;;;;:::i;:::-;46824:9;:31;;46816:63;;;;-1:-1:-1;;;46816:63:0;;10033:2:1;46816:63:0;;;10015:21:1;10072:2;10052:18;;;10045:30;10111:21;10091:18;;;10084:49;10150:18;;46816:63:0;9831:343:1;46816:63:0;46903:10;46890:24;;;;:12;:24;;;;;:26;;;;;;:::i;:::-;;;;;;46748:266;;;46974:10;;46959:11;46943:13;27848:12;;27638:7;27832:13;:28;;27594:303;46943:13;:27;;;;:::i;:::-;:41;;46935:79;;;;-1:-1:-1;;;46935:79:0;;8200:2:1;46935:79:0;;;8182:21:1;8239:2;8219:18;;;8212:30;8278:27;8258:18;;;8251:55;8323:18;;46935:79:0;7998:349:1;46935:79:0;47044:13;;47029:11;:28;;47021:65;;;;-1:-1:-1;;;47021:65:0;;8554:2:1;47021:65:0;;;8536:21:1;8593:2;8573:18;;;8566:30;8632:26;8612:18;;;8605:54;8676:18;;47021:65:0;8352:348:1;47021:65:0;47185:34:::1;47195:10;47207:11;47185:9;:34::i;33509:279::-:0;-1:-1:-1;;;;;33600:24:0;;2916:10;33600:24;33596:54;;;33633:17;;-1:-1:-1;;;33633:17:0;;;;;;;;;;;33596:54;2916:10;33663:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33663:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33663:53:0;;;;;;;;;;33732:48;;6957:41:1;;;33663:42:0;;2916:10;33732:48;;6930:18:1;33732:48:0;;;;;;;33509:279;;:::o;47908:63::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;8907:2:1;4324:68:0;;;8889:21:1;;;8926:18;;;8919:30;-1:-1:-1;;;;;;;;;;;8965:18:1;;;8958:62;9037:18;;4324:68:0;8705:356:1;4324:68:0;47950:8:::1;:15:::0;;-1:-1:-1;;47950:15:0::1;;;::::0;;47908:63::o;34587:369::-;34754:28;34764:4;34770:2;34774:7;34754:9;:28::i;:::-;-1:-1:-1;;;;;34797:13:0;;7108:19;:23;;34797:76;;;;;34817:56;34848:4;34854:2;34858:7;34867:5;34817:30;:56::i;:::-;34816:57;34797:76;34793:156;;;34897:40;;-1:-1:-1;;;34897:40:0;;;;;;;;;;;34793:156;34587:369;;;;:::o;45991:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47339:477::-;47437:13;47478:16;47486:7;47478;:16::i;:::-;47462:97;;;;-1:-1:-1;;;47462:97:0;;9268:2:1;47462:97:0;;;9250:21:1;9307:2;9287:18;;;9280:30;9346:34;9326:18;;;9319:62;9417:17;9397:18;;;9390:45;9452:19;;47462:97:0;9066:411:1;47462:97:0;47572:8;;;;;;;47568:46;;47597:9;47590:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47339:477;;;:::o;47568:46::-;47622:28;47653:10;:8;:10::i;:::-;47622:41;;47708:1;47683:14;47677:28;:32;:133;;;;;;;;;;;;;;;;;47745:14;47761:18;:7;:16;:18::i;:::-;47781:13;47728:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47677:133;47670:140;47339:477;-1:-1:-1;;;47339:477:0:o;48203:122::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;8907:2:1;4324:68:0;;;8889:21:1;;;8926:18;;;8919:30;-1:-1:-1;;;;;;;;;;;8965:18:1;;;8958:62;9037:18;;4324:68:0;8705:356:1;4324:68:0;48286:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;5021:201::-:0;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;8907:2:1;4324:68:0;;;8889:21:1;;;8926:18;;;8919:30;-1:-1:-1;;;;;;;;;;;8965:18:1;;;8958:62;9037:18;;4324:68:0;8705:356:1;4324:68:0;-1:-1:-1;;;;;5110:22:0;::::1;5102:73;;;::::0;-1:-1:-1;;;5102:73:0;;7793:2:1;5102:73:0::1;::::0;::::1;7775:21:1::0;7832:2;7812:18;;;7805:30;7871:34;7851:18;;;7844:62;-1:-1:-1;;;7922:18:1;;;7915:36;7968:19;;5102:73:0::1;7591:402:1::0;5102:73:0::1;5186:28;5205:8;5186:18;:28::i;35211:187::-:0;35268:4;35332:13;;35322:7;:23;35292:98;;;;-1:-1:-1;;35363:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35363:27:0;;;;35362:28;;35211:187::o;42822:196::-;42937:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;42937:29:0;-1:-1:-1;;;;;42937:29:0;;;;;;;;;42982:28;;42937:24;;42982:28;;;;;;;42822:196;;;:::o;38324:2112::-;38439:35;38477:20;38489:7;38477:11;:20::i;:::-;38552:18;;38439:58;;-1:-1:-1;38510:22:0;;-1:-1:-1;;;;;38536:34:0;2916:10;-1:-1:-1;;;;;38536:34:0;;:101;;;-1:-1:-1;38604:18:0;;38587:50;;2916:10;33859:164;:::i;38587:50::-;38536:154;;;-1:-1:-1;2916:10:0;38654:20;38666:7;38654:11;:20::i;:::-;-1:-1:-1;;;;;38654:36:0;;38536:154;38510:181;;38709:17;38704:66;;38735:35;;-1:-1:-1;;;38735:35:0;;;;;;;;;;;38704:66;38807:4;-1:-1:-1;;;;;38785:26:0;:13;:18;;;-1:-1:-1;;;;;38785:26:0;;38781:67;;38820:28;;-1:-1:-1;;;38820:28:0;;;;;;;;;;;38781:67;-1:-1:-1;;;;;38863:16:0;;38859:52;;38888:23;;-1:-1:-1;;;38888:23:0;;;;;;;;;;;38859:52;39032:49;39049:1;39053:7;39062:13;:18;;;39032:8;:49::i;:::-;-1:-1:-1;;;;;39377:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39377:31:0;;;;;;;-1:-1:-1;;39377:31:0;;;;;;;39423:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39423:29:0;;;;;;;;;;;39469:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39514:61:0;;;;-1:-1:-1;;;39559:15:0;39514:61;;;;;;;;;;;39849:11;;;39879:24;;;;;:29;39849:11;;39879:29;39875:445;;40104:13;;40090:11;:27;40086:219;;;40174:18;;;40142:24;;;:11;:24;;;;;;;;:50;;40257:28;;;;40215:70;;-1:-1:-1;;;40215:70:0;-1:-1:-1;;;;;;40215:70:0;;;-1:-1:-1;;;;;40142:50:0;;;40215:70;;;;;;;40086:219;39352:979;40367:7;40363:2;-1:-1:-1;;;;;40348:27:0;40357:4;-1:-1:-1;;;;;40348:27:0;;;;;;;;;;;40386:42;38428:2008;;38324:2112;;;:::o;30369:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30479:7:0;30562:13;;30555:4;:20;30524:886;;;30596:31;30630:17;;;:11;:17;;;;;;;;;30596:51;;;;;;;;;-1:-1:-1;;;;;30596:51:0;;;;-1:-1:-1;;;30596:51:0;;;;;;;;;;;-1:-1:-1;;;30596:51:0;;;;;;;;;;;;;;30666:729;;30716:14;;-1:-1:-1;;;;;30716:28:0;;30712:101;;30780:9;30369:1108;-1:-1:-1;;;30369:1108:0:o;30712:101::-;-1:-1:-1;;;31155:6:0;31200:17;;;;:11;:17;;;;;;;;;31188:29;;;;;;;;;-1:-1:-1;;;;;31188:29:0;;;;;-1:-1:-1;;;31188:29:0;;;;;;;;;;;-1:-1:-1;;;31188:29:0;;;;;;;;;;;;;31248:28;31244:109;;31316:9;30369:1108;-1:-1:-1;;;30369:1108:0:o;31244:109::-;31115:261;;;30577:833;30524:886;31438:31;;-1:-1:-1;;;31438:31:0;;;;;;;;;;;5382:191;5475:6;;;-1:-1:-1;;;;;5492:17:0;;;-1:-1:-1;;5492:17:0;;;;;;;5525:40;;5475:6;;;5492:17;5475:6;;5525:40;;5456:16;;5525:40;5445:128;5382:191;:::o;35406:104::-;35475:27;35485:2;35489:8;35475:27;;;;;;;;;;;;:9;:27::i;43510:667::-;43694:72;;-1:-1:-1;;;43694:72:0;;43673:4;;-1:-1:-1;;;;;43694:36:0;;;;;:72;;2916:10;;43745:4;;43751:7;;43760:5;;43694:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43694:72:0;;;;;;;;-1:-1:-1;;43694:72:0;;;;;;;;;;;;:::i;:::-;;;43690:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43928:13:0;;43924:235;;43974:40;;-1:-1:-1;;;43974:40:0;;;;;;;;;;;43924:235;44117:6;44111:13;44102:6;44098:2;44094:15;44087:38;43690:480;-1:-1:-1;;;;;;43813:55:0;-1:-1:-1;;;43813:55:0;;-1:-1:-1;43690:480:0;43510:667;;;;;;:::o;47231:102::-;47291:13;47320:7;47313:14;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;35873:163;35996:32;36002:2;36006:8;36016:5;36023:4;36434:20;36457:13;-1:-1:-1;;;;;36485:16:0;;36481:48;;36510:19;;-1:-1:-1;;;36510:19:0;;;;;;;;;;;36481:48;36544:13;36540:44;;36566:18;;-1:-1:-1;;;36566:18:0;;;;;;;;;;;36540:44;-1:-1:-1;;;;;36935:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36994:49:0;;36935:44;;;;;;;;36994:49;;;;-1:-1:-1;;36935:44:0;;;;;;36994:49;;;;;;;;;;;;;;;;37060:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37110:66:0;;;;-1:-1:-1;;;37160:15:0;37110:66;;;;;;;;;;37060:25;37257:23;;;37301:4;:23;;;;-1:-1:-1;;;;;;37309:13:0;;7108:19;:23;;37309:15;37297:641;;;37345:314;37376:38;;37401:12;;-1:-1:-1;;;;;37376:38:0;;;37393:1;;37376:38;;37393:1;;37376:38;37442:69;37481:1;37485:2;37489:14;;;;;;37505:5;37442:30;:69::i;:::-;37437:174;;37547:40;;-1:-1:-1;;;37547:40:0;;;;;;;;;;;37437:174;37654:3;37638:12;:19;;37345:314;;37740:12;37723:13;;:29;37719:43;;37754:8;;;37719:43;37297:641;;;37803:120;37834:40;;37859:14;;;;;-1:-1:-1;;;;;37834:40:0;;;37851:1;;37834:40;;37851:1;;37834:40;37918:3;37902:12;:19;;37803:120;;37297:641;-1:-1:-1;37952:13:0;:28;38002:60;34587:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:1;;757:65;;747:93;;836:1;833;826:12;747:93;650:196;;;:::o;851:186::-;910:6;963:2;951:9;942:7;938:23;934:32;931:52;;;979:1;976;969:12;931:52;1002:29;1021:9;1002:29;:::i;1042:260::-;1110:6;1118;1171:2;1159:9;1150:7;1146:23;1142:32;1139:52;;;1187:1;1184;1177:12;1139:52;1210:29;1229:9;1210:29;:::i;:::-;1200:39;;1258:38;1292:2;1281:9;1277:18;1258:38;:::i;:::-;1248:48;;1042:260;;;;;:::o;1307:328::-;1384:6;1392;1400;1453:2;1441:9;1432:7;1428:23;1424:32;1421:52;;;1469:1;1466;1459:12;1421:52;1492:29;1511:9;1492:29;:::i;:::-;1482:39;;1540:38;1574:2;1563:9;1559:18;1540:38;:::i;:::-;1530:48;;1625:2;1614:9;1610:18;1597:32;1587:42;;1307:328;;;;;:::o;1640:666::-;1735:6;1743;1751;1759;1812:3;1800:9;1791:7;1787:23;1783:33;1780:53;;;1829:1;1826;1819:12;1780:53;1852:29;1871:9;1852:29;:::i;:::-;1842:39;;1900:38;1934:2;1923:9;1919:18;1900:38;:::i;:::-;1890:48;;1985:2;1974:9;1970:18;1957:32;1947:42;;2040:2;2029:9;2025:18;2012:32;2067:18;2059:6;2056:30;2053:50;;;2099:1;2096;2089:12;2053:50;2122:22;;2175:4;2167:13;;2163:27;-1:-1:-1;2153:55:1;;2204:1;2201;2194:12;2153:55;2227:73;2292:7;2287:2;2274:16;2269:2;2265;2261:11;2227:73;:::i;:::-;2217:83;;;1640:666;;;;;;;:::o;2311:347::-;2376:6;2384;2437:2;2425:9;2416:7;2412:23;2408:32;2405:52;;;2453:1;2450;2443:12;2405:52;2476:29;2495:9;2476:29;:::i;:::-;2466:39;;2555:2;2544:9;2540:18;2527:32;2602:5;2595:13;2588:21;2581:5;2578:32;2568:60;;2624:1;2621;2614:12;2568:60;2647:5;2637:15;;;2311:347;;;;;:::o;2663:254::-;2731:6;2739;2792:2;2780:9;2771:7;2767:23;2763:32;2760:52;;;2808:1;2805;2798:12;2760:52;2831:29;2850:9;2831:29;:::i;:::-;2821:39;2907:2;2892:18;;;;2879:32;;-1:-1:-1;;;2663:254:1:o;2922:245::-;2980:6;3033:2;3021:9;3012:7;3008:23;3004:32;3001:52;;;3049:1;3046;3039:12;3001:52;3088:9;3075:23;3107:30;3131:5;3107:30;:::i;3172:249::-;3241:6;3294:2;3282:9;3273:7;3269:23;3265:32;3262:52;;;3310:1;3307;3300:12;3262:52;3342:9;3336:16;3361:30;3385:5;3361:30;:::i;3426:450::-;3495:6;3548:2;3536:9;3527:7;3523:23;3519:32;3516:52;;;3564:1;3561;3554:12;3516:52;3604:9;3591:23;3637:18;3629:6;3626:30;3623:50;;;3669:1;3666;3659:12;3623:50;3692:22;;3745:4;3737:13;;3733:27;-1:-1:-1;3723:55:1;;3774:1;3771;3764:12;3723:55;3797:73;3862:7;3857:2;3844:16;3839:2;3835;3831:11;3797:73;:::i;3881:180::-;3940:6;3993:2;3981:9;3972:7;3968:23;3964:32;3961:52;;;4009:1;4006;3999:12;3961:52;-1:-1:-1;4032:23:1;;3881:180;-1:-1:-1;3881:180:1:o;4066:257::-;4107:3;4145:5;4139:12;4172:6;4167:3;4160:19;4188:63;4244:6;4237:4;4232:3;4228:14;4221:4;4214:5;4210:16;4188:63;:::i;:::-;4305:2;4284:15;-1:-1:-1;;4280:29:1;4271:39;;;;4312:4;4267:50;;4066:257;-1:-1:-1;;4066:257:1:o;4328:1527::-;4552:3;4590:6;4584:13;4616:4;4629:51;4673:6;4668:3;4663:2;4655:6;4651:15;4629:51;:::i;:::-;4743:13;;4702:16;;;;4765:55;4743:13;4702:16;4787:15;;;4765:55;:::i;:::-;4909:13;;4842:20;;;4882:1;;4969;4991:18;;;;5044;;;;5071:93;;5149:4;5139:8;5135:19;5123:31;;5071:93;5212:2;5202:8;5199:16;5179:18;5176:40;5173:167;;;-1:-1:-1;;;5239:33:1;;5295:4;5292:1;5285:15;5325:4;5246:3;5313:17;5173:167;5356:18;5383:110;;;;5507:1;5502:328;;;;5349:481;;5383:110;-1:-1:-1;;5418:24:1;;5404:39;;5463:20;;;;-1:-1:-1;5383:110:1;;5502:328;10434:1;10427:14;;;10471:4;10458:18;;5597:1;5611:169;5625:8;5622:1;5619:15;5611:169;;;5707:14;;5692:13;;;5685:37;5750:16;;;;5642:10;;5611:169;;;5615:3;;5811:8;5804:5;5800:20;5793:27;;5349:481;-1:-1:-1;5846:3:1;;4328:1527;-1:-1:-1;;;;;;;;;;;4328:1527:1:o;6301:511::-;6495:4;-1:-1:-1;;;;;6605:2:1;6597:6;6593:15;6582:9;6575:34;6657:2;6649:6;6645:15;6640:2;6629:9;6625:18;6618:43;;6697:6;6692:2;6681:9;6677:18;6670:34;6740:3;6735:2;6724:9;6720:18;6713:31;6761:45;6801:3;6790:9;6786:19;6778:6;6761:45;:::i;:::-;6753:53;6301:511;-1:-1:-1;;;;;;6301:511:1:o;7009:219::-;7158:2;7147:9;7140:21;7121:4;7178:44;7218:2;7207:9;7203:18;7195:6;7178:44;:::i;10487:128::-;10527:3;10558:1;10554:6;10551:1;10548:13;10545:39;;;10564:18;;:::i;:::-;-1:-1:-1;10600:9:1;;10487:128::o;10620:120::-;10660:1;10686;10676:35;;10691:18;;:::i;:::-;-1:-1:-1;10725:9:1;;10620:120::o;10745:168::-;10785:7;10851:1;10847;10843:6;10839:14;10836:1;10833:21;10828:1;10821:9;10814:17;10810:45;10807:71;;;10858:18;;:::i;:::-;-1:-1:-1;10898:9:1;;10745:168::o;10918:125::-;10958:4;10986:1;10983;10980:8;10977:34;;;10991:18;;:::i;:::-;-1:-1:-1;11028:9:1;;10918:125::o;11048:258::-;11120:1;11130:113;11144:6;11141:1;11138:13;11130:113;;;11220:11;;;11214:18;11201:11;;;11194:39;11166:2;11159:10;11130:113;;;11261:6;11258:1;11255:13;11252:48;;;-1:-1:-1;;11296:1:1;11278:16;;11271:27;11048:258::o;11311:380::-;11390:1;11386:12;;;;11433;;;11454:61;;11508:4;11500:6;11496:17;11486:27;;11454:61;11561:2;11553:6;11550:14;11530:18;11527:38;11524:161;;;11607:10;11602:3;11598:20;11595:1;11588:31;11642:4;11639:1;11632:15;11670:4;11667:1;11660:15;11524:161;;11311:380;;;:::o;11696:135::-;11735:3;-1:-1:-1;;11756:17:1;;11753:43;;;11776:18;;:::i;:::-;-1:-1:-1;11823:1:1;11812:13;;11696:135::o;11836:112::-;11868:1;11894;11884:35;;11899:18;;:::i;:::-;-1:-1:-1;11933:9:1;;11836:112::o;11953:127::-;12014:10;12009:3;12005:20;12002:1;11995:31;12045:4;12042:1;12035:15;12069:4;12066:1;12059:15;12085:127;12146:10;12141:3;12137:20;12134:1;12127:31;12177:4;12174:1;12167:15;12201:4;12198:1;12191:15;12217:127;12278:10;12273:3;12269:20;12266:1;12259:31;12309:4;12306:1;12299:15;12333:4;12330:1;12323:15;12349:127;12410:10;12405:3;12401:20;12398:1;12391:31;12441:4;12438:1;12431:15;12465:4;12462:1;12455:15;12481:131;-1:-1:-1;;;;;;12555:32:1;;12545:43;;12535:71;;12602:1;12599;12592:12
Swarm Source
ipfs://c152eebce9332b90405f9dee92bef2c7aac09d553856f50d394fca1aa379d6f4
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.