ERC-721
Overview
Max Total Supply
1,000 MFRANKRZ
Holders
195
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 MFRANKRZLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
mfrankrz
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-20 */ // SPDX-License-Identifier: MIT // Creator: Hype Mansion Club x Ape Toshi // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error 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 0; } /** * @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; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ 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 { 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 (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 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) 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; 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 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/mfrankr.sol // Creator: Hype Mansion Club x Ape Toshi pragma solidity 0.8.13; contract mfrankrz is ERC721A, Ownable { event PermanentURI(string _value, uint256 indexed _id); uint256 public MAX_SUPPLY = 1000; uint256 public MAX_PER_TXN = 3; constructor() ERC721A("mfrankrz", "MFRANKRZ") { // Claim collection on OpenSea _safeMint(msg.sender, 1); emit PermanentURI(tokenURI(1), 1); } function mint(uint256 amount) external { require(amount <= MAX_PER_TXN, ">maxTxn"); uint256 currentSupply = totalSupply(); require(currentSupply + amount <= MAX_SUPPLY, ">supply"); _safeMint(msg.sender, amount); for (uint256 i; i < amount; i++) { currentSupply++; // Signal to OpenSea that mfrankrz is eternal (he is gift to humanity) emit PermanentURI(tokenURI(currentSupply), currentSupply); } } function _baseURI() internal pure override returns (string memory) { return "ar://wbYk3zHESewo1AtQKKw5dJ-qhQv0jotutHpbwM8Ye2k/"; } function _startTokenId() internal pure override returns (uint256) { return 1; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"PermanentURI","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_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"}]
Contract Creation Code
60806040526103e86009556003600a553480156200001c57600080fd5b506040518060400160405280600881526020016736b33930b735b93d60c11b8152506040518060400160405280600881526020016726a32920a725a92d60c11b81525081600290805190602001906200007792919062000655565b5080516200008d90600390602084019062000655565b5050600160005550620000a033620000f8565b620000ad3360016200014a565b60017fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b55657207620000db8262000170565b604051620000ea919062000758565b60405180910390a26200091e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200016c8282604051806020016040528060008152506200020a60201b60201c565b5050565b60606200017d82620003d3565b6200019b57604051630a14c4b560e41b815260040160405180910390fd5b6000620001a762000411565b90508051600003620001c9576040518060200160405280600081525062000203565b80620001e0846200043260201b620008da1760201c565b604051602001620001f39291906200076d565b6040516020818303038152906040525b9392505050565b6000546001600160a01b0384166200023457604051622e076360e81b815260040160405180910390fd5b82600003620002565760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546001600160801b031981166001600160401b038083168b018116918217680100000000000000006001600160401b031990941690921783900481168b0181169092021790915585845260048352922080546001600160e01b0319168417600160a01b429094169390930292909217909155829182860191620002ff919062000552811b620009e317901c565b156200037e575b60405182906001600160a01b0388169060009060008051602062001ea1833981519152908290a46001820191620003439060009088908762000561565b62000361576040516368d2bf6b60e11b815260040160405180910390fd5b808203620003065782600054146200037857600080fd5b620003b3565b5b6040516001830192906001600160a01b0388169060009060008051602062001ea1833981519152908290a48082036200037f575b506000908155620003cd908583866001600160e01b038516565b50505050565b600081600111158015620003e8575060005482105b80156200040b5750600082815260046020526040902054600160e01b900460ff16155b92915050565b606060405180606001604052806031815260200162001ec160319139905090565b6060816000036200045a5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156200048a57806200047181620007b6565b9150620004829050600a83620007e8565b91506200045e565b6000816001600160401b03811115620004a757620004a7620007ff565b6040519080825280601f01601f191660200182016040528015620004d2576020820181803683370190505b5090505b84156200054a57620004ea60018362000815565b9150620004f9600a866200082f565b6200050690603062000846565b60f81b8183815181106200051e576200051e62000861565b60200101906001600160f81b031916908160001a90535062000542600a86620007e8565b9450620004d6565b949350505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906200059890339089908890889060040162000877565b6020604051808303816000875af1925050508015620005d6575060408051601f3d908101601f19168201909252620005d391810190620008b6565b60015b62000638573d80801562000607576040519150601f19603f3d011682016040523d82523d6000602084013e6200060c565b606091505b50805160000362000630576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b8280546200066390620008e2565b90600052602060002090601f016020900481019282620006875760008555620006d2565b82601f10620006a257805160ff1916838001178555620006d2565b82800160010185558215620006d2579182015b82811115620006d2578251825591602001919060010190620006b5565b50620006e0929150620006e4565b5090565b5b80821115620006e05760008155600101620006e5565b60005b8381101562000718578181015183820152602001620006fe565b83811115620003cd5750506000910152565b6000815180845262000744816020860160208601620006fb565b601f01601f19169290920160200192915050565b6020815260006200020360208301846200072a565b6000835162000781818460208801620006fb565b83519083019062000797818360208801620006fb565b01949350505050565b634e487b7160e01b600052601160045260246000fd5b600060018201620007cb57620007cb620007a0565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082620007fa57620007fa620007d2565b500490565b634e487b7160e01b600052604160045260246000fd5b6000828210156200082a576200082a620007a0565b500390565b600082620008415762000841620007d2565b500690565b600082198211156200085c576200085c620007a0565b500190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090620008ac908301846200072a565b9695505050505050565b600060208284031215620008c957600080fd5b81516001600160e01b0319811681146200020357600080fd5b600181811c90821680620008f757607f821691505b6020821081036200091857634e487b7160e01b600052602260045260246000fd5b50919050565b611573806200092e6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a22cb46511610071578063a22cb4651461025a578063b88d4fde1461026d578063c87b56dd14610280578063e985e9c514610293578063f2fde38b146102cf57600080fd5b806370a0823114610213578063715018a6146102265780638da5cb5b1461022e57806395d89b411461023f578063a0712d681461024757600080fd5b806323b872dd116100f457806323b872dd146101c857806332cb6b0c146101db57806342842e0e146101e457806351b96d92146101f75780636352211e1461020057600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc1461016e578063095ea7b31461019957806318160ddd146101ae575b600080fd5b61014461013f3660046110f8565b6102e2565b60405190151581526020015b60405180910390f35b610161610334565b604051610150919061116d565b61018161017c366004611180565b6103c6565b6040516001600160a01b039091168152602001610150565b6101ac6101a73660046111b5565b61040a565b005b60015460005403600019015b604051908152602001610150565b6101ac6101d63660046111df565b610497565b6101ba60095481565b6101ac6101f23660046111df565b6104a2565b6101ba600a5481565b61018161020e366004611180565b6104bd565b6101ba61022136600461121b565b6104cf565b6101ac61051e565b6008546001600160a01b0316610181565b610161610589565b6101ac610255366004611180565b610598565b6101ac610268366004611236565b6106a5565b6101ac61027b366004611288565b61073a565b61016161028e366004611180565b61078b565b6101446102a1366004611364565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6101ac6102dd36600461121b565b61080f565b60006001600160e01b031982166380ac58cd60e01b148061031357506001600160e01b03198216635b5e139f60e01b145b8061032e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461034390611397565b80601f016020809104026020016040519081016040528092919081815260200182805461036f90611397565b80156103bc5780601f10610391576101008083540402835291602001916103bc565b820191906000526020600020905b81548152906001019060200180831161039f57829003601f168201915b5050505050905090565b60006103d1826109f2565b6103ee576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610415826104bd565b9050806001600160a01b0316836001600160a01b0316036104495760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610469575061046781336102a1565b155b15610487576040516367d9dca160e11b815260040160405180910390fd5b610492838383610a2b565b505050565b610492838383610a87565b6104928383836040518060200160405280600081525061073a565b60006104c882610c76565b5192915050565b60006001600160a01b0382166104f8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461057d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6105876000610d9f565b565b60606003805461034390611397565b600a548111156105d45760405162461bcd60e51b81526020600482015260076024820152661f36b0bc2a3c3760c91b6044820152606401610574565b60006105e96001546000546000199190030190565b6009549091506105f983836113e7565b11156106315760405162461bcd60e51b81526020600482015260076024820152663e737570706c7960c81b6044820152606401610574565b61063b3383610df1565b60005b828110156104925781610650816113ff565b925050817fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b5565720761067e8461078b565b60405161068b919061116d565b60405180910390a28061069d816113ff565b91505061063e565b336001600160a01b038316036106ce5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610745848484610a87565b6001600160a01b0383163b15158015610767575061076584848484610e0f565b155b15610785576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610796826109f2565b6107b357604051630a14c4b560e41b815260040160405180910390fd5b60006107bd610efa565b905080516000036107dd5760405180602001604052806000815250610808565b806107e7846108da565b6040516020016107f8929190611418565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146108695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610574565b6001600160a01b0381166108ce5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610574565b6108d781610d9f565b50565b6060816000036109015750506040805180820190915260018152600360fc1b602082015290565b8160005b811561092b5780610915816113ff565b91506109249050600a8361145d565b9150610905565b60008167ffffffffffffffff81111561094657610946611272565b6040519080825280601f01601f191660200182016040528015610970576020820181803683370190505b5090505b84156109db57610985600183611471565b9150610992600a86611488565b61099d9060306113e7565b60f81b8183815181106109b2576109b261149c565b60200101906001600160f81b031916908160001a9053506109d4600a8661145d565b9450610974565b949350505050565b6001600160a01b03163b151590565b600081600111158015610a06575060005482105b801561032e575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610a9282610c76565b9050836001600160a01b031681600001516001600160a01b031614610ac95760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610ae75750610ae785336102a1565b80610b02575033610af7846103c6565b6001600160a01b0316145b905080610b2257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610b4957604051633a954ecd60e21b815260040160405180910390fd5b610b5560008487610a2b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610c2b576000548214610c2b578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015610ca6575060005481105b15610d8657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610d845780516001600160a01b031615610d1a579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610d7f579392505050565b610d1a565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e0b828260405180602001604052806000815250610f1a565b5050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610e449033908990889088906004016114b2565b6020604051808303816000875af1925050508015610e7f575060408051601f3d908101601f19168201909252610e7c918101906114ef565b60015b610edd573d808015610ead576040519150601f19603f3d011682016040523d82523d6000602084013e610eb2565b606091505b508051600003610ed5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606060405180606001604052806031815260200161150d60319139905090565b6000546001600160a01b038416610f4357604051622e076360e81b815260040160405180910390fd5b82600003610f645760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b1561108d575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46110566000878480600101955087610e0f565b611073576040516368d2bf6b60e11b815260040160405180910390fd5b80820361100b57826000541461108857600080fd5b6110d2565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480820361108e575b5060009081556107859085838684565b6001600160e01b0319811681146108d757600080fd5b60006020828403121561110a57600080fd5b8135610808816110e2565b60005b83811015611130578181015183820152602001611118565b838111156107855750506000910152565b60008151808452611159816020860160208601611115565b601f01601f19169290920160200192915050565b6020815260006108086020830184611141565b60006020828403121561119257600080fd5b5035919050565b80356001600160a01b03811681146111b057600080fd5b919050565b600080604083850312156111c857600080fd5b6111d183611199565b946020939093013593505050565b6000806000606084860312156111f457600080fd5b6111fd84611199565b925061120b60208501611199565b9150604084013590509250925092565b60006020828403121561122d57600080fd5b61080882611199565b6000806040838503121561124957600080fd5b61125283611199565b91506020830135801515811461126757600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561129e57600080fd5b6112a785611199565b93506112b560208601611199565b925060408501359150606085013567ffffffffffffffff808211156112d957600080fd5b818701915087601f8301126112ed57600080fd5b8135818111156112ff576112ff611272565b604051601f8201601f19908116603f0116810190838211818310171561132757611327611272565b816040528281528a602084870101111561134057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561137757600080fd5b61138083611199565b915061138e60208401611199565b90509250929050565b600181811c908216806113ab57607f821691505b6020821081036113cb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156113fa576113fa6113d1565b500190565b600060018201611411576114116113d1565b5060010190565b6000835161142a818460208801611115565b83519083019061143e818360208801611115565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b60008261146c5761146c611447565b500490565b600082821015611483576114836113d1565b500390565b60008261149757611497611447565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906114e590830184611141565b9695505050505050565b60006020828403121561150157600080fd5b8151610808816110e256fe61723a2f2f7762596b337a48455365776f314174514b4b7735644a2d71685176306a6f747574487062774d385965326b2fa26469706673582212202169533efad31825db4e0d57309a7773ea2a085b39da2c822dad3f2b03008b9864736f6c634300080d0033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61723a2f2f7762596b337a48455365776f314174514b4b7735644a2d71685176306a6f747574487062774d385965326b2f
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a22cb46511610071578063a22cb4651461025a578063b88d4fde1461026d578063c87b56dd14610280578063e985e9c514610293578063f2fde38b146102cf57600080fd5b806370a0823114610213578063715018a6146102265780638da5cb5b1461022e57806395d89b411461023f578063a0712d681461024757600080fd5b806323b872dd116100f457806323b872dd146101c857806332cb6b0c146101db57806342842e0e146101e457806351b96d92146101f75780636352211e1461020057600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc1461016e578063095ea7b31461019957806318160ddd146101ae575b600080fd5b61014461013f3660046110f8565b6102e2565b60405190151581526020015b60405180910390f35b610161610334565b604051610150919061116d565b61018161017c366004611180565b6103c6565b6040516001600160a01b039091168152602001610150565b6101ac6101a73660046111b5565b61040a565b005b60015460005403600019015b604051908152602001610150565b6101ac6101d63660046111df565b610497565b6101ba60095481565b6101ac6101f23660046111df565b6104a2565b6101ba600a5481565b61018161020e366004611180565b6104bd565b6101ba61022136600461121b565b6104cf565b6101ac61051e565b6008546001600160a01b0316610181565b610161610589565b6101ac610255366004611180565b610598565b6101ac610268366004611236565b6106a5565b6101ac61027b366004611288565b61073a565b61016161028e366004611180565b61078b565b6101446102a1366004611364565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6101ac6102dd36600461121b565b61080f565b60006001600160e01b031982166380ac58cd60e01b148061031357506001600160e01b03198216635b5e139f60e01b145b8061032e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461034390611397565b80601f016020809104026020016040519081016040528092919081815260200182805461036f90611397565b80156103bc5780601f10610391576101008083540402835291602001916103bc565b820191906000526020600020905b81548152906001019060200180831161039f57829003601f168201915b5050505050905090565b60006103d1826109f2565b6103ee576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610415826104bd565b9050806001600160a01b0316836001600160a01b0316036104495760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610469575061046781336102a1565b155b15610487576040516367d9dca160e11b815260040160405180910390fd5b610492838383610a2b565b505050565b610492838383610a87565b6104928383836040518060200160405280600081525061073a565b60006104c882610c76565b5192915050565b60006001600160a01b0382166104f8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461057d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6105876000610d9f565b565b60606003805461034390611397565b600a548111156105d45760405162461bcd60e51b81526020600482015260076024820152661f36b0bc2a3c3760c91b6044820152606401610574565b60006105e96001546000546000199190030190565b6009549091506105f983836113e7565b11156106315760405162461bcd60e51b81526020600482015260076024820152663e737570706c7960c81b6044820152606401610574565b61063b3383610df1565b60005b828110156104925781610650816113ff565b925050817fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b5565720761067e8461078b565b60405161068b919061116d565b60405180910390a28061069d816113ff565b91505061063e565b336001600160a01b038316036106ce5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610745848484610a87565b6001600160a01b0383163b15158015610767575061076584848484610e0f565b155b15610785576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610796826109f2565b6107b357604051630a14c4b560e41b815260040160405180910390fd5b60006107bd610efa565b905080516000036107dd5760405180602001604052806000815250610808565b806107e7846108da565b6040516020016107f8929190611418565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146108695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610574565b6001600160a01b0381166108ce5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610574565b6108d781610d9f565b50565b6060816000036109015750506040805180820190915260018152600360fc1b602082015290565b8160005b811561092b5780610915816113ff565b91506109249050600a8361145d565b9150610905565b60008167ffffffffffffffff81111561094657610946611272565b6040519080825280601f01601f191660200182016040528015610970576020820181803683370190505b5090505b84156109db57610985600183611471565b9150610992600a86611488565b61099d9060306113e7565b60f81b8183815181106109b2576109b261149c565b60200101906001600160f81b031916908160001a9053506109d4600a8661145d565b9450610974565b949350505050565b6001600160a01b03163b151590565b600081600111158015610a06575060005482105b801561032e575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610a9282610c76565b9050836001600160a01b031681600001516001600160a01b031614610ac95760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610ae75750610ae785336102a1565b80610b02575033610af7846103c6565b6001600160a01b0316145b905080610b2257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610b4957604051633a954ecd60e21b815260040160405180910390fd5b610b5560008487610a2b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610c2b576000548214610c2b578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015610ca6575060005481105b15610d8657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610d845780516001600160a01b031615610d1a579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610d7f579392505050565b610d1a565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e0b828260405180602001604052806000815250610f1a565b5050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610e449033908990889088906004016114b2565b6020604051808303816000875af1925050508015610e7f575060408051601f3d908101601f19168201909252610e7c918101906114ef565b60015b610edd573d808015610ead576040519150601f19603f3d011682016040523d82523d6000602084013e610eb2565b606091505b508051600003610ed5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606060405180606001604052806031815260200161150d60319139905090565b6000546001600160a01b038416610f4357604051622e076360e81b815260040160405180910390fd5b82600003610f645760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b1561108d575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46110566000878480600101955087610e0f565b611073576040516368d2bf6b60e11b815260040160405180910390fd5b80820361100b57826000541461108857600080fd5b6110d2565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480820361108e575b5060009081556107859085838684565b6001600160e01b0319811681146108d757600080fd5b60006020828403121561110a57600080fd5b8135610808816110e2565b60005b83811015611130578181015183820152602001611118565b838111156107855750506000910152565b60008151808452611159816020860160208601611115565b601f01601f19169290920160200192915050565b6020815260006108086020830184611141565b60006020828403121561119257600080fd5b5035919050565b80356001600160a01b03811681146111b057600080fd5b919050565b600080604083850312156111c857600080fd5b6111d183611199565b946020939093013593505050565b6000806000606084860312156111f457600080fd5b6111fd84611199565b925061120b60208501611199565b9150604084013590509250925092565b60006020828403121561122d57600080fd5b61080882611199565b6000806040838503121561124957600080fd5b61125283611199565b91506020830135801515811461126757600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561129e57600080fd5b6112a785611199565b93506112b560208601611199565b925060408501359150606085013567ffffffffffffffff808211156112d957600080fd5b818701915087601f8301126112ed57600080fd5b8135818111156112ff576112ff611272565b604051601f8201601f19908116603f0116810190838211818310171561132757611327611272565b816040528281528a602084870101111561134057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561137757600080fd5b61138083611199565b915061138e60208401611199565b90509250929050565b600181811c908216806113ab57607f821691505b6020821081036113cb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156113fa576113fa6113d1565b500190565b600060018201611411576114116113d1565b5060010190565b6000835161142a818460208801611115565b83519083019061143e818360208801611115565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b60008261146c5761146c611447565b500490565b600082821015611483576114836113d1565b500390565b60008261149757611497611447565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906114e590830184611141565b9695505050505050565b60006020828403121561150157600080fd5b8151610808816110e256fe61723a2f2f7762596b337a48455365776f314174514b4b7735644a2d71685176306a6f747574487062774d385965326b2fa26469706673582212202169533efad31825db4e0d57309a7773ea2a085b39da2c822dad3f2b03008b9864736f6c634300080d0033
Deployed Bytecode Sourcemap
46020:1118:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27092:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27092:305:0;;;;;;;;30205:100;;;:::i;:::-;;;;;;;:::i;31708:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;31708:204:0;1528:203:1;31271:371:0;;;;;;:::i;:::-;;:::i;:::-;;26341:303;47126:1;26595:12;26385:7;26579:13;:28;-1:-1:-1;;26579:46:0;26341:303;;;2319:25:1;;;2307:2;2292:18;26341:303:0;2173:177:1;32573:170:0;;;;;;:::i;:::-;;:::i;46128:32::-;;;;;;32814:185;;;;;;:::i;:::-;;:::i;46167:30::-;;;;;;30013:125;;;;;;:::i;:::-;;:::i;27461:206::-;;;;;;:::i;:::-;;:::i;4810:103::-;;;:::i;4159:87::-;4232:6;;-1:-1:-1;;;;;4232:6:0;4159:87;;30374:104;;;:::i;46387:495::-;;;;;;:::i;:::-;;:::i;31984:287::-;;;;;;:::i;:::-;;:::i;33070:369::-;;;;;;:::i;:::-;;:::i;30549:318::-;;;;;;:::i;:::-;;:::i;32342:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;32463:25:0;;;32439:4;32463:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32342:164;5068:201;;;;;;:::i;:::-;;:::i;27092:305::-;27194:4;-1:-1:-1;;;;;;27231:40:0;;-1:-1:-1;;;27231:40:0;;:105;;-1:-1:-1;;;;;;;27288:48:0;;-1:-1:-1;;;27288:48:0;27231:105;:158;;;-1:-1:-1;;;;;;;;;;17052:40:0;;;27353:36;27211:178;27092:305;-1:-1:-1;;27092:305:0:o;30205:100::-;30259:13;30292:5;30285:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30205:100;:::o;31708:204::-;31776:7;31801:16;31809:7;31801;:16::i;:::-;31796:64;;31826:34;;-1:-1:-1;;;31826:34:0;;;;;;;;;;;31796:64;-1:-1:-1;31880:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31880:24:0;;31708:204::o;31271:371::-;31344:13;31360:24;31376:7;31360:15;:24::i;:::-;31344:40;;31405:5;-1:-1:-1;;;;;31399:11:0;:2;-1:-1:-1;;;;;31399:11:0;;31395:48;;31419:24;;-1:-1:-1;;;31419:24:0;;;;;;;;;;;31395:48;2963:10;-1:-1:-1;;;;;31460:21:0;;;;;;:63;;-1:-1:-1;31486:37:0;31503:5;2963:10;32342:164;:::i;31486:37::-;31485:38;31460:63;31456:138;;;31547:35;;-1:-1:-1;;;31547:35:0;;;;;;;;;;;31456:138;31606:28;31615:2;31619:7;31628:5;31606:8;:28::i;:::-;31333:309;31271:371;;:::o;32573:170::-;32707:28;32717:4;32723:2;32727:7;32707:9;:28::i;32814:185::-;32952:39;32969:4;32975:2;32979:7;32952:39;;;;;;;;;;;;:16;:39::i;30013:125::-;30077:7;30104:21;30117:7;30104:12;:21::i;:::-;:26;;30013:125;-1:-1:-1;;30013:125:0:o;27461:206::-;27525:7;-1:-1:-1;;;;;27549:19:0;;27545:60;;27577:28;;-1:-1:-1;;;27577:28:0;;;;;;;;;;;27545:60;-1:-1:-1;;;;;;27631:19:0;;;;;:12;:19;;;;;:27;;;;27461:206::o;4810:103::-;4232:6;;-1:-1:-1;;;;;4232:6:0;2963:10;4379:23;4371:68;;;;-1:-1:-1;;;4371:68:0;;5358:2:1;4371:68:0;;;5340:21:1;;;5377:18;;;5370:30;5436:34;5416:18;;;5409:62;5488:18;;4371:68:0;;;;;;;;;4875:30:::1;4902:1;4875:18;:30::i;:::-;4810:103::o:0;30374:104::-;30430:13;30463:7;30456:14;;;;;:::i;46387:495::-;46455:11;;46445:6;:21;;46437:41;;;;-1:-1:-1;;;46437:41:0;;5719:2:1;46437:41:0;;;5701:21:1;5758:1;5738:18;;;5731:29;-1:-1:-1;;;5776:18:1;;;5769:37;5823:18;;46437:41:0;5517:330:1;46437:41:0;46489:21;46513:13;47126:1;26595:12;26385:7;26579:13;-1:-1:-1;;26579:28:0;;;:46;;26341:303;46513:13;46571:10;;46489:37;;-1:-1:-1;46545:22:0;46561:6;46489:37;46545:22;:::i;:::-;:36;;46537:56;;;;-1:-1:-1;;;46537:56:0;;6319:2:1;46537:56:0;;;6301:21:1;6358:1;6338:18;;;6331:29;-1:-1:-1;;;6376:18:1;;;6369:37;6423:18;;46537:56:0;6117:330:1;46537:56:0;46604:29;46614:10;46626:6;46604:9;:29::i;:::-;46649:9;46644:231;46664:6;46660:1;:10;46644:231;;;46692:15;;;;:::i;:::-;;;;46849:13;46811:52;46824:23;46833:13;46824:8;:23::i;:::-;46811:52;;;;;;:::i;:::-;;;;;;;;46672:3;;;;:::i;:::-;;;;46644:231;;31984:287;2963:10;-1:-1:-1;;;;;32083:24:0;;;32079:54;;32116:17;;-1:-1:-1;;;32116:17:0;;;;;;;;;;;32079:54;2963:10;32146:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32146:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32146:53:0;;;;;;;;;;32215:48;;540:41:1;;;32146:42:0;;2963:10;32215:48;;513:18:1;32215:48:0;;;;;;;31984:287;;:::o;33070:369::-;33237:28;33247:4;33253:2;33257:7;33237:9;:28::i;:::-;-1:-1:-1;;;;;33280:13:0;;7155:19;:23;;33280:76;;;;;33300:56;33331:4;33337:2;33341:7;33350:5;33300:30;:56::i;:::-;33299:57;33280:76;33276:156;;;33380:40;;-1:-1:-1;;;33380:40:0;;;;;;;;;;;33276:156;33070:369;;;;:::o;30549:318::-;30622:13;30653:16;30661:7;30653;:16::i;:::-;30648:59;;30678:29;;-1:-1:-1;;;30678:29:0;;;;;;;;;;;30648:59;30720:21;30744:10;:8;:10::i;:::-;30720:34;;30778:7;30772:21;30797:1;30772:26;:87;;;;;;;;;;;;;;;;;30825:7;30834:18;:7;:16;:18::i;:::-;30808:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30772:87;30765:94;30549:318;-1:-1:-1;;;30549:318:0:o;5068:201::-;4232:6;;-1:-1:-1;;;;;4232:6:0;2963:10;4379:23;4371:68;;;;-1:-1:-1;;;4371:68:0;;5358:2:1;4371:68:0;;;5340:21:1;;;5377:18;;;5370:30;5436:34;5416:18;;;5409:62;5488:18;;4371:68:0;5156:356:1;4371:68:0;-1:-1:-1;;;;;5157:22:0;::::1;5149:73;;;::::0;-1:-1:-1;;;5149:73:0;;7269:2:1;5149:73:0::1;::::0;::::1;7251:21:1::0;7308:2;7288:18;;;7281:30;7347:34;7327:18;;;7320:62;-1:-1:-1;;;7398:18:1;;;7391:36;7444:19;;5149:73:0::1;7067:402:1::0;5149:73:0::1;5233:28;5252:8;5233:18;:28::i;:::-;5068:201:::0;:::o;445:723::-;501:13;722:5;731:1;722:10;718:53;;-1:-1:-1;;749:10:0;;;;;;;;;;;;-1:-1:-1;;;749:10:0;;;;;445:723::o;718:53::-;796:5;781:12;837:78;844:9;;837:78;;870:8;;;;:::i;:::-;;-1:-1:-1;893:10:0;;-1:-1:-1;901:2:0;893:10;;:::i;:::-;;;837:78;;;925:19;957:6;947:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;947:17:0;;925:39;;975:154;982:10;;975:154;;1009:11;1019:1;1009:11;;:::i;:::-;;-1:-1:-1;1078:10:0;1086:2;1078:5;:10;:::i;:::-;1065:24;;:2;:24;:::i;:::-;1052:39;;1035:6;1042;1035:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1035:56:0;;;;;;;;-1:-1:-1;1106:11:0;1115:2;1106:11;;:::i;:::-;;;975:154;;;1153:6;445:723;-1:-1:-1;;;;445:723:0:o;6860:326::-;-1:-1:-1;;;;;7155:19:0;;:23;;;6860:326::o;33694:174::-;33751:4;33794:7;47126:1;33775:26;;:53;;;;;33815:13;;33805:7;:23;33775:53;:85;;;;-1:-1:-1;;33833:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33833:27:0;;;;33832:28;;33694:174::o;42920:196::-;43035:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43035:29:0;-1:-1:-1;;;;;43035:29:0;;;;;;;;;43080:28;;43035:24;;43080:28;;;;;;;42920:196;;;:::o;37868:2130::-;37983:35;38021:21;38034:7;38021:12;:21::i;:::-;37983:59;;38081:4;-1:-1:-1;;;;;38059:26:0;:13;:18;;;-1:-1:-1;;;;;38059:26:0;;38055:67;;38094:28;;-1:-1:-1;;;38094:28:0;;;;;;;;;;;38055:67;38135:22;2963:10;-1:-1:-1;;;;;38161:20:0;;;;:73;;-1:-1:-1;38198:36:0;38215:4;2963:10;32342:164;:::i;38198:36::-;38161:126;;;-1:-1:-1;2963:10:0;38251:20;38263:7;38251:11;:20::i;:::-;-1:-1:-1;;;;;38251:36:0;;38161:126;38135:153;;38306:17;38301:66;;38332:35;;-1:-1:-1;;;38332:35:0;;;;;;;;;;;38301:66;-1:-1:-1;;;;;38382:16:0;;38378:52;;38407:23;;-1:-1:-1;;;38407:23:0;;;;;;;;;;;38378:52;38551:35;38568:1;38572:7;38581:4;38551:8;:35::i;:::-;-1:-1:-1;;;;;38882:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38882:31:0;;;;;;;-1:-1:-1;;38882:31:0;;;;;;;38928:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38928:29:0;;;;;;;;;;;39008:20;;;:11;:20;;;;;;39043:18;;-1:-1:-1;;;;;;39076:49:0;;;;-1:-1:-1;;;39109:15:0;39076:49;;;;;;;;;;39399:11;;39459:24;;;;;39502:13;;39008:20;;39459:24;;39502:13;39498:384;;39712:13;;39697:11;:28;39693:174;;39750:20;;39819:28;;;;39793:54;;-1:-1:-1;;;39793:54:0;-1:-1:-1;;;;;;39793:54:0;;;-1:-1:-1;;;;;39750:20:0;;39793:54;;;;39693:174;38857:1036;;;39929:7;39925:2;-1:-1:-1;;;;;39910:27:0;39919:4;-1:-1:-1;;;;;39910:27:0;;;;;;;;;;;37972:2026;;37868:2130;;;:::o;28842:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28953:7:0;;47126:1;29002:23;;:47;;;;;29036:13;;29029:4;:20;29002:47;28998:886;;;29070:31;29104:17;;;:11;:17;;;;;;;;;29070:51;;;;;;;;;-1:-1:-1;;;;;29070:51:0;;;;-1:-1:-1;;;29070:51:0;;;;;;;;;;;-1:-1:-1;;;29070:51:0;;;;;;;;;;;;;;29140:729;;29190:14;;-1:-1:-1;;;;;29190:28:0;;29186:101;;29254:9;28842:1109;-1:-1:-1;;;28842:1109:0:o;29186:101::-;-1:-1:-1;;;29629:6:0;29674:17;;;;:11;:17;;;;;;;;;29662:29;;;;;;;;;-1:-1:-1;;;;;29662:29:0;;;;;-1:-1:-1;;;29662:29:0;;;;;;;;;;;-1:-1:-1;;;29662:29:0;;;;;;;;;;;;;29722:28;29718:109;;29790:9;28842:1109;-1:-1:-1;;;28842:1109:0:o;29718:109::-;29589:261;;;29051:833;28998:886;29912:31;;-1:-1:-1;;;29912:31:0;;;;;;;;;;;5429:191;5522:6;;;-1:-1:-1;;;;;5539:17:0;;;-1:-1:-1;;;;;;5539:17:0;;;;;;;5572:40;;5522:6;;;5539:17;5522:6;;5572:40;;5503:16;;5572:40;5492:128;5429:191;:::o;33952:104::-;34021:27;34031:2;34035:8;34021:27;;;;;;;;;;;;:9;:27::i;:::-;33952:104;;:::o;43608:667::-;43792:72;;-1:-1:-1;;;43792:72:0;;43771:4;;-1:-1:-1;;;;;43792:36:0;;;;;:72;;2963:10;;43843:4;;43849:7;;43858:5;;43792:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43792:72:0;;;;;;;;-1:-1:-1;;43792:72:0;;;;;;;;;;;;:::i;:::-;;;43788:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44026:6;:13;44043:1;44026:18;44022:235;;44072:40;;-1:-1:-1;;;44072:40:0;;;;;;;;;;;44022:235;44215:6;44209:13;44200:6;44196:2;44192:15;44185:38;43788:480;-1:-1:-1;;;;;;43911:55:0;-1:-1:-1;;;43911:55:0;;-1:-1:-1;43608:667:0;;;;;;:::o;46890:144::-;46942:13;46968:58;;;;;;;;;;;;;;;;;;;46890:144;:::o;34430:1751::-;34553:20;34576:13;-1:-1:-1;;;;;34604:16:0;;34600:48;;34629:19;;-1:-1:-1;;;34629:19:0;;;;;;;;;;;34600:48;34663:8;34675:1;34663:13;34659:44;;34685:18;;-1:-1:-1;;;34685:18:0;;;;;;;;;;;34659:44;-1:-1:-1;;;;;35054:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35113:49:0;;35054:44;;;;;;;;35113:49;;;;-1:-1:-1;;35054:44:0;;;;;;35113:49;;;;;;;;;;;;;;;;35179:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35229:66:0;;;-1:-1:-1;;;35279:15:0;35229:66;;;;;;;;;;;;;35179:25;;35376:23;;;;7155:19;:23;35416:633;;35456:314;35487:38;;35512:12;;-1:-1:-1;;;;;35487:38:0;;;35504:1;;35487:38;;35504:1;;35487:38;35553:69;35592:1;35596:2;35600:14;;;;;;35616:5;35553:30;:69::i;:::-;35548:174;;35658:40;;-1:-1:-1;;;35658:40:0;;;;;;;;;;;35548:174;35765:3;35749:12;:19;35456:314;;35851:12;35834:13;;:29;35830:43;;35865:8;;;35830:43;35416:633;;;35914:120;35945:40;;35970:14;;;;;-1:-1:-1;;;;;35945:40:0;;;35962:1;;35945:40;;35962:1;;35945:40;36029:3;36013:12;:19;35914:120;;35416:633;-1:-1:-1;36063:13:0;:28;;;36113:60;;36146:2;36150:12;36164:8;36113:60;:::i;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:347::-;2944:6;2952;3005:2;2993:9;2984:7;2980:23;2976:32;2973:52;;;3021:1;3018;3011:12;2973:52;3044:29;3063:9;3044:29;:::i;:::-;3034:39;;3123:2;3112:9;3108:18;3095:32;3170:5;3163:13;3156:21;3149:5;3146:32;3136:60;;3192:1;3189;3182:12;3136:60;3215:5;3205:15;;;2879:347;;;;;:::o;3231:127::-;3292:10;3287:3;3283:20;3280:1;3273:31;3323:4;3320:1;3313:15;3347:4;3344:1;3337:15;3363:1138;3458:6;3466;3474;3482;3535:3;3523:9;3514:7;3510:23;3506:33;3503:53;;;3552:1;3549;3542:12;3503:53;3575:29;3594:9;3575:29;:::i;:::-;3565:39;;3623:38;3657:2;3646:9;3642:18;3623:38;:::i;:::-;3613:48;;3708:2;3697:9;3693:18;3680:32;3670:42;;3763:2;3752:9;3748:18;3735:32;3786:18;3827:2;3819:6;3816:14;3813:34;;;3843:1;3840;3833:12;3813:34;3881:6;3870:9;3866:22;3856:32;;3926:7;3919:4;3915:2;3911:13;3907:27;3897:55;;3948:1;3945;3938:12;3897:55;3984:2;3971:16;4006:2;4002;3999:10;3996:36;;;4012:18;;:::i;:::-;4087:2;4081:9;4055:2;4141:13;;-1:-1:-1;;4137:22:1;;;4161:2;4133:31;4129:40;4117:53;;;4185:18;;;4205:22;;;4182:46;4179:72;;;4231:18;;:::i;:::-;4271:10;4267:2;4260:22;4306:2;4298:6;4291:18;4346:7;4341:2;4336;4332;4328:11;4324:20;4321:33;4318:53;;;4367:1;4364;4357:12;4318:53;4423:2;4418;4414;4410:11;4405:2;4397:6;4393:15;4380:46;4468:1;4463:2;4458;4450:6;4446:15;4442:24;4435:35;4489:6;4479:16;;;;;;;3363:1138;;;;;;;:::o;4506:260::-;4574:6;4582;4635:2;4623:9;4614:7;4610:23;4606:32;4603:52;;;4651:1;4648;4641:12;4603:52;4674:29;4693:9;4674:29;:::i;:::-;4664:39;;4722:38;4756:2;4745:9;4741:18;4722:38;:::i;:::-;4712:48;;4506:260;;;;;:::o;4771:380::-;4850:1;4846:12;;;;4893;;;4914:61;;4968:4;4960:6;4956:17;4946:27;;4914:61;5021:2;5013:6;5010:14;4990:18;4987:38;4984:161;;5067:10;5062:3;5058:20;5055:1;5048:31;5102:4;5099:1;5092:15;5130:4;5127:1;5120:15;4984:161;;4771:380;;;:::o;5852:127::-;5913:10;5908:3;5904:20;5901:1;5894:31;5944:4;5941:1;5934:15;5968:4;5965:1;5958:15;5984:128;6024:3;6055:1;6051:6;6048:1;6045:13;6042:39;;;6061:18;;:::i;:::-;-1:-1:-1;6097:9:1;;5984:128::o;6452:135::-;6491:3;6512:17;;;6509:43;;6532:18;;:::i;:::-;-1:-1:-1;6579:1:1;6568:13;;6452:135::o;6592:470::-;6771:3;6809:6;6803:13;6825:53;6871:6;6866:3;6859:4;6851:6;6847:17;6825:53;:::i;:::-;6941:13;;6900:16;;;;6963:57;6941:13;6900:16;6997:4;6985:17;;6963:57;:::i;:::-;7036:20;;6592:470;-1:-1:-1;;;;6592:470:1:o;7474:127::-;7535:10;7530:3;7526:20;7523:1;7516:31;7566:4;7563:1;7556:15;7590:4;7587:1;7580:15;7606:120;7646:1;7672;7662:35;;7677:18;;:::i;:::-;-1:-1:-1;7711:9:1;;7606:120::o;7731:125::-;7771:4;7799:1;7796;7793:8;7790:34;;;7804:18;;:::i;:::-;-1:-1:-1;7841:9:1;;7731:125::o;7861:112::-;7893:1;7919;7909:35;;7924:18;;:::i;:::-;-1:-1:-1;7958:9:1;;7861:112::o;7978:127::-;8039:10;8034:3;8030:20;8027:1;8020:31;8070:4;8067:1;8060:15;8094:4;8091:1;8084:15;8110:489;-1:-1:-1;;;;;8379:15:1;;;8361:34;;8431:15;;8426:2;8411:18;;8404:43;8478:2;8463:18;;8456:34;;;8526:3;8521:2;8506:18;;8499:31;;;8304:4;;8547:46;;8573:19;;8565:6;8547:46;:::i;:::-;8539:54;8110:489;-1:-1:-1;;;;;;8110:489:1:o;8604:249::-;8673:6;8726:2;8714:9;8705:7;8701:23;8697:32;8694:52;;;8742:1;8739;8732:12;8694:52;8774:9;8768:16;8793:30;8817:5;8793:30;:::i
Swarm Source
ipfs://2169533efad31825db4e0d57309a7773ea2a085b39da2c822dad3f2b03008b98
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.