Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
2,669 moonbutts
Holders
711
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 moonbuttsLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Moonbutts
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-27 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // 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: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); 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; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // IERC721 // ============================== /** * @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); // ============================== // IERC721Metadata // ============================== /** * @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 // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @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 IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _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 `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // 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(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev 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 Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_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 { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // 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. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @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, _toString(tokenId))) : ''; } /** * @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 Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @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 == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), 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.code.length != 0) if (!_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 && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not 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 { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { 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 { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); 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 { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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 { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } 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 { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } 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 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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__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 {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: Moonbutts.sol pragma solidity >=0.8.0 <0.9.0; contract Moonbutts is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public _baseTokenURI; string public hiddenMetadataUri; uint256 public cost = 0.02 ether; uint256 public maxSupply = 2669; uint256 public maxMintAmountPerTx = 25; bool public paused = false; bool public revealed; constructor( string memory _hiddenMetadataUri ) ERC721A("Moonbutts", "moonbutts") { _safeMint(msg.sender, 1); setHiddenMetadataUri(_hiddenMetadataUri); } function mint(uint256 _mintAmount) public payable nonReentrant { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!"); require(!paused, "The contract is paused!"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); _safeMint(_msgSender(), _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner { _safeMint(_receiver, _mintAmount); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner nonReentrant { payable(owner()).transfer(address(this).balance); } // METADATA HANDLING function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setBaseURI(string calldata baseURI) public onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "URI does not exist!"); if (revealed) { return string(abi.encodePacked(_baseURI(), _tokenId.toString(), ".json")); } else { return hiddenMetadataUri; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","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"},{"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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405266470de4df820000600c55610a6d600d556019600e55600f805460ff191690553480156200003157600080fd5b506040516200241b3803806200241b83398101604081905262000054916200052f565b604051806040016040528060098152602001684d6f6f6e627574747360b81b815250604051806040016040528060098152602001686d6f6f6e627574747360b81b8152508160029080519060200190620000b092919062000456565b508051620000c690600390602084019062000456565b5050600160005550620000d933620000ff565b60016009819055620000ed90339062000151565b620000f88162000177565b50620006bf565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000173828260405180602001604052806000815250620001eb60201b60201c565b5050565b6008546001600160a01b03163314620001d65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200017390600b90602084019062000456565b6000546001600160a01b0384166200021557604051622e076360e81b815260040160405180910390fd5b82620002345760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b1562000300575b60405182906001600160a01b03881690600090600080516020620023fb833981519152908290a46001820191620002c59060009088908762000355565b620002e3576040516368d2bf6b60e11b815260040160405180910390fd5b80821062000288578260005414620002fa57600080fd5b62000335565b5b6040516001830192906001600160a01b03881690600090600080516020620023fb833981519152908290a480821062000301575b5060009081556200034f908583866001600160e01b038516565b50505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906200038c903390899088908890600401620005e7565b602060405180830381600087803b158015620003a757600080fd5b505af1925050508015620003da575060408051601f3d908101601f19168201909252620003d791810190620004fc565b60015b62000439573d8080156200040b576040519150601f19603f3d011682016040523d82523d6000602084013e62000410565b606091505b50805162000431576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b82805462000464906200066c565b90600052602060002090601f016020900481019282620004885760008555620004d3565b82601f10620004a357805160ff1916838001178555620004d3565b82800160010185558215620004d3579182015b82811115620004d3578251825591602001919060010190620004b6565b50620004e1929150620004e5565b5090565b5b80821115620004e15760008155600101620004e6565b6000602082840312156200050f57600080fd5b81516001600160e01b0319811681146200052857600080fd5b9392505050565b6000602082840312156200054257600080fd5b81516001600160401b03808211156200055a57600080fd5b818401915084601f8301126200056f57600080fd5b815181811115620005845762000584620006a9565b604051601f8201601f19908116603f01168101908382118183101715620005af57620005af620006a9565b81604052828152876020848701011115620005c957600080fd5b620005dc8360208301602088016200063d565b979650505050505050565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620006268160a08501602087016200063d565b601f01601f19169190910160a00195945050505050565b60005b838110156200065a57818101518382015260200162000640565b838111156200034f5750506000910152565b600181811c908216806200068157607f821691505b60208210811415620006a357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611d2c80620006cf6000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063b071401b116100a0578063d5abeb011161006f578063d5abeb011461054e578063e0a8085314610564578063e985e9c514610584578063efbd73f4146105cd578063f2fde38b146105ed57600080fd5b8063b071401b146104d9578063b88d4fde146104f9578063c87b56dd14610519578063cfc86f7b1461053957600080fd5b806395d89b41116100dc57806395d89b411461047c578063a0712d6814610491578063a22cb465146104a4578063a45ba8e7146104c457600080fd5b806370a0823114610413578063715018a6146104335780638da5cb5b1461044857806394354fd01461046657600080fd5b80633ccfd60b116101855780635183022711610154578063518302271461039a57806355f804b3146103b95780635c975abb146103d95780636352211e146103f357600080fd5b80633ccfd60b1461032557806342842e0e1461033a57806344a0d68a1461035a5780634fdd43cb1461037a57600080fd5b806313faede6116101c157806313faede6146102a457806316c38b3c146102c857806318160ddd146102e857806323b872dd1461030557600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e36600461196f565b61060d565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61065f565b60405161021f9190611b48565b34801561025657600080fd5b5061026a610265366004611a64565b6106f1565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d36600461192a565b610735565b005b3480156102b057600080fd5b506102ba600c5481565b60405190815260200161021f565b3480156102d457600080fd5b506102a26102e3366004611954565b610808565b3480156102f457600080fd5b5060015460005403600019016102ba565b34801561031157600080fd5b506102a2610320366004611848565b61084e565b34801561033157600080fd5b506102a261085e565b34801561034657600080fd5b506102a2610355366004611848565b610921565b34801561036657600080fd5b506102a2610375366004611a64565b61093c565b34801561038657600080fd5b506102a2610395366004611a1b565b61096b565b3480156103a657600080fd5b50600f5461021390610100900460ff1681565b3480156103c557600080fd5b506102a26103d43660046119a9565b6109ac565b3480156103e557600080fd5b50600f546102139060ff1681565b3480156103ff57600080fd5b5061026a61040e366004611a64565b6109e2565b34801561041f57600080fd5b506102ba61042e3660046117fa565b6109ed565b34801561043f57600080fd5b506102a2610a3c565b34801561045457600080fd5b506008546001600160a01b031661026a565b34801561047257600080fd5b506102ba600e5481565b34801561048857600080fd5b5061023d610a72565b6102a261049f366004611a64565b610a81565b3480156104b057600080fd5b506102a26104bf366004611900565b610c3d565b3480156104d057600080fd5b5061023d610cd3565b3480156104e557600080fd5b506102a26104f4366004611a64565b610d61565b34801561050557600080fd5b506102a2610514366004611884565b610d90565b34801561052557600080fd5b5061023d610534366004611a64565b610dda565b34801561054557600080fd5b5061023d610f06565b34801561055a57600080fd5b506102ba600d5481565b34801561057057600080fd5b506102a261057f366004611954565b610f13565b34801561059057600080fd5b5061021361059f366004611815565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105d957600080fd5b506102a26105e8366004611a7d565b610f57565b3480156105f957600080fd5b506102a26106083660046117fa565b610f8b565b60006301ffc9a760e01b6001600160e01b03198316148061063e57506380ac58cd60e01b6001600160e01b03198316145b806106595750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461066e90611c1e565b80601f016020809104026020016040519081016040528092919081815260200182805461069a90611c1e565b80156106e75780601f106106bc576101008083540402835291602001916106e7565b820191906000526020600020905b8154815290600101906020018083116106ca57829003601f168201915b5050505050905090565b60006106fc82611026565b610719576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107408261105b565b9050806001600160a01b0316836001600160a01b031614156107755760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107ac5761078f813361059f565b6107ac576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b0316331461083b5760405162461bcd60e51b815260040161083290611b5b565b60405180910390fd5b600f805460ff1916911515919091179055565b6108598383836110cb565b505050565b6008546001600160a01b031633146108885760405162461bcd60e51b815260040161083290611b5b565b600260095414156108db5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610832565b60026009556008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610919573d6000803e3d6000fd5b506001600955565b61085983838360405180602001604052806000815250610d90565b6008546001600160a01b031633146109665760405162461bcd60e51b815260040161083290611b5b565b600c55565b6008546001600160a01b031633146109955760405162461bcd60e51b815260040161083290611b5b565b80516109a890600b906020840190611650565b5050565b6008546001600160a01b031633146109d65760405162461bcd60e51b815260040161083290611b5b565b610859600a83836116d4565b60006106598261105b565b60006001600160a01b038216610a16576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a665760405162461bcd60e51b815260040161083290611b5b565b610a70600061126e565b565b60606003805461066e90611c1e565b60026009541415610ad45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610832565b60026009558015801590610aea5750600e548111155b610b2d5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610832565b600d546001546000548391900360001901610b489190611b90565b1115610b8d5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610832565b600f5460ff1615610be05760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610832565b80600c54610bee9190611bbc565b341015610c335760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610832565b61091933826112c0565b6001600160a01b038216331415610c675760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610ce090611c1e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0c90611c1e565b8015610d595780601f10610d2e57610100808354040283529160200191610d59565b820191906000526020600020905b815481529060010190602001808311610d3c57829003601f168201915b505050505081565b6008546001600160a01b03163314610d8b5760405162461bcd60e51b815260040161083290611b5b565b600e55565b610d9b8484846110cb565b6001600160a01b0383163b15610dd457610db7848484846112da565b610dd4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610de582611026565b610e275760405162461bcd60e51b815260206004820152601360248201527255524920646f6573206e6f742065786973742160681b6044820152606401610832565b600f54610100900460ff1615610e6f57610e3f6113d2565b610e48836113e1565b604051602001610e59929190611acc565b6040516020818303038152906040529050919050565b600b8054610e7c90611c1e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea890611c1e565b8015610ef55780601f10610eca57610100808354040283529160200191610ef5565b820191906000526020600020905b815481529060010190602001808311610ed857829003601f168201915b50505050509050919050565b919050565b600a8054610ce090611c1e565b6008546001600160a01b03163314610f3d5760405162461bcd60e51b815260040161083290611b5b565b600f80549115156101000261ff0019909216919091179055565b6008546001600160a01b03163314610f815760405162461bcd60e51b815260040161083290611b5b565b6109a881836112c0565b6008546001600160a01b03163314610fb55760405162461bcd60e51b815260040161083290611b5b565b6001600160a01b03811661101a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610832565b6110238161126e565b50565b60008160011115801561103a575060005482105b8015610659575050600090815260046020526040902054600160e01b161590565b600081806001116110b2576000548110156110b257600081815260046020526040902054600160e01b81166110b0575b806110a957506000190160008181526004602052604090205461108b565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b60006110d68261105b565b9050836001600160a01b0316816001600160a01b0316146111095760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806111275750611127853361059f565b80611142575033611137846106f1565b6001600160a01b0316145b90508061116257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661118957604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661122657600183016000818152600460205260409020546112245760005481146112245760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109a88282604051806020016040528060008152506114df565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061130f903390899088908890600401611b0b565b602060405180830381600087803b15801561132957600080fd5b505af1925050508015611359575060408051601f3d908101601f191682019092526113569181019061198c565b60015b6113b4573d808015611387576040519150601f19603f3d011682016040523d82523d6000602084013e61138c565b606091505b5080516113ac576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461066e90611c1e565b6060816114055750506040805180820190915260018152600360fc1b602082015290565b8160005b811561142f578061141981611c59565b91506114289050600a83611ba8565b9150611409565b60008167ffffffffffffffff81111561144a5761144a611cca565b6040519080825280601f01601f191660200182016040528015611474576020820181803683370190505b5090505b84156113ca57611489600183611bdb565b9150611496600a86611c74565b6114a1906030611b90565b60f81b8183815181106114b6576114b6611cb4565b60200101906001600160f81b031916908160001a9053506114d8600a86611ba8565b9450611478565b6000546001600160a01b03841661150857604051622e076360e81b815260040160405180910390fd5b826115265760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156115fb575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46115c460008784806001019550876112da565b6115e1576040516368d2bf6b60e11b815260040160405180910390fd5b8082106115795782600054146115f657600080fd5b611640565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106115fc575b506000908155610dd49085838684565b82805461165c90611c1e565b90600052602060002090601f01602090048101928261167e57600085556116c4565b82601f1061169757805160ff19168380011785556116c4565b828001600101855582156116c4579182015b828111156116c45782518255916020019190600101906116a9565b506116d0929150611748565b5090565b8280546116e090611c1e565b90600052602060002090601f01602090048101928261170257600085556116c4565b82601f1061171b5782800160ff198235161785556116c4565b828001600101855582156116c4579182015b828111156116c457823582559160200191906001019061172d565b5b808211156116d05760008155600101611749565b600067ffffffffffffffff8084111561177857611778611cca565b604051601f8501601f19908116603f011681019082821181831017156117a0576117a0611cca565b816040528093508581528686860111156117b957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114610f0157600080fd5b80358015158114610f0157600080fd5b60006020828403121561180c57600080fd5b6110a9826117d3565b6000806040838503121561182857600080fd5b611831836117d3565b915061183f602084016117d3565b90509250929050565b60008060006060848603121561185d57600080fd5b611866846117d3565b9250611874602085016117d3565b9150604084013590509250925092565b6000806000806080858703121561189a57600080fd5b6118a3856117d3565b93506118b1602086016117d3565b925060408501359150606085013567ffffffffffffffff8111156118d457600080fd5b8501601f810187136118e557600080fd5b6118f48782356020840161175d565b91505092959194509250565b6000806040838503121561191357600080fd5b61191c836117d3565b915061183f602084016117ea565b6000806040838503121561193d57600080fd5b611946836117d3565b946020939093013593505050565b60006020828403121561196657600080fd5b6110a9826117ea565b60006020828403121561198157600080fd5b81356110a981611ce0565b60006020828403121561199e57600080fd5b81516110a981611ce0565b600080602083850312156119bc57600080fd5b823567ffffffffffffffff808211156119d457600080fd5b818501915085601f8301126119e857600080fd5b8135818111156119f757600080fd5b866020828501011115611a0957600080fd5b60209290920196919550909350505050565b600060208284031215611a2d57600080fd5b813567ffffffffffffffff811115611a4457600080fd5b8201601f81018413611a5557600080fd5b6113ca8482356020840161175d565b600060208284031215611a7657600080fd5b5035919050565b60008060408385031215611a9057600080fd5b8235915061183f602084016117d3565b60008151808452611ab8816020860160208601611bf2565b601f01601f19169290920160200192915050565b60008351611ade818460208801611bf2565b835190830190611af2818360208801611bf2565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b3e90830184611aa0565b9695505050505050565b6020815260006110a96020830184611aa0565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611ba357611ba3611c88565b500190565b600082611bb757611bb7611c9e565b500490565b6000816000190483118215151615611bd657611bd6611c88565b500290565b600082821015611bed57611bed611c88565b500390565b60005b83811015611c0d578181015183820152602001611bf5565b83811115610dd45750506000910152565b600181811c90821680611c3257607f821691505b60208210811415611c5357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c6d57611c6d611c88565b5060010190565b600082611c8357611c83611c9e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461102357600080fdfea2646970667358221220eb97054badf4a3ade6c3ce3e4de200169e297e2cdd8b869a59fa9c9cc3960c0564736f6c63430008070033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000042697066733a2f2f516d5a485165684673557232457a704a4758676a726b4b55663236567773364e4a4a674d34346949416b4b476a31672f68696464656e2e6a736f6e000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c806370a082311161010d578063b071401b116100a0578063d5abeb011161006f578063d5abeb011461054e578063e0a8085314610564578063e985e9c514610584578063efbd73f4146105cd578063f2fde38b146105ed57600080fd5b8063b071401b146104d9578063b88d4fde146104f9578063c87b56dd14610519578063cfc86f7b1461053957600080fd5b806395d89b41116100dc57806395d89b411461047c578063a0712d6814610491578063a22cb465146104a4578063a45ba8e7146104c457600080fd5b806370a0823114610413578063715018a6146104335780638da5cb5b1461044857806394354fd01461046657600080fd5b80633ccfd60b116101855780635183022711610154578063518302271461039a57806355f804b3146103b95780635c975abb146103d95780636352211e146103f357600080fd5b80633ccfd60b1461032557806342842e0e1461033a57806344a0d68a1461035a5780634fdd43cb1461037a57600080fd5b806313faede6116101c157806313faede6146102a457806316c38b3c146102c857806318160ddd146102e857806323b872dd1461030557600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e36600461196f565b61060d565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61065f565b60405161021f9190611b48565b34801561025657600080fd5b5061026a610265366004611a64565b6106f1565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d36600461192a565b610735565b005b3480156102b057600080fd5b506102ba600c5481565b60405190815260200161021f565b3480156102d457600080fd5b506102a26102e3366004611954565b610808565b3480156102f457600080fd5b5060015460005403600019016102ba565b34801561031157600080fd5b506102a2610320366004611848565b61084e565b34801561033157600080fd5b506102a261085e565b34801561034657600080fd5b506102a2610355366004611848565b610921565b34801561036657600080fd5b506102a2610375366004611a64565b61093c565b34801561038657600080fd5b506102a2610395366004611a1b565b61096b565b3480156103a657600080fd5b50600f5461021390610100900460ff1681565b3480156103c557600080fd5b506102a26103d43660046119a9565b6109ac565b3480156103e557600080fd5b50600f546102139060ff1681565b3480156103ff57600080fd5b5061026a61040e366004611a64565b6109e2565b34801561041f57600080fd5b506102ba61042e3660046117fa565b6109ed565b34801561043f57600080fd5b506102a2610a3c565b34801561045457600080fd5b506008546001600160a01b031661026a565b34801561047257600080fd5b506102ba600e5481565b34801561048857600080fd5b5061023d610a72565b6102a261049f366004611a64565b610a81565b3480156104b057600080fd5b506102a26104bf366004611900565b610c3d565b3480156104d057600080fd5b5061023d610cd3565b3480156104e557600080fd5b506102a26104f4366004611a64565b610d61565b34801561050557600080fd5b506102a2610514366004611884565b610d90565b34801561052557600080fd5b5061023d610534366004611a64565b610dda565b34801561054557600080fd5b5061023d610f06565b34801561055a57600080fd5b506102ba600d5481565b34801561057057600080fd5b506102a261057f366004611954565b610f13565b34801561059057600080fd5b5061021361059f366004611815565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105d957600080fd5b506102a26105e8366004611a7d565b610f57565b3480156105f957600080fd5b506102a26106083660046117fa565b610f8b565b60006301ffc9a760e01b6001600160e01b03198316148061063e57506380ac58cd60e01b6001600160e01b03198316145b806106595750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461066e90611c1e565b80601f016020809104026020016040519081016040528092919081815260200182805461069a90611c1e565b80156106e75780601f106106bc576101008083540402835291602001916106e7565b820191906000526020600020905b8154815290600101906020018083116106ca57829003601f168201915b5050505050905090565b60006106fc82611026565b610719576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107408261105b565b9050806001600160a01b0316836001600160a01b031614156107755760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107ac5761078f813361059f565b6107ac576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b0316331461083b5760405162461bcd60e51b815260040161083290611b5b565b60405180910390fd5b600f805460ff1916911515919091179055565b6108598383836110cb565b505050565b6008546001600160a01b031633146108885760405162461bcd60e51b815260040161083290611b5b565b600260095414156108db5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610832565b60026009556008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610919573d6000803e3d6000fd5b506001600955565b61085983838360405180602001604052806000815250610d90565b6008546001600160a01b031633146109665760405162461bcd60e51b815260040161083290611b5b565b600c55565b6008546001600160a01b031633146109955760405162461bcd60e51b815260040161083290611b5b565b80516109a890600b906020840190611650565b5050565b6008546001600160a01b031633146109d65760405162461bcd60e51b815260040161083290611b5b565b610859600a83836116d4565b60006106598261105b565b60006001600160a01b038216610a16576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a665760405162461bcd60e51b815260040161083290611b5b565b610a70600061126e565b565b60606003805461066e90611c1e565b60026009541415610ad45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610832565b60026009558015801590610aea5750600e548111155b610b2d5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610832565b600d546001546000548391900360001901610b489190611b90565b1115610b8d5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610832565b600f5460ff1615610be05760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610832565b80600c54610bee9190611bbc565b341015610c335760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610832565b61091933826112c0565b6001600160a01b038216331415610c675760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610ce090611c1e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0c90611c1e565b8015610d595780601f10610d2e57610100808354040283529160200191610d59565b820191906000526020600020905b815481529060010190602001808311610d3c57829003601f168201915b505050505081565b6008546001600160a01b03163314610d8b5760405162461bcd60e51b815260040161083290611b5b565b600e55565b610d9b8484846110cb565b6001600160a01b0383163b15610dd457610db7848484846112da565b610dd4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610de582611026565b610e275760405162461bcd60e51b815260206004820152601360248201527255524920646f6573206e6f742065786973742160681b6044820152606401610832565b600f54610100900460ff1615610e6f57610e3f6113d2565b610e48836113e1565b604051602001610e59929190611acc565b6040516020818303038152906040529050919050565b600b8054610e7c90611c1e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea890611c1e565b8015610ef55780601f10610eca57610100808354040283529160200191610ef5565b820191906000526020600020905b815481529060010190602001808311610ed857829003601f168201915b50505050509050919050565b919050565b600a8054610ce090611c1e565b6008546001600160a01b03163314610f3d5760405162461bcd60e51b815260040161083290611b5b565b600f80549115156101000261ff0019909216919091179055565b6008546001600160a01b03163314610f815760405162461bcd60e51b815260040161083290611b5b565b6109a881836112c0565b6008546001600160a01b03163314610fb55760405162461bcd60e51b815260040161083290611b5b565b6001600160a01b03811661101a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610832565b6110238161126e565b50565b60008160011115801561103a575060005482105b8015610659575050600090815260046020526040902054600160e01b161590565b600081806001116110b2576000548110156110b257600081815260046020526040902054600160e01b81166110b0575b806110a957506000190160008181526004602052604090205461108b565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b60006110d68261105b565b9050836001600160a01b0316816001600160a01b0316146111095760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806111275750611127853361059f565b80611142575033611137846106f1565b6001600160a01b0316145b90508061116257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661118957604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661122657600183016000818152600460205260409020546112245760005481146112245760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109a88282604051806020016040528060008152506114df565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061130f903390899088908890600401611b0b565b602060405180830381600087803b15801561132957600080fd5b505af1925050508015611359575060408051601f3d908101601f191682019092526113569181019061198c565b60015b6113b4573d808015611387576040519150601f19603f3d011682016040523d82523d6000602084013e61138c565b606091505b5080516113ac576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461066e90611c1e565b6060816114055750506040805180820190915260018152600360fc1b602082015290565b8160005b811561142f578061141981611c59565b91506114289050600a83611ba8565b9150611409565b60008167ffffffffffffffff81111561144a5761144a611cca565b6040519080825280601f01601f191660200182016040528015611474576020820181803683370190505b5090505b84156113ca57611489600183611bdb565b9150611496600a86611c74565b6114a1906030611b90565b60f81b8183815181106114b6576114b6611cb4565b60200101906001600160f81b031916908160001a9053506114d8600a86611ba8565b9450611478565b6000546001600160a01b03841661150857604051622e076360e81b815260040160405180910390fd5b826115265760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156115fb575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46115c460008784806001019550876112da565b6115e1576040516368d2bf6b60e11b815260040160405180910390fd5b8082106115795782600054146115f657600080fd5b611640565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106115fc575b506000908155610dd49085838684565b82805461165c90611c1e565b90600052602060002090601f01602090048101928261167e57600085556116c4565b82601f1061169757805160ff19168380011785556116c4565b828001600101855582156116c4579182015b828111156116c45782518255916020019190600101906116a9565b506116d0929150611748565b5090565b8280546116e090611c1e565b90600052602060002090601f01602090048101928261170257600085556116c4565b82601f1061171b5782800160ff198235161785556116c4565b828001600101855582156116c4579182015b828111156116c457823582559160200191906001019061172d565b5b808211156116d05760008155600101611749565b600067ffffffffffffffff8084111561177857611778611cca565b604051601f8501601f19908116603f011681019082821181831017156117a0576117a0611cca565b816040528093508581528686860111156117b957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114610f0157600080fd5b80358015158114610f0157600080fd5b60006020828403121561180c57600080fd5b6110a9826117d3565b6000806040838503121561182857600080fd5b611831836117d3565b915061183f602084016117d3565b90509250929050565b60008060006060848603121561185d57600080fd5b611866846117d3565b9250611874602085016117d3565b9150604084013590509250925092565b6000806000806080858703121561189a57600080fd5b6118a3856117d3565b93506118b1602086016117d3565b925060408501359150606085013567ffffffffffffffff8111156118d457600080fd5b8501601f810187136118e557600080fd5b6118f48782356020840161175d565b91505092959194509250565b6000806040838503121561191357600080fd5b61191c836117d3565b915061183f602084016117ea565b6000806040838503121561193d57600080fd5b611946836117d3565b946020939093013593505050565b60006020828403121561196657600080fd5b6110a9826117ea565b60006020828403121561198157600080fd5b81356110a981611ce0565b60006020828403121561199e57600080fd5b81516110a981611ce0565b600080602083850312156119bc57600080fd5b823567ffffffffffffffff808211156119d457600080fd5b818501915085601f8301126119e857600080fd5b8135818111156119f757600080fd5b866020828501011115611a0957600080fd5b60209290920196919550909350505050565b600060208284031215611a2d57600080fd5b813567ffffffffffffffff811115611a4457600080fd5b8201601f81018413611a5557600080fd5b6113ca8482356020840161175d565b600060208284031215611a7657600080fd5b5035919050565b60008060408385031215611a9057600080fd5b8235915061183f602084016117d3565b60008151808452611ab8816020860160208601611bf2565b601f01601f19169290920160200192915050565b60008351611ade818460208801611bf2565b835190830190611af2818360208801611bf2565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b3e90830184611aa0565b9695505050505050565b6020815260006110a96020830184611aa0565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611ba357611ba3611c88565b500190565b600082611bb757611bb7611c9e565b500490565b6000816000190483118215151615611bd657611bd6611c88565b500290565b600082821015611bed57611bed611c88565b500390565b60005b83811015611c0d578181015183820152602001611bf5565b83811115610dd45750506000910152565b600181811c90821680611c3257607f821691505b60208210811415611c5357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c6d57611c6d611c88565b5060010190565b600082611c8357611c83611c9e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461102357600080fdfea2646970667358221220eb97054badf4a3ade6c3ce3e4de200169e297e2cdd8b869a59fa9c9cc3960c0564736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000042697066733a2f2f516d5a485165684673557232457a704a4758676a726b4b55663236567773364e4a4a674d34346949416b4b476a31672f68696464656e2e6a736f6e000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _hiddenMetadataUri (string): ipfs://QmZHQehFsUr2EzpJGXgjrkKUf26Vws6NJJgM44iIAkKGj1g/hidden.json
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [2] : 697066733a2f2f516d5a485165684673557232457a704a4758676a726b4b5566
Arg [3] : 3236567773364e4a4a674d34346949416b4b476a31672f68696464656e2e6a73
Arg [4] : 6f6e000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
46757:2381:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21412:615;;;;;;;;;;-1:-1:-1;21412:615:0;;;;;:::i;:::-;;:::i;:::-;;;6926:14:1;;6919:22;6901:41;;6889:2;6874:18;21412:615:0;;;;;;;;26425:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28493:204::-;;;;;;;;;;-1:-1:-1;28493:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6224:32:1;;;6206:51;;6194:2;6179:18;28493:204:0;6060:203:1;27953:474:0;;;;;;;;;;-1:-1:-1;27953:474:0;;;;;:::i;:::-;;:::i;:::-;;46920:32;;;;;;;;;;;;;;;;;;;10197:25:1;;;10185:2;10170:18;46920:32:0;10051:177:1;48225:77:0;;;;;;;;;;-1:-1:-1;48225:77:0;;;;;:::i;:::-;;:::i;20466:315::-;;;;;;;;;;-1:-1:-1;47909:1:0;20732:12;20519:7;20716:13;:28;-1:-1:-1;;20716:46:0;20466:315;;29379:170;;;;;;;;;;-1:-1:-1;29379:170:0;;;;;:::i;:::-;;:::i;48308:111::-;;;;;;;;;;;;;:::i;29620:185::-;;;;;;;;;;-1:-1:-1;29620:185:0;;;;;:::i;:::-;;:::i;48009:74::-;;;;;;;;;;-1:-1:-1;48009:74:0;;;;;:::i;:::-;;:::i;48451:132::-;;;;;;;;;;-1:-1:-1;48451:132:0;;;;;:::i;:::-;;:::i;47069:20::-;;;;;;;;;;-1:-1:-1;47069:20:0;;;;;;;;;;;48589:98;;;;;;;;;;-1:-1:-1;48589:98:0;;;;;:::i;:::-;;:::i;47038:26::-;;;;;;;;;;-1:-1:-1;47038:26:0;;;;;;;;26214:144;;;;;;;;;;-1:-1:-1;26214:144:0;;;;;:::i;:::-;;:::i;22091:224::-;;;;;;;;;;-1:-1:-1;22091:224:0;;;;;:::i;:::-;;:::i;7522:103::-;;;;;;;;;;;;;:::i;6871:87::-;;;;;;;;;;-1:-1:-1;6944:6:0;;-1:-1:-1;;;;;6944:6:0;6871:87;;46993:38;;;;;;;;;;;;;;;;26594:104;;;;;;;;;;;;;:::i;47276:406::-;;;;;;:::i;:::-;;:::i;28769:308::-;;;;;;;;;;-1:-1:-1;28769:308:0;;;;;:::i;:::-;;:::i;46882:31::-;;;;;;;;;;;;;:::i;48089:130::-;;;;;;;;;;-1:-1:-1;48089:130:0;;;;;:::i;:::-;;:::i;29876:396::-;;;;;;;;;;-1:-1:-1;29876:396:0;;;;;:::i;:::-;;:::i;48809:326::-;;;;;;;;;;-1:-1:-1;48809:326:0;;;;;:::i;:::-;;:::i;46850:27::-;;;;;;;;;;;;;:::i;46957:31::-;;;;;;;;;;;;;;;;47922:81;;;;;;;;;;-1:-1:-1;47922:81:0;;;;;:::i;:::-;;:::i;29148:164::-;;;;;;;;;;-1:-1:-1;29148:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29269:25:0;;;29245:4;29269:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29148:164;47688:127;;;;;;;;;;-1:-1:-1;47688:127:0;;;;;:::i;:::-;;:::i;7780:201::-;;;;;;;;;;-1:-1:-1;7780:201:0;;;;;:::i;:::-;;:::i;21412:615::-;21497:4;-1:-1:-1;;;;;;;;;21797:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;21874:25:0;;;21797:102;:179;;;-1:-1:-1;;;;;;;;;;21951:25:0;;;21797:179;21777:199;21412:615;-1:-1:-1;;21412:615:0:o;26425:100::-;26479:13;26512:5;26505:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26425:100;:::o;28493:204::-;28561:7;28586:16;28594:7;28586;:16::i;:::-;28581:64;;28611:34;;-1:-1:-1;;;28611:34:0;;;;;;;;;;;28581:64;-1:-1:-1;28665:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28665:24:0;;28493:204::o;27953:474::-;28026:13;28058:27;28077:7;28058:18;:27::i;:::-;28026:61;;28108:5;-1:-1:-1;;;;;28102:11:0;:2;-1:-1:-1;;;;;28102:11:0;;28098:48;;;28122:24;;-1:-1:-1;;;28122:24:0;;;;;;;;;;;28098:48;44596:10;-1:-1:-1;;;;;28163:28:0;;;28159:175;;28211:44;28228:5;44596:10;29148:164;:::i;28211:44::-;28206:128;;28283:35;;-1:-1:-1;;;28283:35:0;;;;;;;;;;;28206:128;28346:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;28346:29:0;-1:-1:-1;;;;;28346:29:0;;;;;;;;;28391:28;;28346:24;;28391:28;;;;;;;28015:412;27953:474;;:::o;48225:77::-;6944:6;;-1:-1:-1;;;;;6944:6:0;44596:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;;;;;;;;;48281:6:::1;:15:::0;;-1:-1:-1;;48281:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48225:77::o;29379:170::-;29513:28;29523:4;29529:2;29533:7;29513:9;:28::i;:::-;29379:170;;;:::o;48308:111::-;6944:6;;-1:-1:-1;;;;;6944:6:0;44596:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;3969:1:::1;4567:7;;:19;;4559:63;;;::::0;-1:-1:-1;;;4559:63:0;;9197:2:1;4559:63:0::1;::::0;::::1;9179:21:1::0;9236:2;9216:18;;;9209:30;9275:33;9255:18;;;9248:61;9326:18;;4559:63:0::1;8995:355:1::0;4559:63:0::1;3969:1;4700:7;:18:::0;6944:6;;48365:48:::2;::::0;-1:-1:-1;;;;;6944:6:0;;;;48391:21:::2;48365:48:::0;::::2;;;::::0;::::2;::::0;;;48391:21;6944:6;48365:48;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;3925:1:0::1;4879:7;:22:::0;48308:111::o;29620:185::-;29758:39;29775:4;29781:2;29785:7;29758:39;;;;;;;;;;;;:16;:39::i;48009:74::-;6944:6;;-1:-1:-1;;;;;6944:6:0;44596:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;48065:4:::1;:12:::0;48009:74::o;48451:132::-;6944:6;;-1:-1:-1;;;;;6944:6:0;44596:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;48539:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48451:132:::0;:::o;48589:98::-;6944:6;;-1:-1:-1;;;;;6944:6:0;44596:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;48658:23:::1;:13;48674:7:::0;;48658:23:::1;:::i;26214:144::-:0;26278:7;26321:27;26340:7;26321:18;:27::i;22091:224::-;22155:7;-1:-1:-1;;;;;22179:19:0;;22175:60;;22207:28;;-1:-1:-1;;;22207:28:0;;;;;;;;;;;22175:60;-1:-1:-1;;;;;;22253:25:0;;;;;:18;:25;;;;;;17430:13;22253:54;;22091:224::o;7522:103::-;6944:6;;-1:-1:-1;;;;;6944:6:0;44596:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;7587:30:::1;7614:1;7587:18;:30::i;:::-;7522:103::o:0;26594:104::-;26650:13;26683:7;26676:14;;;;;:::i;47276:406::-;3969:1;4567:7;;:19;;4559:63;;;;-1:-1:-1;;;4559:63:0;;9197:2:1;4559:63:0;;;9179:21:1;9236:2;9216:18;;;9209:30;9275:33;9255:18;;;9248:61;9326:18;;4559:63:0;8995:355:1;4559:63:0;3969:1;4700:7;:18;47354:15;;;;;:52:::1;;;47388:18;;47373:11;:33;;47354:52;47346:85;;;::::0;-1:-1:-1;;;47346:85:0;;7786:2:1;47346:85:0::1;::::0;::::1;7768:21:1::0;7825:2;7805:18;;;7798:30;-1:-1:-1;;;7844:18:1;;;7837:50;7904:18;;47346:85:0::1;7584:344:1::0;47346:85:0::1;47477:9;::::0;47909:1;20732:12;20519:7;20716:13;47462:11;;20716:28;;-1:-1:-1;;20716:46:0;47446:27:::1;;;;:::i;:::-;:40;;47438:73;;;::::0;-1:-1:-1;;;47438:73:0;;8848:2:1;47438:73:0::1;::::0;::::1;8830:21:1::0;8887:2;8867:18;;;8860:30;-1:-1:-1;;;8906:18:1;;;8899:50;8966:18;;47438:73:0::1;8646:344:1::0;47438:73:0::1;47527:6;::::0;::::1;;47526:7;47518:43;;;::::0;-1:-1:-1;;;47518:43:0;;8496:2:1;47518:43:0::1;::::0;::::1;8478:21:1::0;8535:2;8515:18;;;8508:30;8574:25;8554:18;;;8547:53;8617:18;;47518:43:0::1;8294:347:1::0;47518:43:0::1;47596:11;47589:4;;:18;;;;:::i;:::-;47576:9;:31;;47568:63;;;::::0;-1:-1:-1;;;47568:63:0;;9905:2:1;47568:63:0::1;::::0;::::1;9887:21:1::0;9944:2;9924:18;;;9917:30;-1:-1:-1;;;9963:18:1;;;9956:49;10022:18;;47568:63:0::1;9703:343:1::0;47568:63:0::1;47640:36;44596:10:::0;47664:11:::1;47640:9;:36::i;28769:308::-:0;-1:-1:-1;;;;;28868:31:0;;44596:10;28868:31;28864:61;;;28908:17;;-1:-1:-1;;;28908:17:0;;;;;;;;;;;28864:61;44596:10;28938:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;28938:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;28938:60:0;;;;;;;;;;29014:55;;6901:41:1;;;28938:49:0;;44596:10;29014:55;;6874:18:1;29014:55:0;;;;;;;28769:308;;:::o;46882:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48089:130::-;6944:6;;-1:-1:-1;;;;;6944:6:0;44596:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;48173:18:::1;:40:::0;48089:130::o;29876:396::-;30043:28;30053:4;30059:2;30063:7;30043:9;:28::i;:::-;-1:-1:-1;;;;;30086:14:0;;;:19;30082:183;;30125:56;30156:4;30162:2;30166:7;30175:5;30125:30;:56::i;:::-;30120:145;;30209:40;;-1:-1:-1;;;30209:40:0;;;;;;;;;;;30120:145;29876:396;;;;:::o;48809:326::-;48883:13;48915:17;48923:8;48915:7;:17::i;:::-;48907:49;;;;-1:-1:-1;;;48907:49:0;;9557:2:1;48907:49:0;;;9539:21:1;9596:2;9576:18;;;9569:30;-1:-1:-1;;;9615:18:1;;;9608:49;9674:18;;48907:49:0;9355:343:1;48907:49:0;48971:8;;;;;;;48967:163;;;49025:10;:8;:10::i;:::-;49037:19;:8;:17;:19::i;:::-;49008:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48994:73;;48809:326;;;:::o;48967:163::-;49103:17;49096:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48809:326;;;:::o;48967:163::-;48809:326;;;:::o;46850:27::-;;;;;;;:::i;47922:81::-;6944:6;;-1:-1:-1;;;;;6944:6:0;44596:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;47980:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;47980:17:0;;::::1;::::0;;;::::1;::::0;;47922:81::o;47688:127::-;6944:6;;-1:-1:-1;;;;;6944:6:0;44596:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;47776:33:::1;47786:9;47797:11;47776:9;:33::i;7780:201::-:0;6944:6;;-1:-1:-1;;;;;6944:6:0;44596:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7869:22:0;::::1;7861:73;;;::::0;-1:-1:-1;;;7861:73:0;;7379:2:1;7861:73:0::1;::::0;::::1;7361:21:1::0;7418:2;7398:18;;;7391:30;7457:34;7437:18;;;7430:62;-1:-1:-1;;;7508:18:1;;;7501:36;7554:19;;7861:73:0::1;7177:402:1::0;7861:73:0::1;7945:28;7964:8;7945:18;:28::i;:::-;7780:201:::0;:::o;30527:273::-;30584:4;30640:7;47909:1;30621:26;;:66;;;;;30674:13;;30664:7;:23;30621:66;:152;;;;-1:-1:-1;;30725:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;30725:43:0;:48;;30527:273::o;23729:1129::-;23796:7;23831;;47909:1;23880:23;23876:915;;23933:13;;23926:4;:20;23922:869;;;23971:14;23988:23;;;:17;:23;;;;;;-1:-1:-1;;;24077:23:0;;24073:699;;24596:113;24603:11;24596:113;;-1:-1:-1;;;24674:6:0;24656:25;;;;:17;:25;;;;;;24596:113;;;24742:6;23729:1129;-1:-1:-1;;;23729:1129:0:o;24073:699::-;23948:843;23922:869;24819:31;;-1:-1:-1;;;24819:31:0;;;;;;;;;;;35766:2515;35881:27;35911;35930:7;35911:18;:27::i;:::-;35881:57;;35996:4;-1:-1:-1;;;;;35955:45:0;35971:19;-1:-1:-1;;;;;35955:45:0;;35951:86;;36009:28;;-1:-1:-1;;;36009:28:0;;;;;;;;;;;35951:86;36050:22;44596:10;-1:-1:-1;;;;;36076:27:0;;;;:87;;-1:-1:-1;36120:43:0;36137:4;44596:10;29148:164;:::i;36120:43::-;36076:147;;;-1:-1:-1;44596:10:0;36180:20;36192:7;36180:11;:20::i;:::-;-1:-1:-1;;;;;36180:43:0;;36076:147;36050:174;;36242:17;36237:66;;36268:35;;-1:-1:-1;;;36268:35:0;;;;;;;;;;;36237:66;-1:-1:-1;;;;;36318:16:0;;36314:52;;36343:23;;-1:-1:-1;;;36343:23:0;;;;;;;;;;;36314:52;36495:24;;;;:15;:24;;;;;;;;36488:31;;-1:-1:-1;;;;;;36488:31:0;;;-1:-1:-1;;;;;36887:24:0;;;;;:18;:24;;;;;36885:26;;-1:-1:-1;;36885:26:0;;;36956:22;;;;;;;36954:24;;-1:-1:-1;36954:24:0;;;37249:26;;;:17;:26;;;;;-1:-1:-1;;;37337:15:0;18084:3;37337:41;37295:84;;:128;;37249:174;;;37543:46;;37539:626;;37647:1;37637:11;;37615:19;37770:30;;;:17;:30;;;;;;37766:384;;37908:13;;37893:11;:28;37889:242;;38055:30;;;;:17;:30;;;;;:52;;;37889:242;37596:569;37539:626;38212:7;38208:2;-1:-1:-1;;;;;38193:27:0;38202:4;-1:-1:-1;;;;;38193:27:0;;;;;;;;;;;35870:2411;;35766:2515;;;:::o;8141:191::-;8234:6;;;-1:-1:-1;;;;;8251:17:0;;;-1:-1:-1;;;;;;8251:17:0;;;;;;;8284:40;;8234:6;;;8251:17;8234:6;;8284:40;;8215:16;;8284:40;8204:128;8141:191;:::o;30884:104::-;30953:27;30963:2;30967:8;30953:27;;;;;;;;;;;;:9;:27::i;41978:716::-;42162:88;;-1:-1:-1;;;42162:88:0;;42141:4;;-1:-1:-1;;;;;42162:45:0;;;;;:88;;44596:10;;42229:4;;42235:7;;42244:5;;42162:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42162:88:0;;;;;;;;-1:-1:-1;;42162:88:0;;;;;;;;;;;;:::i;:::-;;;42158:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42445:13:0;;42441:235;;42491:40;;-1:-1:-1;;;42491:40:0;;;;;;;;;;;42441:235;42634:6;42628:13;42619:6;42615:2;42611:15;42604:38;42158:529;-1:-1:-1;;;;;;42321:64:0;-1:-1:-1;;;42321:64:0;;-1:-1:-1;42158:529:0;41978:716;;;;;;:::o;48693:110::-;48753:13;48784;48777:20;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;31361:2236;31484:20;31507:13;-1:-1:-1;;;;;31535:16:0;;31531:48;;31560:19;;-1:-1:-1;;;31560:19:0;;;;;;;;;;;31531:48;31594:13;31590:44;;31616:18;;-1:-1:-1;;;31616:18:0;;;;;;;;;;;31590:44;-1:-1:-1;;;;;32183:22:0;;;;;;:18;:22;;;;17567:2;32183:22;;;:70;;32221:31;32209:44;;32183:70;;;32496:31;;;:17;:31;;;;;32589:15;18084:3;32589:41;32547:84;;-1:-1:-1;32667:13:0;;18347:3;32652:56;32547:162;32496:213;;:31;;32790:23;;;;32834:14;:19;32830:635;;32874:313;32905:38;;32930:12;;-1:-1:-1;;;;;32905:38:0;;;32922:1;;32905:38;;32922:1;;32905:38;32971:69;33010:1;33014:2;33018:14;;;;;;33034:5;32971:30;:69::i;:::-;32966:174;;33076:40;;-1:-1:-1;;;33076:40:0;;;;;;;;;;;32966:174;33182:3;33167:12;:18;32874:313;;33268:12;33251:13;;:29;33247:43;;33282:8;;;33247:43;32830:635;;;33331:119;33362:40;;33387:14;;;;;-1:-1:-1;;;;;33362:40:0;;;33379:1;;33362:40;;33379:1;;33362:40;33445:3;33430:12;:18;33331:119;;32830:635;-1:-1:-1;33479:13:0;:28;;;33529:60;;33562:2;33566:12;33580:8;33529:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:160;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:592::-;3731:6;3739;3792:2;3780:9;3771:7;3767:23;3763:32;3760:52;;;3808:1;3805;3798:12;3760:52;3848:9;3835:23;3877:18;3918:2;3910:6;3907:14;3904:34;;;3934:1;3931;3924:12;3904:34;3972:6;3961:9;3957:22;3947:32;;4017:7;4010:4;4006:2;4002:13;3998:27;3988:55;;4039:1;4036;4029:12;3988:55;4079:2;4066:16;4105:2;4097:6;4094:14;4091:34;;;4121:1;4118;4111:12;4091:34;4166:7;4161:2;4152:6;4148:2;4144:15;4140:24;4137:37;4134:57;;;4187:1;4184;4177:12;4134:57;4218:2;4210:11;;;;;4240:6;;-1:-1:-1;3660:592:1;;-1:-1:-1;;;;3660:592:1:o;4257:450::-;4326:6;4379:2;4367:9;4358:7;4354:23;4350:32;4347:52;;;4395:1;4392;4385:12;4347:52;4435:9;4422:23;4468:18;4460:6;4457:30;4454:50;;;4500:1;4497;4490:12;4454:50;4523:22;;4576:4;4568:13;;4564:27;-1:-1:-1;4554:55:1;;4605:1;4602;4595:12;4554:55;4628:73;4693:7;4688:2;4675:16;4670:2;4666;4662:11;4628:73;:::i;4712:180::-;4771:6;4824:2;4812:9;4803:7;4799:23;4795:32;4792:52;;;4840:1;4837;4830:12;4792:52;-1:-1:-1;4863:23:1;;4712:180;-1:-1:-1;4712:180:1:o;4897:254::-;4965:6;4973;5026:2;5014:9;5005:7;5001:23;4997:32;4994:52;;;5042:1;5039;5032:12;4994:52;5078:9;5065:23;5055:33;;5107:38;5141:2;5130:9;5126:18;5107:38;:::i;5156:257::-;5197:3;5235:5;5229:12;5262:6;5257:3;5250:19;5278:63;5334:6;5327:4;5322:3;5318:14;5311:4;5304:5;5300:16;5278:63;:::i;:::-;5395:2;5374:15;-1:-1:-1;;5370:29:1;5361:39;;;;5402:4;5357:50;;5156:257;-1:-1:-1;;5156:257:1:o;5418:637::-;5698:3;5736:6;5730:13;5752:53;5798:6;5793:3;5786:4;5778:6;5774:17;5752:53;:::i;:::-;5868:13;;5827:16;;;;5890:57;5868:13;5827:16;5924:4;5912:17;;5890:57;:::i;:::-;-1:-1:-1;;;5969:20:1;;5998:22;;;6047:1;6036:13;;5418:637;-1:-1:-1;;;;5418:637:1:o;6268:488::-;-1:-1:-1;;;;;6537:15:1;;;6519:34;;6589:15;;6584:2;6569:18;;6562:43;6636:2;6621:18;;6614:34;;;6684:3;6679:2;6664:18;;6657:31;;;6462:4;;6705:45;;6730:19;;6722:6;6705:45;:::i;:::-;6697:53;6268:488;-1:-1:-1;;;;;;6268:488:1:o;6953:219::-;7102:2;7091:9;7084:21;7065:4;7122:44;7162:2;7151:9;7147:18;7139:6;7122:44;:::i;7933:356::-;8135:2;8117:21;;;8154:18;;;8147:30;8213:34;8208:2;8193:18;;8186:62;8280:2;8265:18;;7933:356::o;10233:128::-;10273:3;10304:1;10300:6;10297:1;10294:13;10291:39;;;10310:18;;:::i;:::-;-1:-1:-1;10346:9:1;;10233:128::o;10366:120::-;10406:1;10432;10422:35;;10437:18;;:::i;:::-;-1:-1:-1;10471:9:1;;10366:120::o;10491:168::-;10531:7;10597:1;10593;10589:6;10585:14;10582:1;10579:21;10574:1;10567:9;10560:17;10556:45;10553:71;;;10604:18;;:::i;:::-;-1:-1:-1;10644:9:1;;10491:168::o;10664:125::-;10704:4;10732:1;10729;10726:8;10723:34;;;10737:18;;:::i;:::-;-1:-1:-1;10774:9:1;;10664:125::o;10794:258::-;10866:1;10876:113;10890:6;10887:1;10884:13;10876:113;;;10966:11;;;10960:18;10947:11;;;10940:39;10912:2;10905:10;10876:113;;;11007:6;11004:1;11001:13;10998:48;;;-1:-1:-1;;11042:1:1;11024:16;;11017:27;10794:258::o;11057:380::-;11136:1;11132:12;;;;11179;;;11200:61;;11254:4;11246:6;11242:17;11232:27;;11200:61;11307:2;11299:6;11296:14;11276:18;11273:38;11270:161;;;11353:10;11348:3;11344:20;11341:1;11334:31;11388:4;11385:1;11378:15;11416:4;11413:1;11406:15;11270:161;;11057:380;;;:::o;11442:135::-;11481:3;-1:-1:-1;;11502:17:1;;11499:43;;;11522:18;;:::i;:::-;-1:-1:-1;11569:1:1;11558:13;;11442:135::o;11582:112::-;11614:1;11640;11630:35;;11645:18;;:::i;:::-;-1:-1:-1;11679:9:1;;11582:112::o;11699:127::-;11760:10;11755:3;11751:20;11748:1;11741:31;11791:4;11788:1;11781:15;11815:4;11812:1;11805:15;11831:127;11892:10;11887:3;11883:20;11880:1;11873:31;11923:4;11920:1;11913:15;11947:4;11944:1;11937:15;11963:127;12024:10;12019:3;12015:20;12012:1;12005:31;12055:4;12052:1;12045:15;12079:4;12076:1;12069:15;12095:127;12156:10;12151:3;12147:20;12144:1;12137:31;12187:4;12184:1;12177:15;12211:4;12208:1;12201:15;12227:131;-1:-1:-1;;;;;;12301:32:1;;12291:43;;12281:71;;12348:1;12345;12338:12
Swarm Source
ipfs://eb97054badf4a3ade6c3ce3e4de200169e297e2cdd8b869a59fa9c9cc3960c05
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.