ERC-721
Overview
Max Total Supply
8,888 MO
Holders
1,008
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 MOLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MetaOtters
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-02 */ // SPDX-License-Identifier: MIT // 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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // 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: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); 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 1; } /** * @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) { 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) { 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) { 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 { _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 virtual 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); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, 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: contracts/newnft.sol //MyNFTcontract contract MetaOtters is ERC721A, Ownable { using Strings for uint256; uint256 public unitPrice = 0; uint256 public MAX_ELEMENTS = 8888; uint256 public MAX_PER_MINT = 10; string public baseTokenURI; event CreateNFTs(uint256 indexed id); constructor(string memory NFTbaseURI) ERC721A("MetaOtters", "MO") { setBaseURI(NFTbaseURI); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseURI(string memory inputbaseURI) public onlyOwner { baseTokenURI = inputbaseURI; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "ERC721AMetadata: URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : ""; } function setConfigs(uint256 _maxElements, uint256 _maxPerMint ) public onlyOwner { MAX_ELEMENTS = _maxElements; MAX_PER_MINT = _maxPerMint;} function reserveTo(address _to, uint256 quantity) public payable onlyOwner{ require(quantity >0 && totalSupply() + quantity <= MAX_ELEMENTS, "Not enough tokens left"); _safeMint(_to, quantity); } function mint(address _to, uint256 quantity) public payable { require( quantity + _numberMinted(_to) <= MAX_PER_MINT , "Exceed Max limit"); require(quantity >0 && totalSupply() + quantity <= MAX_ELEMENTS, "Not enough tokens left"); require(msg.value >= ( unitPrice * quantity), "Eth sent below cost"); _safeMint(_to, quantity); } function setunitPrice(uint256 _price) public onlyOwner { unitPrice =_price; } function getunitPrice() public view returns(uint256){ return unitPrice; } function withdrawAll() external onlyOwner { uint256 contractBalance = address(this).balance; require(contractBalance > 0,"insufficient balance."); _withdraw(owner(), contractBalance); } function _withdraw(address _address, uint256 _amount) private { (bool success, ) = payable(_address).call{ value: _amount }(""); require(success, "Failed to widthdraw Ether"); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = _startTokenId(); uint256 ownedTokenIndex = 0; address latestOwnerAddress; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_ELEMENTS) { TokenOwnership memory ownership = _ownerships[currentTokenId]; if (!ownership.burned && ownership.addr != address(0)) { latestOwnerAddress = ownership.addr; } if (latestOwnerAddress == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"NFTbaseURI","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":"uint256","name":"id","type":"uint256"}],"name":"CreateNFTs","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getunitPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"quantity","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveTo","outputs":[],"stateMutability":"payable","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":"inputbaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxElements","type":"uint256"},{"internalType":"uint256","name":"_maxPerMint","type":"uint256"}],"name":"setConfigs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setunitPrice","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":"unitPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260006009556122b8600a55600a600b553480156200002157600080fd5b50604051620021423803806200214283398101604081905262000044916200025b565b6040518060400160405280600a8152602001694d6574614f747465727360b01b815250604051806040016040528060028152602001614d4f60f01b81525081600290805190602001906200009a9291906200019f565b508051620000b09060039060208401906200019f565b5050600160005550620000c333620000d5565b620000ce8162000127565b5062000374565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200019b90600c9060208401906200019f565b5050565b828054620001ad9062000337565b90600052602060002090601f016020900481019282620001d157600085556200021c565b82601f10620001ec57805160ff19168380011785556200021c565b828001600101855582156200021c579182015b828111156200021c578251825591602001919060010190620001ff565b506200022a9291506200022e565b5090565b5b808211156200022a57600081556001016200022f565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200026f57600080fd5b82516001600160401b03808211156200028757600080fd5b818501915085601f8301126200029c57600080fd5b815181811115620002b157620002b162000245565b604051601f8201601f19908116603f01168101908382118183101715620002dc57620002dc62000245565b816040528281528886848701011115620002f557600080fd5b600093505b82841015620003195784840186015181850187015292850192620002fa565b828411156200032b5760008684830101525b98975050505050505050565b600181811c908216806200034c57607f821691505b602082108114156200036e57634e487b7160e01b600052602260045260246000fd5b50919050565b611dbe80620003846000396000f3fe6080604052600436106101c25760003560e01c80636352211e116100f7578063b167991811610095578063d547cfb711610064578063d547cfb7146104d4578063e73faa2d146104e9578063e985e9c5146104ff578063f2fde38b1461054857600080fd5b8063b167991814610461578063b305a85314610481578063b88d4fde14610494578063c87b56dd146104b457600080fd5b8063853828b6116100d1578063853828b6146103f95780638da5cb5b1461040e57806395d89b411461042c578063a22cb4651461044157600080fd5b80636352211e146103a457806370a08231146103c4578063715018a6146103e457600080fd5b80633502a7161161016457806342842e0e1161013e57806342842e0e14610317578063438b6300146103375780634520951e1461036457806355f804b31461038457600080fd5b80633502a716146102d957806339f63062146102ef57806340c10f191461030457600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806309d42b301461027857806318160ddd1461029c57806323b872dd146102b957600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e236600461184b565b610568565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105ba565b6040516101f391906118c0565b34801561022a57600080fd5b5061023e6102393660046118d3565b61064c565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611908565b610690565b005b34801561028457600080fd5b5061028e600b5481565b6040519081526020016101f3565b3480156102a857600080fd5b50600154600054036000190161028e565b3480156102c557600080fd5b506102766102d4366004611932565b61071e565b3480156102e557600080fd5b5061028e600a5481565b3480156102fb57600080fd5b5060095461028e565b610276610312366004611908565b610729565b34801561032357600080fd5b50610276610332366004611932565b610874565b34801561034357600080fd5b5061035761035236600461196e565b61088f565b6040516101f39190611989565b34801561037057600080fd5b5061027661037f3660046119cd565b6109d6565b34801561039057600080fd5b5061027661039f366004611a7a565b610a0b565b3480156103b057600080fd5b5061023e6103bf3660046118d3565b610a48565b3480156103d057600080fd5b5061028e6103df36600461196e565b610a5a565b3480156103f057600080fd5b50610276610aa8565b34801561040557600080fd5b50610276610ade565b34801561041a57600080fd5b506008546001600160a01b031661023e565b34801561043857600080fd5b50610211610b6c565b34801561044d57600080fd5b5061027661045c366004611ac2565b610b7b565b34801561046d57600080fd5b5061027661047c3660046118d3565b610c11565b61027661048f366004611908565b610c40565b3480156104a057600080fd5b506102766104af366004611afe565b610cd8565b3480156104c057600080fd5b506102116104cf3660046118d3565b610d29565b3480156104e057600080fd5b50610211610df5565b3480156104f557600080fd5b5061028e60095481565b34801561050b57600080fd5b506101e761051a366004611b79565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561055457600080fd5b5061027661056336600461196e565b610e83565b60006001600160e01b031982166380ac58cd60e01b148061059957506001600160e01b03198216635b5e139f60e01b145b806105b457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105c990611bac565b80601f01602080910402602001604051908101604052809291908181526020018280546105f590611bac565b80156106425780601f1061061757610100808354040283529160200191610642565b820191906000526020600020905b81548152906001019060200180831161062557829003601f168201915b5050505050905090565b600061065782610f1b565b610674576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061069b82610a48565b9050806001600160a01b0316836001600160a01b031614156106d05760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106f057506106ee813361051a565b155b1561070e576040516367d9dca160e11b815260040160405180910390fd5b610719838383610f54565b505050565b610719838383610fb0565b600b546001600160a01b038316600090815260056020526040902054600160401b90046001600160401b031661075f9083611bfd565b11156107a55760405162461bcd60e51b815260206004820152601060248201526f115e18d959590813585e081b1a5b5a5d60821b60448201526064015b60405180910390fd5b6000811180156107ce5750600a5460015460005483919003600019016107cb9190611bfd565b11155b6108135760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161079c565b806009546108219190611c15565b3410156108665760405162461bcd60e51b8152602060048201526013602482015272115d1a081cd95b9d0818995b1bddc818dbdcdd606a1b604482015260640161079c565b610870828261119e565b5050565b61071983838360405180602001604052806000815250610cd8565b6060600061089c83610a5a565b90506000816001600160401b038111156108b8576108b86119ef565b6040519080825280602002602001820160405280156108e1578160200160208202803683370190505b50905060016000805b84821080156108fb5750600a548311155b156109cb57600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282018390529091610968575080516001600160a01b031615155b1561097257805191505b876001600160a01b0316826001600160a01b031614156109b8578385848151811061099f5761099f611c34565b6020908102919091010152826109b481611c4a565b9350505b836109c281611c4a565b945050506108ea565b509195945050505050565b6008546001600160a01b03163314610a005760405162461bcd60e51b815260040161079c90611c65565b600a91909155600b55565b6008546001600160a01b03163314610a355760405162461bcd60e51b815260040161079c90611c65565b805161087090600c90602084019061179c565b6000610a53826111b8565b5192915050565b60006001600160a01b038216610a83576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ad25760405162461bcd60e51b815260040161079c90611c65565b610adc60006112df565b565b6008546001600160a01b03163314610b085760405162461bcd60e51b815260040161079c90611c65565b4780610b4e5760405162461bcd60e51b815260206004820152601560248201527434b739bab33334b1b4b2b73a103130b630b731b29760591b604482015260640161079c565b610b69610b636008546001600160a01b031690565b82611331565b50565b6060600380546105c990611bac565b6001600160a01b038216331415610ba55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610c3b5760405162461bcd60e51b815260040161079c90611c65565b600955565b6008546001600160a01b03163314610c6a5760405162461bcd60e51b815260040161079c90611c65565b600081118015610c935750600a546001546000548391900360001901610c909190611bfd565b11155b6108665760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161079c565b610ce3848484610fb0565b6001600160a01b0383163b15158015610d055750610d03848484846113d4565b155b15610d23576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610d3482610f1b565b610d995760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b606482015260840161079c565b6000610da36114bd565b90506000815111610dc35760405180602001604052806000815250610dee565b80610dcd846114cc565b604051602001610dde929190611c9a565b6040516020818303038152906040525b9392505050565b600c8054610e0290611bac565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2e90611bac565b8015610e7b5780601f10610e5057610100808354040283529160200191610e7b565b820191906000526020600020905b815481529060010190602001808311610e5e57829003601f168201915b505050505081565b6008546001600160a01b03163314610ead5760405162461bcd60e51b815260040161079c90611c65565b6001600160a01b038116610f125760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079c565b610b69816112df565b600081600111158015610f2f575060005482105b80156105b4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610fbb826111b8565b9050836001600160a01b031681600001516001600160a01b031614610ff25760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110105750611010853361051a565b8061102b5750336110208461064c565b6001600160a01b0316145b90508061104b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661107257604051633a954ecd60e21b815260040160405180910390fd5b61107e60008487610f54565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661115257600054821461115257805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6108708282604051806020016040528060008152506115c9565b604080516060810182526000808252602082018190529181019190915281806001111580156111e8575060005481105b156112c657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906112c45780516001600160a01b03161561125b579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156112bf579392505050565b61125b565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461137e576040519150601f19603f3d011682016040523d82523d6000602084013e611383565b606091505b50509050806107195760405162461bcd60e51b815260206004820152601960248201527f4661696c656420746f2077696474686472617720457468657200000000000000604482015260640161079c565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611409903390899088908890600401611cd9565b6020604051808303816000875af1925050508015611444575060408051601f3d908101601f1916820190925261144191810190611d16565b60015b61149f573d808015611472576040519150601f19603f3d011682016040523d82523d6000602084013e611477565b606091505b508051611497576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c80546105c990611bac565b6060816114f05750506040805180820190915260018152600360fc1b602082015290565b8160005b811561151a578061150481611c4a565b91506115139050600a83611d49565b91506114f4565b6000816001600160401b03811115611534576115346119ef565b6040519080825280601f01601f19166020018201604052801561155e576020820181803683370190505b5090505b84156114b557611573600183611d5d565b9150611580600a86611d74565b61158b906030611bfd565b60f81b8183815181106115a0576115a0611c34565b60200101906001600160f81b031916908160001a9053506115c2600a86611d49565b9450611562565b61071983838360016000546001600160a01b0385166115fa57604051622e076360e81b815260040160405180910390fd5b836116185760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156116c457506001600160a01b0387163b15155b1561174d575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461171560008884806001019550886113d4565b611732576040516368d2bf6b60e11b815260040160405180910390fd5b808214156116ca57826000541461174857600080fd5b611793565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561174e575b50600055611197565b8280546117a890611bac565b90600052602060002090601f0160209004810192826117ca5760008555611810565b82601f106117e357805160ff1916838001178555611810565b82800160010185558215611810579182015b828111156118105782518255916020019190600101906117f5565b5061181c929150611820565b5090565b5b8082111561181c5760008155600101611821565b6001600160e01b031981168114610b6957600080fd5b60006020828403121561185d57600080fd5b8135610dee81611835565b60005b8381101561188357818101518382015260200161186b565b83811115610d235750506000910152565b600081518084526118ac816020860160208601611868565b601f01601f19169290920160200192915050565b602081526000610dee6020830184611894565b6000602082840312156118e557600080fd5b5035919050565b80356001600160a01b038116811461190357600080fd5b919050565b6000806040838503121561191b57600080fd5b611924836118ec565b946020939093013593505050565b60008060006060848603121561194757600080fd5b611950846118ec565b925061195e602085016118ec565b9150604084013590509250925092565b60006020828403121561198057600080fd5b610dee826118ec565b6020808252825182820181905260009190848201906040850190845b818110156119c1578351835292840192918401916001016119a5565b50909695505050505050565b600080604083850312156119e057600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611a1f57611a1f6119ef565b604051601f8501601f19908116603f01168101908282118183101715611a4757611a476119ef565b81604052809350858152868686011115611a6057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a8c57600080fd5b81356001600160401b03811115611aa257600080fd5b8201601f81018413611ab357600080fd5b6114b584823560208401611a05565b60008060408385031215611ad557600080fd5b611ade836118ec565b915060208301358015158114611af357600080fd5b809150509250929050565b60008060008060808587031215611b1457600080fd5b611b1d856118ec565b9350611b2b602086016118ec565b92506040850135915060608501356001600160401b03811115611b4d57600080fd5b8501601f81018713611b5e57600080fd5b611b6d87823560208401611a05565b91505092959194509250565b60008060408385031215611b8c57600080fd5b611b95836118ec565b9150611ba3602084016118ec565b90509250929050565b600181811c90821680611bc057607f821691505b60208210811415611be157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611c1057611c10611be7565b500190565b6000816000190483118215151615611c2f57611c2f611be7565b500290565b634e487b7160e01b600052603260045260246000fd5b6000600019821415611c5e57611c5e611be7565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008351611cac818460208801611868565b835190830190611cc0818360208801611868565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d0c90830184611894565b9695505050505050565b600060208284031215611d2857600080fd5b8151610dee81611835565b634e487b7160e01b600052601260045260246000fd5b600082611d5857611d58611d33565b500490565b600082821015611d6f57611d6f611be7565b500390565b600082611d8357611d83611d33565b50069056fea2646970667358221220def96ec6d232b12697cd952fd11204a503c1881d200b1526748c7b4e5fb6857764736f6c634300080a003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d65625748707550344835376236613673656a51736645376b744453684e72664b44326b44583279444a4c6e782f00000000000000000000
Deployed Bytecode
0x6080604052600436106101c25760003560e01c80636352211e116100f7578063b167991811610095578063d547cfb711610064578063d547cfb7146104d4578063e73faa2d146104e9578063e985e9c5146104ff578063f2fde38b1461054857600080fd5b8063b167991814610461578063b305a85314610481578063b88d4fde14610494578063c87b56dd146104b457600080fd5b8063853828b6116100d1578063853828b6146103f95780638da5cb5b1461040e57806395d89b411461042c578063a22cb4651461044157600080fd5b80636352211e146103a457806370a08231146103c4578063715018a6146103e457600080fd5b80633502a7161161016457806342842e0e1161013e57806342842e0e14610317578063438b6300146103375780634520951e1461036457806355f804b31461038457600080fd5b80633502a716146102d957806339f63062146102ef57806340c10f191461030457600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806309d42b301461027857806318160ddd1461029c57806323b872dd146102b957600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e236600461184b565b610568565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105ba565b6040516101f391906118c0565b34801561022a57600080fd5b5061023e6102393660046118d3565b61064c565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611908565b610690565b005b34801561028457600080fd5b5061028e600b5481565b6040519081526020016101f3565b3480156102a857600080fd5b50600154600054036000190161028e565b3480156102c557600080fd5b506102766102d4366004611932565b61071e565b3480156102e557600080fd5b5061028e600a5481565b3480156102fb57600080fd5b5060095461028e565b610276610312366004611908565b610729565b34801561032357600080fd5b50610276610332366004611932565b610874565b34801561034357600080fd5b5061035761035236600461196e565b61088f565b6040516101f39190611989565b34801561037057600080fd5b5061027661037f3660046119cd565b6109d6565b34801561039057600080fd5b5061027661039f366004611a7a565b610a0b565b3480156103b057600080fd5b5061023e6103bf3660046118d3565b610a48565b3480156103d057600080fd5b5061028e6103df36600461196e565b610a5a565b3480156103f057600080fd5b50610276610aa8565b34801561040557600080fd5b50610276610ade565b34801561041a57600080fd5b506008546001600160a01b031661023e565b34801561043857600080fd5b50610211610b6c565b34801561044d57600080fd5b5061027661045c366004611ac2565b610b7b565b34801561046d57600080fd5b5061027661047c3660046118d3565b610c11565b61027661048f366004611908565b610c40565b3480156104a057600080fd5b506102766104af366004611afe565b610cd8565b3480156104c057600080fd5b506102116104cf3660046118d3565b610d29565b3480156104e057600080fd5b50610211610df5565b3480156104f557600080fd5b5061028e60095481565b34801561050b57600080fd5b506101e761051a366004611b79565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561055457600080fd5b5061027661056336600461196e565b610e83565b60006001600160e01b031982166380ac58cd60e01b148061059957506001600160e01b03198216635b5e139f60e01b145b806105b457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105c990611bac565b80601f01602080910402602001604051908101604052809291908181526020018280546105f590611bac565b80156106425780601f1061061757610100808354040283529160200191610642565b820191906000526020600020905b81548152906001019060200180831161062557829003601f168201915b5050505050905090565b600061065782610f1b565b610674576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061069b82610a48565b9050806001600160a01b0316836001600160a01b031614156106d05760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106f057506106ee813361051a565b155b1561070e576040516367d9dca160e11b815260040160405180910390fd5b610719838383610f54565b505050565b610719838383610fb0565b600b546001600160a01b038316600090815260056020526040902054600160401b90046001600160401b031661075f9083611bfd565b11156107a55760405162461bcd60e51b815260206004820152601060248201526f115e18d959590813585e081b1a5b5a5d60821b60448201526064015b60405180910390fd5b6000811180156107ce5750600a5460015460005483919003600019016107cb9190611bfd565b11155b6108135760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161079c565b806009546108219190611c15565b3410156108665760405162461bcd60e51b8152602060048201526013602482015272115d1a081cd95b9d0818995b1bddc818dbdcdd606a1b604482015260640161079c565b610870828261119e565b5050565b61071983838360405180602001604052806000815250610cd8565b6060600061089c83610a5a565b90506000816001600160401b038111156108b8576108b86119ef565b6040519080825280602002602001820160405280156108e1578160200160208202803683370190505b50905060016000805b84821080156108fb5750600a548311155b156109cb57600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282018390529091610968575080516001600160a01b031615155b1561097257805191505b876001600160a01b0316826001600160a01b031614156109b8578385848151811061099f5761099f611c34565b6020908102919091010152826109b481611c4a565b9350505b836109c281611c4a565b945050506108ea565b509195945050505050565b6008546001600160a01b03163314610a005760405162461bcd60e51b815260040161079c90611c65565b600a91909155600b55565b6008546001600160a01b03163314610a355760405162461bcd60e51b815260040161079c90611c65565b805161087090600c90602084019061179c565b6000610a53826111b8565b5192915050565b60006001600160a01b038216610a83576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ad25760405162461bcd60e51b815260040161079c90611c65565b610adc60006112df565b565b6008546001600160a01b03163314610b085760405162461bcd60e51b815260040161079c90611c65565b4780610b4e5760405162461bcd60e51b815260206004820152601560248201527434b739bab33334b1b4b2b73a103130b630b731b29760591b604482015260640161079c565b610b69610b636008546001600160a01b031690565b82611331565b50565b6060600380546105c990611bac565b6001600160a01b038216331415610ba55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610c3b5760405162461bcd60e51b815260040161079c90611c65565b600955565b6008546001600160a01b03163314610c6a5760405162461bcd60e51b815260040161079c90611c65565b600081118015610c935750600a546001546000548391900360001901610c909190611bfd565b11155b6108665760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161079c565b610ce3848484610fb0565b6001600160a01b0383163b15158015610d055750610d03848484846113d4565b155b15610d23576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610d3482610f1b565b610d995760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b606482015260840161079c565b6000610da36114bd565b90506000815111610dc35760405180602001604052806000815250610dee565b80610dcd846114cc565b604051602001610dde929190611c9a565b6040516020818303038152906040525b9392505050565b600c8054610e0290611bac565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2e90611bac565b8015610e7b5780601f10610e5057610100808354040283529160200191610e7b565b820191906000526020600020905b815481529060010190602001808311610e5e57829003601f168201915b505050505081565b6008546001600160a01b03163314610ead5760405162461bcd60e51b815260040161079c90611c65565b6001600160a01b038116610f125760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079c565b610b69816112df565b600081600111158015610f2f575060005482105b80156105b4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610fbb826111b8565b9050836001600160a01b031681600001516001600160a01b031614610ff25760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110105750611010853361051a565b8061102b5750336110208461064c565b6001600160a01b0316145b90508061104b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661107257604051633a954ecd60e21b815260040160405180910390fd5b61107e60008487610f54565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661115257600054821461115257805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6108708282604051806020016040528060008152506115c9565b604080516060810182526000808252602082018190529181019190915281806001111580156111e8575060005481105b156112c657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906112c45780516001600160a01b03161561125b579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156112bf579392505050565b61125b565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461137e576040519150601f19603f3d011682016040523d82523d6000602084013e611383565b606091505b50509050806107195760405162461bcd60e51b815260206004820152601960248201527f4661696c656420746f2077696474686472617720457468657200000000000000604482015260640161079c565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611409903390899088908890600401611cd9565b6020604051808303816000875af1925050508015611444575060408051601f3d908101601f1916820190925261144191810190611d16565b60015b61149f573d808015611472576040519150601f19603f3d011682016040523d82523d6000602084013e611477565b606091505b508051611497576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c80546105c990611bac565b6060816114f05750506040805180820190915260018152600360fc1b602082015290565b8160005b811561151a578061150481611c4a565b91506115139050600a83611d49565b91506114f4565b6000816001600160401b03811115611534576115346119ef565b6040519080825280601f01601f19166020018201604052801561155e576020820181803683370190505b5090505b84156114b557611573600183611d5d565b9150611580600a86611d74565b61158b906030611bfd565b60f81b8183815181106115a0576115a0611c34565b60200101906001600160f81b031916908160001a9053506115c2600a86611d49565b9450611562565b61071983838360016000546001600160a01b0385166115fa57604051622e076360e81b815260040160405180910390fd5b836116185760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156116c457506001600160a01b0387163b15155b1561174d575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461171560008884806001019550886113d4565b611732576040516368d2bf6b60e11b815260040160405180910390fd5b808214156116ca57826000541461174857600080fd5b611793565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561174e575b50600055611197565b8280546117a890611bac565b90600052602060002090601f0160209004810192826117ca5760008555611810565b82601f106117e357805160ff1916838001178555611810565b82800160010185558215611810579182015b828111156118105782518255916020019190600101906117f5565b5061181c929150611820565b5090565b5b8082111561181c5760008155600101611821565b6001600160e01b031981168114610b6957600080fd5b60006020828403121561185d57600080fd5b8135610dee81611835565b60005b8381101561188357818101518382015260200161186b565b83811115610d235750506000910152565b600081518084526118ac816020860160208601611868565b601f01601f19169290920160200192915050565b602081526000610dee6020830184611894565b6000602082840312156118e557600080fd5b5035919050565b80356001600160a01b038116811461190357600080fd5b919050565b6000806040838503121561191b57600080fd5b611924836118ec565b946020939093013593505050565b60008060006060848603121561194757600080fd5b611950846118ec565b925061195e602085016118ec565b9150604084013590509250925092565b60006020828403121561198057600080fd5b610dee826118ec565b6020808252825182820181905260009190848201906040850190845b818110156119c1578351835292840192918401916001016119a5565b50909695505050505050565b600080604083850312156119e057600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611a1f57611a1f6119ef565b604051601f8501601f19908116603f01168101908282118183101715611a4757611a476119ef565b81604052809350858152868686011115611a6057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a8c57600080fd5b81356001600160401b03811115611aa257600080fd5b8201601f81018413611ab357600080fd5b6114b584823560208401611a05565b60008060408385031215611ad557600080fd5b611ade836118ec565b915060208301358015158114611af357600080fd5b809150509250929050565b60008060008060808587031215611b1457600080fd5b611b1d856118ec565b9350611b2b602086016118ec565b92506040850135915060608501356001600160401b03811115611b4d57600080fd5b8501601f81018713611b5e57600080fd5b611b6d87823560208401611a05565b91505092959194509250565b60008060408385031215611b8c57600080fd5b611b95836118ec565b9150611ba3602084016118ec565b90509250929050565b600181811c90821680611bc057607f821691505b60208210811415611be157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611c1057611c10611be7565b500190565b6000816000190483118215151615611c2f57611c2f611be7565b500290565b634e487b7160e01b600052603260045260246000fd5b6000600019821415611c5e57611c5e611be7565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008351611cac818460208801611868565b835190830190611cc0818360208801611868565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d0c90830184611894565b9695505050505050565b600060208284031215611d2857600080fd5b8151610dee81611835565b634e487b7160e01b600052601260045260246000fd5b600082611d5857611d58611d33565b500490565b600082821015611d6f57611d6f611be7565b500390565b600082611d8357611d83611d33565b50069056fea2646970667358221220def96ec6d232b12697cd952fd11204a503c1881d200b1526748c7b4e5fb6857764736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d65625748707550344835376236613673656a51736645376b744453684e72664b44326b44583279444a4c6e782f00000000000000000000
-----Decoded View---------------
Arg [0] : NFTbaseURI (string): ipfs://QmebWHpuP4H57b6a6sejQsfE7ktDShNrfKD2kDX2yDJLnx/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d65625748707550344835376236613673656a5173664537
Arg [3] : 6b744453684e72664b44326b44583279444a4c6e782f00000000000000000000
Deployed Bytecode Sourcemap
44788:3365:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26989:305;;;;;;;;;;-1:-1:-1;26989:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;26989:305:0;;;;;;;;30102:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31605:204::-;;;;;;;;;;-1:-1:-1;31605:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;31605:204:0;1528:203:1;31168:371:0;;;;;;;;;;-1:-1:-1;31168:371:0;;;;;:::i;:::-;;:::i;:::-;;44950:33;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;44950:33:0;2173:177:1;26238:303:0;;;;;;;;;;-1:-1:-1;26095:1:0;26492:12;26282:7;26476:13;:28;-1:-1:-1;;26476:46:0;26238:303;;32470:170;;;;;;;;;;-1:-1:-1;32470:170:0;;;;;:::i;:::-;;:::i;44908:35::-;;;;;;;;;;;;;;;;46811:77;;;;;;;;;;-1:-1:-1;46874:9:0;;46811:77;;46332:373;;;;;;:::i;:::-;;:::i;32711:185::-;;;;;;;;;;-1:-1:-1;32711:185:0;;;;;:::i;:::-;;:::i;47346:799::-;;;;;;;;;;-1:-1:-1;47346:799:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45822:252::-;;;;;;;;;;-1:-1:-1;45822:252:0;;;;;:::i;:::-;;:::i;45330:111::-;;;;;;;;;;-1:-1:-1;45330:111:0;;;;;:::i;:::-;;:::i;29910:125::-;;;;;;;;;;-1:-1:-1;29910:125:0;;;;;:::i;:::-;;:::i;27358:206::-;;;;;;;;;;-1:-1:-1;27358:206:0;;;;;:::i;:::-;;:::i;4709:103::-;;;;;;;;;;;;;:::i;46898:228::-;;;;;;;;;;;;;:::i;4058:87::-;;;;;;;;;;-1:-1:-1;4131:6:0;;-1:-1:-1;;;;;4131:6:0;4058:87;;30271:104;;;;;;;;;;;;;:::i;31881:287::-;;;;;;;;;;-1:-1:-1;31881:287:0;;;;;:::i;:::-;;:::i;46717:86::-;;;;;;;;;;-1:-1:-1;46717:86:0;;;;;:::i;:::-;;:::i;46083:241::-;;;;;;:::i;:::-;;:::i;32967:369::-;;;;;;;;;;-1:-1:-1;32967:369:0;;;;;:::i;:::-;;:::i;45449:364::-;;;;;;;;;;-1:-1:-1;45449:364:0;;;;;:::i;:::-;;:::i;44992:26::-;;;;;;;;;;;;;:::i;44872:28::-;;;;;;;;;;;;;;;;32239:164;;;;;;;;;;-1:-1:-1;32239:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32360:25:0;;;32336:4;32360:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32239:164;4967:201;;;;;;;;;;-1:-1:-1;4967:201:0;;;;;:::i;:::-;;:::i;26989:305::-;27091:4;-1:-1:-1;;;;;;27128:40:0;;-1:-1:-1;;;27128:40:0;;:105;;-1:-1:-1;;;;;;;27185:48:0;;-1:-1:-1;;;27185:48:0;27128:105;:158;;;-1:-1:-1;;;;;;;;;;16974:40:0;;;27250:36;27108:178;26989:305;-1:-1:-1;;26989:305:0:o;30102:100::-;30156:13;30189:5;30182:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30102:100;:::o;31605:204::-;31673:7;31698:16;31706:7;31698;:16::i;:::-;31693:64;;31723:34;;-1:-1:-1;;;31723:34:0;;;;;;;;;;;31693:64;-1:-1:-1;31777:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31777:24:0;;31605:204::o;31168:371::-;31241:13;31257:24;31273:7;31257:15;:24::i;:::-;31241:40;;31302:5;-1:-1:-1;;;;;31296:11:0;:2;-1:-1:-1;;;;;31296:11:0;;31292:48;;;31316:24;;-1:-1:-1;;;31316:24:0;;;;;;;;;;;31292:48;2862:10;-1:-1:-1;;;;;31357:21:0;;;;;;:63;;-1:-1:-1;31383:37:0;31400:5;2862:10;32239:164;:::i;31383:37::-;31382:38;31357:63;31353:138;;;31444:35;;-1:-1:-1;;;31444:35:0;;;;;;;;;;;31353:138;31503:28;31512:2;31516:7;31525:5;31503:8;:28::i;:::-;31230:309;31168:371;;:::o;32470:170::-;32604:28;32614:4;32620:2;32624:7;32604:9;:28::i;46332:373::-;46445:12;;-1:-1:-1;;;;;27742:19:0;;27707:7;27742:19;;;:12;:19;;;;;:32;-1:-1:-1;;;27742:32:0;;-1:-1:-1;;;;;27742:32:0;46412:29;;:8;:29;:::i;:::-;:45;;46403:76;;;;-1:-1:-1;;;46403:76:0;;7135:2:1;46403:76:0;;;7117:21:1;7174:2;7154:18;;;7147:30;-1:-1:-1;;;7193:18:1;;;7186:46;7249:18;;46403:76:0;;;;;;;;;46511:1;46501:8;:11;:55;;;;-1:-1:-1;46544:12:0;;26095:1;26492:12;26282:7;26476:13;46532:8;;26476:28;;-1:-1:-1;;26476:46:0;46516:24;;;;:::i;:::-;:40;;46501:55;46493:90;;;;-1:-1:-1;;;46493:90:0;;7480:2:1;46493:90:0;;;7462:21:1;7519:2;7499:18;;;7492:30;-1:-1:-1;;;7538:18:1;;;7531:52;7600:18;;46493:90:0;7278:346:1;46493:90:0;46629:8;46617:9;;:20;;;;:::i;:::-;46602:9;:36;;46594:68;;;;-1:-1:-1;;;46594:68:0;;8004:2:1;46594:68:0;;;7986:21:1;8043:2;8023:18;;;8016:30;-1:-1:-1;;;8062:18:1;;;8055:49;8121:18;;46594:68:0;7802:343:1;46594:68:0;46673:24;46683:3;46688:8;46673:9;:24::i;:::-;46332:373;;:::o;32711:185::-;32849:39;32866:4;32872:2;32876:7;32849:39;;;;;;;;;;;;:16;:39::i;47346:799::-;47406:16;47431:23;47457:17;47467:6;47457:9;:17::i;:::-;47431:43;;47481:30;47528:15;-1:-1:-1;;;;;47514:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47514:30:0;-1:-1:-1;47481:63:0;-1:-1:-1;26095:1:0;47551:22;;47667:444;47692:15;47674;:33;:67;;;;;47729:12;;47711:14;:30;;47674:67;47667:444;;;47752:31;47786:27;;;:11;:27;;;;;;;;;47752:61;;;;;;;;;-1:-1:-1;;;;;47752:61:0;;;;-1:-1:-1;;;47752:61:0;;-1:-1:-1;;;;;47752:61:0;;;;;;;;-1:-1:-1;;;47752:61:0;;;;;;;;;;;;;;;;47828:49;;-1:-1:-1;47849:14:0;;-1:-1:-1;;;;;47849:28:0;;;47828:49;47824:111;;;47911:14;;;-1:-1:-1;47824:111:0;47971:6;-1:-1:-1;;;;;47949:28:0;:18;-1:-1:-1;;;;;47949:28:0;;47945:132;;;48023:14;47990:13;48004:15;47990:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;48050:17;;;;:::i;:::-;;;;47945:132;48087:16;;;;:::i;:::-;;;;47743:368;47667:444;;;-1:-1:-1;48126:13:0;;47346:799;-1:-1:-1;;;;;47346:799:0:o;45822:252::-;4131:6;;-1:-1:-1;;;;;4131:6:0;2862:10;4278:23;4270:68;;;;-1:-1:-1;;;4270:68:0;;;;;;;:::i;:::-;46007:12:::1;:27:::0;;;;46046:12:::1;:26:::0;45822:252::o;45330:111::-;4131:6;;-1:-1:-1;;;;;4131:6:0;2862:10;4278:23;4270:68;;;;-1:-1:-1;;;4270:68:0;;;;;;;:::i;:::-;45406:27;;::::1;::::0;:12:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;29910:125::-:0;29974:7;30001:21;30014:7;30001:12;:21::i;:::-;:26;;29910:125;-1:-1:-1;;29910:125:0:o;27358:206::-;27422:7;-1:-1:-1;;;;;27446:19:0;;27442:60;;27474:28;;-1:-1:-1;;;27474:28:0;;;;;;;;;;;27442:60;-1:-1:-1;;;;;;27528:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27528:27:0;;27358:206::o;4709:103::-;4131:6;;-1:-1:-1;;;;;4131:6:0;2862:10;4278:23;4270:68;;;;-1:-1:-1;;;4270:68:0;;;;;;;:::i;:::-;4774:30:::1;4801:1;4774:18;:30::i;:::-;4709:103::o:0;46898:228::-;4131:6;;-1:-1:-1;;;;;4131:6:0;2862:10;4278:23;4270:68;;;;-1:-1:-1;;;4270:68:0;;;;;;;:::i;:::-;46977:21:::1;47017:19:::0;47009:52:::1;;;::::0;-1:-1:-1;;;47009:52:0;;8985:2:1;47009:52:0::1;::::0;::::1;8967:21:1::0;9024:2;9004:18;;;8997:30;-1:-1:-1;;;9043:18:1;;;9036:51;9104:18;;47009:52:0::1;8783:345:1::0;47009:52:0::1;47077:35;47087:7;4131:6:::0;;-1:-1:-1;;;;;4131:6:0;;4058:87;47087:7:::1;47096:15;47077:9;:35::i;:::-;46940:186;46898:228::o:0;30271:104::-;30327:13;30360:7;30353:14;;;;;:::i;31881:287::-;-1:-1:-1;;;;;31980:24:0;;2862:10;31980:24;31976:54;;;32013:17;;-1:-1:-1;;;32013:17:0;;;;;;;;;;;31976:54;2862:10;32043:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32043:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32043:53:0;;;;;;;;;;32112:48;;540:41:1;;;32043:42:0;;2862:10;32112:48;;513:18:1;32112:48:0;;;;;;;31881:287;;:::o;46717:86::-;4131:6;;-1:-1:-1;;;;;4131:6:0;2862:10;4278:23;4270:68;;;;-1:-1:-1;;;4270:68:0;;;;;;;:::i;:::-;46780:9:::1;:17:::0;46717:86::o;46083:241::-;4131:6;;-1:-1:-1;;;;;4131:6:0;2862:10;4278:23;4270:68;;;;-1:-1:-1;;;4270:68:0;;;;;;;:::i;:::-;46200:1:::1;46190:8;:11;:55;;;;-1:-1:-1::0;46233:12:0::1;::::0;26095:1;26492:12;26282:7;26476:13;46221:8;;26476:28;;-1:-1:-1;;26476:46:0;46205:24:::1;;;;:::i;:::-;:40;;46190:55;46182:90;;;::::0;-1:-1:-1;;;46182:90:0;;7480:2:1;46182:90:0::1;::::0;::::1;7462:21:1::0;7519:2;7499:18;;;7492:30;-1:-1:-1;;;7538:18:1;;;7531:52;7600:18;;46182:90:0::1;7278:346:1::0;32967:369:0;33134:28;33144:4;33150:2;33154:7;33134:9;:28::i;:::-;-1:-1:-1;;;;;33177:13:0;;7054:19;:23;;33177:76;;;;;33197:56;33228:4;33234:2;33238:7;33247:5;33197:30;:56::i;:::-;33196:57;33177:76;33173:156;;;33277:40;;-1:-1:-1;;;33277:40:0;;;;;;;;;;;33173:156;32967:369;;;;:::o;45449:364::-;45523:13;45557:17;45565:8;45557:7;:17::i;:::-;45549:78;;;;-1:-1:-1;;;45549:78:0;;9335:2:1;45549:78:0;;;9317:21:1;9374:2;9354:18;;;9347:30;9413:34;9393:18;;;9386:62;-1:-1:-1;;;9464:18:1;;;9457:46;9520:19;;45549:78:0;9133:412:1;45549:78:0;45638:28;45669:10;:8;:10::i;:::-;45638:41;;45728:1;45703:14;45697:28;:32;:110;;;;;;;;;;;;;;;;;45756:14;45772:19;:8;:17;:19::i;:::-;45739:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45697:110;45690:117;45449:364;-1:-1:-1;;;45449:364:0:o;44992:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4967:201::-;4131:6;;-1:-1:-1;;;;;4131:6:0;2862:10;4278:23;4270:68;;;;-1:-1:-1;;;4270:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5056:22:0;::::1;5048:73;;;::::0;-1:-1:-1;;;5048:73:0;;10394:2:1;5048:73:0::1;::::0;::::1;10376:21:1::0;10433:2;10413:18;;;10406:30;10472:34;10452:18;;;10445:62;-1:-1:-1;;;10523:18:1;;;10516:36;10569:19;;5048:73:0::1;10192:402:1::0;5048:73:0::1;5132:28;5151:8;5132:18;:28::i;33591:174::-:0;33648:4;33691:7;26095:1;33672:26;;:53;;;;;33712:13;;33702:7;:23;33672:53;:85;;;;-1:-1:-1;;33730:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33730:27:0;;;;33729:28;;33591:174::o;41748:196::-;41863:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41863:29:0;-1:-1:-1;;;;;41863:29:0;;;;;;;;;41908:28;;41863:24;;41908:28;;;;;;;41748:196;;;:::o;36691:2130::-;36806:35;36844:21;36857:7;36844:12;:21::i;:::-;36806:59;;36904:4;-1:-1:-1;;;;;36882:26:0;:13;:18;;;-1:-1:-1;;;;;36882:26:0;;36878:67;;36917:28;;-1:-1:-1;;;36917:28:0;;;;;;;;;;;36878:67;36958:22;2862:10;-1:-1:-1;;;;;36984:20:0;;;;:73;;-1:-1:-1;37021:36:0;37038:4;2862:10;32239:164;:::i;37021:36::-;36984:126;;;-1:-1:-1;2862:10:0;37074:20;37086:7;37074:11;:20::i;:::-;-1:-1:-1;;;;;37074:36:0;;36984:126;36958:153;;37129:17;37124:66;;37155:35;;-1:-1:-1;;;37155:35:0;;;;;;;;;;;37124:66;-1:-1:-1;;;;;37205:16:0;;37201:52;;37230:23;;-1:-1:-1;;;37230:23:0;;;;;;;;;;;37201:52;37374:35;37391:1;37395:7;37404:4;37374:8;:35::i;:::-;-1:-1:-1;;;;;37705:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37705:31:0;;;-1:-1:-1;;;;;37705:31:0;;;-1:-1:-1;;37705:31:0;;;;;;;37751:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37751:29:0;;;;;;;;;;;37831:20;;;:11;:20;;;;;;37866:18;;-1:-1:-1;;;;;;37899:49:0;;;;-1:-1:-1;;;37932:15:0;37899:49;;;;;;;;;;38222:11;;38282:24;;;;;38325:13;;37831:20;;38282:24;;38325:13;38321:384;;38535:13;;38520:11;:28;38516:174;;38573:20;;38642:28;;;;-1:-1:-1;;;;;38616:54:0;-1:-1:-1;;;38616:54:0;-1:-1:-1;;;;;;38616:54:0;;;-1:-1:-1;;;;;38573:20:0;;38616:54;;;;38516:174;37680:1036;;;38752:7;38748:2;-1:-1:-1;;;;;38733:27:0;38742:4;-1:-1:-1;;;;;38733:27:0;;;;;;;;;;;38771:42;36795:2026;;36691:2130;;;:::o;33773:104::-;33842:27;33852:2;33856:8;33842:27;;;;;;;;;;;;:9;:27::i;28739:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28850:7:0;;26095:1;28899:23;;:47;;;;;28933:13;;28926:4;:20;28899:47;28895:886;;;28967:31;29001:17;;;:11;:17;;;;;;;;;28967:51;;;;;;;;;-1:-1:-1;;;;;28967:51:0;;;;-1:-1:-1;;;28967:51:0;;-1:-1:-1;;;;;28967:51:0;;;;;;;;-1:-1:-1;;;28967:51:0;;;;;;;;;;;;;;29037:729;;29087:14;;-1:-1:-1;;;;;29087:28:0;;29083:101;;29151:9;28739:1109;-1:-1:-1;;;28739:1109:0:o;29083:101::-;-1:-1:-1;;;29526:6:0;29571:17;;;;:11;:17;;;;;;;;;29559:29;;;;;;;;;-1:-1:-1;;;;;29559:29:0;;;;;-1:-1:-1;;;29559:29:0;;-1:-1:-1;;;;;29559:29:0;;;;;;;;-1:-1:-1;;;29559:29:0;;;;;;;;;;;;;29619:28;29615:109;;29687:9;28739:1109;-1:-1:-1;;;28739:1109:0:o;29615:109::-;29486:261;;;28948:833;28895:886;29809:31;;-1:-1:-1;;;29809:31:0;;;;;;;;;;;5328:191;5421:6;;;-1:-1:-1;;;;;5438:17:0;;;-1:-1:-1;;;;;;5438:17:0;;;;;;;5471:40;;5421:6;;;5438:17;5421:6;;5471:40;;5402:16;;5471:40;5391:128;5328:191;:::o;47139:200::-;47213:12;47239:8;-1:-1:-1;;;;;47231:22:0;47262:7;47231:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47212:63;;;47294:7;47286:45;;;;-1:-1:-1;;;47286:45:0;;11011:2:1;47286:45:0;;;10993:21:1;11050:2;11030:18;;;11023:30;11089:27;11069:18;;;11062:55;11134:18;;47286:45:0;10809:349:1;42436:667:0;42620:72;;-1:-1:-1;;;42620:72:0;;42599:4;;-1:-1:-1;;;;;42620:36:0;;;;;:72;;2862:10;;42671:4;;42677:7;;42686:5;;42620:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42620:72:0;;;;;;;;-1:-1:-1;;42620:72:0;;;;;;;;;;;;:::i;:::-;;;42616:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42854:13:0;;42850:235;;42900:40;;-1:-1:-1;;;42900:40:0;;;;;;;;;;;42850:235;43043:6;43037:13;43028:6;43024:2;43020:15;43013:38;42616:480;-1:-1:-1;;;;;;42739:55:0;-1:-1:-1;;;42739:55:0;;-1:-1:-1;42616:480:0;42436:667;;;;;;:::o;45207:113::-;45267:13;45300:12;45293:19;;;;;:::i;344:723::-;400:13;621:10;617:53;;-1:-1:-1;;648:10:0;;;;;;;;;;;;-1:-1:-1;;;648:10:0;;;;;344:723::o;617:53::-;695:5;680:12;736:78;743:9;;736:78;;769:8;;;;:::i;:::-;;-1:-1:-1;792:10:0;;-1:-1:-1;800:2:0;792:10;;:::i;:::-;;;736:78;;;824:19;856:6;-1:-1:-1;;;;;846:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;846:17:0;;824:39;;874:154;881:10;;874:154;;908:11;918:1;908:11;;:::i;:::-;;-1:-1:-1;977:10:0;985:2;977:5;:10;:::i;:::-;964:24;;:2;:24;:::i;:::-;951:39;;934:6;941;934:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;934:56:0;;;;;;;;-1:-1:-1;1005:11:0;1014:2;1005:11;;:::i;:::-;;;874:154;;34240:163;34363:32;34369:2;34373:8;34383:5;34390:4;34801:20;34824:13;-1:-1:-1;;;;;34852:16:0;;34848:48;;34877:19;;-1:-1:-1;;;34877:19:0;;;;;;;;;;;34848:48;34911:13;34907:44;;34933:18;;-1:-1:-1;;;34933:18:0;;;;;;;;;;;34907:44;-1:-1:-1;;;;;35302:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35361:49:0;;-1:-1:-1;;;;;35302:44:0;;;;;;;35361:49;;;-1:-1:-1;;;;;35302:44:0;;;;;;35361:49;;;;;;;;;;;;;;;;35427:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35477:66:0;;;;-1:-1:-1;;;35527:15:0;35477:66;;;;;;;;;;35427:25;35624:23;;;35668:4;:23;;;;-1:-1:-1;;;;;;35676:13:0;;7054:19;:23;;35676:15;35664:641;;;35712:314;35743:38;;35768:12;;-1:-1:-1;;;;;35743:38:0;;;35760:1;;35743:38;;35760:1;;35743:38;35809:69;35848:1;35852:2;35856:14;;;;;;35872:5;35809:30;:69::i;:::-;35804:174;;35914:40;;-1:-1:-1;;;35914:40:0;;;;;;;;;;;35804:174;36021:3;36005:12;:19;;35712:314;;36107:12;36090:13;;:29;36086:43;;36121:8;;;36086:43;35664:641;;;36170:120;36201:40;;36226:14;;;;;-1:-1:-1;;;;;36201:40:0;;;36218:1;;36201:40;;36218:1;;36201:40;36285:3;36269:12;:19;;36170:120;;35664:641;-1:-1:-1;36319:13:0;:28;36369:60;32967:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:632::-;3050:2;3102:21;;;3172:13;;3075:18;;;3194:22;;;3021:4;;3050:2;3273:15;;;;3247:2;3232:18;;;3021:4;3316:169;3330:6;3327:1;3324:13;3316:169;;;3391:13;;3379:26;;3460:15;;;;3425:12;;;;3352:1;3345:9;3316:169;;;-1:-1:-1;3502:3:1;;2879:632;-1:-1:-1;;;;;;2879:632:1:o;3516:248::-;3584:6;3592;3645:2;3633:9;3624:7;3620:23;3616:32;3613:52;;;3661:1;3658;3651:12;3613:52;-1:-1:-1;;3684:23:1;;;3754:2;3739:18;;;3726:32;;-1:-1:-1;3516:248:1:o;3769:127::-;3830:10;3825:3;3821:20;3818:1;3811:31;3861:4;3858:1;3851:15;3885:4;3882:1;3875:15;3901:632;3966:5;-1:-1:-1;;;;;4037:2:1;4029:6;4026:14;4023:40;;;4043:18;;:::i;:::-;4118:2;4112:9;4086:2;4172:15;;-1:-1:-1;;4168:24:1;;;4194:2;4164:33;4160:42;4148:55;;;4218:18;;;4238:22;;;4215:46;4212:72;;;4264:18;;:::i;:::-;4304:10;4300:2;4293:22;4333:6;4324:15;;4363:6;4355;4348:22;4403:3;4394:6;4389:3;4385:16;4382:25;4379:45;;;4420:1;4417;4410:12;4379:45;4470:6;4465:3;4458:4;4450:6;4446:17;4433:44;4525:1;4518:4;4509:6;4501;4497:19;4493:30;4486:41;;;;3901:632;;;;;:::o;4538:451::-;4607:6;4660:2;4648:9;4639:7;4635:23;4631:32;4628:52;;;4676:1;4673;4666:12;4628:52;4716:9;4703:23;-1:-1:-1;;;;;4741:6:1;4738:30;4735:50;;;4781:1;4778;4771:12;4735:50;4804:22;;4857:4;4849:13;;4845:27;-1:-1:-1;4835:55:1;;4886:1;4883;4876:12;4835:55;4909:74;4975:7;4970:2;4957:16;4952:2;4948;4944:11;4909:74;:::i;4994:347::-;5059:6;5067;5120:2;5108:9;5099:7;5095:23;5091:32;5088:52;;;5136:1;5133;5126:12;5088:52;5159:29;5178:9;5159:29;:::i;:::-;5149:39;;5238:2;5227:9;5223:18;5210:32;5285:5;5278:13;5271:21;5264:5;5261:32;5251:60;;5307:1;5304;5297:12;5251:60;5330:5;5320:15;;;4994:347;;;;;:::o;5346:667::-;5441:6;5449;5457;5465;5518:3;5506:9;5497:7;5493:23;5489:33;5486:53;;;5535:1;5532;5525:12;5486:53;5558:29;5577:9;5558:29;:::i;:::-;5548:39;;5606:38;5640:2;5629:9;5625:18;5606:38;:::i;:::-;5596:48;;5691:2;5680:9;5676:18;5663:32;5653:42;;5746:2;5735:9;5731:18;5718:32;-1:-1:-1;;;;;5765:6:1;5762:30;5759:50;;;5805:1;5802;5795:12;5759:50;5828:22;;5881:4;5873:13;;5869:27;-1:-1:-1;5859:55:1;;5910:1;5907;5900:12;5859:55;5933:74;5999:7;5994:2;5981:16;5976:2;5972;5968:11;5933:74;:::i;:::-;5923:84;;;5346:667;;;;;;;:::o;6018:260::-;6086:6;6094;6147:2;6135:9;6126:7;6122:23;6118:32;6115:52;;;6163:1;6160;6153:12;6115:52;6186:29;6205:9;6186:29;:::i;:::-;6176:39;;6234:38;6268:2;6257:9;6253:18;6234:38;:::i;:::-;6224:48;;6018:260;;;;;:::o;6283:380::-;6362:1;6358:12;;;;6405;;;6426:61;;6480:4;6472:6;6468:17;6458:27;;6426:61;6533:2;6525:6;6522:14;6502:18;6499:38;6496:161;;;6579:10;6574:3;6570:20;6567:1;6560:31;6614:4;6611:1;6604:15;6642:4;6639:1;6632:15;6496:161;;6283:380;;;:::o;6668:127::-;6729:10;6724:3;6720:20;6717:1;6710:31;6760:4;6757:1;6750:15;6784:4;6781:1;6774:15;6800:128;6840:3;6871:1;6867:6;6864:1;6861:13;6858:39;;;6877:18;;:::i;:::-;-1:-1:-1;6913:9:1;;6800:128::o;7629:168::-;7669:7;7735:1;7731;7727:6;7723:14;7720:1;7717:21;7712:1;7705:9;7698:17;7694:45;7691:71;;;7742:18;;:::i;:::-;-1:-1:-1;7782:9:1;;7629:168::o;8150:127::-;8211:10;8206:3;8202:20;8199:1;8192:31;8242:4;8239:1;8232:15;8266:4;8263:1;8256:15;8282:135;8321:3;-1:-1:-1;;8342:17:1;;8339:43;;;8362:18;;:::i;:::-;-1:-1:-1;8409:1:1;8398:13;;8282:135::o;8422:356::-;8624:2;8606:21;;;8643:18;;;8636:30;8702:34;8697:2;8682:18;;8675:62;8769:2;8754:18;;8422:356::o;9550:637::-;9830:3;9868:6;9862:13;9884:53;9930:6;9925:3;9918:4;9910:6;9906:17;9884:53;:::i;:::-;10000:13;;9959:16;;;;10022:57;10000:13;9959:16;10056:4;10044:17;;10022:57;:::i;:::-;-1:-1:-1;;;10101:20:1;;10130:22;;;10179:1;10168:13;;9550:637;-1:-1:-1;;;;9550:637:1:o;11163:489::-;-1:-1:-1;;;;;11432:15:1;;;11414:34;;11484:15;;11479:2;11464:18;;11457:43;11531:2;11516:18;;11509:34;;;11579:3;11574:2;11559:18;;11552:31;;;11357:4;;11600:46;;11626:19;;11618:6;11600:46;:::i;:::-;11592:54;11163:489;-1:-1:-1;;;;;;11163:489:1:o;11657:249::-;11726:6;11779:2;11767:9;11758:7;11754:23;11750:32;11747:52;;;11795:1;11792;11785:12;11747:52;11827:9;11821:16;11846:30;11870:5;11846:30;:::i;11911:127::-;11972:10;11967:3;11963:20;11960:1;11953:31;12003:4;12000:1;11993:15;12027:4;12024:1;12017:15;12043:120;12083:1;12109;12099:35;;12114:18;;:::i;:::-;-1:-1:-1;12148:9:1;;12043:120::o;12168:125::-;12208:4;12236:1;12233;12230:8;12227:34;;;12241:18;;:::i;:::-;-1:-1:-1;12278:9:1;;12168:125::o;12298:112::-;12330:1;12356;12346:35;;12361:18;;:::i;:::-;-1:-1:-1;12395:9:1;;12298:112::o
Swarm Source
ipfs://def96ec6d232b12697cd952fd11204a503c1881d200b1526748c7b4e5fb68577
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.